@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New&display=swap");
html {
  overflow-x: hidden;
}

body {
  color: #4c4948;
  font-family: "Zen Kaku Gothic New", sans-serif;
  overflow-x: hidden;
  min-height: 100dvh;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
  text-align: justify;
}

footer {
  position: sticky;
  top: 100%;
}

a[href*=tel] {
  pointer-events: none;
}
@media (width <= 1279px) {
  a[href*=tel] {
    pointer-events: auto;
  }
}

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

video {
  display: block;
}

.js-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

._sp {
  display: none;
}

._tb {
  display: none;
}

._tb-sp {
  display: none;
}

@media (width <= 1279px) {
  ._pc {
    display: none;
  }
  ._tb {
    display: block;
  }
  ._tb-sp {
    display: block;
  }
}
@media (width <= 767px) {
  ._pc-tb {
    display: none;
  }
  ._tb {
    display: none;
  }
  ._sp {
    display: block;
  }
}
.l-container {
  padding-left: 5.12vw;
  padding-right: 5.12vw;
  margin-left: auto;
  margin-right: auto;
  max-width: calc(1100px + 10.24vw);
}
@media (width <= 1279px) {
  .l-container {
    max-width: 950px;
    padding-left: 5.12vw;
    padding-right: 5.12vw;
  }
}
@media (width <= 767px) {
  .l-container {
    max-width: 100%;
    padding-left: 5.12vw;
    padding-right: 5.12vw;
  }
}
.l-container--md {
  padding-left: 5.12vw;
  padding-right: 5.12vw;
  margin-left: auto;
  margin-right: auto;
  max-width: calc(1000px + 10.24vw);
}
@media (width <= 1279px) {
  .l-container--md {
    max-width: 950px;
    padding-left: 5.12vw;
    padding-right: 5.12vw;
  }
}
@media (width <= 767px) {
  .l-container--md {
    max-width: 100%;
    padding-left: 5.12vw;
    padding-right: 5.12vw;
  }
}
.l-container--sm {
  padding-left: 5.12vw;
  padding-right: 5.12vw;
  margin-left: auto;
  margin-right: auto;
  max-width: calc(896px + 10.24vw);
}
@media (width <= 1279px) {
  .l-container--sm {
    max-width: 950px;
    padding-left: 5.12vw;
    padding-right: 5.12vw;
  }
}
@media (width <= 767px) {
  .l-container--sm {
    max-width: 100%;
    padding-left: 5.12vw;
    padding-right: 5.12vw;
  }
}

.l-drawer {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  transform: translateX(100%);
  transition: transform 0.45s ease;
  z-index: 200;
  pointer-events: none;
}
.l-drawer.open {
  transform: translateX(0);
  pointer-events: auto;
}
.l-drawer__panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding: 4.375rem 0;
  background: url(./../img/dist/general/drawer-bg.jpg) no-repeat center/cover;
  color: #fff;
  overflow-y: auto;
  position: relative;
  text-align: left;
}
.l-drawer__close {
  position: absolute;
  top: 2rem;
  right: 0.9375rem;
  width: 1.5rem;
  height: 0.75rem;
  color: #fff;
}
.l-drawer__nav {
  width: 100%;
  max-width: 15rem;
  margin-inline: auto;
}
.l-drawer__nav-list {
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.l-drawer__nav-link {
  display: block;
  text-decoration: none;
  font-size: clamp(0.75rem, 3.2vw, 1rem);
  line-height: 1.25;
  font-weight: bold;
  letter-spacing: 0.16em;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.9);
}

.l-footer__nav {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 7.5rem 0;
  color: #fff;
}
@media (width <= 767px) {
  .l-footer__nav {
    padding: 4.375rem 0;
  }
}
.l-footer__nav:is(.l-footer--top *) {
  background-image: url(./../img/dist/general/footer-bg-top.png);
}
@media (width <= 767px) {
  .l-footer__nav:is(.l-footer--top *) {
    background-image: url(./../img/dist/general/footer-bg-top-sp.png);
  }
}
.l-footer__nav:is(.l-footer--page *) {
  background-image: url(./../img/dist/general/footer-bg-page.png);
}
@media (width <= 767px) {
  .l-footer__nav:is(.l-footer--page *) {
    background-image: url(./../img/dist/general/footer-bg-page-sp.png);
  }
}
.l-footer__nav-columns {
  display: grid;
  grid-template-columns: repeat(4, 11.25rem);
  justify-content: space-between;
}
@media (width <= 1279px) {
  .l-footer__nav-columns {
    grid-template-columns: 1fr;
    row-gap: 20px;
    max-width: 240px;
    margin-inline: auto;
  }
}
.l-footer__nav-list {
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;
}
.l-footer__nav-link {
  display: inline-flex;
  flex-direction: column;
  gap: 0.5rem;
  color: inherit;
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: bold;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .l-footer__nav-link:hover {
    opacity: 0.7;
  }
}
@media (width <= 767px) {
  .l-footer__nav-link {
    font-size: 0.75rem;
    width: 100%;
  }
}
.l-footer__nav-link::after {
  content: "";
  display: block;
  width: 11.25rem;
  height: 1px;
  background-color: currentColor;
}
@media (width <= 767px) {
  .l-footer__nav-link::after {
    width: 100%;
  }
}
.l-footer__bottom {
  background-color: #f7f8f8;
  color: #4c4948;
  padding: 3.75rem 0;
}
@media (width <= 1279px) {
  .l-footer__bottom {
    padding-bottom: 0.625rem;
  }
}
.l-footer__bottom-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
@media (width <= 1279px) {
  .l-footer__bottom-inner {
    flex-direction: column;
    align-items: center;
    row-gap: 3.75rem;
  }
}
.l-footer__bottom-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.l-footer__brand img {
  width: 14.375rem;
  height: 2.875rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-footer__info {
  display: flex;
  flex-direction: column;
}
.l-footer__info-text {
  font-size: 0.75rem;
  line-height: 2.1;
  font-weight: normal;
  letter-spacing: 0.18em;
}
@media (width <= 767px) {
  .l-footer__info-text {
    font-size: 0.625rem;
  }
}
.l-footer__copyright {
  font-size: 0.625rem;
  line-height: 1;
  font-weight: normal;
  letter-spacing: 0.02em;
}
@media (width <= 1279px) {
  .l-footer__copyright {
    text-align: center;
    margin-top: 1.25rem;
  }
}

.l-header--fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
}
.l-header--toggleColor {
  transition: background-color 0.3s;
}
.l-header--toggleColor.js-headerColor {
  background-color: #fff;
}
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem 1.125rem 1.125rem 2.1875rem;
}
@media (width <= 767px) {
  .l-header__inner {
    padding: 1rem;
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }
}
.l-header__logo {
  transition: 0.3s;
}
@media (any-hover: hover) {
  .l-header__logo:hover {
    opacity: 0.7;
  }
}
.l-header__logo {
  flex-basis: min(250px, 16vw);
}
.l-header__logo img {
  display: block;
}
@media (width <= 1279px) {
  .l-header__logo {
    flex-basis: 8.125rem;
  }
  .l-header__logo img {
    width: 8.125rem;
    height: 1.5rem;
  }
}
.l-header__list {
  display: flex;
  align-items: center;
  -moz-column-gap: 2vw;
       column-gap: 2vw;
}
.l-header__item {
  flex: 0 0 auto;
}
@media (width <= 1279px) {
  .l-header__controls {
    display: flex;
    align-items: center;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
}
.l-header__link {
  display: inline-flex;
  align-items: center;
  color: #4c4948;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: bold;
  font-size: clamp(0.875rem, 1.0666666667vw, 1rem);
}
@media (any-hover: hover) {
  .l-header__link:hover {
    color: #5ec4f1;
  }
}
@media (width <= 767px) {
  .l-header__sp-menu {
    margin-left: 0;
  }
}

.l-body {
  display: flex;
  flex-direction: column;
}

.l-main {
  flex-grow: 1;
  margin-top: 99.56px;
  padding-bottom: 25rem;
}
@media (width <= 767px) {
  .l-main {
    padding-bottom: 6.25rem;
    margin-top: 70.38px;
  }
}

.l-page {
  margin-top: unset;
  padding-bottom: 18.75rem;
}
@media (width <= 767px) {
  .l-page {
    padding-bottom: 10.625rem;
  }
}

.l-content {
  padding-top: 120px;
}

.l-page-header {
  position: relative;
  color: #fff;
  overflow: hidden;
}
.l-page-header__inner {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  row-gap: 1.875rem;
  text-align: center;
}
.l-page-header__subtitle {
  font-size: 1rem;
  line-height: 1.9;
  font-weight: bold;
  letter-spacing: 0.24em;
}

.c-acd__head {
  cursor: pointer;
  display: block;
}
.c-acd__head::-webkit-details-marker {
  display: none;
}
.c-acd__body {
  max-height: 0px;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: 0.5s ease-in;
}
.c-acd[open] > .c-acd__body, .c-acd.open > .c-acd__body {
  max-height: 100vh;
  opacity: 1;
  visibility: visible;
}

.c-acd {
  border-top: 1px solid #231815;
}
.c-acd:last-child {
  border-bottom: 1px solid #231815;
}
.c-acd__head {
  position: relative;
  padding: 2.5rem 1rem;
}
@media (width <= 767px) {
  .c-acd__head {
    padding: 1.875rem 1rem;
  }
}
.c-acd__head::before, .c-acd__head::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background-color: #231815;
  position: absolute;
  top: 50%;
  right: 1rem;
  translate: 0 -50%;
}
@media (width <= 767px) {
  .c-acd__head::before, .c-acd__head::after {
    width: 24px;
  }
}
.c-acd__head::after {
  rotate: 90deg;
  transition: 0.3s;
}
.c-acd__head:is(.c-acd[open] *)::after {
  rotate: 0deg;
}
.c-acd__inner {
  padding: 0 1rem 2.5rem;
}
@media (width <= 767px) {
  .c-acd__inner {
    padding: 0 1rem 1.875rem;
  }
}
.c-acd__inner h3 {
  font-size: 1.5rem;
  line-height: 1.1666666667;
  font-weight: 500;
}
@media (width <= 767px) {
  .c-acd__inner h3 {
    font-size: clamp(1rem, 4.2666666667vw, 1.125rem);
  }
}
.c-acd__inner h3 + p {
  margin-top: 2.1875rem;
}
@media (width <= 767px) {
  .c-acd__inner h3 + p {
    margin-top: 1.25rem;
  }
}
.c-acd__inner p {
  font-size: 0.875rem;
  line-height: 1.7142857143;
  font-weight: 500;
}
@media (width <= 767px) {
  .c-acd__inner p {
    font-size: clamp(0.75rem, 3.2vw, 0.875rem);
  }
}
.c-acd__inner p + p {
  margin-top: 1.7142857143em;
}

.c-btn {
  display: block;
  background-color: #231815;
  color: #fff;
  padding: 1.1em 3.125rem;
  position: relative;
  transition: background-color 0.3s;
  cursor: pointer;
  width: 100%;
  margin-inline: auto;
  display: grid;
  place-content: center;
  border-radius: 100vmax;
  font-size: 0.875rem;
  line-height: 1;
  font-weight: bold;
  letter-spacing: 0.12em;
}
@media (width <= 767px) {
  .c-btn {
    padding-left: unset;
    padding-right: unset;
    font-size: 0.625rem;
  }
}
.c-btn::before {
  content: "";
  display: block;
  aspect-ratio: 16/27;
  width: 8px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  background: url(./../img/dist/general/arrow.png) no-repeat center/cover;
}
@media (width <= 767px) {
  .c-btn::before {
    width: 4px;
  }
}
@media (any-hover: hover) {
  .c-btn:hover {
    background-color: #5ec4f1;
  }
}
.c-btn--lg {
  padding: 1.4em 0;
}
.c-btn:has(input) {
  padding: 0;
  display: block;
}
.c-btn input {
  display: block;
  width: 100%;
  height: 100%;
  padding: 1.1em 3.125rem;
  text-align: center;
}
.c-btn--noArrow::before {
  display: none;
}

