@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

body {
  color: #475569;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 1px;
}
body.is-modal-open {
  overflow: hidden;
}

a {
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    cursor: pointer;
  }
}

s picture,
img,
a,
span {
  display: inline-block;
}

video,
img,
svg {
  width: 100%;
  height: 100%;
}

button {
  font: inherit;
  color: inherit;
  background: transparent;
  background: none;
  border: none;
}

input,
textarea,
select {
  font: inherit;
}

.l-section__inner {
  padding-block: 80px;
  margin-inline: auto;
  max-width: 1440px;
  padding-inline: 120px;
}
@media screen and (max-width: 767px) {
  .l-section__inner {
    padding-inline: 20px;
  }
}

.c-drawer-icon {
  width: 32px;
  height: 27px;
  position: relative;
  z-index: 51;
  display: none;
}
.c-drawer-icon.is-checked .c-drawer-icon__bar:nth-of-type(1) {
  top: 14px;
  width: 32px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-drawer-icon.is-checked .c-drawer-icon__bar:nth-of-type(2) {
  top: 9px;
  display: none;
}
.c-drawer-icon.is-checked .c-drawer-icon__bar:nth-of-type(3) {
  top: 14px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (max-width: 1120px) {
  .c-drawer-icon {
    display: inline;
  }
}

.c-drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background-color: #e3d2a8;
  border-radius: 0;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}
.c-drawer-icon__bar:nth-of-type(2) {
  top: 12px;
}
.c-drawer-icon__bar:nth-of-type(3) {
  top: 24px;
}

.c-drawer-content {
  width: 100%;
  height: 100%;
  position: fixed; /* 固定して浮かせる */
  top: 68px;
  background: #142942;
  height: calc(100% - 250px);
  z-index: 50;
  padding: 74px;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.c-drawer-content.is-checked {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.c-drawer-content__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  text-align: center;
  height: 543px;
}

.c-drawer-content__link {
  color: #fff;
  display: inline-block;
  font-size: 16px;
  padding-block: 8px;
}

.c-modal__btn {
  background-color: #e3d2a8;
  border: 1px solid #e3d2a8;
  padding: 10px 20px;
  display: inline-block;
  border-radius: 8px;
  color: #142942;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .c-modal__btn:hover {
    color: #c8a96a;
    background: #fff;
  }
}

.c-overlay {
  position: fixed;
  top: 68px;
  left: 0;
  width: 100%;
  height: calc(100% - 68px);
  background: rgba(0, 0, 0, 0.6);
  z-index: 49;
  display: none;
}

.p-header {
  height: 81px;
  position: fixed; /* ヘッダーを固定 */
  top: 0; /* 上部に配置 */
  left: 0; /* 左端に配置 */
  width: 100%; /* 横幅を全体に広げる */
  background-color: #142942; /* ヘッダーの背景色（必要に応じて変更） */
  z-index: 1000; /* 重なり順を他の要素より前に */
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* パディングを含めてボックスサイズを計算 */
}
@media screen and (max-width: 1120px) {
  .p-header {
    height: 68px;
  }
}

.p-header__inner {
  height: inherit;
  padding-block: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-inline: 120px;
}
@media screen and (max-width: 1120px) {
  .p-header__inner {
    padding-inline: 20px;
  }
}

.p-header__logo {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-header__logo:hover {
  opacity: 0.6;
}

.p-header-logo__link {
  color: #e3d2a8;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.p-header-logo__link img {
  width: 28px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 1120px) {
  .p-header-logo__link {
    font-size: 16px;
  }
}

@media screen and (max-width: 1120px) {
  .p-header__nav {
    display: none;
  }
}

.p-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}

.p-header__nav-item a {
  color: #fff;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (any-hover: hover) {
  .p-header__nav-item a:hover {
    color: #e3d2a8;
  }
}

.p-main-section__en-title {
  font-family: "Noto Serif JP", serif;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
  padding-bottom: 5px;
  font-size: 20px;
  color: #142942;
  border-bottom: 1px solid #142942;
}
@media screen and (max-width: 767px) {
  .p-main-section__en-title {
    font-size: 18px;
  }
}

.p-main-section__ja-title {
  font-family: "Noto Serif JP", serif;
  text-align: center;
  color: #142942;
  margin-top: 16px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-main-section__ja-title {
    font-size: 24px;
  }
}

.p-main-section__text {
  margin-top: 14px;
  font-size: 14px;
  text-align: center;
  text-align: center;
  color: #142942;
}

.p-main-back-to-top {
  position: fixed;
  bottom: 70px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1f3a5f 0%, #142942 100%);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-main-back-to-top img {
  width: 30px;
  height: 30px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-main-back-to-top {
    position: static;
    width: 45px;
    height: 45px;
    margin-left: auto;
  }
  .p-main-back-to-top img {
    width: 25px;
    height: 25px;
  }
}

.p-kv {
  padding-top: 81px;
  background-color: #142942;
}
.p-kv picture {
  width: 100%;
  height: 100%;
}
.p-kv picture img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 445px) and (max-width: 767px) {
  .p-kv picture img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media screen and (max-width: 1120px) {
  .p-kv {
    padding-top: 68px;
  }
}
@media screen and (max-width: 767px) {
  .p-kv {
    background: #1f3145;
    height: 100vh;
  }
}

.p-mv {
  width: 100%;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  /* オーバーレイ（グラデだけ） */
}
.p-mv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20, 41, 66, 0.96) 0%, rgba(31, 58, 95, 0.5) 100%);
  z-index: 1;
  pointer-events: none;
}

