@charset "UTF-8";

/* ===================================================================
　共通設定
==================================================================== */
.pc-none{ display: none; }
.sp-none{ display:block; }
.grecaptcha-badge { visibility: hidden; }

/* 読み込み時のフェードイン表示 */
html { 
	animation: fadeIn 1s ease 0s 1 normal;
	scroll-behavior: smooth;
}


/* font設定 - IBM Plex Sans JP */
@font-face {
  font-family: 'IBMPlexSansJP-Regular';
  src: url('../fonts/IBMPlexSansJP-Regular.ttf') format('truetype');
  font-weight: 400; /* Regular */
}
@font-face {
  font-family: 'IBMPlexSansJP-Medium';
  src: url('../fonts/IBMPlexSansJP-Medium.ttf') format('truetype');
  font-weight: 500; /* Medium */
}

/* font設定 - Montserrat */
@font-face {
  font-family: 'Montserrat-Light';
  src: url('../fonts/Montserrat-Light.ttf') format('truetype');
  font-weight: 300; /* Light */
}
@font-face {
  font-family: 'Montserrat-Regular';
  src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400; /* Regular */
}
@font-face {
  font-family: 'Montserrat-Medium';
  src: url('../fonts/Montserrat-Medium.ttf') format('truetype');
  font-weight: 500; /* Medium */
}


/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}	
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    background: transparent;
}
button,
input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
    border: none;
    outline: none;
    background: transparent;
}
input[type="radio"] { display: none; }
input[type="radio"]:checked + label { background: #ff0000; }
	
html { 
	box-sizing: border-box;
	scroll-padding-top: 6.527777777777779vw;
}
*,
*::before,
*::after { box-sizing: inherit; }

body, html {
	margin:0;
	padding:0;
	font-family: YakuHanJP, "IBMPlexSansJP-Regular", "Hiragino Sans", sans-serif;
	font-size: 1.0416666666666665vw;
	font-weight: 400;
	line-height: 220%;
	letter-spacing: 0.10416666666666667vw;	
	text-align: justify;
	font-feature-settings: 'palt';/*文字のカーニング*/
	color: #F1EFEB;
	-webkit-text-size-adjust: 100%; 
}

body{
	position:relative;
	word-break:break-all; 
}

body, div, h1, h2, h3, h4, h5, h6, p, dl, dt, dd, ul, ol, li,
blockquote, pre, table, caption, th, td, address,
form, fieldset, legend, object {
  margin: 0;
  padding: 0; }

header, section, navi, footer { display: block; }

a, ins { text-decoration: none; }

address, em, cite, dfn, var { font-style: normal; }

input, textarea { font-weight: normal; }

button, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

button, input, select, textarea {
  font-family : inherit; }

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom; }

a { color: inherit; }
a img { border: none; }
a[href^="tel:"] {
  cursor: pointer;
  opacity: 1 !important;
}
a:link, a:visited, a:active { color:#F1EFEB; }
a:hover {
	text-decoration: none; }

li { list-style: none; }

hr{
	height: 1px;
	background: #000;
	border: none; }

strong { font-weight: 600; }

table{
  border-collapse: collapse;
  border-spacing: 0; }

/* clearfix */
.cf::before,
.cf::after {
    content:""!important;
    display:table!important; } 
.cf::after { clear:both!important; }
/* For IE 6/7 (trigger hasLayout) */
.cf { zoom:1; }



/* ===================================================================
　cssアニメーション
==================================================================== */
/* フェードイン-------------------------- */
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

/* フェードアウト-------------------------- */
@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}
@-webkit-keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}


/* ===================================================================
　汎用css
==================================================================== */
/* 個別マージン ウィンドウサイズ1440の時*/
.mt10{margin-top:0.6944444444444444vw!important;}
.mt20{margin-top:1.3888888888888888vw!important;}
.mt30{margin-top:2.083333333333333vw!important;}
.mt40{margin-top:2.7777777777777777vw!important;}
.mt50{margin-top:3.4722222222222223vw!important;}
.mt60{margin-top:4.166666666666666vw!important;}
.mt70{margin-top:4.861111111111112vw!important;}
.mt80{margin-top:5.555555555555555vw!important;}
.mt90{margin-top:6.25vw!important;}
.mt100{margin-top:6.944444444444445vw!important;}

