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

/***************************************************
: style.css
***************************************************/
:root {
  --base-width: 1100px;
  --over-width-half: calc((100vw - var(--base-width)) / 2);
  --header-h: 80px;
  --ff: "Zen Old Mincho", serif;
  --webf: "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  --icons: "Material Icons Sharp";
  --transition: 0.3s;
  --black: #231a14;
  --white: #fff;
  --gray: #6e6e6e;

  --color_typeB: #3d3530;
  --color_typeN: #002647;
  --color_typeN1: #0068b6;
  --color_typeN2: #193b59;
  --color_typeN3: #bdccd4;
  --color_typeN4: #3e4e57;
  --color_typeP: #ff7e75;
  --color_typeR: #a3170d;
  --color_typeY: #ddad42;
  --color_typeO: #e58002;
  --color_typeW: #f3fbff;
  --color_typeG: #6ba431;
  --color_typeE: #33babe;

  --gradG: linear-gradient(45deg, #ddad42 4%, #fffac6 54%, #d7b36e 93%);
}

@media screen and (max-width: 1200px) {
  :root {
    --header-h: clamp(50px, 11vw, 80px);
  }
}

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

html {
  scroll-padding-top: 80px;
}

body {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  min-width: min(90%, var(--base-width));
  max-width: 100vw;
  margin: 0 auto;
  font-size: 1.6rem;
  font-family: var(--ff);
  /* font-feature-settings: "palt"; */
  line-height: 1.6;
  word-break: break-all;
  color: var(--white);
  background-color: var(--black);
}

img {
  width: auto;
  height: auto;
}

@media (max-width: 520px) {
  html {
    scroll-padding-top: 50px;
  }
  body {
    font-size: 1.4rem;
  }
}

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

main {
  min-width: var(--base-width);
}

ul {
  grid-area: ul;
}
dl {
  grid-area: dl;
}
picture {
  grid-area: pic;
}
figure {
  grid-area: fig;
}

.of_cover img {
  width: 100%;
  height: 100%;
}

.bg-bath {
  background: var(--black);
}
.bg-bath2 {
  background: var(--color_typeB);
}
.bg-fit {
  background: var(--color_typeN);
}
.bg-fit2 {
  background: var(--color_typeN2);
}
.bg-gold {
  background: var(--gradG);
  color: var(--black);
}
.bg-white {
  background: var(--white);
}
.bg-img {
  background: url(../images/bg.jpg);
  color: var(--black);
}

.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-ptb {
  padding-top: 80px;
  padding-bottom: 20px;
}

.sec-ptb2 {
  padding-top: 80px;
  padding-bottom: 80px;
}

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

  .sec-ptb2 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/**==================================================
 色
================================================== **/
.cG {
  color: var(--color_typeG);
}
.cW {
  color: var(--color_typeW);
}

/**==================================================
 余白
================================================== **/

:root {
  --indent: 1em;
}
.indent {
  text-indent: calc(-1 * var(--indent));
  padding-left: var(--indent);
  font-weight: normal;
}

:root {
  --w-pc: 100%;
  --h-pc: auto;
  --w-sp: var(--w-pc);
  --h-sp: var(--h-pc);
}

.space {
  display: block;
  width: var(--w-pc);
  height: var(--h-pc);
}

:root {
  --m-pc: inherit;
  --m-sp: var(--m-pc);
  --p-pc: inherit;
  --p-sp: var(--p-pc);
}

.margin {
  margin: var(--m-pc);
}

.padding {
  padding: var(--p-pc);
}

@media (max-width: 520px) {
  .space {
    width: var(--w-sp);
    height: var(--h-sp);
  }
  .margin {
    margin: var(--m-sp);
  }
  .padding {
    padding: var(--p-sp);
  }
}

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

.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;
  overflow: hidden;
}

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

/**==================================================
 タイトル
================================================== **/
.titZ {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 25px 0;
  font-size: 3.6rem;
  min-height: 140px;
}
.titZ figure {
  width: auto;
  height: 60px;
  display: flex;
  align-items: center;
}
.titZ figure img {
  height: 100%;
}
.titZ .inner {
  display: flex;
  align-items: center;
  gap: 30px;
}
.titZ h1 {
  line-height: 1.3;
}
.titZ i {
  display: block;
  font-size: 0.7em;
}

.hr {
  width: 100%;
  height: 1px;
  background: var(--white);
}

@media screen and (max-width: 520px) {
  .titZ {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 0;
    font-size: 2rem;
    min-height: 75px;
  }
  .titZ figure {
    aspect-ratio: 1/0.5;
    width: 90px;
    padding: 10px;
  }
}

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

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

.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.5;
}

.titA i {
  display: block;
  font-family: var(--fwebf), var(--ff);
  font-size: var(--titA_ifz);
  font-style: normal;
  color: var(--titA_ic);
  line-height: 1.3;
}

:root {
  --titBfz: 2rem;
  --titBc: var(--white);
  --titBm: 0 0 40px;
  --titBta: center;
  --titBp: 15px;
  --titBbd: 1px solid var(--white);
  --titBbg: none;
}

.titB {
  position: relative;
  grid-area: titB;
  font-size: var(--titBfz);
  text-align: var(--titBta);
  color: var(--titBc);
  padding: var(--titBp);
  margin: var(--titBm);
  line-height: 1.5;
  border: var(--titBbd);
  background: var(--titBbg);
}
.titB:before {
  font-size: 1.3em;
  content: attr(data-eng);
  line-height: 1;
  position: absolute;
  bottom: 99%;
  right: 0;
}

:root {
  --titCc: var(--white);
  --titCm: 0 0 20px;
  --titCta: left;
  --titCai: flex-start;
  --titCjc: flex-start;
  --titCff: column;
  --titCgap: 5px;
  --titCp: 0;
  --titCfz: 2.2rem;
}

.titC {
  grid-area: titC;
  display: flex;
  align-items: var(--titCai);
  justify-content: var(--titCjc);
  flex-flow: var(--titCff);
  gap: var(--titCgap);
  font-family: var(--ff);
  font-size: var(--titCfz);
  text-align: var(--titCta);
  color: var(--titCc);
  padding: var(--titCp);
  margin: var(--titCm);
  line-height: 1.5;
}

:root {
  --titDfz: 2rem;
  --titDc: var(--white);
  --titDm: 0 0 40px;
  --titDta: center;
  --titDp: 15px;
  --titDbd: 1px solid var(--white);
  --titDbg: none;
}

.titD {
  position: relative;
  grid-area: titD;
  font-size: var(--titDfz);
  text-align: var(--titDta);
  color: var(--titDc);
  padding: var(--titDp);
  margin: var(--titDm);
  line-height: 1.5;
  border: var(--titDbd);
  background: var(--titDbg);
}
.titD:before {
  font-size: 1.3em;
  content: attr(data-eng);
  line-height: 1;
  position: absolute;
  bottom: 99%;
  right: 0;
}

@media screen and (max-width: 520px) {
  :root {
    --titAfz: 2.6rem;
  }
  .titB:before {
    font-size: 1.1em;
  }
}

/**==================================================
 ボタン
================================================== **/
:root {
  --btnAfz: 1.6rem;
  --btnAw: min(80vw, 320px);
  --btnAm: 20px auto;
  --btnAp: 15px 20px;
  --btnAbg: var(--white);
  --btnAbd: 1px solid var(--white);
  --btnAc: var(--black);
}

.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);

  position: relative;
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: repeat(auto-fit, minmax(1em, auto));
  align-items: center;
  justify-content: space-between;
  text-align: center;
  font-weight: bold;
}

.btnA:after {
  content: "navigate_next";
  display: block;
  font-family: var(--icons);
  font-size: 1.4rem;
  line-height: 1;
  margin-left: 15px;
  font-weight: normal;
}

.btnA[target="_blank"]:before {
  content: "open_in_new";
  font-family: var(--icons);
  font-weight: normal;
  font-size: 1.1em;
}

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

/**==================================================
header
================================================== **/
header {
  position: sticky;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 340px auto auto;
  grid-template-areas: "logo . nav";
  align-items: center;
  z-index: 100;
  background: var(--white);
  padding: 0 0 0 2%;
  width: 100%;
}

header .logo {
  grid-area: logo;
  display: flex;
  align-items: center;
  gap: 10px;
}

header .logo a {
}

header .logo img {
  width: auto;
  height: 50px;
}

header nav {
  grid-area: nav;
}

header nav .gnav {
  display: flex;
}

header nav .gnav a {
  flex: 1;
  display: flex;
  flex-flow: column;
  text-align: center;
  justify-content: center;
  height: var(--header-h);
  padding: 0 1vw;
  font-size: 1.6rem;
  line-height: 1.3;
  box-shadow: 0 0 0 1px var(--gray);
  white-space: nowrap;
}
header nav .gnav a:hover {
  opacity: 0.8;
}