/* ★追加：パララックス背景レイヤー */
.p-mv__bg {
  position: absolute;
  inset: 0;
  background: url(../img/bg_fv.webp) no-repeat center center/cover;
  /* 上下に動かしても隙間が見えないよう大きめに */
  height: calc(100% + 300px);
  top: -150px;
  z-index: 0;
  will-change: transform;
}

.p-mv__inner {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  margin-inline: auto;
  max-width: 1440px;
  padding-inline: 20px;
  padding-block: 100px;
}
@media screen and (max-width: 767px) {
  .p-mv__inner {
    padding-inline: 20px;
    padding-top: 50px;
  }
}

.p-mv__title {
  font-family: "Noto Serif JP", serif;
  font-size: 40px;
  color: #fff;
}
.p-mv__title span {
  color: #e3d2a8;
  font-size: 45px;
}
@media screen and (max-width: 767px) {
  .p-mv__title {
    font-size: 30px;
  }
  .p-mv__title span {
    font-size: 33px;
  }
}

.p-mv__text {
  color: #fff;
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-mv__text {
    font-size: 16px;
    margin-top: 15px;
  }
}

.p-mv-btn__container {
  margin-top: 40px;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
}
@media screen and (max-width: 767px) {
  .p-mv-btn__container {
    gap: 10px;
    margin-top: 15px;
  }
}

.p-mv__btn {
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-mv__btn {
    font-size: 13px;
  }
}

.p-mv-link__btn {
  font-size: 20px;
  font-weight: 700;
  background: #fff;
  color: #142942;
  padding: 20px 30px;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .p-mv-link__btn {
    font-size: 13px;
    padding: 10px 20px;
  }
}

.p-mv__list {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-mv__list {
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 5px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.p-mv__item {
  color: #fff;
  font-size: 15px;
  background: #142942;
  padding: 10px 20px;
  border-radius: 100vmax;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-mv__item span {
  width: 30px;
}
@media screen and (max-width: 767px) {
  .p-mv__item {
    font-size: 13px;
    padding: 8px 16px;
  }
  .p-mv__item span {
    width: 25px;
  }
}

.p-mv__down {
  position: absolute;
  left: 50%;
  translate: -50%;
  bottom: 40px;
  z-index: 1;
}
.p-mv__down img {
  width: 50px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-animation: mv-down-bounce 1.6s ease-in-out infinite;
          animation: mv-down-bounce 1.6s ease-in-out infinite;
}
@media screen and (max-width: 767px) {
  .p-mv__down {
    bottom: 20px;
  }
  .p-mv__down img {
    width: 40px;
  }
}

@-webkit-keyframes mv-down-bounce {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0.8;
  }
  20% {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
    opacity: 1;
  }
  40% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  60% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  80% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0.8;
  }
}

@keyframes mv-down-bounce {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0.8;
  }
  20% {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
    opacity: 1;
  }
  40% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  60% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  80% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0.8;
  }
}
.p-why {
  background: #f6f3ea;
}