.mb10{margin-bottom:0.6944444444444444vw!important;}
.mb20{margin-bottom:1.3888888888888888vw!important;}
.mb30{margin-bottom:2.083333333333333vw!important;}
.mb40{margin-bottom:2.7777777777777777vw!important;}
.mb50{margin-bottom:3.4722222222222223vw!important;}
.mb60{margin-bottom:4.166666666666666vw!important;}
.mb70{margin-bottom:4.861111111111112vw!important;}
.mb80{margin-bottom:5.555555555555555vw!important;}
.mb90{margin-bottom:6.25vw!important;}
.mb100{margin-bottom:6.944444444444445vw!important;}
.mb120{margin-bottom:8.333333333333332vw!important;}

.ml-half{ margin-left: 0.5em;}

/* 個別幅 */
.width100{width:6.944444444444445vw; margin:0 auto;}
.width200{width:13.88888888888889vw; margin:0 auto;}
.width300{width:20.833333333333336vw; margin:0 auto;}
.width400{width:27.77777777777778vw; margin:0 auto;}
.width500{width:34.72222222222222vw; margin:0 auto;}
.width600{width:41.66666666666667vw; margin:0 auto;}
.width700{width:48.61111111111111vw; margin:0 auto;}
.width800{width:55.55555555555556vw; margin:0 auto;}
.width900{width:62.5vw; margin:0 auto;}
.width1000{width:69.44444444444444vw; margin:0 auto;}

/*中央揃え*/
.textC{ text-align: center; }

/*フォントサイズ*/
.f10{ font-size: 0.6944444444444444vw;}
.f12{ font-size: 0.8333333333333334vw;}
.f14{ font-size: 0.9722222222222222vw;}
.f16{ font-size: 1.1111111111111112vw;}
.f18{ font-size: 1.25vw;}
.f20{ font-size: 1.3888888888888888vw;}
.f32{ font-size: 2.2222222222222223vw; }
.f36{ font-size: 2.5vw; }

/* inner */
.inner1100{
	width: 100%;
  max-width: 76.38888888888889vw;
	margin: 0 auto 0;
}
.inner800{
	width: 100%;
  max-width: 55.55555555555556vw;
	margin: 0 auto 0;
}

