@charset "UTF-8";
html {
  width: 100%;
  height: 100%;
}

@media (max-width: 992px) and (min-width: 768px) {
  html {
    font-size: 16px;
    font-size: 2.0833333333vw;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 16px;
    font-size: 4.2666666667vw;
  }
}
body {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  overflow-x: hidden;
  line-height: 1.45;
  color: #333;
  background-color: #fff;
  position: relative;
}
body.no_scroll {
  overflow: hidden;
  position: relative;
}

a {
  cursor: pointer;
  text-decoration: none;
  outline: none;
  color: #1a1a1a;
}

p {
  font-size: 1rem;
}

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

.u-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  p {
    font-size: 0.875rem;
  }
  .u-pc {
    display: none;
  }
  .u-sp {
    display: block;
  }
}
/* -----------------------------------
  ヘッダー header
  -----------------------------------*/
.l-header {
  width: 100%;
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: #fff;
  padding: 14px 0;
  height: 76px;
  border-bottom: 1px solid #E2E8F0;
}
.l-header__wrap {
  width: calc(100% - 32px);
  max-width: 1160px;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.l-header__logo {
  width: 30%;
  max-width: 200px;
  position: relative;
  z-index: 9999;
}
.l-header__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 16px;
}
.l-header__btns {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 16px;
}
.l-header__btns .btn {
  border-radius: 2px;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 10px;
  transition: opacity 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 0 24px;
  min-height: 50px;
}
@media (hover: hover) {
  .l-header__btns .btn:hover {
    opacity: 0.7;
  }
}
.l-header__btns .btn .text {
  display: block;
}
.l-header__btns .btn .text.sp {
  display: none;
}
.l-header__btns .btn-tel {
  background-color: #114281;
  font-size: 16px;
  font-family: "Rubik", sans-serif;
  text-align: center;
  font-weight: 500;
  line-height: 1.25;
}
.l-header__btns .btn-tel .text {
  padding-bottom: 4px;
}
.l-header__btns .btn-tel .sm {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.03em;
}
.l-header__btns .btn-mail {
  background-color: #B91C1C;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.l-header__container {
  width: 100%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  padding: 12px 0;
  z-index: 99999;
  background-color: #fff;
  border-top: 1px solid #E2E8F0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.l-header__list li:not(:last-child) {
  border-bottom: 1px solid #F1F0ED;
}
.l-header__list a {
  display: block;
  color: #334155;
  font-weight: 500;
  font-size: 16px;
  transition: 0.3s ease;
  padding: 14px 16px;
}
@media (hover: hover) {
  .l-header__list a:hover {
    opacity: 0.7;
  }
}
.l-header__list a.tel {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 12px;
  font-weight: 700;
  color: #0D1B3E;
}
.l-header__list a.tel::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  -webkit-mask-image: url(../img/icon_tel.svg);
          mask-image: url(../img/icon_tel.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #0D1B3E;
}

/* ----- hamburger -----*/
.c-hamburger {
  position: relative;
  width: 40px;
  height: 40px;
  z-index: 999999;
  display: block;
  border-radius: 50%;
}
.c-hamburger span {
  display: inline-block;
  transition: all 0.2s;
  position: absolute;
  width: 16px;
  height: 2px;
  background-color: #333;
  border-radius: 2px;
  left: 12px;
}
.c-hamburger span:nth-of-type(1) {
  top: 14px;
}
.c-hamburger span:nth-of-type(2) {
  top: 20px;
}
.c-hamburger span:nth-of-type(3) {
  top: 26px;
}
.c-hamburger.is-active span:nth-of-type(1) {
  -ms-transform: translateY(6px) rotate(-45deg);
      transform: translateY(6px) rotate(-45deg);
}
.c-hamburger.is-active span:nth-of-type(2) {
  opacity: 0;
}
.c-hamburger.is-active span:nth-of-type(3) {
  -ms-transform: translateY(-6px) rotate(45deg);
      transform: translateY(-6px) rotate(45deg);
}

@media screen and (max-width: 767px) {
  .l-header {
    width: 100%;
    height: 64px;
    padding: 12px 0;
    border-bottom: none;
  }
  .l-header__logo {
    width: 51.5%;
  }
  .l-header__block {
    gap: 0;
  }
  .l-header__btns .btn {
    gap: 8px;
    padding: 0 12px 0 10px;
    min-height: 40px;
  }
  .l-header__btns .btn .icon {
    width: 15px;
  }
  .l-header__btns .btn .text.pc {
    display: none;
  }
  .l-header__btns .btn .text.sp {
    display: block;
  }
  .l-header__btns .btn-tel {
    display: none;
  }
  .l-header__btns .btn-mail {
    font-size: 13px;
  }
  .l-header__container {
    top: 64px;
    padding: 12px 0;
    border-top: 0.8px solid #000;
  }
  .l-header__container .l-wrap {
    width: calc(100% - 32px);
  }
  .l-header__list a {
    padding: 14px 16px 15px;
  }
}
/* -----------------------------------
  footer
  -----------------------------------*/