@media screen and (max-width: 1146px) {
  .p-why__inner {
    padding-inline: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-why__inner {
    padding-inline: 20px;
  }
}

.p-why__content {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1000px) {
  .p-why__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-why__image {
  width: 48.3333333333%;
}
.p-why__image img {
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .p-why__image {
    width: 100%;
  }
}

.p-why__body {
  width: 47.5%;
}
@media screen and (max-width: 1000px) {
  .p-why__body {
    width: 100%;
  }
}

.p-why-body__title {
  font-size: 25px;
  color: #142942;
}
@media screen and (max-width: 767px) {
  .p-why-body__title {
    font-size: 20px;
  }
}

.p-why-body__text {
  margin-top: 20px;
  font-size: 16px;
}
.p-why-body__text span {
  display: inline;
  color: #142942;
  font-weight: 700;
}

.p-why-body__list {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 1000px) {
  .p-why-body__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .p-why-body__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}

.p-why-body__item {
  background: #fff;
  padding: 10px 20px;
  text-align: center;
}

.p-why-body__item--icon {
  width: 20px;
  margin-inline: auto;
}
.p-why-body__item--icon img {
  width: 100%;
}

.p-why-body__item--name {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 700;
}

.p-why-body__item--text {
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0;
}

@media screen and (max-width: 1299px) {
  .p-grow__inner {
    padding-inline: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-grow__inner {
    padding-inline: 20px;
  }
}

.p-grow__content {
  margin-top: 50px;
}

.p-grow__vs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
@media screen and (max-width: 767px) {
  .p-grow__vs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-grow-vs__block {
  background: #fff;
  padding: 40px;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 767px) {
  .p-grow-vs__block {
    padding: 25px;
    width: 100%;
  }
}

.p-grow-vs__icon {
  margin-inline: auto;
  width: 50px;
}
.p-grow-vs__icon img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-grow-vs__icon {
    width: 40px;
  }
}

.p-grow-vs__title {
  text-align: center;
  font-size: 28px;
  color: #142942;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-grow-vs__title {
    font-size: 22px;
  }
}

.p-grow-vs__text {
  text-align: center;
  margin-top: 10px;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-grow-vs__text {
    font-size: 14px;
  }
}

.p-grow-vs__list {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .p-grow-vs__list {
    gap: 8px;
  }
}

.p-grow-vs__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-grow-vs__item {
    gap: 5px;
  }
}

.p-grow-vs__divider {
  color: #142942;
  font-weight: 700;
  font-size: 40px;
}
@media screen and (max-width: 767px) {
  .p-grow-vs__divider {
    font-size: 30px;
  }
}

.p-grow-graph__wrap {
  margin-top: 50px;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  padding: 10px;
  background-color: #fff;
}
.p-grow-graph__wrap img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-grow-graph__wrap {
    padding: 5px;
  }
}

.p-grow-graph__note {
  margin-top: 10px;
  font-size: 12px;
  color: #475569;
  text-align: center;
}

