@charset "utf-8";

/*-------------------------------------
変数
-------------------------------------*/

:root {
  --ZenKakuGothicNew: "Zen Kaku Gothic New", sans-serif;
  --Outfit: "Outfit", sans-serif;
}
:root {
  --base-color: #2E393A; /* K/1 */
  --gray-color: #7C989B; /* K/2 */
  --brown-color: #AD905C; /* A/Y */
}



/*-------------------------------------
タグ
-------------------------------------*/

.body {
  font-family: var(--ZenKakuGothicNew);
  font-weight: 500;
  font-size: 14px;
  line-height: calc(32 / 14);
  letter-spacing: 0.06em;
  color: var(--base-color);
  background-color: #fff;
  background-image: url(../image/common/common_bg.webp);
  background-size: auto;
  background-repeat: repeat;
  background-position: center;
}
.body.no-scroll {
  overflow: hidden;
}
@media screen and (max-width: 767.98px) {
  .body {
    font-size: min(calc(100vw / 390 * 15), 15px);
    line-height: calc(32 / 15);
    background-image: url(../image/common/common_bg_sp.webp);
  }
}

.main {
  position: relative;
  z-index: 2;
}
.main::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: auto;
  aspect-ratio: 1920 / 610;
  background-image: url(../image/common/common_fv_bg.webp);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}
