@charset "utf-8";
/* CSS Document */

/***************************************************
: style.css
***************************************************/
:root {
  --base-width: 1100px;
  --over-width-half: calc((100vw - var(--base-width)) / 2);
  --base-color: var(--black);
  --base-bg: var(--white);
  --f: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", YuGothic, "Yu Gothic", メイリオ, Meiryo,
    "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --ff: "Noto Serif JP", serif;
  --webf: "Roboto Condensed", sans-serif;
  --icons: "Material Symbols Outlined";
  --transition: 0.3s;

  --color_typeG: #006934;
  --color_typeG-1: #002e20;
  --color_typeG-2: #b7d100;
  --color_typeG-3: #74ad90;
  --color_typeG-4: #b4e2ab;
  --color_typeG-5: #b4ff5e;
  --color_typeG-6: #e0edd3;
  --color_typeG-7: #e3eee9;
  --color_typeB: #1473bd;
  --color_typeB-1: #eaf1fa;
  --color_typeB-2: #d8e5f5;
  --color_typeY: #ffff00;
  --color_typeY-1: #ffffe4;
  --color_typeR: #c30d23;

  --black: #000000;
  --white: #fff;
  --gray: #a0a0a0;

  --grad1: linear-gradient(to right, #9c7524 0%, #d1a74a 50%, #9c7524 100%);
}

@media (max-width: 520px) {
  :root {
    --base-width: 100%;
    --over-width-half: 5%;
  }
}

body {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  min-width: var(--base-width);
  max-width: 100vw;
  margin: 0 auto;
  font-size: 1.6rem;
  font-family: var(--f);
  line-height: 1.6;
  word-break: break-all;
  color: var(--base-color);
  background-color: var(--base-bg);
}

.fz {
  --pcfz: 2.6rem;
  font-size: var(--pcfz);
  line-height: 1.5;
}

.ff {
  font-family: var(--ff);
}

s {
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.G-2 {
  color: var(--color_typeG-2);
}

.G-5 {
  color: var(--color_typeG-5);
}

.Y {
  color: var(--color_typeY);
}

.R {
  color: var(--color_typeR);
}

@media (max-width: 520px) {
  body {
    font-size: 1.4rem;
  }

  section {
    width: 100%;
    overflow: hidden;
  }
}

/**================================================== 
 section
================================================== **/
section,
article,
aside {
  position: relative;
  z-index: 0;
}

ul {
  grid-area: ul;
}

picture {
  grid-area: pic;
}

.w_base {
  width: min(90%, var(--base-width));
  margin-left: auto;
  margin-right: auto;
}

.sec-w_base {
  padding-left: var(--over-width-half);
  padding-right: var(--over-width-half);
}

.sec-p1 {
  padding-top: 60px;
  padding-bottom: 60px;
}

@media screen and (max-width: 520px) {
  .fz {
    --spfz: 1.8rem;
    font-size: var(--spfz);
  }
}

/**================================================== 
 タイトル
================================================== **/

:root {
  --titAc: var(--white);
  --titAm: 0 0 40px;
  --titAta: center;
  --titAai: center;
  --titAjc: flex-start;
  --titAff: column;
  --titAgap: 15px;
  --titAp: 0;
  --titAfz: 3.6rem;

  --titA_ic: var(--white);
  --titA_ifz: 1.8rem;
}

.titA {
  grid-area: titA;
  display: flex;
  align-items: var(--titAai);
  justify-content: var(--titAjc);
  flex-flow: var(--titAff);
  gap: var(--titAgap);
  font-family: var(--ff);
  font-size: var(--titAfz);
  text-align: var(--titAta);
  color: var(--titAc);
  padding: var(--titAp);
  margin: var(--titAm);
  line-height: 1.2;
  font-weight: 700;
}

.titA i {
  display: block;
  font-family: var(--webf);
  font-size: var(--titA_ifz);
  font-style: italic;
  color: var(--titA_ic);
  line-height: 1.3;
}

.titA small {
  font-size: 0.5em;
  font-weight: normal;
}

:root {
  --titBc: var(--black);
  --titBm: 0 0 40px;
  --titBta: center;
  --titBai: flex-start;
  --titBjc: flex-start;
  --titBff: column;
  --titBgap: 15px;
  --titBp: 10rem 0 0;
  --titBfz: 4rem;

  --titB_ic: var(--color_typeG-7);
  --titB_ifz: 14rem;
  --titB_il: -0.7em;
}

.titB {
  grid-area: titB;
  position: relative;
  display: flex;
  align-items: var(--titBai);
  justify-content: var(--titBjc);
  flex-flow: var(--titBff);
  gap: var(--titBgap);
  font-family: var(--ff);
  font-size: var(--titBfz);
  text-align: var(--titBta);
  color: var(--titBc);
  padding: var(--titBp);
  margin: var(--titBm);
  line-height: 1;
  font-weight: 700;
  z-index: 5;
}

.titB i {
  position: absolute;
  top: 0;
  left: var(--titB_il);
  display: block;
  font-family: var(--webf);
  font-size: var(--titB_ifz);
  font-style: italic;
  color: var(--titB_ic);
  line-height: 1;
  z-index: -1;
  white-space: nowrap;
}

:root {
  --titCfz: 2rem;
  --titCc: inherit;
  --titCm: 1.2em 0;
}

.titC {
  grid-area: titC;
  font-family: var(--ff);
  font-size: var(--titCfz);
  color: var(--titCc);
  font-weight: 500;
  margin: var(--titCm);
}

@media screen and (max-width: 520px) {
  :root {
    --titAfz: 2.4rem;
    --titA_ifz: 1.4rem;
  }

  :root {
    --titBp: 5rem 0 0;
    --titBfz: 1.8rem;
    --titB_ifz: 7rem;
    --titB_il: -0.2em;
  }

  :root {
    --titCfz: 1.7rem;
  }
}

/**================================================== 
 ボタン
================================================== **/
:root {
  --btnAfz: 1.6rem;
  --btnAw: min(100%, 190px);
  --btnAm: 20px auto;
  --btnAp: 10px 15px;
  --btnAbg: var(--color_typeG);
  --btnAbd: 1px solid var(--color_typeG);
  --btnAc: var(--white);
  --btnAta: left;
}

.btnA {
  grid-area: btnA;
  font-size: var(--btnAfz);
  width: var(--btnAw);
  margin: var(--btnAm);
  padding: var(--btnAp);
  color: var(--btnAc);
  background: var(--btnAbg);
  border: var(--btnAbd);

  font-family: var(--ff);
  position: relative;
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 1fr 35px;
  align-items: center;
  text-align: var(--btnAta);
  font-weight: bold;
}

.btnA:after {
  content: "→";
  display: block;
  font-family: var(--webf);
  font-size: 1.2rem;
  line-height: 1;
  margin-left: 15px;
}

.btnA:hover,
a:hover .btnA {
  background-color: var(--btnAc);
  color: var(--btnAbg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.btnB {
  grid-area: btnB;
  width: min(90%, 500px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff);
  background: var(--grad1);
  color: var(--white);
  height: 100%;
  padding: 20px 40px;
  margin: 40px auto;
  font-size: 2.4rem;
  font-weight: bold;
  position: relative;
  overflow: hidden;
}

.btnB:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    130deg,
    rgba(255, 255, 255, 0) 20%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 80%
  );
  transition: 0.5s;
}

.btnB svg {
  aspect-ratio: 28/26;
  width: 28px;
  fill: var(--white);
}

.btnB:hover:before {
  top: 0;
  left: 100%;
}

.textlink {
  text-decoration: underline;
  font-family: var(--f);
  display: inline-block;
}

.textlink:hover {
  text-decoration: none;
}

.btnC {
  display: inline-block;
  background: #00913a;
  color: var(--white);
  padding: 8px 15px;
  font-size: 1.6rem;
  font-family: var(--f);
  font-weight: normal;
}

.btnC:before {
  content: "chevron_right";
  font-family: var(--icons);
  display: inline-block;
  vertical-align: middle;
  margin: 0 5px 0 0;
  line-height: 1;
}

@media screen and (max-width: 520px) {
  .btnB {
    padding: 20px 15px;
    margin: 40px auto 0;
    font-size: 2rem;
  }

  .btnB svg {
    width: 1.2em;
  }
}

/**================================================== 
header
================================================== **/

#indoor header {
  position: sticky;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr 80px;
  grid-template-areas: "logo menu1 hum";
  align-items: center;
  width: 100%;
  z-index: 100;
  background: var(--white);
  padding: 0;
  min-width: var(--base-width);
}

#indoor header .logo {
  grid-area: logo;
  display: flex;
  align-items: center;
  padding: 6px 20px;
}