header nav .gnav small {
  display: block;
  font-size: 1.6rem;
}

.hamburger,
#hamburger-check {
  display: none;
}

@media screen and (max-width: 1200px) {
  header {
    min-width: var(--base-width);
    height: var(--header-h);
  }
  header .logo img {
    width: auto;
    height: clamp(20px, 8vw, 50px);
  }
  .hamburger {
    position: fixed;
    top: 0;
    right: 0;
    height: var(--header-h);
    width: var(--header-h);
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 1vw;
    z-index: 90;
    background: var(--black);
  }
  .hamburger:after {
    display: block;
    content: "MENU";
    font-size: 1.2rem;
    margin: 25px auto 0;
  }

  #hamburger-check {
    display: none;
  }

  /**タップされる前 open**/
  .hamburger span,
  .hamburger span:before,
  .hamburger span:after {
    content: "";
    display: block;
    height: 1px;
    width: clamp(20px, 6vw, 40px);
    border-radius: 3px;
    background-color: var(--white);
    position: absolute;
  }
  .hamburger span {
    top: 18px;
    position: relative;
  }

  .hamburger span:before {
    bottom: 8px;
  }

  .hamburger span:after {
    top: 8px;
  }

  /**タップされたとき close**/
  #hamburger-check:checked ~ .hamburger span {
    background-color: rgba(255, 255, 255, 0);
  }

  #hamburger-check:checked ~ .hamburger span::before {
    bottom: 0;
    transform: rotate(45deg);
  }

  #hamburger-check:checked ~ .hamburger span::after {
    top: 0;
    transform: rotate(-45deg);
  }

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

    font-size: 1.2em;
    flex-flow: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 25px;
    padding: 70px 30px 20px;
    padding: clamp(60px, 12vw, 90px) 10px 30px 20px;
    margin: 0;
  }

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

  header nav .gnav {
    display: block;
  }

  header nav .gnav a {
    width: 100%;
    height: auto;
    display: block;
    padding: 20px 1vw;
  }

  header nav .gnav a small {
    display: inline-block;
  }
}

/**==================================================
 footer
================================================== **/
footer {
  padding-top: 100px;
  padding-bottom: 50px;
  background: var(--black);
  min-width: var(--base-width);
}

footer .w_base {
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-areas:
    "dl1 dl2"
    "sitemap sitemap"
    "related related"
    "fig fig"
    "copy copy";
  justify-content: space-between;
}

footer .logo {
  text-align: center;
  margin: 0 0 30px;
}

footer .logo img {
  width: auto;
  height: 70px;
}

footer dl {
  grid-area: dl1;
}
footer dl + dl {
  grid-area: dl2;
}
footer dl dd {
  display: flex;
  flex-flow: column;
  gap: 30px;
}

.box-access address .chara-num,
footer dl dd address .chara-num {
  --indent: 1em;
}

footer address {
  border-left: 1px solid var(--white);
  padding: 15px 20px;
}

.box-access h2,
footer address h2 {
  font-size: 2.2rem;
}
.box-access h2 small,
footer address h2 small {
  display: inline-block;
  margin: 0 5px;
}
.box-access .tel,
footer address .tel {
  font-size: 1.8rem;
}
.box-access p,
footer address p {
  font-size: 1.4rem;
  margin: 15px 0 0;
}
.box-access p a,
footer address p a {
  text-decoration: underline;
  display: inline-block;
}
.box-access p a:hover footer address p a:hover {
  text-decoration: none;
}

.box-access .mail,
footer address .mail {
  display: inline-block;
  padding: 3px 10px;
  border: 1px solid var(--white);
  margin: 5px 0 0 10px;
  font-size: 1.4rem;
}

.box-access .mail:hover,
footer address .mail:hover {
  background: var(--white);
  color: var(--black);
}

.box-access span,
footer address span {
  display: block;
  font-size: 1.4rem;
  margin: 10px 0 0;
}

footer .sitemap,
footer .related .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 50px;
}
footer .sitemap {
  grid-area: sitemap;
  margin: 50px auto;
}
footer .related {
  grid-area: related;
  padding: 40px 20px;
}
footer .related .inner {
  margin-top: 30px;
  font-size: 1.6rem;
}
footer .copy {
  grid-area: copy;
  text-align: center;
  font-size: 1.2rem;
}

footer figure {
  grid-area: fig;
  text-align: center;
  margin: 0 0 50px;
}
footer figure figcaption {
  font-size: 1.4rem;
  margin: 0 0 15px;
}
footer figure img {
  width: 160px;
  height: auto;
}

@media screen and (max-width: 520px) {
  footer {
    padding-top: 50px;
    padding-bottom: 40px;
  }
  footer .w_base {
    display: flex;
    flex-flow: column;
    gap: 30px;
  }

  footer .logo img {
    width: auto;
    height: 40px;
  }
  footer address h2 {
    font-size: 2rem;
    line-height: 1.3;
  }

  footer address p .tel {
    display: block;
    font-size: 1.8rem;
    margin: 8px 0;
  }

  footer address p a {
    display: inline-block;
  }

  .box-access .mail,
  footer address .mail {
    display: block;
    width: fit-content;
    margin: 10px 0 0 0;
  }

  footer .sitemap,
  footer .related .inner {
    gap: 20px;
  }
  footer .sitemap {
    margin: 30px auto;
  }
  footer .related {
    padding: 20px;
  }
  footer .related .inner {
    font-size: 1.4rem;
  }
  footer .sitemap a,
  footer .related .inner a {
    display: inline-block;
  }
}

/**==================================================
.sp_footer
==================================================**/
.sp_footer {
  display: none;
}
@media (max-width: 520px) {
  .sp_footer {
    display: block;
    position: fixed;
    z-index: 10;
    bottom: 0;
    width: 100%;
    padding: 1px;
    background-color: var(--white);
  }
  .sp_footer .inner {
    display: grid;
    grid-auto-flow: column;
    gap: 1px;
  }
  .sp_footer .inner a {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    padding: 5px;
    color: var(--white);
    background-color: var(--black);
  }
}

/**==================================================
.smf-form
==================================================**/
:root {
  --form-width: 840px;
  --form-fz: 1.6rem;
  --form-th-minwidth: 15em;
  --form-bd: 1px dashed gray;
  --form-note-txt: #fff;
  --form-note-bg: red;
  --form-btn-txt: #fff;
  --form-btn-bg: red;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form textarea {
  width: 100%;
  font-size: var(--form-fz);
}

form textarea {
  min-height: 10em;
}

.snow-monkey-form {
  width: min(100%, var(--form-width));
  margin-inline: auto;
  padding: 50px 0;
}

.smf-form--simple-table .smf-item {
  padding: 20px;
  font-size: var(--form-fz);
  align-items: start;
}

.smf-form--simple-table .smf-item:not(:first-child) {
  border-top: var(--form-bd);
}

.smf-form--simple-table .smf-item__col--label {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  flex: 0 0 20em;
  max-width: var(--form-th-minwidth);
  text-align: right;
}

.smf-form--simple-table .smf-control-description {
  font-size: 0.9em;
}

.smf-form--simple-table .smf-item__label {
  font-weight: bold;
}

.smf-form--simple-table .smf-item__description {
  margin-top: 0px;
}

.smf-form--simple-table .smf-item__description {
  display: inline-block;
  padding: 3px 5px;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--form-note-txt);
  background-color: var(--form-note-bg);
}

@media (max-width: 520px) {
  .smf-form--simple-table .smf-item__col--label {
    max-width: none;
    text-align: left;
  }

  body .is-layout-flex.sp_block {
    flex-wrap: wrap;
  }
}

/* .full-width */
.full-width.smf-item {
  display: block;
}

.full-width.smf-item .smf-item__col--label {
  display: flex;
  justify-content: center;
  max-width: none;
  padding: 0 0 15px;
  text-align: center;
}

.full-width.smf-item .smf-item__col--controls {
  max-width: none;
  text-align: center;
}

.full-width.smf-item .smf-file-control {
  justify-content: center;
}

.smf-item__controls > *:not(:last-child) {
  margin-bottom: 10px;
}