/* background */
.bg-green{ background: #145358; }
.bg-white{ background: #F1EFEB; }

/*文字色*/
.green{ color: #145358; }
.white{ color: #F1EFEB; }
.red{ color: #C8534C; }

/* 改行に使う */
.line-h-0{ line-height: 0; }
.inline-block{ display: inline-block; }

/*改行防止*/
.kaigyo-none{ white-space: nowrap; }

/*リンク装飾*/
a.auto-linked-url {
  color: #CA6E09!important;
  text-decoration: underline;
}


/* ===================================================================
　ボタン
==================================================================== */
/* スタンダードボタン（aタグ内に好みのSVG＋spanテキスト） */
.btn a{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5555555555555556vw;
	border-radius: 40px;
	border: 1px solid #F1EFEB;
	background: #383333;
	transition:all 0.5s; 
	padding: 1.1111111111111112vw 1.9444444444444444vw 1.1111111111111112vw 1.6666666666666667vw;	
}
.btn a:hover{
  background: #CA6E09;
}
.btn span{
  color: #F1EFEB;
	font-family: YakuHanJP, "IBMPlexSansJP-Medium", "Hiragino Sans", sans-serif;
	font-size: 1.0416666666666665vw;
	font-weight: 500;
	line-height: normal;
	letter-spacing: 0.10416666666666667vw;	
	white-space: nowrap;
}


/* 矢印マーク */
.btn.white-arrow a{
	padding: 1.1111111111111112vw 4.027777777777778vw 1.1111111111111112vw 1.6666666666666667vw;		
}
.btn.white-arrow a span{
	position: relative;
}
.btn.white-arrow a span:after{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: -2.361111111111111vw;
	content: '';
	width: 1.6666666666666667vw;/*調整*/
	height: 1.6666666666666667vw;/*調整*/
	aspect-ratio: 1/1;
	background: url(https://yume-sauna.jp/wp/wp-content/uploads/2025/06/lucide_arrow-right-min.png) no-repeat;
	background-size: cover;
	transition:all 0.8s; 
}
.btn.white-arrow a:hover span:after{
  right: -2.8vw;
}



/* 各部位毎カスタム */
header .btn a{
	width: 12.847222222222221vw;
	height: 4.027777777777778vw;
	padding: 1.1111111111111112vw 1.9444444444444444vw 1.1111111111111112vw 1.6666666666666667vw;	
}

#catch .btn a{
	width: 17.63888888888889vw;
	height: 4.027777777777778vw;
}

.btn.learnmore a{
	width: 12.847222222222221vw;
	height: 4.027777777777778vw;	
}
.btn.learnmore span{
  font-family: YakuHanJP, "Montserrat-Regular", sans-serif;
}

.btn.more a{
	width: 15.833333333333332vw;
	height: 4.027777777777778vw;	
}


/* 横幅いっぱいボタン */
.width-100-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5vw;
  width: 100%;
  font-family: YakuHanJP, "Montserrat-Regular", sans-serif;
  font-size: 1.3888888888888888vw;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.1111111111111111vw;
  position: relative;
  padding: 2.2222222222222223vw 0;
  border-top: 1px solid #F1EFEB;
  border-bottom: 1px solid #F1EFEB;
  transition: all 0.5s;
  z-index: 0;
}
.width-100-btn a::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  mix-blend-mode: multiply;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 1;
}
.width-100-btn a:hover::before {
  opacity: 1;
}
.width-100-btn a::after {
  content: "";
  display: inline-block;
  width: 3.0555555555555554vw;
  height: 3.0555555555555554vw;
  border: 1px solid #F1EFEB;
  background-color: #383333;
  background-image: url('https://yume-sauna.jp/wp/wp-content/uploads/2025/06/lucide_arrow-right-min.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.6666666666666667vw 1.6666666666666667vw;
  border-radius: 50%;
  transition: background-color 0.5s ease, transform 0.5s ease;
  z-index: 2;
}
.width-100-btn a:hover::after {
  background-color: #CA6E09;
}
.width-100-btn a > * {
  position: relative;
  z-index: 2;
}

/* 横幅いっぱいボタン - ベージュ背景版 */
#beige-sec .width-100-btn a {
  border-top: 1px solid #383333;
  border-bottom: 1px solid #383333;
}
#beige-sec .width-100-btn a::before {
  background-color: rgba(255, 255, 255, 0.6);
}


/* footer-mailform-btn */
.footer-mailform-btn{
	position: absolute;
	right: 12.5vw;
	top: 50%;
	transform: translateY(-50%);
}
.footer-mailform-btn a {
	display: flex;
	justify-content: end;
	align-items: center;
	gap: 0.5555555555555556vw;
	width: 18vw;
	font-family: YakuHanJP, "Montserrat-Regular", sans-serif;
	font-size: 1.3888888888888888vw;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0.1111111111111111vw;
	position: relative;
	padding: 2.2222222222222223vw 0;
	transition: all 0.5s;
	z-index: 0;
}
.footer-mailform-btn a span{
	margin-right: 1.1111111111111112vw;
}
.footer-mailform-btn a::after {
	content: "";
	display: inline-block;
	width: 5.555555555555555vw;
	height: 5.555555555555555vw;
	border: 1px solid #F1EFEB;
	background-color: #383333;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M3 12L21 12M21 12L12 3M21 12L12 21' stroke='%23F1EFEB' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 1.6666666666666667vw;
	border-radius: 50%;
	transition: background-color 0.5s ease, transform 0.5s ease;
	z-index: 2;
}
.footer-mailform-btn a:hover::after {
	background-color: #CA6E09;
}
.footer-mailform-btn a > * {
	position: relative;
	z-index: 2;
}

/* ===================================================================
　container
==================================================================== */
#container{
	position: relative;
	overflow: hidden;
}

/* ===================================================================
　ヘッダー（追従グローバルナビ）
==================================================================== */
header{
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1;
	padding: 2.430555555555556vw 2.7777777777777777vw;
}
header h1,
#header-logo{
	position: absolute;
	top: 2.430555555555556vw;
	left:  2.7777777777777777vw;
}

nav{
	display: flex;
	justify-content: flex-end;
	align-items: center;		
	font-family: YakuHanJP, "IBMPlexSansJP-Medium", "Hiragino Sans", sans-serif;
	font-size: 1.0416666666666665vw;
	font-weight: 500;
}
nav ul{
  display: flex;
  gap: 2.2222222222222223vw;
	margin-right: 2.2222222222222223vw;
}

