/* キービジュアル */
.kv-by {
  background: url('/wp-content/themes/swell_child/edit/img/kv-sauna-by.jpg') no-repeat center;
  background-size: cover;
  height: 498px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--fs-big-by);
  font-weight: bold;
  color: #fff;
}
@media (max-width: 1024px){
  .kv-by {
    height: 200px;
  }
}
.kv-by::after {
  background: url("/wp-content/themes/swell_child/edit/img/kv-wave.svg");
  bottom: 0;
  content: '';
  height: 90px;
  position: absolute;
  width: 100%;
}
@media (max-width: 1024px){
.kv-by::after {
    background: url("/wp-content/themes/swell_child/edit/img/kv-wave.svg") center;
    height: 28px;
    bottom: -5px;
  }
}


/* 一番最後が波のセクションの場合のマージントップ */
.footer-by {
    margin-top: 70px;
}
@media (max-width: 768px){
  .footer-by {
    margin-top: 0px;
    padding-top: 40px !important;
  }
}


/* 温泉を表す漢字ボックス */
.kanji-box-poka {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 768px){
  .kanji-box-poka {
    display: block;
    text-align: center;
    margin-bottom: 0px;
  }
}
/* 温泉を表す漢字1文字 */
.kanji-poka {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--sub_color-by);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}
@media (max-width: 768px){
  .kanji-poka {
    margin: auto;
    margin-bottom: 4px;
    text-align: center;
  }
}

/* 温泉のマーク */
.spa-onsen_mark-poka {
  width: 50%;
}

.kanji-middle-poka {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kanji-in-poka {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background-color: var(--sub_color-by);
  text-align: center;
  line-height: 74px;
  font-size: 32px;
  font-family: var(--ff_h-by) !important;
  display: inline-block;
  color: var(--white_color-by) !important;
}


/* 電気風呂の注意点 */
.electrical_precautions-poka {
  font-size: var(--fs-mini-by);
}

/* 露天風呂のマージントップ */
.roten-mt-poka {
  margin-top: 50px;
}


/* アコーディオンのflex */
.accordion_wrapper-poka {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}
@media (max-width: 768px){
  .accordion_wrapper-poka {
    display: block;
  }
}
/* アコーディオンのbox */
.accordion_box-poka {
    width: calc(50% - 32px);
}
@media (max-width: 768px){
  .accordion_box-poka {
    width: 100%;
  }
}
/* アコーディオンメニュー */
.accordion_toggle-poka {
    display: none;
}
/*タイトル*/
.accordion_label-poka {
    padding: 20px;
    display: block;
    color: var(--black_color-by);
    background: var(--main_color-by);
    font-size: var(--fs-middle-by);
    font-weight: bold;
    display: flex;
    align-items: center;
    border-radius: 100vh;
}
@media (max-width: 768px){
  .accordion_label-poka {
    padding: 8px;
  }
  .accordion_label-poka .kanji-poka {
    margin: 0;
    margin-bottom: 4px;
    margin-right: 16px;
  }
}
/*タイトル横の矢印*/
.accordion_label-poka::before{
    content:"";
    width: 6px;
    height: 6px;
    border-top: 2px solid var(--black_color-by);
    border-right: 2px solid var(--black_color-by);
    -webkit-transform: rotate(45deg);
    position: absolute;
    top:calc( 50% - 3px );
    right: 20px;
    transform: rotate(135deg);
}
.accordion_label-poka,
.accordion_content-poka {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s;
}
/*本文*/
.accordion_content-poka {
    height: 0;
    margin-bottom:10px;
    padding:0 20px;
    overflow: hidden;
    color: var(--black_color-by);
    font-size: var(--fs-text-by);
}
/*開閉時*/
.accordion_toggle-poka:checked + .accordion_label-poka + .accordion_content-poka {
    height: auto;
    padding:20px ;
    transition: all .3s;
}
.accordion_toggle-poka:checked + .accordion_label-poka::before {
    transform: rotate(-45deg) !important;
}


