@charset "UTF-8";
/*************************************************
common-style
*************************************************/
* {
  box-sizing: border-box;
}

.ie_ObjectFit {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  scroll-behavior: smooth;
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  min-height: 100dvh;
  color: #333333;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

.obj-fit img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*************************************************
top
*************************************************/
.fixed-container {
  display: none;
}
@media (min-width: 390px) {
  .fixed-container {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
  }
}

.fixed-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/pc-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 940px) {
  .fixed-logo,
  .fixed-nav,
  .fixed-buttons {
    position: absolute;
    pointer-events: auto;
  }
}

@media (min-width: 940px) {
  .fixed-logo {
    top: 26px;
    left: 50px;
    width: 203px;
    height: auto;
  }
}
@media screen and (max-width: 1024px) {
  .fixed-logo {
    display: none;
  }
}

@media (min-width: 1100px) {
  .fixed-nav {
    bottom: 10%;
    left: 5%;
  }
}
@media (max-width: 1099px) {
  .fixed-nav {
    bottom: 10%;
    left: 1%;
  }
}
@media screen and (max-width: 1024px) {
  .fixed-nav {
    display: none;
  }
}
.fixed-nav ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fixed-nav ul li {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
}
.fixed-nav ul li:hover {
  background: rgba(255, 255, 255, 0.5);
}
.fixed-nav ul a {
  display: flex;
  align-items: center;
  padding: 14px 40px 14px 24px;
  font-size: 16px;
  font-weight: 700;
  color: #024A8E;
  transition: all 0.3s ease;
}
.fixed-nav ul a img {
  margin-right: 10px;
}
.fixed-nav ul a:hover {
  transform: translateX(4px);
}

@media (min-width: 1100px) {
  .fixed-buttons {
    bottom: 10%;
    right: 5%;
  }
}
@media (max-width: 1099px) {
  .fixed-buttons {
    bottom: 10%;
    right: 1%;
  }
}
@media screen and (max-width: 1024px) {
  .fixed-buttons {
    display: none;
  }
}
.fixed-buttons .btn {
  width: 250px;
}
.fixed-buttons .btn a {
  display: flex;
  align-items: center;
  border-radius: 8px;
  padding: 21px 24px;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
}
.fixed-buttons .btn a img {
  margin-right: 10px;
}
.fixed-buttons .line-btn {
  position: relative;
}
.fixed-buttons .line-btn::after {
  content: "";
  position: absolute;
  background: url("../images/line-arrow.svg") no-repeat;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 20px;
  height: 20px;
}
.fixed-buttons .line-btn a {
  border: 1px solid #06C755;
  background: rgba(255, 255, 255, 0.7);
  color: #06C755;
  transition: all 0.3s ease;
}
.fixed-buttons .line-btn a:hover {
  background-color: #06C755;
  color: #fff;
}
.fixed-buttons .line-btn a img {
  width: 20px;
  height: 20px;
}
.fixed-buttons .line-btn:hover::after {
  background-image: url("../images/arrow-white.svg");
}
.fixed-buttons .line-btn a:hover img {
  content: url("../images/line-icon-white.svg");
}
.fixed-buttons .mail-btn {
  position: relative;
}
.fixed-buttons .mail-btn::after {
  content: "";
  position: absolute;
  background: url("../images/arrow-white.svg") no-repeat;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 20px;
  height: 20px;
}
.fixed-buttons .mail-btn a {
  background: #003466;
  color: #fff;
  transition: all 0.3s ease;
  margin-bottom: 0;
  border: 1px solid #003466;
}
.fixed-buttons .mail-btn a:hover {
  background-color: #fff;
  color: #024A8E;
  border: 1px solid #003466;
}
.fixed-buttons .mail-btn a img {
  width: 24px;
  height: 24px;
}
.fixed-buttons .mail-btn:hover::after {
  background-image: url("../images/arrow-navy.svg");
}
.fixed-buttons .mail-btn a:hover img {
  content: url("../images/mail-icon-navy.svg");
}