.c-btn-burger {
  cursor: pointer;
  width: 1.5rem;
  height: 0.75rem;
}
.c-btn-burger__inner {
  display: block;
  position: relative;
  height: 100%;
}
.c-btn-burger__item {
  display: block;
  position: absolute;
  right: 0;
  left: auto;
  width: 1.5rem;
  height: 1px;
  background-color: currentColor;
  transition: 0.3s;
}
.c-btn-burger__item._top {
  top: 0;
}
.c-btn-burger__item._middle {
  width: 1.3125rem;
  top: 50%;
  transform: translateY(-50%);
}
.c-btn-burger__item._bottom {
  width: 1.125rem;
  bottom: 0;
}
.c-btn-burger.is-open .c-btn-burger__item {
  background-color: #fff;
}
.c-btn-burger.is-open .c-btn-burger__item._top {
  top: 50%;
  transform: translateY(-50%) rotate(30deg);
}
.c-btn-burger.is-open .c-btn-burger__item._middle {
  opacity: 0;
}
.c-btn-burger.is-open .c-btn-burger__item._bottom {
  width: 100%;
  top: 50%;
  transform: translateY(-50%) rotate(-30deg);
}

.c-btn--sky, .c-btn--primary {
  background-color: #5ec4f1;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .c-btn--sky:hover, .c-btn--primary:hover {
    opacity: 0.7;
  }
}
@media (any-hover: hover) {
  .c-btn--sky:hover, .c-btn--primary:hover {
    background-color: #5ec4f1;
  }
}

.c-btn--gray {
  background-color: #807f80;
}

.c-btn--secondary {
  background-color: #db4f37;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .c-btn--secondary:hover {
    opacity: 0.7;
  }
}
@media (any-hover: hover) {
  .c-btn--secondary:hover {
    background-color: #db4f37;
  }
}

.c-btn--header {
  max-width: none;
  margin-inline: 0;
  width: clamp(10rem, 15.0666666667vw, 14.125rem);
  height: auto;
  line-height: 1;
  font-weight: bold;
  padding-block: 0.733em;
  padding-left: unset;
  padding-right: unset;
}
.c-btn--header::before {
  display: none;
}
@media (width <= 767px) {
  .c-btn--header {
    width: 8.125rem;
    letter-spacing: 0;
  }
}

.c-btn--page {
  min-width: 448px;
}
@media (width <= 767px) {
  .c-btn--page {
    min-width: 274px;
  }
}

.c-faq {
  max-width: 41.875rem;
  margin-inline: auto;
}
.c-faq__item {
  padding: 1.5625rem 0;
  border-top: 1px solid #060001;
}
.c-faq__item:last-child {
  border-bottom: 1px solid #060001;
}
.c-faq__row {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  align-items: flex-start;
}
.c-faq__row + .c-faq__row {
  margin-top: 1rem;
}
@media (width <= 767px) {
  .c-faq__row + .c-faq__row {
    margin-top: 30px;
  }
}
.c-faq__label {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 1.6875rem;
  height: 1.6875rem;
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  font-weight: bold;
}
.c-faq__label--q {
  background-color: #595757;
}
.c-faq__label--a {
  background-color: #e95037;
}
.c-faq__content {
  flex: 1 1 auto;
  font-feature-settings: "palt";
}
.c-faq__text {
  margin: 0;
  font-size: 1rem;
  line-height: 27px;
  font-weight: normal;
  letter-spacing: 0.1em;
}
@media (width <= 767px) {
  .c-faq__text {
    font-size: clamp(0.625rem, 2.6666666667vw, 0.75rem);
  }
}
.c-faq__note {
  margin-top: 1rem;
  font-size: 0.625rem;
  line-height: 1.5;
  font-weight: normal;
  letter-spacing: 0.2em;
}
@media (width <= 767px) {
  .c-faq__note {
    margin-top: 1em;
  }
}

.c-instagram {
  padding-top: 5rem;
}
@media (width <= 767px) {
  .c-instagram {
    padding-top: 4.6875rem;
  }
}
.c-instagram__heading {
  padding-bottom: 20px;
  border-bottom: 1px solid #231815;
}
@media (width <= 767px) {
  .c-instagram__heading {
    padding-bottom: 15px;
  }
}
.c-instagram__ttl {
  max-width: 168px;
}
@media (width <= 767px) {
  .c-instagram__ttl {
    max-width: 115px;
  }
}
.c-instagram__lead {
  margin-top: 30px;
  font-size: 0.875rem;
  line-height: 2;
  font-weight: normal;
  letter-spacing: 0.2em;
}
@media (width <= 767px) {
  .c-instagram__lead {
    font-size: 0.625rem;
    margin-top: 20px;
    letter-spacing: 0;
  }
}
.c-instagram__feed {
  margin-top: 30px;
}