.logo img {
  display: block;
  aspect-ratio: 223/55;
  width: 223px;
}

#indoor header .menu1 {
  grid-area: menu1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  height: 100%;
  z-index: 50;
}

.link-tel {
  font-size: 2.2rem;
}

.link-tel a {
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
  font-family: var(--ff);
}

.link-tel svg {
  aspect-ratio: 15/20;
  width: 15px;
  height: auto;
  fill: var(--black);
}

.link-tel p {
  margin: 0 0 3px;
  text-align: center;
  font-size: 1.2rem;
}

.link-tel small {
  display: block;
  font-size: 8px;
  line-height: 1.2;
  opacity: 0.8;
  text-align: left;
  text-indent: -1em;
  padding-left: 1em;
}

.info-tel {
  display: flex;
  font-size: 1.2rem;
  line-height: 1.3;
}

.link-join {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff);
  background: var(--grad1);
  color: var(--white);
  height: 100%;
  padding: 0 40px;
  font-size: 1.8rem;
  font-weight: bold;
  position: relative;
  overflow: hidden;
}

.link-join:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    130deg,
    rgba(255, 255, 255, 0) 20%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 80%
  );
  transition: 0.5s;
}

.link-join svg {
  aspect-ratio: 28/26;
  width: 28px;
  fill: var(--white);
}

.link-join:hover:before {
  top: 0;
  left: 100%;
}

#indoor header .menu1 .note {
  flex: none;
  width: 100px;
  font-size: 9px;
  line-height: 1.3;
}

#indoor header nav .mainmenu {
  width: 100%;
  margin: 30px auto 0;
  border: 1px solid var(--gray);
}

#indoor header nav .mainmenu a {
  display: block;
  padding: 10px;
  font-size: 1.4rem;
}
#indoor header nav .mainmenu a:before {
  content: "- ";
}

#indoor header nav .mainmenu a + a {
  border-top: 1px solid var(--gray);
}

@media screen and (max-width: 520px) {
  #indoor header {
    display: block;
    position: relative;
  }

  #indoor header .logo {
    display: block;
  }

  #indoor header .logo img {
    width: 140px;
    margin: 0 auto;
  }

  #indoor header .menu1 {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 0;
    align-items: stretch;
    gap: 0;
  }

  #indoor header .menu1 a {
    justify-content: center;
    padding: 15px 0;
  }

  #indoor header .info-tel {
    display: none;
  }

  .link-tel {
    font-size: 1.8rem;
    flex: 1;
    background: var(--black);
    color: var(--white);
  }

  .link-tel p {
    display: none;
  }

  .link-tel svg {
    fill: var(--white);
  }

  .link-join {
    font-size: 1.4rem;
    flex: 1;
  }

  .link-join svg {
    width: 1.3em;
  }
}