/* 上部固定（追従） */
.is-fixed {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
}


/* ===================================================================
　見出し、p
==================================================================== */
h2{
	font-family: YakuHanJP, "Montserrat-Light", "IBMPlexSansJP-Regular", "Hiragino Sans", sans-serif;
	font-weight: 300;	
	color: #F1EFEB;
	font-size: 4.444444444444445vw;
	line-height: 100%;
	letter-spacing: 0.17777777777777778vw;
	margin-bottom: 2.2222222222222223vw;
}
h2.en,
.en{
	font-family: YakuHanJP, "Montserrat-Light", sans-serif;
	font-weight: 300;	
}
h2.jp,
.jp{
	font-family: YakuHanJP, "IBMPlexSansJP-Regular", "Hiragino Sans", sans-serif;
	font-weight: 400;	
}


span.accent-font {
	position: relative;
	display: block;
	color: #F1EFEB;
	font-family: YakuHanJP, "IBMPlexSansJP-Regular", "Hiragino Sans", sans-serif;
	font-size: 1.25vw;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0.125vw;
	padding-left: 1.2em; /* 円の幅＋余白 */
	vertical-align: middle;
	margin-top: 1.1111111111111112vw;
}
span.accent-font::before {
	content: "";
	display: inline-block;
	width: 0.8em;
	height: 0.8em;
	background-color: #CA6E09;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 45%;
	transform: translateY(-45%);
}
span.accent-font.en{
	font-family: YakuHanJP, "Montserrat-Medium", sans-serif;
	font-weight: 500;	  
}


.index-yumekiko h2{
	font-size: 2.2222222222222223vw;
	line-height: 180%;
	letter-spacing: 0.2222222222222222vw;	
	margin-bottom: 1.1111111111111112vw;
}


h3{
	font-size: 2.2222222222222223vw;
	line-height: 180%;
	letter-spacing: 0.2222222222222222vw;	
	margin-bottom: 1.1111111111111112vw;
}
#green-sec h3,
#beige-sec h3,
#brown-sec h3{
	white-space: nowrap;
}



p{
	margin-bottom: 2.2222222222222223vw;
}
.en-font{
	font-family: YakuHanJP, "Montserrat-Medium", sans-serif;
	font-weight: 500;	
}

/* ===================================================================
　スライド
==================================================================== */
#slide{
	position: relative;
	overflow: hidden;
	z-index: 1;
  background: url('https://yume-sauna.jp/wp/wp-content/uploads/2025/06/background-c.jpg') lightgray 0% 0% / 600px 300px repeat;
}
#catch{
	position: absolute;
	top: 18.194444444444443vw;
	left: 12.152777777777777vw;
	word-break: keep-all;
}
#catch h2{
	font-size: 2.638888888888889vw;
	line-height: 160%;
	letter-spacing: 0.2638888888888889vw;
	margin-bottom: 2.2222222222222223vw;
}


.wave-divider {
  position: absolute;
  bottom: 8.8vw; /* 波型の位置を調整 */
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
}
.wave-divider img {
  width: 100%;
  display: block;
  pointer-events: none;
}


.slider-mask-wrapper {
  position: relative;
}
.slider-clipped {
  clip-path: url(#waveClip);
  -webkit-clip-path: url(#waveClip);
  width: 100%;
  height: auto;
  overflow: hidden;
}

/* SVG自体は表示しない（定義用のみ） */
.wave-clip-svg {
  width: 0;
  height: 0;
  position: absolute;
}


/* ===================================================================
　スクロールダウン
==================================================================== */
#scroll-down {
  position: absolute;
  bottom: 1.6666666666666667vw;/*vw1440---24px*/
  left: 1.6666666666666667vw;/*vw1440---24px*/
}
#scroll-down .scroll-text {
  width: 5.555555555555555vw;/*vw1440---80px*/
  height: 5.555555555555555vw;/*vw1440---80px*/
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-family: "Jost-SemiBold", sans-serif;
  font-size: 0.9722222222222222vw;/*vw1440---14px*/
  line-height: 100%;
  letter-spacing: 0.07777777777777778vw;/*vw1440---1.12px*/
}
#scroll-down .scroll-text:after{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0.7638888888888888vw;/*vw1440---11px*/
  content: '';
  width: 0.8333333333333334vw;/*vw1440---12px*/
  height: 1.0416666666666665vw;/*vw1440---15px*/
  background: url(../images/common/arrow-down.svg) no-repeat;
  background-size: cover;
  transition:all 0.8s; 
}
#scroll-down .scroll-text:hover:after{
  bottom: 0.4vw;/*調整*/
}