/* .smf-action */
.smf-action {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.smf-form--simple-table + .smf-action {
  margin-top: 0px;
}

.smf-action .smf-button-control__control {
  -webkit-appearance: none;
  display: grid;
  align-items: center;
  min-width: 246px;
  width: fit-content;
  min-height: 54px;
  margin: 0 auto;
  padding: 10px;
  text-align: center;
  color: var(--form-btn-txt);
  background-color: var(--form-btn-bg);
  background-image: none;
  border: 1px solid var(--form-btn-bg);
}

.smf-action .smf-button-control + .smf-button-control {
  margin-left: 0;
}

.smf-rules {
  width: 100%;
  height: 200px;
  border: 1px solid gainsboro;
  padding: 20px;
  margin: 20px 0 40px;
  overflow-y: auto;
}

.form div[data-name="agree"],
.smf-item.agree {
  margin: 30px 0;
  text-align: center;
  font-size: 1.1em;
}

/**==================================================
 パンくず
================================================== **/
*[class*="breadcrumb"] {
  padding: 20px var(--over-width-half);
  font-size: 0.8em;
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
}

*[class*="breadcrumb"] p {
  display: flex;
  align-items: center;
  flex-flow: wrap;
  gap: 10px;
  line-height: 1;
}

*[class*="breadcrumb"] a:first-of-type {
  font-family: var(--icons);
  line-height: 1;
  color: var(--white);
  font-size: 1.3em;
}

/**==================================================
 ページネーション
================================================== **/
.nav-links {
  position: relative;
  width: 100%;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 60px auto;
  z-index: 5;
}

.nav-links :is(span, a:not(.next, .prev)) {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 2em;
  height: 2em;
  border: 1px solid var(--color_typeB);
}

.nav-links a:is(.next, .prev):hover {
  background: var(--black);
  color: var(--white);
}

.nav-links :is(span, a:not(.next, .prev):hover) {
  background: var(--color_typeB);
  color: var(--balck);
}

/**==================================================
カテゴリリンク
================================================== **/
.catBtn {
  display: flex;
  flex-flow: wrap;
  gap: 15px;

  margin: 0 auto 60px;
}

.catBtn a {
  border: 1px solid var(--gray);
  background: var(--color_typeB);
  padding: 5px 20px;
  text-align: center;
}
.catBtn a:hover,
.catBtn a.current {
  background: var(--white);
  color: var(--black);
}

/**-----複数選択可-----**/
.refine {
  margin: 0 auto 60px;
}

.refine .catBtn {
  margin: 0 auto;
}

.refine .catBtn input {
  display: none;
}

.refine .catBtn label {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray);
  background: var(--color_typeB);
  padding: 5px 1.5em 5px 10px;
  text-align: center;
  position: relative;
}

.refine .catBtn label:before {
  display: block;
  width: 1em;
  content: "";
  font-family: var(--icons);
  line-height: 1;
}

.refine .catBtn label:hover,
.refine .catBtn input[type="checkbox"]:checked + label {
  background-color: var(--white); /* 背景色を変更 */
  color: var(--black);
}

.refine .catBtn input[type="checkbox"]:checked + label:before {
  content: "done";
  font-family: var(--icons);
}

.refine input[type="submit"] {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  width: fit-content;
  background: var(--color_typeB);
  padding: 5px 30px;
  margin: 30px auto;
  border: 1px solid var(--white);
  border-radius: 50px;
}

/**==================================================
 トグル
================================================== **/
.toggle {
  display: none;
}

/**------------------------------
汎用
 ------------------------------**/

.toggle + .click:after {
  transform: rotate(90deg);
}

.toggle + .click + .open {
  height: 0;
  padding: 0 20px;
  overflow: hidden;
  transition: var(--transition);
  text-align: center;
}

.toggle:checked + .click + .open {
  /*開閉時*/
  height: auto;
  padding: 20px;
  transition: var(--transition);
}

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

.wrap-toggle {
  border-top: 1px dotted var(--white);
  padding: 20px 0 0;
  margin: 0 0 60px;
}

.wrap-toggle > * {
  margin: 0 0 20px;
  padding-bottom: 20px;
  border-bottom: 1px dotted var(--white);
}

.cl,
.ans {
  padding: 1em 60px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: var(--transition);
}

.cl:before,
.ans:before {
  position: absolute;
  top: 0.5em;
  left: 0;
  flex: none;
  content: "";
  font-size: 3.2rem;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 5px;
}

.cl {
  margin: 0 auto;
  display: block;
  position: relative;
  font-size: 1.2em;
}

.cl:before {
  content: "Q";
  background: var(--color_typeN1);
  color: var(--white);
}

.cl::after {
  content: "＋";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

.ans {
  height: 0;
  overflow: hidden;
}

.ans:before {
  content: "A";
  top: 0.5em;
  background: var(--white);
  color: var(--color_typeN);
}

.toggle:checked + .cl + .ans {
  /*開閉時*/
  height: auto;
  padding: 0.5em 60px 1em;
  transition: var(--transition);
}

.toggle:checked + .cl::after {
  content: "－";
}

/**トグル無効**/
.invalid .ans {
  height: auto;
  min-height: 60px;
}
.invalid .cl::after {
  display: none;
}

@media screen and (max-width: 520px) {
  .wrap-toggle {
    margin: 0 0 30px;
  }

  .cl,
  .ans {
    padding: 0.5em 10px 0.5em 40px;
  }

  .cl:before,
  .ans:before {
    font-size: 0.9em;
    width: 25px;
    height: 25px;
  }

  .cl {
    line-height: 1.5;
  }

  .cl::after {
    right: 0;
  }

  .ans {
    padding: 0 10px 0 40px;
  }

  .toggle:checked + .cl + .ans {
    padding: 5px 10px 1em 2em;
  }
}

/**==================================================
テーブル
================================================== **/

/**基本**/
.table-basic table {
  width: 100%;
  border: 1px solid var(--black);
  color: var(--black);
}

.table-basic :is(th, td) {
  border: 1px solid var(--black);
  padding: 20px;
  vertical-align: middle;
  text-align: center;
}

.table-basic th {
  font-weight: bold;
  background: url(../images/bg.jpg) repeat;
}
.table-basic td {
  background: var(--white);
}

.table-basic p {
  text-align-last: left;
}

@media screen and (max-width: 520px) {
  .table-basic :is(th, td) {
    padding: 10px 4px;
  }
  .table-basic td {
    white-space: nowrap;
    min-width: 5em;
  }
}

/**==================================================
 splide
================================================== **/
/* スライドのサイズ調整 */
.splide__slide img {
  width: 100%;
}

/* HERO */
#hero .splide__slide {
  display: flex;
}
#hero .splide__slide picture {
  flex: 1;
  overflow: hidden;
}
#hero .splide__slide.is-active img,
#hero .splide__slide.is-prev img,
#hero .splide__slide.is-last img {
  animation: scale 10s linear 0s 1 normal both;
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}

@media screen and (max-width: 520px) {
  #hero .splide__slide {
    height: 80vh;
  }
  #hero .splide__slide {
    flex-flow: column;
  }
}

/* NEWS */
#top-news {
  grid-area: slide;
}

.splideLR .splide__arrows {
  width: calc(100% - 50px - 11%);
  position: relative;
  top: 8vw;
}

.splideLR .splide__arrow {
  top: 0;
  background: var(--black);
  border: 1px solid var(--white);
  border-radius: 0;
}

.splideLR .splide__arrow--prev {
  left: -1em;
}
.splideLR .splide__arrow--next {
  right: -1em;
}

.splideLR .splide__arrow svg {
  fill: #fff;
  width: 12px;
  height: 12px;
}

.splideLR .splide__pagination {
  width: var(--base-width);
  bottom: -60px;
}

.splideLR .splide__pagination__page.is-active {
  transform: scale(1);
}
.splideLR .splide__pagination__page {
  background: var(--gray);
}

@media screen and (max-width: 520px) {
  #top-news {
    width: 90vw;
  }
  .splideLR .splide__arrows {
    width: 100%;
    position: relative;
    top: 30vw;
  }

  .splideLR .splide__pagination {
    width: var(--base-width);
    bottom: -30px;
  }
}

/**==================================================
 section
================================================== **/
/**------------------------------
MV
 ------------------------------**/
.sec-mv {
  position: relative;
  max-height: calc(100vh - var(--header-h));
  overflow: hidden;
}

