@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,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

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

img {
  border: none;
  vertical-align: bottom;
}

a {
  cursor: pointer;
  text-decoration: none;
}

/*----------------------------------
    clamp関数
-----------------------------------*/
/*----------------------------------
    fz-rem関数
-----------------------------------*/
/*----------------------------------
　　    pxをremに変換する関数
-----------------------------------*/
/*----------------------------------
　　    フォントサイズをレスポンシブにするmixin (pxをremに変換)
-----------------------------------*/
/*----------------------------------
使い方
@include responsive-font-size(16px, 24px, 375px, 1366px);
-----------------------------------*/
@-webkit-keyframes heartbeat {
  0%,
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}
@keyframes heartbeat {
  0%,
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 1x;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 63px;
  }
}

body {
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; /* Safari */
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}

img {
  width: 100%;
  height: auto;
}

a {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease; /* 透過度の変化にアニメーションを適用 */
  color: inherit;
}
a:hover {
  opacity: 0.8; /* ホバー時の透過度を設定 */
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
.dib {
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .hidden-pc {
    display: none;
  }
}

.hidden-sp {
  display: none;
}
@media screen and (min-width: 768px) {
  .hidden-sp {
    display: block;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.l-inner {
  padding-inline: 20px;
  max-width: 550px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1366px;
    padding-inline: clamp(30px, 30px + (173) * (100vw - 768px) / (1366 - 768), 203px);
  }
}

.l-header {
  z-index: 103;
  position: fixed;
  right: 0px;
  top: 10px;
  -webkit-transition: top 0.3s ease, visibility 0.3s ease;
  transition: top 0.3s ease, visibility 0.3s ease;
}
@media screen and (min-width: 768px) {
  .l-header {
    top: 0;
    left: 0;
    width: 100%;
    height: 59px;
    background: #fff;
    -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
}

.l-header__inner {
  position: relative;
  padding-inline: 6px;
  max-width: 375px;
  height: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-header__inner {
    padding-inline: 20px 10px;
    max-width: 1366px;
    margin-inline: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media screen and (min-width: 1367px) {
  .l-header__inner {
    padding-inline: 20px 10px;
    padding-left: clamp(20px, 20px + (180) * (100vw - 1366px) / (3000 - 1366), 200px);
    padding-right: clamp(10px, 10px + (70) * (100vw - 1366px) / (3000 - 1366), 80px);
    max-width: none;
  }
}

.c-logo {
  width: clamp(140px, 140px + (112) * (100vw - 768px) / (1366 - 768), 252px);
}

.l-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.l-header__contact-phone-img {
  width: 48px;
  height: 29px;
}
.l-header__contact-phone-img img {
  width: 100%;
  height: 100%;
}

.l-header__contact-phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.l-header__contact-phone a {
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
  color: #e48075;
  margin-left: 6px;
}
.l-header__contact-phone p {
  margin-left: 9px;
  font-size: 0.75rem;
  line-height: 1;
}

.l-drawer-icon {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 106;
  opacity: 0.6;
  background-color: #fff;
}
.l-drawer-icon.is-checked {
  background-color: #fffaf5;
}
.l-drawer-icon.is-checked .c-drawer-icon__bar1 {
  width: 28px;
  top: 30px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 999;
  background: #331c1c;
}
.l-drawer-icon.is-checked .c-drawer-icon__bar2 {
  display: none;
}
.l-drawer-icon.is-checked .c-drawer-icon__bar3 {
  top: 30px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  z-index: 999;
}

.c-drawer-icon__bar1 {
  position: absolute;
  top: 16px;
  left: 25%;
  width: 28px;
  height: 2px;
  border-radius: 1.5px;
  background: #331c1c;
  -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__bar2 {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 25%;
  width: 28px;
  height: 2px;
  border-radius: 1.5px;
  background: #331c1c;
}

.c-drawer-icon__bar3 {
  position: absolute;
  bottom: 16px;
  left: 25%;
  width: 28px;
  height: 1.6px;
  border-radius: 1.5px;
  background: #331c1c;
  -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;
}

/*----------------------------------
    drawer
-----------------------------------*/
#js-drawer-content {
  -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;
  -webkit-transform: translateX(100%);
  transform: translateX(100%); /* 初期状態を右側に設定 */
}

.p-drawer-content {
  position: fixed;
  top: 0;
  right: 0;
  width: 100dvw;
  height: 100dvh;
  z-index: 105;
  background-color: #fffaf5;
}
@media screen and (min-width: 768px) {
  .p-drawer-content {
    width: 375px;
    height: 100vh;
  }
}

.c-drawer__inner {
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 79px;
}

.c-drawer__logo {
  width: 253px;
}

.p-drawer__nav {
  padding-top: 29px;
}
@media screen and (min-width: 768px) {
  .p-drawer__nav {
    padding-top: 30px;
  }
}

.p-drawer__nav-list {
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-drawer__nav-list {
    gap: 25px;
  }
}

.c-drawer__menu-ja {
  font-size: clamp(1.125rem, 1.125rem + 0vw, 1.125rem);
  line-height: 1.5;
  letter-spacing: -0.5px;
}

.c-drawer-btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 25px;
}

.c-drawer-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-drawer-btn__icon {
  width: 313px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.l-drawer__btn {
  -webkit-animation: heartbeat 1.5s ease-in-out infinite;
  animation: heartbeat 1.5s ease-in-out infinite;
}

.l-footer {
  background-color: #00ade6; /* フッターの背景色 */
  color: #fff; /* テキストの色 */
  padding-block: 41px 20px;
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding-block: 45px 30px;
  }
}

.l-footer__inner {
  padding-inline: 20px;
  max-width: 550px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-footer__inner {
    max-width: 1366px;
    padding-inline: clamp(30px, 30px + (113) * (100vw - 768px) / (1366 - 768), 143px);
  }
}

.l-footer__content {
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 47px;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .l-footer__content {
    padding-bottom: 36px;
    padding-inline: 10px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 5px;
  }
}

.l-footer__wrap {
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .l-footer__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: clamp(10px, 10px + (10) * (100vw - 768px) / (1366 - 768), 20px);
  }
}

.l-footer__logo {
  width: 295px;
}
@media screen and (min-width: 768px) {
  .l-footer__logo {
    width: clamp(90px, 90px + (61) * (100vw - 768px) / (1366 - 768), 151px);
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 631px;
  }
}

.l-footer__company {
  padding-top: 10px;
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7px;
}
@media screen and (min-width: 768px) {
  .l-footer__company {
    gap: 2px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.l-footer__company-name p {
  font-size: 2.0625rem;
  line-height: 1.5;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .l-footer__company-name p {
    font-size: clamp(20px, 20px + (13) * (100vw - 768px) / (1366 - 768), 33px);
  }
}

.l-footer__company-text p {
  line-height: 1.5;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .l-footer__company-text p {
    font-size: clamp(12px, 12px + (2) * (100vw - 768px) / (1366 - 768), 14px);
  }
}

.footer__wrap2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3px;
}
@media screen and (min-width: 768px) {
  .footer__wrap2 {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: clamp(10px, 10px + (10) * (100vw - 768px) / (1366 - 768), 20px);
    padding-top: 9px;
  }
}

.l-footer__contact-phone-img {
  width: 79px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .l-footer__contact-phone-img {
    width: clamp(80px, 80px + (27) * (100vw - 768px) / (1366 - 768), 107px);
  }
}

.l-footer__contact-phone {
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 7px;
}
@media screen and (min-width: 768px) {
  .l-footer__contact-phone {
    gap: 14px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.l-footer__contact-phone-number {
  width: 241px;
}
@media screen and (min-width: 768px) {
  .l-footer__contact-phone-number {
    width: clamp(180px, 180px + (147) * (100vw - 768px) / (1366 - 768), 327px);
  }
}

.l-footer__contact-phone-text {
  padding-left: 9px;
}
.l-footer__contact-phone-text p {
  line-height: 1.5;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .l-footer__contact-phone-text p {
    font-size: clamp(12px, 12px + (4) * (100vw - 768px) / (1366 - 768), 16px);
  }
}
@media screen and (min-width: 768px) {
  .l-footer__contact-phone-text {
    padding-left: clamp(1px, 1px + (8) * (100vw - 768px) / (1366 - 768), 9px);
  }
}

.l-footer__copyright-wrap {
  padding-top: 15px;
  border-top: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .l-footer__copyright-wrap {
    padding-top: 28px;
  }
}

.l-footer__copyright {
  text-align: center;
}
.l-footer__copyright p {
  line-height: 1.5;
  font-size: 0.75rem;
}

.c-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-inline: auto;
}

.c-btn__icon {
  width: 335px;
  width: clamp(335px, 335px + (115) * (100vw - 375px) / (768 - 375), 450px);
}
@media screen and (min-width: 768px) {
  .c-btn__icon {
    width: 435px;
    width: clamp(335px, 335px + (115) * (100vw - 768px) / (1366 - 768), 450px);
  }
}

/*----------------------------------
      <div class="p-mv-btn c-btn">
            <a class="c-button" href="#">会員登録する（無料）</a>
          </div>
-----------------------------------*/
.c-title {
  /* font-family: "Noto Sans JP", serif; */
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: clamp(1.375rem, 1.0171755725rem + 1.5267175573vw, 1.75rem);
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  color: #002c6d;
}
@media screen and (min-width: 768px) {
  .c-title {
    font-size: clamp(1.25rem, 0.6078595318rem + 1.3377926421vw, 1.75rem);
  }
}
.c-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0px; /* 下線の位置を調整 */
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%; /* 下線の幅を調整 */
  height: 7px; /* 下線の太さを調整 */
  background-color: rgba(0, 173, 230, 0.2); /* 下線の色を調整 */
}

/*----------------------------------
      <div class="p-mv-btn c-btn">
            <a class="c-button" href="#">会員登録する（無料）</a>
          </div>
-----------------------------------*/
.c-text-logo {
  width: 76px;
}
@media screen and (min-width: 768px) {
  .c-text-logo {
    width: 90px;
  }
}

.c-text-logo-middle {
  width: 51px;
}
@media screen and (min-width: 768px) {
  .c-text-logo-middle {
    width: 62px;
  }
}

.c-text-logo-small {
  width: 48px;
}

.c-scroll-to-top {
  position: fixed;
  z-index: 100;
  bottom: 30px;
  right: 30px;
  background-color: transparent;
  border: none;
  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: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 0;
  visibility: hidden;
}
.c-scroll-to-top__text {
  font-size: 12px;
  margin-bottom: 5px;
  color: #333;
  opacity: 0.7;
}
.c-scroll-to-top__icon {
  opacity: 0.7;
  width: 60px;
  height: 60px;
  background-color: rgba(128, 128, 128, 0.7);
  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;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.c-scroll-to-top__icon::after {
  content: "";
  width: 40px;
  height: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='19' x2='12' y2='5'%3E%3C/line%3E%3Cpolyline points='5 12 12 5 19 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.c-scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.c-scroll-to-top:hover .c-scroll-to-top__icon {
  background-color: rgba(128, 128, 128, 0.9);
}

.p-mv {
  background: url(../img/mv_bg.webp) no-repeat center center/cover;
}

.p-mv__inner {
  padding-bottom: 6px;
}
@media screen and (min-width: 768px) {
  .p-mv__inner {
    padding-bottom: 11px;
  }
}
@media screen and (min-width: 1367px) {
  .p-mv__inner {
    padding-bottom: clamp(11px, 11px + (89) * (100vw - 1366px) / (3000 - 1366), 100px);
  }
}

.p-mv__img-wrap {
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 42px;
  padding-inline: 20px;
  max-width: 550px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-mv__img-wrap {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    position: relative;
    padding-top: 117px;
    max-width: 1366px;
    padding-inline: clamp(50px, 50px + (81) * (100vw - 768px) / (1366 - 768), 131px);
  }
}

.p-mv__title-img {
  width: 335px;
  width: clamp(335px, 335px + (165) * (100vw - 375px) / (768 - 375), 500px);
}
@media screen and (min-width: 768px) {
  .p-mv__title-img {
    width: clamp(335px, 335px + (260) * (100vw - 768px) / (1366 - 768), 595px);
  }
}

.p-mv__main-img {
  padding-top: 14px;
  width: clamp(327px, 327px + (153) * (100vw - 375px) / (768 - 375), 480px);
}
@media screen and (min-width: 768px) {
  .p-mv__main-img {
    width: clamp(327px, 327px + (258) * (100vw - 765px) / (1366 - 765), 585px);
    position: absolute;
    right: 0;
    -webkit-transform: translateX(-9%);
    transform: translateX(-9%);
    padding-top: 58px;
  }
}

.p-mv__award-img {
  margin-top: -39px;
  width: 332px;
  width: clamp(332px, 332px + (258) * (100vw - 375px) / (768 - 375), 590px);
}
@media screen and (min-width: 768px) {
  .p-mv__award-img {
    width: clamp(332px, 332px + (258) * (100vw - 765px) / (1366 - 765), 590px);
    margin-top: 24px;
  }
}

.p-mv__btn-wrapper {
  padding-top: 5px;
}
@media screen and (min-width: 768px) {
  .p-mv__btn-wrapper {
    padding-top: 17px;
    margin-top: clamp(-53px, -10px + -43 * (100vw - 768px) / 598, -10px);
  }
}

.p-mv__btn {
  -webkit-animation: heartbeat 1.5s ease-in-out infinite;
  animation: heartbeat 1.5s ease-in-out infinite;
}

/*----------------------------------
    about
-----------------------------------*/
.p-about {
  padding-top: 41px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .p-about {
    padding-top: 85px;
    padding-bottom: 98px;
  }
}

.p-about__inner {
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-about__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: clamp(24px, 24px + (63) * (100vw - 768px) / (1366 - 768), 87px);
  }
}

.p-about__description {
  padding-top: 24px;
  color: #333;
  font-family: Arial;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 171.429% */
  letter-spacing: 0.7px;
  padding-inline: 10px;
  color: #333;
}
@media screen and (min-width: 768px) {
  .p-about__description {
    padding-top: clamp(20px, 20px + (37) * (100vw - 768px) / (1366 - 768), 57px);
    /* padding-inline: 0; */
  }
}

.p-about__description-2 {
  padding-top: 20px;
}

.p-about__image {
  padding-top: 20px;
  width: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-about__image {
    padding-top: 15px;
    width: clamp(335px, 335px + (116) * (100vw - 768px) / (1366 - 768), 451px);
  }
}

/*----------------------------------
    worry
-----------------------------------*/
.p-worry {
  padding-top: 40px;
  background: #f8f8f8;
}
@media screen and (min-width: 768px) {
  .p-worry {
    padding-top: 77px;
  }
}

.p-worry__title-wrap {
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-worry__title-img {
  width: 278px;
}

.p-worry__title {
  margin-top: -2px;
  font-size: clamp(1.375rem, 1.2330978809rem + 0.6054490414vw, 1.75rem);
  font-weight: 600;
  font-family: "Noto Sans JP", serif;
  color: #333;
}
@media screen and (min-width: 768px) {
  .p-worry__title {
    margin-top: 6px;
  }
}

.p-worry__content {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-worry__content {
    margin-top: -8px;
  }
}

.p-worry__content-img-wrap {
  width: 375px;
  position: relative;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-worry__content-img-wrap {
    width: clamp(725px, 725px + (246) * (100vw - 765px) / (1366 - 765), 971px);
    min-height: 546px;
    min-height: clamp(480px, 480px + (66) * (100vw - 768px) / (1366 - 768), 546px);
  }
}

.p-worry__img1 {
  position: relative;
  width: 276px;
  z-index: 4;
  padding-top: 13px;
}
@media screen and (min-width: 768px) {
  .p-worry__img1 {
    padding-top: 0;
    width: 318px;
    width: clamp(280px, 280px + (38) * (100vw - 768px) / (1366 - 768), 318px);
    position: absolute;
    top: 0;
    left: 0lh;
  }
}

.p-worry__img2 {
  margin-left: auto;
  margin-top: -71px;
  position: relative;
  width: 214px;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .p-worry__img2 {
    margin-top: 0;
    width: 290px;
    width: clamp(260px, 260px + (30) * (100vw - 768px) / (1366 - 768), 290px);
    position: absolute;
    top: 33px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.p-worry__img3 {
  margin-top: -70px;
  position: relative;
  width: 258px;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-worry__img3 {
    margin-top: 0;
    width: clamp(280px, 280px + (46) * (100vw - 768px) / (1366 - 768), 326px);
    position: absolute;
    top: 0px;
    right: 0;
  }
}

.p-worry__img4 {
  margin-left: auto;
  margin-right: 20px;
  margin-top: -100px;
  position: relative;
  z-index: 1;
  width: 187px;
}
@media screen and (min-width: 768px) {
  .p-worry__img4 {
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
    width: 237px;
    width: clamp(210px, 210px + (27) * (100vw - 768px) / (1366 - 768), 237px);
    position: absolute;
    bottom: 39px;
    right: 5px;
  }
}

.p-worry__img5 {
  margin-left: 20px;
  margin-top: -116px;
  position: relative;
  width: 200px;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-worry__img5 {
    margin-left: 0;
    width: clamp(240px, 240px + (26) * (100vw - 768px) / (1366 - 768), 266px);
    position: absolute;
    bottom: 27px;
    bottom: clamp(27px, 50px + -23 * (100vw - 768px) / 598, 50px); /* 画面幅に応じてbottomを可変に設定 */
    left: 0;
  }
}

.p-worry__img-people {
  position: relative;
  z-index: 5;
  margin-top: -34px;
  margin-inline: auto;
  width: 321px;
}
@media screen and (min-width: 768px) {
  .p-worry__img-people {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: clamp(350px, 350px + (200) * (100vw - 765px) / (1366 - 765), 550px);
  }
}

.p-worry-arrow {
  margin-top: -29px;
  width: 51px;
  margin-inline: auto;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}
@media screen and (min-width: 768px) {
  .p-worry-arrow {
    width: clamp(60px, 60px + (19) * (100vw - 768px) / (1366 - 768), 79px);
    margin-top: -17px;
  }
}

/*----------------------------------
    solve
-----------------------------------*/
.p-solve {
  background: #f2fbfe;
  padding-top: 42px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .p-solve {
    padding-top: 71px;
    padding-bottom: 110px;
  }
}

.p-solve__title-ja {
  font-family: "Noto Sans JP", serif;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: clamp(1.375rem, 1.0171755725rem + 1.5267175573vw, 1.75rem);
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  color: #333;
}
@media screen and (min-width: 768px) {
  .p-solve__title-ja {
    font-size: clamp(1.25rem, 0.6078595318rem + 1.3377926421vw, 1.75rem);
  }
}
.p-solve__title-ja::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px; /* 下線の位置を調整 */
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%; /* 下線の幅を調整 */
  height: 7px; /* 下線の太さを調整 */
  background-color: rgba(0, 173, 230, 0.2); /* 下線の色を調整 */
}
@media screen and (min-width: 768px) {
  .p-solve__title-ja::after {
    bottom: -13px; /* 下線の位置を調整 */
    width: 106%; /* 下線の幅を調整 */
  }
}

@media screen and (min-width: 768px) {
  .p-solve__title-ja-sub {
    margin-left: 1px;
  }
}

.p-solve__contents {
  padding-top: 33px;
}
@media screen and (min-width: 768px) {
  .p-solve__contents {
    padding-top: 63px;
  }
}

.p-solve__contents-card-wrap {
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .p-solve__contents-card-wrap {
    gap: 19px;
  }
}

.p-solve__contents-card {
  border-radius: 10px;
  border: 1px solid #6ea7d8;
}

.p-solve__contents-card-head {
  border-radius: 10px 10px 0 0;
  background: #6ea7d8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
  padding-inline: 9px 20px;
  min-height: 56px; /* 2025/12/20 */
}
@media screen and (min-width: 768px) {
  .p-solve__contents-card-head {
    min-height: 0; /* 2025/12/20 */
  }
}

.p-solve__contents-card-head-img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: -5px;
  width: 59px;
  height: 52px;
}
@media screen and (min-width: 768px) {
  .p-solve__contents-card-head-img {
    margin-top: -17px;
  }
}

.p-solve__contents-card-head-title {
  padding-top: 9px;
  padding-bottom: 5px;
  color: #fff;
  line-height: 1.5;
  align-self: center;
}
.p-solve__contents-card-head-title-wrap {
  align-self: center;
}
@media screen and (min-width: 768px) {
  .p-solve__contents-card-head-title {
    padding-bottom: 7px;
  }
}

.p-solve__contents-card-body {
  color: #333;
}
.p-solve__contents-card-body {
  border-radius: 0 0 10px 10px;
  background: #fff;
  padding-inline: 20px;
  padding-block: 15px 18px;
  line-height: 1.5;
  min-height: 179px;
}
@media screen and (min-width: 768px) {
  .p-solve__contents-card-body {
    min-height: 142px;
    padding-inline: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

/*----------------------------------
    feature
-----------------------------------*/
.p-feature {
  background-color: rgba(0, 76, 146, 0.08);
  padding-top: 42px;
  padding-bottom: 34px;
}
@media screen and (min-width: 768px) {
  .p-feature {
    padding-top: 79px;
    padding-bottom: 100px;
  }
}

.p-feature__title-ja {
  font-family: "Noto Sans JP", serif;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: clamp(1.375rem, 1.0171755725rem + 1.5267175573vw, 1.75rem);
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  color: #333;
}
@media screen and (min-width: 768px) {
  .p-feature__title-ja {
    font-size: clamp(1.25rem, 0.6078595318rem + 1.3377926421vw, 1.75rem);
  }
}
.p-feature__title-ja::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px; /* 下線の位置を調整 */
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%; /* 下線の幅を調整 */
  height: 7px; /* 下線の太さを調整 */
  background-color: #fff; /* 下線の色を調整 */
}
@media screen and (min-width: 768px) {
  .p-feature__title-ja::after {
    bottom: -13px; /* 下線の位置を調整 */
    width: 106%; /* 下線の幅を調整 */
  }
}

@media screen and (min-width: 768px) {
  .p-feature__title-ja-sub {
    margin-left: 1px;
  }
}

.p-feature__contents {
  padding-top: 27px;
}
@media screen and (min-width: 768px) {
  .p-feature__contents {
    padding-top: 49px;
  }
}

.p-feature__card-wrap {
  display: grid;
  grid-template-columns: 1fr;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 14px;
}
@media screen and (min-width: 768px) {
  .p-feature__card-wrap {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "card1 card1" "card2 card3";
    gap: 30px;
  }
}

.p-feature__card {
  padding-block: 20px;
  padding-inline: 20px;
  border-radius: 10px;
  background-color: #fff;
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-feature__card {
    padding-block: 30px 26px;
    padding-inline: clamp(20px, 20px + (10) * (100vw - 768px) / (1366 - 768), 30px);
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

@media screen and (min-width: 768px) {
  .p-feature__card-1 {
    grid-area: card1;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: clamp(20px, 20px + (10) * (100vw - 768px) / (1366 - 768), 30px);
  }
}

@media screen and (min-width: 768px) {
  .p-feature__card-2 {
    grid-area: card2;
  }
}

@media screen and (min-width: 768px) {
  .p-feature__card-3 {
    grid-area: card3;
  }
}

.p-feature__card-title-wrap {
  text-align: center;
}

.p-feature__card-title {
  font-family: "Noto Sans JP", serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #1966a8;
}

.p-feature__card-head-img {
  padding-top: 13px;
}
@media screen and (min-width: 768px) {
  .p-feature__card-head-img {
    width: clamp(295px, 295px + (110) * (100vw - 768px) / (1366 - 768), 405px);
  }
}

.p-feature__card-body {
  padding-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-feature__card-body {
    padding-top: 0;
  }
}

.p-feature__card-body-text {
  line-height: 1.5;
  color: #333;
}
@media screen and (min-width: 768px) {
  .p-feature__card-body-text {
    font-size: clamp(0.875rem, 0.7144648829rem + 0.3344481605vw, 1rem);
  }
}

@media screen and (min-width: 768px) {
  .p-feature__card-body-text-pt {
    padding-top: 20px;
  }
}

/*----------------------------------
   comparison
-----------------------------------*/
.p-comparison {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .p-comparison {
    padding-top: 97px;
    padding-bottom: 91px;
  }
}

@media screen and (min-width: 768px) {
  .p-comparison__inner {
    max-width: 1366px;
    padding-inline: clamp(30px, 30px + (173) * (100vw - 768px) / (1366 - 768), 203px);
    margin-inline: auto;
  }
}

.p-comparison__head {
  padding-inline: 20px;
  max-width: 550px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-comparison__head {
    max-width: 1366px;
    padding-inline: clamp(30px, 30px + (173) * (100vw - 768px) / (1366 - 768), 203px);
  }
}

.p-comparison__title-wrap {
  text-align: center;
}

.p-comparison__title {
  font-size: clamp(1.375rem, 1.0171755725rem + 1.5267175573vw, 1.75rem);
  font-weight: 600;
  font-family: "Noto Sans JP", serif;
  color: #002c6d;
}

.p-comparison__scroll-wrap {
  padding-top: 16px;
  width: 335px;
  text-align: center;
  margin-inline: auto;
}

.p-comparison__scroll-text {
  border-radius: 10px;
  border: solid 1px #6ea7d8;
  font-size: 0.875rem;
  line-height: 1.5;
  padding: 9px 12px 6px;
}

.p-comparison__table-wrap {
  margin-top: 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-inline: 20px;
  padding-bottom: 10px;
  /* スクロールバーを非表示にする */
  -ms-overflow-style: none; /* IEとEdge */
  scrollbar-width: none; /* Firefox */
}
@media screen and (min-width: 768px) {
  .p-comparison__table-wrap {
    overflow: visible;
    margin-top: 37px;
    padding-inline: 0;
  }
}
.p-comparison__table-wrap::-webkit-scrollbar {
  display: none; /* Webkitベースのブラウザ */
}

.p-comparison__scroll-wrap2 {
  margin-top: -9px;
}

/*----------------------------------
   table 
-----------------------------------*/
.p-comparison__table {
  width: 1805px;
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 5px;
}
@media screen and (min-width: 768px) {
  .p-comparison__table {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 10px;
  }
}

.p-comparison__table-title {
  width: 1805px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(0, 173, 230, 0.05);
  height: 50px;
}
@media screen and (min-width: 768px) {
  .p-comparison__table-title {
    width: clamp(150px, 150px + (45) * (100vw - 768px) / (1366 - 768), 195px);
    height: 828px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.p-comparison__table-title-item {
  height: 100%;
  width: 220px;
  text-align: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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 (min-width: 768px) {
  .p-comparison__table-title-item {
    height: auto;
    min-height: 87px;
  }
}
@media screen and (min-width: 768px) {
  .p-comparison__table-title-item p {
    font-size: clamp(0.875rem, 0.7144648829rem + 0.3344481605vw, 1rem);
  }
}
.p-comparison__table-title-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 15%;
  bottom: 15%;
  right: 0;
  width: 1px;
  background-color: #ccc;
}
@media screen and (min-width: 768px) {
  .p-comparison__table-title-item:not(:last-child)::after {
    top: auto;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    right: auto;
    width: clamp(100px, 100px + (60) * (100vw - 768px) / (1366 - 768), 160px);
    height: 1px;
  }
}

.p-comparison__table-title-item-1 {
  width: 264px;
}
@media screen and (min-width: 768px) {
  .p-comparison__table-title-item-1 {
    width: 195px;
    height: 143px;
  }
}
.p-comparison__table-title-item-1 p {
  padding-left: 45px;
}
@media screen and (min-width: 768px) {
  .p-comparison__table-title-item-1 p {
    padding-left: 0;
    padding-top: 45px;
  }
}

.p-comparison__corp {
  width: 1805px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  height: 100px;
}
@media screen and (min-width: 768px) {
  .p-comparison__corp {
    width: 220px;
    height: 828px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.p-comparison__corp-1 {
  background-color: #f6f6f6;
}

.p-comparison__corp-2 {
  background-color: #f6f6f6;
}

.p-comparison__corp-3 {
  background-color: #fff;
  height: 173px;
  -webkit-box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 768px) {
  .p-comparison__corp-3 {
    height: 828px;
    width: 295px;
  }
}

.p-comparison__corp-title {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  background-color: #999;
  color: #fff;
  width: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
}
@media screen and (min-width: 768px) {
  .p-comparison__corp-title {
    width: 100%;
    height: 49px;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), 50% 100%, 0 calc(100% - 12px));
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), 50% 100%, 0 calc(100% - 12px));
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.p-comparison__corp-title p {
  padding-left: 5px;
}
@media screen and (min-width: 768px) {
  .p-comparison__corp-title p {
    font-size: 1.25rem;
    margin-top: -6px;
  }
}
.p-comparison__corp-title img {
  width: 50px;
  height: auto;
}

.p-comparison__corp-title-3 {
  background-color: #00ade6;
}
@media screen and (min-width: 768px) {
  .p-comparison__corp-title-3 {
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .p-comparison__corp-title-3-sub {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
  }
}

.p-comparison__corp-title-sub {
  -webkit-writing-mode: horizontal-tb;
  -ms-writing-mode: lr-tb;
  writing-mode: horizontal-tb;
}

.p-comparison__corp-item {
  width: 220px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-inline: 20px;
  position: relative;
  color: #333;
}
@media screen and (min-width: 768px) {
  .p-comparison__corp-item {
    height: 94px;
    width: 100%;
    padding-inline: clamp(15px, 15px + (15) * (100vw - 768px) / (1366 - 768), 30px);
  }
}
.p-comparison__corp-item p {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-comparison__corp-item p {
    font-size: clamp(0.875rem, 0.7144648829rem + 0.3344481605vw, 1rem);
  }
}
.p-comparison__corp-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 10%;
  bottom: 10%;
  right: 0;
  width: 1px;
  background-color: #ccc;
}
@media screen and (min-width: 768px) {
  .p-comparison__corp-item:not(:last-child)::after {
    top: auto;
    bottom: 0;
    left: 10%;
    right: 10%;
    width: 80%;
    height: 1px;
  }
}

.p-comparison__corp-item-img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .p-comparsion-item-pc2 {
    height: 138px;
  }
}

@media screen and (min-width: 768px) {
  .p-comparsion-item-pc3 {
    height: 94px;
  }
}

@media screen and (min-width: 768px) {
  .p-comparsion-item-pc4 {
    height: 90px;
  }
}

@media screen and (min-width: 768px) {
  .p-comparsion-item-pc6 {
    height: 91px;
  }
}

@media screen and (min-width: 768px) {
  .p-comparison__item-pc8 {
    height: 87px;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}

/*----------------------------------
    /table
-----------------------------------*/
.p-comparison__nav {
  text-align: right;
  padding-right: 36px;
}

.scroll-arrow {
  position: relative;
  display: inline-block;
  font-family: "Noto Sans JP", serif;
  font-size: 0.875rem;
  margin-right: auto;
  line-height: 1;
}

.scroll-arrow::before,
.scroll-arrow::after {
  content: "";
  position: absolute;
  border: solid #999;
}

.scroll-arrow::before {
  right: -36px;
  border-width: 1px 1px 0 0;
  width: 8px;
  bottom: 4.8px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.scroll-arrow::after {
  right: -36.7px;
  bottom: 0;
  border-width: 1px 0 0 0;
  width: 33px;
  height: 1px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/*----------------------------------
    reason
-----------------------------------*/
.p-reason {
  padding-top: 30px;
  padding-bottom: 40px;
  background-color: rgba(0, 173, 230, 0.1);
}
@media screen and (min-width: 768px) {
  .p-reason {
    padding-top: 73px;
    padding-bottom: 135px;
  }
}

.p-reason__title-wrap {
  text-align: center;
}

.p-reason__title {
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .p-reason__title {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 6px;
  }
}

.p-reason__title-ja-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .p-reason__title-ja-wrap {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    flex-direction: row;
    gap: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-reason__title-ja-wrap img {
    margin-left: 5px;
    margin-top: 5px;
    position: relative;
    z-index: 2;
  }
}

.p-reason__title-ja-sub {
  font-family: "Noto Sans JP", serif;
  font-size: clamp(1.375rem, 1.2330978809rem + 0.6054490414vw, 1.75rem);
  color: #1966a8;
  font-weight: 600;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-reason__title-ja-sub {
    margin-bottom: 5px;
  }
}

.p-reason__title-ja-sub1 {
  position: relative;
  z-index: 2;
  width: 206px;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .p-reason__title-ja-sub1 {
    width: 294px;
  }
}
@media screen and (min-width: 768px) {
  .p-reason__title-ja-sub1::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 95%;
    height: 20px;
    background-color: #fff;
    z-index: -1;
  }
}

.p-reason__title-ja-sub2 {
  display: block;
  position: relative;
  z-index: 2;
  color: #00ade6;
}
@media screen and (min-width: 768px) {
  .p-reason__title-ja-sub2 {
    display: inline-block;
    padding-left: 14px;
  }
}
.p-reason__title-ja-sub2::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 106%;
  height: 16px;
  background-color: #fff;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-reason__title-ja-sub2::after {
    width: 110%;
    height: 20px;
  }
}

.p-reason__content-wrap {
  padding-top: 26px;
}
@media screen and (min-width: 768px) {
  .p-reason__content-wrap {
    padding-top: 57px;
  }
}

.p-reason__boxes {
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .p-reason__boxes {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media screen and (min-width: 950px) {
  .p-reason__boxes {
    gap: clamp(10px, 10px + (10) * (100vw - 950px) / (1366 - 950), 20px);
  }
}

/*----------------------------------
    box
-----------------------------------*/
.p-reason__box {
  background-color: #fff;
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
  padding-block: 30px 24px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-reason__box {
    min-height: 483px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 calc(50% - 20px);
    flex: 1 1 calc(50% - 20px);
  }
}
@media screen and (min-width: 950px) {
  .p-reason__box {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 calc(33.333% - 20px);
    flex: 1 1 calc(33.333% - 20px);
  }
}

.p-reason__box.has-buttons {
  -webkit-padding-after: 50px;
  padding-block-end: 50px;
}

.p-reason__box-title {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-reason__box-title {
    height: 60px;
  }
}
.p-reason__box-title h3 {
  font-family: "Noto Sans JP", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #002c6d;
  line-height: 1.5;
}

.p-reason__box-img {
  width: 254px;
  padding-top: 14px;
}
@media screen and (min-width: 768px) {
  .p-reason__box-img {
    width: clamp(247px, 247px + (53) * (100vw - 768px) / (950 - 768), 300px);
  }
}
@media screen and (min-width: 950px) {
  .p-reason__box-img {
    width: 247px;
    width: clamp(200px, 200px + (47) * (100vw - 950px) / (1366 - 950), 247px);
  }
}

.p-reason__box-body {
  margin-top: 17px;
  padding-inline: 26px;
}
@media screen and (min-width: 768px) {
  .p-reason__box-body {
    padding-inline: 32px;
    margin-top: 16px;
  }
}
@media screen and (min-width: 950px) {
  .p-reason__box-body {
    padding-inline: clamp(20px, 20px + (12) * (100vw - 950px) / (1366 - 950), 32px);
  }
}

.p-reason__box-body-text-wrap {
  max-height: 170px;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-reason__box-body-text-wrap {
    max-height: 192px;
  }
}

.p-reason__box-body-text {
  line-height: 1.5;
  color: #333;
}

/*----------------------------------
    button
-----------------------------------*/
.p-reason__box-buttons {
  padding: 0px 4px 20px;
  position: absolute;
  bottom: 0;
  right: 0;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-reason__box-readmore {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  padding: 5px 10px;
  font-size: 0.75rem;
  line-height: 1;
  height: 20px;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.p-reason__box-button-text {
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.p-reason__box-button-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 5px;
  background-image: url(../img/read.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -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;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.p-reason__box-readmore[aria-expanded="true"] .p-reason__box-button-icon {
  -webkit-transform: rotate(180deg) translateY(0%);
  transform: rotate(180deg) translateY(0%);
}

.p-reason__box-readmore[aria-expanded="true"] .p-reason__box-button-text {
  opacity: 0;
}

/*----------------------------------
    /button
-----------------------------------*/
/*----------------------------------
    introductions
-----------------------------------*/
.p-introductions {
  padding-top: 40px;
  padding-bottom: 40px;
  /* background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(60%, #e6e6e6),
    color-stop(70%, #e6e6e6),
    to(#fffaf5)
  ); */
  /* background-image: linear-gradient(to bottom, #e6e6e6 60%, #e6e6e6 70%, #fffaf5 100%); */
  background: linear-gradient(180deg, #e6e6e6 60%, #e6e6e6 70%, #f2fbfe 100%);
}
@media screen and (min-width: 768px) {
  .p-introductions {
    padding-top: 100px;
    padding-bottom: 132px;
  }
}

.p-introductions__head {
  margin-inline: auto;
  text-align: center;
}

.p-introductions__title h2 {
  font-family: "Noto Sans JP", serif;
  font-size: clamp(1.375rem, 1.2330978809rem + 0.6054490414vw, 1.75rem);
  font-weight: 600;
  color: #002c6d;
  line-height: 1.5;
}

.p-introductions__text {
  padding-top: 22px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-introductions__text {
    padding-top: 29px;
  }
}
.p-introductions__text p {
  font-size: clamp(1.125rem, 1.0303985873rem + 0.4036326942vw, 1.375rem);
  color: #1966a8;
  line-height: 1.5;
}
.p-introductions__text img {
  -webkit-transform: translateY(-6%);
  transform: translateY(-6%);
}

.p-introductions__boxes {
  padding-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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-introductions__boxes {
    padding-top: 39px;
    gap: 20px;
  }
}

/*----------------------------------
    box
-----------------------------------*/
.p-introductions__box {
  padding-block: 20px;
  padding-inline: 20px;
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 14px;
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 3px 15px 0 rgba(0, 0, 0, 0.16);
  box-shadow: inset 0 3px 15px 0 rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 768px) {
  .p-introductions__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px;
    padding: 40px;
  }
}

.p-introductions__box-img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-introductions__box-img {
    width: clamp(265px, 265px + (85) * (100vw - 768px) / (1366 - 768), 350px);
  }
}

.p-introductions__box-img4 {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-introductions__box-img4 {
    width: clamp(265px, 265px + (85) * (100vw - 768px) / (1366 - 768), 350px);
  }
}

.p-introductions__box-text p {
  line-height: 1.5;
}

.p-introductions__box-text-1 {
  padding-inline: 3.5px;
}

@media screen and (min-width: 768px) {
  .p-introductions__box-text-2 {
    margin-top: -10px;
  }
}

@media screen and (min-width: 768px) {
  .p-introductions__box-text-4 {
    margin-top: -7px;
  }
}

.p-introductions__box-text-4-2 {
  padding-top: 17px;
}

/*----------------------------------
    voice
-----------------------------------*/
.p-voice {
  padding-top: 40px;
  padding-bottom: 44px;
  background-color: #f2fbfe;
}
@media screen and (min-width: 768px) {
  .p-voice {
    padding-top: 68px;
    padding-bottom: 100px;
  }
}

.p-voice__title {
  text-align: center;
}
.p-voice__title h2 {
  font-family: "Noto Sans JP", serif;
  font-size: clamp(1.375rem, 1.2330978809rem + 0.6054490414vw, 1.75rem);
  font-weight: 600;
  line-height: 1.5;
  color: #002c6d;
}

.p-voice__boxes {
  padding-top: 31px;
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 39px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .p-voice__boxes {
    padding-top: 65px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    row-gap: 50px;
    -webkit-column-gap: 19px;
    -moz-column-gap: 19px;
    column-gap: 19px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 calc(50% - 19px);
    flex: 1 1 calc(50% - 19px);
  }
}
@media screen and (min-width: 950px) {
  .p-voice__boxes {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 calc(33.333% - 19px);
    flex: 1 1 calc(33.333% - 19px);
  }
}

/*----------------------------------
    box
-----------------------------------*/
.p-voice__box {
  border-radius: 10px;
  background-color: #fff;
  position: relative;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .p-voice__box {
    width: 307px;
  }
}
@media screen and (min-width: 950px) {
  .p-voice__box {
    width: clamp(248px, 248px + (59) * (100vw - 950px) / (1366 - 950), 307px);
  }
}

.p-voice__box-head {
  background-color: #6ea7d8;
  border-radius: 10px 10px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 44px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-inline: 14px 30px;
  height: 63px;
}
@media screen and (min-width: 950px) {
  .p-voice__box-head {
    gap: clamp(10px, 10px + (6) * (100vw - 950px) / (1366 - 950), 16px);
    padding-left: 14px;
    padding-right: clamp(14px, 14px + (16) * (100vw - 950px) / (1366 - 950), 30px);
  }
}

.p-voice__box-img {
  width: 80px;
  margin-top: -32px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media screen and (min-width: 950px) {
  .p-voice__box-img {
    width: clamp(70px, 70px + (10) * (100vw - 950px) / (1366 - 950), 80px);
  }
}

.p-voice__box-title {
  width: 100%;
  text-align: center;
  color: #fff;
}

.p-voice__box-body {
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  padding-inline: 20px;
  padding-block: 20px;
}
@media screen and (min-width: 950px) {
  .p-voice__box-body {
    padding-inline: clamp(10px, 10px + (20) * (100vw - 950px) / (1366 - 950), 30px);
  }
}

.p-voice__box-body-text-wrap {
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
  overflow: hidden;
}

.p-voice__box-body-text {
  line-height: 1.5;
  cursor: pointer;
  max-height: 6em;
  overflow: hidden;
  -webkit-transition: max-height 0.5s ease;
  transition: max-height 0.5s ease;
}
@media screen and (min-width: 768px) {
  .p-voice__box-body-text {
    font-size: clamp(0.925rem, 0.7537259615rem + 0.2884615385vw, 1rem);
  }
}

/*----------------------------------
    button
-----------------------------------*/
.p-voice__box-buttons {
  padding: 0px 4px 12px;
  position: absolute;
  bottom: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-voice__box-readmore {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  padding: 5px 10px;
  font-size: 0.75rem;
  line-height: 1;
  height: 20px;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.p-voice__box-button-text {
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.p-voice__box-button-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 5px;
  background-image: url(../img/read.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -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;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.p-voice__box-readmore[aria-expanded="true"] .p-voice__box-button-icon {
  -webkit-transform: rotate(180deg) translateY(0%);
  transform: rotate(180deg) translateY(0%);
}

.p-voice__box-readmore[aria-expanded="true"] .p-voice__box-button-text {
  opacity: 0;
}

/*----------------------------------
    price
-----------------------------------*/
.p-price {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #e7eff6;
}
@media screen and (min-width: 768px) {
  .p-price {
    padding-top: 57px;
    padding-bottom: 58px;
  }
}

.p-price__inner {
  background-color: #fff;
  padding-inline: clamp(15px, 15px + (15) * (100vw - 375px) / (768 - 375), 30px);
}
@media screen and (min-width: 768px) {
  .p-price__inner {
    padding-inline: clamp(20px, 20px + (41) * (100vw - 768px) / (1366 - 768), 61px);
  }
}

.p-price__head {
  padding-top: 40px;
}

.p-price__title {
  text-align: center;
}
.p-price__title h2 {
  font-family: "Noto Sans JP", serif;
  font-size: clamp(1.375rem, 1.375rem + 0vw, 1.375rem);
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-price__title h2 {
    font-size: clamp(1.375rem, 0.8933946488rem + 1.0033444816vw, 1.75rem);
  }
}

.p-price__text {
  text-align: center;
  color: #1966a8;
  padding-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-price__text {
    padding-top: 40px;
  }
}
.p-price__text p {
  line-height: 1.5;
  font-size: clamp(1.125rem, 1.0303985873rem + 0.4036326942vw, 1.375rem);
}

.p-price__body {
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-price__body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding-top: 21px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: clamp(10px, 10px + (40) * (100vw - 768px) / (1366 - 768), 50px);
  }
}

.p-price__box {
  padding-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;
  -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 (min-width: 768px) {
  .p-price__box {
    width: 40.71%;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.p-price__tag {
  width: 161px;
  height: 32px;
  background-color: #e7eff6;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.p-price__tag p {
  color: #002c6d;
  font-weight: 600;
}

.p-price__price {
  padding-top: 10px;
  color: #002c6d;
}

.p-price__nom {
  font-size: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-price__nom {
    font-size: clamp(1.625rem, 1.4644648829rem + 0.3344481605vw, 1.75rem);
  }
}

.p-price__day {
  font-size: 1.375rem;
}

.p-price__accent {
  font-size: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-price__accent {
    font-size: clamp(1.625rem, 1.4644648829rem + 0.3344481605vw, 1.75rem);
  }
}

.p-price__mark {
  font-size: 1.625rem;
}
@media screen and (min-width: 768px) {
  .p-price__mark {
    font-size: clamp(1.5rem, 1.3394648829rem + 0.3344481605vw, 1.625rem);
  }
}

.p-price__money {
  font-size: 2rem;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-price__money {
    letter-spacing: -1.3px;
    font-size: clamp(1.75rem, 1.4289297659rem + 0.6688963211vw, 2rem);
  }
}

.p-price__tax {
  font-size: 0.875rem;
}

.p-price__anouns {
  padding-top: 18px;
}

.p-price__img {
  padding-top: 7px;
  width: 233px;
}
@media screen and (min-width: 768px) {
  .p-price__img {
    padding-top: 14px;
    margin-inline: auto;
  }
}

.p-price__box2 {
  margin-top: 43px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -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 (min-width: 768px) {
  .p-price__box2 {
    margin-top: 32px;
    width: 59.29%;
  }
}

.p-price__box2-wrap {
  border-radius: 10px;
  border: solid 2px #e7eff6;
  padding-block: 26px 18px;
  padding-inline: 15px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-price__box2-wrap {
    padding-block: 38px 20px;
    padding-inline: 37px 23px;
  }
}

.p-price__box2-title {
  position: absolute;
  top: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 50%;
  width: 161px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  border-radius: 16px;
  border: solid 2px #e7eff6;
}
@media screen and (min-width: 768px) {
  .p-price__box2-title {
    left: 24%;
  }
}
.p-price__box2-title p {
  font-weight: 600;
  color: #002c6d;
}

.p-price__list p {
  font-size: 1.125rem;
  color: #002c6d;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-price__list p {
    font-size: clamp(1rem, 0.8394648829rem + 0.3344481605vw, 1.125rem);
  }
}

.p-price__attention {
  padding-top: 8px;
}
@media screen and (min-width: 768px) {
  .p-price__attention {
    padding-top: 20px;
  }
}
.p-price__attention p {
  font-size: 0.875rem;
  line-height: 1.5;
}

.p-price__consult {
  padding-top: 20px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .p-price__consult {
    padding-top: 40px;
  }
}

.p-price__consult-head {
  text-align: center;
}
.p-price__consult-head p {
  font-family: "Noto Sans JP", serif;
  font-size: clamp(1.125rem, 1.0057251908rem + 0.5089058524vw, 1.25rem);
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-price__consult-head p {
    font-size: clamp(1.125rem, 0.8039297659rem + 0.6688963211vw, 1.375rem);
  }
}

/*----------------------------------
     contact
-----------------------------------*/
.p-contact {
  padding-top: 38px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .p-contact {
    padding-top: 98px;
    padding-bottom: 104px;
  }
}

.p-contact__title {
  text-align: center;
}
.p-contact__title h2 {
  font-family: "Noto Sans JP", serif;
  font-size: clamp(1.375rem, 1.375rem + 0vw, 1.375rem);
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-contact__title h2 {
    font-size: clamp(1.375rem, 0.8933946488rem + 1.0033444816vw, 1.75rem);
  }
}

.p-contact__form {
  padding-top: 28px;
}
@media screen and (min-width: 768px) {
  .p-contact__form {
    padding-top: 43px;
  }
}

.p-contact__items-wrap {
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 14px;
}
@media screen and (min-width: 768px) {
  .p-contact__items-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .p-contact__item {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 50%;
	  align-self: end;
  }
}

.p-contact__items-wrap2 {
  padding-top: 14px;
}
@media screen and (min-width: 768px) {
  .p-contact__items-wrap2 {
    padding-top: 18px;
  }
}

.p-contact__items-wrap3 {
  padding-top: 14px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
  border: 2px solid #757676; /* フォーカス時のアウトラインの色 */
  outline-offset: 2px; /* アウトラインのオフセット */
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  height: auto;
  border-radius: 5px;
  background: #f6f6f6;
  border: 1px solid #ccc; /* ボーダーを透明に設定 */
  outline: none;
  padding-block: 14px 9px;
  padding-inline: 10px;
  line-height: 1.56;
}
@media screen and (min-width: 768px) {
  input[type="text"],
  input[type="email"],
  select,
  textarea {
    padding-block: 18px;
    padding-inline: 20px;
    height: 60px;
  }
}
input[type="text"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #ccc;
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
}
input[type="text"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
select::-moz-placeholder,
textarea::-moz-placeholder {
  color: #ccc;
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
}
input[type="text"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #ccc;
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
}
input[type="text"]::-ms-input-placeholder,
input[type="email"]::-ms-input-placeholder,
select::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #ccc;
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
}
input[type="text"]::placeholder,
input[type="email"]::placeholder,
select::placeholder,
textarea::placeholder {
  color: #ccc;
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
}
textarea {
  width: 100%;
  height: auto;
  border-radius: 5px;
  background: #f6f6f6;
  border: 1px solid #ccc; /* ボーダーを透明に設定 */
  outline: none;
  padding-block: 14px 9px;
  padding-inline: 10px;
  line-height: 1.56;
}
@media screen and (min-width: 768px) {
  textarea {
    padding-block: 18px;
    padding-inline: 20px;
    height: 60px;
  }
}
textarea::-webkit-input-placeholder {
  color: #ccc;
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
}
textarea::-moz-placeholder {
  color: #ccc;
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
}
textarea:-ms-input-placeholder {
  color: #ccc;
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
}
textarea::-ms-input-placeholder {
  color: #ccc;
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
}
textarea::placeholder {
  color: #ccc;
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
}
/*----------------------------------
    select
/* ... existing styles ... */
.custom-select-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.custom-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  padding: 10px;
  font-size: 16px;
  color: #ccc; /* Default color for placeholder */
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #f6f6f6;
  background-image: none; /* Remove default arrow */
}

.custom-select-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 13px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  -webkit-transform: translateY(-60%) rotate(45deg);
  transform: translateY(-60%) rotate(45deg);
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .custom-select-wrapper::after {
    right: 5%;
  }
}

.custom-select option {
  color: #333;
}

.custom-select option[disabled] {
  color: #ccc;
}

.custom-select:valid {
  color: #333; /* Change color when a valid option is selected */
}

/*----------------------------------
    /select
-----------------------------------*/
.p-contact__item-title {
  line-height: 1.56;
  font-weight: 600;
}

.p-contact__item-title-sub {
  font-weight: normal;
}

.required-label {
  padding-block: 3px 3px;
  padding-inline: 12px;
  border-radius: 3px;
  font-size: 0.75rem;
  font-family: "Oswald", sans-serif;
  line-height: 1.5;
  background-color: #00ade6;
  color: #fff;
  display: inline-block;
  text-align: center;
  margin-left: 14px;
}

/*----------------------------------
    phone
-----------------------------------*/
.p-contact__item-input--phone-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

input[type="tel"] {
  width: 100%;
  padding-block: 10px;
  line-height: 1.56;
  border-radius: 5px;
  background: #f6f6f6;
  border: 1px solid #ccc; /* ボーダーを透明に設定 */
  outline: none;
  padding-block: 14px 9px;
  padding-inline: 10px;
}
@media screen and (min-width: 768px) {
  input[type="tel"] {
    padding-block: 18px;
    padding-inline: 20px;
  }
}
input[type="tel"]::-webkit-input-placeholder {
  color: #ccc;
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
}
input[type="tel"]::-moz-placeholder {
  color: #ccc;
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
}
input[type="tel"]:-ms-input-placeholder {
  color: #ccc;
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
}
input[type="tel"]::-ms-input-placeholder {
  color: #ccc;
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
}
input[type="tel"]::placeholder {
  color: #ccc;
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
}
.phone-separator {
  margin: 0 3px;
  font-size: 16px;
}

/*----------------------------------
    /phone
-----------------------------------*/
/* ... existing styles ... */
.p-contact__items-radio-wrap {
  padding-top: 14px;
}
@media screen and (min-width: 768px) {
  .p-contact__items-radio-wrap {
    padding-top: 19px;
  }
}
.p-contact__items-radio-wrap .p-contact__item-input--radio-wrap {
  padding-top: 6px;
}
@media screen and (min-width: 768px) {
  .p-contact__items-radio-wrap .p-contact__item-input--radio-wrap {
    padding-top: 16px;
  }
}
.p-contact__items-radio-wrap .p-contact__item-input--radio-wrap input + span {
  padding-left: 30px;
}
@media screen and (min-width: 768px) {
  .p-contact__items-radio-wrap .p-contact__item-input--radio-wrap input + span {
    padding-left: 40px;
  }
}
.p-contact__items-radio-wrap .wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
/*   gap: 26px; */
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
@media screen and (min-width: 768px) {
  .p-contact__items-radio-wrap .wpcf7-radio {
    gap: 81px;
  }
}
.p-contact__items-radio-wrap .wpcf7-radio label {
  position: relative;
  cursor: pointer;
  font-size: 16px;
  color: #333;
}
.p-contact__items-radio-wrap .wpcf7-radio label input[type="radio"]:checked + .custom-radio-label::after {
  content: "✓";
  position: absolute;
  left: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 18px;
  color: #331c1c;
  opacity: 1;
}
.p-contact__items-radio-wrap .wpcf7-radio label::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 12px;
  color: #331c1c;
  opacity: 0;
}

/*----------------------------------
    /radio
-----------------------------------*/
/*----------------------------------
    checkbox
-----------------------------------*/
.p-contact__items-check-wrap {
  padding-top: 14px;
}
@media screen and (min-width: 768px) {
  .p-contact__items-check-wrap {
    padding-top: 36px;
  }
}

.p-contact__item-input--checkbox-wrap {
  padding-top: 8px;
}
@media screen and (min-width: 768px) {
  .p-contact__item-input--checkbox-wrap {
    padding-top: 20px;
  }
}

.wpcf7-checkbox {
  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;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .wpcf7-checkbox {
    -webkit-column-gap: 25.6px;
    -moz-column-gap: 25.6px;
    column-gap: 25.6px;
    row-gap: 18px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 1200px) {
  .wpcf7-checkbox label {
    width: 23%;
  }
}

.wpcf7-checkbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 20px;
}
@media screen and (min-width: 768px) {
  .wpcf7-checkbox label {
    margin-right: 0;
  }
}

.wpcf7-checkbox label span {
  position: relative;
  cursor: pointer;
  font-size: 16px;
  color: #333;
  line-height: 1.56;
  white-space: nowrap;
}
.wpcf7-checkbox label span::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 18px;
  color: #331c1c;
  opacity: 0;
}
.wpcf7-checkbox label input[type="checkbox"]:checked + span::after {
  content: "✓";
  position: absolute;
  left: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 18px;
  color: #331c1c;
  opacity: 1;
}

.p-contact__item-input--textarea-wrap1 {
  margin-top: 16px;
}

.p-contact__item-input--textarea1 {
  width: 100%;
  min-height: 88px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  color: #333;
}
@media screen and (min-width: 768px) {
  .p-contact__item-input--textarea1 {
    min-height: 60px;
    line-height: 1.56;
    padding-block: 16px;
    padding-inline: 20px;
  }
}

/*----------------------------------
   radio2 
-----------------------------------*/
.p-contact__items-radio-wrap2 {
  padding-top: 12px;
}
.p-contact__items-radio-wrap2 .wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 36px;
}
@media screen and (min-width: 768px) {
  .p-contact__items-radio-wrap2 .wpcf7-radio {
    gap: 30px;
  }
}
.p-contact__items-radio-wrap2 .custom-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 20px;
}
.p-contact__items-radio-wrap2 .custom-radio span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  border: 2px solid #ccc;
  border-radius: 50%; /* 丸いボタンにする */
  background-color: #f6f6f6;
}
.p-contact__items-radio-wrap2 .custom-radio span::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%; /* 小さい丸にする */
  background-color: #fff;
  opacity: 0;
}
.p-contact__items-radio-wrap2 .custom-radio input[type="radio"]:checked + span::after {
  opacity: 1;
  background-color: #333; /* 小さい丸の色 */
}
@media screen and (min-width: 768px) {
  .p-contact__items-radio-wrap2 .p-p-contact__items-radio-wrap2-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 23px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 12px;
  }
}

/*----------------------------------
    /radio2
-----------------------------------*/
.p-contact__item-note-wrap {
  padding-top: 10px;
}
.p-contact__item-note-wrap p {
  font-size: 0.875rem;
  line-height: 1.5;
}

.p-contact__items-textarea-wrap {
  padding-top: 14px;
}
@media screen and (min-width: 768px) {
  .p-contact__items-textarea-wrap {
    padding-top: 18px;
  }
}

.p-contact__item-input--textarea-wrap2 {
  padding-top: 6px;
}
.p-contact__item-input--textarea-wrap2 textarea {
  min-height: 200px;
}

/*----------------------------------
    送信ボタン
-----------------------------------*/
.button-wrap {
  -webkit-padding-before: 31px;
  padding-block-start: 31px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .button-wrap {
    -webkit-padding-before: 53px;
    padding-block-start: 53px;
  }
}

.button-wrap input[type="submit"] {
  border-radius: 50px;
  /* Body3_en */
  font-size: 1.375rem;
  border: 1px solid transparent;
  position: relative;
  -webkit-transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease, opacity 0.3s;
  transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease, opacity 0.3s;
  padding: 9px 95px;
  background: #1966a8;
  color: #fff;
  border-radius: 10px;
}
.button-wrap input[type="submit"]:hover {
  background-color: #fff;
  color: #1966a8;
  border: 1px solid #1966a8;
}

.wpcf7-spinner {
  display: none !important;
}

/*----------------------------------
    security
-----------------------------------*/
.p-security {
  padding-block: 39px 37px;
  background-color: #fff2f0;
}
@media screen and (min-width: 768px) {
  .p-security {
    padding-block: 41px 46px;
  }
}

.p-security__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 14px;
}
@media screen and (min-width: 768px) {
  .p-security__boxes {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: clamp(1px, 1px + (19) * (100vw - 768px) / (1366 - 768), 20px);
  }
}

.p-security__box {
  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: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .p-security__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: clamp(20px, 20px + (26) * (100vw - 768px) / (1366 - 768), 46px);
  }
}

.p-security__box-img {
  width: 200px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-security__box-img {
    width: clamp(160px, 160px + (40) * (100vw - 768px) / (1366 - 768), 200px);
  }
}

.p-security__box-text-wrap {
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}
@media screen and (min-width: 768px) {
  .p-security__box-text-wrap {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.p-security__box-text-titel {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-security__box-text-titel {
    font-size: clamp(1rem, 0.8394648829rem + 0.3344481605vw, 1.125rem);
  }
}

.p-security__box-text-text {
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-security__box-text-text {
    font-size: clamp(0.875rem, 0.7144648829rem + 0.3344481605vw, 1rem);
  }
}

.p-security__box2 {
  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;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-security__box2 {
    -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;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    padding-top: 10px;
  }
}

.p-security__box-link {
  color: #1966a8;
  text-decoration: underline;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .p-security__box-link a {
    font-size: clamp(0.875rem, 0.7144648829rem + 0.3344481605vw, 1rem);
  }
}

.u-tac {
  text-align: center;
}

.u-dotted-text {
  -webkit-text-emphasis: filled dot #e48075;
  text-emphasis: filled dot #e48075;
  -webkit-text-emphasis-position: over;
  text-emphasis-position: over;
  margin-top: -5px;
}

.u-fw-bold {
  font-weight: 700;
}

.u-input-pt {
  padding-top: 6px;
}
@media screen and (min-width: 768px) {
  .u-input-pt {
    padding-top: 7px;
  }
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media screen and (min-width: 768px) {
  .u-hidden-pc {
    display: none;
  }
}

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

.u-color-pink-dark {
  color: #00ade6;
}

.u-color-orange {
  color: #00ade6;
}

.u-fz-14 {
  font-size: 0.875rem;
}

.u-fz-36 {
  font-size: 2.25rem;
}

.wpcf7-form-control-wrap {
  width: 100%;
}
.p-contact__item-input--phone-wrap {
  display: block;
}

.p-contact__items-radio-wrap .p-contact__item-input--radio-wrap input + span {
  padding-left: 0px;
}
@media screen and (min-width: 768px) {
  .p-contact__items-radio-wrap .p-contact__item-input--radio-wrap input + span {
    padding-left: 10px;
  }
}

.wpcf7-checkbox label input[type="checkbox"]:checked + span::after {
  display: none;
}

.wpcf7-checkbox .wpcf7-list-item {
  width: 23%;
}

.p-contact__item-input--textarea-wrap1 textarea {
  height: 60px;
}

.screen-reader-response ul {
  display: none;
}
.wpcf7-form-control-wrap {
  position: relative;
}
.wpcf7-not-valid-tip {
  position: absolute;
  left: 0;
  bottom: -22px;
}

.lp-thanks {
  padding-block: 100px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 60vh;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .lp-thanks {
    padding-block: 100px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 60vh;
    font-size: 20px;
  }
}

/*----------------------------------
    map
-----------------------------------*/
.p-map {
  background: rgba(0, 173, 230, 0.1);
  padding-block: 40px 40px;
}
@media screen and (min-width: 768px) {
  .p-map {
    background: rgba(0, 173, 230, 0.1);
    padding-block: 70px 40px;
  }
}

.l-inner {
}
.p-map__inner {
}

.p-map__title-wrap {
  text-align: center;
}

.p-map__title {
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .p-map__title {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 6px;
  }
}

.p-map__title-ja-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .p-map__title-ja-wrap {
    flex-direction: row;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-map__title-ja-wrap img {
    margin-left: 5px;
    margin-top: 5px;
    position: relative;
    z-index: 2;
  }
}

.p-map__title-ja-sub {
  font-family: "Noto Sans JP", serif;
  font-size: clamp(1.375rem, 1.2330978809rem + 0.6054490414vw, 1.75rem);
  color: #00ade6;
  font-weight: 600;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-map__title-ja-sub {
    margin-bottom: 5px;
  }
}

.p-map__title-ja-sub1 {
  position: relative;
  z-index: 2;
  width: 294px;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .p-map__title-ja-sub1 {
    width: 294px;
  }
}
.p-map__title-ja-sub1::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 101%;
  height: 20px;
  background-color: #fff;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-map__title-ja-sub1::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 95%;
    height: 20px;
    background-color: #fff;
    z-index: -1;
  }
}

.p-map__title-ja-sub2 {
  display: block;
  position: relative;
  z-index: 2;
  color: #00ade6;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 1; /* 100% */
  letter-spacing: 0.8px;
}
@media screen and (min-width: 768px) {
  .p-map__title-ja-sub2 {
    display: inline-block;
    padding-left: 14px;
  }
}
.p-map__title-ja-sub2::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 106%;
  height: 16px;
  background-color: #fff;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-map__title-ja-sub2::after {
    width: 110%;
    height: 20px;
  }
}
.p-map__content {
  padding-top: 25px;
}
@media screen and (min-width: 768px) {
  .p-map__content {
    padding-top: 53px;
  }
}
.p-map__content-boxes {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media screen and (min-width: 768px) {
  .p-map__content-boxes {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    align-items: stretch;
  }
  .p-map__content-box {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}
.p-map__content-box {
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  border-radius: 10px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .p-map__content-box {
    padding: 30px;
  }
}
.p-map__content-box-head {
}
.p-map__content-box-title {
  color: #002c6d;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px; /* 150% */
  letter-spacing: 0.8px;
}
.p-map__content-box-text {
  padding-top: 18px;
  color: #333;
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  letter-spacing: 0.75px;
}
.p-map__postal-code {
}
.p-map__address {
}
.p-map__tel {
}
.p-map__fax {
}
.p-map__content-box-body {
  padding-top: 15px;
}
@media screen and (min-width: 768px) {
  .p-map__content-box-body {
    margin-top: auto;
  }
}
.p-map__content-box-img-wrap {
}
.p-map__content-box-img {
}
.p-map__content-box-map {
  margin-top: 15px;
  /* min-height: 189px; */
  width: 100%;
  aspect-ratio: 295 / 189;
}
@media screen and (min-width: 768px) {
  .p-map__content-box-map {
    aspect-ratio: 405 / 189;
  }
}
.p-map__content-box-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
.p-map__postal-code-sp {
  display: block;
}
.p-map__postal-code-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-map__postal-code-sp {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .p-map__postal-code-pc {
    display: block;
  }
}