/* ===================================================================
　スクロールアップ
==================================================================== */
/* scroll-up */
#scroll-up {
	right: 2.2222222222222223vw;/*vw1440---32px*/
	z-index: 99;
	position: fixed;
	bottom: 30px;
}
#scroll-up .scroll-text {
	position: relative;
	width: 5.555555555555555vw;/*vw1440---80px*/
	height: 5.555555555555555vw;/*vw1440---80px*/
	border-radius: 70px;
	border: 1.2px solid rgba(255, 255, 255, 0.10);
	background: rgba(255, 255, 255, 0.10);
	backdrop-filter: blur(10px);
	cursor: pointer;

}
#scroll-up .scroll-text img{
	position: absolute;
	display: block;
	top: 32.5%;
	left: 50%;
	width: 0.8333333333333334vw;/*vw1440---12px*/
	height: 1.0416666666666665vw;/*vw1440---15px*/
	transform: scaleY(-1) translate(-50%, -50%);/*画像を垂直方向、その後指定された割合で移動*/
	transition:all 0.8s; 
}
#scroll-up .scroll-text:hover img{
	top: 27%;
}


/* ===================================================================
　index
==================================================================== */
#index {
	width: 100%;
	margin: auto;
	padding: 0;
	position: relative;
}

/* ===================================================================
　#brown-sec
　#green-sec
　#beige-sec
==================================================================== */
#brown-sec{
  background: url('https://yume-sauna.jp/wp/wp-content/uploads/2025/06/background-c.jpg') lightgray 0% 0% / 600px 300px repeat;
	color: #F1EFEB;
}
#green-sec{
	background: url('https://yume-sauna.jp/wp/wp-content/uploads/2025/06/background-b.jpg') lightgray 0% 0% / 600px 300px repeat;
	color: #F1EFEB;
}
#beige-sec{
  background: url('https://yume-sauna.jp/wp/wp-content/uploads/2025/06/background-a.jpg') lightgray 0% 0% / 600px 300px repeat;
	color: #F1EFEB;
}
#green-sec.real-photo-bg{
	background: url('https://yume-sauna.jp/wp/wp-content/uploads/2025/06/real-photo-bg.jpg') no-repeat center center;
	background-size: cover;
}
#green-sec.real-photo-bg02{
	background: url('https://yume-sauna.jp/wp/wp-content/uploads/2025/06/real-photo-bg02-re.jpg') no-repeat center center;
	background-size: cover;
  border-top: 1px solid #F1EFEB;
  border-bottom: 1px solid #F1EFEB;
  position: relative;
}

.brown-sec_in,
.green-sec_in,
.beige-sec_in{
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	width: 100%;
	margin: auto;
	padding: 5.555555555555555vw 0;
}
.brown-sec_l_02,
.brown-sec_r_01,
.green-sec_l_02,
.green-sec_r_01,
.beige-sec_l_02,
.beige-sec_r_01{
	flex-basis: 44.44444444444444vw;
	max-width: 44.44444444444444vw;
}

/* Windows用補正 */
.windows-fix .brown-sec_l_02,
.windows-fix .brown-sec_r_01,
.windows-fix .green-sec_l_02,
.windows-fix .green-sec_r_01,
.windows-fix .beige-sec_l_02,
.windows-fix .beige-sec_r_01 {
  flex-basis: 43.34vw;
  max-width: 43.34vw;
}

.brown-sec_r_02,
.brown-sec_l_01,
.green-sec_r_02,
.green-sec_l_01,
.beige-sec_r_02,
.beige-sec_l_01{
	flex-basis: 55.55555555555556vw;
	max-width: 55.55555555555556vw;
}
.brown-sec_r_02,
.green-sec_r_02,
.beige-sec_r_02{
	padding: 0 12.5vw 0 8.333333333333332vw;
}
.brown-sec_l_01,
.green-sec_l_01,
.beige-sec_l_01{
	padding: 0 8.333333333333332vw 0 12.5vw;
}