/**------------------------------ 
ハンバーガーメニュー
 ------------------------------**/
#indoor header nav {
  grid: hum;
}

#indoor .hamburger {
  position: relative;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 67px;
  width: 50px;
  z-index: 90;
  margin: 0 15px;
}

#indoor .hamburger:after {
  content: "MENU";
  font-size: 1.3rem;
  position: absolute;
  bottom: 3px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  color: var(--black);
}

#indoor #hamburger-check {
  display: none;
}

/**タップされる前 open**/
#indoor .hamburger span,
#indoor .hamburger span:before,
#indoor .hamburger span:after {
  content: "";
  display: block;
  height: 3px;
  width: 40px;
  border-radius: 3px;
  background-color: var(--black);
  position: absolute;
}

#indoor .hamburger span {
  background: none;
}

#indoor .hamburger span:before {
  bottom: 10px;
}

#indoor .hamburger span:after {
  top: 0px;
}

/**タップされたとき close**/
#indoor #hamburger-check:checked ~ .hamburger:after {
  content: "CLOSE";
}

#indoor #hamburger-check:checked ~ .hamburger {
  background: none;
}

#indoor #hamburger-check:checked ~ .hamburger span {
  background-color: rgba(255, 255, 255, 0);
}

#indoor #hamburger-check:checked ~ .hamburger span::before {
  width: 30px;
  bottom: 5px;
  left: 5px;
  transform: rotate(45deg);
}

#indoor #hamburger-check:checked ~ .hamburger span::after {
  width: 30px;
  top: -5px;
  left: 5px;
  transform: rotate(-45deg);
}

#indoor header nav .gnav {
  width: 420px;
  height: 100%;
  overflow-y: auto;
  position: fixed;
  top: 67px;
  left: 100%;
  /*leftの値を変更してメニューを画面外へ*/
  z-index: 40;
  background-color: var(--black);
  color: var(--white);
  transition: var(--transition);
  /*アニメーション設定*/

  display: flex;
  font-size: 1.8rem;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 25px;
  padding: 40px 50px;
  margin: 0;
}

#indoor #hamburger-check:checked ~ .gnav {
  left: calc(100% - 420px);
  /*メニューを画面内へ*/
}

#indoor header nav .gnav ul {
  display: flex;
  flex-flow: column;
  gap: 20px;
}

#indoor header nav .gnav ul a:before {
  content: "keyboard_double_arrow_right";
  font-family: var(--icons);
  display: inline-block;
  vertical-align: middle;
  margin: 0 5px 0 0;
  line-height: 1;
}

@media screen and (max-width: 520px) {
  #indoor .hamburger {
    position: fixed;
    height: 45px;
    width: 50px;
    margin: 0 10px 0 0;
    background: var(--white);
  }

  #indoor .hamburger:after {
    content: "MENU";
    font-size: 0.9rem;
  }

  #indoor .hamburger span,
  #indoor .hamburger span:before,
  #indoor .hamburger span:after {
    height: 2px;
    width: 34px;
  }

  #indoor #hamburger-check:checked ~ .hamburger {
    background: var(--white);
  }

  #indoor header nav .gnav {
    width: 100%;
    top: 0;
    padding: 60px 30px 30px;
  }

  #indoor #hamburger-check:checked ~ .gnav {
    left: 0;
    /*メニューを画面内へ*/
  }
}

/**================================================== 
footer 
================================================== **/
#indoor footer {
  background: var(--black);
  color: var(--white);
  padding-top: 80px;
  padding-bottom: 30px;
}

#indoor footer .inner-footer {
  width: var(--base-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 45% 1fr;
  grid-template-areas:
    "logo nav"
    "dl nav"
    "tel nav";
}

#indoor footer .logo {
  grid-area: logo;
}

#indoor footer .logo img {
  width: 383px;
}

#indoor footer dl {
  grid-area: dl;
  display: flex;
  flex-flow: wrap;
  margin: 40px 0 0;
}

#indoor footer dl dt {
  width: 6em;
  text-align: justify;
  text-align-last: justify;
  padding: 0 5px 0 0;
}

#indoor footer dl dd {
  width: calc(100% - 6em);
  text-indent: -1em;
  padding-left: 1em;
}

#indoor footer .link-tel {
  grid-area: tel;
  text-align: left;
  justify-content: flex-start;
  margin: 20px 0 0;
}

#indoor footer .link-tel svg {
  fill: var(--white);
}

#indoor footer .link-tel small {
  margin: 5px 0 0;
  opacity: 1;
  font-size: 10px;
}

#indoor footer nav {
  grid-area: nav;
  columns: 2;
  font-family: var(--ff);
}

#indoor footer nav a {
  display: block;
  margin: 0 0 25px;
}

#indoor footer .maps {
  display: flex;
  justify-content: space-between;
}

#indoor footer .maps iframe {
  display: block;
  width: 100%;
  width: 49.9%;
  height: 500px;
  margin: 30px 0;
}

#indoor footer .copyright {
  text-align: center;
}

#indoor footer .kazari {
  text-align: right;
  font-size: 11.8rem;
  font-family: var(--webf);
  font-style: italic;
  font-weight: bold;
  color: var(--color_typeG-1);
  line-height: 1;
}

@media screen and (max-width: 520px) {
  #indoor footer {
    padding-top: 40px;
    padding-bottom: 30px;
  }

  #indoor footer .inner-footer {
    width: 90%;
    display: block;
  }

  #indoor footer .logo img {
    width: 200px;
  }

  #indoor footer dl {
    margin: 40px 0 15px;
  }

  #indoor footer .link-tel {
    grid-area: tel;
    text-align: left;
    justify-content: flex-start;
    margin: 0 auto 30px;
  }

  #indoor footer nav {
    margin: 40px 0;
  }

  #indoor footer .maps {
    flex-flow: column;
  }

  #indoor footer .maps iframe {
    display: block;
    width: 100%;
    height: 50vw;
    margin: 2px 0;
  }

  #indoor footer .copyright {
    text-align: center;
    margin: 0 0 80px;
  }

  #indoor footer .kazari {
    font-size: 4rem;
  }
}