@media screen and (max-width: 767.98px) {
  .main::before {
    aspect-ratio: 390 / 300;
    background-image: url(../image/common/common_fv_bg_sp.webp);
  }
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

figure {
  margin: 0;
}



/*-------------------------------------
PC版とsp版で表示非表示の切り替え
-------------------------------------*/

.sp-only {
  display: none;
}

@media screen and (max-width: 767.98px) {
  .sp-only {
    display: block;
  }
  .pc-only {
    display: none;
  }
}



/*-------------------------------------
スマホはタップで通話できるが、PCではクリックさせない
-------------------------------------*/

@media screen and (min-width: 768px) {
	a[href^="tel:"] {
		pointer-events: none;
	}
}



/*-------------------------------------
ボタン
-------------------------------------*/

a {
  display: inline-block;
  transition: 0.375s;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

button {
  display: inline-block;
  transition: 0.375s;
}
@media (hover: hover) {
  button:hover {
    opacity: 0.7;
  }
}

.common-button--center {
  display: flex;
  justify-content: center;
}

.common-button__link {
  width: 260px;
  height: 90px;
  padding-inline: 30px;
  border-radius: 6px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 20px 40px rgba(96, 95, 95, 0.1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.common-button__link::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../image/common/common_button_bg_on.webp);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  opacity: 0;
  transition: all 0.5s;
}
@media (hover: hover) {
  .common-button__link:hover {
    opacity: 1;
  }
  .common-button__link:hover::before {
    opacity: 1;
  }
}

.common-button__text {
  width: 100%;
}

.common-button__text-en {
  font-family: var(--Outfit);
  line-height: 1;
  text-transform: uppercase;
}
.common-button__text-en-original {
  text-transform: none;
}

.common-button__text-ja {
  margin-top: 7px;
  font-size: 12px;
  line-height: 1;
}

.common-button__icon {
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  z-index: -1;
}
.common-button__icon-off {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 20px;
  transition: all 0.5s;
}
.common-button__icon-on {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  opacity: 0;
  transition: all 0.5s;
}
@media (hover: hover) {
  .common-button__link:hover .common-button__icon-off {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
  .common-button__link:hover .common-button__icon-on {
    width: 80px;
    height: 80px;
    opacity: 1;
  }
}

@media screen and (max-width: 767.98px) {
  .common-button__link {
    width: min(calc(100vw / 390 * 300), 300px);
    height: 100px;
  }
  .common-button__text-ja {
    font-size: min(calc(100vw / 390 * 15), 15px);
  }
  .common-button__icon {
    right: 10px;
  }
  .common-button__icon-off {
    display: none;
  }
  .common-button__icon-on {
    width: 80px;
    height: 80px;
    opacity: 1;
  }
}

.common-button02 {
  width: min(calc(100vw / 390 * 160), 160px);
  height: 47px;
  border-radius: 6px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: var(--Outfit);
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 20px 40px rgba(96, 95, 95, 0.1);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.common-button02::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #F7F6F1;
  z-index: -1;
  opacity: 0;
  transition: all 0.5s;
}
.common-button02::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  width: 10px;
  height: 70px;
  border-radius: 50%;
  background-color: #fff;
  z-index: -1;
  opacity: 0;
  transition: all 0.5s;
}
@media (hover: hover) {
  .common-button02:hover {
    opacity: 1;
  }
  .common-button02:hover::before {
    opacity: 1;
  }
  .common-button02:hover::after {
    opacity: 1;
    width: 80px;
    height: 80px;
  }
}



/*-------------------------------------
インナー
-------------------------------------*/

.common-inner {
  max-width: 1452px;
  margin-inline: auto;
  padding-inline: 26px;
}

@media screen and (max-width: 767.98px) {
  .common-inner {
    padding-inline: min(calc(100vw / 390 * 26), 26px);
  }
}



/*-------------------------------------
タイトル
-------------------------------------*/

.common-title__en {
  font-family: var(--Outfit);
  font-size: 10px;
  letter-spacing: 0.12em;
  line-height: 1;
  color: var(--brown-color);
  text-transform: uppercase;
}

.common-title__ja {
  margin-top: 16px;
  font-weight: 700;
  font-size: min(calc(100vw / 390 * 22), 22px);
  line-height: calc(36 / 22);
  letter-spacing: 0.06em;
}

.common-section__heading {
  border-top: 1px solid var(--base-color);
  padding-top: 12px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 15px;
}

.common-section__heading-en {
  font-family: var(--Outfit);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.common-section__heading-ja {
  line-height: 1;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 767.98px) {
  .common-section__heading {
    margin-left: max(calc(-100vw / 390 * 12), -12px);
    width: calc(100% + min(calc(100vw / 390 * 24), 24px));
  }
  .common-section__heading-en,
  .common-section__heading-ja {
    font-size: min(calc(100vw / 390 * 14), 14px);
  }
}



/*-------------------------------------
SNS
-------------------------------------*/

.common-sns-list {
  display: flex;
  align-items: center;
}

.common-sns-item {
  width: 30px;
  height: 30px;
}

.common-sns-link {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #657D7F;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (hover: hover) {
  .common-sns-link:hover {
    opacity: 1;
    background-color: var(--gray-color);
  }
}

.common-sns-link img {
  width: 11px;
}



/*-------------------------------------
FV SCROLL→POCHAN
-------------------------------------*/

.common-scroll {
  width: 40px;
  height: 115px;
  position: relative;
}

.common-scroll img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.common-scroll img:nth-child(1) {
  animation: scroll-fade1 3s infinite;
}
.common-scroll img:nth-child(2) {
  animation: scroll-fade2 3s infinite;
}
@keyframes scroll-fade1 {
  0%   { opacity: 1; }
  35%  { opacity: 1; }
  50%  { opacity: 0; }
  85%  { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes scroll-fade2 {
  0%   { opacity: 0; }
  35%  { opacity: 0; }
  50%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { opacity: 0; }
}



/*-------------------------------------
フェードイン
-------------------------------------*/

.js-fadeIn {
  opacity: 0;
  transition: 1s;
  transform: translate(0, 50px);
}

.js-fadeIn.is-active {
  opacity: 1;
  transform: translate(0, 0);
}



/*-------------------------------------
ヘッダー
-------------------------------------*/

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 999;
}

.header__inner {
  width: 100%;
  height: 100%;
  padding-inline: min(calc(100vw / 1440 * 60), 60px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  display: flex;
  align-items: center;
  column-gap: 20px;
  position: relative;
  z-index: 9999;
}

.header__logo-link {
  width: 137px;
}

.header__logo-textZone {
  padding-top: 5px;
  display: flex;
  align-items: flex-end;
  column-gap: 12px;
}

.header__logo-text01 {
  font-family: var(--Outfit);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  color: #A2C0C3;
  text-transform: uppercase;
}

.header__logo-text02 {
  font-family: var(--Outfit);
  font-weight: 300;
  font-size: 10px;
  line-height: 1.4;
  color: #A2C0C3;
}

.header__menu {
  height: 100%;
  display: flex;
}

.header__nav-list {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 8px;
}

.header__nav-dots {
  margin-left: min(calc(100vw / 1000 * 21), 21px);
  width: min(calc(100vw / 1000 * 30), 30px);
  display: flex;
  align-items: center;
}

.header__nav-link {
  display: inline-block;
  padding: 4px 10px;
  font-family: var(--Outfit);
  font-weight: 400;
  font-size: min(calc(100vw / 1000 * 12), 12px);
  line-height: 1;
  text-transform: uppercase;
  border-radius: 2px;
}
.header__nav-link.is-current {
  background-color: var(--base-color);
  color: #fff;
}
@media (hover: hover) {
  .header__nav-link:hover {
    background-color: var(--base-color);
    color: #fff;
    opacity: 1;
  }
}


/* PC版メニューは三点アイコンのホバーで表示 */
@media (min-width: 768px) {
  .header__nav-list {
    padding-left: min(5vw, 50px);
    position: relative;
    overflow: hidden;
  }
  .header__nav-item .header__nav-link {
    opacity: 0;
    transition: all 0.5s;
  }
  @media (hover: hover) {
    .header__nav-list:hover .header__nav-link {
      opacity: 1;
    }
  }
}


@media screen and (max-width: 1279.98px) {
  .header__logo-textZone {
    flex-direction: column;
    align-items: flex-start;
  }
}


@media screen and (max-width: 767.98px) {

  .header {
    height: 86px;
  }

  .header__inner {
    padding-left: 14px;
    padding-right: 0;
  }

  .header__logo {
    flex-direction: column;
    align-items: flex-start;
  }

  .header__logo-textZone {
    padding-top: 10px;
    flex-direction: row;
    column-gap: 10px;
  }

  .header__logo-text01 {
    color: var(--base-color);
  }

  .header__logo-text02 {
    line-height: 1.2;
    color: var(--base-color);
  }

  .header__menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 122px;
    padding-bottom: 50px;
    border-radius: 0 0 40px 40px;
    background-color: #fff;
    box-shadow: 0 20px 40px rgba(96, 95, 95, 0.1);
    transform: translateY(-110%);
    visibility: hidden;
    transition: 0.375s;
    z-index: 999;
  }
  .header__menu.is-active {
    transform: translateY(0);
    visibility: visible;
  }

  .header__nav {
    width: 100%;
    overflow: auto;
  }

  .header__nav-list {
    width: 100%;
    padding: 0 20px;
    flex-direction: column;
  }

  .header__nav-item {
    width: 140px;
    margin-bottom: 20px;
  }

  .header__nav-link {
    width: 100%;
    height: 60px;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .header__close {
    margin-top: 30px;
    display: flex;
    justify-content: center;
  }

  .header__close-button {
    width: 30px;
    height: 14px;
    position: relative;
  }

  .header__close-line {
    display: inline-block;
    position: absolute;
    content: "";
    width: 33px;
    height: 1px;
    background-color: var(--base-color);
  }
  .header__close-line:nth-child(1) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-25deg);
  }
  .header__close-line:nth-child(2) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(25deg);
  }

  .header__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(46, 57, 58, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 100%;
    height: 100vh;
    z-index: 999;
  }

  .hamburger {
    position: fixed;
    top: 28px;
    right: 20px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 9999;
  }
  @media (hover: hover) {
    .hamburger:hover {
      opacity: 0.7;
    }
  }

  .hamburger__line-zone {
    display: inline-block;
    width: 100%;
    height: 100%;
    position: relative;
  }

  .hamburger__line {
    display: inline-block;
    position: absolute;
    content: "";
    width: 33px;
    height: 1px;
    background-color: var(--base-color);
    opacity: 0;
    transition: 0.375s;
  }
  .hamburger__line:nth-child(1) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-25deg);
  }
  .hamburger__line:nth-child(2) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(25deg);
  }
  .hamburger.is-active .hamburger__line:nth-child(1),
  .hamburger.is-active .hamburger__line:nth-child(2) {
    opacity: 1;
  }

  .hamburger__dots {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.375s;
  }
  .hamburger.is-active .hamburger__dots {
    opacity: 0;
  }

}