.p-kengaku {
  margin-bottom: -300px;
}
@media (width <= 767px) {
  .p-kengaku {
    margin-top: -50px;
    margin-bottom: -415px;
  }
}
.p-kengaku__ttl {
  font-size: 1.625rem;
  line-height: 2;
  font-weight: bold;
  letter-spacing: 0.18em;
}
@media (width <= 767px) {
  .p-kengaku__ttl {
    font-size: min(1.25rem, 5.3333333333vw);
    text-align: center;
  }
}
.p-kengaku__ttl--alignRight {
  text-align: right;
}
@media (width <= 767px) {
  .p-kengaku__ttl--alignRight {
    text-align: center;
  }
}
.p-kengaku-sect01 {
  background: url(./../img/dist/page/kengaku/sect01-bg.png) no-repeat top 170px center/cover;
  padding-bottom: 210px;
}
@media (width <= 767px) {
  .p-kengaku-sect01 {
    background-image: url(./../img/dist/page/kengaku/sect01-bg-sp.png);
    background-position: top 125px center;
    padding-bottom: 80px;
  }
}
.p-kengaku-sect01__cont01 {
  padding-top: 15.1333333333vw;
  margin-top: 70px;
}
@media (width <= 767px) {
  .p-kengaku-sect01__cont01 {
    margin-top: 60px;
    padding-top: unset;
  }
}
.p-kengaku-sect01__cont02 {
  padding-top: 2vw;
}
@media (width <= 767px) {
  .p-kengaku-sect01__cont02 {
    padding-top: unset;
  }
}
.p-kengaku-sect01__cont02 .p-kengaku-sect01__inner, .p-kengaku-sect01__cont02 .p-about-sect01__inner {
  position: relative;
}
@media (width <= 1279px) {
  .p-kengaku-sect01__cont02 .p-kengaku-sect01__inner, .p-kengaku-sect01__cont02 .p-about-sect01__inner {
    position: unset;
  }
}
@media (width <= 767px) {
  .p-kengaku-sect01__cont02 .p-kengaku-sect01__inner, .p-kengaku-sect01__cont02 .p-about-sect01__inner {
    position: relative;
  }
}
.p-kengaku-sect01__columns, .p-about-sect01__columns, .p-kengaku-sect04__columns, .p-kengaku-sect03__columns, .p-kengaku-sect02__columns {
  position: relative;
}
@media (width <= 767px) {
  .p-kengaku-sect01__columns, .p-about-sect01__columns, .p-kengaku-sect04__columns, .p-kengaku-sect03__columns, .p-kengaku-sect02__columns {
    display: flex;
    flex-direction: column-reverse;
  }
}
.p-kengaku-sect01__columns + .p-kengaku-sect01__columns, .p-about-sect01__columns + .p-kengaku-sect01__columns, .p-kengaku-sect01__columns + .p-about-sect01__columns, .p-about-sect01__columns + .p-about-sect01__columns, .p-kengaku-sect04__columns + .p-kengaku-sect01__columns, .p-kengaku-sect04__columns + .p-about-sect01__columns, .p-kengaku-sect01__columns + .p-kengaku-sect04__columns, .p-about-sect01__columns + .p-kengaku-sect04__columns, .p-kengaku-sect04__columns + .p-kengaku-sect04__columns, .p-kengaku-sect03__columns + .p-kengaku-sect01__columns, .p-kengaku-sect03__columns + .p-about-sect01__columns, .p-kengaku-sect03__columns + .p-kengaku-sect04__columns, .p-kengaku-sect01__columns + .p-kengaku-sect03__columns, .p-about-sect01__columns + .p-kengaku-sect03__columns, .p-kengaku-sect04__columns + .p-kengaku-sect03__columns, .p-kengaku-sect03__columns + .p-kengaku-sect03__columns, .p-kengaku-sect02__columns + .p-kengaku-sect01__columns, .p-kengaku-sect02__columns + .p-about-sect01__columns, .p-kengaku-sect02__columns + .p-kengaku-sect04__columns, .p-kengaku-sect02__columns + .p-kengaku-sect03__columns, .p-kengaku-sect01__columns + .p-kengaku-sect02__columns, .p-about-sect01__columns + .p-kengaku-sect02__columns, .p-kengaku-sect04__columns + .p-kengaku-sect02__columns, .p-kengaku-sect03__columns + .p-kengaku-sect02__columns, .p-kengaku-sect02__columns + .p-kengaku-sect02__columns {
  margin-top: 190px;
}
@media (width <= 767px) {
  .p-kengaku-sect01__columns + .p-kengaku-sect01__columns, .p-about-sect01__columns + .p-kengaku-sect01__columns, .p-kengaku-sect01__columns + .p-about-sect01__columns, .p-about-sect01__columns + .p-about-sect01__columns, .p-kengaku-sect04__columns + .p-kengaku-sect01__columns, .p-kengaku-sect04__columns + .p-about-sect01__columns, .p-kengaku-sect01__columns + .p-kengaku-sect04__columns, .p-about-sect01__columns + .p-kengaku-sect04__columns, .p-kengaku-sect04__columns + .p-kengaku-sect04__columns, .p-kengaku-sect03__columns + .p-kengaku-sect01__columns, .p-kengaku-sect03__columns + .p-about-sect01__columns, .p-kengaku-sect03__columns + .p-kengaku-sect04__columns, .p-kengaku-sect01__columns + .p-kengaku-sect03__columns, .p-about-sect01__columns + .p-kengaku-sect03__columns, .p-kengaku-sect04__columns + .p-kengaku-sect03__columns, .p-kengaku-sect03__columns + .p-kengaku-sect03__columns, .p-kengaku-sect02__columns + .p-kengaku-sect01__columns, .p-kengaku-sect02__columns + .p-about-sect01__columns, .p-kengaku-sect02__columns + .p-kengaku-sect04__columns, .p-kengaku-sect02__columns + .p-kengaku-sect03__columns, .p-kengaku-sect01__columns + .p-kengaku-sect02__columns, .p-about-sect01__columns + .p-kengaku-sect02__columns, .p-kengaku-sect04__columns + .p-kengaku-sect02__columns, .p-kengaku-sect03__columns + .p-kengaku-sect02__columns, .p-kengaku-sect02__columns + .p-kengaku-sect02__columns {
    margin-top: 70px;
  }
}
.p-kengaku-sect01__inner, .p-about-sect01__inner {
  width: 33vw;
}
@media (width <= 767px) {
  .p-kengaku-sect01__inner, .p-about-sect01__inner {
    position: relative;
    width: 100%;
    margin-top: -5.3333333333vw;
  }
}
.p-kengaku-sect01__inner:is(.p-kengaku-sect01__columns--reverse *, .p-about-sect01__columns:nth-of-type(odd) *, .p-kengaku-sect04__columns *, .p-kengaku-sect02__columns *), .p-about-sect01__inner:is(.p-kengaku-sect01__columns--reverse *, .p-about-sect01__columns:nth-of-type(odd) *, .p-kengaku-sect04__columns *, .p-kengaku-sect02__columns *) {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (width <= 767px) {
  .p-kengaku-sect01__inner:is(.p-kengaku-sect01__columns--reverse *, .p-about-sect01__columns:nth-of-type(odd) *, .p-kengaku-sect04__columns *, .p-kengaku-sect02__columns *), .p-about-sect01__inner:is(.p-kengaku-sect01__columns--reverse *, .p-about-sect01__columns:nth-of-type(odd) *, .p-kengaku-sect04__columns *, .p-kengaku-sect02__columns *) {
    align-items: flex-start;
    margin-top: 35px;
  }
}
.p-kengaku-sect01__ttl, .p-about-sect01__ttl, .p-kengaku-sect03__ttl, .p-kengaku-sect02__ttl {
  display: grid;
  place-content: center;
  width: 100%;
  font-size: 1.5rem;
  line-height: 1.35;
  font-weight: bold;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  font-feature-settings: "palt";
}
@media (width <= 767px) {
  .p-kengaku-sect01__ttl, .p-about-sect01__ttl, .p-kengaku-sect03__ttl, .p-kengaku-sect02__ttl {
    width: 44.8vw;
    font-size: 1rem;
  }
  .p-kengaku-sect01__ttl:is(.p-kengaku-sect01__columns--reverse *, .p-about-sect01__columns:nth-of-type(odd) *, .p-kengaku-sect04__columns *, .p-kengaku-sect02__columns *), .p-about-sect01__ttl:is(.p-kengaku-sect01__columns--reverse *, .p-about-sect01__columns:nth-of-type(odd) *, .p-kengaku-sect04__columns *, .p-kengaku-sect02__columns *), .p-kengaku-sect03__ttl:is(.p-kengaku-sect01__columns--reverse *, .p-about-sect01__columns:nth-of-type(odd) *, .p-kengaku-sect04__columns *, .p-kengaku-sect02__columns *), .p-kengaku-sect02__ttl:is(.p-kengaku-sect01__columns--reverse *, .p-about-sect01__columns:nth-of-type(odd) *, .p-kengaku-sect04__columns *, .p-kengaku-sect02__columns *) {
    margin-left: auto;
  }
}
.p-kengaku-sect01__txt, .p-about-sect01__txt {
  margin-top: 4vw;
  font-size: 0.875rem;
  line-height: 2.17;
  font-weight: normal;
  font-feature-settings: "palt";
  letter-spacing: 0.2em;
}
@media (width <= 1279px) {
  .p-kengaku-sect01__txt, .p-about-sect01__txt {
    font-size: 0.875rem;
  }
}
@media (width <= 767px) {
  .p-kengaku-sect01__txt, .p-about-sect01__txt {
    margin-top: 20px;
    font-size: clamp(0.625rem, 2.6666666667vw, 0.875rem);
  }
}
.p-kengaku-sect01__txt--lg {
  font-size: 1.42em;
  font-weight: bold;
}
@media (width <= 1279px) {
  .p-kengaku-sect01__txt--lg {
    font-size: 1.2em;
  }
}
@media (width <= 767px) {
  .p-kengaku-sect01__txt--lg {
    font-size: 1.42em;
  }
}
.p-kengaku-sect01__illust01 {
  max-width: 310px;
  position: absolute;
  top: 30px;
  left: 5.3333333333vw;
}
@media (width <= 1279px) {
  .p-kengaku-sect01__illust01 {
    max-width: 167px;
    top: 0;
  }
}
@media (width <= 767px) {
  .p-kengaku-sect01__illust01 {
    top: 60px;
    left: unset;
    right: 0;
  }
}
.p-kengaku-sect01__illust02 {
  width: 100%;
  max-width: 82px;
  position: absolute;
  top: 24.6666666667vw;
  right: calc(100% + 1.875rem);
  z-index: 1;
}
@media (width <= 1279px) {
  .p-kengaku-sect01__illust02 {
    left: 40%;
  }
}
@media (width <= 767px) {
  .p-kengaku-sect01__illust02 {
    max-width: 65px;
    top: 6px;
    left: 10.6666666667vw;
  }
}
.p-kengaku-sect01__img, .p-about-sect01__img, .p-kengaku-sect04__img01, .p-kengaku-sect03__img01, .p-kengaku-sect02__img {
  position: absolute;
  top: 0;
  right: 0;
}
.p-kengaku-sect01__img:is(.p-kengaku-sect01__columns--reverse *, .p-about-sect01__columns:nth-of-type(odd) *, .p-kengaku-sect04__columns *, .p-kengaku-sect02__columns *), .p-about-sect01__img:is(.p-kengaku-sect01__columns--reverse *, .p-about-sect01__columns:nth-of-type(odd) *, .p-kengaku-sect04__columns *, .p-kengaku-sect02__columns *), .p-kengaku-sect04__img01:is(.p-kengaku-sect01__columns--reverse *, .p-about-sect01__columns:nth-of-type(odd) *, .p-kengaku-sect04__columns *, .p-kengaku-sect02__columns *), .p-kengaku-sect03__img01:is(.p-kengaku-sect01__columns--reverse *, .p-about-sect01__columns:nth-of-type(odd) *, .p-kengaku-sect04__columns *, .p-kengaku-sect02__columns *), .p-kengaku-sect02__img:is(.p-kengaku-sect01__columns--reverse *, .p-about-sect01__columns:nth-of-type(odd) *, .p-kengaku-sect04__columns *, .p-kengaku-sect02__columns *) {
  right: unset;
  left: 0;
}
@media (width <= 767px) {
  .p-kengaku-sect01__img, .p-about-sect01__img, .p-kengaku-sect04__img01, .p-kengaku-sect03__img01, .p-kengaku-sect02__img {
    position: unset;
    margin-left: auto;
  }
  .p-kengaku-sect01__img:is(.p-kengaku-sect01__columns--reverse *, .p-about-sect01__columns:nth-of-type(odd) *, .p-kengaku-sect04__columns *, .p-kengaku-sect02__columns *), .p-about-sect01__img:is(.p-kengaku-sect01__columns--reverse *, .p-about-sect01__columns:nth-of-type(odd) *, .p-kengaku-sect04__columns *, .p-kengaku-sect02__columns *), .p-kengaku-sect04__img01:is(.p-kengaku-sect01__columns--reverse *, .p-about-sect01__columns:nth-of-type(odd) *, .p-kengaku-sect04__columns *, .p-kengaku-sect02__columns *), .p-kengaku-sect03__img01:is(.p-kengaku-sect01__columns--reverse *, .p-about-sect01__columns:nth-of-type(odd) *, .p-kengaku-sect04__columns *, .p-kengaku-sect02__columns *), .p-kengaku-sect02__img:is(.p-kengaku-sect01__columns--reverse *, .p-about-sect01__columns:nth-of-type(odd) *, .p-kengaku-sect04__columns *, .p-kengaku-sect02__columns *) {
    margin-left: unset;
    margin-right: auto;
  }
}
.p-kengaku-sect01__img01 {
  width: min(750px, 50vw);
}
@media (width <= 767px) {
  .p-kengaku-sect01__img01 {
    width: 94.4vw;
  }
}
.p-kengaku-sect01__img02 {
  width: min(703px, 46.8666666667vw);
}
@media (width <= 767px) {
  .p-kengaku-sect01__img02 {
    width: 82.4vw;
  }
}
.p-kengaku-sect01__img03 {
  margin-top: 8.6666666667vw;
}
@media (width <= 767px) {
  .p-kengaku-sect01__img03 {
    margin-top: 4.375rem;
  }
}
.p-kengaku-sect01__figure {
  margin-top: 20px;
  position: relative;
  z-index: 1;
}
@media (width <= 767px) {
  .p-kengaku-sect01__figure {
    max-width: 375px;
    margin-inline: auto;
  }
}
.p-kengaku-sect02 {
  margin-top: 140px;
  background: url(./../img/dist/page/kengaku/sect02-bg.png) no-repeat top 140px center/cover;
  padding-bottom: 110px;
}
@media (width <= 767px) {
  .p-kengaku-sect02 {
    margin-top: 125px;
    background-image: url(./../img/dist/page/kengaku/sect02-bg-sp.png);
    background-position: top 120px center;
    padding-bottom: 65px;
  }
}
.p-kengaku-sect02__columns {
  margin-top: 60px;
  padding-top: 18vw;
}
@media (width <= 767px) {
  .p-kengaku-sect02__columns {
    margin-top: 60px;
    padding-top: unset;
  }
}
.p-kengaku-sect02__inner {
  width: 22.6666666667vw;
  margin-left: auto;
}
@media (width <= 767px) {
  .p-kengaku-sect02__inner {
    position: relative;
    width: 100%;
    margin-left: unset;
  }
}
.p-kengaku-sect02__illust01 {
  width: 12.3333333333vw;
  position: absolute;
  top: 9vw;
  right: 16vw;
}
@media (width <= 767px) {
  .p-kengaku-sect02__illust01 {
    width: 34.6666666667vw;
    top: 60px;
    left: 12.2666666667vw;
  }
}
.p-kengaku-sect02__img {
  width: min(898px, 59.8666666667vw);
}
@media (width <= 767px) {
  .p-kengaku-sect02__img {
    width: 94.4vw;
  }
}
.p-kengaku-sect02__txt {
  margin-top: 100px;
  padding-left: 6vw;
  font-size: 0.875rem;
  line-height: 2.1;
  font-weight: normal;
  letter-spacing: 0.2em;
  font-feature-settings: "palt";
  display: flex;
  flex-direction: column;
  row-gap: 2.1em;
}
@media (width <= 1279px) {
  .p-kengaku-sect02__txt {
    padding-left: unset;
  }
}
@media (width <= 767px) {
  .p-kengaku-sect02__txt {
    margin-top: 40px;
    font-size: clamp(0.625rem, 2.6666666667vw, 0.875rem);
    letter-spacing: 0.1em;
  }
}
.p-kengaku-sect02__figure {
  margin-top: 60px;
}
@media (width <= 767px) {
  .p-kengaku-sect02__figure {
    margin-top: 45px;
    max-width: 375px;
    margin-inline: auto;
  }
}
.p-kengaku-sect03 {
  margin-top: 220px;
  background: url(./../img/dist/page/kengaku/sect03-bg.png) no-repeat top 270px center/cover;
  padding-bottom: 130px;
}
@media (width <= 767px) {
  .p-kengaku-sect03 {
    margin-top: 120px;
    background-image: url(./../img/dist/page/kengaku/sect03-bg-sp.png);
    background-position: top 120px center;
    padding-bottom: 85px;
  }
}
.p-kengaku-sect03__columns {
  margin-top: 30px;
  padding-top: 18.6666666667vw;
}
@media (width <= 767px) {
  .p-kengaku-sect03__columns {
    padding-top: unset;
    margin-top: 70px;
  }
}
.p-kengaku-sect03__inner {
  width: 33vw;
}
@media (width <= 767px) {
  .p-kengaku-sect03__inner {
    position: relative;
    width: 100%;
    margin-top: 50px;
  }
}
.p-kengaku-sect03__illust01 {
  width: 12.3333333333vw;
  position: absolute;
  top: 9vw;
  left: 25vw;
}
@media (width <= 767px) {
  .p-kengaku-sect03__illust01 {
    width: 34.6666666667vw;
    top: 60px;
    left: unset;
    right: 4.8vw;
  }
}
.p-kengaku-sect03__txt {
  margin-top: 80px;
  font-size: 0.875rem;
  line-height: 2.1;
  font-weight: normal;
  letter-spacing: 0.2em;
  font-feature-settings: "palt";
  display: flex;
  flex-direction: column;
  row-gap: 2.1em;
}
@media (width <= 1279px) {
  .p-kengaku-sect03__txt {
    width: 80vw;
  }
}
@media (width <= 767px) {
  .p-kengaku-sect03__txt {
    width: auto;
    margin-top: 50px;
    font-size: clamp(0.625rem, 2.6666666667vw, 0.875rem);
    letter-spacing: 0.1em;
  }
}
.p-kengaku-sect03__img01 {
  width: min(710px, 47.3333333333vw);
}
@media (width <= 767px) {
  .p-kengaku-sect03__img01 {
    width: 82.4vw;
  }
}
.p-kengaku-sect03__img02 {
  width: 57.3333333333vw;
  margin-left: auto;
  margin-top: 13.3333333333vw;
  margin-right: 4.6666666667vw;
}
@media (width <= 1279px) {
  .p-kengaku-sect03__img02 {
    margin-top: unset;
  }
}
@media (width <= 767px) {
  .p-kengaku-sect03__img02 {
    width: 94.6666666667vw;
    margin-top: 20px;
    margin-right: unset;
  }
}
.p-kengaku-sect03__figure01 {
  margin-top: 20px;
}
@media (width <= 767px) {
  .p-kengaku-sect03__figure01 {
    margin-top: 40px;
    max-width: 375px;
    margin-inline: auto;
  }
}
.p-kengaku-sect03__daily {
  margin-top: 85px;
  max-width: 570px;
  margin-inline: auto;
}
@media (width <= 767px) {
  .p-kengaku-sect03__daily {
    margin-top: 30px;
    max-width: 375px;
    margin-inline: auto;
  }
}
.p-kengaku-sect03__daily p {
  margin-top: 20px;
  font-size: 0.625rem;
  line-height: 1.7;
  font-weight: normal;
}
@media (width <= 767px) {
  .p-kengaku-sect03__daily p {
    margin-top: 1em;
  }
}
.p-kengaku-sect03__daily p + p {
  margin-top: 1em;
}
.p-kengaku-sect03__figure03 {
  margin-top: 75px;
  max-width: 767px;
  margin-inline: auto;
}
@media (width <= 767px) {
  .p-kengaku-sect03__figure03 {
    margin-top: 50px;
    max-width: 375px;
    margin-inline: auto;
  }
}
.p-kengaku-sect04 {
  margin-top: 180px;
  background: url(./../img/dist/page/kengaku/sect04-bg.png) no-repeat top 170px center/cover;
  padding-bottom: 130px;
}
@media (width <= 767px) {
  .p-kengaku-sect04 {
    margin-top: 120px;
    background-image: url(./../img/dist/page/kengaku/sect04-bg-sp.png);
    background-position: top 40px center;
    padding-bottom: 60px;
  }
}
.p-kengaku-sect04__columns {
  margin-top: 50px;
  padding-top: 25.3333333333vw;
}
@media (width <= 767px) {
  .p-kengaku-sect04__columns {
    flex-direction: column;
    margin-top: 140px;
    padding-top: unset;
  }
}
.p-kengaku-sect04__inner {
  width: 33vw;
  margin-left: auto;
}
@media (width <= 767px) {
  .p-kengaku-sect04__inner {
    width: auto;
    margin-inline: 5.12vw;
  }
}
.p-kengaku-sect04__ttl {
  width: 100%;
  font-size: 1.5rem;
  line-height: 1.35;
  font-weight: bold;
  font-feature-settings: "palt";
}
@media (width <= 767px) {
  .p-kengaku-sect04__ttl {
    font-size: 1rem;
  }
}
.p-kengaku-sect04__txt {
  margin-top: 35px;
  font-size: 0.875rem;
  line-height: 2.1;
  font-weight: normal;
  letter-spacing: 0.2em;
  font-feature-settings: "palt";
}
@media (width <= 767px) {
  .p-kengaku-sect04__txt {
    margin-top: 25px;
    font-size: clamp(0.625rem, 2.6666666667vw, 0.875rem);
    letter-spacing: 0.1em;
  }
}
.p-kengaku-sect04__img01 {
  width: min(785px, 52.3333333333vw);
}
@media (width <= 767px) {
  .p-kengaku-sect04__img01 {
    width: 100%;
    margin-top: 20px;
  }
}
.p-kengaku-sect04__img02 {
  width: min(966px, 64.4vw);
  margin-top: 60px;
  margin-left: auto;
}
@media (width <= 767px) {
  .p-kengaku-sect04__img02 {
    margin-top: 50px;
    width: 100%;
  }
}
.p-kengaku-sect04__figure {
  margin-top: -35px;
}
@media (width <= 767px) {
  .p-kengaku-sect04__figure {
    margin-top: 30px;
    max-width: 375px;
    margin-inline: auto;
  }
}
.p-kengaku-sect05 {
  margin-top: 210px;
  padding-bottom: 330px;
}
@media (width <= 767px) {
  .p-kengaku-sect05 {
    margin-top: 90px;
    padding-bottom: 300px;
  }
}
.p-kengaku-sect05__faq {
  margin-top: 260px;
}
@media (width <= 767px) {
  .p-kengaku-sect05__faq {
    margin-top: 42.6666666667vw;
    max-width: 375px;
    margin-inline: auto;
  }
}
.p-kengaku-sect05__figure01 {
  margin-top: 60px;
}
@media (width <= 767px) {
  .p-kengaku-sect05__figure01 {
    margin-top: 30px;
    max-width: 375px;
    margin-inline: auto;
  }
}
.p-kengaku-sect05__bnr {
  margin-top: 130px;
}
@media (width <= 767px) {
  .p-kengaku-sect05__bnr {
    margin-top: 50px;
  }
}
.p-kengaku-sect05__bnr p {
  text-align: center;
  font-size: 1rem;
  line-height: 1.875;
  font-weight: normal;
  letter-spacing: 0.2em;
}
@media (width <= 767px) {
  .p-kengaku-sect05__bnr p {
    font-size: clamp(0.625rem, 2.6666666667vw, 0.875rem);
    letter-spacing: 0.1em;
  }
}
.p-kengaku-sect05__bnr-img {
  margin-top: 20px;
  max-width: 757px;
  margin-inline: auto;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .p-kengaku-sect05__bnr-img:hover {
    opacity: 0.7;
  }
}
@media (width <= 767px) {
  .p-kengaku-sect05__bnr-img {
    margin-top: 15px;
  }
}

.p-about {
  color: #595757;
}
.p-about-sect01 {
  background: url(./../img/dist/page/about/sect01-bg.png) no-repeat top center/cover;
  padding-bottom: 200px;
}
@media (width <= 1279px) {
  .p-about-sect01 {
    background-position: top 6.6666666667vw right 80%;
  }
}
@media (width <= 767px) {
  .p-about-sect01 {
    background: linear-gradient(to bottom, transparent 0 50%, #fdfbf1 50% 100%), url(./../img/dist/page/about/sect01-bg-sp.png) no-repeat top 100px center/cover;
    padding-bottom: 150px;
  }
}
.p-about-sect01-heading {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-bottom: 16.875rem;
}
@media (width <= 767px) {
  .p-about-sect01-heading {
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    row-gap: 50px;
    padding-bottom: 6.625rem;
  }
}
.p-about-sect01-heading__ttl {
  font-size: 1.625rem;
  line-height: 1.9;
  font-weight: bold;
  letter-spacing: 0.24em;
}
@media (width <= 767px) {
  .p-about-sect01-heading__ttl {
    font-size: min(1rem, 4.2666666667vw);
  }
}
.p-about-sect01-heading__txt {
  font-size: 1rem;
  line-height: 2;
  font-weight: normal;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}
@media (width <= 767px) {
  .p-about-sect01-heading__txt {
    margin-left: auto;
    font-size: clamp(0.75rem, 3.7333333333vw, 0.875rem);
  }
}
.p-about-sect01__body {
  margin-top: 10.6666666667vw;
}
@media (width <= 767px) {
  .p-about-sect01__body {
    margin-top: 53.3333333333vw;
  }
}
.p-about-sect01__inner {
  align-items: center !important;
  max-width: 68ch;
}
@media (width <= 767px) {
  .p-about-sect01__inner {
    align-items: center;
    max-width: 100%;
    width: 100vw;
    margin-top: unset !important;
  }
}
@media (width <= 767px) {
  .p-about-sect01__inner--sp {
    width: 26.6666666667vw;
    margin-left: auto;
    min-height: 56vw;
  }
}
.p-about-sect01__inner--sp:is(.p-about-sect01__columns:nth-of-type(even) *) {
  margin-left: unset;
  margin-right: auto;
}
.p-about-sect01__img {
  width: 45.3333333333vw;
}
@media (width <= 767px) {
  .p-about-sect01__img {
    position: absolute;
    width: 68vw;
  }
}
.p-about-sect01__num {
  margin-top: 2.6666666667vw;
  max-width: 2rem;
  margin-inline: auto;
}
@media (width <= 767px) {
  .p-about-sect01__num {
    margin-top: 5.3333333333vw;
    max-width: 1.5rem;
  }
}
.p-about-sect01__ttl {
  margin-top: 3.3333333333vw;
}
@media (width <= 767px) {
  .p-about-sect01__ttl {
    margin-top: 8vw;
    width: 100%;
  }
}
.p-about-sect01__txt {
  margin-top: 8.6666666667vw;
}
@media (width <= 767px) {
  .p-about-sect01__txt {
    margin-top: 8vw;
    font-size: clamp(0.75rem, 3.2vw, 0.875rem);
  }
}
.p-about-sect01__txt:is(.p-about-sect01__columns:nth-of-type(odd) *) {
  margin-left: auto;
}
.p-about-sect02 {
  position: relative;
  padding-top: 100px;
}
@media (width <= 767px) {
  .p-about-sect02 {
    padding-top: 80px;
  }
}
.p-about-sect02__ttl {
  width: min(14.375rem, 100%);
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
}
@media (width <= 767px) {
  .p-about-sect02__ttl {
    width: min(11.25rem, 100%);
  }
}
.p-about-sect02__heading {
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.875;
  font-weight: bold;
  letter-spacing: 0.2em;
  font-feature-settings: "palt";
}
@media (width <= 767px) {
  .p-about-sect02__heading {
    font-size: clamp(1.125rem, 4.8vw, 1.25rem);
  }
}
.p-about-sect02__txt {
  text-align: center;
  font-feature-settings: "palt";
  margin-top: 70px;
  font-size: 1rem;
  line-height: 2.3666666667;
  font-weight: normal;
  letter-spacing: 0.2em;
}
@media (width <= 767px) {
  .p-about-sect02__txt {
    margin-top: 35px;
    font-size: clamp(0.75rem, 3.2vw, 0.875rem);
  }
}
.p-about-sect02__txt p + p {
  margin-top: 2.3666666667em;
}
.p-about-sect02__bg01 {
  position: absolute;
  top: 5.0666666667vw;
  left: 4vw;
  width: 19.1333333333vw;
}
.p-about-sect02__bg02 {
  position: absolute;
  top: -6vw;
  right: 2.6666666667vw;
  width: 20vw;
}
.p-about-sect02__bg03 {
  margin-top: 50px;
  margin-inline: auto;
  width: 80vw;
}
.p-about-sect02__img {
  margin-top: 8.6666666667vw;
  position: relative;
  z-index: 1;
}
@media (width <= 767px) {
  .p-about-sect02__img {
    margin-top: 4.375rem;
    max-width: 21.875rem;
    margin-inline: auto;
  }
}
.p-about-sect03 {
  margin-top: -6vw;
  padding-top: 6vw;
  background: url(./../img/dist/page/about/sect03-bg.png) no-repeat center/cover;
  position: relative;
  color: #fff;
}
@media (width <= 767px) {
  .p-about-sect03 {
    margin-top: -3.75rem;
    padding-top: 3.75rem;
    background-image: url(./../img/dist/page/about/sect03-bg-sp.png);
  }
}
.p-about-sect03__inner {
  width: 100%;
  text-align: center;
  padding: 9.3333333333vw 0 10.6666666667vw;
}
@media (width <= 767px) {
  .p-about-sect03__inner {
    padding: 6.25rem 0 5.3125rem;
  }
}
.p-about-sect03__ttl {
  max-width: 180px;
  margin-inline: auto;
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 25px;
}
.p-about-sect03__ttl::before {
  content: "";
  display: block;
  width: 65px;
  height: 1px;
  background-color: #fff;
  bottom: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media (width <= 767px) {
  .p-about-sect03__ttl {
    max-width: 175px;
  }
}
.p-about-sect03__name {
  font-size: 1rem;
  line-height: 1.625;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: 100px;
}
@media (width <= 767px) {
  .p-about-sect03__name {
    font-size: 0.875rem;
    margin-bottom: 90px;
  }
}
.p-about-sect03__lead {
  font-feature-settings: "palt";
  font-size: 1.625rem;
  line-height: 1.7307692308;
  font-weight: 500;
  letter-spacing: 0.28em;
  margin-bottom: 80px;
}
@media (width <= 767px) {
  .p-about-sect03__lead {
    font-size: 1.5rem;
    margin-bottom: 55px;
  }
}
.p-about-sect03__txt {
  font-size: 0.875rem;
  line-height: 2.1428571429;
  font-weight: 500;
  letter-spacing: 0.2em;
}
@media (width <= 767px) {
  .p-about-sect03__txt {
    font-size: 0.75rem;
  }
}
.p-about-sect03__txt p + p {
  margin-top: 3em;
}
.p-about-sect04 {
  margin-top: 5.625rem;
}
@media (width <= 767px) {
  .p-about-sect04 {
    margin-top: 2.8125rem;
  }
}
.p-about-sect04__ttl, .p-about-sect05__ttl {
  max-width: 14.375rem;
  margin-inline: auto;
}
@media (width <= 767px) {
  .p-about-sect04__ttl, .p-about-sect05__ttl {
    max-width: 11.25rem;
  }
}
.p-about-sect04__content, .p-about-sect05__content {
  margin-top: 3.75rem;
}
@media (width <= 767px) {
  .p-about-sect04__content, .p-about-sect05__content {
    margin-top: 2.5rem;
  }
}
.p-about-sect04__accordion {
  max-width: 800px;
  margin-inline: auto;
}
@media (width <= 767px) {
  .p-about-sect04__accordion {
    font-size: clamp(0.875rem, 3.7333333333vw, 1rem);
  }
}
.p-about-sect05 {
  margin-top: 7.5rem;
}
@media (width <= 767px) {
  .p-about-sect05 {
    margin-top: 5rem;
  }
}
.p-about-sect05__list {
  max-width: 37.5rem;
  margin-inline: auto;
  font-size: 1rem;
  line-height: 1;
  font-weight: normal;
  letter-spacing: 0.2em;
}
@media (width <= 767px) {
  .p-about-sect05__list {
    line-height: 1.8;
    font-size: clamp(0.75rem, 3.2vw, 0.875rem);
  }
}
.p-about-sect05__row {
  display: flex;
  align-items: center;
}
.p-about-sect05__row + .p-about-sect05__row {
  margin-top: 3.5625em;
}
@media (width <= 767px) {
  .p-about-sect05__row + .p-about-sect05__row {
    margin-top: 1.25rem;
  }
}
.p-about-sect05__term {
  flex-basis: 28%;
  font-weight: normal;
}
@media (width <= 767px) {
  .p-about-sect05__term {
    flex-basis: 5rem;
  }
}
.p-about-sect05__desc {
  flex-grow: 1;
}
.p-about-sect06 {
  margin-top: 9.375rem;
}
@media (width <= 767px) {
  .p-about-sect06 {
    margin-top: 6.875rem;
  }
}
.p-about-sect06__ttl {
  font-size: 1.5rem;
  line-height: 1.875;
  font-weight: 500;
  letter-spacing: 0.16em;
  border-bottom: 1px solid #231815;
}
@media (width <= 767px) {
  .p-about-sect06__ttl {
    font-size: clamp(1.125rem, 4.8vw, 1.25rem);
  }
}
.p-about-sect06__txt {
  margin-top: 2rem;
  font-size: 0.8125rem;
  line-height: 2.1153846154;
  font-weight: normal;
  letter-spacing: 0.2em;
  font-feature-settings: "palt";
}
@media (width <= 767px) {
  .p-about-sect06__txt {
    margin-top: 1rem;
    font-size: clamp(0.625rem, 2.6666666667vw, 0.75rem);
  }
}
.p-about-sect06__txt span {
  display: none;
}
@media (width <= 767px) {
  .p-about-sect06__txt span {
    display: inline;
  }
}
.p-about-sect06__row {
  margin-top: 2.5rem;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  -moz-column-gap: 3.125rem;
       column-gap: 3.125rem;
}
@media (width <= 767px) {
  .p-about-sect06__row {
    margin-top: 1.875rem;
    flex-direction: column;
    row-gap: 10px;
  }
}
.p-about-sect06__img {
  height: 100%;
  aspect-ratio: 488/729;
  flex-basis: 44.3636363636%;
}
@media (width <= 767px) {
  .p-about-sect06__img {
    aspect-ratio: 333/616;
  }
}
.p-about-sect06__map {
  flex-grow: 1;
  border-radius: 4.375rem;
  overflow: hidden;
}
.p-about-sect06__map iframe {
  width: 100%;
  height: 100%;
}
@media (width <= 767px) {
  .p-about-sect06__map iframe {
    aspect-ratio: 333/268;
    height: auto;
  }
}
.p-about-sect07 {
  margin-top: 11.25rem;
}
@media (width <= 767px) {
  .p-about-sect07 {
    margin-top: 4.6875rem;
  }
}
.p-about-sect07__ttl {
  font-size: 1.5rem;
  line-height: 1.875;
  font-weight: 500;
  letter-spacing: 0.16em;
  border-bottom: 1px solid #231815;
}
@media (width <= 767px) {
  .p-about-sect07__ttl {
    font-size: clamp(1.125rem, 4.8vw, 1.25rem);
  }
}
.p-about-sect07__columns {
  margin-top: 2.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (width <= 767px) {
  .p-about-sect07__columns {
    margin-top: 1.25rem;
    flex-direction: column;
    row-gap: 1.875rem;
  }
}
.p-about-sect07__list {
  flex-grow: 1;
  font-size: 0.875rem;
  line-height: 3.2857142857;
  font-weight: normal;
  letter-spacing: 0.2em;
  font-feature-settings: "palt";
}
@media (width <= 767px) {
  .p-about-sect07__list {
    font-size: clamp(0.625rem, 2.6666666667vw, 0.75rem);
  }
}
.p-about-sect07__row {
  display: flex;
  -moz-column-gap: 7.2727272727%;
       column-gap: 7.2727272727%;
}
@media (width <= 767px) {
  .p-about-sect07__row {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
}
.p-about-sect07__term {
  flex-basis: 15ch;
  flex-shrink: 0;
  font-weight: normal;
}
.p-about-sect07__desc {
  flex-grow: 1;
}
.p-about-sect07__tableItem {
  flex-basis: 36.3636363636%;
}
@media (width <= 767px) {
  .p-about-sect07__tableItem {
    flex-basis: unset;
    width: 100%;
  }
}
.p-about-sect07__table {
  width: 100%;
  border: 1px solid #231815;
}
.p-about-sect07__tableNote {
  text-align: right;
  font-size: 0.75rem;
}
.p-about-sect07__head {
  color: #fff;
  background-color: #e1d08c;
  font-size: 0.75rem;
  line-height: 1;
  font-weight: bold;
  letter-spacing: 0.16em;
}
.p-about-sect07__body {
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 500;
  height: 3.5rem;
}
.p-about-sect07__body:not(:is(.p-about-sect07__head + *)) {
  border-top: 1px solid #231815;
}
.p-about-sect07__age {
  text-align: center;
  vertical-align: middle;
  width: 19%;
  padding: 1em 0;
}
.p-about-sect07__number {
  text-align: center;
  vertical-align: middle;
  padding: 1em 0;
  border-left: 1px solid #231815;
}
.p-about-sect07__number:is(.p-about-sect07__body *) {
  font-size: 1rem;
  padding: 1.25rem 0;
}
.p-about-sect08 {
  padding: 3.5rem 0 22.5rem;
  background-color: #f9f8f6;
}
@media (width <= 767px) {
  .p-about-sect08 {
    padding: 1.875rem 0 18.75rem;
  }
}
.p-about-sect08__inner {
  background-color: #fff;
  border: 1px solid #231815;
  border-radius: 100vmax;
  padding: 5.625rem 0 5.625rem 12.7272727273%;
  position: relative;
}
@media (width <= 1279px) {
  .p-about-sect08__inner {
    border-radius: 4rem;
  }
}
@media (width <= 767px) {
  .p-about-sect08__inner {
    padding: 4.0625rem 0 3.125rem 0;
  }
}
.p-about-sect08__inner h2 {
  color: #db4f37;
  font-size: 1.25rem;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.2em;
}
@media (width <= 767px) {
  .p-about-sect08__inner h2 {
    font-size: clamp(1rem, 4.2666666667vw, 1.125rem);
    padding: 0 1.25rem 0 2.1875rem;
  }
}
.p-about-sect08__inner h2:not(:first-child) {
  margin-top: 4.375rem;
}
@media (width <= 767px) {
  .p-about-sect08__inner h2:not(:first-child) {
    margin-top: 2.8125rem;
  }
}
.p-about-sect08__inner p {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  line-height: 2.0357142857;
  font-weight: normal;
  letter-spacing: 0.2em;
  font-feature-settings: "palt";
}
@media (width <= 767px) {
  .p-about-sect08__inner p {
    font-size: clamp(0.75rem, 3.2vw, 0.875rem);
    padding: 0 1.25rem 0 2.1875rem;
  }
}
.p-about-sect08__img {
  position: absolute;
  right: 14.5454545455%;
  bottom: 4.8666666667vw;
  width: min(12rem, 12.8vw);
}
@media (width <= 1279px) {
  .p-about-sect08__img {
    right: 2.7272727273%;
  }
}
@media (width <= 767px) {
  .p-about-sect08__img {
    position: unset;
    width: min(12rem, 51.2vw);
    margin-inline: auto;
    margin-top: 3.125rem;
  }
}
.p-about-sect08__btn {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 50%;
  max-width: 17rem;
  width: 100%;
}
@media (width <= 767px) {
  .p-about-sect08__btn {
    position: unset;
    translate: unset;
    max-width: 15rem;
    margin-top: 2.5rem;
    margin-inline: auto;
  }
}
.p-about-sect08__btn a {
  font-size: min(1.1875rem, 1.2666666667vw);
}
@media (width <= 767px) {
  .p-about-sect08__btn a {
    font-size: clamp(1rem, 4.2666666667vw, 1.125rem);
  }
}

.p-footer-visual {
  margin-top: 0;
  margin-bottom: 0.625rem;
}
@media (width <= 767px) {
  .p-footer-visual {
    margin-bottom: 1.25rem;
  }
}
.p-footer-visual__wrap {
  position: relative;
}
.p-footer-visual__illust {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -84%;
  width: min(100%, 28.125rem);
  z-index: 2;
  pointer-events: none;
}
@media (width <= 767px) {
  .p-footer-visual__illust {
    position: unset;
    translate: unset;
    width: min(100%, 20.625rem);
    margin-inline: auto;
  }
}
.p-footer-visual__illust img {
  display: block;
  width: 100%;
  height: auto;
}
.p-footer-visual__slides {
  overflow: hidden;
}
@media (width <= 767px) {
  .p-footer-visual__slides {
    margin-top: 20px;
  }
}
.p-footer-visual__slides .swiper-wrapper {
  display: flex;
  gap: 0.5rem;
}
@media (width <= 767px) {
  .p-footer-visual__slides .swiper-wrapper {
    transition-timing-function: linear;
    gap: unset;
  }
}
.p-footer-visual__slide {
  flex: 1 1 0;
  overflow: hidden;
}
@media (width <= 767px) {
  .p-footer-visual__slide {
    flex: none;
  }
}
.p-footer-visual__slide picture {
  display: block;
  width: 100%;
  height: 100%;
}
.p-footer-visual__slide img {
  aspect-ratio: 418/249;
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-front-fv {
  margin-top: 1.25rem;
}
@media (width <= 767px) {
  .p-front-fv {
    margin-top: unset;
  }
}
.p-front-fv__inner {
  max-width: calc(1360px + 10.24vw);
  padding: 0 5.12vw;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.p-front-fv__side {
  writing-mode: vertical-rl;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  position: absolute;
  top: 140px;
}
@media (width <= 767px) {
  .p-front-fv__side {
    top: 120px;
  }
}
.p-front-fv__side--left {
  right: 100%;
  translate: -20px 0;
}
@media (width <= 767px) {
  .p-front-fv__side--left {
    translate: -1.0666666667vw 0;
  }
}
.p-front-fv__side--right {
  left: 100%;
  translate: 20px 0;
}
@media (width <= 767px) {
  .p-front-fv__side--right {
    translate: 1.0666666667vw 0;
  }
}
.p-front-fv__visual {
  position: relative;
  max-width: 1360px;
  margin-inline: auto;
  z-index: 1;
}
@media (width <= 1279px) {
  .p-front-fv__visual {
    max-width: 1000px;
  }
}
@media (width <= 767px) {
  .p-front-fv__visual {
    max-width: 525px;
  }
}
.p-front-fv__text {
  position: absolute;
  top: 6.1179087875%;
  left: 50%;
  translate: -50% 0;
  width: min(30.3387334315%, 25.75rem);
  z-index: 1;
}
@media (width <= 767px) {
  .p-front-fv__text {
    top: unset;
    bottom: 6.25rem;
    width: min(65.7142857143%, 14.375rem);
  }
}
.p-front-fv__text img {
  width: 100%;
  height: auto;
  display: block;
}
.p-front-fv__illust {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 30.4347826087%;
  width: min(36.5%, 31rem);
  z-index: 1;
}
@media (width <= 767px) {
  .p-front-fv__illust {
    width: min(227px, 100%);
  }
}
.p-front-fv__illust img {
  width: 100%;
  height: auto;
  display: block;
}
.p-front-about {
  margin-top: 130px;
  position: relative;
}
@media (width <= 767px) {
  .p-front-about {
    margin-top: 85px;
  }
}
.p-front-about__ttl {
  aspect-ratio: 177/71;
  max-width: 177px;
  margin-inline: auto;
}
@media (width <= 767px) {
  .p-front-about__ttl {
    max-width: 100px;
  }
}
.p-front-about__heading {
  margin-top: 45px;
  text-align: center;
  font-size: 1.6875rem;
  line-height: 1.975;
  font-weight: bold;
  letter-spacing: 0.18em;
}
@media (width <= 767px) {
  .p-front-about__heading {
    margin-top: 20px;
    font-size: clamp(1.125rem, 4.8vw, 1.5rem);
  }
}
.p-front-about__txt {
  margin-top: 20px;
  text-align: center;
  font-size: 0.9375rem;
  line-height: 2.4;
  font-weight: normal;
  letter-spacing: 0.18em;
}
@media (width <= 767px) {
  .p-front-about__txt {
    margin-top: 40px;
    font-size: 0.75rem;
    font-size: clamp(0.75rem, 3.2vw, 0.875rem);
    letter-spacing: 0;
  }
}
.p-front-about__bg {
  position: absolute;
}
.p-front-about__bg--imgLeft {
  top: 124px;
  left: 7.7333333333vw;
  aspect-ratio: 274/352;
  width: min(274px, 18.2666666667vw);
}
.p-front-about__bg--imgRight {
  top: 159px;
  right: 6.4666666667vw;
  aspect-ratio: 272/352;
  width: min(272px, 18.1333333333vw);
}
.p-front-about__bg--imgCenter {
  position: relative;
  width: 100%;
  margin-top: 40px;
  z-index: 1;
}
.p-front-about__bg--illust01 {
  top: 350px;
  right: 94vw;
  aspect-ratio: 120/96;
  width: min(120px, 8vw);
}
@media (width <= 767px) {
  .p-front-about__bg--illust01 {
    top: -10px;
    right: calc(50% + 32vw);
    width: 120px;
  }
}
.p-front-about__bg--illust02 {
  top: 464px;
  right: 85.8666666667vw;
  aspect-ratio: 296/152;
  width: min(296px, 19.7333333333vw);
}
@media (width <= 767px) {
  .p-front-about__bg--illust02 {
    top: unset;
    bottom: 0;
    right: calc(50% + 27.2vw);
    width: 101px;
  }
}
.p-front-about__bg--illust03 {
  top: 28px;
  right: 2.4666666667vw;
  aspect-ratio: 145/109;
  width: min(145px, 9.6666666667vw);
}
@media (width <= 767px) {
  .p-front-about__bg--illust03 {
    top: -16px;
    right: unset;
    left: calc(50% + 34.6666666667vw);
    width: 116px;
  }
}
.p-front-about__bg--illust04 {
  top: 488px;
  right: 2.4666666667vw;
  aspect-ratio: 170/147;
  width: min(170px, 11.3333333333vw);
}
@media (width <= 767px) {
  .p-front-about__bg--illust04 {
    top: unset;
    bottom: 33.6vw;
    right: unset;
    left: calc(50% + 7.4666666667vw);
    width: 52px;
    z-index: 1;
  }
}
.p-front-feature {
  margin-top: 150px;
}
@media (width <= 767px) {
  .p-front-feature {
    margin-top: 70px;
  }
}
.p-front-feature__inner {
  padding: 3.75rem 0 1.875rem;
  border: 1px solid #231815;
  border-radius: 150px;
  background-color: #fff;
  text-align: center;
  position: relative;
}
@media (width <= 767px) {
  .p-front-feature__inner {
    padding: 2.5rem 0 1.875rem;
    border-radius: 60px;
    max-width: 336px;
    margin-inline: auto;
  }
}
.p-front-feature__label {
  width: 100%;
  max-width: 177px;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
}
@media (width <= 767px) {
  .p-front-feature__label {
    max-width: 112px;
  }
}
.p-front-feature__lead {
  font-size: 1.375rem;
  line-height: 1.9;
  font-weight: bold;
  margin-bottom: 2.5rem;
  letter-spacing: 0.24em;
}
@media (width <= 767px) {
  .p-front-feature__lead {
    font-size: 1rem;
    font-size: clamp(1rem, 4.2666666667vw, 1.125rem);
    margin-bottom: 3.125rem;
  }
}
.p-front-feature__list {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 3.125rem;
  padding: 0 8.1135902637%;
  margin-bottom: 4.375rem;
}
@media (width <= 767px) {
  .p-front-feature__list {
    flex-direction: column;
    align-items: center;
    gap: 1.875rem;
    margin-bottom: 2.5rem;
  }
}
.p-front-feature__item {
  text-align: center;
  display: grid;
  row-gap: 1.25rem;
  justify-items: center;
  flex-basis: 20.2839756592%;
}
.p-front-feature__illust {
  max-width: 200px;
  max-height: 134px;
}
@media (width <= 1279px) {
  .p-front-feature__illust {
    max-height: 90px;
  }
}
@media (width <= 767px) {
  .p-front-feature__illust {
    position: absolute;
    max-height: unset;
  }
}
.p-front-feature__illust img {
  min-height: 97px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (width <= 1279px) {
  .p-front-feature__illust img {
    min-height: 70px;
  }
}
@media (width <= 767px) {
  .p-front-feature__illust img {
    min-height: 57px;
  }
}
@media (width <= 767px) {
  .p-front-feature__illust01 {
    top: 140px;
    left: 7.1428571429%;
    max-width: 40px;
  }
  .p-front-feature__illust02 {
    top: 227px;
    right: -5.12vw;
    max-width: 112px;
  }
  .p-front-feature__illust03 {
    top: 287px;
    left: -5.12vw;
    max-width: 110px;
  }
  .p-front-feature__illust04 {
    bottom: 117px;
    right: 22px;
    max-width: 60px;
  }
}
.p-front-feature__text {
  max-height: 40px;
}
@media (width <= 767px) {
  .p-front-feature__text img {
    width: auto;
    height: 100%;
  }
}
.p-front-feature__illust img, .p-front-feature__text img {
  max-width: 100%;
  max-height: 100%;
}
.p-front-feature__btn {
  text-align: center;
  max-width: 265px;
  margin-inline: auto;
}
@media (width <= 767px) {
  .p-front-feature__btn {
    max-width: 240px;
  }
}
.p-front-feature__imgCols {
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media (width <= 767px) {
  .p-front-feature__imgCols {
    margin-top: 40px;
    flex-direction: column;
    row-gap: 10px;
  }
}
.p-front-feature__imgCol {
  flex-basis: calc((100% - 30px) / 2);
}
@media (width <= 767px) {
  .p-front-feature__imgCol {
    flex-basis: unset;
  }
}
@media (width <= 767px) {
  .p-front-feature__imgCol--left {
    margin-right: 18vw;
  }
}
@media (width <= 767px) {
  .p-front-feature__imgCol--right {
    margin-left: 18vw;
  }
}
.p-front-info {
  padding: 6.25rem 0;
}
@media (width <= 767px) {
  .p-front-info {
    padding: 3.75rem 0;
  }
}
.p-front-info__inner {
  text-align: center;
}
.p-front-info__label {
  max-width: 11.0625rem;
  margin-inline: auto;
}
@media (width <= 767px) {
  .p-front-info__label {
    max-width: 112px;
  }
}
.p-front-info__heading {
  margin-top: 1.5625rem;
  font-size: 1.5625rem;
  line-height: 1.6;
  font-weight: bold;
  letter-spacing: 0.2em;
}
@media (width <= 767px) {
  .p-front-info__heading {
    margin-top: 1rem;
    font-size: clamp(1.25rem, 5.3333333333vw, 1.5rem);
  }
}
.p-front-info__list {
  margin-top: 4.375rem;
  display: flex;
  justify-content: center;
  gap: 7.2727272727%;
}
@media (width <= 1279px) {
  .p-front-info__list {
    flex-wrap: wrap;
    row-gap: 80px;
  }
}
@media (width <= 767px) {
  .p-front-info__list {
    max-width: 500px;
    margin-inline: auto;
    margin-top: 30px;
    gap: 1.5rem 1rem;
  }
}
.p-front-info__item {
  flex: 1 1 calc((100% - 7.2727272727% * 3) / 4);
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.875rem;
  text-align: center;
}
@media (width <= 1279px) {
  .p-front-info__item {
    flex-basis: calc((100% - 7.2727272727%) / 2);
  }
}
@media (width <= 767px) {
  .p-front-info__item {
    row-gap: 20px;
    flex-basis: calc((100% - 1rem) / 2);
  }
}
.p-front-info__figure {
  width: 100%;
}
.p-front-info__title {
  max-height: 24px;
}
@media (width <= 767px) {
  .p-front-info__title {
    max-height: 21px;
  }
}
.p-front-info__title img {
  max-width: 100%;
  max-height: 100%;
}
.p-front-info__text {
  font-size: 0.9375rem;
  line-height: 1.8;
  font-weight: normal;
}
@media (width <= 767px) {
  .p-front-info__text {
    font-size: clamp(0.625rem, 2.6666666667vw, 0.875rem);
  }
}
.p-front-info__btn {
  width: 100%;
  margin-top: auto;
}
.p-front__bg {
  background: url(./../img/dist/page/front-page/bg.png) no-repeat top 250px center/cover;
}
@media (width <= 767px) {
  .p-front__bg {
    background-position: top 146px center;
    background-image: url(./../img/dist/page/front-page/bg-sp.png);
  }
}

.p-guide {
  margin-bottom: -300px;
}
@media (width <= 767px) {
  .p-guide {
    margin-bottom: -415px;
  }
}
.p-guide-admission {
  position: relative;
  padding-bottom: 11.25rem;
  background: url(./../img/dist/page/guide/admission-bg.png) no-repeat center 12vw/cover;
  overflow: hidden;
}
@media (width <= 767px) {
  .p-guide-admission {
    padding-bottom: 3.125rem;
    background-image: url(./../img/dist/page/guide/admission-bg-sp.png);
    background-position: center top 42.6666666667vw;
  }
}
.p-guide-admission__cloud {
  position: absolute;
  top: 7.5rem;
  z-index: 0;
}
@media (width <= 767px) {
  .p-guide-admission__cloud {
    top: 8.125rem;
  }
}
.p-guide-admission__cloud--left {
  left: 7.3333333333vw;
  width: min(22.25rem, 23.7333333333vw);
}
@media (width <= 767px) {
  .p-guide-admission__cloud--left {
    left: unset;
    right: 76.5333333333vw;
    width: 42.6666666667vw;
  }
}
.p-guide-admission__cloud--right {
  right: 6.3333333333vw;
  width: min(16.125rem, 17.2vw);
}
@media (width <= 767px) {
  .p-guide-admission__cloud--right {
    right: unset;
    left: 85.3333333333vw;
    width: 30.9333333333vw;
  }
}
.p-guide-admission__illust {
  position: absolute;
  top: calc(5.625rem + 3.3333333333vw);
  left: 50%;
  translate: -50% 0;
  z-index: 0;
  width: min(19.1875rem, 20.4666666667vw);
}
@media (width <= 767px) {
  .p-guide-admission__illust {
    top: 37.3333333333vw;
    width: 36.8vw;
  }
}
.p-guide-admission__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.p-guide-admission__title {
  max-width: 14.375rem;
  margin-inline: auto;
  margin-bottom: 3.125rem;
}
@media (width <= 767px) {
  .p-guide-admission__title {
    max-width: 9.125rem;
    margin-bottom: 1.5625rem;
  }
}
.p-guide-admission__heading {
  margin-bottom: 18.6666666667vw;
}
@media (width <= 767px) {
  .p-guide-admission__heading {
    margin-bottom: 45.3333333333vw;
  }
}
.p-guide-admission__heading p {
  font-size: 0.875rem;
  line-height: 2.2;
  font-weight: normal;
  letter-spacing: 0.2em;
}
@media (width <= 767px) {
  .p-guide-admission__heading p {
    font-size: clamp(0.625rem, 2.6666666667vw, 0.75rem);
  }
}
.p-guide-admission__note {
  font-size: 0.875rem;
  line-height: 1.85;
  font-weight: normal;
  letter-spacing: 0.2em;
  margin-bottom: 3.125rem;
}
@media (width <= 767px) {
  .p-guide-admission__note {
    font-size: clamp(0.625rem, 2.6666666667vw, 0.75rem);
    margin-bottom: 1.25rem;
  }
}
.p-guide-admission__main-img {
  margin-bottom: 5rem;
}
@media (width <= 767px) {
  .p-guide-admission__main-img {
    margin-bottom: 2.5rem;
  }
}
.p-guide-admission__section {
  text-align: center;
}
.p-guide-admission__section + .p-guide-admission__section {
  margin-top: 3.75rem;
}
@media (width <= 767px) {
  .p-guide-admission__section + .p-guide-admission__section {
    margin-top: 2.8125rem;
  }
}
.p-guide-admission__section-ttl {
  max-width: 11.25rem;
  margin: 0 auto 1.25rem;
}
@media (width <= 767px) {
  .p-guide-admission__section-ttl {
    max-width: 9.375rem;
  }
}
.p-guide-admission__section-text {
  margin-inline: auto;
  text-align: left;
  letter-spacing: 0.2em;
}
@media (width <= 767px) {
  .p-guide-admission__section-text {
    letter-spacing: 0.1em;
  }
}
.p-guide-admission__section-text--age {
  max-width: 35.625rem;
}
.p-guide-admission__section-text--capacity {
  max-width: 41.5rem;
}
@media (width <= 767px) {
  .p-guide-admission__section-text--capacity {
    max-width: unset;
  }
}
.p-guide-admission__ageItem {
  display: flex;
  font-size: 1rem;
  line-height: 1;
  font-weight: normal;
  padding: 1.25rem 0;
  border-top: 1px solid #595757;
}
@media (width <= 767px) {
  .p-guide-admission__ageItem {
    font-size: clamp(0.75rem, 3.2vw, 0.875rem);
  }
}
.p-guide-admission__ageItem:last-child {
  border-bottom: 1px solid #595757;
}
.p-guide-admission__ageItem dt {
  padding-left: 7.0175438596%;
  flex-basis: 61.4035087719%;
}
@media (width <= 767px) {
  .p-guide-admission__ageItem dt {
    padding-left: unset;
    flex-basis: 64.4776119403%;
  }
}
.p-guide-admission__capacityTable {
  border: 1px solid #231815;
  overflow: hidden;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: normal;
}
@media (width <= 767px) {
  .p-guide-admission__capacityTable {
    font-size: 0.625rem;
  }
}
.p-guide-admission__capacityHead, .p-guide-admission__capacityRow {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  text-align: center;
}
.p-guide-admission__capacityHead:is(.p-guide-admission__capacityTable--col7 *), .p-guide-admission__capacityRow:is(.p-guide-admission__capacityTable--col7 *) {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
.p-guide-admission__capacityHead span, .p-guide-admission__capacityRow span {
  border-left: 1px solid #231815;
}
.p-guide-admission__capacityHead span:first-child, .p-guide-admission__capacityRow span:first-child {
  border-left: unset;
  background-color: #b5e2f7;
  font-weight: bold;
}
.p-guide-admission__capacityHead span {
  padding: 1rem 0;
  background-color: #dcf1fc;
}
@media (width <= 767px) {
  .p-guide-admission__capacityHead span {
    padding: 0.5rem 0;
  }
}
.p-guide-admission__capacityRow {
  border-top: 1px solid #231815;
}
.p-guide-admission__capacityRow span {
  padding: 1.25rem 0;
  display: grid;
  place-content: center;
}
@media (width <= 767px) {
  .p-guide-admission__capacityRow span {
    padding: 0.625rem 0;
  }
}
.p-guide-admission__capacityRow--3cols {
  grid-column: 5/8;
}
.p-guide-admission__notes {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  line-height: 1;
  font-weight: normal;
  letter-spacing: 0.18em;
}
@media (width <= 767px) {
  .p-guide-admission__notes {
    margin-top: 1rem;
    font-size: 0.625rem;
    text-align: left;
    line-height: 1.8;
  }
}
.p-guide-admission__notes li + li {
  margin-top: 1rem;
  font-size: 0.625rem;
  font-weight: bold;
}
@media (width <= 767px) {
  .p-guide-admission__notes li + li {
    margin-top: unset;
  }
}
.p-guide-admission__section-desc {
  font-size: 0.75rem;
  line-height: 2;
  font-weight: normal;
  letter-spacing: 0.18em;
}
@media (width <= 767px) {
  .p-guide-admission__section-desc {
    font-size: 0.625rem;
  }
}
.p-guide-admission__btn {
  margin-top: 1.25rem;
  max-width: 20rem;
  margin-inline: auto;
}
@media (width <= 767px) {
  .p-guide-admission__btn {
    margin-top: 1.875rem;
    max-width: 17.5rem;
  }
}
.p-guide-flow {
  background: url(./../img/dist/page/guide/flow-bg.png) no-repeat center 27.1333333333vw/cover;
  padding-top: 256px;
  padding-bottom: 180px;
}
@media (width <= 767px) {
  .p-guide-flow {
    background-image: url(./../img/dist/page/guide/flow-bg-sp.png);
    background-position: center top 45.3333333333vw;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.p-guide-flow__heading {
  font-size: 1.875rem;
  line-height: 1.2;
  font-weight: bold;
  letter-spacing: 0.12em;
}
@media (width <= 767px) {
  .p-guide-flow__heading {
    text-align: center;
    font-size: 1.25rem;
  }
}
.p-guide-flow__img {
  margin-top: -100px;
  width: 83.0666666667vw;
  margin-left: auto;
}
@media (width <= 767px) {
  .p-guide-flow__img {
    margin-top: 70px;
    width: 93.3333333333vw;
  }
}
.p-guide-flow__content {
  margin-top: 116px;
  position: relative;
}
@media (width <= 767px) {
  .p-guide-flow__content {
    margin-top: 60px;
  }
}
.p-guide-flow__ttl {
  max-width: 245px;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  z-index: 1;
}
@media (width <= 1279px) {
  .p-guide-flow__ttl {
    max-width: 205px;
  }
}
@media (width <= 1279px) {
  .p-guide-flow__spPosition {
    position: relative;
    padding-bottom: 100px;
  }
}
.p-guide-flow__illust {
  max-width: 335px;
  position: absolute;
  top: 0;
  right: 30px;
  translate: 0 -86.7549668874%;
  z-index: 1;
  width: 100%;
}
@media (width <= 1279px) {
  .p-guide-flow__illust {
    max-width: 290px;
    top: unset;
    bottom: 0;
    right: unset;
    left: 50%;
    translate: -50% 0;
  }
}
.p-guide-flow__item {
  background-color: #fff;
  border-radius: 50px;
  border: 1px solid #231815;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 5%;
       column-gap: 5%;
  padding: 2.1875rem 2.1875rem 2.1875rem 3.75rem;
}
@media (width <= 767px) {
  .p-guide-flow__item {
    flex-wrap: wrap;
    -moz-column-gap: 15.1515151515%;
         column-gap: 15.1515151515%;
    row-gap: 15px;
    padding: 2.5rem 1.875rem;
  }
}
.p-guide-flow__item + .p-guide-flow__item {
  margin-top: 4.375rem;
}
@media (width <= 767px) {
  .p-guide-flow__item + .p-guide-flow__item {
    margin-top: 2.8125rem;
  }
}
.p-guide-flow__item:not(:last-child) {
  position: relative;
}
.p-guide-flow__item:not(:last-child)::before {
  content: "";
  display: block;
  width: 0;
  border-top: 20px solid #db4f37;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  position: absolute;
  top: calc(100% + 2.1875rem);
  left: 50%;
  translate: -50% -50%;
}
@media (width <= 767px) {
  .p-guide-flow__item:not(:last-child)::before {
    top: calc(100% + 1.40625rem);
  }
}
.p-guide-flow__num {
  max-width: 65px;
  flex-shrink: 0;
}
@media (width <= 767px) {
  .p-guide-flow__num {
    margin-left: 22px;
  }
}
.p-guide-flow__term {
  flex-shrink: 0;
  font-size: 1.5rem;
  line-height: 1.875;
  font-weight: bold;
  letter-spacing: 0.28em;
  font-feature-settings: "palt";
}
@media (width <= 767px) {
  .p-guide-flow__term {
    flex-basis: unset;
    font-size: 1rem;
  }
}
.p-guide-flow__desc {
  flex-grow: 1;
  font-size: 1rem;
  line-height: 1.875;
  font-weight: normal;
  letter-spacing: 0.2em;
  font-feature-settings: "palt";
  text-align: justify;
}
@media (width <= 767px) {
  .p-guide-flow__desc {
    font-size: clamp(0.625rem, 2.6666666667vw, 0.75rem);
    flex-basis: 100%;
  }
}
.p-guide-flow__desc span {
  font-size: 0.875rem;
  display: inline-block;
  padding: 1em;
  margin-block: 1em;
  background-color: #f9f8f6;
}
.p-guide-flow__subttl {
  margin-top: 4.6875rem;
  margin-inline: auto;
  max-width: 245px;
}
@media (width <= 767px) {
  .p-guide-flow__subttl {
    margin-top: 1.5625rem;
    max-width: 165px;
  }
}
.p-guide-flow__notes {
  margin-top: 25px;
  display: grid;
  place-content: center;
  font-size: 1rem;
  line-height: 2.2;
  font-weight: normal;
  letter-spacing: 0.2em;
}
@media (width <= 767px) {
  .p-guide-flow__notes {
    margin-top: 20px;
    text-align: center;
    font-size: clamp(0.625rem, 2.6666666667vw, 0.75rem);
  }
}
.p-guide-faq {
  background: url(./../img/dist/page/guide/faq-bg.png) no-repeat center 195px/cover;
  padding-block: 160px;
}
@media (width <= 767px) {
  .p-guide-faq {
    background-image: url(./../img/dist/page/guide/faq-bg-sp.png);
    background-position: center top 130px;
    padding-block: 100px;
  }
}
.p-guide-faq__ttl {
  font-size: 1.6875rem;
  line-height: 1.9;
  font-weight: bold;
  letter-spacing: 0.18em;
}
@media (width <= 767px) {
  .p-guide-faq__ttl {
    text-align: center;
    font-size: 1.25rem;
  }
}
.p-guide-faq__content {
  margin-top: 240px;
}
@media (width <= 767px) {
  .p-guide-faq__content {
    margin-top: 40vw;
  }
}

.p-contact {
  position: relative;
}
.p-contact::before {
  content: "";
  display: block;
  aspect-ratio: 135/190;
  width: 9vw;
  background: url(./../img/dist/page/contact/bg01.png) no-repeat center/cover;
  position: absolute;
  top: 0;
  right: 74.6666666667vw;
}
@media (width <= 1279px) {
  .p-contact::before {
    top: 30px;
    right: 85vw;
  }
}
@media (width <= 767px) {
  .p-contact::before {
    top: 60px;
    width: 54px;
    right: 82.6666666667vw;
  }
}
.p-contact::after {
  content: "";
  display: block;
  aspect-ratio: 155/230;
  width: 10.3333333333vw;
  background: url(./../img/dist/page/contact/bg02.png) no-repeat center/cover;
  position: absolute;
  bottom: 0;
  right: 20vw;
}
@media (width <= 1279px) {
  .p-contact::after {
    bottom: -130px;
  }
}
@media (width <= 767px) {
  .p-contact::after {
    width: 73px;
    left: 72vw;
    right: unset;
  }
}
.p-contact::after:is(.is-thanks *) {
  display: none;
}
@media (width <= 1279px) {
  .p-contact.is-confirm::before {
    right: 86.6666666667vw;
  }
}
@media (width <= 767px) {
  .p-contact.is-confirm::before {
    right: 80vw;
    top: -100px;
  }
}
.p-contact.is-confirm::after {
  right: 10vw;
}
@media (width <= 1279px) {
  .p-contact.is-confirm::after {
    bottom: 0;
  }
}
@media (width <= 767px) {
  .p-contact.is-confirm::after {
    bottom: -130px;
  }
}
.p-contact.is-thanks::before {
  right: 80vw;
}
@media (width <= 1279px) {
  .p-contact.is-thanks::before {
    top: -100px;
    right: 74.6666666667vw;
  }
}
@media (width <= 767px) {
  .p-contact.is-thanks::before {
    right: 80vw;
  }
}
.p-contact.is-thanks::after {
  right: 10vw;
}
@media (width <= 1279px) {
  .p-contact.is-thanks::after {
    right: 20vw;
  }
}
@media (width <= 767px) {
  .p-contact.is-thanks::after {
    left: 72vw;
    right: unset;
  }
}
.p-contact__greeting {
  text-align: center;
  margin-bottom: 5rem;
  font-size: 1rem;
  line-height: 2.1;
  font-weight: normal;
  letter-spacing: 0.2em;
}
@media (width <= 767px) {
  .p-contact__greeting {
    font-size: clamp(0.625rem, 2.8571428571vw, 0.875rem);
    margin-bottom: 3.4375rem;
  }
}
.p-contact__inner {
  max-width: 34.375rem;
  margin-inline: auto;
}
.p-contact__field + .p-contact__field {
  margin-top: 2.5rem;
}
@media (width <= 767px) {
  .p-contact__field + .p-contact__field {
    margin-top: 1.875rem;
  }
}
.p-contact__label {
  display: block;
  text-align: left;
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: bold;
  letter-spacing: 0.2em;
}
@media (width <= 767px) {
  .p-contact__label {
    font-size: clamp(0.75rem, 3.2vw, 1rem);
  }
}
.p-contact__checkboxes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: 1.875rem;
  white-space: nowrap;
}
@media (width <= 767px) {
  .p-contact__checkboxes {
    row-gap: 1rem;
  }
}
.p-contact__checkboxes label {
  display: flex;
  align-items: center;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}
@media (width <= 767px) {
  .p-contact__checkboxes label {
    -moz-column-gap: 0.625rem;
         column-gap: 0.625rem;
  }
}
.p-contact__checkboxes label > span {
  font-size: 1rem;
  line-height: 1;
  font-weight: normal;
  letter-spacing: 0.2em;
}
@media (width <= 767px) {
  .p-contact__checkboxes label > span {
    font-size: clamp(0.75rem, 3.2vw, 1rem);
  }
}
.p-contact__policy {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}
@media (width <= 767px) {
  .p-contact__policy {
    margin-top: unset;
  }
}
.p-contact__policy-link {
  font-size: 1rem;
  line-height: 1;
  font-weight: normal;
  letter-spacing: 0.2em;
}
@media (width <= 767px) {
  .p-contact__policy-link {
    font-size: clamp(0.75rem, 3.2vw, 1rem);
  }
}
.p-contact__policy-link a {
  text-decoration: underline;
}
.p-contact__submit {
  margin-top: 50px;
  max-width: 20rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media (width <= 767px) {
  .p-contact__submit {
    flex-direction: column;
    margin-top: 30px;
    max-width: 160px;
  }
}
.p-contact__input, .wpcf7-free-text:not([disabled]), .p-contact__textarea, .p-contact__checkboxes {
  margin-top: 1rem;
}
@media (width <= 767px) {
  .p-contact__input, .wpcf7-free-text:not([disabled]), .p-contact__textarea, .p-contact__checkboxes {
    margin-top: 0.625rem;
  }
}
.p-contact__input, .wpcf7-free-text:not([disabled]), .p-contact__textarea {
  width: 100%;
  padding: 1em;
  border: 1px solid #231815;
  background-color: #fff;
  font-size: 1rem;
  line-height: 1;
  font-weight: normal;
  letter-spacing: 0.2em;
}
@media (width <= 767px) {
  .p-contact__input, .wpcf7-free-text:not([disabled]), .p-contact__textarea {
    font-size: clamp(0.75rem, 3.2vw, 1rem);
  }
}
.p-contact__textarea {
  resize: vertical;
  min-height: 12.5rem;
}
@media (width <= 767px) {
  .p-contact__textarea {
    min-height: 7.5rem;
  }
}

.p-zaien {
  position: relative;
}
@media (width <= 767px) {
  .p-zaien {
    padding-top: 2.5rem;
  }
}
.p-zaien__sect + .p-zaien__sect {
  margin-top: 6.25rem;
}
.p-zaien__ttl {
  max-width: 300px;
  margin-inline: auto;
}
@media (width <= 767px) {
  .p-zaien__ttl {
    max-width: 200px;
  }
}
.p-zaien__txt {
  margin-top: 1.5625rem;
  text-align: center;
  font-size: 1rem;
  line-height: 2;
  font-weight: normal;
  letter-spacing: 0.2em;
}
@media (width <= 767px) {
  .p-zaien__txt {
    margin-top: 1rem;
    font-size: 0.625rem;
  }
}
.p-zaien__list {
  margin-top: 3.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3.125rem;
}
@media (width <= 767px) {
  .p-zaien__list {
    margin-top: 1.875rem;
    gap: 1.875rem;
  }
}
.p-zaien__bg01 {
  position: absolute;
  top: 360px;
  right: calc(50% + 22.6vw);
  max-width: 158px;
}
@media (width <= 1279px) {
  .p-zaien__bg01 {
    top: -70px;
    right: calc(50% + 18.6666666667vw);
  }
}
@media (width <= 767px) {
  .p-zaien__bg01 {
    max-width: 90px;
  }
}
.p-zaien__bg02 {
  position: absolute;
  bottom: 0;
  left: calc(50% + 22.9333333333vw);
  max-width: 70px;
}
@media (width <= 1279px) {
  .p-zaien__bg02 {
    bottom: -120px;
    left: calc(50% + 29.3333333333vw);
  }
}
@media (width <= 767px) {
  .p-zaien__bg02 {
    max-width: 48px;
  }
}

.p-policy {
  margin-bottom: -150px;
}
@media (width <= 767px) {
  .p-policy {
    margin-top: -70px;
  }
}
.p-policy__cont {
  font-size: 1.125rem;
  line-height: 2;
  font-weight: normal;
  letter-spacing: 0.04em;
}
@media (width <= 767px) {
  .p-policy__cont {
    font-size: 0.75rem;
  }
}
.p-policy__cont > div + div {
  margin-top: 4.375rem;
}
@media (width <= 767px) {
  .p-policy__cont > div + div {
    margin-top: 1.875rem;
  }
}
.p-policy__cont p:first-child {
  margin-bottom: 7.5rem;
}
@media (width <= 767px) {
  .p-policy__cont p:first-child {
    margin-bottom: 3.125rem;
  }
}
.p-policy__cont h2 {
  padding-left: 1.5rem;
  position: relative;
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: bold;
}
@media (width <= 767px) {
  .p-policy__cont h2 {
    padding-left: 1.25rem;
    font-size: 1rem;
  }
}
.p-policy__cont h2::before {
  content: "";
  display: block;
  aspect-ratio: 11/10;
  width: 11px;
  background: url(./../img/dist/page/privacy-policy/list-icon.png) no-repeat center/cover;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.p-policy__cont h2 + p {
  margin-top: 1.25rem;
}
@media (width <= 767px) {
  .p-policy__cont h2 + p {
    margin-top: 1em;
  }
}
.p-policy__cont ol, .p-policy__cont ul {
  list-style: auto;
  padding-left: 1.5em;
}

@keyframes floating {
  50%, from {
    rotate: -2deg;
  }
  25%, to {
    rotate: 2deg;
  }
}
@keyframes cloud-drift {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(calc(-1 * var(--bob))) rotate(calc(0.6 * var(--tilt))) scale(calc(1 + var(--breath)));
  }
  50% {
    transform: translateY(0) rotate(calc(-0.8 * var(--tilt))) scale(1);
  }
  75% {
    transform: translateY(calc(0.6 * var(--bob))) rotate(calc(0.4 * var(--tilt))) scale(calc(1 - var(--breath)));
  }
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
}
.u-anim-floating {
  --bob: 10px; /* 上下ゆらぎの振れ幅 */
  --tilt: 2deg; /* 首振り（回転）の最大値 */
  --breath: 0.02; /* 呼吸スケール（0.02=2%） */
  --duration: 9s; /* 1サイクルの時間 */
  --delay: 0s; /* 開始ディレイ（負値でズラす） */
  --opacity-min: 0.92; /* うっすら明滅の下限 */
  animation: cloud-drift 3s linear 0s infinite;
}

.js-sr-img {
  overflow: hidden;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-not-valid-tip {
  margin-top: 1em;
}
/*# sourceMappingURL=style.css.map */