.l-footer {
  background-color: #232323;
  color: #fff;
  padding-top: 80px;
}
.l-footer__wrap {
  width: calc(100% - 48px);
  max-width: 1160px;
  margin: 0 auto;
}
.l-footer__ttl {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  text-decoration: underline;
  text-underline-offset: 2px;
  letter-spacing: 0.05em;
}
.l-footer__block {
  display: grid;
  grid-template-columns: 5fr 3fr;
  gap: 40px;
}
.l-footer__lead {
  margin-top: 20px;
  opacity: 0.4;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
.l-footer__tel {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 12px;
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  opacity: 0.7;
  font-size: 18px;
  margin-top: 20px;
}
.l-footer__tel::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url(../img/icon_tel.svg) no-repeat center/100%;
  opacity: 0.4;
}
.l-footer__address {
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  opacity: 0.4;
  margin-top: 10px;
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 1.6;
}
.l-footer__address::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url(../img/icon_place.svg) no-repeat center/100%;
  opacity: 0.4;
  margin-top: 4px;
}
.l-footer__service {
  margin-top: 40px;
}
.l-footer__service__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 16px;
  font-size: 14px;
  opacity: 0.4;
  margin-top: 8px;
}
.l-footer__bottom {
  margin-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.l-footer__bottom p {
  font-size: 12px;
  opacity: 0.25;
}

@media screen and (max-width: 767px) {
  .l-footer {
    padding-top: 64px;
  }
  .l-footer__ttl {
    font-size: 1rem;
  }
  .l-footer__block {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .l-footer__lead {
    font-size: 0.8125rem;
  }
  .l-footer__tel {
    font-size: 1.125rem;
  }
  .l-footer__address::before {
    margin-top: 2px;
  }
  .l-footer__service {
    margin-top: 40px;
  }
  .l-footer__service__list {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: start;
        align-items: flex-start;
  }
  .l-footer__bottom {
    padding: 20px 0 24px;
    -ms-flex-direction: column;
        flex-direction: column;
  }
  .l-footer__bottom p {
    font-size: 0.75rem;
  }
}
/* ---------------------------------------------
  component
  --------------------------------------------- */
/* ------ heading ------ */
.c-heading {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 56px;
}
.c-heading__sub {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 12px;
  color: rgba(17, 66, 129, 0.5);
  font-size: 0.8125rem;
  letter-spacing: 0.3em;
  font-weight: 500;
  line-height: 1;
}
.c-heading__sub::before, .c-heading__sub::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background: rgba(17, 66, 129, 0.2);
}
.c-heading__main {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: #114281;
}
.c-heading__lead {
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 1.6;
  color: #64748B;
}

@media screen and (max-width: 767px) {
  .c-heading {
    gap: 16px;
    margin-bottom: 40px;
  }
  .c-heading__main {
    font-size: 1.5rem;
  }
}
/* ------ card ------ */
.c-card {
  background-color: #fff;
  border: 1px solid #E8E5E0;
  padding: 32px;
  position: relative;
}
.c-card__heading {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.c-card__heading .wrap {
  -ms-flex: 1;
      flex: 1;
  display: grid;
  gap: 12px;
}
.c-card__ttl {
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  line-height: 1.4;
}
.c-card__desc {
  color: #64748B;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.03em;
}
.c-card__detail {
  background-color: #FAF9F7;
  border: 1px solid rgba(232, 229, 224, 0.5);
  padding: 20px;
}
.c-card__detail__ttl {
  color: rgba(17, 66, 129, 0.4);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 12px;
}
.c-card__detail__list {
  display: grid;
  gap: 10px;
  line-height: 1.4;
}
.c-card__detail__list li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 10px;
}
.c-card__detail__list li::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url(../img/icon_arrow_right.svg) no-repeat center/100%;
}
.c-card.highlight {
  border-color: #B91C1C;
}
.c-card.highlight .highlight-text {
  position: absolute;
  top: -16px;
  left: 32px;
  font-size: 0.875rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  background-color: #B91C1C;
  border-radius: 2px;
  padding: 6px 16px;
}