.sec-mv .text {
  width: 100%;
  text-align: center;
  padding: 50px 0;

  background: linear-gradient(to top, rgba(35, 26, 20, 0.8) 0%, rgba(35, 26, 20, 0) 100%);

  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.sec-mv .text h1 {
  font-size: 5rem;
  letter-spacing: -1px;
}
.sec-mv .text h1 .min {
  font-size: 0.7em;
}

@media screen and (max-width: 520px) {
  .sec-mv {
    position: relative;
    max-height: 80vh;
  }
  .sec-mv .text {
    background: linear-gradient(
      to bottom,
      rgba(35, 26, 20, 0) 0%,
      rgba(35, 26, 20, 0.8) 40%,
      rgba(35, 26, 20, 0.8) 60%,
      rgba(35, 26, 20, 0) 100%
    );
    position: absolute;
    bottom: auto;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    z-index: 10;
  }

  .sec-mv .text h1 {
    font-size: 3.6rem;
    letter-spacing: -1px;
  }
  .sec-mv .text h1 .mid {
    font-size: 2.4rem;
    display: block;
  }
  .sec-mv .text p {
    font-size: 1.2rem;
  }
}

/**------------------------------
about
 ------------------------------**/
.sec-about {
  background: var(--black);
  padding: 100px 2% 100px var(--over-width-half);

  display: grid;
  grid-template-columns: 1fr 45%;
  grid-template-areas:
    ". pic"
    "titA pic"
    "p pic"
    ". pic";
  align-items: center;
  gap: 0 70px;
}

.sec-about p {
  grid-area: p;
  line-height: 2;
}

@media screen and (max-width: 520px) {
  .sec-about {
    padding: 50px 5%;

    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "titA"
      "p"
      "pic";
    align-items: center;
    gap: 20px;

    --titAfz: 1.9rem;
    --titAm: 0;
  }

  .sec-about p {
    line-height: 2;
  }
}

/**------------------------------
store
 ------------------------------**/
.sec-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: min-content;
}

.sec-group .group_child {
  display: grid;
  grid-template-rows: subgrid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "pic"
    "titA"
    "p"
    "btnA";
  grid-row: span 4;
  gap: 30px;
  box-shadow: 1px 0 0 0 var(--gray);
  padding: 0 0 50px;

  --titAfz: 2.4rem;
  --titAta: center;
  --titai: center;
}
.sec-group .group_child > * {
  display: block;
}

.sec-group .group_child > *:not(picture) {
  width: 80%;
  margin: 0 auto;
}

@media screen and (max-width: 520px) {
  .sec-group {
    display: block;
  }
}

/*:::::::::::::::::::::::::::::::::
 お知らせ
:::::::::::::::::::::::::::::::::::*/

/**------------------------------
TOP/一覧/関連
 ------------------------------**/
.sec-news {
  padding: 100px 0 130px var(--over-width-half);
  display: grid;
  grid-template-columns: 1fr 216px var(--over-width-half);
  grid-template-areas:
    "titA btnA ."
    "slide slide slide";
  align-items: center;

  --titAfz: 3.6rem;
}
.sec-recom {
  padding-top: 100px;
  padding-bottom: 100px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-template-areas:
    "titA . btnA"
    "slide slide slide";
  align-items: center;

  --titAfz: 3.6rem;
}
.sec-newslist {
  padding-top: 100px;
  padding-bottom: 100px;
}

.list-news {
  --num: 3;
  grid-area: slide;
}

.list-news picture {
  display: block;
  aspect-ratio: 330/240;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.list-news a {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "pic pic"
    "ems time"
    "h h"
    "p p";
  justify-content: space-between;
  gap: 10px;
}

.list-news .ems {
  grid-area: ems;
  display: flex;
  flex-flow: wrap;
  gap: 1px;
}

:is(.em, time) {
  display: block;
  width: fit-content;
  font-size: 1.1rem;
  padding: 5px;
  font-family: var(--webf);
  line-height: 1;
  white-space: nowrap;
}

.em {
  grid-area: em;
  background: var(--gray);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.list-news time {
  grid-area: time;
  text-align: right;
  font-size: 1.2rem;
}

.list-news h3 {
  grid-area: h;
}

.list-news .p {
  grid-area: p;
}

@media screen and (max-width: 520px) {
  .sec-news,
  .sec-recom {
    overflow: hidden;
    width: 100%;
    padding: 50px 5%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "titA"
      "slide"
      "btnA";
    align-items: center;

    --titAfz: 2.6rem;

    --btnAm: 70px auto 0;
  }

  .list-news {
    --num: 1;
  }

  .list-news a {
    width: 90vw;
  }
}

/**------------------------------
詳細ページ
 ------------------------------**/
.sec-newsdetail {
  padding-top: 80px;
  padding-bottom: 120px;

  --titAta: center;
  --titAjc: center;
  --titAai: center;
  --titAm: 20px auto 40px;
}

.sec-newsdetail time {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-align: right;
  font-size: 1.5rem;
  margin: 0 0 10px;
}

.sec-newsdetail time:before {
  content: "schedule";
  font-family: var(--icons);
}

.sec-newsdetail .category {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 3px;
}

.sec-newsdetail img {
  margin-top: 1em;
  margin-bottom: 1em;
}
.sec-newsdetail p {
  margin-top: 1em;
  margin-bottom: 1em;
}

@media screen and (max-width: 520px) {
  .sec-newsdetail {
    padding-top: 40px;
    padding-bottom: 50px;
    --titAm: 20px auto;
  }
}

/*:::::::::::::::::::::::::::::::::
 施設グループ
:::::::::::::::::::::::::::::::::::*/

/**------------------------------
group
 ------------------------------**/
.sec-store {
  padding-top: 120px;
  background: url(../images/top_bg01.jpg) no-repeat center top / 100% auto;

  --titAfz: 3.6rem;
}

.store-bath {
  padding-top: 70px;
  padding-bottom: 30px;
}

.store-fit {
  padding-top: 250px;
  padding-bottom: 80px;
  background: linear-gradient(to bottom, var(--color_typeN) 0%, var(--black) 100%) no-repeat left bottom/ 100% 15%,
    var(--color_typeN) url(../images/top_bg02.jpg) no-repeat center top / 100% auto;
}

.list-store {
  display: flex;
  flex-flow: column;
  gap: 70px;

  --titAfz: 3rem;
  --titAm: 0 0 20px;
  --titA_ifz: 2rem;

  --btnAw: min(80vw, 220px);
  --btnAm: 30px 0 0;
}

.list-store li a {
  display: flex;
  align-items: center;
  gap: 50px;
}
.list-store li:nth-child(even) a {
  flex-flow: row-reverse;
}

.list-store picture {
  aspect-ratio: 650/420;
  flex: none;
  width: 640px;
}

.list-store figure {
  width: 250px;
  margin: 0 0 20px;
}
.list-store .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
}

@media screen and (max-width: 520px) {
  .sec-store {
    padding-top: 60px;

    --titAfz: 2.8rem;
  }

  .store-bath {
    padding-top: 30px;
    padding-bottom: 50px;
  }

  .store-fit {
    padding-top: 100px;
    padding-bottom: 50px;
  }

  .list-store {
    display: flex;
    flex-flow: column;
    gap: 60px;

    --titAfz: 2.4rem;
    --titAm: 0 0 20px;
    --titA_ifz: 1.6rem;

    --btnAm: 20px auto 30px;
  }

  .list-store li a {
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 15px;
  }
  .list-store li:nth-child(even) a {
    flex-flow: column;
  }

  .list-store picture {
    flex: none;
    width: 100%;
  }
}

/**------------------------------
app
 ------------------------------**/
.sec-app {
}

.inner-app {
  display: flex;
  gap: 50px;
}
.inner-app picture {
  flex: none;
  aspect-ratio: 300/420;
  width: 300px;
}

.inner-app .list-numC {
  --num: 3;
  --g: 20px;
  font-size: 1.4rem;
}

.inner-app .list-numC li {
  position: relative;
  border: 1px solid var(--white);
  padding: 15px;
  margin: 4rem 0 0;
  counter-increment: number;
}
.inner-app .list-numC li:before {
  content: "POINT" counter(number, decimal-leading-zero);
  font-size: 2rem;
  position: absolute;
  bottom: 99%;
  right: 0;
  line-height: 1;
}

.dl-app {
  display: flex;
  justify-content: center;
  gap: 90px;
  background: var(--white);
  color: var(--black);
  padding: 20px;
  margin: 35px auto 0;
}
.dl-app a {
  text-align: center;
}
.dl-app a img {
  display: block;
  width: auto;
  height: 72px;
  margin: 5px auto;
}

@media screen and (max-width: 520px) {
  .inner-app {
    flex-flow: column;
    gap: 20px;
  }
  .inner-app picture {
    flex: none;
    aspect-ratio: 300/420;
    width: 60%;
    margin: 0 auto;
  }
  .inner-app .list-numC {
    --num: 1;
    --g: 0;
  }
  .dl-app {
    gap: 10px;
    font-size: 1rem;
    line-height: 1.3;
    padding: 20px 8px;
  }
  .dl-app a img {
    height: 44px;
  }
}

/**------------------------------
bnr
 ------------------------------**/
.sec-bnr {
  padding: 100px 0;
}

@media screen and (max-width: 520px) {
  .sec-bnr {
    padding: 50px 0;
  }
}

/**------------------------------
個人情報保護方針
 ------------------------------**/
.sec-plivacy {
  padding-top: 80px;
  padding-bottom: 120px;
  --titBbd: none;
  --titBta: left;
  --titBm: 40px 0 20px;
  --titBp: 0;
}

/*:::::::::::::::::::::::::::::::::
 ユーバス
:::::::::::::::::::::::::::::::::::*/
/**------------------------------
キービジュアル
 ------------------------------**/
.sec-kv {
  position: relative;
}

.sec-kv picture {
  position: relative;
  display: block;
  width: 100%;
  height: 650px;
}
.sec-kv picture span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 335px;
  height: auto;
}