/* 補足 */
#index #brown-sec .metaslider .slides img {
  width: 100%!important;
}

#beige-sec a,
#beige-sec h2,
#beige-sec span.accent-font{
	color: #474141;
}


#index #brown-sec:nth-of-type(1) .brown-sec_in{
	padding: 0 0 11vw;
  border-bottom: 1px solid #F1EFEB;
}

.index-aboutus .brown-sec_r_01{
	padding: 0 4vw 0 0;
}
.index-aboutus .brown-sec_in_02{
	padding-bottom: 8.333333333333332vw;
}

.index-yumekiko .green-sec_in{
  height: 61.25000000000001vw;
  padding: 12.083333333333334vw 0 0 0;
  align-items: start;
}
.index-yumekiko .green-sec_l_02{
	padding: 0 0 0 12.5vw;
	font-family: YakuHanJP, "Montserrat-Medium", "IBMPlexSansJP-Regular", "Hiragino Sans", sans-serif;
  font-size: 1.3888888888888888vw;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.1111111111111111vw;
}
.index-yumekiko .green-sec_r_02{
	padding: 0 12.5vw 0 0;
}

#metaslider-id-15 .flex-direction-nav{
	display: none;
}

/* ===================================================================
Swiper - 1（TOPページのWORKS））
==================================================================== */
.swiper-green-sec .green-sec_in {
  align-items: start;
  position: relative;
  padding: 8.333333333333332vw 0;
}
.swiper-green-sec .green-sec_r_01{
	overflow: hidden; /* スワイパーのはみ出し防止 */
	z-index: 0;/* スワイパーのはみ出し防止 */
	flex-basis: 66.59722222222221vw;
	max-width: 66.59722222222221vw;
}
/* Windows用補正 */
.windows-fix .swiper-green-sec .green-sec_r_01 {
  flex-basis: 65.48vw;
  max-width: 65.48vw;
}
.swiper-green-sec .green-sec_l_01{
	flex-basis: 33.40277777777778vw;
	max-width: 33.40277777777778vw;
	padding: 0 2.986111111111111vw 0 12.5vw;
}





/* スライド内要素レイアウト調整 */
.swiper-container,
.swiper-news-container{ 
  overflow: visible; /* スライドの両端を“見切れ”させるため */
}

.swiper-slide,
.swiper-news-slide{ overflow: hidden; }



/* スライド画像 */
.slide-img {
	width: 100%;
}
.slide-img img {
	width: 100%;
	height: auto; 
	aspect-ratio: 355 / 266;
	object-fit: cover;
	display: block;
}


/* タイトルなどの表示調整 */
.slide-title span.category {
  margin-right: 0.5vw;
}
.slide-title h3 {
  font-size: 1.3888888888888888vw;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.1388888888888889vw;
  white-space: normal;
  margin: 0.5555555555555556vw 0 1.6666666666666667vw;
}



/* ===================================================================
Swiper - 2（TOPページのNEWS）
==================================================================== */
.swiper-beige-sec .beige-sec_in {
  align-items: start;
  position: relative;
}
.swiper-beige-sec .beige-sec_r_01{
	overflow: hidden; /* スワイパーのはみ出し防止 */
	z-index: 0;	/* スワイパーのはみ出し防止 */
	flex-basis: 66.59722222222221vw;
	max-width: 66.59722222222221vw;
}
/* Windows用補正 */
.windows-fix .swiper-beige-sec .beige-sec_r_01{
  flex-basis: 65.34vw;
  max-width: 65.34vw;
}
.swiper-beige-sec .beige-sec_l_01{
	flex-basis: 33.40277777777778vw;
	max-width: 33.40277777777778vw;
	padding: 0 2.986111111111111vw 0 12.5vw;
}


.swiper-news-container {
  width: 100%;
  overflow: visible;
  position: relative;
}
.news-slide-group {
  padding: 0 10.625vw 0 0;
  box-sizing: border-box;
}

.news-slide-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
	border-top: 1px solid #4A7061;
	border-bottom: 1px solid #4A7061;
}
.news-slide-group li.news-item {
  display: flex;
  gap: 1.1111111111111112vw;
  padding: 1.1111111111111112vw;
  border-bottom: 1px solid #4A7061;
}
.news-slide-group li.news-item:last-child {
  border-bottom: none;
}