.c-card-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media screen and (max-width: 767px) {
  .c-card {
    padding: 22px;
  }
  .c-card__heading .wrap {
    gap: 10px;
  }
  .c-card__ttl {
    font-size: 1.25rem;
    line-height: 1.6;
  }
  .c-card__desc {
    font-size: 0.875rem;
    letter-spacing: 0;
    font-weight: 400;
  }
  .c-card__detail__list {
    gap: 13px;
  }
  .c-card__detail__list li {
    font-size: 0.875rem;
    letter-spacing: 0.03em;
  }
  .c-card-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.c-icon {
  width: 64px;
  height: 64px;
  border-radius: 2px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}

.l-wrap {
  width: calc(100% - 48px);
  max-width: 1160px;
  margin: 0 auto;
}

.u-color {
  color: #B91C1C;
}

.u-accent {
  font-size: 2.5rem;
  color: #B91C1C;
  letter-spacing: 0.05em;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

@media screen and (max-width: 767px) {
  .u-accent {
    font-size: 2rem;
  }
}
/* ---------------------------------------------
  cta
  --------------------------------------------- */
.p-cta {
  background-color: #114281;
  padding: 48px 0;
}
.p-cta .c-heading {
  gap: 28px;
  margin-bottom: 28px;
}
.p-cta .c-heading__sub {
  color: #fff;
  opacity: 0.7;
  font-size: 0.875rem;
}
.p-cta .c-heading__sub::before, .p-cta .c-heading__sub::after {
  width: 32px;
  background-color: #fff;
}
.p-cta .c-heading__main {
  color: #fff;
}
.p-cta .c-heading__lead {
  color: rgba(255, 255, 255, 0.6);
}
.p-cta .c-heading__lead::before {
  content: "";
  display: block;
  margin: 0 auto 28px;
  width: 48px;
  height: 1px;
  background-color: #B91C1C;
}
.p-cta__btns {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 24px;
}
.p-cta__btns .btn {
  border-radius: 2px;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 16px;
  transition: opacity 0.3s ease;
  padding: 0 32px;
  min-height: 64px;
  font-size: 18px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media (hover: hover) {
  .p-cta__btns .btn:hover {
    opacity: 0.7;
  }
}
.p-cta__btns .btn .text {
  display: block;
}
.p-cta__btns .btn-tel {
  background-color: rgba(255, 255, 255, 0.1);
  font-family: "Rubik", sans-serif;
  text-align: center;
  font-weight: 500;
  line-height: 1.25;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.p-cta__btns .btn-tel .text {
  padding-bottom: 4px;
}
.p-cta__btns .btn-tel .sm {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.03em;
}
.p-cta__btns .btn-mail {
  background-color: #B91C1C;
  font-weight: 700;
}
.p-cta__btns .btn-mail::after {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background: url(../img/icon_arrow.svg) no-repeat center/100%;
}

@media screen and (max-width: 767px) {
  .p-cta {
    padding: 48px 0;
  }
  .p-cta .c-heading {
    gap: 28px;
    margin-bottom: 28px;
  }
  .p-cta .c-heading__main {
    line-height: 1.4;
  }
  .p-cta .c-heading__sub {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    line-height: 1.6;
  }
  .p-cta .c-heading__sub::before, .p-cta .c-heading__sub::after {
    width: 32px;
  }
  .p-cta .c-heading__lead {
    line-height: 1.6;
    font-size: 0.875rem;
  }
  .p-cta__btns {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 16px;
  }
  .p-cta__btns .btn {
    font-size: 16px;
    width: 100%;
    max-width: 256px;
  }
  .p-cta__btns .btn-tel {
    padding-left: 32px;
    -ms-flex-pack: start;
        justify-content: flex-start;
  }
  .p-cta__btns .btn-tel .text {
    padding-bottom: 4px;
    letter-spacing: 0.05em;
  }
}
/* ---------------------------------------------
  mv
  --------------------------------------------- */
.p-mv {
  position: relative;
  margin-top: 76px;
}
.p-mv__bg {
  position: relative;
  width: 100%;
  height: 46.5rem;
}
.p-mv__bg::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.1) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.p-mv__bg .p-mv__slider__reverse {
  height: 50%;
}
.p-mv__bg .p-mv__slider {
  height: 50%;
}
.p-mv__bg .swiper-wrapper {
  transition-timing-function: linear;
}
.p-mv__bg .swiper-slide {
  height: 100%;
  max-width: 100%;
}
.p-mv__bg .swiper-slide img {
  width: 100%;
  height: 100%;
  aspect-ratio: 560/372;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-mv__container {
  position: relative;
  z-index: 9;
  margin-top: 64px;
  position: absolute;
  top: 0;
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
}
.p-mv__block {
  max-width: 37.5rem;
  padding: 32px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 32px;
}
.p-mv__block .note {
  font-size: 0.875rem;
  color: rgba(51, 51, 51, 0.4);
  line-height: 1.6;
}
.p-mv__ttl {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
.p-mv__ttl .large {
  font-size: 2.5rem;
  color: #B91C1C;
  letter-spacing: 0.1em;
}
.p-mv__ttl .border {
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}
.p-mv__text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 32px;
}
.p-mv__text .text_1 {
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #B91C1C;
  font-weight: 500;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 8px;
}
.p-mv__text .text_1 .num {
  display: inline-block;
  background-color: #B91C1C;
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  border-radius: 2px;
  padding: 2px 8px;
  line-height: 1;
}
.p-mv__text .text_2 {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(51, 51, 51, 0.7);
}
.p-mv__text .check_list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 8px;
}
.p-mv__text .check_list li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 12px;
  color: rgba(51, 51, 51, 0.85);
  font-size: 1.125rem;
  line-height: 1.6;
}
.p-mv__text .check_list li::before {
  content: "";
  display: block;
  width: 20px;
  min-width: 20px;
  height: 20px;
  background: url(../img/icon_check.svg) no-repeat center/100%;
}
.p-mv__btns {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 16px;
}
.p-mv__btns .btn {
  border-radius: 2px;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 16px;
  transition: opacity 0.3s ease;
  padding: 0 32px;
  min-height: 64px;
  font-size: 18px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media (hover: hover) {
  .p-mv__btns .btn:hover {
    opacity: 0.7;
  }
}
.p-mv__btns .btn .text {
  display: block;
}
.p-mv__btns .btn-tel {
  background-color: #114281;
  font-family: "Rubik", sans-serif;
  text-align: center;
  font-weight: 500;
  line-height: 1.25;
  border: 1px solid rgba(17, 66, 129, 0.25);
}
.p-mv__btns .btn-tel .text {
  padding-bottom: 4px;
}
.p-mv__btns .btn-tel .sm {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.03em;
}
.p-mv__btns .btn-mail {
  background-color: #B91C1C;
  font-weight: 700;
}
.p-mv__btns .btn-mail::after {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background: url(../img/icon_arrow.svg) no-repeat center/100%;
}

@media screen and (max-width: 767px) {
  .p-mv {
    margin-top: 64px;
  }
  .p-mv__bg {
    max-height: 660px;
  }
  .p-mv__bg::after {
    background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.9) 60%, rgba(255, 255, 255, 0.28) 100%);
  }
  .p-mv__bg .swiper-wrapper {
    transition-timing-function: linear;
  }
  .p-mv__bg .swiper-slide {
    height: 100%;
  }
  .p-mv__bg .swiper-slide img {
    width: 100%;
    height: 100%;
    aspect-ratio: 560/372;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-mv__container {
    margin: 0;
    padding: 64px 16px 64px 24px;
    width: 100%;
  }
  .p-mv__block {
    padding: 0;
    gap: 24px;
    max-width: 100%;
  }
  .p-mv__block .note {
    font-size: 0.75rem;
    line-height: 1.8;
  }
  .p-mv__ttl {
    font-size: 1.25rem;
    line-height: 1.7;
  }
  .p-mv__ttl .large {
    font-size: 1.5rem;
  }
  .p-mv__ttl .border {
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
  }
  .p-mv__text {
    gap: 22px;
  }
  .p-mv__text .text_1 {
    font-size: 0.875rem;
    font-weight: 500;
    gap: 8px;
  }
  .p-mv__text .text_1 .num {
    font-size: 1.25rem;
  }
  .p-mv__text .text_2 {
    font-size: 0.875rem;
  }
  .p-mv__text .check_list {
    gap: 8px;
  }
  .p-mv__text .check_list li {
    font-size: 0.875rem;
  }
  .p-mv__btns {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: start;
        align-items: flex-start;
    gap: 16px;
  }
  .p-mv__btns .btn {
    gap: 16px;
    padding: 0 32px;
    font-size: 16px;
    width: 100%;
    max-width: 256px;
  }
  .p-mv__btns .btn .text {
    display: block;
  }
  .p-mv__btns .btn-tel {
    padding-left: 32px;
    -ms-flex-pack: start;
        justify-content: flex-start;
  }
}
/* ---------------------------------------------
  intro
  --------------------------------------------- */
.p-intro {
  background-color: #114281;
  padding: 64px 0;
  color: #fff;
}
.p-intro__block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.p-intro__block__item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
}
.p-intro__block__item .c-icon {
  width: 72px;
  height: 72px;
  background-color: rgba(255, 255, 255, 0.1);
}
.p-intro__block__item .ttl {
  font-family: "Noto Serif JP", serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  gap: 8px;
  margin-top: 16px;
}
.p-intro__block__item .ttl .border {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  font-size: 1.75rem;
}
.p-intro__block__item .desc {
  font-size: 0.875rem;
  color: #ADBCD0;
  line-height: 1.8;
  text-align: center;
  max-width: 268px;
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .p-intro {
    padding: 40px 0;
  }
  .p-intro__block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .p-intro__block__item .ttl .border {
    text-decoration-thickness: 1px;
  }
}
/* ---------------------------------------------
    problem
  --------------------------------------------- */
.p-problem {
  background-color: #FAF9F7;
  padding: 96px 0;
}
.p-problem .c-heading__main {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}
.p-problem .c-icon {
  background-color: rgba(185, 28, 28, 0.05);
}
.p-problem .c-card {
  border-color: rgba(185, 28, 28, 0.3);
}
.p-problem .c-card__ttl {
  color: #B91C1C;
}
.p-problem .c-card__desc {
  letter-spacing: 0;
}
.p-problem .c-card-list {
  margin-bottom: 56px;
}
.p-problem .p-cta {
  padding: 40px 24px;
}
.p-problem .p-cta .c-heading {
  gap: 16px;
  margin-bottom: 16px;
}
.p-problem .p-cta .c-heading__lead::before {
  margin-bottom: 16px;
}

@media screen and (max-width: 767px) {
  .p-problem {
    padding: 40px 0;
  }
  .p-problem .c-heading__main {
    -ms-flex-pack: center;
        justify-content: center;
    gap: 8px;
  }
  .p-problem .c-card-list {
    margin-bottom: 40px;
  }
}
/* ---------------------------------------------
    service
  --------------------------------------------- */
.p-service {
  padding: 96px 0;
}
.p-service .c-icon {
  background-color: #114281;
  width: 72px;
  height: 72px;
}
.p-service .c-card__ttl {
  color: #114281;
}
.p-service__promise {
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  background-color: #FAF9F7;
  border-left: 4px solid #114281;
  padding: 32px;
  margin-top: 56px;
}
.p-service__promise::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../img/icon_mark.svg) no-repeat center/100%;
}
.p-service__promise .wrap {
  -ms-flex: 1;
      flex: 1;
  display: grid;
  gap: 6px;
}
.p-service__promise .ttl {
  font-family: "Noto Serif JP", serif;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  line-height: 1.4;
  color: #114281;
}
.p-service__promise .desc {
  color: #64748B;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 767px) {
  .p-service {
    padding: 40px 0;
  }
  .p-service .c-heading {
    gap: 20px;
  }
  .p-service__promise {
    padding: 24px 24px 24px 20px;
    margin-top: 40px;
  }
  .p-service__promise .ttl {
    font-size: 0.9375rem;
  }
  .p-service__promise .desc {
    color: #64748B;
    font-size: 0.875rem;
  }
}
/* ---------------------------------------------
  strength
  --------------------------------------------- */