.sec-kv .text {
  background: color-mix(in srgb, var(--black) 60%, var(--black) 0%);
  text-shadow: 1px 1px 8px var(--black), -1px -1px 8px var(--black), 1px -1px 8px var(--black),
    -1px 1px 8px var(--black);
  color: var(--white);
  writing-mode: vertical-rl;
  padding: 30px 50px;
  height: 100%;

  position: absolute;
  top: 0;
  right: 8%;

  --titAm: 0;
}

@media screen and (max-width: 520px) {
  .sec-kv picture {
    height: 80vw;
  }

  .sec-kv picture span {
    width: 170px;
    transform: translate(-75%, -50%);
  }

  .sec-kv .text {
    color: var(--white);
    padding: 15px 15px 0;
    height: 100%;

    position: absolute;
    right: 4%;

    --titAfz: 1.7rem;
  }
}

/**------------------------------
特色
 ------------------------------**/
.sec-feat {
  padding-top: 80px;
  padding-bottom: 80px;
  background: url(../images/top_bg01.jpg) no-repeat center top / 100% auto;
}

.box-feat {
  display: flex;
  align-items: center;
  gap: 50px;
  margin: 0 0 20px;
}
.box-feat.reverse {
  flex-flow: row-reverse;
}

.box-feat picture {
  flex: none;
  width: 520px;
  border: 5px solid var(--color_typeB);
}

.box-feat .sdgs {
  display: flex;
  margin: 40px 0 0;
}
.box-feat .sdgs img {
  width: calc(100% / 5);
}

.list-feat {
  display: flex;
  flex-flow: column;
  gap: 80px;
  margin: 100px 0 0;

  --titAfz: 3rem;
  --titAm: 0 0 20px;
  --titA_ifz: 2rem;

  --titBbg: url(../images/bg.jpg);
  --titBc: var(--black);
  --titBbd: none;
  --titBm: 0 0 20px;

  --btnAw: min(80vw, 220px);
  --btnAm: 40px auto 0;
}

.list-feat li .a {
  display: flex;
  gap: 50px;
  margin: 30px 0;
}

.list-feat li:nth-child(even) .a {
  flex-flow: row-reverse;
}
.list-feat li .a .text {
  display: flex;
  flex-flow: column;
  justify-content: center;
}
.list-feat .a figure {
  flex: none;
  width: 520px;
  background: var(--white);
  display: flex;
  align-items: center;
}
.list-feat .a picture {
  aspect-ratio: 520/347;
  flex: none;
  width: 520px;
  height: auto;
  position: relative;
}

.list-feat picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.list-feat .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.exp-grid {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas:
    "p1 p1 t1"
    "t2 p2 p2"
    "p3 t3 p4"
    "p3 t4 p4";
  gap: 50px;
  margin: 40px auto;
}
.exp-grid.grid-area2 {
  grid-template-areas:
    "p1 p1 t1"
    "t2 p2 p2"
    "p3 t3 t3";
}
.exp-grid :is(figure, picture) {
  position: relative;
}
.exp-grid :is(figure, picture):before {
  content: attr(data-no);
  width: 1.5em;
  height: 1.5em;
  background: var(--white);
  color: var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 5;
}
.exp-grid p {
  position: relative;
  margin: 10px 0;
  font-size: 1.8rem;
}

.exp-grid p:before {
  content: attr(data-no);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 1.5em;
  height: 1.5em;
  background: var(--white);
  color: var(--black);
  margin: 0 10px 0 0;
}

.exp-grid small {
  font-size: 1.4rem;
}

.img-grid3 {
  display: grid;
  grid-template-columns: 40% 25% 35%;
  grid-template-areas: "a1 a2 a3";
  position: relative;
}
.img-grid3 img {
  width: auto;
  height: 100%;
  object-fit: cover;
}
.img-grid3 img[data-area="a1"] {
  grid-area: a1;
}
.img-grid3 img[data-area="a2"] {
  grid-area: a2;
}
.img-grid3 img[data-area="a3"] {
  grid-area: a3;
}

.box-kodawari {
  display: flex;
  align-items: center;
  gap: 50px;
  margin: 60px 0 0;
  background: url(../images/bg.jpg) repeat center;
  color: var(--black);
  padding: 20px 40px;
  border: 10px solid var(--color_typeB);

  --titCc: var(--black);
}

.box-kodawari picture {
  flex: none;
  width: 250px;
}

.box-kodawari .text {
  flex: 1;
}

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

    --titBfz: 1.8rem;
    --titCfz: 1.8rem;
  }

  .box-feat {
    display: flex;
    flex-flow: column;
    gap: 20px;
    margin: 0 0 15px;
  }

  .box-feat.reverse {
    flex-flow: column;
    margin: 30px 0 15px;
  }

  .box-feat picture {
    width: 100%;
  }

  .list-feat {
    display: flex;
    flex-flow: column;
    gap: 50px;
    margin: 50px 0 0;

    --titAfz: 2.4rem;
    --titAm: 0 0 20px;
    --titA_ifz: 1.6rem;

    --btnAm: 20px auto 0;
  }

  .list-feat li .a {
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 15px;
    margin: 0;
  }
  .list-feat li:nth-child(even) .a {
    flex-flow: column;
  }

  .list-feat .a figure,
  .list-feat .a picture {
    flex: none;
    width: 100%;
  }

  .exp-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
      "p1 p1"
      "t1 t1"
      "p2 p2"
      "t2 t2"
      "p3 p4"
      "t3 t3"
      "t4 t4";
    gap: 15px;
    margin: 30px auto;
  }

  .exp-grid.grid-area2 {
    grid-template-areas:
      "p1 p1"
      "t1 t1"
      "p2 p2"
      "t2 t2"
      "p3 p3"
      "t3 t3";
  }

  .box-kodawari {
    flex-flow: column;
    gap: 5px;
    margin: 30px 0;
    padding: 15px;
    border: 5px solid var(--color_typeB);

    --titCm: 0 0 10px;
  }

  .box-kodawari picture {
    flex: none;
    width: 180px;
  }

  .box-kodawari .text {
    flex: 1;
  }
}

/**------------------------------
施設紹介
 ------------------------------**/
.sec-intro {
  padding-top: 80px;
  padding-bottom: 80px;
}

.box-floor {
  display: flex;
  gap: 80px;
  background: var(--white);
  color: var(--black);
  padding: 40px;
  margin: 40px auto;
}

.box-floor figure {
  flex: 1;
  display: flex;
  flex-flow: column;
  align-items: center;
}
.box-floor figure img {
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.box-floor figure figcaption {
  width: 100%;
  background: var(--color_typeB);
  color: var(--white);
  padding: 5px;
  text-align: center;
}

.box-photos {
  margin: 40px auto;
}

.box-photos .list-numC {
  --num: 2;
  --g: 15px;
  margin: 15px 0;
}

.box-photos .list-numC figure {
  aspect-ratio: auto;
  background: none;
  color: var(--white);
  position: relative;
}

.box-photos .list-numC figure > img {
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
  cursor: pointer;
}
.box-photos .list-numC figure:after {
  font-family: var(--icons);
  display: block;
  content: "photo_library";
  position: absolute;
  top: 5px;
  right: 5px;
}

.box-photos .list-numC figure figcaption {
  width: 100%;
  text-align: left;
  color: var(--white);
  font-size: 1.5rem;
  margin: 5px 0 15px;
}

.box-photos .list-numC figure figcaption small {
  display: block;
  font-size: 1.3rem;
}

.box-photos .list-numC.num3 {
  --num: 3;
}
.box-photos .list-numC.num4 {
  --num: 4;
}

.box-photos.of_cont img {
  aspect-ratio: 980/735;
  width: 100%;
  height: auto;
}

.box-dryer {
  display: flex;
  align-items: flex-end;
  gap: 40px;
}

.box-dryer figure {
  flex: none;
  width: 150px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.2);
}

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

  .box-floor {
    flex-flow: column;
    gap: 15px;
    padding: 15px;
    margin: 20px auto;
  }

  .box-floor figure img {
    aspect-ratio: auto;
    margin: 15px 0;
  }

  .box-floor figure figcaption {
    width: 100%;
    background: var(--black);
    color: var(--white);
    padding: 5px;
    text-align: center;
  }

  .box-photos .list-numC figure figcaption small {
    display: block;
    font-size: 1.2rem;
  }

  .box-photos {
    margin: 40px auto 20px;
  }
  .box-photos .list-numC.num3 {
    --num: 1;
  }
  .box-photos .list-numC.num4 {
    --num: 2;
  }

  .box-photos .list-numC figure figcaption {
    font-size: 1.3rem;
  }

  .box-dryer {
    flex-flow: column;
    align-items: center;
    gap: 20px;
  }

  .box-dryer figure {
    margin: 0 auto;
  }
}