.news-slide-group .left img {
  width: 6.527777777777779vw;
  height: 6.527777777777779vw;
  object-fit: cover;
  display: block;
}

.news-slide-group .right {
  flex: 1;
  padding: 1.1111111111111112vw 0;
}

.news-slide-group .right .slide-title{
	display: flex;
	justify-content: space-between;
	align-items: center;		
  margin-bottom: 1.1111111111111112vw;
}
.news-slide-group .right .slide-title h3 {
  font-size: 1.25vw;
  line-height: normal;
  letter-spacing: 0.125vw;
  white-space: normal;
  margin: 0;
}
.news-slide-group .right p{
	font-family: YakuHanJP, "IBMPlexSansJP-Medium", "Hiragino Sans", sans-serif;
  font-size: 0.9722222222222222vw;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.09722222222222222vw;
  margin-bottom: 0;
}

/* ===================================================================
Swiperナビゲーションの基本調整
==================================================================== */
.swiper-nav,
.swiper-news-nav{
	position: absolute;
  display: flex;
  justify-content: center;
  gap: 1.1111111111111112vw; /* ボタン間のスペース調整はお好みで */
  left: 23.19444444444444vw;
}
.swiper-nav{
  bottom: 8.159722222222223vw;
}
.swiper-news-nav{
  bottom: 6.666666666666667vw;
}
.swiper-button-prev,
.swiper-button-next,
.swiper-news-button-prev,
.swiper-news-button-next {
	border: 1px solid #F1EFEB;
	background-color: #383333;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 1.6666666666666667vw 1.6666666666666667vw;
	border-radius: 50%;
	transition: background-color 0.5s ease, transform 0.5s ease;
	z-index: 2;
	/*以下初期化*/
	position: relative!important;
	width: 3.0555555555555554vw!important;
	height: 3.0555555555555554vw!important;
	left: auto!important;
	right: auto!important;
	top: auto!important;
	bottom: auto!important;
	margin-top: 0!important;
	z-index: 0!important;
	cursor: pointer;
}

/* 右矢印アイコン（Next） */
.swiper-button-next,
.swiper-news-button-next{
  background-image: url('https://yume-sauna.jp/wp/wp-content/uploads/2025/06/lucide_arrow-right-min.png');
}

/* 左矢印アイコン（Prev）※画像が左右対称でない場合は反転 */
.swiper-button-prev,
.swiper-news-button-prev{
  background-image: url('https://yume-sauna.jp/wp/wp-content/uploads/2025/06/lucide_arrow-right-min.png');
  transform: scaleX(-1); /* 左矢印用に反転 */
}

/* ホバー時の色変更 */
.swiper-button-prev:hover,
.swiper-button-next:hover,
.swiper-news-button-prev:hover,
.swiper-news-button-next:hover {
  background-color: #CA6E09;
}

/* デフォルトの矢印を非表示にしておく（必要に応じて） */
.swiper-button-prev::after,
.swiper-button-next::after,
.swiper-news-button-prev::after,
.swiper-news-button-next::after{
  display: none;
}

.swiper-news-button-next.swiper-button-disabled,
.swiper-news-button-prev.swiper-button-disabled {
  opacity:.35;
  cursor:auto;
  pointer-events:none;
}

/* ===================================================================
　#slideshow
==================================================================== */
#slideshow{
	padding: 3.888888888888889vw 0 8.333333333333332vw;
}
#slideshow .flex-item img{
	width: 100%;
	object-fit: cover;
}
#slideshow .flex-item{
	margin-right: 3.888888888888889vw;
}
#slideshow .flex-item_01{
	width: 270px;
	height: 415px;
	margin-top: 7.708333333333334vw;
}
#slideshow .flex-item_02{
	width: 450px;
	height: 350px;
}
#slideshow .flex-item_03{
	width: 216px;
	height: 270px;
	margin-top: 17.708333333333336vw;
}
#slideshow .flex-item_04{
	width: 336px;
	height: 262px;
	margin-top: 2.2916666666666665vw;
}
#slideshow .flex-box.second{
	animation: slide2 60s linear infinite;
}
#slideshow .flex-box.first{
	animation: slide1 60s -30s linear infinite;
}
#slideshow .flex-box{
	display: flex;
	flex-shrink: 0;
	flex-wrap: nowrap;
}
#slideshow .slide{
	width: 100%;
	display: flex;
	overflow: hidden;
}