/*-------------------------------------
フッター
-------------------------------------*/

.footer {
  background-color: var(--base-color);
  padding-top: 180px;
  padding-inline: 60px;
  padding-bottom: 40px;
  position: relative;
  z-index: 3;
}

.footer__pageTop {
  position: absolute;
  top: 180px;
  right: 60px;
  width: 48px;
  z-index: 3;
}

.footer__pageTop-button {
  width: 100%;
}

.footer__container {
  display: flex;
  column-gap: 65px;
  position: relative;
  z-index: 2;
}

.footer__profile-image {
  width: 140px;
}

.footer__profile-textZone {
  margin-top: 28px;
}

.footer__profile-text01 {
  font-family: var(--Outfit);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  color: var(--gray-color);
  text-transform: uppercase;
}

.footer__profile-text02 {
  margin-top: 10px;
  font-family: var(--Outfit);
  font-weight: 300;
  font-size: 12px;
  line-height: calc(16 / 12);
  color: var(--gray-color);
}

.footer__menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 40px;
}

.footer__menu-link {
  font-family: var(--Outfit);
  font-weight: 400;
  font-size: 12px;
  color: var(--gray-color);
  text-transform: uppercase;
}

.footer__menu-sns {
  margin-top: 28px;
  column-gap: 16px;
}

