@charset "utf-8";
/* =================================================
Foundation
================================================= */
:root {
  --primary-font-family: "Zen Kaku Gothic New", YuGothic, "游ゴシック体", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Zen Kaku Gothic New","Helvetica Neue", HelveticaNeue,  Verdana, "メイリオ", Meiryo, sans-serif;
  --font-en-family: "Knewave", system-ui;
  --input-font-family: "Zen Kaku Gothic New", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Zen Kaku Gothic New","Helvetica Neue", HelveticaNeue,  Verdana, "メイリオ", Meiryo, sans-serif;
  --c-body: #424242;
  --c-primary: #1B2218;
  --c-secondary: #344637;
  --c-open: #36FF7C;
  --c-close: #5c5050;
  --c-maintenance: #ff0000;
  --c-blue: #2494F2;
  --c-purple: #926ED6;
  --c-orange: #F26924;
  --c-yellow: #C7CF20;
  --c-border: #dbd8d8;
  --c-border02: #d9d9d9;
  --c-border03: #4d5358;
  --sec_margin-inline: 20px;
  --layout_margin-inline: clamp(20px, 6.67vw - 13.33px, 150px);
  --layout_margin-inline02: clamp(20px, 2.5vw + 7.5px, 50px);
  --layout_margin-block: clamp(20px, 6.67vw - 13.33px, 150px);
  --layout_margin-block02: clamp(20px, 2.5vw + 7.5px, 50px);
  --cont_margin-block: clamp(70px, 6.67vw + 36.67px, 200px);
  --cont_margin-block02: clamp(50px, 8.33vw + 8.33px, 150px);
  --cont_margin-block03: clamp(50px, 4.17vw + 29.17px, 100px);
  --cont_margin-block04: clamp(30px, 3.33vw + 13.33px, 70px);
  --cont_margin-block05: clamp(30px, 1.67vw + 21.67px, 50px);
}

/* Base
------------------------------------------------- */
* {
  font-weight: 400;
  font-style: normal;
  font-family: var(--primary-font-family);
  margin: 0;
  padding: 0;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--c-body);
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}
html {
  font-size: 62.5%;
}
body {
  font-size: 1.6rem;
  word-wrap: break-word;
  font-display: swap;
  overflow-wrap: break-word;
  overflow-x: hidden;
  position: relative;
  background:url("../images/common/bg.jpg") repeat center center;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}
img {
  border: 0;
  vertical-align: bottom;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
strong {
  font-weight: 700;
}

/* =================================================
Animation
================================================= */
/* -----------------------------------------------------------
  1. Keyframes
----------------------------------------------------------- */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes translateUp {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes blurIn {
  from { opacity: 0; filter: blur(6px); }
  to   { opacity: 1; filter: blur(0); }
}

/* -----------------------------------------------------------
  2. Base States (初期状態)
----------------------------------------------------------- */
.-fadein, .-translate, .-blur,
[class^="fv-"], [class^="js-effect__"] {
  opacity: 0;
  will-change: opacity, filter, transform;
}

/* -----------------------------------------------------------
  3. Animation Classes
----------------------------------------------------------- */
.js-effect__fade, .fv-fadein    { --anim-name: fadeIn; }
.js-effect__translate, .fv-translate { --anim-name: translateUp; }
.js-effect__blur, .fv-blur      { --anim-name: blurIn; }

/* 実行クラスの共通設定 */
.fv-fadein, .fv-translate, .fv-blur,
.js-effect__fade, .js-effect__translate, .js-effect__blur {
  animation: var(--anim-name) 1.0s ease-in-out var(--delay, 0s) forwards;
}

/* -----------------------------------------------------------
  4. Effect Group (Staggered Delay)
----------------------------------------------------------- */
.effect-group > div:nth-of-type(2), .effect-group > div:nth-of-type(2) [class^="js-effect__"] { --delay: 0.4s; }
.effect-group > div:nth-of-type(3), .effect-group > div:nth-of-type(3) [class^="js-effect__"] { --delay: 0.8s; }
.effect-group > div:nth-of-type(4), .effect-group > div:nth-of-type(4) [class^="js-effect__"] { --delay: 1.2s; }
.effect-group > div:nth-of-type(5), .effect-group > div:nth-of-type(5) [class^="js-effect__"] { --delay: 1.6s; }
.effect-group > div:nth-of-type(6), .effect-group > div:nth-of-type(6) [class^="js-effect__"] { --delay: 2.0s; }


/* =================================================
Layout
================================================= */
#l-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Header
------------------------------------------------- */
.l-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  padding-block: 20px;
  padding-inline: var(--layout_margin-inline);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 0%);
  opacity: 0;
  animation: blurIn 1.0s ease-in-out 0.5s forwards;
  transition: all .3s ease-in-out;
  z-index: 9999;
}
.l-header__logo {
  width: 172px;
  height: auto;
  transition: all .3s ease-in-out;
}
.l-header__logo img {
  aspect-ratio: 343 / 128;
  transition: all .3s ease-in-out;
}
.l-header-logo__w {
  display: block;
}
.l-header-logo__b {
  display: none;
}
.is-black .l-header-logo__w,
.is-sub .l-header-logo__w {
  display: none;
}
.is-black .l-header-logo__b,
.is-sub .l-header-logo__b {
  display: block;
}
@media screen and (max-width: 1400px) {
  .l-header__logo {
    width: 150px;
  }
}
@media screen and (max-width: 1200px) {
  .l-header__logo {
    width: 130px;
  }
}
@media screen and (max-width: 960px) {
  .l-header__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ---------- Header Nav ----------*/
.l-header-nav,
.l-header-global {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transition: transform .3s ease-in-out;
}
.l-header-global__li {
  margin-right: 40px;
  position: relative;
}
.l-header-global__li a {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.0;
  transition: color .3s, opacity .3s;
}
.l-header-global__li a::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -15px;
  width: 100%;
  height: 2px;
  transition: background-color .3s; 
}
/* -- State: is-black & is-sub -- */
.is-black .l-header-global__li a,
.is-sub .l-header-global__li a {
  color: var(--c-body);
}
/* -- Hover Effects -- */
@media (hover: hover) and (pointer: fine) {
  .l-header-global__li a:hover::before {
    background: #fff;
  }
  .is-black .l-header-global__li a:hover::before,
  .is-sub .l-header-global__li a:hover::before {
    background: var(--c-body);
  }
}
@media screen and (max-width: 1400px) {
  .l-header-global__li {
    margin-right: 20px;
  }
  .l-header-global__li a {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1200px) {
  .l-header-global__li {
    margin-right: 10px;
  }
  .l-header-global__li a {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 960px) {
  .l-header-global {
    display: none;
  }
}

.l-header-menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 15px;
  transition: 0.3s ease-in-out;
}

/* 営業中ステータス */
.l-header-menu__status span {
  width: fit-content;
  height: 32px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 20px 0 35px;
  border-radius: 16px;
  font-size: 1.4rem;
  font-weight: 700;
  position: relative;
}
.l-header-menu__status span:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: #fff;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.l-header-menu__open {
  background: #36FF7C;
}
/* CTAボタン (予約する) */
.l-header-menu__cta a {
  width: 120px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 22px;
  background: #1B2218;
  color: #36FF7C;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.0;
  padding-bottom: 2px;
  transition: 0.3s ease-in-out;
}
.l-header-menu__cta a:hover {
  background: #36FF7C;
  color: #1B2218;
}
/* 言語切り替え */
.l-header-menu__lang {
  color: #fff;  
}
.is-black .l-header-menu__lang {
  color: #344637;  
}
.l-header-menu__lang a {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.0;
}
.l-header-menu__lang a.-current {
  text-decoration: underline;
}
.is-black .l-header-menu__lang a {
  color: #344637;  
}

/* ドロワー（ハンバーガー）ボタン */
.l-header-menu__dl {
  z-index: 99999;
  display: none; /* PCでは非表示 */
  justify-content: center;
  align-items: center;
  width: 110px;
  height: 50px;
  border: 1px solid var(--c-border02);
  border-radius: 5px;
  transition: 0.3s ease-in-out;
}
.is-black .l-header-menu__dl,
.is-sub .l-header-menu__dl {
  border: 1px solid #344637;
}

@media (hover: hover) and (pointer: fine) {
  .l-header-menu__dl:hover {
    background: #fff;
    border: 1px solid #fff;
  }
  .is-black .l-header-menu__dl:hover,
  .is-sub .l-header-menu__dl:hover {
    border-color: #fff;
  }
}
/* --- 1400px以下 --- */
@media screen and (max-width: 1400px) {
  .l-header-menu {
    column-gap: 10px;
  }
}
/* --- 1200px以下 --- */
@media screen and (max-width: 1200px) {
  .l-header-menu__status span {
    padding: 0 20px 2px 30px;
    font-size: 1.3rem;
  }
  .l-header-menu__cta a {
    width: 90px;
    font-size: 1.4rem;
  }
  .l-header-menu__lang a {
    font-size: 1.2rem;
  }
}
/* --- 960px以下 (タブレット) --- */
@media screen and (max-width: 960px) {
  .l-header-nav {
    width: 100%;    
  }
  .l-header-menu {
    justify-content: space-between;
    width: 100%;
  }
  .l-header-menu__open {
    display: none; /* PCの緑の背景を消す（要件に沿って） */
  }
  .l-header-menu__cta {
    display: none;
  }
  .l-header-menu__lang {
    display: none;
  }  
  /* タブレット用のハンバーガーボタン表示 */
  .l-header-menu__dl {
    display: flex;
    width: 20px;
    height: 14px;
    border: none;
  }
  .is-black .l-header-menu__dl,
  .is-sub .l-header-menu__dl {
    border: none;
  }
}
/* --- 767px以下 (スマホ) --- */
@media screen and (max-width: 767px) {
  .l-header-menu__status span {
    padding: 0 10px 2px 25px;
    font-size: 1.2rem;
  }
  .l-header-menu__status span:before {
    left: 10px;
  }
}


/* Footer
------------------------------------------------- */
.l-footer {
  position: relative;
  background: url("../images/common/f_bg.jpg") repeat center center #0b151d;
  background-size: cover;
  padding-block: var(--cont_margin-block05) var(--cont_margin-block02);
}

/* フッター上部の波/飾り画像 */
.l-footer:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 7.8125vw;
  aspect-ratio: 1920 / 150;
  background: url("../images/common/f_bg_top.png") no-repeat center center;
  background-size: cover;
  top: -7.8125vw;
  left: 0;
  z-index: 8;
}

.l-footer * {
  color: #8D918C;
  font-weight: 700;
}

/* --- Footer Info --- */
.l-footer-info {
  text-align: center;
  margin-bottom: var(--cont_margin-block03);
}
.l-footer-info__logo {
  width: 268px;
  margin: 0 auto 40px;
  aspect-ratio: 536 / 200;
  opacity: 0.5;
  transition: 0.3s ease-in-out;
}
.l-footer-info__logo img {
  width: 100%;
  height: auto;
}
.l-footer-info__add {
  margin: 0 auto 40px;
  font-size: 1.4rem;
}
.l-footer-info-sns {
	display: flex;
	justify-content: center;
  align-items: center;
  gap: 20px;
}
.l-footer-info-sns__btn {
  width: 24px;
  aspect-ratio: 1 / 1;
  margin: 0 0 30px;
  opacity: 0.5;
  transition: 0.3s ease-in-out;
}

/* --- Footer Global Nav --- */
.l-footer-global {
  margin-bottom: 70px;
}
.l-footer-global__nav {
  display: flex;
  justify-content: space-between;
}
.l-footer-global__list {
  width: 25%;
}
.l-footer-global__item {
  margin-bottom: 10px;
}
.l-footer-global__item a {
  font-size: 1.4rem;
  position: relative;
  transition: 0.3s ease-in-out;
}

/* --- Copy --- */
.l-footer__copy {
  text-align: center;
  font-size: 1.2rem;
}
/* Hover Effects */
@media (hover: hover) and (pointer: fine) {
  .l-footer-info__logo:hover,
  .l-footer-info__insta:hover {
    opacity: 1;
  }
  .l-footer-global__item a:hover {
    color: #fff;
  }
}
/* --- 1200px以下 --- */
@media screen and (max-width: 1200px) {
  .l-footer-info__logo {
    width: 200px;
  }
}
/* --- 767px以下 --- */
@media screen and (max-width: 767px) {
  .l-footer {
    padding-block: var(--cont_margin-block02);
  }
  .l-footer__inner {
    padding: 0 20px;
  }
  
  .l-footer-info__logo {
    width: 185px;
  }
  .l-footer-info__add {
    margin-bottom: 30px;
    font-size: 1.2rem;
  }
  .l-footer-info__insta {
    margin-bottom: 20px;
  }
  
  .l-footer-global {
    margin-bottom: 50px;
  }
  .l-footer-global__nav {
    flex-direction: column; /* 横並びから縦並びに */
  }
  .l-footer-global__list {
    width: 100%;
  }
  .l-footer-global__list:last-child {
    margin-top: 20px;
  }
  .l-footer-global__item {
    margin-bottom: 5px;
  }
  .l-footer-global__item a {
    font-size: 1.3rem;
  }
}

/* =================================================
   DL NAV (Drawer Navigation)
================================================= */
.l-dl-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background: url("../images/common/main_img.jpg") no-repeat center center;
  background-size: cover;
  overflow-y: auto;
}
.l-dl-nav-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-block: 20px;
  padding-inline: var(--layout_margin-inline);
  transition: all .3s ease-in-out;
}
.l-dl-nav-header__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: auto;
  transition: all .3s ease-in-out;
}
.l-dl-nav-header__logo img {
  aspect-ratio: 343 / 128;
  transition: all .3s ease-in-out;
}
.l-dl-close,
.l-dl-nav-menu__close {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 14px;
  border: none;
  border-radius: 5px;
  z-index: 99999;
  transition: 0.3s ease-in-out;
}
.l-dl-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
  text-decoration: none;
  text-transform: uppercase;
  box-sizing: border-box;
  transition: all .4s;
}
.l-dl-trigger span {
  position: absolute;
  left: 0;
  width: 20px;
  height: 1px;
  background: #fff;
  box-sizing: border-box;
  transition: all .4s;
}
.l-dl-trigger span:nth-of-type(1) {
  top: 0;
  width: 12px;
}
.l-dl-trigger span:nth-of-type(2) {
  top: 6px;
}
.l-dl-trigger span:nth-of-type(3) {
  top: 12px;
  left: 8px;
  width: 12px;
}
.l-dl-trigger span.show {
  display: block;
}
.l-dl-trigger span.hide {
  display: none;
}
.is-black .l-dl-trigger::before,
.is-sub .l-dl-trigger::before {
  color: var(--c-primary);
}
.is-black .l-dl-trigger span,
.is-sub .l-dl-trigger span {
  background: #344637;
}
.l-dl-trigger.active span {
  top: 50%;
  left: 0;
  width: 20px;
  background: #fff;
}
.l-dl-trigger.active span:nth-of-type(1) {
  transform: rotate(-45deg);
}
.l-dl-trigger.active span:nth-of-type(2) {
  transform: rotate(45deg);
}
.l-dl-trigger.active span:nth-of-type(3) {
  display: none;
}
.l-dl-nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  column-gap: 15px;
  transition: 0.3s ease-in-out;
}
.l-dl-nav-main {
  padding: 90px 40px 40px;
}
.l-dl-nav-list__ul {
  margin-bottom: 30px;
}
.l-dl-nav-list__item {
  margin-bottom: 5px;
}
.l-dl-nav-list__item a {
  position: relative;
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 20px;
  border-radius: 5px;
  background: #fff;
  font-size: 1.4rem;
}
.l-dl-nav-list__item a::before {
  position: absolute;
  content: "";
  right: 15px;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  background: url("../images/common/icon_arr_wh.png") no-repeat center center #344637;
  background-size: 10px auto;
}
.l-dl-nav-list__outlink .l-dl-nav-list__item a::before {
  background: url("../images/common/icon_tab.png") no-repeat center center #344637;
  background-size: 8px auto;
}
.l-dl-nav__cta {
  margin-bottom: 30px;
}
.l-dl-nav__cta a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 64px;
  border-radius: 32px;
  background: #1B2218;
  color: #36FF7C;
  font-size: 1.8rem;
  font-weight: 700;
}
.l-dl-nav__cta a::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 16px;
  background: url("../images/common/icon_tab_green.png") no-repeat center center #36FF7C;
  background-size: 12px auto;
}
.l-dl-nav-linkarea {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 30px;
}
.l-dl-nav-linkarea__lang {
  color: #fff;
}
.l-dl-nav-linkarea__lang a {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.0;
  color: #fff;
}
.l-dl-nav-linkarea__lang a.-current {
  text-decoration: underline;
}
.l-dl-nav-linkarea__insta {
  width: 24px;
}



/* =================================================
Object
================================================= */
/*---------- component ----------*/
/*--wrap--*/
.c-cont {
  padding-bottom: calc( var( --cont_margin-block ) + 7.8125vw );
  position: relative;
}
.c-cont02 {
  padding-bottom: var( --cont_margin-block );
  position: relative;
}
.c-cont__line:nth-of-type(1) {
  padding-bottom: var( --cont_margin-block );
  position: relative;
  border-bottom: 1px solid var(--c-border);
}
.c-cont__line:last-of-type {
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .c-cont {
    padding-block: var( --cont_margin-block02 ) calc( var( --cont_margin-block02 ) + 7.8125vw );
  }
  .c-cont02 {
    padding-block: var( --cont_margin-block02 );
  }
}

.c-cont__f { margin: 0; }
.c-cont__ll { margin: 0 var(--layout_margin-inline); }
.c-cont__l {
  max-width: 1720px;
  margin: 0 auto;
}
.c-cont__m {
  max-width: 1520px;
  margin: 0 auto;
}
.c-cont__s {
  max-width: 1200px;
  margin: 0 auto;
}
.c-cont__ss {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1920px) {
  .c-cont__ll,
  .c-cont__l { margin: 0 var(--layout_margin-inline); }
}
@media screen and (max-width: 1720px) {
  .c-cont__m { margin: 0 var(--layout_margin-inline); }
}
@media screen and (max-width: 1300px) {
  .c-cont__s { margin: 0 var(--layout_margin-inline); }
}
@media screen and (max-width: 1100px) {
  .c-cont__ss { margin: 0 var(--layout_margin-inline); }
}
@media screen and (max-width: 960px) {
  .c-cont__ll,
  .c-cont__l,
  .c-cont__m { margin: 0 var(--layout_margin-inline); }
}
@media screen and (max-width: 767px) {
  .c-cont__ll,
  .c-cont__l,
  .c-cont__m,
  .c-cont__s,
  .c-cont__ss { margin: 0 var(--layout_margin-inline); }
}