.p-strength {
  background-color: #FAF9F7;
  padding: 96px 0;
}
.p-strength .c-heading__main {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}
.p-strength .c-card .num {
  font-family: "Noto Serif JP", serif;
  font-size: 4.5rem;
  font-weight: 900;
  color: rgba(17, 66, 129, 0.04);
  line-height: 1;
  position: absolute;
  top: 4px;
  right: 20px;
  letter-spacing: 0;
}
.p-strength .c-icon {
  background-color: rgba(17, 66, 129, 0.05);
}
.p-strength .c-card__heading {
  margin-bottom: 16px;
}
.p-strength .c-card__ttl {
  color: #114281;
  font-size: 1.25rem;
}
.p-strength .c-card__desc {
  padding-right: 32px;
}

@media screen and (max-width: 767px) {
  .p-strength {
    padding: 40px 0;
  }
  .p-strength .c-heading__main {
    -ms-flex-pack: center;
        justify-content: center;
    gap: 2px;
  }
  .p-strength .c-heading__lead {
    line-height: 1.4;
  }
  .p-strength .c-card .num {
    right: 24px;
  }
  .p-strength .c-card__desc {
    padding-right: 0;
  }
}
/* ---------------------------------------------
  voice
  --------------------------------------------- */
.p-voice {
  padding: 96px 0;
}
.p-voice__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.p-voice__list__item {
  border: 1px solid #E8E5E0;
  padding: 32px;
}
.p-voice__ttl {
  font-family: "Noto Serif JP", serif;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  line-height: 1.4;
  color: #114281;
  position: relative;
  margin-bottom: 16px;
}
.p-voice__ttl::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url(../img/icon_quotation.svg) no-repeat center/100%;
  opacity: 0.15;
  margin-bottom: 8px;
}
.p-voice__ttl span {
  display: block;
}
.p-voice__ttl span::before {
  content: "";
  display: block;
  width: 135px;
  height: 1px;
  background-color: #E8E5E0;
  margin-bottom: 16px;
}
.p-voice__prof {
  display: grid;
  grid-template-columns: 56px auto;
  -ms-flex-align: center;
      align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.p-voice__prof__text .name {
  font-size: 1rem;
  color: #334155;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.p-voice__prof__text .detail {
  font-size: 0.875rem;
  color: #94A3B8;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.p-voice__desc {
  color: #64748B;
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 767px) {
  .p-voice {
    padding: 40px 0;
  }
  .p-voice__list {
    grid-template-columns: 1fr;
  }
  .p-voice__list__item {
    padding: 24px;
  }
}
/* ---------------------------------------------
  price
  --------------------------------------------- */
.p-price {
  background-color: #FAF9F7;
  padding: 96px 0;
  overflow: hidden;
}
.p-price .c-icon {
  background-color: #114281;
  width: 56px;
  height: 56px;
}
.p-price .c-card__ttl {
  color: #114281;
}
.p-price .c-card__heading {
  margin-bottom: 0;
  gap: 12px;
}
.p-price .c-card__desc {
  margin-top: 24px;
  letter-spacing: 0.03em;
  font-size: 0.9375rem;
}
.p-price .c-card-list {
  gap: 40px;
}
.p-price .c-card:nth-child(3) {
  grid-column: span 2/span 2;
}
.p-price .c-card .highlight-text {
  left: 24px;
}
.p-price__wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  gap: 12px;
}
.p-price__text {
  font-size: 1rem;
  font-weight: 700;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  gap: 12px;
  line-height: 1.6;
}
.p-price__text .num {
  font-family: "Rubik", sans-serif;
  color: #B91C1C;
  font-size: 3rem;
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: 0.05em;
}
.p-price__container {
  margin-top: 24px;
}
.p-price__table {
  width: 100%;
  table-layout: fixed;
}
.p-price__table th, .p-price__table td {
  border: 1.5px solid #E0E0E0;
  border-collapse: collapse;
}
.p-price__table thead th {
  background-color: #565656;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 10px;
  color: #fff;
  border: none;
}
.p-price__table thead th:first-of-type {
  background-color: #5A5A5A;
  width: 114px;
}
.p-price__table tbody th {
  background-color: #F0F0F0;
  font-size: 0.875rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  vertical-align: middle;
}
.p-price__table tbody th .unit {
  font-size: 0.75rem;
  color: #666666;
}
.p-price__table tbody td {
  vertical-align: middle;
  text-align: center;
}
.p-price__table tbody .price {
  font-size: 0.875rem;
  font-weight: 700;
}
.p-price__table tbody .price th {
  padding: 20px 0 26px;
}
.p-price__table tbody .num {
  font-size: 1.5rem;
  font-family: "Rubik", sans-serif;
}
.p-price__table tbody .off {
  font-size: 0.6875rem;
  color: #666;
}
.p-price__table tbody .discount th {
  padding: 15px 0;
}
.p-price__table tbody .discount td {
  font-size: 0.6875rem;
  font-weight: 400;
  color: #666666;
}
.p-price .scroll-text {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  display: none;
  margin-top: 6px;
}