main {
  position: relative;
  z-index: 2;
  max-width: 490px;
  margin: 0 auto;
  background: #FFF;
  /* shadow */
  box-shadow: 0 0 10px 0 rgba(31, 2, 2, 0.1);
}

header {
  max-width: 490px;
  height: 62px;
  background: #003466;
  position: relative;
  z-index: 2;
  margin: 0 auto;
}
header .header__inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.logo {
  width: 173px;
  height: auto;
}

.fv__sec {
  width: 100%;
  min-height: 80vh;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  .fv__sec {
    min-height: 100vh;
  }
}

.fv__bg {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 90vh; /* FV全画面表示など必要に応じて調整 */
  overflow: hidden;
}
.fv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* 画像をトリミングして全体に表示 */
  -o-object-position: center bottom;
     object-position: center bottom; /* 下側を優先して表示 */
  display: block;
}

.fv__content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  text-align: center;
  color: #fff;
  width: 100%;
  padding-top: 60px;
  padding-bottom: 20px;
}

.fv__content__wrap {
  position: relative;
  z-index: 2;
}

.fv__copy {
  width: 90%;
  margin: 0 auto;
}
.fv__copy img {
  filter: drop-shadow(0 0 10px rgba(31, 2, 2, 0.1));
}

.fv__illust1 {
  width: 114px;
  height: 83px;
  top: 0;
  right: 20px;
  position: absolute;
  z-index: 3;
}

.fv__illust2 {
  width: 135px;
  height: 191px;
  top: 37vh;
  left: 20px;
  position: absolute;
  z-index: 3;
}

.fv__illust3 {
  width: 242px;
  height: 227px;
  top: 36vh;
  right: 0;
  position: absolute;
  z-index: 3;
}

.fv__illust4 {
  width: 90%;
  margin: 15vh auto 0 auto;
  position: relative;
  z-index: 4;
}

.leave-it-to__sec {
  position: relative;
}

.leave-it-to__title {
  position: absolute;
  top: 48px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 70%;
}

.about__sec .about__content {
  padding: 24px 0 48px 0;
}

.recommend__sec {
  position: relative;
}

.recommend__title {
  position: absolute;
  top: 24px;
  left: 10%;
  width: 85%;
}

.cta__sec {
  position: relative;
  padding: 40px 0;
}
.cta__sec .cta__title {
  position: relative;
  z-index: 3;
  margin: 0 auto 16px auto;
  width: 85%;
}
.cta__sec::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/cta_bg.jpg") no-repeat;
  background-size: cover;
  background-position: center;
}

.cta__sec-buttons {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto;
  align-items: center;
}
.cta__sec-buttons .btn {
  width: 330px;
}
.cta__sec-buttons .btn a {
  display: flex;
  align-items: center;
  border-radius: 8px;
  padding: 21px 24px;
  font-size: 18px;
  font-weight: 700;
}
.cta__sec-buttons .btn a img {
  margin-right: 10px;
}
.cta__sec-buttons .mail-btn {
  position: relative;
}
.cta__sec-buttons .mail-btn::after {
  content: "";
  position: absolute;
  background: url("../images/arrow-white.svg") no-repeat;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 20px;
  height: 20px;
}
.cta__sec-buttons .mail-btn a {
  background: #003466;
  color: #fff;
  transition: all 0.3s ease;
  border: 1px solid #003466;
}
.cta__sec-buttons .mail-btn a:hover {
  background-color: #fff;
  color: #024A8E;
  border: 1px solid #003466;
}
.cta__sec-buttons .mail-btn a img {
  width: 24px;
  height: 24px;
}
.cta__sec-buttons .mail-btn:hover::after {
  background-image: url("../images/arrow-navy.svg");
}
.cta__sec-buttons .mail-btn a:hover img {
  content: url("../images/mail-icon-navy.svg");
}
.cta__sec-buttons .line-btn {
  position: relative;
}
.cta__sec-buttons .line-btn::after {
  content: "";
  position: absolute;
  background: url("../images/line-arrow.svg") no-repeat;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 20px;
  height: 20px;
}
.cta__sec-buttons .line-btn a {
  border: 1px solid #06C755;
  background: rgba(255, 255, 255, 0.7);
  color: #06C755;
  transition: all 0.3s ease;
  margin-bottom: 0;
}
.cta__sec-buttons .line-btn a:hover {
  background-color: #06C755;
  color: #fff;
}
.cta__sec-buttons .line-btn a img {
  width: 20px;
  height: 20px;
}
.cta__sec-buttons .line-btn:hover::after {
  background-image: url("../images/arrow-white.svg");
}
.cta__sec-buttons .line-btn a:hover img {
  content: url("../images/line-icon-white.svg");
}