.footer__copy {
  display: block;
  margin-top: 110px;
  font-family: var(--Outfit);
  font-weight: 300;
  font-size: 10px;
  color: var(--gray-color);
}


@media screen and (max-width: 999.98px) {
  .footer {
    padding-top: 78px;
  }
  .footer__container {
    flex-direction: column;
  }
  .footer__menu {
    margin-top: 42px;
  }
}


@media screen and (max-width: 767.98px) {

  .footer {
    padding-inline: min(calc(100vw / 390 * 26), 26px);
  }

  .footer__pageTop {
    top: 80px;
    right: min(calc(100vw / 390 * 26), 26px);
  }

  .footer__profile-textZone {
    margin-top: 24px;
  }

  .footer__profile-text02 {
    margin-top: 14px;
  }

  .footer__menu {
    margin-top: 20px;
  }

  .footer__menu-list {
    column-gap: min(calc(100vw / 390 * 30), 30px);
  }

  .footer__copy {
    margin-top: 100px;
  }

}



/*-------------------------------------
CTA
-------------------------------------*/

.cta {
  margin-top: 200px;
  position: relative;
  z-index: 3;
}
.cta::before {
  display: block;
  content: "";
  width: 100%;
  height: auto;
  aspect-ratio: 3840 / 160;
  background-image: url(../image/cta/cta_before.webp);
  background-repeat: no-repeat;
  background-size: cover;
}