@media screen and (max-width: 767px) {
  .p-price {
    padding: 40px 0;
  }
  .p-price .c-card__heading {
    margin-bottom: 0;
    gap: 12px;
  }
  .p-price .c-card__desc {
    margin-top: 16px;
    font-size: 0.875rem;
  }
  .p-price .c-card-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 0;
  }
  .p-price .c-card:first-child {
    margin-bottom: 40px;
  }
  .p-price .c-card:nth-child(2) {
    margin-bottom: 16px;
  }
  .p-price .c-card:nth-child(3) {
    width: 100%;
    padding-right: 0;
  }
  .p-price .c-card:nth-child(3) .c-card__desc {
    padding-right: 24px;
  }
  .p-price .c-card.highlight {
    padding-top: 26px;
  }
  .p-price .c-card .highlight-text {
    left: 24px;
  }
  .p-price .c-card__desc {
    margin-top: 20px;
  }
  .p-price__wrap {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: start;
        align-items: flex-start;
    gap: 16px;
  }
  .p-price__text {
    -ms-flex-align: end;
        align-items: flex-end;
    gap: 12px;
  }
  .p-price__container {
    margin-top: 24px;
    overflow-x: auto;
    padding-bottom: 10px;
    width: calc(100% + 24px);
    background: #fff;
  }
  .p-price__container::-webkit-scrollbar {
    height: 4px;
  }
  .p-price__container::-webkit-scrollbar-thumb {
    background-color: #B91C1C;
    border-radius: 8px;
  }
  .p-price__container::-webkit-scrollbar-track {
    background-color: #D9D9D9;
  }
  .p-price__table {
    min-width: 1094px;
  }
  .p-price .scroll-text {
    display: block;
  }
}
/* ---------------------------------------------
  flow
  --------------------------------------------- */