/**================================================== 
リスト
================================================== **/

.list-numC {
  --num: 2;
  --g: 60px;
  --w: calc((100% - var(--g) * (var(--num) - 1)) / var(--num));
  display: flex;
  flex-flow: wrap;
  gap: var(--g);
  position: relative;
  z-index: 5;
}

.list-numC > * {
  width: var(--w);

  display: flex;
  flex-flow: column;
  gap: 20px;
}

.list-numC :is(figure, picture) {
  display: block;
  aspect-ratio: 520/346;
  border-radius: 30px;
  overflow: hidden;
}

@media screen and (max-width: 520px) {
  .list-numC > * {
    gap: 15px;
  }

  .list-numC :is(figure, picture) {
    border-radius: 20px;
  }
}

/**================================================== 
 splide
================================================== **/

/**thumbnail slider**/

*[id^="main-carousel"] {
  margin-top: 30px;
}

*[id^="thumbnail-carousel"] {
  margin-top: 10px;
}

*[id^="thumbnail-carousel"] img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

*[id^="thumbnail-carousel"] .splide__slide {
  opacity: 0.6;
}

*[id^="thumbnail-carousel"] .splide__slide.is-active {
  opacity: 1;
}

*[id^="thumbnail-carousel"] .splide__arrow {
  background: none;
}

*[id^="thumbnail-carousel"] .splide__arrow svg {
  fill: var(--gray);
}

@media screen and (max-width: 520px) {
  *[id^="thumbnail-carousel"] {
    margin-bottom: 60px;
  }
}

/**================================================== 
 main
================================================== **/

/**------------------------------ 
メインビジュアル
 ------------------------------**/
.ind-mv .splide-fade img {
  width: 100%;
  height: 697px;
  object-fit: cover;
}

.ind-mv .text {
  font-family: var(--ff);
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  text-align: center;
  padding: 30px 0;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 1.8rem;
}

.ind-mv .text h1 {
  font-size: 4.6rem;
  font-weight: bold;
}

@media screen and (max-width: 520px) {
  .ind-mv .splide-fade img {
    aspect-ratio: 520 / 527;
    height: 110vw;
  }

  .ind-mv .text h1 {
    font-size: 2rem;
  }

  .ind-mv .text {
    padding: 30px 5%;
    font-size: 1.4rem;
  }
}

/**------------------------------ 
キャンペーン
------------------------------**/
.ind-campaign {
  padding-top: 60px;
  padding-bottom: 80px;
  background: linear-gradient(to bottom, var(--color_typeG-1) 0%, var(--color_typeG) 100%);
  color: var(--white);
}

.ind-campaign dl {
  width: var(--base-width);
  margin: 0 auto;
}

.ind-campaign dl dt {
  font-family: var(--webf);
  font-size: 9rem;
  line-height: 0.7;
  margin: 0;
  font-style: italic;
  font-weight: bold;
}

.ind-campaign dl dd {
  border: 1px solid var(--white);
  padding: 40px;
  font-family: var(--ff);
  text-align: center;
}

@media screen and (max-width: 520px) {
  .ind-campaign {
    padding-top: 30px;
    padding-bottom: 40px;
  }

  .ind-campaign dl dt {
    font-size: 4.5rem;
  }

  .ind-campaign dl dd {
    padding: 20px;
  }
}

/**------------------------------ 
CTA
------------------------------**/
.ind-cta {
  padding-top: 70px;
  padding-bottom: 60px;
  background: url(../images/indoor/ind_bg_pc01.jpg) no-repeat center / cover;
  font-family: var(--ff);
  color: var(--white);
  text-align: center;
  font-size: 1.8rem;
}

.ind-cta a.btnB {
  animation: poyopoyo 2s ease-out infinite;
}

@keyframes poyopoyo {
  0%,
  40%,
  60%,
  80% {
    transform: scale(1);
  }

  50%,
  70% {
    transform: scale(0.95);
  }
}

@media screen and (max-width: 520px) {
  .ind-cta {
    padding-top: 35px;
    padding-bottom: 30px;
  }
}

/**------------------------------ 
NEWS
------------------------------**/
.ind-news {
  padding-top: 40px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 300px 1fr;
  grid-template-areas:
    "titB ul"
    "btnA ul"
    ". ul";

  --titBm: 0 0 55px;

  --btnAm: 20px 0 0;
}

.ind-list-news {
  margin: 70px 0 0;
}

.ind-list-news li {
  border-bottom: 1px dotted var(--gray);
  padding: 15px 0 0;
}

.ind-list-news li:first-child {
  border-top: 1px dotted var(--gray);
}

.time,
.em {
  font-size: 1.4rem;
  padding: 3px 15px;
}

.time {
  color: #787878;
}

.em {
  background: var(--color_typeG-2);
}

.ind-list-news li a {
  display: block;
  padding: 15px;
}

@media screen and (max-width: 520px) {
  .ind-news {
    padding-top: 40px;
    padding-bottom: 40px;
    display: block;

    --titBm: 0;

    --btnAm: 30px auto 0;
  }

  .ind-list-news {
    margin: 30px 0 0;
  }
}

/**------------------------------ 
オススメ
------------------------------**/
.ind-feature {
  padding-top: 80px;
  padding-bottom: 80px;
  background: var(--black) url(../images/indoor/ind_bg_pc02.jpg) no-repeat bottom right;
  color: var(--white);
  font-family: var(--ff);

  --titAta: left;
  --titAai: flex-start;
}