.p-grow-bottom {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1059px) {
  .p-grow-bottom {
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-grow-bottom__image img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-grow-bottom__title {
  font-size: 25px;
  font-weight: 700;
  color: #142942;
}

.p-grow-bottom__text {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 1px;
}
.p-grow-bottom__text span {
  font-weight: 700;
  color: #c8a96a;
}

.p-grow-bottom__point {
  border-left: 4px solid #c8a96a;
  margin-top: 40px;
  padding: 15px 20px;
  background: #f6f3ea;
}
.p-grow-bottom__point span {
  font-weight: 700;
}

.p-insurance {
  background: #f6f3ea;
}

@media screen and (max-width: 899px) {
  .p-insurance__inner {
    padding-inline: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-insurance__inner {
    padding-inline: 20px;
  }
}

.p-insurance__head {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 899px) {
  .p-insurance__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-insurance-head__image img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-insurance-head__text {
  font-size: 16px;
}
.p-insurance-head__text span {
  color: #142942;
  font-weight: 700;
}

.p-insurance__middle {
  margin-top: 50px;
}

.p-insurance-middle__title {
  font-size: 25px;
  color: #142942;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-insurance-middle__title {
    font-size: 22px;
  }
}

.p-insurance-middle__list {
  margin-inline: auto;
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  max-width: 800px;
}
@media screen and (max-width: 767px) {
  .p-insurance-middle__list {
    margin-top: 30px;
  }
}

.p-insurance-middle__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding: 20px 30px;
  border-left: 5px solid #c8a96a;
  background: #fff;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.p-insurance-middle__item span {
  font-size: 20px;
  font-weight: 700;
  color: #142942;
  width: 150px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-insurance-middle__item span {
    font-size: 15px;
    width: 110px;
  }
}
.p-insurance-middle__item p {
  font-size: 14px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .p-insurance-middle__item p {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  .p-insurance-middle__item {
    padding: 10px 20px;
    gap: 10px;
  }
}

.p-insurance__bottom {
  margin-top: 50px;
}

.p-insurance-bottom__title {
  font-size: 25px;
  color: #142942;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-insurance-bottom__title {
    font-size: 22px;
  }
}

.p-insurance-bottom__cards {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 899px) {
  .p-insurance-bottom__cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-insurance-bottom__card {
  background: #fff;
  padding: 20px 30px;
  min-width: 240px;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 899px) {
  .p-insurance-bottom__card {
    min-width: 300px;
  }
}

.p-insurance-bottom-card__num {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-insurance-bottom-card__num {
    font-size: 20px;
    padding: 5px 15px;
  }
}

.p-insurance-bottom-card__title {
  margin-top: 20px;
  text-align: center;
  font-size: 21px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-insurance-bottom-card__title {
    font-size: 18px;
  }
}

.p-insurance-bottom-card__text {
  text-align: center;
  font-size: 15px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-insurance-bottom-card__text {
    font-size: 13px;
  }
}

.p-insurance-bottom__note {
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
}

.p-insurance-bottom__arrow {
  text-align: center;
  font-size: 25px;
  font-weight: 700;
}
@media screen and (max-width: 899px) {
  .p-insurance-bottom__arrow {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

@media screen and (max-width: 1199px) {
  .p-risk__inner {
    padding-inline: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-risk__inner {
    padding-inline: 20px;
  }
}

.p-risk__content {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 999px) {
  .p-risk__content {
    grid-template-columns: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 30px;
  }
}

.p-risk-content-body__title {
  font-size: 28px;
  color: #142942;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-risk-content-body__title {
    font-size: 20px;
  }
}

.p-risk-content-body__text {
  margin-top: 20px;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-risk-content-body__text {
    font-size: 15px;
  }
}

.p-risk-content-body__list {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-risk-content-body__list {
    gap: 10px;
  }
}

.p-risk-content-body__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.p-risk-content-body__item span {
  width: 20px;
}
.p-risk-content-body__item span img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.p-risk-content-body__note {
  margin-top: 20px;
  font-size: 16px;
}
.p-risk-content-body__note span {
  display: inline;
  color: #c8a96a;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-risk-content-body__note {
    font-size: 15px;
  }
}

.p-risk-content__bottom {
  margin-top: 80px;
}

.p-risk-content-bottom__title {
  text-align: center;
  font-size: 25px;
  color: #142942;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-risk-content-bottom__title {
    font-size: 22px;
  }
}

.p-risk-__cards {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.p-risk__card {
  padding: 25px;
  background: #fff;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.p-risk-card__icon {
  width: 32px;
}
.p-risk-card__icon img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.p-risk-card__title {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-risk-card__title {
    font-size: 18px;
  }
}

.p-risk-card__text {
  margin-top: 20px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-risk-card__text {
    font-size: 13px;
  }
}

.p-risk-card__list {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-risk-card__item {
  font-weight: 700;
  font-size: 12px;
  padding: 2px 10px;
  border: 1px solid #c8a96a;
  color: #e3d2a8;
}

.p-investment {
  background: #f6f3ea;
}

@media screen and (max-width: 1119px) {
  .p-investment__inner {
    padding-inline: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-investment__inner {
    padding-inline: 20px;
  }
}

.p-investment-head {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 970px) {
  .p-investment-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-investment-head__image img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-investment-head__title {
  font-size: 28px;
  color: #142942;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-investment-head__title {
    font-size: 22px;
  }
}

.p-investment-head__text {
  margin-top: 10px;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-investment-head__text {
    font-size: 14px;
  }
}

.p-investment-head__note {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #142942;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-investment-head__note {
    font-size: 13px;
  }
}

.p-investment__chert {
  margin-top: 50px;
}

.p-investment-chert__title {
  text-align: center;
  font-size: 28px;
  color: #142942;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-investment-chert__title {
    font-size: 22px;
  }
}

.p-investment-chert__image {
  margin-top: 20px;
}
.p-investment-chert__image img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.p-investment-chert__note {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #142942;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-investment-chert__note {
    font-size: 13px;
  }
}

.p-investment__cards-wrap {
  margin-top: 50px;
}

.p-investment-cards__title {
  font-size: 28px;
  color: #142942;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-investment-cards__title {
    font-size: 22px;
  }
}

.p-investment__cards {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-investment__cards {
    margin-top: 30px;
    gap: 20px;
  }
}

.p-investment__card {
  background: #fff;
  padding: 20px 30px;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.p-investment-card__icon {
  margin-inline: auto;
  width: 50px;
}
.p-investment-card__icon img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.p-investment-card__title {
  text-align: center;
  margin-top: 20px;
  font-size: 20px;
  color: #142942;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-investment-card__title {
    font-size: 18px;
  }
}

.p-investment-card__text {
  margin-top: 15px;
  font-size: 16px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-investment-card__text {
    font-size: 14px;
  }
}

.p-checklist__text--n2 {
  margin-top: 30px;
  font-family: "Noto Sans JP", sans-serif;
}

.p-checklist__cards {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  max-width: 900px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-checklist__cards {
    margin-top: 30px;
  }
}

.p-checklist__card {
  padding: 20px 30px;
  background: #fff;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 767px) {
  .p-checklist__card {
    padding: 10px 20px;
  }
}

.p-checklist-card__title {
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-checklist-card__title {
    font-size: 18px;
  }
}

.p-checklist-card__text {
  margin-top: 10px;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-checklist-card__text {
    font-size: 14px;
  }
}

.p-checklist-card__list {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.p-checklist-card__item {
  list-style: none;
}

/* inputは見せない（でもクリック判定は残す） */
.p-checklist-card__input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

/* クリック範囲をli全体にする */
.p-checklist-card__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

/* チェックボックス */
.p-checklist-card__checkbox {
  width: 15px;
  height: 15px;
  border: 1px solid #142942;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* チェックアイコン（最初は非表示） */
.p-checklist-card__checkbox::after {
  content: "";
  width: 10px;
  height: 10px;
  background: url("../img/icon_check_list.svg") no-repeat center/contain;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

/* テキスト */
.p-checklist-card__check {
  font-size: 14px;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
@media screen and (max-width: 767px) {
  .p-checklist-card__check {
    font-size: 13px;
  }
}

/* ✅ チェックされたらON状態にする */
.p-checklist-card__input:checked + .p-checklist-card__label .p-checklist-card__checkbox::after {
  opacity: 1;
}

.p-checklist-card__input:checked + .p-checklist-card__label .p-checklist-card__check {
  color: #c8a96a;
  font-weight: 700;
}

/* チェックON時：チェックボックス枠の色も変更 */
.p-checklist-card__input:checked + .p-checklist-card__label .p-checklist-card__checkbox {
  border-color: #c8a96a;
}

.p-checklist__cta {
  margin-top: 50px;
  background: #fff;
  -webkit-box-shadow: 0 4px 16px rgba(200, 169, 106, 0.32);
          box-shadow: 0 4px 16px rgba(200, 169, 106, 0.32);
  padding: 30px 30px;
  text-align: center;
}

.p-checklist-cta__text {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-checklist-cta__text {
    font-size: 14px;
  }
}

.p-checklist-cta__btn-wrap {
  margin-top: 40px;
}

.p-checklist_btn {
  font-weight: 700;
}

.p-faq {
  background: #f6f3ea;
}

.p-faq__boxes {
  max-width: 900px;
  margin-inline: auto;
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-faq__boxes {
    gap: 20px;
  }
}

.p-faq__box {
  overflow: hidden;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  -webkit-transition: -webkit-box-shadow 0.8s ease;
  transition: -webkit-box-shadow 0.8s ease;
  transition: box-shadow 0.8s ease;
  transition: box-shadow 0.8s ease, -webkit-box-shadow 0.8s ease;
}
.p-faq__box.js-open .p-faq-box__head::before {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
@media (any-hover: hover) {
  .p-faq__box:hover {
    -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  }
}

.p-faq-box__head {
  padding: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  width: 100%;
  position: relative;
}
.p-faq-box__head::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 26px;
  width: 2px;
  height: 15px;
  background: #142942;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.p-faq-box__head::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  width: 15px;
  height: 2px;
  background: #142942;
}
@media screen and (max-width: 767px) {
  .p-faq-box__head {
    padding: 15px;
    gap: 5px;
  }
}

.p-faq-box__body {
  display: none;
  padding-right: 20px;
  background: #fff;
}

.p-faq-box__head-icon {
  font-weight: 700;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .p-faq-box__head-icon {
    font-size: 14px;
  }
}

.p-faq-box__head-text {
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-faq-box__head-text {
    font-size: 14px;
  }
}

.p-faq-box__a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  padding: 25px;
}

.p-faq-box__a-icon {
  font-weight: 700;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .p-faq-box__a-icon {
    font-size: 14px;
  }
}

.p-faq-box__a-text {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-faq-box__a-text {
    font-size: 14px;
  }
}

.p-faq__bold {
  font-weight: 700;
  display: inline;
}

.p-faq__note {
  color: #c8a96a;
  font-weight: 700;
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .p-faq__note {
    font-size: 12px;
  }
}

.p-message__inner {
  padding-inline: clamp(50px, 8.3333333333vw, 120px);
}
@media screen and (max-width: 1199px) {
  .p-message__inner {
    padding-inline: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-message__inner {
    padding-inline: 10px;
  }
}

.p-message__text {
  font-size: 25px;
  color: #475569;
}
@media screen and (max-width: 767px) {
  .p-message__text {
    font-size: 17px;
  }
}
.p-message__text.--margin {
  margin-top: 10px;
}

.p-message__content {
  margin-top: 50px;
}

.p-message__head p {
  font-size: 16px;
}
.p-message__head p span {
  display: inline;
  font-weight: 700;
  font-size: 18px;
}
.p-message__head p span:nth-of-type(2) {
  color: rgb(200, 0, 0);
}
@media screen and (max-width: 767px) {
  .p-message__head p span {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .p-message__head p {
    font-size: 14px;
    letter-spacing: 0;
  }
}

.p-message__bottom {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(30px, 13.8888888889vw, 200px);
}
@media screen and (max-width: 1199px) {
  .p-message__bottom {
    gap: clamp(30px, 8.4033613445vw, 100px);
  }
}
@media screen and (max-width: 899px) {
  .p-message__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}

.p-message-bottom__text {
  font-size: 16px;
  width: 58.3333333333%;
}
@media screen and (max-width: 1199px) {
  .p-message-bottom__text {
    width: 50.0417014178%;
  }
}
@media screen and (max-width: 899px) {
  .p-message-bottom__text {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-message-bottom__text {
    font-size: 14px;
    letter-spacing: 0;
  }
}

.p-message__image {
  width: 25%;
}
@media screen and (max-width: 1190px) {
  .p-message__image {
    width: 41.7014178482%;
  }
}
@media screen and (max-width: 899px) {
  .p-message__image {
    max-width: 500px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-message__image {
    width: 100%;
    padding-inline: 20px;
  }
}
.p-message__image img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-message__btn-wrap {
  margin-top: 50px;
  text-align: center;
}

.p-message__btn {
  display: inline-block;
  padding: 20px 70px;
  border: 1px solid transparent;
  border-radius: 6px;
  background-color: #ffa500;
  padding-top: 0px;
  padding-bottom: 0px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-message__btn span {
  color: #fff;
  display: block;
}
.p-message__btn span:nth-of-type(1) {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-message__btn span:nth-of-type(1) {
    font-size: 12px;
  }
}
.p-message__btn span:nth-of-type(2) {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .p-message__btn span:nth-of-type(2) {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .p-message__btn {
    padding: 10px 40px;
  }
}
@media (any-hover: hover) {
  .p-message__btn:hover {
    background: #fff;
    border: 1px solid #ffa500;
  }
  .p-message__btn:hover span {
    color: #ffa500;
  }
}

.p-movie__inner {
  margin-inline: auto;
  max-width: 1440px;
  padding-inline: 120px;
  padding-block: 20px 70px;
}
@media screen and (max-width: 1199px) {
  .p-movie__inner {
    padding-inline: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-movie__inner {
    padding-inline: 20px;
  }
}

@media screen and (max-width: 767px) {
  .p-movie__ja-title {
    font-size: 19px;
  }
}

.p-movie__contents {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
@media screen and (max-width: 1199px) {
  .p-movie__contents {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-movie__contents {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

.p-movie__youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
}
.p-movie__youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.p-cta {
  background: url(../img/bg_cta.webp) no-repeat center center/cover;
  width: 100%;
  position: relative;
  isolation: isolate;
}
.p-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20, 41, 66, 0.96) 0%, rgba(31, 58, 95, 0.5) 100%);
  z-index: -1;
}

.p-cta__inner {
  padding-block: 100px;
  padding-inline: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-cta__title {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-cta__title {
    font-size: 22px;
  }
}

.p-cta__text-wrap {
  margin-top: 30px;
}
.p-cta__text-wrap p {
  color: #fff;
  font-size: 18px;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-cta__text-wrap p {
    font-size: 14px;
  }
}

.p-cta__list {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-cta__item {
  color: #fff;
  background: #475569;
}
.p-cta__item span {
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 10px 20px;
}
.p-cta__item span img {
  width: 25px;
}

.p-cta__btn-wrap {
  margin-top: 50px;
}

.p-cta__btn {
  font-size: 25px;
  padding: 15px 60px;
}
@media screen and (max-width: 767px) {
  .p-cta__btn {
    font-size: 17px;
    padding: 10px 40px;
  }
}

.p-cta__note {
  margin-top: 30px;
  font-size: 14px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-cta__note {
    font-size: 12px;
  }
}

.p-contact-modal {
  width: 600px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-contact-modal {
    max-width: 350px;
  }
}

.p-contact__fields {
  padding: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.p-contact__privacy {
  margin-top: 24px;
  text-align: center;
}

.p-contact__privacy__text {
  font-size: 15px;
  font-weight: 500;
}

.p-form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.p-form-field__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}

.p-form-field__label {
  font-size: 16px;
  font-weight: 500;
}

.p-form-field__tag {
  font-size: 12px;
  font-weight: 700;
  color: #f44336;
  background: #ffebee;
  padding: 4px 8px;
  border-radius: 4px;
}
.p-form-field__tag.--color-gray {
  background: #f5f5f5;
  color: #666666;
}

.p-form-text {
  border: 1px solid #eff1f2;
  border-radius: 8px;
  color: #aaa;
  padding: 12px 16px;
  width: 100%;
}
.p-form-text:focus {
  outline: #e3d2a8 auto 1px;
}
.p-form-text:not(:-moz-placeholder) {
  color: #475569;
}
.p-form-text:not(:-ms-input-placeholder) {
  color: #475569;
}
.p-form-text:not(:placeholder-shown) {
  color: #475569;
}

.p-form-select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #eff1f2;
}
.p-form-select:focus {
  outline: #e3d2a8 auto 1px;
}

.p-form-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #eff1f2;
  height: 154px;
}
.p-form-textarea:focus {
  outline: #e3d2a8 auto 1px;
}
.p-form-textarea:not(:-moz-placeholder) {
  color: #475569;
}
.p-form-textarea:not(:-ms-input-placeholder) {
  color: #475569;
}
.p-form-textarea:not(:placeholder-shown) {
  color: #475569;
}

.p-form-checkbox__container {
  margin-top: 16px;
  text-align: center;
}

.p-form-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.p-form-checkbox__input:checked + .p-form-checkbox__text::after {
  opacity: 1;
}
.p-form-checkbox__input:focus + .p-form-checkbox__text::before {
  border: 1px solid #c8a96a;
}

.p-form-checkbox__text {
  font-size: 15px;
  position: relative;
  padding-left: 26px;
}
.p-form-checkbox__text::before, .p-form-checkbox__text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-form-checkbox__text::before {
  width: 20px;
  height: 20px;
  border: 1px solid #989898;
  background: #fff;
}
.p-form-checkbox__text::after {
  width: 20px;
  height: 20px;
  background: url(../img/icon_check.svg) no-repeat center center/contain;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-form-checkbox__text {
    font-size: 14px;
  }
}

.p-contact-modal::-ms-backdrop {
  background: rgba(0, 0, 0, 0.5);
}

.p-contact-modal::backdrop {
  background: rgba(0, 0, 0, 0.5);
}

.p-contact__button {
  text-align: center;
  margin-inline: auto;
  margin-top: 24px;
  max-width: 400px;
}

.p-contact__submit {
  font-size: 18px;
  color: #c8a96a;
  border: 1px solid #c8a96a;
  padding: 10px 50px;
}

.p-contact-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #000;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%; /* 27px */
}

/*----------------------------------
  WPCF7（最終完全版）
  - 相談内容（your-plan）：CF7の .wpcf7-list-item-label に疑似チェックを描画
  - 同意（acceptance）：あなたの .p-form-checkbox__text に疑似チェックを描画
  - class が span に付く/ input に付く 両方対応
  - 「消える」「重複する」「チェック出ない」全部潰す
-----------------------------------*/
.wpcf7-form-control-wrap {
  width: 100%;
}

.wpcf7-spinner {
  display: none;
}

/* ==================================================
  0) 保険：CF7では class:p-form-checkbox__input が span に付くことがある
     既存の .p-form-checkbox__input{1px...} があると “全体が消える”
     → span は必ず復活させる
================================================== */
.wpcf7-form span.p-form-checkbox__input {
  position: static !important;
  width: auto !important;
  height: auto !important;
  clip: auto !important;
  overflow: visible !important;
}

/* ==================================================
  1) 相談内容（your-plan）チェックボックス群
================================================== */
/* 2カラム（相談内容のエリアだけ） */
.p-form-field__checkboxes .wpcf7-checkbox {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* CF7デフォ余白を消す */
.p-form-field__checkboxes .wpcf7-list-item {
  margin: 0;
}

/* ✅ 本物checkbox(input)は非表示（spanにclassが付く/ input自身にclassが付く両対応） */
.p-form-field__checkboxes .p-form-checkbox__input input[type=checkbox],
.p-form-field__checkboxes input[type=checkbox].p-form-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

/* チェック時：チェック画像表示（相談内容） */
.p-form-field__checkboxes .p-form-checkbox__input input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

/* フォーカス時：枠線色（相談内容） */
.p-form-field__checkboxes .p-form-checkbox__input input[type=checkbox]:focus + .wpcf7-list-item-label::before {
  border: 1px solid #c8a96a;
}

/* ラベル（相談内容：CF7側で疑似チェック描画） */
.p-form-field__checkboxes .wpcf7-list-item-label {
  font-size: 15px;
  position: relative;
  padding-left: 26px;
  display: inline-block;
}
.p-form-field__checkboxes .wpcf7-list-item-label::before, .p-form-field__checkboxes .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-form-field__checkboxes .wpcf7-list-item-label::before {
  width: 20px;
  height: 20px;
  border: 1px solid #989898;
  background: #fff;
  border-radius: 2px;
}
.p-form-field__checkboxes .wpcf7-list-item-label::after {
  width: 20px;
  height: 20px;
  background: url(../img/icon_check.svg) no-repeat center center/contain;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-form-field__checkboxes .wpcf7-list-item-label {
    font-size: 14px;
  }
}

/* ==================================================
  2) 同意チェック（acceptance）
  - CF7側(.wpcf7-list-item-label)の疑似チェックは無効化（重複防止）
  - あなたの .p-form-checkbox__text で描画
  - acceptanceは入れ子構造なのでセレクタを合わせる
================================================== */
.wpcf7-acceptance {
  /* クリック範囲安定 */
  /* CF7側の□/チェックを完全に消す（重複防止） */
  /* CF7側の余白も消す（あなた側でpadding-leftしてるため） */
  /* ✅ 本物checkbox(input)を非表示（input自身にclassが付くケース） */
  /* ✅ チェックON：入れ子に合わせて .p-form-checkbox__text の after を出す */
  /* ✅ フォーカス：枠色 */
}
.wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.wpcf7-acceptance .wpcf7-list-item > label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.wpcf7-acceptance .wpcf7-list-item-label::before,
.wpcf7-acceptance .wpcf7-list-item-label::after {
  content: none !important;
}
.wpcf7-acceptance .wpcf7-list-item-label {
  padding-left: 0;
}
.wpcf7-acceptance input[type=checkbox].p-form-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.wpcf7-acceptance input[type=checkbox].p-form-checkbox__input:checked + .wpcf7-list-item-label .p-form-checkbox__text::after {
  opacity: 1;
}
.wpcf7-acceptance input[type=checkbox].p-form-checkbox__input:focus + .wpcf7-list-item-label .p-form-checkbox__text::before {
  border: 1px solid #c8a96a;
}

.p-privacy__inner {
  padding-block: 200px;
  padding-inline: 120px;
  max-width: 1440px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-privacy__inner {
    padding-inline: 20px;
    padding-block: 120px;
  }
}

.p-privacy__title {
  font-size: 30px;
  letter-spacing: 2px;
  line-height: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid #475569;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-privacy__title {
    font-size: 18px;
  }
}

.p-privacy__content {
  margin-top: 100px;
}
.p-privacy__content p {
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 30px;
}
@media screen and (max-width: 767px) {
  .p-privacy__content p {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .p-privacy__content {
    margin-top: 50px;
  }
}

.p-footer {
  background: #0b1220;
}

.p-footer__inner {
  padding-inline: 50px;
  padding-top: 80px;
  padding-bottom: 20px;
  max-width: 1440px;
  margin-inline: auto;
}
@media screen and (max-width: 1240px) {
  .p-footer__inner {
    padding-inline: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__inner {
    padding-inline: 20px;
    padding-top: 50px;
    padding-bottom: 10px;
  }
}

.p-footer__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1240px) {
  .p-footer__content {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__content {
    row-gap: unset;
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.p-footer__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 1240px) {
  .p-footer__section {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__section {
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
  }
}

.p-footer__logo {
  color: #e3d2a8;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-footer__logo span img {
  width: 28px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (any-hover: hover) {
  .p-footer__logo:hover {
    opacity: 0.7;
  }
}

.p-footer__desc {
  font-size: 16px;
  margin-top: 20px;
  color: #d9d9d9;
}

.p-footer__sns {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-footer__sns-title {
  font-size: 16px;
  color: #e3d2a8;
}

.p-footer-sns__link {
  width: 40px;
  padding: 3px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-footer-sns__link img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (any-hover: hover) {
  .p-footer-sns__link:hover {
    opacity: 0.7;
  }
}

.p-footer-section__title {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}

.p-footer__links {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .p-footer__links {
    margin-top: 15px;
    gap: 10px;
  }
}

.p-footer__link a {
  color: #d9d9d9;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-footer__link a {
    font-size: 14px;
  }
}
@media (any-hover: hover) {
  .p-footer__link a:hover {
    color: #e3d2a8;
  }
}
.p-footer__link button {
  color: #d9d9d9;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (any-hover: hover) {
  .p-footer__link button:hover {
    color: #e3d2a8;
  }
}

.p-footer__info {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .p-footer__info {
    margin-top: 15px;
    gap: 10px;
  }
}

.p-footer-section__term {
  color: #d9d9d9;
}

.p-footer-section__desc {
  color: #d9d9d9;
}

.p-footer__contact {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .p-footer__contact {
    margin-top: 15px;
    gap: 10px;
  }
}

.p-footer__contact-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #d9d9d9;
}
.p-footer__contact-row span {
  width: 16px;
}
.p-footer__contact-row span img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-footer__note {
  margin-top: 50px;
  padding: 25px;
  background: #333;
}
.p-footer__note span {
  font-size: 16px;
  color: #e3d2a8;
  font-weight: 700;
}
.p-footer__note p {
  margin-top: 10px;
  font-size: 14px;
  color: #d9d9d9;
}

.p-footer__bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-footer-policy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .p-footer-policy {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-footer-policy__item {
  font-size: 14px;
  color: #d9d9d9;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (any-hover: hover) {
  .p-footer-policy__item:hover {
    color: #e3d2a8;
  }
}

.p-footer__copy {
  font-size: 14px;
  color: #d9d9d9;
}
@media screen and (max-width: 767px) {
  .p-footer__copy {
    font-size: 10px;
    margin-top: 20px;
  }
}

.u-hidden-sp {
  display: inline;
}
@media screen and (max-width: 767px) {
  .u-hidden-sp {
    display: none;
  }
}

.u-hidden-pc {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-hidden-pc {
    display: inline;
  }
}

.u-animated__fadeIn--fv {
  /* before（出現前） */
  opacity: 0;
  -webkit-transition: opacity 4s ease;
  transition: opacity 4s ease;
  /* after（出現後） */
}
.u-animated__fadeIn--fv.js-show {
  opacity: 1;
}

.u-animated__fadeIn {
  /* before（出現前） */
  opacity: 0;
  translate: 0 20px;
  -webkit-transition: opacity 1.5s ease, translate 1.5s ease;
  transition: opacity 1.5s ease, translate 1.5s ease;
  /* after（出現後） */
}
.u-animated__fadeIn.js-show {
  opacity: 1;
  translate: 0 0;
}

.u-animated__clipView {
  /* before（出現前） */
  clip-path: inset(0 100% 0 0);
  -webkit-transition: clip-path 0.8s ease;
  transition: clip-path 0.8s ease;
  will-change: clip-path;
  /* after（出現後） */
}
.u-animated__clipView.js-show {
  clip-path: inset(0 0 0 0);
}/*# sourceMappingURL=style.css.map */