.p-flow {
  background-color: #FAF9F7;
  padding: 96px 0;
  overflow: hidden;
}
.p-flow .c-heading {
  margin-bottom: 40px;
}
.p-flow__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
  margin-bottom: 40px;
}
.p-flow__list::before {
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background-color: #114281;
  position: absolute;
  top: 8px;
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
}
.p-flow__item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 8px;
  position: relative;
}
.p-flow__date {
  background-color: #114281;
  border-radius: 2px;
  padding: 4px 14px;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.05em;
  position: relative;
}
.p-flow__block {
  background-color: #fff;
  padding: 16px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex: 1;
      flex: 1;
}
.p-flow__block .desc {
  color: #114281;
  font-size: 0.875rem;
  line-height: 1.6;
}
.p-flow__ttl {
  font-family: "Noto Serif JP", serif;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
  color: #114281;
}
.p-flow__img {
  margin-bottom: 16px;
}
.p-flow__period {
  background-color: #fff;
  border: 1px solid #E8E5E0;
  padding: 32px;
}
.p-flow__period__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 32px;
  margin-bottom: 12px;
}
.p-flow__period__block .ttl {
  padding-right: 32px;
  border-right: 1px solid rgba(17, 66, 129, 0.15);
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
  color: #114281;
}
.p-flow__period__days {
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.p-flow__period__days dl {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 8px;
}
.p-flow__period__days dt {
  color: #64748B;
  letter-spacing: 0.05em;
  font-weight: 400;
}
.p-flow__period__days dd {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 6px 20px;
  line-height: 1.6;
  color: #fff;
}
.p-flow__period__days .usually dd {
  background-color: #114281;
}
.p-flow__period__days .hurry dd {
  background-color: #B91C1C;
}
.p-flow__period .note {
  text-align: center;
  color: #94A3B8;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .p-flow {
    padding: 40px 0;
  }
  .p-flow__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    position: relative;
    margin-bottom: 40px;
  }
  .p-flow__list::before {
    width: 1px;
    height: 100%;
    top: 0;
    left: 32px;
    -ms-transform: none;
        transform: none;
  }
  .p-flow__period {
    padding: 24px;
  }
  .p-flow__period__block {
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 16px;
    margin-bottom: 12px;
  }
  .p-flow__period__block .ttl {
    padding-right: 0;
    border-right: none;
    font-size: 1.25rem;
  }
  .p-flow__period__block .ttl::after {
    content: "";
    display: block;
    width: 24px;
    height: 1px;
    background-color: rgba(17, 66, 129, 0.15);
    margin: 0 auto;
    margin-top: 16px;
  }
  .p-flow__period__days {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: end;
        align-items: flex-end;
    gap: 16px;
  }
  .p-flow__period__days dd {
    min-width: 150px;
  }
}
/* ---------------------------------------------
  faq
  --------------------------------------------- */
.p-faq {
  padding: 96px 0;
}
.p-faq__container {
  display: grid;
  gap: 12px;
  margin-bottom: 70px;
}
.p-faq__item {
  border: 1px solid #E8E5E0;
}
.p-faq__item__question {
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 12px;
  padding: 24px 50px 24px 24px;
  position: relative;
}
.p-faq__item__question p {
  font-family: "Noto Serif JP", serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  color: #114281;
  -ms-flex: 1;
      flex: 1;
}
.p-faq__item__question::before {
  content: "Q";
  font-family: "Noto Serif JP", serif;
  color: rgba(17, 66, 129, 0.5);
  background-color: #FAF9F7;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  width: 32px;
  height: 32px;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1;
}
.p-faq__item__question::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../img/icon_arrow_down.svg) no-repeat center/100%;
  position: absolute;
  top: 50%;
  right: 24px;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
}
.p-faq__item__answer {
  position: relative;
  display: none;
  border-top: 1px solid rgba(17, 66, 129, 0.3);
  padding: 24px;
}
.p-faq__item__answer__inner {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.p-faq__item__answer__inner::before {
  content: "A";
  font-family: "Noto Serif JP", serif;
  color: #fff;
  background-color: #B91C1C;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  width: 32px;
  height: 32px;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1;
}
.p-faq__item__answer__inner p {
  color: #475569;
  font-size: 1rem;
  line-height: 1.6;
  -ms-flex: 1;
      flex: 1;
}
.p-faq__item.is-open {
  border: 1px solid rgba(17, 66, 129, 0.3);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.p-faq__item.is-open .p-faq__item__question::before {
  background-color: #114281;
  color: #fff;
}
.p-faq__item.is-open .p-faq__item__question::after {
  -ms-transform: scale(-1, -1);
      transform: scale(-1, -1);
}
.p-faq__btn {
  display: grid;
  -ms-flex-pack: center;
      justify-content: center;
  text-align: center;
  gap: 10px;
  background-color: #FAF9F7;
  border: 1px solid #E8E5E0;
  padding: 32px;
  transition: 0.3s ease;
}
@media (hover: hover) {
  .p-faq__btn:hover {
    opacity: 0.7;
  }
}
.p-faq__btn img {
  opacity: 0.3;
  margin: 0 auto;
}
.p-faq__btn .ttl {
  font-family: "Noto Serif JP", serif;
  font-size: 1.1875rem;
  font-weight: 600;
  line-height: 1.5;
  color: #114281;
}
.p-faq__btn .desc {
  color: #64748B;
  font-size: 0.9375rem;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .p-faq {
    padding: 40px 0;
  }
  .p-faq .c-heading__main {
    font-size: 2rem;
  }
  .p-faq__container {
    display: grid;
    gap: 12px;
    margin-bottom: 40px;
  }
  .p-faq__item__question p {
    font-size: 1rem;
    line-height: 1.7;
  }
  .p-faq__item__question::after {
    top: 50%;
    right: 24px;
    -ms-transform: translateY(-50%);
        transform: translateY(-50%);
  }
  .p-faq__item__answer__inner p {
    font-size: 0.875rem;
  }
  .p-faq__btn {
    gap: 10px;
    padding: 32px 18px;
  }
  .p-faq__btn .ttl {
    font-size: 1.125rem;
  }
  .p-faq__btn .desc {
    font-size: 0.875rem;
    line-height: 1.9;
  }
}
/* ---------------------------------------------
  company
  --------------------------------------------- */
.p-company {
  padding: 96px 0;
}
.p-company__block {
  display: grid;
  -ms-flex-align: center;
      align-items: center;
  grid-template-columns: 400px auto;
  gap: 56px;
}
.p-company__map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
.p-company__overview dl {
  display: grid;
  grid-template-columns: 160px auto;
  -ms-flex-align: center;
      align-items: center;
  gap: 16px;
  padding-bottom: 14px;
}
.p-company__overview dl:not(:first-child) {
  border-top: 1px solid #D9D9D9;
  padding-top: 14px;
}
.p-company__overview dl:last-child {
  padding-bottom: 0;
}
.p-company__overview dl dt, .p-company__overview dl dd {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  color: #333;
}

@media screen and (max-width: 767px) {
  .p-company {
    padding: 40px 0;
  }
  .p-company__block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .p-company__map iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
  .p-company__overview dl {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-bottom: 18px;
  }
  .p-company__overview dl:last-child {
    padding-bottom: 0;
  }
  .p-company__overview dl dd {
    font-size: 0.875rem;
  }
}
/* ---------------------------------------------
  contact
  --------------------------------------------- */
/* ------ popup ------ */
.js-open-popup {
  cursor: pointer;
}

.p-popup__overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 75, 138, 0.2);
  padding: 36px 16px;
  display: none;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  z-index: 9999;
}
.p-popup__inner {
  background: #FFFFFF;
  padding: 32px;
  width: 100%;
  max-width: 880px;
  max-height: 100%;
  margin: 0 auto;
  position: relative;
  overflow-y: auto;
}
.p-popup__close {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  display: none;
}
.p-popup__close::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url(../img/icon_close.svg) no-repeat center/100%;
}
.p-popup__container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  height: 100%;
}

