
/* ===============================
   bath共通
================================= */





/* ===============================
   bath-top
================================= */
.bath-top {
  position: relative;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  background: url("../img/bath/top.png") no-repeat bottom center / cover;
  z-index:10;
}
.bath-top .text h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  writing-mode: vertical-rl;
  text-orientation: upright;
  border: 1px solid #fff;
  padding: 15vh 3vw; /* 画面比率で調整 */
  font-size: 2em;
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  white-space: nowrap;
}
.bath-top .text h1::before{
    content: "";
    position: absolute;
    width: calc(100% - 15px);
    height: calc(100% - 15px);
    border: 1px solid white;
    pointer-events: none;
    transition: all 0.5s;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    }
@media (max-width: 768px) {
.bath-top .text h1 {
  padding: 15vh 7vw;
}
}





/* ===============================
   bath-sec01
================================= */
.bath-sec01 {
  color: white;
  padding: 0 0 0 0;
    }
.bath-sec01 .area {
  position: relative;
  display: flex;
  justify-content: center;
}
.bath-sec01 .bg {
  position: relative;
}
.bath-sec01 .bg img{
  width: 100%;
  transform: scale(1.2);
  transform-origin: center;
}
.bath-sec01 .wrap {
  position: absolute;
  width:100%;
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top:50%;
  left:50%;
  transform: translate(-50%, -50%);
}
.bath-sec01 .wrap .ttl {
  font-size: 2rem;
    font-weight:bold;
}
.bath-sec01 .wrap .line {
  width: 75px;
  height: 1px;
  background-color: #ccc;
  margin: 2rem 0;
}
.bath-sec01 .wrap .text {
  font-size: 1rem;
  text-align: center;
}
@media (max-width: 768px) {
.bath-sec01 {
    padding: 0 5% 20% 5%;
    }
.bath-sec01 .wrap .ttl {
  font-size: 1.5rem;
    text-align: center;
}
.bath-sec01 .bg img{
  transform: scale(2);
}
.bath-sec01 .wrap {
    top:75%;
}
}





/* ===============================
   bath-sec02
================================= */
.bath-sec02{
    color: white;
    padding: 20% 0 0 0;
}
.bath-sec02 .area{
    display: flex;
    align-items: center;
    justify-content: center;
    gap:5rem;
    flex-wrap: wrap;
}
.bath-sec02 .wrap01 {
    min-width:500px;
    max-width:600px;
background-color:red;
}
.bath-sec02 .wrap01 img{
    width:100%;
    object-fit: cover;
}
.bath-sec02 .wrap02 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:2rem;
}
.bath-sec02 .wrap02 .ttl{
    text-align: center;
    font-size:1.5rem;
    font-weight: bold;
}
.bath-sec02 .wrap02 .line{
  width:100%;
    height: 1px;
  background-color: #7F6000;
}
.bath-sec02 .wrap02 .text{
    font-size:1rem;
}   
@media (max-width: 768px) {
.bath-sec02 .area{
    flex-direction: column;
    gap: 2rem;
    flex-wrap: nowrap;
}
.bath-sec02 .wrap01 {
    min-width:auto;
    max-width:100%;
}
.bath-sec02 .wrap02 {
    padding:0 5%;
    gap: 1rem;
}
}





/* ===============================
   bath-sec03
================================= */
.bath-sec03 {
  color: white;
  padding: 20% 0 0 0;
    position: relative;
    z-index:50;
}
.bath-sec03 .area {
  display: flex;
  flex-direction: column;
}
.bath-sec03 .area .wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
    gap:2rem;
}
.bath-sec03 .area .wrap .inr{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.bath-sec03 .area .wrap .ttl {
  font-size: 2rem;
    font-weight: bold;
}
.bath-sec03 .area .wrap .line {
    width:125%;
  height: 1px;
  background-color: #7F6000;
}
.bath-sec03 .bath-splide01 {
  width: 100%;
}
.bath-sec03 .bath-splide02 {
  width: 100%;
}
.bath-sec03 .splide__slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  opacity: 0.3;
  transition: opacity 0.5s ease;
}
.bath-sec03 .splide__slide.is-active img {
  opacity: 1;
}
.bath-sec03 .bath-splide01,.bath-sec03 .bath-splide02{
  position: relative;
  padding-bottom: 1rem;
}
.bath-sec03 .splide__pagination {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  gap: 0.25rem;
  width: 100%;
}
.bath-sec03 .splide__pagination li {
  list-style: none;
}
.bath-sec03 .splide__pagination button {
  width: 30px;
  height: 4px;
  background-color: white;
  border-radius: 0px;
  border: none;
  opacity: 0.25;
  transition: opacity 0.3s ease, background-color 0.3s ease;
}
.bath-sec03 .splide__pagination button.is-active {
  width: 30px;      /* サイズを固定化 */
  height: 4px;
  border-radius: 0px;
  background-color: #7F6000;
  opacity: 1;
    transform: scale(1.0);
}
@media (max-width: 768px) {
.bath-sec03{
    padding: 40% 0 0 0;
}
}