/*----- Status -----*/
/* 営業中ステータス */
.c-status a {
  width: fit-content;
  height: 32px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 10px 2px 25px;
  font-size: 1.2rem;
  border-radius: 16px;
  font-weight: 700;
  position: relative;
}
.c-status a:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: #fff;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.c-status__open {
  background: #36FF7C;
}
.c-status__close {
  background: #5c5050;
  color: #fff;
}
.c-status__maintenance {
  background: #ff0000;
  color: #fff;
}

/*----- Title -----*/
.c-page-ttl {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: clamp(250px, 42.25vw + 91.55px, 700px);
  padding: 0 0 0 var(--layout_margin-inline);
}
.c-page-ttl.-first {
  background: url("../images/first/first_mv.jpg") no-repeat center center;
  background-size: cover;
}
.c-page-ttl.-activities {
  background: url("../images/activities/activities_mv.jpg") no-repeat center center;
  background-size: cover;
}
.c-page-ttl.-members {
  background: url("../images/members/members_mv.jpg") no-repeat center center;
  background-size: cover;
}
.c-page-ttl.-campaign {
  background: url("../images/campaign/campaign_mv.jpg") no-repeat center center;
  background-size: cover;
}
.c-page-ttl.-access {
  background: url("../images/access/access_mv.jpg") no-repeat center center;
  background-size: cover;
}
.c-page-ttl.-status {
  background: url("../images/status/status_mv.jpg") no-repeat center center;
  background-size: cover;
}
.c-page-ttl.-contact {
  background: url("../images/contact/contact_mv.jpg") no-repeat center center;
  background-size: cover;
}
.c-page-ttl.-news {
  background: url("../images/event/event_mv.jpg") no-repeat center center;
  background-size: cover;
}
.c-page-ttl.-event-detail {
  background: url("../images/event/event_mv.jpg") no-repeat center bottom;
  background-size: cover;
  height: clamp(250px, calc(9.71vw + 213.59px), 400px);
}
.c-page-ttl.-en {
  background: url("../images/en/en_mv.jpg") no-repeat center center;
  background-size: cover;
  height: clamp(600px, calc(34.72vw + 333.33px), 1000px);
}
.c-page-ttl__inner {
  width: 100%;
  opacity: 0;
  animation: blurIn 1.0s ease-in-out 1.0s forwards;
}
.c-page-ttl__en {
  font-size: 12.0rem;
  line-height: 1.0;
  font-family: var(--font-en-family);
  font-weight: var(--font-en-weight);
  margin-bottom: 20px;
  color: #fff;
  text-transform:capitalize;
}
.c-page-ttl__txt {
  font-size: 2.0rem;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
}
@media screen and (max-width: 1300px) {
  .c-page-ttl__en {
    font-size: 9.0rem;
  }
}
@media screen and (max-width: 960px) {
  .c-page-ttl__en {
    font-size: 7.0rem;
  }
}
@media screen and (max-width: 767px) {
  .c-page-ttl {
    height: 350px;
  }
  .c-page-ttl__en {
    font-size: 5.5rem;
  }
  .c-page-ttl__txt {
    font-size: 1.6rem;
    margin-bottom: 0;
  }
}