/**------------------------------
料金
 ------------------------------**/
.sec-fee {
  padding-top: 80px;
  padding-bottom: 80px;

  --titBm: 70px 0 20px;
  --titBbg: var(--color_typeB);
  --titBc: var(--white);
  --titBta: left;
  --titBbd: none;
}

.box-ann {
  display: flex;
  flex-flow: wrap;
  gap: 15px;
  margin: 0 0 20px;
}

.box-ann em {
  background: var(--gradG);
  color: var(--black);
  font-size: 1.8rem;
  padding: 5px 20px;
}

.sec-fee .p {
  margin: 0 0 20px;
}

.box-terms {
  border: 1px solid var(--white);
  padding: 20px 30px;
  margin: 0 0 20px;
}

.box-terms2 {
  background: var(--color_typeR);
  color: var(--white);
  padding: 20px 30px;
  margin: 0 0 20px;
  font-size: 1.7rem;
}

.sec-fee .table-basic {
  margin: 0 0 20px;
}

.sec-fee .table-basic td {
  font-size: 1.1em;
}

.list-sell {
  --num: 3;
  --g: 15px;
}

.box-present {
  display: flex;
  align-items: center;
  gap: 80px;
  margin: 0 0 20px;

  --btnAm: 30px 0 0;
}

@media screen and (max-width: 520px) {
  .sec-fee {
    padding-top: 40px;
    padding-bottom: 40px;

    --titBm: 40px 0 20px;
    --titBfz: 1.8rem;
  }

  .box-ann {
    gap: 5px;
    margin: 0 0 15px;
  }
  .box-ann em {
    font-size: 1.5rem;
    padding: 5px 15px;
  }

  .box-terms {
    padding: 10px;
    margin: 0 0 15px;
  }

  .box-terms2 {
    padding: 10px;
    margin: 0 0 15px;
    font-size: 1.5rem;
  }
  .sec-fee .table-basic {
    font-size: 0.9em;
    margin: 0 0 15px;
  }
  .sec-fee .table-basic td {
    font-size: 1.5rem;
  }

  .box-present {
    display: flex;
    flex-flow: column-reverse;
    gap: 20px;
    margin: 0 0 15px;

    --btnAm: 20px 0;
  }
}

/*:::::::::::::::::::::::::::::::::
 サウナ
:::::::::::::::::::::::::::::::::::*/
.sec-hero {
  aspect-ratio: 1500/560;
  background: url(../images/sauna/sauna_01.jpg) no-repeat top center / cover;
  position: relative;
  height: auto;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
}

.sec-hero:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #231a14;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.2;
}

.sec-hero > * {
  position: relative;
  z-index: 3;
}

.sec-hero h2 {
  text-align: center;
  font-size: 4.5rem;
  margin: 0 0 15px;
}

.sec-hero h2 b {
  font-size: 2em;
}

.sec-hero p {
  font-size: 2.6rem;
  font-weight: bold;
}

@media screen and (max-width: 520px) {
  .sec-hero {
    aspect-ratio: 520/600;
    background: url(../images/sauna/sauna_01_sp.jpg) no-repeat top center / cover;
    justify-content: flex-start;
    padding-top: 60px;
  }
  .sec-hero h2 {
    text-align: center;
    font-size: 3.4rem;
    margin: 0 0 15px;
    line-height: 1;
  }
  .sec-hero h2 b {
    font-size: 1.5em;
  }
  .sec-hero p {
    font-size: 1.6rem;
  }
}

/**------------------------------
『サ活』とは？
 ------------------------------**/
.sec-sauna01 {
  padding: 60px var(--over-width-half) 80px;
  background: url(../images/sauna/sauna_02.jpg) no-repeat top left -100px / auto 100%, url(../images/stardust.png),
    url(../images/sauna/sauna_02_2.jpg) no-repeat top right -200px / 40% 100%;
  background-color: var(--black);
  position: relative;
}
.sec-sauna01:after {
  content: "";
  display: block;
  width: 100%;
  height: 80px;
  background: linear-gradient(to top, var(--color_typeB) 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}
.sec-sauna01 p {
  grid-area: p;
  line-height: 2;
  font-size: 1.1em;
}

.sec-sauna01 figure {
  grid-area: img;
  opacity: 0.5;
}

@media screen and (max-width: 520px) {
  .sec-sauna01 {
    padding: 40px 5% 50px;
    background: url(../images/sauna/sauna_02.jpg) no-repeat top left / auto 100%, url(../images/stardust.png);

    --titAm: 0 0 20px;
  }

  .sec-sauna01 p {
    padding-bottom: 0;
  }
}

/**------------------------------
サウナの『おサ法』　
 ------------------------------**/
.sec-sauna02 {
  background: var(--color_typeB) url(../images/stardust.png);

  color: var(--color_typeN4);
  padding-top: 30px;
  padding-bottom: 80px;
}

.sec-sauna02 .sec-sauna02_TOP {
  position: relative;
  background: var(--black);
  padding: 30px 100px;
  color: var(--white);
  --titAc: var(--white);
  --titAm: 0 0 10px;
}

.sec-sauna02 .sec-sauna02_TOP img {
  width: 180px;
  height: auto;
  position: absolute;
  bottom: 0;
  right: 50px;
}

.list-sahou {
  background: url(../images/bg.jpg);
  padding: 30px 100px;
  margin: 0 0 20px;
}

.list-sahou li {
  color: var(--color_typeB);
  padding: 15px 0;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  gap: 0 20px;
  counter-increment: number;
  margin: 0 0 30px;
  font-size: 1.6rem;
}

.list-sahou li h3 {
  width: 100%;
  display: flex;
  gap: 15px;
  align-items: center;
  font-family: var(--webf);
  font-weight: bold;
  font-size: 2.6rem;
}

.list-sahou li h3:before {
  content: counter(number, decimal-leading-zero);
  flex: none;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--color_typeB);
  color: var(--white);
  width: 2em;
  height: 2em;
  border-radius: 59% 41% 54% 46% / 42% 58% 42% 58%;
}
.list-sahou li h3.false {
  justify-content: center;
  text-align: center;
}
.list-sahou li h3.false:before {
  display: none;
}

.list-sahou li picture {
  flex: none;
  width: min(60%, 250px);
  margin: 0 0 0 1em;
}

.list-sahou li p {
  flex: 1;
}

@media screen and (max-width: 520px) {
  .sec-sauna02 {
    padding-bottom: 40px;
  }
  .sec-sauna02 .sec-sauna02_TOP {
    padding: 20px;
  }

  .sec-sauna02 .sec-sauna02_TOP img {
    width: 80px;
    bottom: auto;
    bottom: 0;
    right: 0;
  }

  .sec-sauna02_TOP p {
    width: 78%;
  }

  .list-sahou {
    padding: 20px 20px 1px;
    margin: 0 0 20px;
  }

  .list-sahou li {
    display: flex;
    flex-flow: column;
  }

  .list-sahou li h3 {
    font-size: 2rem;
    gap: 10px;
  }

  .list-sahou li h3.false {
    font-size: 1.9rem;
  }
}

/**------------------------------
ユーバスのサウナ紹介
 ------------------------------**/
.sec-sauna03 {
  padding-top: 80px;
  padding-bottom: 100px;
}

.sec-sauna03 h2 {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 3.2rem;
}

.sec-sauna03 h2 img {
  width: auto;
  height: 50px;
}

.sec-sauna03 ul {
  --titCm: 35px auto 10px;
  --titCff: row;
  --titCai: center;
}