.property__sec {
  padding: 48px 0;
}

.property__title {
  text-align: center;
  width: 90%;
  margin: 0 10px 24px auto;
}

.cta__bubble {
  position: relative;
  z-index: 3;
  width: 78%;
  margin: 0 auto 12px auto;
}

.support__sec {
  position: relative;
}

.support__title {
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 259px;
  height: auto;
  z-index: 3;
}

.voice__sec {
  position: relative;
}

.voice__title {
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 234px;
  height: auto;
  z-index: 3;
}

.flow__sec {
  position: relative;
}

.flow__title {
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 352px;
  height: auto;
  z-index: 3;
}

.company__sec {
  padding: 48px 0;
  margin: 0 20px;
}

.company__title {
  width: 113px;
  height: auto;
  margin: 0 auto 32px auto;
}

.company__table {
  width: 100%;
  border-collapse: collapse;
}
.company__table tr {
  border-top: 1px solid #999999;
  border-bottom: 1px solid #999999;
}
.company__table th, .company__table td {
  padding: 12px 0px;
  text-align: left;
  vertical-align: top;
  font-size: 16px;
  line-height: 160%;
  color: #333333;
  letter-spacing: 0.05em;
}
.company__table th {
  width: 30%;
  font-weight: 500;
}
.company__table td {
  width: 70%;
  font-weight: 400;
}
.company__table td a {
  text-decoration: underline;
}

.form__sec {
  padding: 48px 0;
  position: relative;
}
.form__sec::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/form_bg.jpg") no-repeat;
  background-size: cover;
  background-position: center;
}

.form__title {
  position: relative;
  z-index: 3;
  width: 274px;
  height: auto;
  margin: 0 auto 32px auto;
}

.form__content {
  margin: 0 20px;
  position: relative;
  z-index: 3;
}