/* Section Title */
.c-sec-head {
  margin-bottom: var(--cont_margin-block04);
}
.c-sec-ttl01 {
  font-size: 2.0rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 5px;
}
.c-sec-en01 {
  font-size: clamp(5rem, 1.674rem + 4.336vw, 10rem);
  line-height: 1.2;
  letter-spacing: 0.01em;
  position: relative;
  font-family: var(--font-en-family);
  font-weight: var(--font-en-weight);
  margin-bottom: 10px;
}
.c-sec-ttl02 {
  font-size: 2.0rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 5px;
}
.c-sec-en02 {
  font-size: clamp(5rem, 3.137rem + 0.243vw, 7.8rem);
  line-height: 1.2;
  letter-spacing: 0.01em;
  position: relative;
  font-family: var(--font-en-family);
  font-weight: var(--font-en-weight);
  margin-bottom: 10px;
  color: #1B2218;
}
@media screen and (max-width: 960px) {
  .c-sec-ttl01 {
    font-size: 1.5rem;
    margin-bottom: 3px;
  }
  .c-sec-en01 {
    margin-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .c-sec-ttl01 {
    font-size: 1.4rem;
    margin-bottom: 2px;
  }
  .c-sec-ttl02 {
    font-size: 1.6rem;
    margin-bottom: 2px;
  }
  .c-sec-en01 {
    margin-right: 10px;
  }
}

.c-sec-ttl03 {
  font-size: 10rem;
  font-family: var(--font-en-family);
  font-weight: var(--font-en-weight);
  margin-bottom: 30px;
  color: #1B2218;
}
@media screen and (max-width: 960px) {
  .c-sec-ttl03 {
    font-size: 8rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .c-sec-ttl03 {
    font-size: 4rem;
    margin-bottom: 10px;
  }
}
.c-sec-cat {
  margin-bottom: 10px;
  display: flex;
  justify-content: flex-start;
  column-gap: 5px;
}
.c-sec-cat li span ,
.c-sec-cat li a {
  display: inline-block;
  border-radius: 3px;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 7px 10px 8px;
  line-height: 1.0;
}

/* ターム用のカラーパレット（0〜9の10色） */
.c-sec-cat .-cat00 span,.c-sec-cat .-cat00 a { background: #0075C2; color: #fff; }
.c-sec-cat .-cat01 span,.c-sec-cat .-cat01 a { background: #F26924; color: #fff; }
.c-sec-cat .-cat02 span,.c-sec-cat .-cat02 a { background: #C7CF20; color: #1B2218; }
.c-sec-cat .-cat03 span,.c-sec-cat .-cat03 a { background: #344637; color: #fff; }
.c-sec-cat .-cat04 span,.c-sec-cat .-cat04 a { background: #E60012; color: #fff; }
.c-sec-cat .-cat05 span,.c-sec-cat .-cat05 a { background: #8B54AA; color: #fff; }
.c-sec-cat .-cat06 span,.c-sec-cat .-cat06 a { background: #F39800; color: #fff; }
.c-sec-cat .-cat07 span,.c-sec-cat .-cat07 a { background: #00A0E9; color: #fff; }
.c-sec-cat .-cat08 span,.c-sec-cat .-cat08 a { background: #009E96; color: #fff; }
.c-sec-cat .-cat09 span,.c-sec-cat .-cat09 a { background: #E4007F; color: #fff; }

.c-sec-txt-s {
  font-size: 1.2rem;
}

/* =========================================================
   Card Base
   ========================================================= */
.c-sec-card {
  border: 1px solid #1B2218;
  border-radius: 10px;
  background: #fff;
  position: relative;
}
.c-sec-card::before {
  position: absolute;
  content: "";
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: url("../images/common/icon_arr_wh.png") no-repeat center center;
  background-color: #2494F2;
  background-size: 24px auto;
  right: 40px;
  bottom: 40px;
  transition: all .3s ease-in-out;
}
.c-sec-card:hover::before {
  right: 35px;
}
.c-sec-card.-nolink::before {
  display: none;
}
.c-sec-card__inner {
  display: block;
  position: relative;
  padding: 40px 40px 40px; /* ショートハンドに集約 */
}
/* 英語 / サブタイトル */
.c-sec-card__en,
.c-sec-card__subttl {
  line-height: 1.0;
  font-family: var(--font-en-family);
  font-weight: var(--font-en-weight);
  letter-spacing: 0.01em;
  transform-origin: top left;
}
.c-sec-card__en {
  font-size: 6.0rem;
  transform: rotate(-5deg);
  margin: -20px 0 30px 20px;
}
.c-sec-card__subttl {
  font-size: 8.0rem;
  transform: rotate(-10deg);
  margin: -20px 0 30px 20px;
  position: absolute;
  top: 0;
  left: 0;
  color: #2494F2;
  z-index: 999;
}

/* タイトル系 */
.c-sec-card__ttl,
.c-sec-card__ttl02,
.c-sec-card__ttl03 {
  text-align: center;
  font-weight: 700;
  margin: 0 0 10px;
}
.c-sec-card__ttl,
.c-sec-card__ttl03 {
  font-size: 2.4rem;
}
.c-sec-card__ttl02 {
  font-size: 2.0rem;
}

/* テキスト・ナンバー系 */
.c-sec-card__num {
  font-size: 2.0rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.c-sec-card__txt {
  text-align: center;
  font-size: 1.6rem;
  margin: 0 0 20px;
}
.c-sec-card__txt02 {
  font-size: 1.8rem;
  margin: 0 0 10px;
}

/* 画像・ラベル・カテゴリ */
.c-sec-card__img {
  border-radius: 10px;
  overflow: hidden;
}
.c-sec-card__label {
  margin: -50px -20px -10px auto;
  width: 100px;
  aspect-ratio: 1 / 1;
  background: url("../images/common/icon_label.png") no-repeat center center;
  background-size: cover;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 999;
  text-align: center;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.c-sec-card__cat {
  text-align: center;
  margin-bottom: 20px;
}
.c-sec-card__cat span {
  display: inline-block;
  padding: 2px 10px 3px;
  border-radius: 3px;
  background: #F2ECDB;
  font-size: 1.6rem;
  font-weight: 700;
}

/* リスト */
.c-sec-card__ul {
  margin: 0 0 20px;
}
.c-sec-card__li {
  font-size: 1.6rem;
  margin: 0 0 10px;
  padding-left: 20px;
  position: relative;
}
.c-sec-card__li::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background: #36FF7C;
  border-radius: 8px;
  top: 10px;
  left: 0;
}
.-blue.c-sec-card::before { background-color: #2494F2; }
.-blue .c-sec-card__en { color: #2494F2; }

.-purple.c-sec-card::before { background-color: #926ED6; }
.-purple .c-sec-card__en { color: #926ED6; }

.-orange.c-sec-card::before { background-color: #F26924; }
.-orange .c-sec-card__en { color: #F26924; }

.c-sec-card__link {
	text-decoration: underline;
	color: #F26924;
}

@media screen and (max-width: 1500px) {
  .c-sec-card::before {
    right: 20px;
    bottom: 20px;
  }
  .c-sec-card__inner {
    padding: 30px 30px 40px; /* paddingとpadding-bottomを統合 */
  }
  .c-sec-card__subttl {
    font-size: 7.0rem;
    /* 重複していた記述を削除 */
  }
  .c-sec-card__en {
    font-size: 5.0rem;
    margin: -20px 0 20px 20px;
  }
  .c-sec-card__ttl,
  .c-sec-card__ttl03 {
    font-size: 2.0rem;
  }
  .c-sec-card__ttl02 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1200px) {
  .c-sec-card::before {
    right: 15px;
    bottom: 15px;
  }
  .c-sec-card__inner {
    padding: 20px 20px 40px;
  }
  .c-sec-card__en {
    font-size: 4.0rem;
    margin: -20px 0 10px 10px;
  }
  .c-sec-card__ttl,
  .c-sec-card__ttl03 {
    font-size: 1.8rem;
  }
  .c-sec-card__ttl02 {
    font-size: 1.6rem;
  }
  .c-sec-card__txt {
    font-size: 1.5rem;
    margin: 0 30px 20px;
  }
}
@media screen and (max-width: 960px) {
  .c-sec-card::before {
    width: 40px;
    height: 40px;
  }
  .c-sec-card__inner {
    padding: 15px 15px 40px;
  }
  .c-sec-card__subttl {
    font-size: 5.0rem;
    margin: -15px 0 30px 20px;
  }
  .c-sec-card__en {
    font-size: 3.6rem;
    margin: -10px 0 10px 5px;
  }
  .c-sec-card__ttl,
  .c-sec-card__ttl02,
  .c-sec-card__ttl03 {
    margin: 0 0 5px;
  }
  .c-sec-card__txt {
    font-size: 1.4rem;
  }
  .c-sec-card__txt02 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .c-sec-card::before {
    width: 32px;
    height: 32px;
    background-size: 18px auto;
  }
  .c-sec-card__inner {
    padding: 15px;
  }
  .c-sec-card__subttl {
    font-size: 4.0rem;
    margin: -15px 0 30px 20px;
  }
  .c-sec-card__num {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  .c-sec-card__en {
    font-size: 4.0rem;
    margin: -10px 0 0 0;
    text-align: center;
  }
  .c-sec-card__ttl02 {
    font-size: 1.8rem;
  }
  .c-sec-card__cat {
    margin-bottom: 10px;
  }
  .c-sec-card__cat span {
    font-size: 1.4rem;
  }
  .c-sec-card__label {
    margin: -50px -10px -10px auto;
    width: 90px;
    font-size: 1.3rem;
  }
  .c-sec-card__li {
    font-size: 1.4rem;
    margin: 0 0 5px;
    padding-left: 15px;
  }
  .c-sec-card__li::before {
    top: 9px;
  }
}

/* --- c-sec-flow01-cont --- */
.c-sec-flow01-cont {
  display: flex;
  justify-content: space-between;
  column-gap: 70px;
}
.c-sec-flow01-cont__step {
  width: calc((100% - 210px) / 4);
  height: 180px;
  border-radius: 10px;
  border: 1px solid #1B2218;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #fff;
  padding-top: 20px;
}
.c-sec-flow01-cont__step::before {
  position: absolute;
  font-size: 4.0rem;
  line-height: 1.0;
  font-family: var(--font-en-family);
  font-weight: var(--font-en-weight);
  transform: rotate(-10deg);
  transform-origin: top left;
  color: #1B2218;
  top: 0;
  left: 20px;
}
.c-sec-flow01-cont__step:nth-child(1)::before { content: "Step 01"; }
.c-sec-flow01-cont__step:nth-child(2)::before { content: "Step 02"; }
.c-sec-flow01-cont__step:nth-child(3)::before { content: "Step 03"; }
.c-sec-flow01-cont__step:nth-child(4)::before { content: "Step 04"; }

.c-sec-flow01-cont__step::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 20px solid #1B2218;
  bottom: 0;
  right: -47px;
}
.c-sec-flow01-cont__step:last-child::after {
  display: none;
}
.c-sec-flow01-cont__step-txt {
  font-size: 2.0rem;
  font-weight: 700;
  color: #1B2218;
  text-align: center;
  line-height: 1.4;
}
@media screen and (max-width: 1500px) {
  .c-sec-flow01-cont {
    column-gap: 50px;
  }
  .c-sec-flow01-cont__step {
    width: calc((100% - 150px) / 4);
    height: 160px;
    padding-top: 0;
  }
  .c-sec-flow01-cont__step::before {
    font-size: 3.0rem;
  }
}
@media screen and (max-width: 960px) {
  .c-sec-flow01-cont__step::before {
    left: 10px;
  }
  .c-sec-flow01-cont__step::after {
    right: -37px;
  }
  .c-sec-flow01-cont__step-txt {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .c-sec-flow01-cont {
    flex-direction: column;
    gap: 40px;
  }
  .c-sec-flow01-cont__step {
    width: 100%;
    height: 64px;
  }
  .c-sec-flow01-cont__step::before {
    font-size: 2.8rem;
  }
  /* スマホ向けの矢印（下向き ▼ に変更） */
  .c-sec-flow01-cont__step::after {
    border-top: none;    /* 右向きの設定をリセット */
    border-bottom: none; /* 右向きの設定をリセット */
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid #1B2218; /* 上から色を押し出して下向きに */
    bottom: -35px; /* 上下の要素の間隔に合わせて微調整 */
    right: auto;   /* 右向きの設定をリセット */
    left: 50%;
    transform: translateX(-50%);
  }
  .c-sec-flow01-cont__step-txt {
    font-size: 1.6rem;
  }
  .c-sec-flow01-cont__step-txt br {
    display: none;
  }
}
/* --- c-sec-flow02 --- */
.c-sec-flow02-cont {
  display: flex;
  justify-content: space-between;
  column-gap: 70px;
}
.c-sec-flow02-cont__step {
  width: calc((100% - 140px) / 3);
  border-radius: 10px;
  border: 1px solid #1B2218;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  background: #fff;
  padding: 70px 40px 30px;
}
/* Stepテキストの基本スタイル */
.c-sec-flow02-cont__step::before {
  position: absolute;
  font-size: 4.0rem;
  line-height: 1.0;
  font-family: var(--font-en-family);
  font-weight: var(--font-en-weight);
  transform: rotate(-10deg);
  transform-origin: top left;
  color: #1B2218;
  top: 0;
  left: 20px;
}
/* 各ステップのテキスト（全画面サイズで共通） */
.c-sec-flow02-cont__step:nth-child(1)::before { content: "Step 01"; }
.c-sec-flow02-cont__step:nth-child(2)::before { content: "Step 02"; }
.c-sec-flow02-cont__step:nth-child(3)::before { content: "Step 03"; }
.c-sec-flow02-cont__step:nth-child(4)::before { content: "Step 04"; }

/* PC向けの矢印（右向き ?） */
.c-sec-flow02-cont__step::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 20px solid #1B2218;
  right: -47px;
  top: 50%;
  transform: translateY(-50%);
}
/* 最後のステップには矢印を出さない（全画面サイズで共通） */
.c-sec-flow02-cont__step:last-child::after {
  display: none;
}
.c-sec-flow02-cont__step-img {
  display: flex;
  align-items: center;
  height: 130px;
  margin-bottom: 20px;
}
.c-sec-flow02-cont__step-img img {
  width: 100px;
}
.c-sec-flow02-cont__step-ttl {
  font-size: 2.0rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 20px;
}
.c-sec-flow02-cont__step:last-child .c-sec-flow02-cont__step-ttl {
  color: #F26924;
}
.c-sec-flow02-cont__step-txt {
  font-size: 1.6rem;
  color: #1B2218;
  margin-bottom: 20px;
}
.c-sec-flow02-cont__step-txt span {
  font-weight: 700;
}
.c-sec-flow02-cont__link {
  margin-left: auto;
}
.c-sec-flow02-cont__link a {
  text-decoration: underline;
}
@media screen and (max-width: 1500px) {
  .c-sec-flow02-cont { column-gap: 50px; }
  .c-sec-flow02-cont__step { width: calc((100% - 100px) / 3); padding: 50px 30px 30px; }
  .c-sec-flow02-cont__step::after { right: -37px; }
  .c-sec-flow02-cont__step-img img { width: 80px; }
}
@media screen and (max-width: 960px) {
  .c-sec-flow02-cont__step { padding: 40px 20px 20px; }
  .c-sec-flow02-cont__step-img { margin-bottom: 10px; }
  .c-sec-flow02-cont__step-img img { width: 70px; }
  .c-sec-flow02-cont__step-ttl { margin-bottom: 10px; }
  .c-sec-flow02-cont__step-txt { margin-bottom: 0; }
}
@media screen and (max-width: 767px) {
  .c-sec-flow02-cont { flex-direction: column; gap: 35px; }
  .c-sec-flow02-cont__step {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px;
  }
  .c-sec-flow02-cont__step::before { font-size: 2.8rem; left: 5px; }
  
  /* スマホ向けの矢印（下向き ▼ に変更） */
  .c-sec-flow02-cont__step::after {
    border-top: 15px solid #1B2218; /* 下向きに変更 */
    border-bottom: none;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    top: auto; /* translateY(-50%)を打ち消すため、topはautoに */
    bottom: -25px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  .c-sec-flow02-cont__step-img { height: auto; width: 70px; }
  .c-sec-flow02-cont__step-cont { width: calc(100% - 90px); }
  .c-sec-flow02-cont__step-ttl { font-size: 1.8rem; text-align: left; }
  .c-sec-flow02-cont__step-ttl br { display: none; }
  .c-sec-flow02-cont__step-txt { font-size: 1.4rem; }
}

/*----- c-obj-border -----*/
.c-obj-border01 {
  position: relative;
}
.c-obj-border01::after {
  position: absolute;
  content: "";
  top: -7.8125vw;
  left: calc(var(--layout_margin-block) * -1);
  aspect-ratio: 2023 / 1415;
  background: url("../images/common/obj_border.png") no-repeat left bottom;
  background-size: cover;
  width: 50%;
  z-index: 999;
}
.c-obj-border02 {
  position: relative;
  z-index: 1;
}
.c-obj-border02::after {
  position: absolute;
  content: "";
  top: -7.8125vw;
  right: calc(var(--layout_margin-block) * -1);
  aspect-ratio: 998 / 830;
  background: url("../images/common/obj_border02.png") no-repeat left bottom;
  background-size: cover;
  width: 25.989vw;
  z-index: 999;
}
@media screen and (max-width: 960px) {
  .c-obj-border01::after {
    top: 0;
    left: 0;
    aspect-ratio: 1170 / 234;
    background-image: url("../images/common/obj_border_sp.png");
    width: 100%;
  }
  .c-obj-border02::after {
    top: 120px;
    left: 0;
    right: auto; /* PC版のright指定をリセット */
    aspect-ratio: 780 / 236;
    background-image: url("../images/common/obj_border02_sp.png");
    width: 100%;
    z-index: -1;
  }
}

/*----- Button -----*/
/*--ボタン真ん中よせ--*/
.c-btn--c {
  margin: 0 auto;
}

/*--------------------
   c-btn
   --r : 色反転 (Reverse)
   --s : サイズ小 (Small)
----------------------*/
.c-btn {
  width: 100%;
  max-width: 480px;
}
.c-btn a {
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #1B2218;
  font-size: 1.8rem;
  font-weight: 700;
  color: #36FF7C;
  line-height: 1.3;
  transition: all .2s ease-in-out;
  border-radius: 64px;
}
.c-btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 24px;
  aspect-ratio: 1 / 1;
  background: url("../images/common/icon_arr_lg.png") no-repeat center center;
  background-size: 24px auto;
  transition: all .3s ease-in-out;
}
.c-btn--r a {
  background: #fff;
  color: #1B2218;
}
.c-btn--r a::before {
  background: url("../images/common/icon_arr_gr.png") no-repeat center center;
  background-size: 24px auto;
}
.c-btn--g a {
  background: #837D70;
  color: #fff;
}
.c-btn--g a::before {
  background: url("../images/common/icon_arr_wh.png") no-repeat center center;
  background-size: 24px auto;
}
.c-btn--l a {
  background: #4CC764;
  color: #fff;
}
.c-btn--l a::before {
  background: url("../images/common/icon_arr_wh.png") no-repeat center center;
  background-size: 24px auto;
}
@media (hover: hover) and (pointer: fine) {
  .c-btn a:hover {
    background: #36FF7C;
    color: #1B2218;
  }
  .c-btn a:hover:before {
    background: url("../images/common/icon_arr_gr.png") no-repeat center center;
    background-size: 24px auto;
  }
  .c-btn--r a:hover {
    background: #C7CF20;
  }
  .c-btn--g a:hover {
    background: #9e9b93;
    color: #fff;
  }
  .c-btn--g a:hover:before {
    background: url("../images/common/icon_arr_wh.png") no-repeat center center;
    background-size: 24px auto;
  }
  .c-btn--l a:hover {
    background: #28A841;
    color: #fff;
  }
  .c-btn--l a:hover:before {
    background: url("../images/common/icon_arr_wh.png") no-repeat center center;
    background-size: 24px auto;
  }
}
@media screen and (max-width: 960px) {
  .c-btn {
    max-width: 280px;
  }
  .c-btn a {
    padding: 20px 10px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-btn {
    max-width: 400px;
  }
  .c-btn a {
    padding: 15px 5px;
    font-size: 1.6rem;
  }
  .c-btn a::before {
    width: 39px;
  }
  .c-btn a::after {
    right: 10px;
  }
}

/*--------------------
   c-btn02
   --r : 色反転 (Reverse)
----------------------*/
.c-btn02 {
  width: fit-content;
  margin-left: auto;
}
.c-btn02 a {
  display: flex;
  align-items: center;
  position: relative;
  height: 48px;
  padding: 0 70px 0 0;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.0;
  transition: all .2s ease-in-out;
}
.c-btn02 a:before {
  position: absolute;
  content: "";
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: url("../images/common/icon_arr_wh.png") no-repeat center center;
  background-color: #344637;
  background-size: 24px auto;
  right: 0;
  bottom: 0;
  transition: all .3s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .c-btn02 a:hover:before {
    right: -5px;
  }
}
@media screen and (max-width: 767px) {
  .c-btn02 a {
    height: 32px;
    padding: 0 42px 0 0;
  }
  .c-btn02 a:before {
    width: 32px;
    height: 32px;
    background-size: 20px auto;
  }  
}

.c-block01 {
  display: flex;
  justify-content: space-between;
  column-gap: 40px;
  margin-bottom: 100px;
}
.c-block01__block {
  width: calc((100% - 40px) / 2);
  border: 1px solid #1B2218;
  border-radius: 10px;
  background: #fff;
}
.c-block01__ttl {
  width: 100%;
  height: 72px;
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FCF9F2;
  border-bottom: 1px solid #1B2218;
  border-radius: 10px 10px 0 0;
}
.c-block01__ttl02 {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.c-block01__txt-s {
  font-size: 1.2rem;
}
.c-block01__inner {
  padding: 40px;
}
.c-block01__inner > :last-child {
  margin-bottom: 0;
}
.c-block01__list {
  margin-bottom: 20px;
}
.c-block01__list02 {
  margin-bottom: 20px;
}
.c-block01__list02 li {
  position: relative;
  padding: 0 0 0 20px;
}
.c-block01__list02 li::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background: #36FF7C;
  border-radius: 8px;
  top: 10px;
  left: 0;
}
.c-block01__txt {
  margin-bottom: 20px;
}
.c-block01__txt:last-child {
  margin-bottom: 0;
}
.c-block01__box {
  border-radius: 10px;
  background: #FCF9F2;
  padding: 20px;
}
.c-block01__box-ttl {
  font-size: 1.8rem;
  font-weight: 700;
}
.c-block01__term {
  font-size: 1.8rem;
  font-weight: 700;
  padding: 0 0 5px 25px;
  background: url("../images/common/icon-check.png") no-repeat 0 12px;
  background-size: 16px auto;
}
.c-block01__desc {
  font-size: 1.6rem;
  padding: 0 0 10px 25px;
}
.c-block01__attention {
  background: url("../images/common/icon-alert.png") no-repeat 0 7px;
  background-size: 16px 16px;
  padding: 0 0 0 20px;
  color: #F26924;
}
@media screen and (max-width: 1200px) {
  .c-block01 {
    column-gap: 30px;
  }
  .c-block01__block {
    width: calc((100% - 30px) / 2);
  }
  .c-block01__inner {
    padding: 30px;
  }
}
@media screen and (max-width: 960px) {
  .c-block01 {
    column-gap: 20px;
    margin-bottom: 70px;
  }
  .c-block01__block {
    width: calc((100% - 20px) / 2);
  }
  .c-block01__inner {
    padding: 20px;
  }
  .c-block01__term {
    font-size: 1.6rem;
  }
  .c-block01__desc {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-block01 {
    flex-direction: column;
    margin-bottom: 30px;
  }
  .c-block01__block {
    width: 100%;
    margin-bottom: 15px;
  }
  .c-block01__box {
    border-radius: 10px;
    background: #FCF9F2;
    padding: 20px 15px;
  }
  .c-block01__box-ttl {
    font-size: 1.6rem;
    font-weight: 700;
  }
  .c-block01__ttl {
    height: 56px;
  }
  /* テキストサイズを全体的に縮小 */
  .c-block01__ttl02 {
    font-size: 1.6rem;
  }
  .c-block01__list {
    background: #fff;
    border-radius: 0 0 10px 10px;
  }
  .c-block01__list02 li {
    font-size: 1.4rem;
    padding: 0 0 0 15px;
  }
  .c-block01__list02 li::before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    background: #36FF7C;
    border-radius: 8px;
    top: 8px;
    left: 0;
  }
  .c-block01__term {
    padding: 0 0 5px 20px;
    background-position: 0 10px;
    background-size: 14px auto;
  }
  .c-block01__desc {
    padding: 0 0 10px 20px;
    font-size: 1.6rem;
  }
  .c-block01__attention {
    background: url("../images/common/icon-alert.png") no-repeat 0 5px;
    background-size: 16px 16px;
    padding: 0 0 0 20px;
    color: #F26924;
  }
  .c-block01__txt-s {
    font-size: 1.1rem;
  }
}

.c-outlink {
  position: relative;
  padding-right: 30px;
}
.c-outlink:before {
  position: absolute;
  content: "";
  width: 13px;
  aspect-ratio: 1 / 1;
  background: url("../images/common/icon_tab.png") no-repeat right center;
  background-size: 13px auto;
  top: 4px;
  right: 0;
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .c-outlink {
    padding-right: 25px;
  }
}

/* よくあるご質問
------------------------------------------------- */
.c-faq {
  padding-top: 0;
}
.c-faq-block {
  width: 100%;
  position: relative;
}
.c-faq-box {
  border: 1px solid #1B2218;
  position: relative;
  cursor: pointer;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  background: #FFF;
}
.c-faq-ttl {
  position: relative;
  font-size: 1.8rem;
  line-height: 1.4;
  padding: 22px 65px 25px 100px;
}
.c-faq-txt {
  position: relative;
  padding: 22px 65px 25px 100px;
  border-top: 1px solid #1B2218;
  font-size: 1.6rem;
}
.c-faq-txt * {
  font-size: 1.6rem;
}
.c-faq-ttl::before,
.c-faq-txt::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 100%;
  font-size: 3.0rem;
  text-align: center;
  font-family: var(--font-en-family);
  font-weight: var(--font-en-weight);
  line-height: 1.0;
  color: #fff;
  padding-top: 20px;
}
.c-faq-ttl::before {
  content: "Q";
  background: #C7CF20;
}
.c-faq-txt::before {
  content: "A";
  background: #F26924;
}
.c-faq-btn {
  position: absolute;
  top: 16px;
  right: 25px;
  width: 40px;
  height: 40px;
  background: #344637;
  border-radius: 40px;
}
.c-faq-btn::before,
.c-faq-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  transition: .5s ease-in-out;
  transform: translate(-50%, -50%);
}
.c-faq-btn::before {
  width: 16px;
  height: 2px;
}
.c-faq-btn::after {
  width: 2px;
  height: 16px;
}
.c-faq-btn.active::before {
  display: none;
}
.c-faq-btn.active::after {
  transform: translate(-50%, -50%) rotate(-90deg);
}
@media screen and (max-width: 960px) {
  .c-faq-btn {
    right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .c-faq-ttl,
  .c-faq-txt {
    padding: 22px 55px 25px 70px;
  }
  .c-faq-ttl::before,
  .c-faq-txt::before {
    width: 50px;
    font-size: 2.4rem;
  }
  .c-faq-btn {
    top: 21px;
    right: 15px;
    width: 30px;
    height: 30px;
  }
  .c-faq-btn::before {
    width: 14px;
  }
  .c-faq-btn::after {
    height: 14px;
  }
}

/*----- Breadcrumb -----*/
.c-breadcrumb { 
  margin-bottom: calc( 7.8125vw + var(--cont_margin-block05)); 
}
.activities .c-breadcrumb { 
  margin-bottom: 0; 
}
.is-sub .c-breadcrumb {
  position: relative;
}
.c-breadcrumb-ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}
.c-breadcrumb-ul li {
  position: relative;
  display: inline-block;
  margin: 0 10px 10px 0;
  padding-right: 15px;
}
.c-breadcrumb-ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background: #D9D4C4;
  transform: translateY(-50%);
}
.c-breadcrumb-ul li:first-child a {
  background: url("../images/common/icon-home.png") no-repeat 0 0;
  background-size: 20px 20px;
  display: block;
  width: 20px;
  height: 20px;
}
.c-breadcrumb-ul li:last-child {
  margin: 0 0 10px 0;
  padding-right: 0;
}
.c-breadcrumb-ul li:last-child::before {
  display: none;
}
.c-breadcrumb-ul li span {
  display: block;
  font-size: 1.2rem;
  line-height: 1.6;
  text-transform: capitalize;
}
.c-breadcrumb-ul li a {
  color: var(--c-body);
  line-height: 1.0;
  text-decoration: underline;
}
@media screen and (max-width: 769px) {
  .is-sub .c-breadcrumb {
    margin-top: var(--cont_margin-block02);
    margin-bottom: var(--cont_margin-block04);
  }
  .c-breadcrumb-ul {
    justify-content: flex-start;
  }
  .c-breadcrumb-ul li {
    margin: 0 10px 10px 0;
    padding-right: 15px;
  }
  .c-breadcrumb-ul li:first-child * {
    font-size: 1.4rem;
  }
  .c-breadcrumb-ul li span {
    font-size: 1.3rem;
  }
}

.c-innerlink {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: var(--cont_margin-block03);
  counter-reset: link-num;
}
.c-innerlink__li {
  width: calc((100% - 30px) / 4);
}
.c-innerlink__link {
  position: relative;
  display: flex;
  align-items: center;
  height: 84px;
  color: var(--c-body);
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 700;
  transition: all .3s ease-in-out;
  padding: 0 40px;
  background: #fff;
  counter-increment: link-num;
}
.c-innerlink__link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 16px;
  height: 16px;
  background: url("../images/icon-btn-b01.svg") no-repeat center center / 16px auto;
  transform: translateY(-50%) rotate(90deg);
  transition: all .3s ease-in-out;
}
.c-innerlink__link::after {
  content: counter(link-num, decimal-leading-zero);
  position: absolute;
  font-size: 1.3rem;
  font-family: var(--font-en-family);
  font-weight: var(--font-en-weight);
  color: var(--c-primary);
  top: 10px;
  left: 15px;
  z-index: 1;
}
@media (hover: hover) and (pointer: fine) {
  .c-innerlink__link:hover {
    color: var(--c-primary);
  }
  .c-innerlink__link:hover::before {
    background: url("../images/icon-btn-p01.svg") no-repeat center center / 16px auto;
  }
}
@media screen and (max-width: 1500px) {
  .c-innerlink__link {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1200px) {
  .c-innerlink__li {
    width: calc((100% - 20px) / 3);
  }
}
@media screen and (max-width: 960px) {
  .c-innerlink__link {
    height: 75px;
    font-size: 1.5rem;
    padding: 0 30px 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .c-innerlink__li {
    width: calc((100% - 10px) / 2);
  }
  .c-innerlink__link {
    height: 70px;
    font-size: 1.4rem;
    padding: 0 30px;
  }
  .c-innerlink__link::after {
    top: 5px;
    left: 10px;
  }
}
@media screen and (max-width: 500px) {
  .c-innerlink__link {
    font-size: 1.3rem;
  }
  .c-innerlink__link::before {
    right: 10px;
  }
}

/*----- PAGE CONTACT -----*/
.c-page-contact {
  position: relative;
  z-index: 1;
  margin-top: 0;
  margin-bottom: var( --cont_margin-block02 );
  text-align: center;
}
.c-page-contact-ttl {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin: 0 auto;
}
.c-page-contact-ttl__en {
  margin-bottom: 30px;
  color: var(--c-primary);
  font-size: 6.0rem;
  line-height: 1.0;
  letter-spacing: 0.05em;
}
.c-page-contact-ttl__jp {
  padding: 15px 0;
  border-top: 1px solid var(--c-primary);
  border-bottom: 1px solid var(--c-primary);
  font-weight: 700;
  text-align: center;
}
.c-page-contact__inner {
  display: flex;
  justify-content: space-between;
  column-gap: 40px;
  margin-top: -120px;
}
.c-page-contact-cont {
  width: calc((100% - 40px) / 2);
  padding: 190px 0 200px;
  background: #fff;
  border-radius: 10px;
}
.c-page-contact-cont .c-btn-cta--l { margin: 0 auto; }
.c-page-contact-cont__ttl {
  position: relative;
  margin-bottom: 40px;
  padding-top: 30px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.c-page-contact-cont__ttl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--c-primary);
  border-radius: 8px;
  transform: translateX(-50%);
}
.c-page-contact-cont__tel { margin-bottom: 5px; }
.c-page-contact-cont__tel a {
  display: inline-block;
  padding-left: 30px;
  background: url("../images/icon-tel-b.svg") no-repeat 0 18px / 20px auto;
  color: var(--c-primary);
  font-size: 5.2rem;
  line-height: 1;
}
.c-page-contact-cont__time { font-size: 1.6rem; }
@media screen and (max-width: 1500px) {
  .c-page-contact-ttl__en { 
    font-size: 5.0rem; 
    margin-bottom: 20px; 
  }
  .c-page-contact-ttl__jp { padding: 10px 0; }
  .c-page-contact__inner { 
    column-gap: 20px; 
    margin-top: -100px; 
  }
  .c-page-contact-cont { 
    width: calc((100% - 20px) / 2); 
    padding: 150px 0 100px; 
  }
}
@media screen and (max-width: 1200px) {
  .c-page-contact-ttl__en { font-size: 4.5rem; }
  .c-page-contact-ttl__jp { font-size: 1.4rem; }
  .c-page-contact__inner { margin-top: -90px; }
  .c-page-contact-cont { padding: 150px 50px 100px; }
  .c-page-contact-cont__ttl { 
    font-size: 1.8rem; 
    margin-bottom: 30px; 
  }
  .c-page-contact-cont__tel a { 
    font-size: 4.0rem; 
    padding-left: 20px; 
    background-position: 0 15px; 
    background-size: 15px auto; 
  }
}
@media screen and (max-width: 960px) {
  .c-page-contact-ttl__en { 
    font-size: 4.0rem; 
    margin-bottom: 10px; 
  }
  .c-page-contact__inner { margin-top: -80px; }
  .c-page-contact-cont { padding: 100px 30px 70px; }
  .c-page-contact-cont__tel a { 
    font-size: 3.5rem; 
    background-position: 0 11px; 
  }
}
@media screen and (max-width: 767px) {
  .c-page-contact-ttl__jp { 
    font-size: 1.3rem; 
    margin-bottom: 30px; 
  }
  .c-page-contact__inner { 
    display: block; 
    margin-top: 0; 
  }
  .c-page-contact-cont { 
    width: 100%; 
    padding: 50px; 
    margin-bottom: 10px; 
  }
  .c-page-contact-cont__ttl { 
    font-size: 1.4rem; 
    margin-bottom: 20px; 
    padding-top: 20px; 
  }
  .c-page-contact-cont__ttl::before { 
    width: 6px; 
    height: 6px; 
  }
  .c-page-contact-cont__tel a { 
    font-size: 3.0rem; 
    padding-left: 15px; 
    background-position: 0 12px; 
    background-size: 10px auto; 
  }
}
@media screen and (max-width: 500px) {
  .c-page-contact-ttl__en { font-size: 3.0rem; }
  .c-page-contact-ttl__jp { 
    font-size: 1.1rem; 
    margin-bottom: 20px; 
  }
  .c-page-contact-cont { padding: 20px; }
  .c-page-contact-cont__ttl { margin-bottom: 10px; }
  .c-page-contact-cont__tel a { 
    font-size: 2.5rem; 
    background-position: 0 8px; 
  }
  .c-page-contact-cont__add { font-size: 1.4rem; }
}

/*----- Form -----*/
/* Text, Textarea, Selectbox */
.c-sel {
  width: 100%;
  max-width: 200px;
  height: 64px;
  padding: 0 20px;
  background: #fff url(../images/arr_select_down.png) no-repeat right 10px center / 9px;
  border: 1px solid var(--c-border);
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.6rem;
}
.c-form {
  width: 100%;
  height: 64px;
  padding: 0 20px;
  background: #fff;
  border: 1px solid #1B2218;
  font-size: 1.6rem;
  border-radius: 10px !important;
}
.c-form.-sm { max-width: 250px; }
.c-form.-md { max-width: 500px; }
.c-form.-lg { max-width: 700px; }
.c-form-txt {
  width: 100%;
  max-width: 700px;
  height: 240px;
  padding: 15px 20px;
  background: #fff;
  border: 1px solid #1B2218;
  font-size: 1.6rem;
  border-radius: 10px;
}
.c-form-button {
  border-radius: 50px;
  width: 200px;
  height: 40px;
  border: 1px solid var(--c-primary);
  padding: 0 30px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.4rem;
  color: var(--c-primary);
  background: #fff;
  position: relative;
  cursor: pointer;  
  transition: all .3s ease-in-out;
  margin-bottom: 5px;
}
.c-form-button:hover {
  border: 1px solid var(--c-primary);
  color: #fff;
  background: var(--c-primary);
}
.c-form-button:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  top: 50%;
  right: 20px;
  border-radius: 100%;
  background: var(--c-primary);
  transform: translateY(-50%);
  transition: all .3s ease-in-out;
}
.c-form-button:hover:before { background: #fff; }
@media screen and (max-width: 767px) {
  .c-form {
    width: 100%;
    height: 45px;
    padding: 0 10px;
    background: #fff;
    border: 1px solid #1B2218;
    font-size: 1.5rem;
    border-radius: 5px !important;
  }
  .c-form-button {
    width: 160px;
    height: 30px;
    padding: 0 20px;
    font-size: 1.3rem;
  }
  .c-sel {
    font-size: 1.4rem;
  }
}

/* Check, Radio */
input[type='radio'] { margin-right: 5px; }
input[type='radio'] + span{ margin-right: 10px; }
.c-col-l label { margin-right: 5px; }


.c-bg01 {
  background:url("../images/common/bg_beige.jpg") repeat center center;
  position: relative;
}
.c-bg01:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 7.8125vw;
  aspect-ratio: 1920 / 150;
  background: url("../images/common/bg_beige_top.png") no-repeat center center;
  background-size: cover;
  top: -7.8125vw;
  left: 0;
  z-index: 8;
}
.c-bg02 {
  background:url("../images/common/bg.jpg") repeat center center;
  position: relative;
}
.c-bg02:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 7.8125vw;
  aspect-ratio: 1920 / 150;
  background: url("../images/common/bg_top.png") no-repeat center center;
  background-size: cover;
  top: -7.8125vw;
  left: 0;
  z-index: 8;
}
.c-bg03 {
  background:url("../images/common/bg_green.jpg") repeat center center;
  position: relative;
}
.c-bg03:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 7.8125vw;
  aspect-ratio: 1920 / 150;
  background: url("../images/common/bg_green_top.png") no-repeat center center;
  background-size: cover;
  top: -7.8125vw;
  left: 0;
  z-index: 8;
}
@media screen and (max-width: 767px) {
  .c-bg01 {
    background:url("../images/common/bg_beige.jpg") repeat center center;
    position: relative;
  }
  .c-bg01:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 7.8125vw;
    aspect-ratio: 1920 / 150;
    background: url("../images/common/bg_beige_top.png") no-repeat center center;
    background-size: cover;
    top: -7.8125vw;
    left: 0;
    z-index: 8;
  }
  .c-bg02 {
    background:url("../images/common/bg.jpg") repeat center center;
    position: relative;
  }
  .c-bg02:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 7.692vw;
    aspect-ratio: 780 / 44;
    background: url("../images/common/bg_top_sp.png") no-repeat center center;
    background-size: cover;
    top: -7.0vw;
    left: 0;
    z-index: 8;
  }
  .c-bg03 {
    background:url("../images/common/bg_green.jpg") repeat center center;
    position: relative;
  }
  .c-bg03:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 5.641vw;
    aspect-ratio: 780 / 60;
    background: url("../images/common/bg_green_top_sp.png") no-repeat center center;
    background-size: cover;
    top: -5.0vw;
    left: 0;
    z-index: 8;
  }
}

/*---------- project ----------*/
/* Index
-------------- */
.p-mv, .p-mv-img {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
}
.p-mv-img {
  overflow: hidden;
}
.p-mv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-mv-catch {
  position: absolute;
  left: var(--layout_margin-inline);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  padding-top: 100px;
}
.p-mv-catch::before {
  position: absolute;
  content: "";
  background: url("../images/top/top_mv_fukidashi.png") no-repeat 0 0;
  background-size: cover;
  width: 236px;
  height: 111px;
  aspect-ratio: 236 / 111;
  top: 0;
  left: 0;
  opacity: 0;
  animation: blurIn 1.0s ease-in-out 0.6s forwards;
}
.p-mv-catch * {
  color: #fff;
}
.p-mv-catch__sub {
  font-size: 3.0rem;
  font-weight: 700;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  opacity: 0;
  animation: blurIn 1.0s ease-in-out 0.6s forwards;
  line-height: 1.0;
  margin-left: 270px;
  margin-bottom: -30px;
}
.p-mv-catch__sub span {
  font-size: 4.8rem;
  font-family: var(--font-en-family);
  font-weight: var(--font-en-weight);
  display: inline-block;
  margin: 0 5px;
  line-height: 1.0;
}
.p-mv-catch__en {
  font-size: 14rem;
  line-height: 1.0;
  letter-spacing: 0.01em;
  opacity: 0;
  animation: blurIn 1.0s ease-in-out 0.6s forwards;
  font-family: var(--font-en-family);
  font-weight: var(--font-en-weight);
}
.p-mv-txt {
  position: absolute;
  top: 150px;
  right: var(--layout_margin-inline);
  writing-mode: vertical-rl;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 15px;
  line-height: 1.0;
  opacity: 0;
  animation: blurIn 1.0s ease-in-out 0.6s forwards;
}
.p-mv-txt span {
  display: inline-block;
  background: #fff;
  padding: 15px 13px;
  line-height: 1.0;
  font-size: 2.8rem;
  font-weight: 700;
}
.p-mv-reserve {
  position: absolute;
  opacity: 0;
  animation: blurIn 1.0s ease-in-out 0.6s forwards;
  width: 200px;
  aspect-ratio: 1 / 1;
  right: calc(var(--layout_margin-inline) + 80px);
  bottom: 30px;
  z-index: 9;
  transition: all .3s ease-in-out;
}
.p-mv-reserve::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url("../images/top/reserve_btn_bg.png") no-repeat center center;
  background-size: cover;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all .3s ease-in-out;
}
.p-mv-reserve__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
}
.p-mv-reserve__link * {
  color: #fff;
  transition: all .3s ease-in-out;
}
.p-mv-reserve__inner {
  background: url("../images/top/icon_calendar.png") no-repeat center 0;
  background-size: 45px auto;
  padding-top: 45px;
}
.p-mv-reserve__inner span {
  display: block;
  font-size: 3.0rem;
  font-family: var(--font-en-family);
  font-weight: var(--font-en-weight);
  line-height: 1.4;
}
@keyframes spin-bg {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-mv-reserve:hover::before {
    animation: spin-bg 10s linear infinite;
  }
  .p-mv-reserve__link:hover * {
    color: #36FF7C;
  }
}
@media screen and (max-width: 1400px) {
  .p-mv-catch {
    padding-top: 70px;
  }
  .p-mv-catch::before {
    width: 180px;
    height: auto;
  }
  .p-mv-catch__sub {
    font-size: 2.2rem;
    margin-bottom: -20px;
  }
  .p-mv-catch__sub span {
    font-size: 4.2rem;
  }
  .p-mv-catch__en {
    font-size: 10rem;
  }
  .p-mv-txt {
    top: 130px;
  }
  .p-mv-txt span {
    font-size: 2.2rem;
  }
  .p-mv-reserve {
    bottom: 20px;
  }
}
@media screen and (max-width: 960px) {
  .p-mv-catch {
    padding-top: 50px;
  }
  .p-mv-catch::before {
    width: 150px;
  }
  .p-mv-catch__sub {
    font-size: 1.8rem;
    margin-left: 210px;
    margin-bottom: -10px;
  }
  .p-mv-catch__sub span {
    font-size: 3.6rem;
  }
  .p-mv-catch__en {
    font-size: 8rem;
  }
  .p-mv-txt {
    gap: 10px;
  }
  .p-mv-txt span {
    font-size: 2.0rem;
  }
  .p-mv-reserve {
    width: 180px;
    right: calc(var(--layout_margin-inline) + 50px);
  }
  .p-mv-reserve__inner {
    background-size: 35px auto;
    padding-top: 35px;
    font-size: 1.4rem;
  }
  .p-mv-reserve__inner span {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mv-catch::before {
    width: 140px;
  }
  .p-mv-catch__sub {
    font-size: 1.7rem;
    margin-left: 160px;
    margin-bottom: -5px;
  }
  .p-mv-catch__sub span {
    font-size: 2.8rem;
  }
  .p-mv-catch__en {
    font-size: 6.4rem;
  }
  .p-mv-txt {
    top: 110px;
  }
  .p-mv-txt span {
    font-size: 1.8rem;
  }
  .p-mv-reserve {
    width: 140px;
    right: var(--layout_margin-inline);
  }
  .p-mv-reserve__link {
    font-size: 1.0rem;
  }
  .p-mv-reserve__inner {
    background-size: 30px auto;
    padding-top: 30px;
    font-size: 1.2rem;
  }
  .p-mv-reserve__inner span {
    font-size: 2.0rem;
  }
}
@media screen and (max-width: 500px) {
  .p-mv {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .p-mv-img {
    position: absolute;
  }
  .p-mv-inner {
    width: fit-content;
    padding-bottom: 100px;
    margin-inline: auto;
  }
  .p-mv-catch {
    position: static;
    transform: translateY(0);
    margin-bottom: 30px;
  }
  .p-mv-txt {
    position: static;
    writing-mode: horizontal-tb;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    margin-inline: auto 0;
  }
  .p-mv-txt span {
    padding: 7px 10px 8px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 400px) {
  .p-mv-catch::before {
    width: 130px;
  }
  .p-mv-catch__sub {
    margin-left: 135px;
  }
  .p-mv-catch__en {
    font-size: 6.0rem;
  }
}

/* ----- Top CONCEPT -----*/
.p-tp-concept {
  position: relative;
  z-index: 1;
  margin-top: 2.604vw;
}
.p-tp-concept-head {
  position: relative;
  z-index: 9;
}

/* 右上の画像 */
.p-tp-concept-head__img {
  position: absolute;
  content: "";
  width: 767px;
  aspect-ratio: 767 / 294;
  top: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 9;
}
.p-tp-concept-head__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 英語見出しと吹き出し */
.p-tp-concept-head__en {
  width: fit-content;
  padding-right: 230px;
}
.p-tp-concept-head__en:before {
  position: absolute;
  content: "";
  width: 204px;
  height: 96px;
  top: -20px;
  right: 0;
  background: url("../images/top/letsgo_fukidashi.png") no-repeat center center;
  background-size: cover;
  z-index: 9;
}

/* カードを並べるエリア */
.p-tp-concept__inner {
  display: flex;
  justify-content: space-between;
  column-gap: 32px;
}
.p-tp-concept__inner .c-sec-card {  
  width: calc(( 100% - 64px ) / 3);
}

/* =========================================================
   Media Queries (画面サイズごとの上書き - 差分のみ)
========================================================= */

/* --- 1500px以下 --- */
@media screen and (max-width: 1500px) {
  .p-tp-concept-head__img {
    width: 39.948vw; /* 比率で縮小 */
  }
  .p-tp-concept-head__en {
    padding-right: 13%;
  }
  .p-tp-concept-head__en:before {
    width: 10.625vw;
    height: 5vw;
    top: -1.04vw;
  }
  
  .p-tp-concept__inner {
    column-gap: 20px;
  }
  .p-tp-concept__inner .c-sec-card {  
    width: calc((100% - 40px) / 3);
  }
}

/* --- 960px以下 --- */
@media screen and (max-width: 960px) {
  .p-tp-concept-head__img {
    width: 45vw;
  }
  
  .p-tp-concept__inner {
    column-gap: 10px;
  }
  .p-tp-concept__inner .c-sec-card {  
    width: calc((100% - 20px) / 3);
  }
}

/* --- 767px以下 --- */
@media screen and (max-width: 767px) {
  .p-tp-concept-head__img {
    position: static; /* absoluteを解除 */
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    /* transform: translateY(-50%); はそのまま活かしています */
  }
  
  .p-tp-concept-head__en:before {
    width: 140px;
    height: auto; /* inheritから変更して崩れ防止 */
    aspect-ratio: 204 / 96;
    top: calc((100% + 10px) * -1);
    left: 80px;
    right: auto; /* 右基準だったものを左基準に変更するため */
  }  
  .p-tp-concept__inner {
    flex-direction: column; /* 縦並びに変更 */
    gap: 20px;
  }
  .p-tp-concept__inner .c-sec-card {  
    width: 100%;
  }
}

/* ----- Top activities -----*/
.p-tp-activities {
  position: relative;
}
.p-tp-activities:after {  
  position: absolute;
  content: "";
  background: url("../images/common/obj_kayak.png") no-repeat 0 0;
  background-size: cover;
  width: 47%;
  aspect-ratio: 894 / 1062;
  top: -50px;
  left: 0;
  z-index: 10;
}
.p-tp-activities__inner {
  display: flex;
  justify-content: space-between;
  column-gap: 32px;
}
.p-tp-activities-head {
  width: 38%;
}

/* カヤック画像 (スマホでのみ表示) */
.p-tp-activities__img {
  display: none;
}

.p-tp-activities-cont {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  width: 62%;
  z-index: 99;
}
.p-tp-activities-cont .c-sec-card {  
  width: calc((100% - 32px) / 2);
}

/* --- Others Button --- */
.p-tp-activities-others {
  width: 100%;
  height: 130px;
  border: 1px solid #1B2218;
  border-radius: 10px;
  background: #fff;
}
.p-tp-activities-others__inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 40px 0 150px;
}
.p-tp-activities-others__inner:before {
  position: absolute;
  content: "";
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: url("../images/common/icon_arr_wh.png") no-repeat center center;
  background-color: #4C9D97;
  background-size: 24px auto;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  transition: all .3s ease-in-out;
}
.p-tp-activities-others__inner:hover:before {
  right: 35px;
}
.p-tp-activities-others__en {
  position: absolute;
  font-size: 6.0rem;
  line-height: 1.0;
  font-family: var(--font-en-family);
  font-weight: var(--font-en-weight);
  transform: rotate(-5deg);
  transform-origin: top left;
  top: -20px;
  left: 20px;
  color: #4C9D97;
}
.p-tp-activities-others__ttl {
  font-size: 2.0rem;
  font-weight: 700;
}

/* =========================================
   1500px以下 の上書き
========================================= */
@media screen and (max-width: 1500px) {
  .p-tp-activities-cont {
    gap: 20px;
  }
  .p-tp-activities-cont .c-sec-card {
    width: calc((100% - 20px) / 2);
  }
  .p-tp-activities-others__inner {
    padding: 0 20px 0 120px;
  }
  .p-tp-activities-others__en {
    font-size: 5.0rem;
    top: -15px;
  }
  .p-tp-activities-others__ttl {
    font-size: 1.8rem;
  }
  .p-tp-activities-others__inner:before {
    right: 20px;
  }
  .p-tp-activities-others__inner:hover:before {
    right: 15px;
  }
}

/* =========================================
   1200px以下 の上書き
========================================= */
@media screen and (max-width: 1200px) {
  .p-tp-activities:after {
    width: 50%;
    top: -30px;
  }
  .p-tp-activities-others__inner {
    padding: 0 15px 0 100px;
  }
  .p-tp-activities-others__en {
    left: 10px;
  }
  .p-tp-activities-others__ttl {
    font-size: 1.6rem;
  }
  .p-tp-activities-others__inner:before {
    right: 15px;
  }
  .p-tp-activities-others__inner:hover:before {
    right: 10px;
  }
}

/* =========================================
   960px以下 の上書き
========================================= */
@media screen and (max-width: 960px) {
  .p-tp-activities:after {
    width: 55%;
  }
  .p-tp-activities__inner {
    column-gap: 20px;
  }
  .p-tp-activities-cont {
    gap: 10px;
  }
  .p-tp-activities-cont .c-sec-card {
    width: calc((100% - 10px) / 2);
  }
  .p-tp-activities-others {
    height: 110px;
  }
  .p-tp-activities-others__inner:before {
    width: 40px;
    height: 40px;
  }
  .p-tp-activities-others__en {
    font-size: 3.6rem;
    top: -10px;
    left: 5px;
  }
}

/* =========================================
   スマホ向け (767px以下) の上書き
========================================= */
@media screen and (max-width: 767px) {
  .p-tp-activities:after {
    display: none;
  }
  .p-tp-activities__inner {
    flex-direction: column;
  }
  .p-tp-activities-head {
    width: 100%;
  }
  .p-tp-activities-head__txt {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 30px;
  }
  .p-tp-activities__img {
    display: block;
    margin: 30px calc(var(--layout_margin-inline) * -1);
  }
  .p-tp-activities-cont {
    width: 100%;
  }
  .p-tp-activities-cont .c-sec-card {
    margin-bottom: 10px;
  }
  .p-tp-activities-cont .c-sec-card .c-sec-card__en,
  .p-tp-activities-others__en {
    font-size: 2.8rem;
  }
  .p-tp-activities-others {
    height: 80px;
  }
  .p-tp-activities-others__inner {
    padding-left: 30px;
  }
  .p-tp-activities-others__inner:before {
    width: 32px;
    height: 32px;
    background-size: 18px auto;
  }
  .p-tp-activities-others__ttl {
    font-size: 1.8rem;
  }
}

/* ----- Top EVENT -----*//* =========================================================
   Event Area (Base - PC First)
========================================================= */
.p-tp-event {
  position: relative;  
}
.p-tp-event:before {
  position: absolute;
  content: "";
  width: 910px;
  aspect-ratio: 910 / 920;
  top: -400px;
  right: -100px;
  background: url("../images/common/map_img.png") no-repeat center center;
  background-size: cover;
}
.p-tp-event:after {
  position: absolute;
  content: "";
  width: 550px;
  aspect-ratio: 1100 / 577;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  background: url("../images/common/family_img.png") no-repeat center center;
  background-size: cover;
}

/* --- Arrow Head --- */
.p-tp-event-head {
  position: relative;
}
.p-tp-event-head__arrow {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  column-gap: 15px;
}
.p-tp-event-head__prev,
.p-tp-event-head__next {
  width: 64px;
  aspect-ratio: 1 / 1;
  border: 1px solid #D9D4C4;
  border-radius: 50%;
  cursor: pointer;
  transition: all .3s ease-in-out;
}
.p-tp-event-head__prev {
  background: url("../images/common/icon_arr_gr.png") no-repeat center center #fff;
  background-size: 24px auto;
  transform: rotate(180deg);
}
.p-tp-event-head__next {
  background: url("../images/common/icon_arr_gr.png") no-repeat center center #fff;
  background-size: 24px auto;
}

/* Hover Effects */
@media (hover: hover) and (pointer: fine) {
  .p-tp-event-head__prev:hover,
  .p-tp-event-head__next:hover {
    background: url("../images/common/icon_arr_wh.png") no-repeat center center #344637;
    background-size: 24px auto;
    border: 1px solid #344637;
  }
}

/* --- Slide Items --- */
.p-tp-event-slide {
  margin-right: calc( var(--layout_margin-inline) * -2 );
}
.p-tp-event-item {
  margin-right: 25px;
}
.p-tp-event-item__img {
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 10px;
}
.p-tp-event-item__cat,
.p-tp-event-item__ttl {
  margin-bottom: 10px; 
}
.p-tp-event-item__ttl {
  font-size: 1.6rem;
}
.p-tp-event-item__date {
  font-size: 1.2rem;  
}

/* =========================================================
   Media Queries (画面サイズごとの上書き - 差分のみ)
========================================================= */

/* --- 1500px以下 --- */
@media screen and (max-width: 1500px) {
  .p-tp-event:before {
    width: 47.396%;
    top: -20.833vw;   /* 元の -400px */
    right: -5.208vw;
  }
  .p-tp-event:after {
    width: 28.646vw;
    top: clamp(-150px, -7.8125vw, -50px);
  }
}

/* --- 1200px以下 --- */
@media screen and (max-width: 1200px) {
  .p-tp-event-head__arrow {
    column-gap: 10px;
  }
}

/* --- 960px以下 --- */
@media screen and (max-width: 960px) {
  .p-tp-event:after {
    width: 35vw;
  }
  .p-tp-event-head__prev,
  .p-tp-event-head__next {
    width: 55px;
  }
  .p-tp-event-slide {
    margin-right: -40vw;
  }
}

/* --- 767px以下 --- */
@media screen and (max-width: 767px) {
  .p-tp-event-item__ttl {
    font-size: 1.4rem;
  }
}

/* --- 600px以下 --- */
@media screen and (max-width: 600px) {
  .p-tp-event {
    margin-top: 70vw;
  }
  .p-tp-event:before {
    width: 130vw;
    top: -130vw;
    left: 0;
  }
  .p-tp-event:after {
    width: 70vw;
    top: -50vw;
  }
  
  .p-tp-event-head__arrow {
    column-gap: 5px;
  }
  .p-tp-event-head__prev,
  .p-tp-event-head__next {
    width: 48px;
    background-color: transparent; /* 背景の白(#fff)を無くす */
  }
  
  .p-tp-event-slide {
    margin-right: -80vw;
  }
  .p-tp-event-item {
    margin-right: 15px;
  }
  .p-tp-event-item__img {
    margin-bottom: 15px;
  }
}

/* ----- Top campaign -----*/
.p-tp-campaign__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-tp-campaign-head {
  width: 50%;
}
.p-tp-campaign-head__ttl-wrap {
  margin-bottom: 50px;
}
.p-tp-campaign-head__en {
  color: #C7CF20;
  position: relative;
  width: fit-content;
}

/* 鳥の画像 */
.p-tp-campaign-head__en:before {
  position: absolute;
  content: "";
  width: clamp(40px, 4.01vw, 77px);        /* 元の 77px (スマホでも40pxはキープ) */
  aspect-ratio: 156 / 85;
  background: url("../images/common/bird_img.png") no-repeat center center;
  background-size: cover;
  top: clamp(8px, 0.781vw, 15px);          /* 元の 15px */
  right: clamp(-35px, -1.823vw, -15px);    /* 元の -35px */
}

.p-tp-campaign-head__jp {
  color: #fff;
}
.p-tp-campaign-head__catch {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.6;
}
.p-tp-campaign-head__txt {
  color: #fff;
  margin-bottom: 50px;
  font-size: 1.6rem;
}

.p-tp-campaign-cont {
  width: 50%;
  position: relative;
}

/* 紙の画像 */
.p-tp-campaign-cont:before {
  position: absolute;
  content: "";
  width: 14.844vw;
  aspect-ratio: 570 / 660;
  background: url("../images/common/paper_img.png") no-repeat center center;
  background-size: cover;
  bottom: 2.604vw;
  left: -10.417vw;
  z-index: 9;
}

/* ボタンの表示切り替え */
.p-tp-campaign-head__btn-sp {
  display: none;
}

/* =========================================================
   Media Queries (画面サイズごとの上書き - 差分のみ)
========================================================= */

/* --- 1500px以下 --- */
@media screen and (max-width: 1500px) {
  .p-tp-campaign-head {
    width: 40%; /* 余白を少し広げる */
  }
  .p-tp-campaign-head__catch {
    font-size: 2.4rem;
  }
}

/* --- 960px以下 --- */
@media screen and (max-width: 960px) {
  .p-tp-campaign-head__catch {
    font-size: 2.0rem;
  }
}

/* --- 767px以下 --- */
@media screen and (max-width: 767px) {
  .p-tp-campaign__inner {
    flex-direction: column; /* 横並びから縦並びに */
  }
  .p-tp-campaign-head {
    width: 100%;
  }
  .p-tp-campaign-head__txt {
    margin-bottom: 40px;
  }
  
  .p-tp-campaign-cont {
    width: 100%;
    margin-bottom: 30px;
  }
  
  /* スマホの時の紙の画像の再配置（390px基準のvw値） */
  .p-tp-campaign-cont:before {
    width: 26.41vw;
    top: -5.128vw;  /* 元の -20px */
    left: 5.128vw;  /* 元の 20px */
    bottom: auto;   /* 下からの指定を解除（inheritではなくautoが安全です） */
  }
  
  /* ボタンの表示切り替え */
  .p-tp-campaign-head__btn-pc {
    display: none;
  }
  .p-tp-campaign-head__btn-sp {
    display: block;
  }
}

/* --- 500px以下 --- */
@media screen and (max-width: 500px) {
  .p-tp-campaign-head__txt {
    margin-bottom: 30px;
  }
  /* 他の指定はすべて767px以下と重複していたため、これだけでOKです！ */
}

/* ----- Top shop -----*/
.p-tp-shop {
  background: url("../images/common/bg_gokayama.jpg") no-repeat center center;
  background-size: cover;
  padding: var(--cont_margin-block) 0 calc(var(--cont_margin-block) + 7.8125vw);
}
.p-tp-shop-head {
  margin-bottom: 50px;
}
.p-tp-shop-head * {
  color: #fff;
  text-align: center;
}

/* --- Link Cards --- */
.p-tp-shop-linkarea {
  display: flex;
  justify-content: space-between;
  column-gap: 25px;
}
.p-tp-shop-item {
  width: calc((100% - 25px) / 2);
}
.p-tp-shop-item__link {
  width: 100%;
  height: 140px;
  background: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 40px;
  position: relative;
  border-radius: 10px;
  transition: all .3s ease-in-out;
}
.p-tp-shop-item__link:before {
  position: absolute;
  content: "";
  width: 48px;
  height: 48px;
  border-radius: 48px;
  background: url("../images/common/icon_tab.png") no-repeat center center #344637;
  background-size: 15px auto;
  right: 40px;
  border: 1px solid #344637;
  transition: all .3s ease-in-out;
}
.p-tp-shop-item__link span {
  display: block;
}
.p-tp-shop-item__ttl {
  font-size: 2.0rem;
  font-weight: 700;
  transition: all .3s ease-in-out;
}
.p-tp-shop-item__txt {
  font-size: 1.4rem;  
  transition: all .3s ease-in-out;
  line-height: 1.4;
}

/* Hover Effects */
@media (hover: hover) and (pointer: fine) {
  .p-tp-shop-item__link:hover {
    background: #344637;
  }
  .p-tp-shop-item__link:hover * {
    color: #fff;
  }
  .p-tp-shop-item__link:hover:before {
    border: 1px solid #fff;
    background: url("../images/common/icon_tab.png") no-repeat center center #344637;
    background-size: 15px auto;
  }
}

/* =========================================================
   Media Queries (画面サイズごとの上書き - 差分のみ)
========================================================= */

/* --- 1200px以下 --- */
@media screen and (max-width: 1200px) {
  .p-tp-shop-linkarea {
    column-gap: 20px;
  }
  .p-tp-shop-item {
    width: calc((100% - 20px) / 2); /* 隙間に合わせて25pxから修正しました */
  }
  .p-tp-shop-item__link {
    height: 120px;
    padding-left: 30px;
  }
  .p-tp-shop-item__link:before {
    right: 20px;
  }
}

/* --- 960px以下 --- */
@media screen and (max-width: 960px) {
  .p-tp-shop-linkarea {
    flex-direction: column; /* 縦並びに */
    gap: 20px;
  }
  .p-tp-shop-item {
    width: 100%;
  }
}

/* --- 767px以下 --- */
@media screen and (max-width: 767px) {
  .p-tp-shop-linkarea {
    gap: 15px;
  }
  .p-tp-shop-item__link {
    height: 110px;
    padding-right: 50px;
    /* padding-left: 30px; は1200pxから引き継がれるため不要です */
  }
  .p-tp-shop-item__link:before {
    width: 32px;
    height: 32px;
    background-size: 10px auto;
    right: 15px;
  }
  .p-tp-shop-item__ttl {
    font-size: 1.8rem;
  }
}


/* ----- Top Under -----*/
.p-tp-under {
  position: relative;
  padding-top: var(--cont_margin-block03);
}

/* ランプ画像 (PC用) */
.p-tp-under:after {
  position: absolute;
  content: "";
  width: 55.313vw;    /* 元の 1062px */
  height: 31.354vw;
  aspect-ratio: 1062 / 602;
  top: -20.833vw;     /* 元の -400px */
  right: -33.854vw;
  background: url("../images/common/lump_img.png") no-repeat center center;
  background-size: cover;
  z-index: 99;
}
.p-tp-under__inner {
  display: flex;
  justify-content: space-between;
  column-gap: 5.208vw;
}

/* コンテンツ幅の割り当て */
.p-tp-news,
.p-tp-gallery {
  width: calc((100% - 5.208vw) / 2);
}

/* ----- Top News ----- */
.p-tp-news-head {
  position: relative;
  width: fit-content;
  padding-right: 7.813vw;  /* 元の 150px */
}

/* 帽子画像 */
.p-tp-news-head:before {
  position: absolute;
  content: "";
  width: 9.375vw;          /* 元の 180px */
  aspect-ratio: 180 / 115;
  top: -3.646vw;           /* 元の -70px */
  right: 0;
  background: url("../images/common/hat_img.png") no-repeat center center;
  background-size: cover;
  z-index: 99;
}

.p-tp-news-item {
  border-bottom: 1px solid #1B2218;
}
.p-tp-news-item__link {
  display: block;
  padding: 25px 0;
  transition: all .3s ease-in-out;
}
.p-tp-news-item__link:hover {
  background: #fef6e5;
}
.p-tp-news-item__head {
  display: flex;
  justify-content: flex-start;
  column-gap: 25px;
}
.p-tp-news-item__date {
  font-size: 1.4rem;
  line-height: 1.0;
  padding-top: 8px;
}
.p-tp-news-cont__btn,
.p-tp-gallery-cont__btn {
  margin-top: 50px;
}

/* ----- Top Gallery ----- */
.p-tp-gallery-head__jp {
  background: url("../images/common/icon_insta.png") no-repeat 0 center;
  background-size: 24px auto;
  padding-left: 35px;
}
.p-tp-gallery-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}
.p-tp-gallery-item {
  width: calc((100% - 30px) / 3);
  border-radius: 10px;
  overflow: hidden;
}

/* =========================================================
   Media Queries (画面サイズごとの上書き - 差分のみ)
========================================================= */

/* --- 960px以下 --- */
@media screen and (max-width: 960px) {
  .p-tp-news-item__link {
    padding: 15px 0;
  }
  .p-tp-news-item__head {
    column-gap: 20px;
  }
  
  .p-tp-gallery-inner {
    gap: 10px;
  }
  .p-tp-gallery-item {
    width: calc((100% - 20px) / 3);
  }
  
  .p-tp-news-cont__btn,
  .p-tp-gallery-cont__btn {
    margin-top: 30px;
  }
}

/* --- 767px以下 --- */
@media screen and (max-width: 767px) {
  /* PC用ランプ画像を非表示 */
  .p-tp-under:after {
    display: none;
  }  
  .p-tp-under__inner {
    flex-direction: column; /* 縦並びに */
  }
  .p-tp-news,
  .p-tp-gallery {
    width: 100%;
  }
  
  /* --- スマホ: News --- */
  .p-tp-news-head {
    padding-right: 50px;
  }
  .p-tp-news-head:before {
    width: 117px;
    aspect-ratio: 117 / 75;
    top: -40px;
  }
  .p-tp-news-item:first-child .p-tp-news-item__link {
    padding: 0 0 15px;
  }
  
  /* --- スマホ: Gallery --- */
  .p-tp-gallery {
    position: relative;
    padding-top: 32vw;
  }
  /* スマホ用ランプ画像を追加 */
  .p-tp-gallery:after {
    position: absolute;
    content: "";
    width: 100vw;
    height: 48.205vw;
    aspect-ratio: 780 / 376;
    top: 0;
    left: calc(var(--layout_margin-inline) * -1);
    background: url("../images/common/lump_img_sp.png") no-repeat center center;
    background-size: cover;
    z-index: 99;
  }
  .p-tp-gallery-head {
    position: relative;
  }
  .p-tp-gallery-head__jp {
    padding: 5px 0 5px 35px;
  }
}


/* =================================================
下層ページ
================================================= */


/* はじめての方へ
------------------------------------------------- */
/*----CONCEPT----*/
.p-first-concept__inner {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 50px;
}
.p-first-concept__head {
  width: 50%;
}
.p-first-concept__ttl {
  font-size: 3.4rem;
  font-weight: 700;
}
.p-first-concept__txt {
  font-size: 1.8rem;
  width: 50%;
}
.p-first-concept__img {
  width: 100%;
  max-width: 970px;
  margin: 0 auto -13.02vw;
  position: relative;
  z-index: 9999;
}
@media screen and (max-width: 960px) {
  .p-first-concept::after {
    top: 120px;
  }  
  .p-first-concept__inner {
    flex-direction: column; /* 横並びを解除して縦積みに */
  }  
  .p-first-concept__head {
    width: 100%;
    margin-bottom: 100px;
  }  
  .p-first-concept__txt {
    width: 100%;
  }  
  .p-first-concept__img {
    max-width: 700px;
    margin-bottom: -20vw; /* PCの 0 auto は引き継がれるため、下の余白だけ上書き */
    padding-inline: var(--layout_margin-inline);
  }
}
@media screen and (max-width: 767px) {
  .p-first-concept::after {
    top: 180px;
  }  
  .p-first-concept__inner {
    margin-bottom: 30px;
  }  
  .p-first-concept__ttl {
    font-size: 2.4rem;
  }  
  .p-first-concept__txt {
    font-size: 1.6rem;
  }  
  .p-first-concept__img {
    margin-bottom: -25vw;
  }
}

/*----ATTRACTIONS----*/
.p-first-attractions__inner {
  display: flex;
  justify-content: space-between;
  column-gap: 32px;
}
.p-first-attractions__inner .c-sec-card {  
  width: calc(( 100% - 64px ) / 3);
}
.p-first-attractions__inner .c-sec-card__txt {  
  text-align: left;
}
@media screen and (max-width: 1500px) {
  .p-first-attractions__inner {
    column-gap: 20px;
  }
  .p-first-attractions__inner .c-sec-card {  
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (max-width: 960px) {
  .p-first-attractions__inner {
    column-gap: 10px;
  }
  .p-first-attractions__inner .c-sec-card {  
    width: calc((100% - 20px) / 3);
  }
}
@media screen and (max-width: 767px) {
  .p-first-attractions__inner {
    flex-direction: column; /* 縦並びに変更 */
    gap: 20px;
  }
  .p-first-attractions__inner .c-sec-card {  
    width: 100%;
  }
}

/*----SPEND----*/
.p-first-spend-head__en {
  color: #C7CF20;
}
.p-first-spend-head__jp {
  color: #fff;
}
.p-first-spend-tab__ul {
  display: flex;
  justify-content: flex-start;
  column-gap: 15px;
}
.p-first-spend-tab__li {
  width: calc((100% - 130px) / 3);
}
.p-first-spend-tab__li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  color: #fff;
  font-weight: 700;
  font-size: 2.0rem;
  background: #4E6A53;
  border-radius: 10px 10px 0 0;
}
.p-first-spend-tab__li a.-active {
  color: #1B2218;
  background: #fff;
}
.p-first-spend-plan {
  background: #fff;
  border-radius: 0 10px 10px 10px;  
}
.p-first-spend-plan__cont-head {
  padding: 60px;
}
.p-first-spend-plan__cont-head-ttl {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5px;
}
.p-first-spend-plan__cont-head-cat {
  margin-bottom: 20px;
  text-align: center;
}
.p-first-spend-plan__cont-head-cat span {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 3px;
  background: #C7CF20;
  color: #1B2218;
  font-size: 1.6rem;
  font-weight: 700;
}
.p-first-spend-plan__cont-head-txt {
  text-align: center;
}
.p-first-spend-plan__list {
  background: #FCF9F2;
  border-radius: 0 0 10px 10px;
  padding: 70px;
}
.p-first-spend-plan__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 40px;
  padding-bottom: 40px;
  position: relative;
}
.p-first-spend-plan__item::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 100%;
  top: 0;
  left: 49px;
  background: #344637;
}
.p-first-spend-plan__item:last-child::before {
  display: none;
}
.p-first-spend-plan__time {
  width: 100px;
  aspect-ratio: 1 / 1;
  background: #344637;
  border-radius: 100px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.2rem;
  font-family: var(--font-en-family);
  font-weight: var(--font-en-weight);
}
.p-first-spend-plan__detail {
  width: calc(100% - 140px);
}
.p-first-spend-plan__ttl {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1B2218;
  margin-bottom: 10px;
}
.p-first-spend-plan__desc {
  font-size: 1.6rem;
}
@media screen and (max-width: 960px) {
  .p-first-spend-tab__ul {
    column-gap: 10px;
  }
  .p-first-spend-tab__li {
    width: calc((100% - 20px) / 3);
  }
  .p-first-spend-tab__li a {
    height: 60px;
    font-size: 1.8rem;
  }
  .p-first-spend-plan {
    border-radius: 0 0 10px 10px;
  }
  .p-first-spend-plan__cont-head {
    padding: 40px 20px;
  }
  .p-first-spend-plan__cont-head-ttl {
    font-size: 2.4rem;
  }
  .p-first-spend-plan__cont-head-cat span {
    font-size: 1.4rem;
  }
  .p-first-spend-plan__list {
    padding: 40px;
  }
  .p-first-spend-plan__time {
    font-size: 1.8rem;
  }
  .p-first-spend-plan__ttl {
    font-size: 2.0rem;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 767px) {
  .p-first-spend-head__en,
  .p-first-spend-head__jp {
    text-align: center;
  }
  .p-first-spend-tab__li a {
    font-size: 1.5rem;
  }
  .p-first-spend-plan__list {
    padding: 40px 20px;
  }
  .p-first-spend-plan__item {
    align-items: flex-start;
    column-gap: 20px;
    padding-bottom: 20px;
  }
  .p-first-spend-plan__item::before {
    width: 2px;
    left: 32px;
  }
  .p-first-spend-plan__time {
    width: 64px;
    font-size: 1.4rem;
  }
  .p-first-spend-plan__detail {
    width: calc(100% - 84px);
  }
  .p-first-spend-plan__ttl {
    font-size: 1.8rem;
  }
  .p-first-spend-plan__desc {
    font-size: 1.4rem;
  }
}


/*----GUIDE----*/
.p-first-guide__head {
  width: fit-content;
  position: relative;
  padding-right: 4.0vw;
}
.p-first-guide__head::before {
  position: absolute;
  content: "";
  width: 9.375vw;
  aspect-ratio: 180 / 115;
  top: -2.083vw;
  right: 0;
  background: url("../images/common/hat_img.png") no-repeat center center;
  background-size: cover;
  z-index: 99;
}
.p-first-guide__link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 960px) {
  .p-first-guide__head {
    padding-right: 3.0vw;
  }
  .p-first-guide__link {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-first-guide__head {
    padding-right: 40px;
  }
  .p-first-guide__head::before {
    width: 115px;
    top: -40px;
  }
}


/*----ACTIBITIES----*/
.p-activities-list {
  padding-bottom: var(--cont_margin-block);  
}
.p-activities-list-cont {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  position: relative;
  z-index: 9999;
}
.p-activities-list-cont .c-sec-card {
  width: calc(50% - 16px);
}
.p-activities-list-cont .c-sec-card::before {
  display: none;
}
.p-activities-list__box {
	text-align: center;
	margin-top: 10px;
	margin-bottom: 10px;
}
.p-activities-list__box .c-block01__box-desc span {
	font-size: 2.0rem;
}
@media screen and (max-width: 1500px) {
  .p-activities-list-cont {
    gap: 20px;
  }
  .p-activities-list-cont .c-sec-card {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 960px) {
  .p-activities-list-cont {
    gap: 10px;
  }
  .p-activities-list-cont .c-sec-card {
    width: calc(50% - 5px);
  }
}
@media screen and (max-width: 767px) {
  .p-activities-list-cont {
    flex-direction: column;
    gap: 25px;
  }
  .p-activities-list-cont .c-sec-card {
    width: 100%;
  }
	.p-activities-list__box .c-block01__box-desc span {
		font-size: 1.6rem;
	}
}

/* --- p-activities-list-others --- */
.p-activities-list-others {
  width: 100%;
  border: 1px solid #1B2218;
  border-radius: 10px;
  padding: 40px 20px;
  background: #fff;
}
.p-activities-list-others__inner {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
}
.p-activities-list-others__en {
  position: absolute;
  font-size: 8.0rem;
  line-height: 1.0;
  font-family: var(--font-en-family);
  font-weight: var(--font-en-weight);
  transform: rotate(-15deg);
  transform-origin: top left;
  color: #4C9D97;
  top: -30px;
  left: 0;
}
.p-activities-list-others__ttl {
  font-size: 2.0rem;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 1500px) {
  .p-activities-list-others__en {
    font-size: 6.0rem;
    top: -20px;
  }
  .p-activities-list-others__ttl {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1200px) {
  .p-activities-list-others {
    padding: 40px 15px;
  }
  .p-activities-list-others__en {
    left: 10px;
  }
}
@media screen and (max-width: 960px) {
  .p-activities-list-others {
    padding: 30px 15px;
  }
  .p-activities-list-others__inner::before {
    width: 40px;
    height: 40px;
  }
  .p-activities-list-others__en {
    font-size: 3.6rem;
    left: 5px;
  }
}
@media screen and (max-width: 767px) {
  .p-activities-list-others {
    padding: 15px;
    margin-top: 10px;
  }
  .p-activities-list-others__ttl {
    margin-bottom: 15px;
    text-align: center;
  }
  .p-activities-list-others__en {
    font-size: 2.8rem;
    top: -25px;
    left: -10px;
  }
}

/* --- p-activities-list-contact --- */
.p-activities-list-contact {
  background: #FCF9F2;
  border-radius: 10px;
  width: 100%;
  padding: 40px;
  text-align: center;
}
.p-activities-list-contact__txt {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1B2218;
}
.p-activities-list-contact__link {
  display: flex;
  justify-content: center;
  column-gap: 30px;
}
@media screen and (max-width: 1500px) {
  .p-activities-list-contact__txt {
    font-size: 2.0rem;
  }
  .p-activities-list-contact__link {
    column-gap: 20px;
  }
}
@media screen and (max-width: 960px) {
  .p-activities-list-contact {
    padding: 30px;
  }
  .p-activities-list-contact__txt {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-activities-list-contact {
    padding: 15px;
  }
  .p-activities-list-contact__link {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

.p-activities-enjoy {
  background:url("../images/activities/activities_enjoy_img.jpg") no-repeat center center;
  background-size: cover;
  padding-top: 100px;
}
.p-activities-enjoy-head * {
  color: #fff;
  margin-bottom: 30px;
}
.p-activities-enjoy__txt {
  color: #fff;
  margin-bottom: 40px;
}


/* --- p-activities-overseas --- */
.p-activities-overseas {
  background: url("../images/activities/activities_overseas_img.jpg") no-repeat center center;
  background-size: cover;
  text-align: center;
  position: relative;
  padding: 300px 0;
  color: #fff;
}
.p-activities-overseas__ttl {
  color: #fff;
  margin-bottom: 50px;
}
.p-activities-overseas::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 7.8125vw;
  aspect-ratio: 1920 / 150;
  background: url("../images/common/bg_top.png") no-repeat center center;
  background-size: cover;
  transform: rotate(-180deg);
  top: 0;
  left: 0;
  z-index: 8;
}
@media screen and (max-width: 1200px) {
  .p-activities-overseas {
    padding: 200px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-activities-overseas {
    padding: 100px 0;
  }
}

/* BASE会員
------------------------------------------------- */
.p-members-plan__inner {
  background: url("../images/members/icon_glass.png") no-repeat 0 0;
  background-size: 105px auto;
  padding-bottom: 100px;
  z-index: 99;
}
.p-members-plan__lead {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2.4rem;
  font-weight: 700;
}
.p-members-plan__body {
  margin-top: 40px;
}
.p-members-plan__table {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: end;
  margin-bottom: 20px;
}
.p-members-plan__labels {
  display: grid;
  grid-template-rows: 151px repeat(3, 109px);
}
.p-members-plan__label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  color: #1B2218;
  background: #FCF9F2;
  border-radius: 12px 0 0 12px;
  border: 1px solid #1B2218;
  border-right: none;
  margin-bottom: 10px;
}
.p-members-plan__label--blank {
  background: transparent;
  border: none;
}
.p-members-plan__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.p-members-plan-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #1B2218;
}
.p-members-plan-card__head {
  min-height: 190px;
  padding: 36px 24px 24px;
  text-align: center;
}
.p-members-plan-card__title {
  font-size: 2.0rem;
  font-weight: 700;
  color: #1B2218;
  margin: 0 0 10px;
}
.p-members-plan-card__price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.p-members-plan-card__price-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 70px;
  border: 1px solid #222;
  border-radius: 6px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.0;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.08em;
  background: #fff;
  color: #222;
}
.p-members-plan-card__price-value {
  font-size: clamp(4.2rem, 5vw, 8.0rem);
  font-weight: 500;
  line-height: 1;
  color: #1e281d;
  letter-spacing: -0.04em;
}
.p-members-plan-card__yen {
  font-size: 6.0rem;
  letter-spacing: -0.04em;
}
.p-members-plan-card__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  padding: 18px 16px;
  text-align: center;
  background: #FCF9F2;
  margin-bottom: 10px;
}
.p-members-plan-card__row:last-of-type {
  margin-bottom: 0;
  padding: 15px;
}
.p-members-plan-card__label {
  display: none;
}
.p-members-plan-card__main {
  margin: 0;
  font-size: clamp(1.8rem, 2vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: #222;
}
.p-members-plan-card__main span {
  font-size: 4.0rem;
  font-weight: 500;
  line-height: 1.2;
}
.p-members-plan-card__main span.-txt-s {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
}
.p-members-plan-card--featured {
  position: relative;
  background: #344637;
}
.p-members-plan-card--featured::before {
  position: absolute;
  content: "";
  background: url("../images/members/label_recommend.png") no-repeat 0 0;
  background-size: 100px auto;
  width: 100px;
  height: 100px;
  top: 0;
  left: 0;
}
.p-members-plan-card--featured::after {
  position: absolute;
  content: "募集準備中\A BASEアスリート会員\A まもなく公開";

  white-space: pre-wrap;
  display: flex;
  justify-content: center; /* 横方向の中央揃え */
  align-items: center;     /* 縦方向の中央揃え */
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 1);
  width: calc( 100% - 40px );
  height: calc( 100% - 110px );
  top: 90px;
  left: 20px;
  border-radius: 10px;
}
.p-members-plan-card--featured .p-members-plan-card__head {
  background: #314332;
}
.p-members-plan-card--featured .p-members-plan-card__title,
.p-members-plan-card--featured .p-members-plan-card__main,
.p-members-plan-card--featured .p-members-plan-card__sub,
.p-members-plan-card--featured .p-members-plan-card__price-label {
  color: #fff;
}
.p-members-plan-card--featured .p-members-plan-card__price-label {
  border-color: #fff;
  background: transparent;
}
.p-members-plan-card--featured .p-members-plan-card__yen,
.p-members-plan-card--featured .p-members-plan-card__price-value,
.p-members-plan-card--featured .p-members-plan-card__main strong,
.p-members-plan-card--featured .p-members-plan-card__main span {
  color: #d7e31b;
}
.p-members-plan-card--featured .p-members-plan-card__row {
  background: #58765a;
  border-top-color: rgba(255, 255, 255, 0.12);
}
.p-members-plan-card--featured .p-members-plan-card__sub {
  color: rgba(255, 255, 255, 0.8);
}
.p-members-plan-card__badge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 12px 0 0 10px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #111;
  background: linear-gradient(135deg, #38ef72 0 50%, transparent 50% 100%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.p-members-plan__note {
  font-size: 1.4rem;
  line-height: 1.6;
  text-align: right;
  color: #1B2218;
}
@media screen and (max-width: 1400px) {
  .p-members-plan__lead {
    font-size: 2.2rem;
  }
  .p-members-plan__table {
    grid-template-columns: 130px 1fr;
  }
  .p-members-plan-card__title {
    font-size: 1.8rem;
  }
  .p-members-plan-card__price-label {
    height: 60px;
    font-size: 1.6rem;
  }
  .p-members-plan-card__yen {
    font-size: 5.0rem;
  }
  .p-members-plan-card__row:last-of-type {
    padding: 15px 5px;
  }
  .p-members-plan-card__main {
    font-size: 1.8rem;
  }
  .p-members-plan-card__main span {
    font-size: 3.0rem;
  }
  .p-members-plan-card--featured .p-members-plan-card__main span {
    color: #fff;
  }
	.p-members-plan-card__main span.-txt-s {
	  font-size: 1.6rem;
	}
  .p-members-plan-card--featured::before {
    width: 90px;
    height: 90px;
    background-size: cover;
  }
}
@media screen and (max-width: 1200px) {
  .p-members-plan__lead {
    font-size: 2.0rem;
  }
  .p-members-plan__table {
    font-size: 1.8rem;
  }
  .p-members-plan__labels {
    grid-template-rows: 150px repeat(3, 120px);
  }
  .p-members-plan-card__title {
    font-size: 1.6rem;
  }
  .p-members-plan-card__price {
    gap: 10px;
  }
  .p-members-plan-card__price-label {
    width: 25px;
    height: 50px;
    font-size: 1.4rem;
  }
  .p-members-plan-card__price-value {
    font-size: 5.0rem;
  }
  .p-members-plan-card__row {
    min-height: 110px;
  }
  .p-members-plan-card__main {
    font-size: 1.6rem;
  }
  .p-members-plan-card--featured::before {
    width: 80px;
    height: 80px;
  }
	.p-members-plan-card--featured::after {
		font-size: 1.4rem;
	}
}
@media screen and (max-width: 960px) {
  .p-members-plan__labels {
    grid-template-rows: 120px repeat(3, 120px);
  }
  .p-members-plan-card__head {
    min-height: 100px;
    padding: 30px 10px 20px;
  }
  .p-members-plan-card__title {
    font-size: 1.4rem;
  }
  .p-members-plan-card__price-label {
    height: 40px;
    font-size: 1.3rem;
  }
  .p-members-plan-card__price-value {
    font-size: 4.0rem;
  }
  .p-members-plan-card__yen {
    font-size: 3.0rem;
  }
	.p-members-plan-card--featured::after {
	  width: calc( 100% - 20px );
	  height: calc( 100% - 80px );
	  top: 70px;
	  left: 10px;
	}
}
@media screen and (max-width: 767px) {
  .p-members-plan__inner {
    background: none;
    position: relative;
  }
  .p-members-plan__inner::before {
    position: absolute;
    content: "";
    width: 50px;
    aspect-ratio: 265 / 271;
    background: url("../images/members/icon_glass.png") no-repeat 0 0;
    background-size: cover;
    top: -50px;
    left: 0;
    z-index: 999;
  }
  .p-members-plan__table,
  .p-members-plan__cards {
    display: block;
  }
  .p-members-plan__labels {
    display: none;
  }
  .p-members-plan-card {
    margin-bottom: 20px;
  }
  .p-members-plan-card__title {
    font-size: 2.0rem;
    margin-bottom: 0;
  }
  .p-members-plan-card__price-label {
    width: 30px;
    height: 70px;
    font-size: 1.8rem;
  }
  .p-members-plan-card__price-value {
    font-size: 8.0rem;
  }
  .p-members-plan-card--featured .p-members-plan-card__price-value {
    font-size: 9.0rem;
  }
  .p-members-plan-card__yen {
    font-size: 6.0rem;
  }
  .p-members-plan-card__row,
  .p-members-plan-card__row:last-of-type {
    flex-direction: row;
    justify-content: space-between;
    min-height: 60px;
    padding: 10px 20px;
  }
  .p-members-plan-card__row {
    margin-bottom: 5px;
  }
  .p-members-plan-card__main span {
    font-size: 4.0rem;
  }
	.p-members-plan-card__main span.-txt-s {
	  font-size: 1.4rem;
	}
  .p-members-plan-card__label {
    display: block;
    font-size: 1.4rem;
    width: 40%;
    text-align: left;
  }
  .p-members-plan-card--featured::before {
    width: 100px;
    height: 100px;
  }
	.p-members-plan-card--featured::after {
	  height: calc( 100% - 90px );
	  top: 80px;
	}
  .p-members-plan-card--featured .p-members-plan-card__label {
    color: #fff;
  }
  .p-members-plan-card__cont {
    width: 60%;
  }
  .p-members-plan-card--featured .p-members-plan-card__main span {
    color: #d7e31b;
  }
}

/*---- p-members-benefits ----*/
.p-members-benefits {
  background: url("../images/members/members_benefits_img.jpg") no-repeat center center;
  background-size: cover;
  padding: 150px 0 300px;
  color: #fff;
}
.p-members-benefits-head * {
  color: #fff;
}
.p-members-benefits-head__en {
  position: relative;
  width: fit-content;
}
/*.p-members-benefits-head__en::before {
  position: absolute;
  content: "PREMIUM";
  width: 100px;
  aspect-ratio: 1 / 1;
  top: -30px;
  right: -70px;
  background: url("../images/members/icon_label02.png") no-repeat center center;
  background-size: cover;
  color: #1B2218;
  font-size: 1.4rem;
  font-family: "Reddit Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  display: flex;
  justify-content: center;
  align-items: center;
}*/
.p-members-benefits__txt {
  margin-bottom: 20px;
  color: #fff;
}
.p-members-benefits__txt span {
  color: #C7CF20;
  font-size: 2.0rem;
}
.p-members-benefits__ul {
  margin-bottom: 50px;
}
.p-members-benefits__li {
  padding: 0 0 0 40px;
  margin-bottom: 10px;
  background: url("../images/members/icon_check02.png") no-repeat 0 3px;
  background-size: 28px auto;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}
.p-members-benefits__li:first-child {
  background-position: 0 11px;
}
.p-members-benefits__num {
  color: #C7CF20;
  font-size: 3.0rem;
  font-weight: 700;
  line-height: 1.4;
}
.p-members-benefits__note {
  font-size: 1.4rem;
  margin-top: 20px;
}
@media screen and (max-width: 1200px) {
  .p-members-benefits {
    padding: 150px 0 250px;
  }
  .p-members-benefits-head__en::before {
    top: -50px;
  }
}
@media screen and (max-width: 960px) {
  .p-members-benefits {
    padding: 150px 0 200px;
  }
}
@media screen and (max-width: 767px) {
  .p-members-benefits {
    padding: 100px 0;
  }
  .p-members-benefits-head__en {
    width: 100%;
  }
  .p-members-benefits-head__en::before {
    width: 80px;
    right: 0;
    font-size: 1.1rem;
  }
  .p-members-benefits__txt {
    font-size: 1.6rem;
  }
  .p-members-benefits__ul {
    margin-bottom: 30px;
  }
  .p-members-benefits__li {
    padding: 0 0 0 30px;
    background-size: 20px auto;
    font-size: 1.8rem;
  }
  .p-members-benefits__li:first-child {
    background-position: 0 3px;
  }
  .p-members-benefits__num {
    font-size: 2.2rem;
  }
  .p-members-benefits__note {
    font-size: 1.2rem;
  }
}

/*---p-campaign-main---*/
.p-campaign-main {
  padding-top: min(2.604vw, 50px);
}
.p-campaign-main__label {
  text-align: center;
  position: relative;
}
.p-campaign-main__label::before {
  position: absolute;
  content: "";
  aspect-ratio: 1100 / 577;
  width: 50%;
  bottom: 0;
  left: -15%;
  background: url("../images/common/family_img.png") no-repeat 0 0;
  background-size: cover;
  z-index: 999;
}
.p-campaign-main__label::after {
  position: absolute;
  content: "";
  aspect-ratio: 407 / 192;
  width: min(10.417vw, 200px);
  bottom: min(1.563vw, 30px);
  left: 65%;
  background: url("../images/campaign/campaign_fukidashi.png") no-repeat 0 0;
  background-size: cover;
  z-index: 999;
}
.p-campaign-main__label span {
  font-size: 2.4rem;
  font-weight: 700;
  display: inline-block;
  position: relative;
  padding: 0 20px;
  margin-bottom: 30px;
  line-height: 1.0;
}
.p-campaign-main__label span::before,
.p-campaign-main__label span::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 25px;
  background: #000;
  top: 1px;
}
.p-campaign-main__label span::before {
  transform: rotate(-30deg);
  left: 0;
}
.p-campaign-main__label span::after {
  transform: rotate(30deg);
  right: 0;
}
@media screen and (max-width: 1200px) {
  .p-campaign-main__label::after {
    width: 16.667vw;
    bottom: 2.5vw;
  }
}
@media screen and (max-width: 960px) {
  .p-campaign-main {
    padding-top: 30px;
  }
  .p-campaign-main__label::before {
    width: 30%;
    bottom: 20px;
    left: 0;
  }
  .p-campaign-main__label::after {
    left: 67%;
  }
}
@media screen and (max-width: 767px) {
  .p-campaign-main {
    padding-top: 70px;
  }
  .p-campaign-main__label::before {
    width: 220px;
    bottom: 60px;
  }
  .p-campaign-main__label::after {
    width: 90px;
    bottom: 65px;
    left: 70%;
  }
  .p-campaign-main__label span {
    font-size: 2.0rem;
    margin-bottom: 20px;
  }
}

/*---- p-campaign-coupon ----*/
.p-campaign-coupon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1000px;
  height: 450px;
  background: url("../images/campaign/coupon_bg_pc.png") no-repeat center center;
  background-size: cover;
  margin: 0 auto 50px;
  border-radius: 25px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
}
.p-campaign-coupon__cont {
  width: calc(100% - 190px);
}
.p-campaign-coupon__area {
  font-size: 2.0rem;
  font-weight: 700;
  text-align: center;
}
.p-campaign-coupon__stars {
  color: #36FF7C;
  text-align: center;
  margin-bottom: 5px;
}
.p-campaign-coupon__catch {
  font-size: 3.0rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 20px;
}
.p-campaign-coupon__num {
  font-size: 5.0rem;
  font-weight: 700;
  line-height: 1.0;
  font-family: "Reddit Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  text-align: center;
  letter-spacing: 0em;
}
.p-campaign-coupon__prize {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 15px;
  margin-bottom: 10px;
}
.p-campaign-coupon__prize-val {
  font-size: 18rem;
  color: #F26924;
  line-height: 0.8;
  font-family: "Reddit Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  text-align: center;
  letter-spacing: -0.08em;
}
.p-campaign-coupon__prize-txt {
  font-size: 4.6rem;
  font-weight: 700;
  color: #F26924;
  line-height: 1.2;
  letter-spacing: 0em;
}
.p-campaign-coupon__attention {
  background: #FCF9F2;
  padding: 10px 30px;
  border-radius: 8px;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
}
.p-campaign-coupon__attention-main {
  font-size: 1.8rem;
  font-weight: 700;
}
.p-campaign-coupon__hl {
  color: #F26924;
}
.p-campaign-coupon__attention-sub {
  font-size: 1.2rem;
}
.p-campaign-coupon__en {
  width: 190px;
  height: 450px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 50px;
}
.p-campaign-coupon__en p {
  margin: 0;
  white-space: nowrap;
  color: #fff;
  transform: rotate(90deg);
  font-size: 2.8rem;
  font-weight: 700;
  font-family: "Reddit Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  text-align: center;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1200px) {
  .p-campaign-coupon {
    width: 83.333vw;
    height: 37.5vw;
    margin: 0 auto 4.167vw;
    border-radius: 2.083vw;
    box-shadow: 0 0 2.083vw rgba(0, 0, 0, 0.15);
  }
  .p-campaign-coupon__cont {
    width: calc(100% - 15.833vw);
  }
  .p-campaign-coupon__area {
    font-size: 1.667vw;
  }
  .p-campaign-coupon__stars {
    margin-bottom: 0.417vw;
  }
  .p-campaign-coupon__catch {
    font-size: 2.5vw;
    margin-bottom: 1.667vw;
  }
  .p-campaign-coupon__num {
    font-size: 4.167vw;
  }
  .p-campaign-coupon__prize {
    column-gap: 1.25vw;
    margin-bottom: 0.833vw;
  }
  .p-campaign-coupon__prize-val {
    font-size: 15vw;
  }
  .p-campaign-coupon__prize-txt {
    font-size: 3.833vw;
  }
  .p-campaign-coupon__attention {
    padding: 0.833vw 2.5vw;
    border-radius: 0.667vw;
  }
  .p-campaign-coupon__attention-main {
    font-size: 1.5vw;
  }
  .p-campaign-coupon__attention-sub {
    font-size: 1vw;
  }
  .p-campaign-coupon__en {
    width: 15.833vw;
    height: 37.5vw;
    padding-right: 4.167vw;
  }
  .p-campaign-coupon__en p {
    font-size: 2.333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-campaign-coupon {
    flex-direction: column;
    width: 358px;
    height: 350px;
    background-image: url("../images/campaign/coupon_bg_sp.png");
    margin-bottom: 40px;
  }
  .p-campaign-coupon__cont {
    width: 100%;
    height: 300px;
    padding-top: 20px;
  }
  .p-campaign-coupon__area {
    font-size: 1.4rem;
    line-height: 1.0;
    margin-bottom: 5px;
  }
  .p-campaign-coupon__stars {
    line-height: 1.0;
  }
  .p-campaign-coupon__catch {
    font-size: 2.0rem;
    margin-bottom: 5px;
    line-height: 1.6;
  }
  .p-campaign-coupon__num {
    font-size: 3.0rem;
  }
  .p-campaign-coupon__prize {
    margin-bottom: 10px;
  }
  .p-campaign-coupon__prize-val {
    font-size: 7.8rem;
  }
  .p-campaign-coupon__prize-txt {
    font-size: 2.0rem;
  }
  .p-campaign-coupon__attention {
    width: 290px;
  }
  .p-campaign-coupon__attention-main {
    font-size: 1.3rem;
  }
  .p-campaign-coupon__hl {
    font-weight: 700;
  }
  .p-campaign-coupon__attention-sub {
    font-size: 1.0rem;
  }
  .p-campaign-coupon__en {
    width: 100%;
    height: 50px;
    padding-right: 0;
  }
  .p-campaign-coupon__en p {
    transform: none;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 400px) {
  .p-campaign-coupon {
    width: 89.5vw;
    height: 87.5vw;
  }
  .p-campaign-coupon__cont {
    height: 75vw;
    padding-top: 5vw;
  }
  .p-campaign-coupon__area {
    font-size: 3.5vw;
    margin-bottom: 1.25vw;
  }
  .p-campaign-coupon__catch {
    font-size: 5vw;
    margin-bottom: 1.25vw;
  }
  .p-campaign-coupon__num {
    font-size: 7.5vw;
  }
  .p-campaign-coupon__prize {
    margin-bottom: 2.0vw;
  }
  .p-campaign-coupon__prize-val {
    font-size: 19.5vw;
  }
  .p-campaign-coupon__prize-txt {
    font-size: 5vw;
  }
  .p-campaign-coupon__attention {
    width: 72.5vw;
    padding: 1.5vw 7.5vw;
  }
  .p-campaign-coupon__attention-main {
    font-size: 3.25vw;
  }
  .p-campaign-coupon__attention-sub {
    font-size: 2.5vw;
  }
  .p-campaign-coupon__en {
    height: 12.5vw;
  }
  .p-campaign-coupon__en p {
    font-size: 4.25vw;
  }
}

/* ---- p-campaign-gift ---- */
.p-campaign-gift {
  padding: 50px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #1B2218;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}
.p-campaign-gift img {
  width: 100%;
  max-width: 1000px;
}
@media screen and (max-width: 767px) {
  .p-campaign-gift {
    /* 変化する内側の余白のみを上書き */
    padding: 10px;
  }
}

/* ---- p-campaign-outline ---- */
.p-campaign-outline__list {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #1B2218;
  overflow: hidden;
}
.p-campaign-outline__item {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #1B2218;
}
.p-campaign-outline__item:first-child {
  border-top: none;
}
.p-campaign-outline__term {
  width: 280px;
  background: #FCF9F2;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px;
  border-right: 1px solid #1B2218;
}
.p-campaign-outline__desc {
  width: calc(100% - 280px);
  padding: 30px 40px;
}
@media screen and (max-width: 960px) {
  .p-campaign-outline__term {
    width: 200px;
  }
  .p-campaign-outline__desc {
    width: calc(100% - 200px);
  }
}
@media screen and (max-width: 767px) {
  .p-campaign-outline {
    padding-top: 0;
  }
  .p-campaign-outline__item {
    flex-direction: column;
  }
  .p-campaign-outline__term,
  .p-campaign-outline__desc {
    width: 100%;
    padding: 15px;
    font-size: 1.4rem;
  }
  .p-campaign-outline__term {
    justify-content: flex-start;
    border-right: none;
    border-bottom: 1px solid #1B2218;
  }
}


.p-campaign-flow__cont {
  margin-bottom: 50px;
}
.p-campaign-flow__cont .c-sec-flow02-cont__step {
  padding-block: 40px 30px; 
}
.p-campaign-flow__btn {
  text-align: center;
  display: flex;
  gap: 10px;
  flex-direction: column;
}


.p-campaign-link {
  display: flex;
  justify-content: center;
  column-gap: 30px;
  padding: 50px 0 0;
}
.p-campaign-link__btn {
  width: calc( (100% - 30px) / 2 );
  max-width: 480px;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-campaign-link {
    padding: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-campaign-link {
	  padding: 50px 0 0;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .p-campaign-link__btn {
	  width: 100%;
    max-width: 400px;
  }
}

/* ---- p-campaign-gokayama ---- */
.p-campaign-gokayama {
 background: url("../images/campaign/gokayama_img.jpg") no-repeat center center;
 background-size: cover;
 padding: min(13.021vw, 250px) 0 min(26.042vw, 500px);
 margin-bottom: var(--cont_margin-block02);
 color: #fff;
 position: relative;
}
.p-campaign-gokayama::before {
 position: absolute;
 content: "";
 width: 100%;
 height: 7.813vw; /* 150px相当 */
 aspect-ratio: 1920 / 150;
 background: url("../images/common/bg_top.png") no-repeat center center;
 background-size: cover;
 transform: rotate(-180deg);
 top: 0;
 left: 0;
 z-index: 8;
}
.p-campaign-gokayama * {
 color: #fff;
}
.p-campaign-gokayama__en {
 position: relative;
 width: fit-content;
}
.p-campaign-gokayama__body {
 padding-right: min(10.417vw, 200px);
}
.p-campaign-gokayama__txt {
 color: #fff;
 margin-bottom: 20px;
}
.p-campaign-gokayama__map {
 position: absolute;
 width: min(35.938vw, 690px);
 aspect-ratio: 690 / 698;
 right: -200px;
}
@media screen and (max-width: 1200px) {
 .p-campaign-gokayama {
  padding: 150px 0 250px;
 }
 .p-campaign-gokayama__body {
  padding-right: 300px;
 }
 .p-campaign-gokayama__map {
  width: 500px;
  right: -50px;
 }
}
@media screen and (max-width: 767px) {
 .p-campaign-gokayama {
  padding: 100px 0 300px;
 }
 .p-campaign-gokayama__body {
  padding-right: 0;
 }
 .p-campaign-gokayama__txt {
  font-weight: 700;
  font-size: 1.6rem;
 }
 .p-campaign-gokayama__map {
  width: 100vw;
  max-width: 380px;
  right: -10vw;
 }
}

.p-access-info,
.p-access-info .c-block01,
.p-access-gmap {
  position: relative;
  z-index: 99;
}
.p-access-info .c-block01 {
  align-items: flex-start;
  margin-bottom: 0;
}
.p-access-map {
  z-index: 99;
}
.p-access-info::after {
  position: absolute;
  content: "";
  aspect-ratio: 1078 / 1124;
  width: clamp(350px, 35vw, 539px);
  top: clamp(-250px, -13vw, -50px);
  left: 0;
  background: url("../images/common/lump_img02.png") no-repeat center center;
  background-size: cover;
  z-index: 9;
}
.p-access-info .c-block01:first-child::before {
  position: absolute;
  content: "";
  width: min(13.125vw, 252px);
  aspect-ratio: 252 / 165;
  background: url("../images/common/shoes_img.png") no-repeat center center;
  background-size: cover;
  bottom: max(-2.604vw, -50px);
  left: calc(50% - min(14.063vw, 270px));
}
.p-access-info .c-block01:first-child::after {
  position: absolute;
  content: "";
  width: min(35.938vw, 690px);
  aspect-ratio: 690 / 698;
  background: url("../images/common/map_img.png") no-repeat center center;
  background-size: cover;
  bottom: calc(var(--cont_margin-block) * -2);
  left: max(-5.208vw, -100px);
  z-index: -1;
}
.p-access-map__ul {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}
.p-access-map__li {
  font-size: 1.8rem;
  font-weight: 700;
  padding: 0 0 5px 25px;
  background: url("../images/common/icon-check.png") no-repeat 0 12px;
  background-size: 16px auto;
}
@media screen and (max-width: 767px) {
  .p-access-info {
    padding-bottom: 400px;
  }
  .p-access-info::after {
    display: none;
  }
  .p-access-info .c-block01:first-child::before {
    width: 168px;
    bottom: -350px;
    left: 50%;
    transform: translateX(-50%);
  }
  .p-access-info .c-block01:first-child::after {
    width: calc(100% + var(--layout_margin-inline) * 2);
    height: 500px;
    aspect-ratio: inherit;
    background: url("../images/common/lump_img02_sp.png") no-repeat left 0 bottom 280px,
                url("../images/common/map_img.png") no-repeat left 120px center;
    background-size: 100vw auto, 600px auto;
    bottom: -450px;
    left: calc(var(--layout_margin-inline) * -1);
    right: 0;
  }
  .p-access-gmap iframe {
    height: 400px;
  }
  .p-access-map__ul {
    flex-direction: column;
    gap: 0;
  }
  .p-access-map__li {
    font-size: 1.4rem;
    background-position: 0 7px;
  }
}
@media screen and (max-width: 500px) {
  .p-access-info .c-block01:first-child::after {
    background: url("../images/common/lump_img02_sp.png") no-repeat left 0 bottom 280px,
                url("../images/common/map_img.png") no-repeat left 50px center;
    background-size: 100vw auto, 450px auto;
  }
}


.p-status-main {
  margin-bottom: 60px;
  border-radius: 10px;
  border: 1px solid #1B2218;
  background: #FFFFFF;
  display: flex;
  justify-content: space-between;
}
.p-status-main__block:first-child {
  width: 42%;
  border-right: 1px solid #1B2218;
}
.p-status-main__block:last-child {
  width: 58%;
}
.p-status-main__ttl {
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.0rem;
  font-weight: 700;
  border-bottom: 1px solid #1B2218;
}
.p-status-main__inner {
  padding: 40px;
}
.p-status-main__status {
  margin-bottom: 10px;
}
.p-status-main__status p {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  height: 84px;
}
.p-status-main__status-open {
  background: #36FF7C;
}
.p-status-main__status-close {
  background: #5c5050;
}
.p-status-main__status-maintenance {
  background: #ff0000;
}
.p-status-main__status p span {
  display: inline-block;
  font-size: 3.0rem;
  font-weight: 700;
  padding: 0 0 0 25px;
  position: relative;
}
.p-status-main__status-close span,
.p-status-main__status-maintenance span {
  color: #fff;
}
.p-status-main__status p span::before {
  position: absolute;
  content: "";
  width: 12px;
  aspect-ratio: 1 / 1;
  background: #fff;
  border-radius: 5px;
  box-shadow: 5px 10px 20px 0px rgba(0, 0, 0, 0.15);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.p-status-main__weather {
  text-align: center;
  font-weight: 700;
}
.p-status-main__weather span {
  font-weight: 700;
  display: inline-block;
  padding: 0 0 0 30px;
}
.p-status-main__weather-hare,
.p-status-main__weather-cloud,
.p-status-main__weather-rain {
  background-repeat: no-repeat;
  background-position: 0 center;
  background-size: 20px auto;
}
.p-status-main__weather-hare {
  background-image: url("../images/status/sunny.png");
}
.p-status-main__weather-cloud {
  background-image: url("../images/status/cloud.png");
}
.p-status-main__weather-rain {
  background-image: url("../images/status/rain.png");
}
.p-status-main__date {
  font-size: 1.4rem;
  text-align: center;
}
.p-status-main-activity {
  display: flex;
  justify-content: space-between;
  max-width: 480px;
  margin: 0 auto 10px;
}
.p-status-main-activity:last-of-type {
  margin-bottom: 20px;
}
.p-status-main-activity__ttl {
  font-size: 1.6rem;
  position: relative;
  padding: 0 0 0 20px;
}
.p-status-main-activity__ttl::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background: #36FF7C;
  border-radius: 8px;
  top: 12px;
  left: 0;
}
.p-status-main-activity__status span {
  display: inline-block;
  padding: 3px 10px;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 6px;
}
.p-status-main-activity__status-open {
  background: #36FF7C;
}
.p-status-main-activity__status-close {
  background: #5c5050;
  color: #fff;
}
.p-status-main-activity__status-maintenance {
  background: #ff0000;
  color: #fff;
}
.p-en_block {
  margin-bottom: var(--cont_margin-block03);
}
.p-en_block:last-of-type {
  margin-bottom: 0;
}
.p-en-book {
  text-align: center;
}
.p-en-book__txt {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-status-main {
    margin-bottom: 40px;
    flex-direction: column;
  }
  .p-status-main__block:first-child {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #1B2218;
  }
  .p-status-main__block:last-child {
    width: 100%;
  }
  .p-status-main__ttl {
    height: 55px;
    font-size: 1.8rem;
  }
  .p-status-main__inner {
    padding: 20px;
  }
  .p-status-main__status p {
    height: 65px;
  }
  .p-status-main__status p span {
    font-size: 2.4rem;
    line-height: 1.0;
  }
  .p-status-main-activity {
    align-items: center;
  }
  .p-status-main-activity__ttl {
    font-size: 1.4rem;
    padding: 0 0 0 15px;
  }
  .p-status-main-activity__ttl::before {
    top: 9px;
  }
  .p-status-main-activity__status span {
    font-size: 1.4rem;
  }
  .p-en {
    padding-top: 50px;
  }
}



.p-event-list__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
.p-event-list__inner::after {
  content: "";
  display: block;
  width: calc((100% - 60px) / 3);
}
.p-event-list-item {
  width: calc((100% - 60px) / 3);
}
.p-event-list-item__img {
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 10px;
}
.p-event-list-item__cat,
.p-event-list-item__ttl,
.p-event-detail__cat,
.p-event-detail__ttl {
  margin-bottom: 10px;
}
.p-event-list-item__ttl {
  font-size: 1.6rem;
}
.p-event-list-item__date,
.p-event-detail__date {
  font-size: 1.2rem;
}
@media screen and (max-width: 960px) {
  .p-event-list__inner {
    gap: 20px;
  }
  .p-event-list__inner::after,
  .p-event-list-item {
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (max-width: 767px) {
  .p-event-list__inner {
    gap: 10px;
  }
  .p-event-list__inner::after,
  .p-event-list-item {
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (max-width: 500px) {
  .p-event-list__inner {
    flex-direction: column;
    gap: 30px;
  }
  .p-event-list__inner::after {
    display: none;
  }
  .p-event-list-item {
    width: 100%;
  }
  .p-event-list-item__img {
    margin-bottom: 15px;
  }
  .p-event-list-item__ttl {
    font-size: 1.4rem;
  }
  .p-event-detail__ttl {
    font-size: 2.2rem;
  }
}
.p-event-detail__head {
  margin-bottom: 30px;
}
.p-event-detail__cont p img {
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
  max-width: 100%;
  height: auto;
}
.p-event-detail__ttl {
  font-size: 2.6rem;
  font-weight: 700;
}
.p-event-detail__cont {
  margin-bottom: var(--cont_margin-block03);
}
.p-event-detail__cont p,
.p-event-detail__cont ul,
.p-event-detail__cont ol {
  font-size: 1.8rem;
  margin-bottom: 30px;
}
.p-event-detail__cont h2,
.p-event-detail__cont h3,
.p-event-detail__cont h4 {
  margin-bottom: 10px;
  font-weight: bold;
  line-height: 1.4;
}
.p-event-detail__cont h2,
.p-event-detail__cont h3 {
  position: relative;
  padding-left: 14px;
}
.p-event-detail__cont h2 {
  font-size: 2.2rem;
}
.p-event-detail__cont h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #C7CF20;
  border-radius: 4px;
}
.p-event-detail__cont h3 {
  font-size: 1.8rem;
}
.p-event-detail__cont h3::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 5px;
  height: 5px;
  background: #C7CF20;
  border-radius: 50%;
}
.p-event-detail__cont h4 {
  font-size: 1.6rem;
}
.p-event-detail__cont a {
  color: #C7CF20;
  text-decoration: underline;
}
.p-event-detail__cont table {
  width: 100%;
  margin-bottom: 50px;
  border-bottom: 1px solid #1B2218;
}
.p-event-detail__cont table th,
.p-event-detail__cont table td {
  padding: 30px 20px;
  border-top: 1px solid #1B2218;
}
.p-event-detail__cont table th {
  width: 20%;
}
.wp-caption {
  max-width: 100% !important;
}
.aligncenter {
  display: block;
  clear: both;
  margin: 0 auto;
}
.alignright {
  float: right;
  margin: 0 0 1rem 2rem;
}
.alignleft {
  float: left;
  margin: 0 2rem 1rem 0;
}
@media screen and (max-width: 767px) {
  .p-event-detail__cont p,
  .p-event-detail__cont ul,
  .p-event-detail__cont ol {
    font-size: 1.4rem;
  }
  .p-event-detail__cont h2 {
    font-size: 1.8rem;
  }
  .p-event-detail__cont h3 {
    font-size: 1.6rem;
  }
  .p-event-detail__cont h3::before {
    top: 8px;
  }
  .p-event-detail__cont h4 {
    font-size: 1.4rem;
  }
  .p-event-detail__cont table th,
  .p-event-detail__cont table td {
    padding: 25px 0;
  }
  .p-event-detail__cont table th {
    width: 40%;
  }
  .alignright,
  .alignleft {
    float: none;
    display: block;
    margin: 0 auto 20px;
  }
}

/*----- Pager -----*/
.p-pager {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  margin: var(--layout_margin-block) 0;
}
.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: #1B2218;
  font-size: 1.4rem;
  line-height: 1;
  text-align: center;
  transition: all .3s ease-in-out;
}
.prev.page-numbers,
.next.page-numbers {
  position: relative;
  font-size: 1.5rem;
}
.prev.page-numbers::before,
.next.page-numbers::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid #1B2218;
  border-top: none;
  border-right: none;
  top: 50%;
  left: 50%;
}
.prev.page-numbers::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.next.page-numbers::before {
  transform: translate(-50%, -50%) rotate(225deg);
}
.page-numbers.current {
  background: #1B2218;
  color: #fff;
}
.page-numbers-w .page-numbers {
  border: 1px solid #fff;
  color: #fff;
}
.page-numbers-w .prev.page-numbers::before,
.page-numbers-w .next.page-numbers::before {
  border-color: #fff;
}
.page-numbers-w .page-numbers.current {
  background: #fff;
  color: #6b6b6b;
}
@media (hover: hover) and (pointer: fine) {
  .page-numbers:hover {
    background: #1B2218;
    color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .p-pager {
    column-gap: 5px;
    margin: 30px 0;
    justify-content: center;
  }
  .page-numbers {
    font-size: 1.3rem;
  }
  .prev.page-numbers,
  .next.page-numbers {
    font-size: 1.1rem;
  }
}


/* =========================================================
   Contact (お問い合わせ)
   ========================================================= */
.p-contact {
  position: relative;
  z-index: 1;
}
.p-contact-lead {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: var(--cont_margin-block04);
}
.p-contact__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.confirm .p-contact__table {
  border-top: 1px solid #1B2218;
  margin-bottom: var(--cont_margin-block04);  
}
.confirm .p-contact__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  padding-block: 40px;
  border-bottom: 1px solid #1B2218;
}
.p-contact__head {
  width: 250px;
  font-size: 1.6rem;
  font-weight: 700;
}
.p-contact__rec {
  width: 80px;  
}
.p-contact__req-label {
  background: #F26924;
  padding: 2px 5px;
  font-size: 1.3rem;
  border-radius: 5px;
  color: #fff;
}
.p-contact__cont {
  width: calc(100% - 330px);
}
.p-contact__note,
.p-contact__count {
  margin-bottom: 10px;
  font-size: 1.4rem;
  color: #666;
  display: block;
}
.p-contact__count {
  margin-top: 10px;
  margin-bottom: 0;
}
@media screen and (max-width: 960px) {
  .p-contact-lead {
    font-size: 1.6rem;
  }
  .p-contact__item {
    margin-bottom: 30px;
  }
  .p-contact__head {
    width: 200px;
  }
  .p-contact__cont {
    width: calc(100% - 280px);
  }
}
@media screen and (max-width: 767px) {
  .p-contact-lead {
    text-align: left;
  }
  .p-contact__item {
    flex-wrap: wrap; /* 横並びから縦並びに折り返し */
  }
	.confirm .p-contact__item {
	  padding-block: 20px;
	}
  .p-contact__head {
    width: calc(100% - 80px);
    margin-bottom: 15px;
	  font-size: 1.4rem;
  }
	.confirm .p-contact__head {
    margin-bottom: 5px;
	}
	.confirm .p-contact__head * {
		font-weight: 700;
	}
  .p-contact__rec {
    text-align: right;
    margin-bottom: 15px;
  }
  .p-contact__cont {
    width: 100%;
  }
}

/* --- プライバシーポリシー --- */
.p-policy {
  height: 350px;
  margin-bottom: 50px;
  padding: 40px;
  overflow-y: auto;
  border: 1px solid #1B2218;
  font-size: 1.5rem;
  background: #fff;
}
.p-policy__block {
  margin-bottom: 30px;
}
.p-policy__ttl {
  margin-bottom: 20px;
  font-size: 1.6rem;
  font-weight: 700;
}
.p-policy__subttl {
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 700;
}
.p-policy__txt {
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-policy {
    margin-bottom: 30px;
    padding: 20px;
  }
  .p-policy__block {
    margin-bottom: 20px;
  }
  .p-policy__ttl {
    margin-bottom: 10px;
  }
  .p-policy__subttl {
    margin-bottom: 5px;
  }
}

.p-contact__agree {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
.p-contact__agree .wpcf7-list-item {
  margin: 0;
}
.p-contact__agree label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.p-contact__agree input[type="checkbox"] {
  margin-right: 10px;
  border: 1px solid #1B2218;
}
.wpcf7-list-item-label {
  font-size: 1.6rem;
  letter-spacing: .1em;
}
@media screen and (max-width: 767px) {
  .p-contact__agree {
    margin-bottom: 20px;
  }
  .wpcf7-list-item-label {
    font-size: 1.4rem;
  }
}

/* --- 送信ボタンエリア --- */
.p-contact__submit {
  text-align: center;
}
.c-btn-submit {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.c-btn-submit input[type="submit"] {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 64px;
  background: url("../images/common/icon_arr_wh.png") no-repeat right 15px center #837D70;
  background-size: 24px auto;
  border: 1px solid #837D70;
  border-radius: 32px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.0;
  cursor: pointer;
  transition: all .3s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .c-btn-submit:hover input[type="submit"] {
    border: 1px solid #837D70;
    color: #36FF7C;
    background: url("../images/common/icon_arr_lg.png") no-repeat right 15px center #1B2218;
    background-size: 24px auto;
  }
}
@media screen and (max-width: 767px) {
  .c-btn-submit input[type="submit"] {
    height: 56px;      /* 64pxから縮小 */
    font-size: 1.6rem; /* 1.8remから縮小 */
  }
}

/* --- 戻るボタン --- */
.c-btn-back input {
  width: 100%;
  padding: 0;
  background: none;
  border: none;
  color: #555;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-decoration: underline;
  cursor: pointer;
  transition: all .2s ease-in-out;
}
.c-btn-back input:hover {
  color: var(--c-primary);
}


/* =========================================================
   確認画面・完了画面 (CF7 Multi-Step)
   ========================================================= */
#form02 .p-contact-lead,
#form03 .p-contact-lead {
  margin-bottom: 60px;
  padding: 40px 20px;
  border: 3px solid var(--c-primary);
  border-radius: 20px;
  color: var(--c-primary);
  font-size: 1.8rem;
  line-height: 1.75;
  text-align: center;
}
#form03 .p-contact-lead {
  font-weight: 400;
}
.p-contact-lead.-complete span {
  display: block;
  margin-bottom: 10px;
  font-size: 2.2rem;
  font-weight: 700;
}
.p-contact-lead.-complete a {
  color: var(--c-tertiary);
  text-decoration: underline;
}
.p-contact-lead.-error {
  margin-bottom: 60px;
  border: 3px solid var(--c-primary);
  color: var(--c-primary);
}
.error_messe {
  color: #b10000;
}
@media screen and (max-width: 767px) {
	#form02 .p-contact-lead,
	#form03 .p-contact-lead {
	  font-size: 1.6rem;
	}
	#form03 .p-contact-lead {
	  font-weight: 400;
	}
	.p-contact-lead.-complete span {
	  display: block;
	  margin-bottom: 10px;
	  font-size: 1.8rem;
	  font-weight: 700;
	}
	.p-contact-lead.-complete a {
	  color: var(--c-tertiary);
	  text-decoration: underline;
	}
	.p-contact-lead.-error {
	  margin-bottom: 60px;
	  border: 3px solid var(--c-primary);
	  color: var(--c-primary);
	}
	.error_messe {
	  color: #b10000;
	}
}


/*プラグイン*/
.wpcf7 form .wpcf7-response-output {
  background: #ffb900;
  padding: 10px;
  text-align: center;
  color: #fff;
  border-radius: 10px;
  border: none;
  margin-bottom: 50px !important;
  font-size: 1.8rem;
}
.wpcf7 form .wpcf7-response-output:empty {
  display: none;
}
.wpcf7-not-valid-tip {
  color: #dc3232 !important;
  font-size: 1.4rem;
  font-weight: normal;
  display: block;
  text-align: left;
}
.p-entry-form .p-contact-check .wpcf7-not-valid-tip {
  text-align: center;
}
#form01 .p-contact-table .p-col-l span.wpcf7-form-control-wrap {
  display: block;
}
.wpcf7-spinner {
  display: none;
}
#form01 span.wpcf7-not-valid-tip {
  display: block;
  font-size: 1.5rem;
  margin-top: 3px;
}
.wpcf7-list-item {
  margin-left: 0 !important;
  margin-right: 15px;
}
.wpcf7-list-item input[type="radio"] {
  transform: translateY(1px);
}
.wpcf7-list-item input[type="checkbox"] {
  position: relative;
  width: 16px;
  height: 16px;
  border: 1px solid #1B2218;
  transform: translateY(1px);
  border-radius: 3px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.wpcf7-list-item input[type="checkbox"]:checked {
  background: var(--c-primary);
  border: 1px solid var(--c-primary);
}
.wpcf7-list-item input[type="checkbox"]:checked:before {
  position: absolute;
  top: 2px;
  left: 5px;
  transform: rotate(50deg);
  width: 4px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: '';
}
.wpcf7-list-item-label {
  margin-left: 3px;
}
@media screen and (max-width: 767px) {
	.wpcf7 form .wpcf7-response-output {
	  font-size: 1.6rem;
	}
}

/* Utility
------------------------------------------------- */
/* ---------- Display ----------*/
.u-emphasis {
  background: linear-gradient(transparent 60%, #fffb7d 60%);
  font-weight: 700;
}
.u-color01 { color: var(--c-primary); }

.u-m-xxl,
.u-m-xl,
.u-m-lg,
.u-m-ll,
.u-m-md,
.u-m-sm,
.u-m-xs { display: none;}
.u-p-xxl,
.u-p-xl,
.u-p-ll,
.u-p-lg,
.u-p-md,
.u-p-sm,
.u-p-xs { display: block;}
@media screen and (max-width: 1480px) {
  .u-m-xxl { display: block;}
  .u-p-xxl { display: none;}
}
@media screen and (max-width: 1300px) {
  .u-m-xl { display: block;}
  .u-p-xl { display: none;}
}
@media screen and (max-width: 1200px) {
  .u-m-ll { display: block;}
  .u-p-ll { display: none;}
}
@media screen and (max-width: 1024px) {
  .u-m-lg { display: block;}
  .u-p-lg { display: none;}
}
@media screen and (max-width: 960px) {
  .u-m-md { display: block;}
  .u-p-md { display: none;}
}
@media screen and (max-width: 767px) {
  .u-m-sm { display: block;}
  .u-p-sm { display: none;}
}
@media screen and (max-width: 500px) {
  .u-m-xs { display: block;}
  .u-p-xs { display: none;}
}

/*2026-03-31_justa*/
@keyframes mv-reserve-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}

.p-mv-reserve {
  animation: blurIn 1.0s ease-in-out 0.6s forwards,
             mv-reserve-float 2.8s ease-in-out 1.6s infinite;
  transition: opacity 0.3s ease-in-out;
  will-change: transform;
  width: 260px; /* 200px → 300px */
  right: calc(var(--layout_margin-inline) + 100px); /* +80px → +130px で少し左 */
}

.p-mv-reserve__link {
  transition: transform 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
  .p-mv-reserve__link:hover {
    transform: scale(1.4);
  }
}

/* レスポンシブ上書き（元のwidthに対して1.5倍スケール） */
@media screen and (max-width: 960px) {
  .p-mv-reserve {
    width: 210px; /* 180px → 270px */
    right: calc(var(--layout_margin-inline) + 80px);
  }
}

@media screen and (max-width: 767px) {
  .p-mv-reserve {
    width: 170px !important; /* 140px → 210px */
    right: var(--layout_margin-inline);
  }
}