.sec-sauna03 ul .titB {
  --titBfz: 2.8rem;
  --titBp: 10px 20px;
  --titBm: 0 auto 30px;
  --titBbg: url(../images/bg.jpg) repeat;
  --titBbd: none;
  --titBc: var(--black);

  width: 100%;
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.sec-sauna03 .icons {
  display: flex;
  justify-content: flex-end;
  gap: 5px;
  align-items: center;
}

.sec-sauna03 em {
  font-size: 1.3rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  font-family: var(--webf);
  font-weight: bold;
  line-height: 1.2;
  background: var(--black);
  padding: 5px 10px;
}
.sec-sauna03 em.false {
  background: color-mix(in srgb, var(--color_typeB) 30%, var(--white) 80%);
}

/**縦並び大リスト**/

.list-saunaintro {
  margin: 40px auto;
}

.list-saunaintro li {
  display: flex;
  flex-flow: wrap;
  gap: 0 60px;
  margin: 60px 0 0;
}

.list-saunaintro li:nth-child(even) {
  flex-flow: wrap row-reverse;
}

.list-saunaintro li .text {
  flex: 1;
}

.list-saunaintro li .img {
  flex: none;
  width: 520px;
}

.list-saunaintro li .img > * {
  width: 100%;
  height: auto;
}

/**横並び小リスト**/

.list-saunaintro2 {
  --num: 3;
  --g: 30px;
  margin: 60px 0 0;
}

.list-saunaintro2 .icons {
  width: 100%;
}

.list-saunaintro2 > * {
  gap: 0;
  display: flex;
  flex-flow: column;
}

.list-saunaintro2 li .img {
  padding: 20px 0 0;
  margin: auto 0 0;
}

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

  .sec-sauna03 h2 {
    flex-flow: column;
    gap: 15px;
    font-size: 2.8rem;
  }

  .sec-sauna03 ul .titB {
    --titBfz: 2.2rem;
    --titBp: 10px;
    --titBm: 0 auto 20px;
  }

  .sec-sauna03 .icons {
    width: 100%;
  }

  .sec-sauna03 em {
    padding: 5px;
  }

  /**縦並び大リスト**/

  .list-saunaintro {
    margin: 0 auto;
  }

  .list-saunaintro li {
    margin: 40px 0 0;
  }

  .list-saunaintro li .img {
    width: 100%;
    margin: 15px auto;
  }

  /**横並び小リスト**/

  .list-saunaintro2 {
    --num: 1;
    --g: 60px;
  }
}

/**------------------------------
ととのいスペース
 ------------------------------**/
.sec-sauna04 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.list-space {
  --num: 3;
  --g: 30px;

  --titBm: 0 0 15px;
}

.list-space > * {
  gap: 0;
}

.list-space .img {
  margin: 0 0 20px;
}

.list-space .table-basic {
  margin: 0 0 10px;
}

@media screen and (max-width: 520px) {
  .sec-sauna04 {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  .list-space {
    --num: 1;
    --g: 60px;
  }
}

/**------------------------------
アメニティ
 ------------------------------**/

.sec-sauna05 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.sec-sauna05 .list-sell {
  --num: 4;
  margin: 20px auto 15px;
}
@media screen and (max-width: 520px) {
  .sec-sauna05 {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .sec-sauna05 .list-sell {
    --num: 2;
    margin: 20px auto 15px;
  }
}

/**------------------------------
注意事項
 ------------------------------**/
.sec-sauna06 {
  padding-top: 80px;
  padding-bottom: 80px;
  background: var(--color_typeB) url(../images/stardust.png);

  --titAai: center;

  --titCfz: 2.8rem;
  --titCai: center;
  --titCm: 40px auto 0;
}

.list-import {
  display: flex;
  flex-flow: wrap;
  gap: 30px 50px;
  margin: 0 0 60px;
}

.list-import li {
  width: calc((100% - 50px) / 2);
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: var(--webf);
  font-weight: bold;
  font-size: 1.7rem;
}

.list-import li figure {
  flex: none;
  width: 130px;
}

@media screen and (max-width: 520px) {
  .sec-sauna06 {
    padding-top: 40px;
    padding-bottom: 40px;

    --titCfz: 1.8rem;
    --titCm: 30px auto 0;
  }
  .list-import {
    gap: 30px;
    margin: 0 0 40px;
  }
  .list-import li {
    width: 100%;
    font-size: 1.5rem;
  }

  .list-import li figure {
    flex: none;
    width: 90px;
  }
}

/**------------------------------
アクセス
 ------------------------------**/
.sec-sauna07 {
  padding-top: 80px;
  padding-bottom: 1px;

  --titAm: 0 0 60px;
}

.sec-sauna07 .map2 {
  margin: 0 0 120px;
}

.sec-sauna07 .box-access {
  align-items: flex-start;
}

dl.sauna-access {
  flex: none;
  width: 600px;
  font-size: 1.6rem;

  --titBbg: var(--color_typeB);
  --titBbd: none;
  --titBp: 10px 5px;
  --titBm: 0 0 10px;
}

dl.sauna-access dt {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 30px;
  gap: 15px;
}

dl.sauna-access dt img {
  width: calc((100% - 15px * 5) / 6);
  height: auto;
}

dl.sauna-access .table-basic :is(th, td) {
  padding: 10px 5px;
  text-align: center;
}

@media screen and (max-width: 520px) {
  .sec-sauna07 {
    padding-top: 40px;

    --titAm: 0 0 30px;
  }

  dl.sauna-access {
    width: 100%;
  }

  dl.sauna-access dt {
    justify-content: flex-start;
    margin: 0 0 20px;
    gap: 10px;
  }

  dl.sauna-access dt img {
    width: calc((100% - 10px * 3) / 4);
  }
}

/*:::::::::::::::::::::::::::::::::
 和歌山駅前
:::::::::::::::::::::::::::::::::::*/

.sec-fv {
  padding-bottom: 1px;
  --titAai: center;
  --titAta: center;
  --titAm: 50px auto 80px;
}

.sec-fv picture {
  display: block;
  width: 100%;
  height: 650px;
}

.sec-fv .btn-cam {
  margin: -100px auto 0;
}

.btn-cam {
  position: relative;
  z-index: 5;
  width: var(--base-width);
  display: flex;
  align-items: center;
  background: var(--white) url(../images/page_bg01.jpg) no-repeat top left/ 210px auto;
  padding: 15px 20px 15px 200px;
  font-size: 3rem;
  color: var(--color_typeN);
  text-align: center;

  --btnAbg: var(--color_typeN1);
  --btnAbd: 1px solid var(--color_typeN1);
  --btnAc: var(--white);
  --btnAfz: 2rem;
  --btnAp: 30px 20px;
}

.btn-cam p {
  font-weight: bold;
}

@media screen and (max-width: 520px) {
  .sec-fv {
    --titAfz: 1.8rem;
    --titAm: 30px 5%;
  }

  .sec-fv picture {
    height: 80vw;
  }

  .sec-fv .btn-cam {
    margin: -50px auto 0;
  }
  .btn-cam {
    position: relative;
    z-index: 5;
    width: 90vw;
    display: flex;
    flex-flow: column;
    padding: 20px 15px 1px;
    font-size: 1.8rem;
    --btnAp: 15px 20px;
  }
}

/**------------------------------
こんな方におすすめ
 ------------------------------**/

.sec-foryou {
  --titAm: 0 var(--over-width-half) 50px;
}
.sec-foryou .img-foryou {
  width: 100%;
  display: flex;
}

.sec-foryou .img-foryou img {
  flex: 1;
  height: 280px;
  object-fit: cover;
}

.list-foryou {
  position: relative;
  display: flex;
  gap: 10px;
  margin-top: -50px;
  z-index: 5;
}
.list-foryou dl {
  flex: 1;
  /*box-shadow: 0 0 0 2px var(--color_typeN);*/
  background: var(--white);
  color: var(--color_typeN);
  padding: 10px 8px 15px;
}
.list-foryou dl dt {
  width: 100%;
  background: var(--color_typeN3);
  padding: 10px 5px;
  font-size: 2.3rem;
  text-align: center;
  margin: 0 0 15px;
}

.list-foryou dl dd.check {
  font-size: 1.2em;
  display: flex;
  gap: 10px;
  margin: 0 5px 10px;
  line-height: 1.3;
}
.list-foryou dl dd.check:before {
  content: "";
  display: block;
  background: url(../images/page_check.png) no-repeat center / contain;
  aspect-ratio: 28/26;
  width: 20px;
}

@media screen and (max-width: 520px) {
  .sec-foryou .img-foryou {
    flex-flow: wrap;
  }
  .sec-foryou .img-foryou img {
    width: 50%;
    flex: 1;
    height: auto;
    object-fit: cover;
  }
  .list-foryou {
    flex-flow: column;
  }
}

/**------------------------------
特徴
 ------------------------------**/
.sec-str01 {
  --titBfz: 3.6rem;
  --titBm: 0 0 80px;
  overflow: hidden;
}

.list-features {
  display: flex;
  flex-flow: column;
  gap: 70px;

  --titAfz: 3rem;
  --titAm: 0 0 20px;
}

.list-features li {
  counter-increment: number;
}

.list-features li a {
  display: flex;
  align-items: center;
  gap: 50px;
}

.list-features li:nth-child(even) a {
  flex-flow: row-reverse;
}

.list-features li a .text:before {
  content: counter(number, decimal-leading-zero);
  font-size: 10rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.8);
}

.list-features picture {
  aspect-ratio: 650/420;
  flex: none;
  width: 600px;
}

@media screen and (max-width: 520px) {
  .sec-str01 {
    --titBfz: 2rem;
    --titBm: 0 0 40px;
  }

  .list-features {
    display: flex;
    flex-flow: column;
    gap: 70px;

    --titAfz: 2.4rem;
  }

  .list-features li a {
    flex-flow: column;
    gap: 20px;
  }

  .list-features li:nth-child(even) a {
    flex-flow: column;
  }

  .list-features li a .text:before {
    font-size: 5rem;
  }
  .list-features li .text {
    margin-top: -40px;
  }
  .list-features picture {
    width: 100%;
  }
}

/**------------------------------
施設詳細
 ------------------------------**/
.sec-str02 {
}

.box-gallery {
  margin: 40px auto;
}

.box-gallery .list-numC {
  --num: 2;
  --g: 15px;
  margin: 15px 0;
}

.box-gallery .list-numC figure {
  aspect-ratio: auto;
  background: var(--white);
  color: var(--color_typeN);
  border: 2px solid var(--white);
  position: relative;
}

.box-gallery .list-numC figure figcaption {
  width: 100%;
  text-align: center;
  color: var(--color_typeB);
  font-size: 1.4rem;
}

.box-gallery .list-numC.num3 {
  --num: 3;
}
.box-gallery .list-numC.num4 {
  --num: 4;
}

.box-gallery.of_cont img {
  aspect-ratio: 980/735;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 520px) {
  .box-gallery {
    margin: 40px auto 20px;
  }
  .box-gallery .list-numC.num3 {
    --num: 1;
  }
  .box-gallery .list-numC.num4 {
    --num: 2;
  }

  .box-gallery .list-numC figure figcaption {
    font-size: 1.1rem;
  }
}

/**------------------------------
料金
 ------------------------------**/
.sec-str03 {
}

.sec-str03 figure {
  margin: 0 0 30px;
}

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

.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;
}
.ind-gridC.num3 {
  grid-template-columns: repeat(3, 1fr);
}