.contact-form {
  margin-top: 40px;
}
@media screen and (max-width: 599px) {
  .contact-form {
    margin-top: 32px;
  }
}
.contact-form__group {
  margin-bottom: 24px;
}
.contact-form__group:last-child {
  margin-bottom: initial;
}
@media screen and (max-width: 599px) {
  .contact-form__group {
    margin-bottom: 16px;
  }
}
.contact-form__label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 16px;
}
.contact-form__required {
  color: #fff;
  background-color: #FD9E4D;
  padding: 1px 4px;
  margin-left: 8px;
  font-size: 14px;
  line-height: 100%;
}
.contact-form__input {
  width: 100%;
  padding: 14px 12px 14px;
  background-color: #FFFFFF;
  border-radius: 4px;
  font-size: 16px;
  line-height: 1.5;
  vertical-align: middle;
  border: 1px solid transparent;
  filter: drop-shadow(0 0 10px rgba(31, 2, 2, 0.1));
}
.contact-form__input:focus {
  border: 1px solid #DEDEDE;
}
.contact-form__input::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.contact-form__input::placeholder {
  color: #999;
  opacity: 1;
}
.contact-form__select {
  width: 100%;
  padding: 14px 12px 14px;
  background-color: #FFFFFF;
  border-radius: 4px;
  font-size: 16px;
  line-height: 1.5;
  vertical-align: middle;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("../images/arrow-down.svg");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 24px;
  padding-right: 40px;
  border: 1px solid transparent;
  filter: drop-shadow(0 0 10px rgba(31, 2, 2, 0.1));
}
.contact-form__select:focus {
  border: 1px solid #DEDEDE;
}
.contact-form__textarea {
  width: 100%;
  min-height: 140px;
  padding: 14px;
  background-color: #FFFFFF;
  border-radius: 4px;
  font-size: 16px;
  resize: vertical;
  line-height: 1.5;
  border: 1px solid transparent;
  filter: drop-shadow(0 0 10px rgba(31, 2, 2, 0.1));
}
.contact-form__textarea:focus {
  border: 1px solid #DEDEDE;
}
.contact-form__textarea::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.contact-form__textarea::placeholder {
  color: #999;
  opacity: 1;
}
.contact-form__submit {
  text-align: center;
  margin-top: 40px;
}
.contact-form__button {
  min-width: 260px;
  display: inline-block;
  padding: 20px 90px;
  color: #fff;
  background-color: #003466;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
@media screen and (max-width: 599px) {
  .contact-form__button {
    min-width: 310px;
  }
}
.contact-form__button::after {
  position: absolute;
  content: "";
  background: url(../images/arrow-white.svg) center center no-repeat;
  background-size: cover;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 20px;
  height: 20px;
}
.contact-form__button:hover {
  background: #fff;
  color: #003466;
  border: 1px solid #003466;
}
.contact-form__button:hover::after {
  background: url(../images/arrow-navy.svg) center center no-repeat;
}

footer {
  position: relative;
  z-index: 2;
}

.footer__inner {
  max-width: 490px;
  margin: 0 auto;
  background-color: #003466;
  color: #fff;
}
@media screen and (max-width: 599px) {
  .footer__inner {
    padding-bottom: 60px;
  }
}
.footer__inner .footer__text {
  text-align: center;
  padding: 16px 0;
  font-size: 12px;
  font-weight: 500;
}

.sp-line__btn--fixed {
  display: none;
}
@media screen and (max-width: 599px) {
  .sp-line__btn--fixed {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
  }
}
.sp-line__btn--fixed a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  background-color: #06C755;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}
.sp-line__btn--fixed a img {
  margin-right: 8px;
  width: 40px;
  height: 40px;
}
.sp-line__btn--fixed a .arrow-white {
  width: 20px;
  height: 20px;
  margin-right: 0;
  margin-left: 16px;
}
.sp-line__btn--fixed a:hover {
  background-color: #A2DCBA;
}

.p--thanks {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 80px 20px;
  box-sizing: border-box;
}

.p--thanks__inner {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.p--thanks__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .p--thanks__title {
    font-size: 32px;
    margin-bottom: 40px;
  }
}

.p--thanks__text {
  margin-bottom: 40px;
}
.p--thanks__text p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.p--thanks__text p:last-child {
  margin-bottom: 0;
  text-align: left;
}
@media (min-width: 768px) {
  .p--thanks__text p {
    font-size: 16px;
  }
}

.p--thanks__btn {
  margin-top: 40px;
}

.p--thanks__btn-back {
  display: inline-block;
  padding: 16px 120px;
  background-color: #003466;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  position: relative;
}
.p--thanks__btn-back::after {
  content: "";
  position: absolute;
  background: url("../images/arrow-white.svg") no-repeat;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 20px;
  height: 20px;
}
.p--thanks__btn-back:hover {
  background-color: #555;
}
@media (min-width: 768px) {
  .p--thanks__btn-back {
    padding: 18px 60px;
    font-size: 18px;
  }
}

@media (min-width: 768px) {
  .br_sp {
    display: none;
  }
}

.grecaptcha-badge {
  z-index: 10;
  bottom: 70px !important;
}/*# sourceMappingURL=style.css.map */