/* ===============================
   bath-sec04
================================= */
.bath-sec04{
    color: white;
    padding: 10% 0 0 0;
    z-index:10;
  position: relative;
}
.bath-sec04 .area{
    width:60%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin:0 auto;
    gap: 2rem;
    flex-wrap: wrap;
}
.bath-sec04 .area.reverse{
    flex-direction: row-reverse;
}
.bath-sec04 .wrap01 {
    font-size:2rem;
  writing-mode: vertical-rl; /* 右→左に縦書き（日本語の標準） */
  text-orientation: upright; /* 英数字も縦に揃える */
  color: #7F6000;
    margin:0 auto;;
    z-index:2;
}
.bath-sec04 .wrap01 img{
    width: clamp(1rem, 450px, 500px);
    object-fit: cover;
}
.bath-sec04 .wrap02 {
    width: clamp(50%, 500px, 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:2rem;;
    z-index:2;
}
.bath-sec04 .wrap02 .ttl{
    display: flex;
    align-items: center;
    font-size:1.5rem;
    gap:1rem;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}
.bath-sec04 .wrap02 .ttl img{
    width:50px;
}
.bath-sec04 .wrap02 .line{
  width:100%;
    height: 1px;
    background-color: #fff;
}
.bath-sec04 .wrap02 .text{
    display: flex;
    flex-direction: column;
    gap:2rem;
    font-size:1rem;
}
.bath-sec04 .bgplus{
  position: absolute;
  z-index: 0;
  left: 0;
  width: 50%; /* 必要なら調整 */
  height: auto;
    pointer-events: none;
}
    
@media (max-width: 768px) {
.bath-sec04{
    padding: 20% 0 0 0;
}
.bath-sec04 .area{
    width:100%;
        flex-direction: column-reverse;
    }
.bath-sec04 .wrap02 {
    width:100%;
    padding:0 5%;
}
.bath-sec04 .wrap01 {
    max-width: 100%;
}
.bath-sec04 .bgplus{
  top:0;
  left: auto;
  width: 100%;
}
.bath-sec04 .area.reverse{
    flex-direction: column-reverse;
}
.bath-sec04 .area.sp-reverse{
    flex-direction: column;
}
}





/* ===============================
   bath-sec05
================================= */
.bath-sec05{
    color: white;
    padding: 20% 0 0 0;
}
.bath-sec05 .area{
    display: flex;
    align-items: center;
    justify-content: center;
    gap:5rem;
}
.bath-sec05 .wrap01 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:2rem;
}
.bath-sec05 .wrap01 img{
    width: clamp(150px, 250px, 300px);
}
.bath-sec05 .wrap01 .ttl{
    text-align: center;
    font-size:1.5rem;
    color:#7F6000;
}
.bath-sec05 .wrap01 .line{
    width: 150px;
    height: 1px;
    background-color: #fff;
}
.bath-sec05 .wrap01 .text{
    font-size:1rem;
} 
.bath-sec05 .wrap02 {
  display: grid;
  grid-template-columns: 1fr 1fr;
        gap:1rem;
        width:35%;
}
.bath-sec05 .wrap02 img{
        width:100%;
        object-fit: cover;
}
.bath-sec05 .red {
  grid-column: 1 / span 2;
        overflow: hidden;
}

.bath-sec05 .wrap02 .red.fade-dw {
  transition-delay: 0s;
}
.bath-sec05 .wrap02 .blue.fade-dw {
  transition-delay: 0.5s;
}
.bath-sec05 .wrap02 .green.fade-dw {
  transition-delay: 1s;
}
    
@media (max-width: 768px) {
.bath-sec05{
    padding: 30% 0 0 0;
}
.bath-sec05 .area{
    flex-direction: column;
    gap: 2rem;
}
.bath-sec05 .wrap01 {
    padding:0 5%;
}.bath-sec05 .wrap02 {
    width:100%;
}
}






















