@charset "UTF-8";
:root {
  /* color */
  --main: #0D3583;
  --white: #fff;
  --black: #141414;
  --gray: #F0F0F5;
  --red: #F34545;
  --blue: #2E63DB;
  --lightblue: #F6F6F9;
  --orange: #FD9230;
  --pink: #D448F5;
  --copyright: #9193A3;
  --shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.15);
  --gray-placeholder: #D9D9D9;
  --red-attention: #D42926;
  --gra-skew: linear-gradient(78deg, #22BEBB -8.83%, #1779CD 78.35%);
  --gra-horizon: linear-gradient(90deg, #22BEBB 0%, #1779CD 100%);
  --gra-contact: linear-gradient(263deg, #BA1D14 5.45%, #7A0600 95.09%);
  --gra-hover: linear-gradient(263deg, #7A0600 0%, #BA1D14 100%);
  --gra-hover-blue: linear-gradient(90deg, #1779CD 0%, #22BEBB 100%);
  /* font-family */
  --sans: "Noto Sans JP", sans-serif;
  --en: "Roboto", sans-serif;
  /* ハーフレディング打ち消し */
  --leading-trim: calc((1em - 1lh)/2);
}

/* ハーフレディング打ち消し */
.leading-trim:before, .leading-trim:after {
  content: "";
  display: block;
  inline-size: 0;
  block-size: 1px;
}
.leading-trim:before {
  -webkit-margin-after: var(--leading-trim);
          margin-block-end: var(--leading-trim);
}
.leading-trim:after {
  -webkit-margin-before: var(--leading-trim);
          margin-block-start: var(--leading-trim);
}

.square-hover--bread {
  position: relative;
  -webkit-transition: scale 0.3s;
  transition: scale 0.3s;
}
.square-hover--bread:before {
  content: "";
  position: absolute;
  background-color: var(--main);
  display: inline-block;
  width: 6px;
  height: 6px;
  top: 50%;
  translate: 0 -50%;
  left: -20px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  z-index: 1;
}
.square-hover--bread:after {
  content: "";
  position: absolute;
  background-color: #D8D8D8;
  display: inline-block;
  top: 50%;
  translate: 0 -50%;
  left: -20px;
  width: 6px;
  height: 6px;
  scale: 0;
  -webkit-transition: scale 0.3s;
  transition: scale 0.3s;
  z-index: -1;
}
@media (any-hover: hover) {
  .square-hover--bread:hover:after {
    scale: 3;
    -webkit-transition: scale 0.3s;
    transition: scale 0.3s;
  }
}

.square {
  display: block grid;
  grid-template-columns: auto 1fr;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}
@media only screen and (max-width: 768px) {
  .square {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}
.square:before {
  --_size: 8px;
  content: "";
  block-size: var(--_size);
  aspect-ratio: 1;
  margin-block: calc((1lh - var(--_size)) / 2);
  background-color: var(--main);
}
@media only screen and (max-width: 768px) {
  .square:before {
    --_size: 6px;
  }
}
.square[data-color=gray]:before {
  background-color: #C3C3C3;
}

.square--sm {
  display: block grid;
  grid-template-columns: auto 1fr;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
.square--sm:before {
  --_size: 5px;
  content: "";
  block-size: var(--_size);
  aspect-ratio: 1;
  margin-block: calc((1lh - var(--_size)) / 2);
  background-color: var(--main);
}

html {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  color: var(--black);
  background: #fff;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", var(--sans);
  font-weight: 500;
  line-height: 1.5625;
  line-break: strict;
  position: relative;
  letter-spacing: 0.05em;
  color: #554B32;
}
@media only screen and (max-width: 768px) {
  body {
    line-height: 1.5714285714;
  }
}
body a {
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
body a.text-link {
  position: relative;
}
body a.text-link:after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #4d4d4d;
  bottom: -4px;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
body a.text-link:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
body a,
body button,
body label {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

@media only screen and (max-width: 768px) {
  [data-pc-only] {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) {
  [data-sp-only] {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .br-sp {
    display: none !important;
  }
}

a[href^="tel:"] {
  color: inherit;
}
@media only screen and (min-width: 1025px) {
  a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
  }
}

figure {
  margin-bottom: 0;
  margin-top: 0;
}

dt {
  font-weight: normal;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.l-root {
  overflow-x: clip;
}

.l-container {
  width: min(100% - 120px, 1100px);
  margin-inline: auto;
}
@media only screen and (max-width: 1024px) {
  .l-container {
    width: min(100% - 40px, 1100px);
  }
}

.l-header__logo-container {
  position: relative;
}

.l-header__logo-wrap {
  position: fixed;
  top: 0;
  left: 0;
  background: #64C9E1;
  width: 275px;
  height: 168px;
  border-radius: 0 0 20px 0;
  display: grid;
  place-content: center;
  z-index: 3;
}
@media (1025px <= width <= 1600px) {
  .l-header__logo-wrap {
    zoom: 0.9;
  }
}
@media only screen and (max-width: 1024px) {
  .l-header__logo-wrap {
    width: 165px;
    height: 93px;
    border-radius: 0 0 10px 0;
  }
}

.l-header__button-wrap {
  position: fixed;
  top: 0;
  right: 0;
  background: #64C9E1;
  width: 335px;
  height: 124px;
  border-radius: 0 0 0 20px;
  display: grid;
  place-items: center;
  gap: 6px;
  z-index: 3;
}
@media only screen and (max-width: 1024px) {
  .l-header__button-wrap {
    right: unset;
    left: 50%;
    top: unset;
    bottom: 0;
    translate: -50% 0;
    width: 100%;
    height: 92px;
    border-radius: 0;
    gap: 4px;
  }
}

.l-header__button {
  position: relative;
  z-index: 2;
}

.l-header__button-note {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .l-header__button-note {
    font-size: 11px;
  }
}

.l-header__logo {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.l-header__logo img {
  width: min(100%, 185px);
  height: auto;
}
@media only screen and (max-width: 1024px) {
  .l-header__logo img {
    width: min(100%, 111px);
    margin-inline: auto;
  }
}

.l-header {
  position: fixed;
  margin: auto;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  width: 100%;
  height: 100vh;
  border: 30px solid #64C9E1;
}
@media only screen and (max-width: 1024px) {
  .l-header {
    border: 10px solid #64C9E1;
    top: 0;
    height: 100dvh;
    border-bottom: none;
  }
}

.l-header__inner {
  border-radius: 20px;
  width: 100%;
  height: calc(100vh - 60px);
  background: transparent;
  outline: 20px solid #64C9E1;
}
@media only screen and (max-width: 1024px) {
  .l-header__inner {
    outline: 10px solid #64C9E1;
    height: calc(100vh - 20px);
    border-radius: 10px 10px 0 0;
    position: relative;
  }
}

.client_text_sp {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .client_text_sp {
    display: block;
    position: fixed;
    top: 35px;
    right: 35px;
    z-index: 10;
  }
}
@media screen and (max-width: 375px) {
  .client_text_sp {
    zoom: 0.8;
  }
}

@media (any-hover: hover) {
  .l-header__logo:hover {
    opacity: 0.7;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
}
.l-header__corner {
  position: absolute;
  width: 20px;
  height: 20px;
  background: transparent;
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  .l-header__corner {
    width: 10px;
    height: 10px;
  }
}

.l-header__logo-corner--right {
  left: 275px;
  top: 20px;
}
@media only screen and (max-width: 1024px) {
  .l-header__logo-corner--right {
    left: 165px;
    top: 0;
  }
}

.l-header__logo-corner--right:before {
  width: 200%;
  height: 200%;
  position: absolute;
  top: -10px;
  left: -20px;
  content: "";
  background: transparent;
  border-radius: calc(infinity * 1px);
  -webkit-box-shadow: 20px 20px 0 0 #64C9E1;
          box-shadow: 20px 20px 0 0 #64C9E1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  rotate: 180deg;
  z-index: -1;
}
@media screen and (max-width: 1600px) {
  .l-header__logo-corner--right:before {
    top: -7px;
  }
}
@media only screen and (max-width: 1024px) {
  .l-header__logo-corner--right:before {
    -webkit-box-shadow: 10px 10px 0 0 #64C9E1;
            box-shadow: 10px 10px 0 0 #64C9E1;
    top: 0;
    left: -10px;
  }
}

.l-header__logo-corner--left {
  top: 168px;
  left: 20px;
}
@media only screen and (max-width: 1024px) {
  .l-header__logo-corner--left {
    top: 93px;
    left: 10px;
  }
}

.l-header__logo-corner--left:before {
  width: 200%;
  height: 200%;
  position: absolute;
  left: -10px;
  bottom: 0;
  content: "";
  background: transparent;
  border-radius: calc(infinity * 1px);
  -webkit-box-shadow: 20px 20px 0 0 #64C9E1;
          box-shadow: 20px 20px 0 0 #64C9E1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  rotate: 180deg;
  z-index: -1;
}
@media screen and (max-width: 1600px) {
  .l-header__logo-corner--left:before {
    left: -7px;
  }
}
@media only screen and (max-width: 1024px) {
  .l-header__logo-corner--left:before {
    -webkit-box-shadow: 10px 10px 0 0 #64C9E1;
            box-shadow: 10px 10px 0 0 #64C9E1;
    left: -10px;
  }
}

.l-header__button-container {
  position: relative;
}
@media only screen and (max-width: 768px) {
  .l-header__button-container:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background: #000;
    width: 100%;
    height: 100%;
    z-index: 100;
  }
}

.l-header__button-corner--left {
  top: 20px;
  left: -20px;
}
@media only screen and (max-width: 1024px) {
  .l-header__button-corner--left {
    top: -10px;
    left: 0;
  }
}

.l-header__button-corner--left:before {
  width: 200%;
  height: 200%;
  position: absolute;
  left: 0;
  bottom: -10px;
  content: "";
  background: transparent;
  border-radius: calc(infinity * 1px);
  -webkit-box-shadow: 20px 20px 0 0 #64C9E1;
          box-shadow: 20px 20px 0 0 #64C9E1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  rotate: -90deg;
}
@media only screen and (max-width: 1024px) {
  .l-header__button-corner--left:before {
    -webkit-box-shadow: 10px 10px 0 0 #64C9E1;
            box-shadow: 10px 10px 0 0 #64C9E1;
    rotate: -270deg;
  }
}

.l-header__button-corner--right {
  bottom: -20px;
  right: 20px;
  background: transparent;
}
@media only screen and (max-width: 1024px) {
  .l-header__button-corner--right {
    bottom: unset;
    right: 0;
    top: 0;
  }
}

.l-header__button-corner--right:before {
  width: 200%;
  height: 200%;
  position: absolute;
  left: -10px;
  bottom: 0;
  content: "";
  background: transparent;
  border-radius: calc(infinity * 1px);
  -webkit-box-shadow: 20px 20px 0 0 #64C9E1;
          box-shadow: 20px 20px 0 0 #64C9E1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  rotate: -90deg;
}
@media only screen and (max-width: 1024px) {
  .l-header__button-corner--right:before {
    -webkit-box-shadow: 10px 10px 0 0 #64C9E1;
            box-shadow: 10px 10px 0 0 #64C9E1;
    rotate: -360deg;
  }
}

.l-footer {
  padding-block: 100px;
  background: #64C9E1;
}
@media only screen and (max-width: 1024px) {
  .l-footer {
    padding-top: 60px;
  }
}

.l-footer__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 1024px) {
  .l-footer__row {
    display: revert;
    text-align: center;
  }
}
@media screen and (max-width: 375px) {
  .l-footer__row {
    zoom: 0.8;
  }
}

@media only screen and (max-width: 1024px) {
  .l-footer__logo-image {
    margin-inline: auto;
    width: 176px;
    height: auto;
    display: block;
  }
}

.l-footer small {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
@media only screen and (max-width: 1024px) {
  .l-footer small {
    margin-top: 40px;
    display: inline-block;
  }
}

.l-footer--thanks {
  padding-block: 60px;
}
@media only screen and (max-width: 1024px) {
  .l-footer--thanks {
    padding-block: 30px;
  }
}

.c-button {
  border-radius: 20px;
  background: #554B32;
  color: #fff;
  width: min(100%, 265px);
  padding: 18px 10px;
  font-weight: bold;
  font-size: 18px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 1024px) {
  .c-button {
    border-radius: 10px;
    padding: 16px 10px;
    width: min(100%, 280px);
    font-size: 16px;
  }
}

.c-button--back {
  background: #64C9E1;
}
.c-button--back:before {
  display: none;
}

.c-button:before {
  content: "";
  -webkit-mask: url(../../asset/images/icon_mail.svg) no-repeat;
          mask: url(../../asset/images/icon_mail.svg) no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #fff;
  width: 20px;
  height: 14px;
  margin-right: 12px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media only screen and (max-width: 1024px) {
  .c-button:before {
    width: 17px;
    height: 12px;
    position: relative;
    top: -1px;
    margin-right: 10px;
  }
}

@media (any-hover: hover) {
  .c-button:hover {
    background: #fff;
    -webkit-box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.16);
            box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.16);
    color: #554B32;
    -webkit-transition: color 0.3s, background-color 0.3s, -webkit-box-shadow 0.3s;
    transition: color 0.3s, background-color 0.3s, -webkit-box-shadow 0.3s;
    transition: color 0.3s, background-color 0.3s, box-shadow 0.3s;
    transition: color 0.3s, background-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
  }
  .c-button:hover:before {
    background-color: #64C9E1;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
}
.c-button--reserve {
  background: #EE7800;
}

.c-button--reserve:before {
  -webkit-mask-image: url(../../asset/images/icon_calendar.svg);
          mask-image: url(../../asset/images/icon_calendar.svg);
  width: 18px;
  height: 18px;
}
@media only screen and (max-width: 1024px) {
  .c-button--reserve:before {
    width: 16px;
    height: 16px;
  }
}

@media (any-hover: hover) {
  .c-button--reserve:hover {
    background: #FFA94D;
    color: #fff;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  .c-button--reserve:hover:before {
    background-color: #fff;
  }
}

.c-button--premium {
  width: min(100%, 320px);
}

.c-button--premium:before {
  display: none;
}

.c-button--premium:after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  rotate: 45deg;
  margin-left: 12px;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}

@media (any-hover: hover) {
  .c-button--premium:hover:after {
    border-color: #64C9E1;
  }
}
.bottomline {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, #FFF583));
  background: linear-gradient(transparent 60%, #FFF583 0%);
  display: inline;
  padding: 0 2px 4px;
}
@media only screen and (max-width: 768px) {
  .bottomline {
    padding: 0 2px 0;
  }
}

.c-hgroup {
  text-align: center;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.c-heading {
  line-height: 1.3684210526;
  font-size: 38px;
  font-weight: bold;
}
@media only screen and (max-width: 1024px) {
  .c-heading {
    font-size: 23px;
  }
}

.c-hgroup:before {
  content: "";
  background: url(../../asset/images/icon_phone.svg) no-repeat center;
  background-size: 26px 26px;
  width: 60px;
  height: 60px;
  background-color: #F4FCFF;
  position: absolute;
  margin: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  top: -70px;
  left: 50%;
  translate: -50% 0;
  border-radius: calc(infinity * 1px);
}
[data-bg=blue] .c-heading:before {
  background-color: #fff;
}

@media only screen and (max-width: 1024px) {
  .c-heading--premium {
    font-size: 21px;
  }
}
@media only screen and (min-width: 1025px) {
  .c-heading--premium {
    font-size: clamp(24px, (100vw - 280px) / 27, 34px);
    white-space: nowrap;
  }
}

.c-heading__en {
  text-transform: uppercase;
  font-weight: bold;
  color: #64C9E1;
  line-height: 1;
}
@media only screen and (max-width: 1024px) {
  .c-heading__en {
    font-size: 13px;
  }
}

.c-note {
  display: inline-block;
  font-size: 14px;
  line-height: 1.5714285714;
}
@media only screen and (max-width: 768px) {
  .c-note {
    display: block;
    text-align: left;
    font-size: 12px;
    line-height: 1.5833333333;
  }
}

.bread {
  margin-top: 35px;
  letter-spacing: 0;
}
@media only screen and (max-width: 768px) {
  .bread {
    margin-left: auto;
    margin-top: 0;
  }
}
.bread ol {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.bread ol li {
  position: relative;
}
.bread ol li:first-child {
  font-weight: normal;
}
.bread ol li:last-child {
  color: var(--black);
}
.bread ol li:not(:last-child) {
  margin-right: 42px;
}
.bread ol li:not(:last-child)::after {
  position: absolute;
  background-size: contain;
  content: "";
  background-color: #989898;
  rotate: 90deg;
  display: inline-block;
  width: 1px;
  height: 20px;
  top: 5px;
  rotate: -150deg;
  right: -32px;
  margin: 0 10px;
}
.bread ol li [name] {
  font-size: 20px;
}
.bread ol li br {
  display: none;
}

.bread > ol > li:not(:last-child) > a {
  position: relative;
  -webkit-transition: scale 0.3s;
  transition: scale 0.3s;
}
.bread > ol > li:not(:last-child) > a:before {
  content: "";
  position: absolute;
  background-color: var(--main);
  display: inline-block;
  width: 6px;
  height: 6px;
  top: 50%;
  translate: 0 -50%;
  left: -20px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  z-index: 1;
}
.bread > ol > li:not(:last-child) > a:after {
  content: "";
  position: absolute;
  background-color: #d8d8d8;
  display: inline-block;
  top: 50%;
  translate: 0 -50%;
  left: -20px;
  width: 6px;
  height: 6px;
  scale: 0;
  -webkit-transition: scale 0.3s;
  transition: scale 0.3s;
  z-index: -1;
}
@media (any-hover: hover) {
  .bread > ol > li:not(:last-child) > a:hover:after {
    scale: 3;
    -webkit-transition: scale 0.3s;
    transition: scale 0.3s;
  }
}

.js-fade-up {
  opacity: 0;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s, -webkit-transform 1s;
}
.js-fade-up[data-delay] {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
@media only screen and (max-width: 768px) {
  .js-fade-up[data-delay] {
    -webkit-transition-delay: unset;
            transition-delay: unset;
  }
}
.js-fade-up[data-delay=second] {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
@media only screen and (max-width: 768px) {
  .js-fade-up[data-delay=second] {
    -webkit-transition-delay: unset;
            transition-delay: unset;
  }
}
.js-fade-up[data-delay=third] {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
@media only screen and (max-width: 768px) {
  .js-fade-up[data-delay=third] {
    -webkit-transition-delay: unset;
            transition-delay: unset;
  }
}
.js-fade-up[data-delay=fourth] {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
@media only screen and (max-width: 768px) {
  .js-fade-up[data-delay=fourth] {
    -webkit-transition-delay: unset;
            transition-delay: unset;
  }
}

.js-fade-left {
  opacity: 0;
  -webkit-transform: translateX(-15px);
          transform: translateX(-15px);
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s, -webkit-transform 1s;
}

.js-fade-right {
  opacity: 0;
  -webkit-transform: translateX(15px);
          transform: translateX(15px);
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s, -webkit-transform 1s;
}

.js-fade-load {
  opacity: 0;
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s, -webkit-transform 1s;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}

.scroll {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
}

.load {
  -webkit-animation-name: imageBlur;
          animation-name: imageBlur;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@-webkit-keyframes imageBlur {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes imageBlur {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* .p-global-nav styles */
.p-global-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .p-global-nav {
    display: none;
  }
}

.p-global-nav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  gap: clamp(20px, 3.125vw, 60px);
  margin-right: 190px;
}

.p-global-nav__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.p-global-nav__link {
  text-align: center;
  font-weight: bold;
  font-size: clamp(14px, 1.1111111111vw, 16px);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  color: var(--white);
  position: relative;
}
@media (any-hover: hover) {
  .p-global-nav__link:after {
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: #fff;
    bottom: 1.25em;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .p-global-nav__link:hover span:after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
  .p-global-nav__contact .p-global-nav__link:hover {
    color: var(--black);
  }
  .p-global-nav__contact .p-global-nav__link:hover:after {
    background: none;
  }
}

.p-global-nav__contact .p-global-nav__link:after {
  background: none;
}

.p-global-nav__link span {
  font-size: 14px;
  font-weight: bold;
  font-family: var(--en);
  display: block;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.p-global-nav__link span:after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  bottom: 0px;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.p-global-nav__contact a {
  position: fixed;
  top: 20px;
  right: 20px;
  border-radius: 0 12px 0 12px;
  padding-inline: 28px;
  height: 80px;
  background: var(--black);
  color: var(--white);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1000;
  -webkit-transition: background-color 0.3s, border 0.3s, color 0.3s;
  transition: background-color 0.3s, border 0.3s, color 0.3s;
  border: 4px solid var(--black);
}
@media screen and (max-width: 1024px) {
  .p-global-nav__contact a {
    display: none;
  }
}

@media (any-hover: hover) {
  .p-global-nav__contact a:hover {
    background: var(--white);
    border: 4px solid var(--black);
    -webkit-transition: background-color 0.3s, border 0.3s, color 0.3s;
    transition: background-color 0.3s, border 0.3s, color 0.3s;
  }
}
.p-mobile-nav {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  inset: 0;
  z-index: 10;
  margin: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  background-color: rgba(0, 0, 0, 0.2);
  background-blend-mode: darken;
  overflow: auto;
}
@media screen and (min-width: 1025px) {
  .p-mobile-nav {
    display: block;
  }
}
@media only screen and (max-width: 1024px) {
  .p-mobile-nav {
    padding-inline: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .p-mobile-nav {
    padding-inline: 20px;
  }
}
[data-is-nav-visible=true] .p-mobile-nav {
  visibility: visible;
  opacity: 1;
}

.p-mobile-nav__inner {
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  position: relative;
}
@media only screen and (max-width: 768px) {
  .p-mobile-nav__inner {
    width: 100%;
  }
}

.p-mobile-nav__list {
  position: fixed;
  width: calc(100% - 20px);
  max-width: 1263px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, auto);
  grid-template-areas: "h f d" "a f c" "a f e" "a b g";
  gap: 18px;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
@media only screen and (max-width: 1024px) {
  .p-mobile-nav__list {
    position: revert;
    translate: unset;
    padding: 120px 0;
  }
}
@media only screen and (max-width: 768px) {
  .p-mobile-nav__list {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    gap: 6px;
    grid-template-areas: "h h" "a a" "f f" "b c" "d e" "g g";
  }
}

.p-mobile-nav__item {
  background: #fff;
  padding: 50px;
  padding-inline: clamp(20px, 2.6041666667vw, 50px);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media only screen and (max-width: 768px) {
  .p-mobile-nav__item {
    padding: 24px 20px;
  }
}

.p-mobile-nav__item-sub .p-mobile-nav__link {
  padding: 0;
}

@media (any-hover: hover) {
  .p-mobile-nav__item:not(:has(.p-mobile-nav__item-sub)):hover {
    background: var(--main);
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  .p-mobile-nav__item:not(:has(.p-mobile-nav__item-sub)):hover .c-hgroup--nav h2,
  .p-mobile-nav__item:not(:has(.p-mobile-nav__item-sub)):hover .c-hgroup--nav p {
    color: #fff;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
}
.p-mobile-nav__link {
  display: block;
  padding: 39px;
  padding-inline: clamp(20px, 2.6041666667vw, 50px);
}
@media only screen and (max-width: 768px) {
  .p-mobile-nav__link {
    padding: 24px 20px;
    letter-spacing: 0;
  }
}

.p-mobile-nav__item:has(> .p-mobile-nav__link) {
  padding: 0;
}

.p-mobile-nav__item:nth-child(1) {
  grid-area: a;
  padding-top: 89px;
}

.p-mobile-nav__item:nth-child(2) {
  grid-area: b;
}

.p-mobile-nav__item:nth-child(3) {
  grid-area: c;
}

.p-mobile-nav__item:nth-child(4) {
  grid-area: d;
}

.p-mobile-nav__item:nth-child(5) {
  grid-area: e;
}

.p-mobile-nav__item:nth-child(6) {
  grid-area: f;
  padding-top: 101px;
}

.p-mobile-nav__item:nth-child(7) {
  grid-area: g;
  background: transparent;
  border: 1px solid #fff;
  position: relative;
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, border-color 0.3s;
}
.p-mobile-nav__item:nth-child(7)::before {
  content: "";
  -webkit-mask: url(../../asset/images/link_icon.svg) no-repeat;
          mask: url(../../asset/images/link_icon.svg) no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #fff;
  position: absolute;
  top: 15px;
  right: 15px;
  width: 13px;
  height: 13px;
}
.p-mobile-nav__item:nth-child(7) .c-hgroup--nav .c-heading-sub,
.p-mobile-nav__item:nth-child(7) .c-hgroup--nav .c-heading {
  color: #fff;
}
@media (any-hover: hover) {
  .p-mobile-nav__item:nth-child(7):hover {
    background: #323232;
    border: 1px solid #323232;
    -webkit-transition: background-color 0.3s, border-color 0.3s;
    transition: background-color 0.3s, border-color 0.3s;
  }
}

.p-mobile-nav__item:nth-child(8) {
  grid-area: h;
}

@media only screen and (max-width: 768px) {
  .p-mobile-nav__item:nth-child(1),
  .p-mobile-nav__item:nth-child(6) {
    padding-top: 24px;
  }
}
.p-mobile-nav__link {
  font-size: 18px;
  line-height: normal;
  font-weight: bold;
}

.p-mobile-nav__item-sub {
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .p-mobile-nav__item-sub {
    margin-top: 20px;
  }
}
.p-mobile-nav__item-sub li + * {
  margin-top: 25px;
}
@media only screen and (max-width: 768px) {
  .p-mobile-nav__item-sub li + * {
    margin-top: 16px;
  }
}
.p-mobile-nav__item-sub .p-mobile-nav__link {
  font-size: 16px;
  font-weight: 500;
  display: block grid;
  grid-template-columns: auto 1fr;
  -webkit-column-gap: 11px;
     -moz-column-gap: 11px;
          column-gap: 11px;
}
@media screen and (max-width: 1024px) {
  .p-mobile-nav__item-sub .p-mobile-nav__link {
    font-size: 15px;
  }
}
@media only screen and (max-width: 768px) {
  .p-mobile-nav__item-sub .p-mobile-nav__link {
    font-size: 14px;
    -webkit-column-gap: 7px;
       -moz-column-gap: 7px;
            column-gap: 7px;
  }
}
.p-mobile-nav__item-sub .p-mobile-nav__link + * {
  margin-top: 16px;
}
.p-mobile-nav__item-sub .p-mobile-nav__link::before {
  --_size: 7px;
  content: "";
  block-size: var(--_size);
  aspect-ratio: 1;
  margin-block: calc((1lh - var(--_size)) / 2);
  background-color: #d8d8d8;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media only screen and (max-width: 768px) {
  .p-mobile-nav__item-sub .p-mobile-nav__link::before {
    --_size: 5px;
  }
}
@media (any-hover: hover) {
  .p-mobile-nav__item-sub .p-mobile-nav__link:hover {
    color: #8e8e8e;
  }
  .p-mobile-nav__item-sub .p-mobile-nav__link:hover::before {
    background-color: var(--main);
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
}

.p-mobile-nav__flex {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 70px;
}
@media only screen and (max-width: 768px) {
  .p-mobile-nav__flex {
    gap: 0;
  }
}
@media screen and (max-width: 1280px) {
  .p-mobile-nav__flex {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 768px) {
  .p-mobile-nav__item-sub[data-column] {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 768px) and (max-width: 768px) {
  .p-mobile-nav__item-sub[data-column] li:nth-child(2) {
    margin-top: 0;
  }
}

.p-mobile-nav__item-sub-container {
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .p-mobile-nav__item-sub-container {
    margin-top: 20px;
  }
}
.p-mobile-nav__item-sub-container h3 {
  font-weight: bold;
  font-size: 18px;
}
@media only screen and (max-width: 768px) {
  .p-mobile-nav__item-sub-container h3 {
    font-size: 14px;
  }
}
.p-mobile-nav__item-sub-container .p-mobile-nav__item-sub {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media only screen and (max-width: 768px) {
  .p-mobile-nav__item-sub-container .p-mobile-nav__item-sub {
    margin-top: 15px;
  }
}
.p-mobile-nav__item-sub-container .p-mobile-nav__item-sub li:nth-child(2) {
  margin-top: 0;
}
.p-mobile-nav__item-sub-container .p-mobile-nav__item-sub[data-column] {
  display: revert;
}
@media only screen and (max-width: 768px) {
  .p-mobile-nav__item-sub-container .p-mobile-nav__item-sub[data-column] {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.p-mobile-nav__item-sub-container .p-mobile-nav__item-sub[data-column] li:nth-child(2) {
  margin-top: 16px;
}
@media only screen and (max-width: 768px) {
  .p-mobile-nav__item-sub-container .p-mobile-nav__item-sub[data-column] li:nth-child(2) {
    margin-top: 0;
  }
}

body[data-is-nav-visible=true] {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

/**
 * Header
**/
.p-header {
  height: revert;
  position: fixed;
  width: 100%;
  /**
   * ボタン
  **/
}
.p-header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(100% - 100px);
  position: relative;
  margin: 0 auto;
  -webkit-transition: var(--animation-transition);
  transition: var(--animation-transition);
}
@media only screen and (max-width: 1024px) {
  .p-header__inner {
    width: calc(100% - 52px);
  }
}
@media only screen and (max-width: 768px) {
  .p-header__inner {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.p-header__logo-link {
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-header__logo-link:hover {
  opacity: 0.5;
}
@media only screen and (max-width: 768px) {
  .p-header__logo-link svg {
    width: 139px;
    height: 17px;
  }
}
@media only screen and (max-width: 1024px) {
  .p-header__logo {
    position: absolute;
    top: -20px;
    z-index: 1000;
  }
}
.p-header__logo-text {
  font-size: clamp(14px, 1.3888888889vw, 20px);
  color: #fff;
  margin-left: 24px;
  white-space: nowrap;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .p-header__logo-text {
    margin-left: 8px;
  }
}
.p-header__button {
  cursor: pointer;
  width: 139px;
  height: 70px;
  z-index: 11;
  border-radius: 0 12px 0 12px;
  border-radius: calc(infinity * 1px);
  background: var(--main);
  position: fixed;
  top: 30px;
  right: 35px;
}
@media (769px <= width < 1600px) {
  .p-header__button {
    width: 110px;
    height: 55px;
  }
}
@media only screen and (max-width: 768px) {
  .p-header__button {
    width: 82px;
    height: 41px;
    top: 27px;
    right: 20px;
  }
}
.p-header__button-bar {
  background: #fff;
  width: 35px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width: 768px) {
  .p-header__button-bar {
    width: 24px;
  }
}
.p-header__button-bar:nth-child(1) {
  margin-top: -5px;
}
.p-header__button-bar:nth-child(2) {
  margin-top: 0;
}
.p-header__button-bar:nth-child(3) {
  margin-top: 5px;
}
[data-is-nav-visible=true] .p-header__button-bar:nth-child(1) {
  margin-top: 0;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
[data-is-nav-visible=true] .p-header__button-bar:nth-child(2) {
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
[data-is-nav-visible=true] .p-header__button-bar:nth-child(3) {
  margin-top: 0;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.p-fv {
  padding-top: 91px;
  position: relative;
  z-index: 1;
}
@media (1201px <= width <= 1600px) {
  .p-fv {
    padding-top: 160px;
  }
}
@media (1025px <= width <= 1200px) {
  .p-fv {
    padding-top: 180px;
  }
}
@media only screen and (max-width: 1024px) {
  .p-fv {
    padding-top: 115px;
  }
}

.p-fv:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 70px;
  width: 100vw;
  height: 234px;
  background: url(../../asset/images/yellow_wave_bg.svg) no-repeat;
  background-size: cover;
  background-position: center top;
  z-index: -1;
}
@media only screen and (max-width: 1024px) {
  .p-fv:after {
    background-image: url(../../asset/images/yellow_wave_bg_sp.svg);
    background-size: 100%;
    bottom: 0;
    height: 417px;
  }
}

@media only screen and (max-width: 768px) {
  .p-fv:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100px;
    background-color: #FFFAC5;
    z-index: -1;
  }
}

.p-fv__inner {
  width: min(100% - 120px, 1135px);
  margin-inline: auto;
  position: relative;
}
@media (768px <= width <= 1600px) {
  .p-fv__inner {
    width: min(100% - 80px, 1080px);
  }
}
@media only screen and (max-width: 768px) {
  .p-fv__inner {
    width: calc(100% - 70px);
  }
}

@media (768px <= width <= 1600px) {
  .p-fv__logo-image {
    width: 260px;
  }
}

.p-fv__image-wrap {
  display: grid;
  grid-template-columns: 250px 1fr 221px;
  gap: 0;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (768px <= width <= 1600px) {
  .p-fv__image-wrap {
    gap: 20px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media only screen and (max-width: 1024px) {
  .p-fv__image-wrap {
    display: none;
  }
}

@media (768px <= width <= 1600px) {
  .p-fv__women-image {
    zoom: 0.9;
    margin-left: auto;
  }
}

.p-fv__clients {
  margin-bottom: 40px;
}

.p-fv__center-area {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.p-fv__fade {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-top: 30px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-fv__fade-text {
  font-size: clamp(24px, 2.3489932886vw, 35px);
  font-weight: bold;
  color: #fff;
  letter-spacing: 0;
  background: #64C9E1;
  border-radius: 10px;
  padding: 16px 27px;
  line-height: 1;
  white-space: nowrap;
}
@media (768px <= width <= 1600px) {
  .p-fv__fade-text {
    font-size: 18px;
    padding: 12px;
  }
}

.p-fv__circle-image {
  position: absolute;
  top: -174px;
  right: -130px;
  z-index: -1;
}
@media (768px <= width <= 1600px) {
  .p-fv__circle-image {
    width: 200px;
    top: -110px;
    right: -80px;
  }
}

.p-fv__copy-image {
  margin-top: 25px;
}

.p-fv__note {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.7777777778;
  color: #64C9E1;
  margin-top: 30px;
}
@media (1025px <= width <= 1600px) {
  .p-fv__note {
    font-size: 16px;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .p-fv__note {
    text-align: center;
    font-size: 15px;
    margin-top: 30px;
  }
}

.p-fv__pet-image {
  position: relative;
  top: 20px;
  -webkit-align-self: end;
      -ms-flex-item-align: end;
          align-self: end;
}
@media (768px <= width <= 1600px) {
  .p-fv__pet-image {
    zoom: 0.9;
  }
}

.p-fv__image-wrap--sp {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .p-fv__image-wrap--sp {
    display: block;
  }
  .p-fv__image-wrap--sp .p-fv__logo-image {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
  .p-fv__image-wrap--sp .p-fv__fade {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    gap: 5px;
    margin-top: 18px;
  }
  .p-fv__image-wrap--sp .p-fv__fade-text {
    font-size: 20px;
    border-radius: 5px;
    padding: 11px;
  }
  .p-fv__image-wrap--sp .p-fv__copy-image {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
  .p-fv__image-wrap--sp .p-fv__chara {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    margin-top: 14px;
  }
}
/***********************  
  **** フェードイン **** 
********************** */
.p-fv__fade-text {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
}

.p-fv__fade-text.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/***********************  
  **** フェードイン **** 
********************** */
/***********************
  **** Premium40案内 ****
********************** */
.p-premium {
  background: #FFFAC5;
  position: relative;
  padding-top: 130px;
  padding-bottom: 100px;
  margin-top: -70px;
}
@media only screen and (max-width: 1024px) {
  .p-premium {
    padding-top: 30px;
    padding-bottom: 60px;
    margin-top: 0;
  }
}
.p-premium .c-hgroup:before {
  background-image: url(../../asset/images/icon_premium.svg);
}

.p-premium__inner {
  background: #fff;
  padding: 90px 60px 60px;
  border-radius: 10px 10px 0 0;
}
@media only screen and (max-width: 1024px) {
  .p-premium__inner {
    padding: 85px 15px 30px;
  }
}

.p-premium__heading-note {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5714285714;
  margin-top: 18px;
}
@media only screen and (max-width: 1024px) {
  .p-premium__heading-note {
    font-size: 12px;
    line-height: 1.5833333333;
    margin-top: 14px;
  }
}
@media only screen and (max-width: 768px) {
  .p-premium__heading-note {
    text-align: left;
  }
}

.p-premium__lead {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.7777777778;
  margin-top: 30px;
}
@media only screen and (max-width: 1024px) {
  .p-premium__lead {
    font-size: 15px;
    line-height: 1.8;
    margin-top: 22px;
  }
}

.p-premium__body {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 50px;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .p-premium__body {
    grid-template-columns: 300px 1fr;
    gap: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .p-premium__body {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 35px;
  }
}

.p-premium__visual {
  display: grid;
  gap: 20px;
  justify-items: center;
}

.p-premium__logo {
  width: min(100%, 260px);
}

.p-premium__price {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 12px;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .p-premium__price {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-premium__price-label {
  border-radius: calc(infinity * 1px);
  background: #554B32;
  color: #fff;
  padding: 6px 16px 4px;
  font-size: 15px;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
}

.p-premium__price-num {
  font-size: 56px;
  font-weight: bold;
  color: #64C9E1;
}
@media only screen and (max-width: 768px) {
  .p-premium__price-num {
    font-size: 44px;
  }
}

.p-premium__price-unit {
  font-size: 20px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .p-premium__price-unit {
    font-size: 16px;
  }
}

.p-premium__catch {
  font-size: 28px;
  font-weight: bold;
  margin-top: 20px;
}
@media only screen and (max-width: 768px) {
  .p-premium__catch {
    font-size: 20px;
    text-align: center;
    line-height: 1.6;
  }
}

.p-premium__service-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
}
@media only screen and (max-width: 768px) {
  .p-premium__service-list {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }
}

.p-premium__service-list li {
  background: #F4FCFF;
  color: #64C9E1;
  border-radius: 5px;
  font-size: 17px;
  font-weight: bold;
  line-height: 1;
  padding: 12px 16px;
}
@media only screen and (max-width: 768px) {
  .p-premium__service-list li {
    font-size: 15px;
    padding: 10px 12px;
  }
}

.p-premium__service-note {
  font-size: 12px;
  font-weight: 500;
  margin-top: 12px;
}
@media only screen and (max-width: 768px) {
  .p-premium__service-note {
    font-size: 11px;
    text-align: left;
  }
}

.p-premium__button-area {
  display: grid;
  justify-items: start;
  gap: 15px;
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  .p-premium__button-area {
    justify-items: center;
  }
}

.p-premium__link {
  font-weight: bold;
  color: #554B32;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #554B32;
  line-height: 1.6;
}
@media only screen and (max-width: 768px) {
  .p-premium__link {
    font-size: 14px;
  }
}
.p-premium__link:after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid #64C9E1;
  border-right: 2px solid #64C9E1;
  rotate: 45deg;
  margin-left: 10px;
}

@media (any-hover: hover) {
  .p-premium__link:hover {
    opacity: 0.6;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
}
.p-premium__bottom-area {
  background: #F7F7F7;
  border-radius: 0 0 10px 10px;
  padding: 40px 20px;
}
@media only screen and (max-width: 1024px) {
  .p-premium__bottom-area {
    padding: 30px 15px;
  }
}

.p-premium__bottom-inner {
  font-size: 13px;
  text-align: center;
}

.p-premium__bottom-inner h4 {
  font-weight: bold;
}
@media only screen and (max-width: 1024px) {
  .p-premium__bottom-inner h4 {
    font-size: 13px;
  }
}

.p-premium__bottom-inner ul {
  margin-top: 20px;
  font-weight: 500;
}
@media only screen and (max-width: 1024px) {
  .p-premium__bottom-inner ul {
    margin-top: 13px;
  }
}

@media only screen and (max-width: 768px) {
  .p-premium__bottom-inner ul {
    text-align: left;
  }
}

.p-premium__bottom-inner ul li {
  line-height: 1.9285714286;
}
@media only screen and (max-width: 1024px) {
  .p-premium__bottom-inner ul li {
    font-size: 11px;
    letter-spacing: 0.025em;
    line-height: 1.6363636364;
  }
}

.p-merit {
  background: #FFFAC5;
  position: relative;
  padding-top: 130px;
  padding-bottom: 100px;
  margin-top: -70px;
  z-index: -1;
}
@media only screen and (max-width: 1024px) {
  .p-merit {
    padding-top: 30px;
    padding-bottom: 60px;
    margin-top: 0;
  }
}

.p-merit:before {
  content: "";
  position: absolute;
  top: -234px;
  left: 0;
  width: 100vw;
  height: 234px;
  background: url(../../asset/images/yellow_wave_bg.svg) no-repeat;
  background-size: cover;
  background-position: center top;
  z-index: -1;
}
@media only screen and (max-width: 1024px) {
  .p-merit:before {
    background-image: url(../../asset/images/yellow_wave_bg_sp.svg);
    top: -417px;
    height: 417px;
    background-position: center top;
    background-size: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .p-merit:after {
    content: "";
    position: absolute;
    top: -100px;
    left: 0;
    background-color: #FFFAC5;
    width: 100%;
    height: 300px;
    z-index: -1;
  }
}

.p-merit__inner {
  background: #fff;
  padding: 90px 60px 60px;
  border-radius: 10px 10px 0 0;
}
@media only screen and (max-width: 1024px) {
  .p-merit__inner {
    padding: 40px 15px 30px;
  }
}

.p-merit__title-sub {
  color: #64C9E1;
  background: #F4FCFF;
  border-radius: 5px;
  font-weight: bold;
  font-size: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 8px 20px;
  line-height: 1.2;
}
@media only screen and (max-width: 1024px) {
  .p-merit__title-sub {
    font-size: 13px;
    text-align: center;
    line-height: 1.4615384615;
  }
}

.p-merit__title {
  font-size: 37px;
  font-weight: bold;
  margin-top: 25px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media only screen and (max-width: 1024px) {
  .p-merit__title {
    font-size: 23px;
    text-align: center;
    margin-top: 15px;
    line-height: 1.5;
  }
}
.p-merit__title > span {
  font-size: 33px;
}
@media only screen and (max-width: 1024px) {
  .p-merit__title > span {
    font-size: 21px;
  }
}

.p-merit__list {
  margin-top: 60px;
}
@media only screen and (max-width: 1024px) {
  .p-merit__list {
    margin-top: 40px;
  }
}

.p-merit__item {
  background: #F4FCFF;
  border-radius: 10px;
  border: 4px dotted #64C9E1;
  padding: 40px;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .p-merit__item {
    padding: 30px 17px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin-inline: auto;
    border: 3px dotted #64C9E1;
  }
}
.p-merit__item + * {
  margin-top: 30px;
}
@media only screen and (max-width: 1024px) {
  .p-merit__item + * {
    margin-top: 15px;
  }
}

.p-merit__item-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
@media only screen and (max-width: 1024px) {
  .p-merit__item-row {
    gap: 15px;
  }
}

.p-merit__item-title {
  font-weight: bold;
  font-size: 27px;
  color: #64C9E1;
  line-height: 1.7037037037;
}
@media only screen and (max-width: 1024px) {
  .p-merit__item-title {
    font-size: 18px;
    line-height: 1.4444444444;
    letter-spacing: 0.05em;
  }
}
.p-merit__item-title .bottomline {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, #FFF583));
  background: -webkit-linear-gradient(transparent 60%, #FFF583 0%);
  background: linear-gradient(transparent 60%, #FFF583 0%);
  display: inline;
  padding: 0 2px 4px;
}
@media only screen and (max-width: 768px) {
  .p-merit__item-title .bottomline {
    padding: 0 2px 0;
  }
}

.p-merit__item-number {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

@media only screen and (max-width: 1024px) {
  .p-merit__item-number img {
    width: 73px;
    height: 74px;
  }
}

.p-merit__detail-wrap {
  margin-top: 35px;
}
@media only screen and (max-width: 1024px) {
  .p-merit__detail-wrap {
    margin-top: 0;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}

.p-merit__detail {
  border-radius: 5px;
  background: #fff;
  padding: 16px 20px;
  padding-left: 48px;
  font-weight: bold;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .p-merit__detail {
    font-size: 14px;
    padding-block: 15px;
    padding-left: 43px;
    padding-right: 15px;
    line-height: 1.3571428571;
  }
}
.p-merit__detail:before, .p-merit__detail:after {
  content: "";
  position: absolute;
  background: #64C9E1;
  top: calc(50% - 2px);
  translate: 0 -50%;
}
.p-merit__detail:before {
  width: 6px;
  height: 18px;
  left: 26px;
}
@media only screen and (max-width: 1024px) {
  .p-merit__detail:before {
    left: 21px;
  }
}
.p-merit__detail:after {
  background: #64C9E1;
  width: 18px;
  height: 6px;
  left: 20px;
}
@media only screen and (max-width: 1024px) {
  .p-merit__detail:after {
    left: 15px;
  }
}
.p-merit__detail + * {
  margin-top: 10px;
}

.p-merit__list-icon {
  position: absolute;
  right: 50px;
  bottom: 50px;
  z-index: -1;
}
@media only screen and (max-width: 1024px) {
  .p-merit__list-icon {
    position: revert;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    width: min(100%, 136px);
  }
}

.p-merit__bottom-area {
  background: #F7F7F7;
  border-radius: 0 0 10px 10px;
  padding: 50px 20px;
}
@media only screen and (max-width: 1024px) {
  .p-merit__bottom-area {
    padding: 30px 15px;
  }
}

.p-merit__bottom-inner {
  font-size: 14px;
  text-align: center;
}

.p-merit__bottom-inner h4 {
  font-weight: bold;
}
@media only screen and (max-width: 1024px) {
  .p-merit__bottom-inner h4 {
    font-size: 13px;
  }
}

.p-merit__bottom-inner ul {
  margin-top: 20px;
  font-weight: 500;
}
@media only screen and (max-width: 1024px) {
  .p-merit__bottom-inner ul {
    margin-top: 13px;
  }
}

.p-merit__bottom-inner ul li {
  line-height: 1.9285714286;
}
@media only screen and (max-width: 1024px) {
  .p-merit__bottom-inner ul li {
    font-size: 11px;
    letter-spacing: 0.025em;
    line-height: 1.6363636364;
  }
}

.p-about {
  padding: 180px 0 0;
}
@media only screen and (max-width: 1024px) {
  .p-about {
    padding-top: 135px;
  }
}

.p-about__text {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 2.1111111111;
  margin-top: 40px;
}
@media only screen and (max-width: 1024px) {
  .p-about__text {
    margin-top: 30px;
    font-size: 15px;
    line-height: 2;
  }
}

.p-step {
  background: #F4FCFF;
  padding: 100px 0;
  position: relative;
  border-top: 4px dotted #64C9E1;
  margin-top: 100px;
}
@media only screen and (max-width: 1024px) {
  .p-step {
    padding-top: 80px;
    margin-top: 80px;
  }
}

.p-step:before {
  position: absolute;
  top: -35px;
  left: 50%;
  translate: -50% 0;
  content: "初めてでも安心！オンライン相談のかんたんステップ";
  background: #64C9E1;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  border-radius: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 25px 55px;
  line-height: 1;
}
@media only screen and (max-width: 1024px) {
  .p-step:before {
    content: "初めてでも安心！\aオンライン相談のかんたんステップ";
    white-space: pre;
    font-size: 16px;
    line-height: 1.5625;
    padding: 15px 40px;
    width: min(100%, 348px);
    text-align: center;
    top: -42px;
  }
}

.p-step__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
@media (1025px <= width <= 1200px) {
  .p-step__list {
    zoom: 0.8;
  }
}
@media only screen and (max-width: 1024px) {
  .p-step__list {
    grid-template-columns: 1fr;
    margin-inline: auto;
    width: 100%;
    max-width: 500px;
  }
}
@media only screen and (max-width: 768px) {
  .p-step__list {
    width: calc(100% - 30px);
  }
}

.p-step__item {
  border-radius: 5px;
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr 128px;
  gap: 20px;
}
@media only screen and (max-width: 1024px) {
  .p-step__item {
    grid-template-columns: 122px;
    grid-template-rows: auto auto;
    grid-template-areas: "image title" "image text";
    gap: 13px 20px;
  }
}

@media only screen and (max-width: 1024px) {
  .p-step__item + * {
    margin-top: 30px;
  }
}

.p-step__item-image {
  position: relative;
  z-index: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media only screen and (max-width: 1024px) {
  .p-step__item-image {
    grid-area: image;
  }
}

.p-step__item-image:before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: -66px;
  width: 132px;
  height: 3px;
  background: #64C9E1;
  z-index: -1;
}
@media only screen and (max-width: 1024px) {
  .p-step__item-image:before {
    right: unset;
    rotate: 90deg;
    translate: -50% 0;
    top: 122px;
    left: 50%;
  }
}

.p-step__item:last-child .p-step__item-image:before {
  display: none;
}

.p-step__item-title {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
}
@media only screen and (max-width: 1024px) {
  .p-step__item-title {
    grid-area: title;
    text-align: left;
    align-self: end;
    font-size: 18px;
    line-height: 1;
  }
}

.p-step__text {
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
}
@media only screen and (max-width: 1024px) {
  .p-step__text {
    grid-area: text;
    text-align: left;
    align-self: start;
    font-size: 15px;
    width: auto;
    margin-inline: 0;
  }
}

.p-step__badge {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 10px auto 0;
  background: #FFF583;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  padding: 6px 10px;
  white-space: nowrap;
}
@media only screen and (max-width: 1024px) {
  .p-step__badge {
    margin-inline: 0;
  }
}

.p-step__note {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  margin-top: 35px;
}
@media only screen and (max-width: 1024px) {
  .p-step__note {
    font-size: 11px;
    margin-top: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .p-step__note {
    text-align: left;
  }
}

.p-step__bottom-area {
  display: grid;
  justify-items: center;
  gap: 30px;
  margin-top: 45px;
}
@media only screen and (max-width: 1024px) {
  .p-step__bottom-area {
    gap: 25px;
    margin-top: 35px;
  }
}

.p-step__manual {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  background: #fff;
  border: 2px solid #64C9E1;
  border-radius: 10px;
  padding: 14px 26px;
  font-size: 17px;
  font-weight: bold;
  color: #554B32;
}
@media only screen and (max-width: 1024px) {
  .p-step__manual {
    font-size: 15px;
    padding: 13px 20px;
  }
}
.p-step__manual img {
  width: 24px;
  height: 24px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

@media (any-hover: hover) {
  .p-step__manual:hover {
    opacity: 0.6;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
}
.p-step__reserve {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.p-step__reserve-note {
  font-size: 12px;
  font-weight: 500;
}
@media only screen and (max-width: 1024px) {
  .p-step__reserve-note {
    font-size: 11px;
  }
}

.p-voice {
  padding-top: 80px;
  background: #F4FCFF;
  padding-bottom: 100px;
}
@media only screen and (max-width: 1024px) {
  .p-voice {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}
.p-voice .c-hgroup:before {
  background-color: #fff;
  background-image: url(../../asset/images/icon_voice.svg);
}

.p-voice__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 40px;
  margin-top: 50px;
}
@media only screen and (max-width: 1024px) {
  .p-voice__list {
    zoom: 0.8;
    gap: 20px 30px;
  }
}
@media only screen and (max-width: 768px) {
  .p-voice__list {
    zoom: 1;
    gap: 20px;
    grid-template-columns: 1fr;
    margin-top: 40px;
    width: calc(100% - 30px);
    margin-inline: auto;
  }
}

.p-voice__item {
  display: grid;
  grid-template-columns: 125px 1fr;
  grid-template-rows: 1fr;
  gap: 40px;
}
@media only screen and (max-width: 768px) {
  .p-voice__item {
    gap: 20px;
    grid-template-columns: 90px 1fr;
    grid-template-rows: 90px;
  }
}

.p-voice__text {
  border-radius: 10px;
  background: #64C9E1;
  color: #fff;
  position: relative;
  font-size: 18px;
  font-weight: bold;
  margin-block: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 30px;
}
@media only screen and (max-width: 768px) {
  .p-voice__text {
    font-size: 15px;
    margin-block: 0;
    padding-inline: 20px;
  }
}

.p-voice__text:before {
  content: "";
  background: #64C9E1;
  position: absolute;
  top: 50%;
  left: -21px;
  translate: 0 -50%;
  -webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%);
          clip-path: polygon(100% 0, 0 50%, 100% 100%);
  width: 26px;
  height: 30px;
}
@media only screen and (max-width: 1024px) {
  .p-voice__text:before {
    width: 17px;
    height: 24px;
    left: -10px;
  }
}

.p-voice__list--merit {
  grid-template-columns: 1fr;
  max-width: 780px;
  margin-inline: auto;
  gap: 25px;
}
@media only screen and (max-width: 1024px) {
  .p-voice__list--merit {
    zoom: 1;
    gap: 20px;
  }
}

.p-voice__conclusion {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-top: 45px;
}
@media only screen and (max-width: 1024px) {
  .p-voice__conclusion {
    font-size: 20px;
    margin-top: 30px;
  }
}

.p-voice__cta {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: 35px;
}
@media only screen and (max-width: 1024px) {
  .p-voice__cta {
    margin-top: 28px;
  }
}

.p-voice__cta-note {
  font-size: 12px;
  font-weight: 500;
}
@media only screen and (max-width: 1024px) {
  .p-voice__cta-note {
    font-size: 11px;
  }
}

.p-note {
  padding-top: 70px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 1024px) {
  .p-note {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}

.p-note__inner {
  background: #F7F7F7;
  border-radius: 10px;
  padding: 50px 20px;
  font-size: 13px;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .p-note__inner {
    padding: 30px 15px;
  }
}

.p-note__inner h4 {
  font-weight: bold;
}
@media only screen and (max-width: 1024px) {
  .p-note__inner h4 {
    font-size: 13px;
  }
}

.p-note__inner ul {
  margin-top: 20px;
  font-weight: 500;
}
@media only screen and (max-width: 1024px) {
  .p-note__inner ul {
    margin-top: 13px;
  }
}

@media only screen and (max-width: 768px) {
  .p-note__inner ul {
    text-align: left;
  }
}

.p-note__inner ul li {
  line-height: 1.9285714286;
}
@media only screen and (max-width: 1024px) {
  .p-note__inner ul li {
    font-size: 11px;
    letter-spacing: 0.025em;
    line-height: 1.6363636364;
  }
}

.p-service {
  padding: 180px 0 100px;
}
@media only screen and (max-width: 768px) {
  .p-service {
    padding: 140px 0 60px;
  }
}
.p-service .c-hgroup:before {
  background-image: url(../../asset/images/icon_service.svg);
}

.p-service__list {
  margin-top: 50px;
}
@media (769px <= width <= 1024px) {
  .p-service__list {
    zoom: 0.8;
  }
}
@media only screen and (max-width: 1024px) {
  .p-service__list {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .p-service__list {
    width: calc(100% - 30px);
    margin-inline: auto;
  }
}

.p-service__item {
  display: grid;
  grid-template-columns: 310px 1fr;
}
@media only screen and (max-width: 768px) {
  .p-service__item {
    grid-template-columns: 1fr;
  }
}

.p-service__item + * {
  margin-top: 10px;
}
@media only screen and (max-width: 768px) {
  .p-service__item + * {
    margin-top: 15px;
  }
}

.p-service__info-head {
  text-align: center;
  background: #64C9E1;
  color: #fff;
  border-radius: 20px 0 0 20px;
  border: 3px solid #64C9E1;
  font-weight: bold;
  font-size: 21px;
  display: grid;
  place-content: center;
}
@media only screen and (max-width: 768px) {
  .p-service__info-head {
    border-radius: 10px 10px 0 0;
    padding: 22px;
    font-size: 17px;
    line-height: 1;
  }
}

.p-service__info-body {
  background: #F7F7F7;
  border-radius: 0 20px 20px 0;
  padding: 34px 42px;
  border: 3px solid #64C9E1;
  font-size: 18px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .p-service__info-body {
    border-radius: 0 0 10px 10px;
    font-size: 15px;
    text-align: center;
    padding: 25px;
    letter-spacing: 0.025em;
  }
}

@media only screen and (max-width: 768px) {
  .p-service__info-body--secondary {
    text-align: left;
  }
  .p-service__info-body--secondary .space {
    display: none;
  }
}

.p-service__info-body-detail {
  display: grid;
  grid-template-columns: 90px 1fr;
  grid-template-rows: 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  font-weight: 500;
}

@media only screen and (max-width: 768px) {
  .p-service__info-body-detail {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    justify-items: start;
    text-align: left;
    gap: 8px;
  }
}

.p-service__info-body-detail .label {
  border-radius: calc(infinity * 1px);
  background: #554B32;
  color: #fff;
  padding: 5px 2px 3px;
  font-size: 15px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .p-service__info-body-detail .label {
    padding-inline: 20px;
  }
}

.p-service__info-body-detail + * {
  margin-top: 10px;
}

.p-service__card-brands {
  width: min(100%, 340px);
  margin-top: 14px;
}
@media only screen and (max-width: 768px) {
  .p-service__card-brands {
    margin-inline: auto;
  }
}

.p-service__free {
  font-style: normal;
  font-weight: bold;
  color: #64C9E1;
}

@media only screen and (max-width: 768px) {
  .p-service__info-body--hours {
    padding: 20px 12px;
  }
}

.p-service__hours {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 16px;
}
.p-service__hours th,
.p-service__hours td {
  border: 1px solid #DCDCDC;
  background: #fff;
  padding: 10px 4px;
  text-align: center;
}
.p-service__hours thead th {
  background: #554B32;
  border-color: #554B32;
  color: #fff;
  font-weight: bold;
}
.p-service__hours thead th.is-holiday {
  color: #FFF583;
}
.p-service__hours tbody th {
  font-weight: bold;
  white-space: nowrap;
  padding-inline: 12px;
}
@media only screen and (max-width: 768px) {
  .p-service__hours {
    font-size: 11px;
  }
  .p-service__hours th,
  .p-service__hours td {
    padding: 8px 2px;
  }
  .p-service__hours tbody th {
    padding-inline: 6px;
  }
}

.p-service__hours-ok {
  color: #64C9E1;
  font-size: 13px;
}
@media only screen and (max-width: 768px) {
  .p-service__hours-ok {
    font-size: 11px;
  }
}

.p-service__hours-note {
  margin-top: 15px;
  font-size: 12px;
  font-weight: 500;
  text-align: left;
}
.p-service__hours-note li {
  line-height: 1.6666666667;
}
@media only screen and (max-width: 768px) {
  .p-service__hours-note {
    font-size: 11px;
    margin-top: 12px;
  }
}

@media only screen and (max-width: 768px) {
  .p-service__info-row {
    letter-spacing: 0.025em;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-service__info-row span:not(:last-child) {
  margin-right: 1em;
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .p-service__info-row span:not(:last-child) {
    margin-right: 0;
  }
}