/* ------ contact ------ */
.p-contact .c-heading {
  gap: 6px;
  margin-bottom: 36px;
}
.p-contact__block {
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
.p-contact__block__form {
  -ms-flex: 1;
      flex: 1;
}
.p-contact__block__info {
  width: 38%;
  max-width: 306px;
}

.p-contact__block__form dl {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 8px;
}
.p-contact__block__form dl:not(:first-child) {
  padding-top: 20px;
}
.p-contact__block__form dl dt {
  font-size: 0.875rem;
  -ms-flex: 1;
      flex: 1;
  color: #334155;
  font-weight: 600;
}
.p-contact__block__form dl dd {
  position: relative;
}
.p-contact__block__form dl dd input[type=text],
.p-contact__block__form dl dd input[type=tel],
.p-contact__block__form dl dd input[type=email],
.p-contact__block__form dl dd select {
  width: 100%;
  padding: 8px 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  border: 1px solid #D2D2D2;
  background-color: #FAF9F7;
  border: 1px solid #E8E5E0;
}
.p-contact__block__form dl dd textarea {
  width: 100%;
  padding: 8px 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  font-size: 16px;
  line-height: 1.5;
  border: 1px solid #D2D2D2;
  background-color: #FAF9F7;
  border: 1px solid #E8E5E0;
  resize: vertical;
  height: 120px;
}
.p-contact__block__form dl dd ::-moz-placeholder {
  color: rgba(10, 10, 10, 0.5);
}
.p-contact__block__form dl dd :-ms-input-placeholder {
  color: rgba(10, 10, 10, 0.5);
}
.p-contact__block__form dl dd ::placeholder {
  color: rgba(10, 10, 10, 0.5);
}
.p-contact__block__form dl dd input:focus,
.p-contact__block__form dl dd textarea:focus,
.p-contact__block__form dl dd select:focus {
  outline: none;
}
.p-contact__block__form dl .form-require {
  font-size: 0.875rem;
  font-weight: 600;
  color: #B91C1C;
}
.p-contact__block__form dl.form-select dd {
  position: relative;
}
.p-contact__block__form dl.form-select dd::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/icon_arrow_down.svg) no-repeat center/100%;
  position: absolute;
  top: 50%;
  right: 12px;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  pointer-events: none;
}
.p-contact__block__form .form-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -ms-flex-align: start;
      align-items: flex-start;
  gap: 16px;
  padding-top: 20px;
  padding-bottom: 8px;
}
.p-contact__block__form .form-wrap dl {
  padding: 0;
}
.p-contact__block__form .notice {
  font-size: 12px;
  line-height: 1.4;
  color: #94A3B8;
  margin-top: 20px;
}

.p-contact__btn {
  margin: 25px auto 0;
  max-width: 100%;
  position: relative;
  cursor: pointer;
}
.p-contact__btn::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  -webkit-mask-image: url(../img/icon_send.svg);
          mask-image: url(../img/icon_send.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #fff;
  position: absolute;
  top: 52%;
  left: calc(52% - 4rem);
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  transition: 0.3 ease;
}
.p-contact__btn input {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  padding: 15px 20px 15px 44px;
  display: block;
  text-align: center;
  width: 100%;
  gap: 18px;
  transition: 0.3s ease;
  position: relative;
  border: 1.5px solid #B91C1C;
  background-color: #B91C1C;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media (hover: hover) {
  .p-contact__btn:hover::after {
    background-color: #B91C1C;
  }
  .p-contact__btn:hover input {
    background-color: #fff;
    color: #B91C1C;
  }
}