.ind-gridC strong {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--color_typeN1);
  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_typeN1);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

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

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

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

.ind-gridC dl dd:first-of-type {
  height: 100%;
  background: none;
  box-shadow: 0 0 0 1px var(--color_typeN2);
}

.ind-gridC dl dd:nth-of-type(2) {
  border-top: 1px solid var(--color_typeN3);
}

.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 dl dd {
    padding: 5px;
  }

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

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

/**------------------------------
FIT和歌山駅前用の追加
 ------------------------------  **/
.ind-campaign4 {
  background: var(--white);
  border-color: var(--color_typeN1);
  color: var(--color_typeN1);
  margin: 40px auto;
}

/**------------------------------
 ------------------------------**/
.sec-str05 {
  padding-top: 60px;
  padding-bottom: 120px;
}
.box-access {
  display: flex;
  align-items: center;
  gap: 40px;

  --btnAp: 10px;
  --btnAm: 30px 0 0;
}

.box-access picture {
  flex: none;
  width: 560px;
}

.box-access .map {
  flex: none;
  width: 600px;
}

.box-access .map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 520px) {
  .sec-str05 {
    padding-top: 20px;
    padding-bottom: 60px;
  }
  .box-access {
    flex-flow: column-reverse;
  }

  .box-access picture {
    flex: none;
    width: 100%;
  }

  .box-access .map {
    width: 100%;
  }
}

.box-decarbonization {
  display: flex;
  align-items: center;
  flex-flow: wrap;
  gap: 40px;
  margin: 50px auto;
  padding: 50px;
  background: url(../images/bg.jpg);
  border: 5px solid var(--color_typeG);
  color: var(--black);

  --titBc: var(--white);
  --titBm: 0 0 20px;
  --titBbg: var(--color_typeG);
  --titBbd: 1px solid var(--color_typeG);
  --titBfz: 2.6rem;

  --titCc: var(--color_typeG);
  --titCm: 0;
  --titCta: center;
  --titCai: center;
  --titCjc: center;
  --titCff: row;
  --titCgap: 15px;
  --titCp: 10px 0;
  --titCfz: 3rem;

  --titDc: var(--white);
  --titDm: 30px 0 0;
  --titCp: 10px 0;
  --titDbg: linear-gradient(to right, var(--color_typeE) 0%, var(--color_typeN1) 100%);
  --titDbd: none;
  --titDfz: 2.3rem;
}

.box-decarbonization .text {
  flex: 1;
}

.box-decarbonization .titB {
  border-radius: 50px;
}

.box-decarbonization .titC {
  width: 100%;
  border: 5px dotted var(--color_typeG);
  border-radius: 50px;
}

.box-decarbonization p {
  font-size: 1.8rem;
  margin: 15px 0;
}

.box-decarbonization h3 span {
  font-size: 1.5em;
  color: var(--color_typeG);
}

.box-decarbonization figure {
  flex: none;
  width: 380px;
  margin: 40px auto;
}

@media screen and (max-width: 520px) {
  .box-decarbonization {
    gap: 20px;
    margin: 30px auto;
    padding: 30px 15px;

    --titBfz: 1.8rem;

    --titCfz: 2.4rem;

    --titDm: 10px auto;
    --titDfz: 1.8rem;
  }

  .box-decarbonization p {
    font-size: 1.6rem;
    margin: 10px 0;
  }

  .box-decarbonization figure {
    width: 90%;
    margin: 0 auto;
  }
}

/*:::::::::::::::::::::::::::::::::
 3店舗 追加
:::::::::::::::::::::::::::::::::::*/
.sec-fv #mv {
}

.sec-fv #mv picture {
  aspect-ratio: 980/551;
  height: auto;
}

.sec-fv .text {
  margin: 50px 5% 80px;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.8;

  --titAm: 0 auto 40px;
}

@media screen and (max-width: 520px) {
  .sec-fv .text {
    margin: 30px 5%;
    font-size: 1.4rem;
    text-align: left;

    --titAm: 0 auto 20px;
  }
}

.sec-fitstore {
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 120px;
  background: linear-gradient(to bottom, var(--color_typeN) 0%, var(--color_typeN2) 100%) no-repeat left bottom/ 100%
      15%,
    var(--color_typeN) url(../images/top_bg02.jpg) no-repeat center top -100px / 100% auto;

  --titAfz: 3.6rem;
}

.machinetable {
  padding: 0;
  margin: 30px auto 0;
}
.machinetable h3 {
  background: color-mix(in srgb, var(--white) 10%, var(--white) 0%);
  color: var(--white);
  font-weight: bold;
  padding: 10px;
  width: 100%;
  margin: 0 0 1px;
}
.machinetable :is(table, tbody, tr, th, td) {
  display: block;
  font-size: 1.3rem;
}
.machinetable table {
  display: block;
  columns: 2;
  gap: 1px;
}
.machinetable table tr {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  margin: 0 0 1px;
  background: color-mix(in srgb, var(--white) 10%, var(--white) 0%);
}

.machinetable td {
  padding: 0;
}

.machinetable td + td {
  white-space: nowrap;
  padding: 0;
}

@media screen and (max-width: 520px) {
  .sec-fitstore {
    padding-top: 60px;
    padding-bottom: 40px;
    background-position: left bottom, center top -40px;
    --titAfz: 2.8rem;
  }

  .machinetable table {
    columns: 1;
  }
  .machinetable table tr {
    padding: 10px;
    gap: 10px;
  }
}

.price-toggle {
  margin: 40px auto 0;

  --titAfz: 2.2rem;
}

.price-toggle .toggle + .click + .open {
  background: var(--color_typeN2);
}

.price-toggle .ind-nonte {
  text-align: left;
}

.pricetable {
  width: 100%;
}

.pricetable table {
  width: 100%;
  border: 1px solid var(--color_typeN3);
  text-align: center;
  margin: 0 auto 40px;
}

.pricetable table :is(th, td) {
  text-align: center;
  padding: 10px;
  border: 1px solid var(--color_typeN3);
}

.pricetable table th {
  background: var(--color_typeN1);
}

@media screen and (max-width: 520px) {
  .price-toggle {
    margin: 40px auto 0;

    --titAfz: 1.8rem;
  }
}