@keyframes slide1 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
 
@keyframes slide2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}


/* ===================================================================
　フッター
==================================================================== */
footer{
/*	background: url('https://yume-sauna.jp/wp/wp-content/uploads/2025/06/background-b.jpg') repeat center center;*/
	background: url('https://yume-sauna.jp/wp/wp-content/uploads/2025/06/background-green.jpg') lightgray 0% 0% / 600px 300px repeat;
	color: #F1EFEB;
	overflow: hidden;
	position: relative;
	padding:  0;
}

footer.index-footer{
	padding-top: 8.333333333333332vw;
}

#footer-nav-sub{
    text-align: center;
	padding: 2.7777777777777777vw 0 2.2222222222222223vw;
	position: relative;
}
#footer-nav-sub ul {
	margin: 2.2222222222222223vw 0;
}
#footer-nav-sub ul li{
	display: inline-block;
	padding: 0 1.3888888888888888vw 0 1.3888888888888888vw;
	font-size: 1.0416666666666665vw;
	line-height: 100%;
	font-family: YakuHanJP, "IBMPlexSansJP-Medium", "Hiragino Sans", sans-serif;
	font-weight: 500;
	letter-spacing: 0.10416666666666667vw;
}
#footer-nav-sub ul li:first-child{ padding: 0 1.3888888888888888vw 0 0; }
#footer-nav-sub ul li:last-child{ padding: 0 0 0 1.3888888888888888vw; }


/* SNSボタン */
.sns {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 1.6666666666666667vw;
}
.sns div a{
	height: 100%;
	display: block;
	width: 3.0555555555555554vw;
	height: 3.0555555555555554vw;
	border: 1px solid #F1EFEB;
	background-color: #383333;
	border-radius: 50%;
	transition: background-color 0.5s ease, transform 0.5s ease;
	position: relative;
}
.sns div a:hover {
	background-color: #CA6E09;
}
.sns div a svg{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
/*サイズ調整*/
.sns div.pinterest a svg{
	width: 50%;
	height: auto;
}
.sns div.x a svg path,
.footer-right .sns a svg g path,
.footer-right .sns a svg g{
 	fill: #F1EFEB; 
}
.sns div.x a:hover svg path{
	fill: #F1EFEB;
}
.footer-right .sns a:hover svg g path,
.footer-right .sns a:hover svg g{
	fill: #F1EFEB;
}
.sns div.x a:hover svg path,
.sns a:hover svg g path,
.sns a:hover svg g{
    transition: all 0.5s;
}




/* 左側会社情報エリア */
#footer-about .flex-box{
  display: flex;
  padding: 2.7777777777777777vw 12.5vw;
  justify-content: space-between;
  align-items: flex-end;
  align-self: stretch;
}

#footer-about .flex-box .company .logo{
  width: 14.027777777777779vw;
  height: 2.638888888888889vw;
  margin-bottom: 1.25vw;
}
#footer-about .flex-box .company p{
	font-family: YakuHanJP, "IBMPlexSansJP-Medium", "Hiragino Sans", sans-serif;
	font-weight: 500;
  line-height: normal;
}
#footer-about .flex-box .company p:nth-of-type(1){
  font-size: 1.0416666666666665vw;
  letter-spacing: 0.10416666666666667vw;
  margin-bottom: 0.625vw;
}
#footer-about .flex-box .company p{
  font-size: 0.9722222222222222vw;
  letter-spacing: 0.09722222222222222vw;
  margin: 0;
}



/* 右側バナーエリア */
.footer-right{
	text-align: right;
	position: relative;
}


/* 下部コピーライトエリア */
#footer-copy{
	padding: 0.5555555555555556vw 0;
	background: rgba(33, 34, 39, 0.90);
}
#footer-copy p{
	text-align: center;
	margin: 0;
	font-family: YakuHanJP, "Montserrat-Medium", "IBMPlexSansJP-Regular", "Hiragino Sans", sans-serif;
	font-size: 0.6944444444444444vw;
	font-weight: 500;
	line-height: 150%;
	letter-spacing: 0.05555555555555555vw;
}