.list-check {
  margin: 40px 0;
  font-weight: 600;
}

.list-check li {
  display: flex;
  gap: 10px;
  margin: 0 0 15px;
}

.list-check li:before {
  content: "";
  display: block;
  aspect-ratio: 28/26;
  background: url(../images/indoor/icon_check2.png) no-repeat center / contain;
  width: 28px;
  height: auto;
}

@media screen and (max-width: 520px) {
  .ind-feature {
    padding-top: 40px;
    padding-bottom: 80px;
    background-size: 80% auto;
  }

  .list-check {
    margin: 30px 0;
  }
}

/**------------------------------ 
ポイント
------------------------------**/
.ind-point {
  padding-top: 60px;
  padding-bottom: 80px;
  background: linear-gradient(to bottom, var(--color_typeG-1) 0%, var(--color_typeG) 500px);
  color: var(--white);

  --titBc: var(--white);
  --titB_ic: var(--color_typeG);
}

.ind-list-point {
  margin: 80px auto 0;
}

.ind-list-point li {
  counter-increment: number;
  display: grid;
  grid-template-columns: 600px 1fr;
  grid-template-areas:
    "pic i"
    "pic titC"
    "pic p"
    "pic .";
  gap: 0 40px;
  margin: 0 0 70px;

  --titCfz: 2.8rem;
}

.ind-list-point li:nth-child(even) {
  grid-template-columns: 1fr 600px;
  grid-template-areas:
    "i pic"
    "titC pic"
    "p pic"
    ". pic";
}

.ind-list-point li i {
  grid-area: var(--titB_il);
  font-family: var(--webf);
  color: var(--color_typeG-1);
  font-size: 2.8rem;
  line-height: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 2px solid var(--color_typeG-1);
  margin-left: -40px;
  padding-left: 40px;
  font-style: italic;
  font-weight: 700;
}

.ind-list-point li:nth-child(even) i {
  margin: 0;
  padding: 0;
  margin-right: -40px;
  padding-right: 40px;
  flex-flow: row-reverse;
}

.ind-list-point li i:after {
  white-space: nowrap;
  content: counter(number, decimal-leading-zero);
  font-size: 9.4rem;
  line-height: 0.7;
}

.ind-list-point li p {
  grid-area: p;
}

.ind-gridA {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}

@media screen and (max-width: 520px) {
  .ind-point {
    padding-top: 30px;
    padding-bottom: 40px;
  }

  .ind-list-point {
    margin: 40px auto 0;
  }

  .ind-list-point li {
    display: block;
    margin: 0 0 70px;

    --titCfz: 2.2rem;
    --titCm: 15px 0;
  }

  .ind-list-point li:nth-child(even) i,
  .ind-list-point li i {
    font-size: 2rem;
    margin: 10px 0 15px;
  }

  .ind-list-point li i:after {
    font-size: 6rem;
  }
}

/**------------------------------ 
行数が変わるとgrid-row: span 13;の数字も合わせて変更
 ------------------------------**/
.ind-gridA dl {
  display: grid;
  grid-template-rows: subgrid;
  align-items: center;
  grid-row: span 13;
  border: 1px solid var(--color_typeG-3);
}

.ind-gridA dl dd:first-of-type {
  font-family: var(--ff);
  font-size: 2.6rem;
}

.ind-gridA dl dt {
  background: var(--color_typeG-1);
  color: var(--color_typeG-4);
  font-size: 1.4rem;
  border-top: 1px solid var(--color_typeG-3);
  border-bottom: 1px solid var(--color_typeG-3);
}

.ind-gridA dl dd {
  padding: 10px;
}

.ind-gridA dl.A1 {
  background: rgba(255, 255, 255, 0.2);
}

.ind-gridA dl.A2 {
  background: var(--color_typeG);
  margin-left: -1px;
}

@media screen and (max-width: 520px) {
  .ind-gridA dl dd:first-of-type {
    font-family: var(--ff);
    font-size: 1.7rem;
  }

  .ind-gridA dl dd {
    padding: 10px 3px;
  }
}

/**------------------------------ 
マシン
------------------------------**/
.ind-machine {
  padding-top: 80px;
  padding-bottom: 80px;
  background: var(--black);
  color: var(--white);

  --titBai: center;
  --titBc: var(--white);
  --titB_ic: var(--color_typeG-1);
  --titB_il: auto;
}

.ind-box-machine {
  display: grid;
  grid-template-columns: 50% 1fr;
  grid-template-areas:
    "titA dl"
    "titC dl"
    "p dl"
    ". dl";
  align-items: start;
  gap: 10px 50px;
  margin: 100px auto 0;

  --titAm: 0 0 20px;
  --titAai: flex-start;

  --titCfz: 2.4rem;
  --titCm: 0;
}

.ind-box-machine p {
  grid-area: p;
}

.ind-box-machine dl {
  grid-area: dl;
  border: 1px solid var(--white);
  padding: 15px 30px;
}

.ind-box-machine dl dt {
  font-family: var(--ff);
  font-size: 2.2rem;
  text-align: center;
  font-weight: 700;
  margin: 0 0 15px;
}

.ind-box-machine .list-check {
  font-family: var(--ff);
  margin: 0;
}