.cta__wrapper {
  background-image: url(../image/cta/cta_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

.cta__pochan {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  z-index: 1;
}

.cta__pochan img {
  display: block;
  object-fit: cover;
}

.cta__container {
  padding-left: 7px;
  display: flex;
}

.cta__title {
  padding-top: 178px;
  min-width: 165px;
}

.cta__body {
  flex: 1;
  margin-left: min(calc(100vw / 1440 * 125), 125px);
  padding-top: 170px;
  padding-bottom: 182px;
}

.cta__text02 {
  margin-top: 29px;
  font-size: 12px;
  line-height: 1;
  padding-left: 17px;
  position: relative;
}
.cta__text02::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  width: 9px;
  height: 12px;
  background-image: url(../image/common/icon_lock.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.cta__bottom {
  margin-top: 60px;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 28px 40px;
}

.cta__button {
  position: relative;
  z-index: 1;
}

.cta__sns {
  margin-bottom: -3px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta__sns-list {
  column-gap: 10px;
}

.cta__sns-text {
  margin-left: 16px;
  font-size: 12px;
  line-height: calc(18 / 12);
}

.cta__text01 {
  width: max-content;
}

.cta__image {
  margin-top: auto;
  width: min(calc(100vw / 1440 * 300), 300px);
}


@media screen and (max-width: 767.98px) {

  .cta {
    margin-top: 40px;
  }
  .cta::before {
    aspect-ratio: 780 / 160;
    background-image: url(../image/cta/cta_before_sp.webp);
  }

  .cta__wrapper {
    padding-top: 68px;
    background-image: url(../image/cta/cta_bg_sp.webp);
  }

  .cta__container {
    padding-left: 0;
    flex-direction: column;
  }

  .cta__title {
    padding-top: 8px;
  }

  .cta__body {
    margin-top: 30px;
    margin-left: 0;
    padding-top: 0;
    padding-bottom: 50px;
  }

  .cta__text01 {
    width: 100%;
  }

  .cta__text02 {
    margin-top: 50px;
  }

  .cta__bottom {
    margin-top: 40px;
    flex-direction: column;
    align-items: center;
  }

  .cta__button {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .cta__sns {
    width: min(calc(100vw / 390 * 300), 300px);
    padding-inline: min(calc(100vw / 390 * 24), 24px);
  }

  .cta__image {
    margin-bottom: -18px;
    margin-inline: auto;
    width: 240px;
  }

}



/*-------------------------------------
common-fv
-------------------------------------*/

.common-fv {
  padding-top: 240px;
  padding-bottom: 162px;
}

.common-fv__container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.common-fv__body {
  display: flex;
  align-items: flex-end;
}

.common-fv__title-en {
  display: block;
}
.common-fv__title-en img {
  height: 45px;
  width: auto;
}

.common-fv__title-ja {
  margin-top: 28px;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.06em;
}

.common-fv__text {
  margin-left: min(calc(100vw / 1440 * 100), 100px);
  padding-bottom: 7px;
}

.common-fv__scroll {
  margin-bottom: 10px;
}


@media screen and (max-width: 767.98px) {

  .common-fv {
    padding-top: 132px;
    padding-bottom: 62px;
  }

  .common-fv__body {
    flex-direction: column;
    align-items: flex-start;
  }

  .common-fv__title-en img {
    height: min(calc(100vw / 375 * 42), 42px);
  }

  .common-fv__title-ja {
    margin-top: 14px;
    font-size: 20px;
  }

  .common-fv__text {
    margin-top: 25px;
    margin-left: 0;
  }

  .common-fv__scroll {
    margin-bottom: 18px;
  }

}



/*-------------------------------------
パスワード入力用モーダル
-------------------------------------*/

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(46, 57, 58, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.modal-content {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
}

.modal-textZone {
  width: 500px;
  height: 300px;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 0 40px rgba(96, 95, 95, 0.1);
  background-image: url(../image/common/common_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-input-wrap {
  margin-top: 24px;
  width: 200px;
  position: relative;
}

.modal-input {
  width: 100%;
  padding: 5px 20px 5px 10px;
  border: 1px solid var(--base-color);
  background-color: #fff;
  font-size: 16px;
}

.modal-toggle-password {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  line-height: 1;
  display: flex;
  align-items: center;
}
.modal-input[type="text"] + .modal-toggle-password::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "/";
}

.modal-check {
  width: 100%;
  padding-top: 38px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.modal-error {
  display: none;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  color: var(--brown-color);
}

.modal-closeButton {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  width: 32px;
  height: 32px;
  background-color: #999;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.375s;
}
.modal-closeButton:hover {
  opacity: 0.6;
}

.modal-closeButton__line {
  display: block;
  content: "";
  width: 16px;
  height: 2px;
  background-color: #fff;
}
.modal-closeButton__line:nth-child(1) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal-closeButton__line:nth-child(2) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}


@media screen and (max-width: 767.98px) {
  .modal-textZone {
    width: 85vw;
    height: 240px;
    padding: 32px 20px;
  }
}



/*-------------------------------------
波紋エフェクト
-------------------------------------*/

.area {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cta .area {
  position: absolute;
}
.footer .area {
  position: absolute;
}
.top-fv__town .area {
  position: absolute;
}
.top-about__body .area {
  position: absolute;
}
.js-about-area {
  z-index: 1;
}
.js-about-area.is-hidden {
  z-index: 0;
}
.js-single-area {
  z-index: 1;
}
.js-single-area.is-hidden {
  z-index: 0;
}