.p-contact__block__info {
  background-color: #114281;
  padding: 24px;
}
.p-contact__block__info .note {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  margin-top: 24px;
}
.p-contact__block__info .note .bold {
  color: #fff;
  font-weight: 700;
  margin: 0 4px;
}

.p-contact__info__ttl {
  font-family: "Noto Serif JP", serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 20px;
}

.p-contact__info__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 20px;
}

.p-contact__info__item {
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.p-contact__info__item .c-icon {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
}

.p-contact__info__text {
  -ms-flex: 1;
      flex: 1;
}
.p-contact__info__text .sm {
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.4);
}
.p-contact__info__text .num {
  font-family: "Rubik", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
}
.p-contact__info__text .text {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #fff;
}

/* ------ error ------ */
.p-contact__block__form .txtError {
  width: 100%;
  text-align: left;
  color: #C30D23;
  font-size: 0.75rem;
  display: none;
  position: relative;
  margin-top: 4px;
}

.p-contact__block__form .txtError.act {
  display: block;
}

.p-contact__block__form table tr td.act input {
  border: 2px solid #5A2619;
}

@media screen and (max-width: 767px) {
  .p-popup__inner {
    padding: 24px;
    position: relative;
  }
  .p-popup__close {
    display: block;
  }
  .p-popup__container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    height: 100%;
  }
  .p-contact .c-heading {
    gap: 16px;
    margin-bottom: 24px;
  }
  .p-contact .c-heading__lead {
    font-size: 0.875rem;
    line-height: 1.2;
  }
  .p-contact__block {
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 40px;
  }
  .p-contact__block__info {
    width: 100%;
    max-width: 100%;
  }
  .p-contact__block__form dl {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 6px;
  }
  .p-contact__block__form dl:not(:first-child) {
    padding-top: 24px;
  }
  .p-contact__block__form dl dd input[type=text],
  .p-contact__block__form dl dd input[type=tel],
  .p-contact__block__form dl dd input[type=email],
  .p-contact__block__form dl dd select {
    padding: 6px 16px;
  }
  .p-contact__block__form dl dd textarea {
    padding: 6px 16px;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    outline: none;
    line-height: 1.2;
  }
  .p-contact__block__form .form-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 24px;
    padding-bottom: 0;
  }
  .p-contact__block__form .form-wrap dl {
    padding: 0;
  }
  .p-contact__block__form .notice {
    margin-top: 24px;
  }
  .p-contact__btn {
    margin: 25px auto 0;
  }
  .p-contact__btn::after {
    top: 50%;
  }
  .p-contact__btn input {
    padding: 15px 20px 15px 30px;
  }
  .p-contact__block__info .note {
    font-size: 13px;
    line-height: 1.6;
    border-top: none;
    padding-top: 0;
    margin-top: 24px;
  }
  .p-contact__block__info .note .bold {
    color: #fff;
    font-weight: 700;
    margin: 0 4px;
  }
  .p-contact__info__list {
    gap: 24px;
  }
  .p-contact__info__item {
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
  }
  .p-contact__info__text {
    -ms-flex: 1;
        flex: 1;
  }
  .p-contact__info__text .sm {
    font-size: 11px;
  }
  .p-contact__info__text .num {
    font-size: 1.125rem;
    line-height: 1.7;
  }
  .p-contact__info__text .text {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #fff;
  }
}
/* ------ thanks ------ */
.p-thanks {
  margin-top: 76px;
  padding: 96px 0;
}
.p-thanks .c-heading__lead {
  font-size: 1.25rem;
}
.p-thanks__text {
  text-align: center;
}
.p-thanks__text p {
  font-size: 1rem;
  line-height: 1.7;
}
.p-thanks .btn-back {
  background-color: #114281;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  max-width: 240px;
  min-height: 40px;
  padding: 16px;
  color: #fff;
  font-weight: 700;
  margin: 50px auto 0;
  border-radius: 2px;
  transition: 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media (hover: hover) {
  .p-thanks .btn-back:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 767px) {
  .p-thanks {
    margin-top: 64px;
    padding: 60px 0 80px;
  }
  .p-thanks .c-heading__lead {
    font-size: 1.125rem;
    letter-spacing: 0.02em;
  }
  .p-thanks__text {
    text-align: center;
  }
  .p-thanks__text p {
    font-size: 0.9375rem;
    line-height: 1.7;
  }
}
/* ------ confirm ------ */
.p-contact.confirm {
  padding: 96px 0;
  margin-top: 76px;
}
.p-contact.confirm table {
  max-width: 880px;
  margin: 0 auto;
}
.p-contact.confirm table th, .p-contact.confirm table td {
  padding: 16px 20px;
}
.p-contact.confirm table th {
  width: 30%;
}

.p-contact__btn__wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 24px;
  margin-top: 60px;
}
.p-contact__btn__wrap .p-contact__btn {
  margin: 0;
  width: 100%;
  max-width: 320px;
}
.p-contact__btn__wrap .p-contact__btn.send::after {
  left: 34%;
}
.p-contact__btn__wrap .p-contact__btn.back::after {
  display: none;
}
.p-contact__btn__wrap .p-contact__btn.back input {
  background-color: #808080;
  border-color: #808080;
  padding: 15px 20px;
}
@media (hover: hover) {
  .p-contact__btn__wrap .p-contact__btn.back:hover input {
    opacity: 0.7;
    color: #fff;
  }
}

@media screen and (max-width: 767px) {
  .p-contact.confirm {
    padding: 60px 0 80px;
  }
}