@media screen and (max-width: 520px) {
  .ind-machine {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .ind-box-machine {
    display: block;
    margin: 30px auto 0;

    --titAm: 0 0 20px;

    --titCfz: 2.2rem;
    --titCm: 0 0 20px;
  }

  .ind-box-machine dl {
    margin: 30px 0;
    padding: 15px;
  }

  .ind-box-machine dl dt {
    font-size: 2rem;
  }
}

/**------------------------------ 
料金プラン
------------------------------**/
.ind-plan {
  padding-top: 60px;
  padding-bottom: 80px;
  background: linear-gradient(to bottom, var(--color_typeG-1) 0%, var(--color_typeG) 500px);
  color: var(--white);
  --titBc: var(--white);
  --titB_ic: var(--color_typeG);
  --titBm: 0;
}

.ind-plan .ttl-p {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 0 0 90px;
  font-family: var(--ff);
  font-size: 2rem;
}

.ind-campaign2 {
  background: var(--color_typeG-4);
  color: var(--color_typeG);
  font-family: var(--ff);
  text-align: center;
  padding: 20px;
  font-weight: 700;
  margin: 0 0 30px;
}

@media screen and (max-width: 520px) {
  .ind-plan {
    padding-top: 30px;
    padding-bottom: 40px;
  }

  .ind-plan .ttl-p {
    display: block;
    margin: 0 0 40px;

    --titBm: 0 0 20px;
  }
}

.ind-gridB {
  width: var(--base-width);
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  margin: 0 auto 30px;
  z-index: 2;

  --firstdd: 281px;
}

.ind-gridB figure {
  position: relative;
  background: var(--white);
  color: var(--black);
  font-family: var(--ff);
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3;
  margin: 0 0 25px;
}

.ind-gridB figure img {
  width: 100%;
}

.ind-gridB figure figcaption {
  padding: 8px 0;
}

.ind-gridB figure:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 20px solid white;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.ind-gridB dl {
  position: relative;
  display: grid;
  grid-template-rows: subgrid;
  align-items: center;
  grid-row: span 12;
  border-bottom: 1px solid var(--color_typeG-3);
  line-height: 1.4;
  font-size: 1.4rem;
}

.ind-gridB:before,
.ind-gridB dl:before {
  content: "";
  display: block;
  width: 1px;
  height: calc(100% - var(--firstdd));
  background: var(--color_typeG-3);
  position: absolute;
  bottom: 0;
  right: 0;
}

.ind-gridB:before {
  right: auto;
  left: -1px;
}

.ind-gridB dl:after {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - var(--firstdd));
  position: absolute;
  bottom: 0;
  left: 0;
}

.ind-gridB dl dt {
  background: var(--color_typeG-1);
  color: var(--color_typeG-4);
  font-size: 1.4rem;
  border-top: 1px solid var(--color_typeG-3);
  border-bottom: 1px solid var(--color_typeG-3);
}

.ind-gridB dl dd:first-of-type {
  background: none;
  border-bottom: 1px solid var(--color_typeG-3);
}

.ind-gridB dl dd {
  padding: 10px;
  line-height: 1.3;
}

.ind-gridB dl.B1:after {
  background: rgba(255, 255, 255, 0.3);
  z-index: -1;
}

.ind-gridB dl.B2:after {
  background: rgba(255, 255, 255, 0.2);
  z-index: -1;
}

.ind-gridB dl.B3:after {
  background: rgba(255, 255, 255, 0.1);
  z-index: -1;
}

.ind-gridB small {
  font-size: 0.5em;
}

.ind-note p {
  text-indent: -1em;
  padding-left: 1em;
  margin: 0.4em 0 0;
}

.ind-campaign3 {
  border: 1px solid var(--white);
  padding: 20px;
  font-family: var(--ff);
  display: flex;
  align-items: center;
  margin: 50px auto 0;

  --titCm: 0;
  --titCfz: 2.6rem;
}

.ind-campaign3 h3 {
  flex: none;
  width: 40%;
  text-align: center;
}

.ind-campaign3 small {
  font-size: 0.7em;
}

.more-btn2 {
  display: none;
}

@media screen and (max-width: 520px) {
  .ind-gridB {
    display: flex;
    flex-flow: column;
    gap: 30px;
    width: 100%;
    margin: 15px auto;
    --firstdd: 221px;
  }

  .ind-gridB dl {
    font-size: 1.6rem;
  }

  .ind-gridB:before,
  .ind-gridB dl:before,
  .ind-gridB dl:after {
    display: none;
  }

  .ind-gridB dd,
  .ind-gridB dt {
    border-left: 1px solid var(--color_typeG-3);
    border-right: 1px solid var(--color_typeG-3);
    background: rgba(255, 255, 255, 0.1);
  }

  .ind-gridB dd:first-of-type {
    border: none;
    background: none;
    padding: 0;
  }

  .ind-gridB figure {
    font-size: 1.6rem;
  }

  .ind-gridB dl dt {
    font-size: 1.4rem;
    padding: 5px 0;
  }

  .ind-gridB dl dd {
    padding: 10px;
  }

  .ind-campaign3 {
    padding: 15px;
    display: block;
    margin: 30px auto 0;

    --titCm: 0 0 15px;
    --titCfz: 2.4rem;
  }

  .ind-campaign3 h3 {
    width: 100%;
  }

  /**------------------------------ 
  トグル
   ------------------------------**/

  .more-btn2 {
    display: flex;
    align-items: center;
    gap: 5px;
    width: fit-content;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    margin: -15px auto 30px;
    color: var(--white);
  }

  .more-btn2:before {
    content: "keyboard_double_arrow_down";
    font-family: var(--icons);
    font-size: 2.2rem;
    line-height: 1;
  }

  .ind-gridB dt,
  .ind-gridB dd {
    display: none;
  }

  /* 初期状態で表示する要素 */
  .ind-gridB dd:nth-child(1),
  .ind-gridB dd:nth-child(2),
  .ind-gridB dt:nth-child(3),
  .ind-gridB dd:nth-child(4),
  .ind-gridB dt:nth-child(5),
  .ind-gridB dd:nth-child(6) {
    display: block;
  }
}

/**------------------------------ 
特典
------------------------------**/
.ind-special {
  padding-top: 80px;
  padding-bottom: 80px;
}

.speech-bubble {
  position: relative;
  background-color: var(--color_typeG-6);
  border: 1px solid var(--color_typeG);
  padding: 30px;
  width: 100%;
  color: black;
  font-family: var(--ff);
  text-align: center;
  font-weight: 600;
}

.speech-bubble::after {
  content: "";
  position: absolute;
  top: 100%;
  /* 吹き出しの位置 */
  left: calc(50% - 5px);
  /* 吹き出しの左右位置 */
  border-width: 15px 10px 0 10px;
  border-style: solid;
  border-color: var(--color_typeG-6) transparent transparent transparent;
}

.speech-bubble::before {
  content: "";
  position: absolute;
  top: 100%;
  /* 吹き出しの影の位置 */
  left: calc(50% - 5px - 2px);
  /* 吹き出しの影の左右位置 */
  border-width: 17px 12px 0 12px;
  border-style: solid;
  border-color: var(--color_typeG) transparent transparent transparent;
}

.ind-box-special {
  display: grid;
  grid-template-columns: 420px 1fr;
  grid-template-areas:
    "pic titC"
    "pic p";
  align-items: center;
  gap: 0 30px;
  margin: 50px auto;

  --titCfz: 2.6rem;
  --titCm: 0 0 10px;
}

.ind-box-special p {
  grid-area: p;
}

.ind-box-special2 {
  display: grid;
  grid-template-columns: 520px 1fr;
  grid-template-areas:
    "pic h3"
    "pic h4"
    "pic ul";
  align-items: start;
  gap: 0 30px;
  font-family: var(--ff);
  text-align: center;
}

.ind-box-special2 h3 {
  grid-area: h3;
  font-family: var(--ff);
  font-weight: bold;
}

.ind-box-special2 h4 {
  grid-area: h4;
  font-family: var(--ff);
  font-weight: bold;
}

.ind-box-special2 ul {
  background: var(--color_typeY-1);
  border-top: 1px solid var(--color_typeG);
  border-left: 1px solid var(--color_typeG);
  color: var(--color_typeG-1);
  text-align: left;
  font-weight: bold;
}

.ind-box-special2 ul li {
  border-bottom: 1px solid var(--color_typeG);
  border-right: 1px solid var(--color_typeG);
  padding: 20px 5px 20px 20px;
  display: flex;
  gap: 15px;
  counter-increment: number;
}

.ind-box-special2 ul li i {
  flex: none;
  font-family: var(--f);
  display: flex;
  align-items: flex-end;
  gap: 5px;
  line-height: 1;
}

.ind-box-special2 ul li i:after {
  content: counter(number, decimal-leading-zero);
  font-family: var(--webf);
  font-size: 3.6rem;
  line-height: 0.7;
}

@media screen and (max-width: 520px) {
  .ind-special {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .speech-bubble {
    padding: 20px;
  }

  .ind-box-special {
    display: block;
    --titCfz: 1.8rem;
  }

  .ind-box-special2 {
    display: block;
  }

  .ind-box-special2 h3 {
    margin: 15px 0 0;
  }

  .ind-box-special2 h4 {
    margin: 0 0 15px;
  }

  .ind-box-special2 ul li {
    align-items: center;
  }

  .ind-box-special2 ul li i:after {
    font-size: 3rem;
  }
}

/**------------------------------ 
流れ
------------------------------**/
.ind-flow {
  padding-top: 80px;
  padding-bottom: 80px;
  background: url(../images/indoor/ind_bg_pc03.jpg) no-repeat top right;
}

.ind-list-flow {
  margin: 60px auto 0;
}

.ind-list-flow li {
  counter-increment: number;
  margin: 50px 0 0;

  --titCfz: 3.2rem;
  --titCm: 30px 0 20px;
}

.ind-list-flow dl {
  flex: 1;
}

.ind-list-flow dl dt {
  font-family: var(--webf);
  border-bottom: 2px solid var(--color_typeG-1);
  color: var(--color_typeG-1);
  font-size: 3.6rem;
  line-height: 0.7;
}

.ind-list-flow dl dt:after {
  font-size: 6rem;
  content: counter(number, decimal-leading-zero);
  display: inline-block;
  margin: 0 0 0 10px;
}

.ind-list-flow dl dd {
  overflow: hidden;
}

.ind-list-flow dl dd h4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ind-list-flow li .img {
  width: 100%;
  display: flex;
  gap: 30px;
  margin: 20px auto 30px;
}

.ind-list-flow li .img figure {
  display: block;
  width: calc((100% - 90px) / 4);
  background: var(--black);
  color: var(--white);
  padding: 8px;
}

.ind-list-flow li .img figure figcaption {
  padding: 10px 5px 0;
  text-align: center;
  font-size: 1.4rem;
}

@media screen and (max-width: 520px) {
  .ind-flow {
    padding-top: 40px;
    padding-bottom: 40px;
    background-size: 50% auto;

    --titBm: 0 0 10px;
  }

  .ind-list-flow li {
    flex-flow: column;
    gap: 15px;
    margin: 40px 0 0;

    --titCfz: 2rem;
    --titCm: 15px auto 10px;
  }

  .ind-list-flow dl dt {
    font-size: 2.3rem;
  }

  .ind-list-flow dl dt:after {
    font-size: 6rem;
  }

  .ind-list-flow dl dd h4 {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
  }

  .ind-list-flow dl dd h4 .btnC {
    margin-left: auto;
    margin-top: 10px;
  }

  .ind-list-flow li .img {
    flex-flow: wrap;
    gap: 20px;
  }

  .ind-list-flow li .img figure {
    width: calc((100% - 20px) / 2);
    padding: 4px;
    margin: 0;
  }

  .ind-list-flow li .img figure figcaption {
    padding: 10px 5px;
    text-align: left;
    font-size: 1.2rem;
  }
}

/**------------------------------ 
よくある質問
------------------------------**/

.hidden {
  display: none;
}

.more-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  width: fit-content;
  cursor: pointer;
  font-size: 1.5rem;
  text-align: center;
  color: var(--white);
  text-decoration: none;
  margin: 30px auto;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 15px;
}

.more-btn:before {
  content: "keyboard_double_arrow_down";
  font-family: var(--icons);
  font-size: 2.2rem;
  line-height: 1;
}

.more-btn.hidden {
  display: none;
}

.ind-faq {
  padding-top: 80px;
  padding-bottom: 80px;
  background: var(--black);
  color: var(--white);

  --titBai: center;
  --titBc: var(--white);
  --titB_ic: var(--color_typeG-1);
  --titB_il: auto;
}

.ind-list-faq {
  margin: 60px auto 0;
}

.ind-list-faq dl {
  border-bottom: 1px dotted var(--white);
  padding: 20px 0;
}

.ind-list-faq dl:first-of-type {
  border-top: 1px dotted var(--white);
}

.ind-list-faq dl :is(dt, dd) {
  display: flex;
  gap: 20px;
}

.ind-list-faq dl :is(dt, dd):before {
  flex: none;
  content: "";
  font-family: var(--webf);
  color: var(--color_typeG-1);
  font-size: 3.2rem;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 5px;
}

.ind-list-faq dl dt:before {
  content: "Q";
  background: var(--color_typeG-5);
}

.ind-list-faq dl dd:before {
  content: "A";
  background: var(--white);
}

.ind-list-faq dl dt {
  margin: 0 0 20px;
  font-family: var(--ff);
  font-size: 2.1rem;
  font-weight: 700;
}

@media screen and (max-width: 520px) {
  .ind-faq {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .ind-list-faq {
    margin: 40px auto 0;
  }

  .ind-list-faq dl dt {
    font-size: 1.7rem;
  }
}

/**------------------------------ 
フロアマップ
------------------------------**/

.ind-map {
  padding-top: 80px;
  padding-bottom: 80px;
  background: url(../images/indoor/ind_bg_pc04.jpg) no-repeat top right;

  --titAc: var(--black);
  --titAm: 60px auto 20px;
}

.ind-campaign4 {
  background: var(--color_typeB-1);
  border: 1px solid var(--color_typeB);
  color: var(--color_typeB);
  font-family: var(--ff);
  text-align: center;
  padding: 20px;
  font-weight: 700;
  margin: 0 0 30px;
}

.ind-gridC {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  margin: 0 0 30px;
  z-index: 2;

  --firstdd: 118px;
}

.ind-gridC strong {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--color_typeB);
  color: var(--white);
  font-family: var(--ff);
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3;
  height: 4em;
  margin: 0 0 25px;
  padding: 15px 0;
}

.ind-gridC strong:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 20px solid var(--color_typeB);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.ind-gridC dl {
  position: relative;
  display: grid;
  grid-template-rows: subgrid;
  align-items: center;
  grid-row: span 12;
  border-bottom: 1px solid var(--color_typeG-3);
  line-height: 1.4;
  font-size: 1.4rem;
}

.ind-gridC:before,
.ind-gridC dl:before {
  content: "";
  display: block;
  width: 1px;
  height: calc(100% - var(--firstdd));
  background: var(--gray);
  position: absolute;
  bottom: 0;
  right: 0;
}

.ind-gridC:before {
  right: auto;
  left: -1px;
}

.ind-gridC dl:after {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - var(--firstdd));
  position: absolute;
  bottom: 0;
  left: 0;
}

.ind-gridC dl dt {
  background: var(--color_typeB-2);
  color: var(--gray);
  padding: 5px 0;
  font-size: 1.4rem;
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
}

.ind-gridC dl dd:first-of-type {
  background: none;
  border-bottom: 1px solid var(--gray);
}

.ind-gridC dl dd {
  padding: 10px;
  line-height: 1.3;
}

.ind-gridC small {
  font-size: 0.5em;
}

@media screen and (max-width: 520px) {
  .ind-map {
    padding-top: 40px;
    padding-bottom: 100px;
    background-size: 40% auto;
    background-position: bottom right;

    --titAc: var(--black);
    --titAm: 60px auto 20px;
  }

  .ind-campaign4 {
    padding: 15px;
  }

  .ind-gridC {
    display: flex;
    flex-flow: column;
    gap: 30px;
    width: 100%;
    margin: 15px auto;
  }

  .ind-gridC dl {
    font-size: 1.6rem;
  }

  .ind-gridC:before,
  .ind-gridC dl:before,
  .ind-gridC dl:after {
    display: none;
  }

  .ind-gridC dd,
  .ind-gridC dt {
    border-left: 1px solid var(--gray);
    border-right: 1px solid var(--gray);
  }

  .ind-gridC dd:first-of-type {
    border: none;
    background: none;
    padding: 0;
  }

  .ind-gridC strong {
    font-size: 1.3rem;
  }

  .ind-gridC dl dd {
    padding: 5px;
  }

  /**------------------------------ 
    トグル
     ------------------------------**/

  .ind-gridC .more-btn2 {
    background: var(--color_typeB-1);
    color: var(--color_typeB);
  }

  .ind-gridC dt,
  .ind-gridC dd {
    display: none;
  }

  /* 初期状態で表示する要素 */
  .ind-gridC dd:nth-child(1),
  .ind-gridC dd:nth-child(2),
  .ind-gridC dt:nth-child(3),
  .ind-gridC dd:nth-child(4),
  .ind-gridC dt:nth-child(5),
  .ind-gridC dd:nth-child(6) {
    display: block;
  }
}
