* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
    font-family: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* ヘッダー */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.top-bar {
    background-color: #f8f9fa;
    padding: 10px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-image {
    width: auto;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #4A90E2;
}
.page-title-section{
    position: relative;
    z-index: 1;
    margin-top: 50px;
}
.page-title{
    position: absolute;
    top:-50px;
}
/* ハンバーガーメニュー */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu li:last-child {
    border-bottom: none;
}

.mobile-menu a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: background-color 0.3s;
}

.mobile-menu a:hover {
    background-color: #f8f9fa;
    color: #4A90E2;
}

.yoyaku-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* モバイル用予約ボタン */
.mobile-cta-button {
    display: none;
    align-items: center;
    transition: transform 0.3s ease;
}

.mobile-cta-button:hover {
    transform: scale(1.05);
}

/* ヒーローセクション */
.hero {
    height: 800px;
    display: flex;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    text-align: center;
    color: white;
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.hero-copy {
    margin-bottom: 40px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 20px;
    align-items: flex-end;
}

.hero-copy-text {
    writing-mode: vertical-rl;
    font-weight: 300;
    font-size: 32px;
    font-weight: bold;
    font-family: 'Hiragino Mincho Pro', 'Yu Mincho', 'MS Mincho', serif;
    letter-spacing: 0.3em;
    line-height: 1;
    background-color:rgba(255,255,255,0.8);
    border-radius: 5px;
    padding: 20px 15px;
    color: #333;
}

.hero-cta {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 10;
}

.hero-cta-button {
    display: block;
    transition: transform 0.3s ease;
}

.hero-cta-button:hover {
    transform: scale(1.05);
}

.hero-cta-image {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.hero-title {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-button {
    background-color: #4A90E2;
    color: white;
    padding: 15px 30px;
    border: none;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s;
}

.hero-button:hover {
    background-color: #357ABD;
}

/* メインコンテンツ */
.main-content {
    padding: 50px 0 80px 0;
}

.section {
    margin-bottom: 100px;
}

.section-title {
    text-align: center;
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 0.5em;
    margin-bottom: 50px;
    color: #333;
    position: relative;
    display: block;
}
.section-title br{
    display: none;
}
.section-sauna-title {
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.2em;
    margin-bottom: 50px;
    color: #333;
    position: relative;
    display: block;
}

.section-title::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    background-image: url('img/totonon-midashi.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 15px;
    vertical-align: middle;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
/* about */
.about {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
}
.about-text {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 40px;
}
.about-image {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
    justify-content: center;
    margin-top: 40px;
}
.about-image-item {
    width: 100%;
    height: auto;
}
.about-image-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.about-image-item h3 {
    font-size: 18px;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
    color: #333;
}
 .about-image-item p {
     font-size: 18px;
     color: #666;
 }

 .section-divider {
     width: 100%;
     height: 320px;
     object-fit: cover;
     display: block;
 }
 .uketsuke-section {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 0;
 }
 .uketsuke-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
    justify-content: center;
    margin-top: 40px;
 }
 .uketsuke-content img {
    width: 100%;
    height: auto;
    object-fit: cover;
 }
.uketsuke-text {
    width: 100%;
    height: auto;
    padding: 20px 20px 20px 50px;
}

/* 偶数番目の項目はテキストと画像の順序を逆にする */
.uketsuke-content:nth-child(even) {
    direction: rtl;
}

.uketsuke-content:nth-child(even) .uketsuke-text {
    direction: ltr;
    padding: 20px 50px 20px 20px;
}

/* sauna */
.sauna-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
}
.sauna-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.sauna-item {
    width: 100%;
    height: auto;
    background-size: cover;
    background-position: center;
}
.sauna-item2 {
    width: 100%;
    height: auto;
    padding: 20px 20px 20px 50px;
}
.sauna-item2 h3 {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 15px;
    color: #333;
    letter-spacing: 0.4em;
}
.sauna-item2 p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}
.sauna-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.sauna-item2 img {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: cover;
    margin: 20px auto 20px 0;
}
.sauna-button-top {
    color:#888;
    padding: 5px;
    border: 1px solid #888;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 20px;
    display: block;
    width: 80%;
    max-width: 150px;
    text-align: center;
}
.sauna-button-top:hover {
    background-color: #357ABD;
}
.sauna-detail-info {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    line-height: 1.8;
    margin-bottom: 50px;
}
.sauna-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    grid-template-areas:
    "a b"
    "d c" /* 2行目（真ん中）の順序を反転 */
    "e f"
    "h g"
    "i j";
}
.item-1 { grid-area: a; }
.item-2 { grid-area: b; }
.item-3 { grid-area: c; }
.item-4 { grid-area: d; }
.item-5 { grid-area: e; }
.item-6 { grid-area: f; }
.item-7 { grid-area: g; }
.item-8 { grid-area: h; }
.item-9 { grid-area: i; }
.item-10 { grid-area: j; }

.sauna-text h3{
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #333;
    letter-spacing: 0.2em;
}
.sauna-text p{
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}
.sauna-detail-item {
    width: 100%;
    height: auto;
    background-color: #f0f0f0;
    background-size: cover;
    background-position: center;
}

.sauna-detail-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.sauna-detail-text {
    width: 100%;
    height: auto;
}

/* 機能紹介グリッド */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.feature-item {
    text-align: center;
}

.feature-image {
    width: 100%;
    height: 250px;
    background-color: #f0f0f0;
    margin-bottom: 20px;
    background-size: cover;
    background-position: center;
}

.feature-text {
    font-size: 16px;
    color: #666;
}

/* 施設外観 */
.facility-exterior {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #e8d5c0, #d4af8c);
    margin: 40px 0;
}

/* ルームタイプ */
.room-types {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.room-item {
    display: flex;
    align-items: center;
    gap: 60px;
}

.room-item:nth-child(even) {
    flex-direction: row-reverse;
}

.room-image {
    flex: 1;
    height: 300px;
    background-color: #f0f0f0;
    background-size: cover;
    background-position: center;
}

.room-content {
    flex: 1;
}

.room-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.room-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* カフェ&ショップ */
.cafe-section {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 0;
}
.cafe-text {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    color: #666;
    line-height: 1.8;
}
.cafe-shop {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cafe-item {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
    margin-top: 60px;
}
.cafe-item img {
    width: 50%;
    height: auto;
    object-fit: cover;
}

.cafe-item:nth-child(even) {
    flex-direction: row-reverse;
}

.cafe-image {
    flex: 1;
    height: 300px;
    background-color: #f0f0f0;
    background-size: cover;
    background-position: center;
}

.cafe-content {
    flex: 1;
}

.cafe-title {
    font-size: 20px;
    font-weight: 200;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
    color: #333;
}

.cafe-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* アクセス&お問い合わせ */
.access-section {
    padding: 80px 0;
}

.access-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.access-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

.access-content {
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
 .access-content h3 {
     font-size: 20px;
     font-weight: 500;
     margin-bottom: 15px;
     color: #333;
 }
 .access-table {
    width: 100%;
}
.access-table th {
    width:5em;
    text-align: left;
}
 /* contact */
 .contact-section {
     width: 100%;
     max-width: 800px;
     margin: 0 auto;
     padding: 80px 0;
 }

 .contact-content {
     width: 100%;
     max-width: 600px;
     margin: 0 auto;
 }

.contact-form .honeypot-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.form-note {
    margin-bottom: 16px;
    font-size: 14px;
    color: #666;
}

.form-response {
    display: none;
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.6;
}

.form-response.success {
    display: block;
    color: #2e7d32;
}

.form-response.error {
    display: block;
    color: #c62828;
}

.form-group .radio-group {
    flex: 1;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.radio-option input[type="radio"] {
    width: auto;
    margin: 0;
}

 .radio-option span {
     font-size: 16px;
     color: #333;
 }

 /* FAQ */
 .faq-section {
     width: 100%;
     max-width: 800px;
     margin: 0 auto;
     padding: 80px 0;
 }

 .faq-content {
     width: 100%;
     max-width: 600px;
     margin: 0 auto;
 }

 .faq-item {
     margin-bottom: 20px;
 }

 .faq-question {
     background-color: #f5f5f5;
     padding: 10px;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     transition: background-color 0.3s;
 }

 .faq-question:hover {
     background-color: #e9e9e9;
 }

 .faq-question h4 {
     font-size: 18px;
     font-weight: 400;
     color: #333;
     margin: 0 auto;
 }

 .faq-arrow {
     font-size: 16px;
     color: #666;
     transition: transform 0.3s;
 }

 .faq-item.active .faq-arrow {
     transform: rotate(180deg);
 }

 .faq-answer {
     padding: 20px;
     background-color: #fff;
     display: none;
 }

 .faq-item.active .faq-answer {
     display: block;
 }

 .faq-answer p {
     margin-bottom: 10px;
     font-size: 16px;
     color: #666;
     line-height: 1.6;
 }

 .faq-answer p:last-child {
     margin-bottom: 0;
 }
                
.map-container {
    width: 100%;
    height: 400px;
    background-color: #e0e0e0;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 18px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.info-block h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #333;
}

.info-block p {
    color: #666;
    line-height: 1.6;
}

.contact-form {
    background-color: white;
    padding: 40px;
}

.form-group {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.form-group label {
    width: 150px;
    font-weight: 500;
    color: #333;
    flex-shrink: 0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4A90E2;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-button {
    display: block;
    margin: 0 auto;
    background-color: #4A90E2;
    color: white;
    padding: 15px 30px;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #357ABD;
}

/* 情報&リンク */
.info-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.link-group h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #333;
}

.link-list {
    list-style: none;
}

.link-list li {
    margin-bottom: 15px;
}

.link-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background-color: #f8f9fa;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s;
}

.link-list a:hover {
    background-color: #e9ecef;
}

.link-list a::after {
    content: '→';
    color: #4A90E2;
    font-weight: 700;
}

/* ととの場とはページ用スタイル */
.page-image-section {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.page-image-section img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ヒーロー画像コンテナと切り替え効果 */
.hero-image-container {
    position: relative;
    width: 100%;
    padding-bottom: 29.59%; /* アスペクト比を維持 */
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out;
}

.hero-image.active {
    opacity: 1;
    visibility: visible;
}
.totonoba-about-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0 80px 0;
}
.totonoba-about-section p {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 40px;
    text-align: center;
}
.gradient-circles {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
}

.gradient-circle {
    background: #fff;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 4px solid transparent;
    background-image: linear-gradient(#fff, #fff), linear-gradient(135deg, #4A90E2 0%, #71C8A3 100%);
    background-origin: border-box;
    background-clip: content-box, border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    color: #333;
    text-align: center;
    padding: 5px;
    transition: transform 0.3s;
}

.gradient-circle h3 {
    font-size: 1.25em;
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.gradient-circle p {
    font-size: 1em;
    font-weight: 400;
    margin: 0;
}

.gradient-circle:hover {
    transform: scale(1.05);
}
.totonoba-text-box{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}
.totonoba-text-box h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: center;
}
.totonoba-text-box p {
    max-width: 800px;
    text-align: left;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
}
.totonoba-text-box img {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin: 50px auto 0;
    display: block;
}
.text-box-center{
    text-align: center;
}
.img-box-center{
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}
.img-box-center img{
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}
.img-box-3{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}
.img-box-3 img{
    width: 100%;
    height: auto;
}
.character-section{
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 0;
}
.content-box2{
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 20px;
}
.content-box2-item{
    width: 100%;
    height: auto;
}
.content-box2-item img{
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 20px;
}
.content-box2-item h3{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: left;
}
.content-box2-item p{
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 50px;
    text-align: left;
}
.privacy-content{
    max-width: 800px;
    margin: 50px auto;
}
.privacy-content h3{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: left;
}
.privacy-content p{
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 50px;
    text-align: left;
}

/* 料金・ご利用の流れ */
.price-content{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
}
.price-other-section{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0 0;
}


.price-content h2 span{
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 50px;
    margin-left: 20px;
    text-align: center;
    letter-spacing: 0.2em;
}
.price-content p{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 50px;
}
.price-info{
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 50px;
}
.price-grid{
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.price-item{
    text-align: center;
}
.price-item h3{
    background-color: #eee;
    color: #333;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: center;
}
.price-item p{
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 50px;
    text-align: center;
}
.price-item img{
    width: 100%;
    height: auto;
    object-fit: contain;
}
.price-item table{
    width: 100%;
    border-collapse: collapse;
}
.price-item table th{
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}
.price-item table td{
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 20px;
    text-align: center;
}

.price-item table th,
.price-item table td{
    padding: 10px;
}

.price-flow-grid{
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 3fr 4fr;
    gap: 20px;
    padding: 0 20px;
}
.price-flow-grid img{
    width: 100%;
    height: auto;
    object-fit: contain;
}
.price-flow-item{
    text-align: center;
}
.price-flow-item h3{
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: left;
}
.price-flow-item p{
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 50px;
    margin-left: 1.5em;
    text-align: left;
}
.price-flow-item img{
    width: 100%;
    height: auto;
    object-fit: contain;
}
.price-cta-button{
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
    display: block;
}
.price-cta-button img{
    width: 100%;
    height: auto;
    max-width: 350px;
    margin: 0 auto;
    object-fit: contain;
    display: block;
}
.price-other-grid{
    max-width: 900px;
    margin: 80px auto 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.price-other-item{
    text-align: center;
}

.price-other-item h3{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: left;
}

.price-other-item p{
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 50px;
    text-align: left;
}

.price-other-item span{
    font-weight: 600;
    margin-bottom: 50px;
    margin-left: 1.5em;
    text-align: left;
}
.price-other-item-payment{
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 20px;
}
.price-other-item-payment img{
    width: 100%;
    max-width: 350px;
    height: auto;
    object-fit: contain;
    margin-bottom: 10px;
    margin-left: 1em;
}
.price-other-item-payment p{
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 0;
    text-align: left;
}

@media (max-width: 900px) {
    .gradient-circles {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    
    /* ととの場とはページのレスポンシブ対応 */
    .totonoba-about-section {
        padding: 40px 20px;
    }
    
    .totonoba-about-section p {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .totonoba-text-box {
        padding: 40px 20px;
    }
    
    .totonoba-text-box h3 {
        font-size: 18px;
    }
    
    .totonoba-text-box p {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .totonoba-text-box img {
        max-width: 300px;
    }
    
    .text-box-center {
        padding: 0 20px;
        font-size: 16px;
    }
    
    .img-box-center {
        padding: 0 20px;
    }
    
    .img-box-3 {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 20px;
    }
    
    .character-section {
        padding: 40px 20px;
    }
    
    .content-box2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .content-box2-item h3 {
        font-size: 16px;
        text-align: center;
    }
    
    .content-box2-item p {
        font-size: 14px;
        text-align: center;
        padding: 0 20px;
    }
    
    .content-box2-item img {
        max-width: 200px;
        margin: 0 auto 15px;
    }
}

/* フッター */
.footer {
    color: #333;
    padding: 60px 0 30px;
}

.footer a {
    color: #333;
    text-decoration: none;
}
.footer a:hover {
    color: #4A90E2;
}
.footer a:visited {
    color: #333;
}
.footer a:active {
    color: #333;
}
.footer a:focus {
    color: #333;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 20px;
    align-items: start;
}
.footer-logo-text{
    display: flex;
    font-size: 12px;
    color: #666;
    align-items: center;
}

.footer-logo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.footer-logo-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.footer-text {
    font-size: 12px;
    color: #ccc;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 5px;
    font-size: 10px;
}

 .footer-links a {
     text-decoration: none;
     font-size: 14px;
     transition: color 0.3s;
 }

 .footer-links a:hover {
     color: #4A90E2;
 }

 .footer-social {
     display: flex;
     flex-direction: column;
     align-items: flex-end;
     gap: 20px;
 }

 .footer-social .social-icons {
     display: flex;
     gap: 15px;
 }

 .footer-social .social-icon-link {
     display: block;
     transition: transform 0.3s ease;
 }

 .footer-social .social-icon-link:hover {
     transform: scale(1.1);
 }

 .footer-social .social-icon-img {
     width: 30px;
     height: 30px;
     object-fit: contain;
 }

 .footer-contact-btn {
     display: block;
     transition: transform 0.3s ease;
 }

 .footer-contact-btn:hover {
     transform: scale(1.05);
 }


.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    color: #333;
    font-size: 14px;
}

.news {
    padding: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.coupon-code {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 10px;
}

.coupon-code span{
    font-size: 12px;
    font-weight: 300;
    margin-top: 10px;
    display: block;
}
.coupon-code span br{
    display:none
}
.news-container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid #555;
    border-bottom: 1px solid #555;
    padding: 20px;
}
.news-item {
    display: grid;
    grid-template-columns: 1fr 5fr;
    gap: 5px;
    max-width: 600px;
    margin: 0 auto;
}
 .news-item p {
     font-size: 18px;
     font-weight: 600;
 }

 .news-social {
     display: flex;
     justify-content: center;
     gap: 30px;
     margin-top: 50px;
 }

 .social-icon-link {
     display: block;
     transition: transform 0.3s ease;
 }

 .social-icon-link:hover {
     transform: scale(1.1);
 }

 .social-icon-img {
     width: 40px;
     height: 40px;
     object-fit: contain;
 }

/* タブナビゲーション */
.tab-navigation {
    padding: 0;
    border-bottom: 1px solid #ddd;
}

.tab-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.tab-button {
    background-color: #eee;
    padding: 5px 60px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.3em;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    border: none;
    flex: 1;
    max-width: 300px;
}
.tab-button:nth-child(1) {
    background-color: #ebe4d9;
    color: #fff;
}
.tab-button:nth-child(1):hover {
    background-color: #8D714B;
    color: #fff;
}
.tab-button:nth-child(2) {
    background-color: #e6e6e6;
    color: #fff;
}
.tab-button:nth-child(2):hover {
    background-color: #000;
    color: #fff;
}
.tab-button:nth-child(3) {
    background-color: #bae0aa;
    color: #fff;
}
.tab-button:nth-child(3):hover {
    background-color: #579B39;
    color: #fff;
}

.tab-button:hover {
    background-color: #f8f9fa;
    color: #4A90E2;
}

.tab-button:nth-child(1).active {
    background-color: #8D714B;
    color: #fff;
}

.tab-button:nth-child(1).active:hover {
    background-color: #8D714B;
    color: #fff;
}
.tab-button:nth-child(2).active {
    background-color: #000;
    color: #fff;
}
.tab-button:nth-child(2).active:hover {
    background-color: #000;
    color: #fff;
}
.tab-button:nth-child(3).active {
    background-color: #579B39;
    color: #fff;
}
.tab-button:nth-child(3).active:hover {
    background-color: #579B39;
    color: #fff;
}

/* タブコンテンツ */
.tab-content {
    padding: 60px 0;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* サウナ詳細セクション */
.sauna-detail-section {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 60px;
    padding: 40px 0;
}

.sauna-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.sauna-detail-image {
    width: 100%;
}

.sauna-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sauna-detail-info h3 {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.3em;
    margin-bottom: 20px;
    color: #333;
}

.sauna-detail-info p {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    line-height: 1.8;
    margin-bottom: 30px;
}

.sauna-features,
.sauna-equipment {
    margin-bottom: 30px;
}

.sauna-features h4,
.sauna-equipment h4 {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin-bottom: 15px;
    border-bottom: 2px solid #4A90E2;
    padding-bottom: 5px;
    display: inline-block;
}

.sauna-features ul,
.sauna-equipment ul {
    list-style: none;
    padding: 0;
}

.sauna-features li,
.sauna-equipment li {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 10px;
    position: relative;
}

.sauna-features li::before,
.sauna-equipment li::before {
    content: '●';
    color: #4A90E2;
    position: absolute;
    left: 0;
}

.sauna-detail-image-small {
    margin: 30px 0;
}

.sauna-detail-image-small img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sauna-button {
    display: inline-block;
    background-color: #4A90E2;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.sauna-button:hover {
    background-color: #357ABD;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

/* 共通設備セクション */
.common-facilities-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.common-facilities-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.facility-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.facility-item h3 {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid #4A90E2;
    padding-bottom: 8px;
}

.facility-item ul {
    list-style: none;
    padding: 0;
}

.facility-item li {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.facility-item li::before {
    content: '●';
    color: #4A90E2;
    position: absolute;
    left: 0;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    /* ヘッダー */
    .container {
        padding: 0 15px;
        flex-wrap: wrap;
    }
    .coupon-code{
        font-size: 18px;
        margin-top: 30px;
        margin-bottom: 10px;
    }
    .coupon-code span br{
        display:block
    }
    .nav-menu {
        display: none;
    }

    .cta-button{
        display: none;
    }

    nav {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .mobile-cta-button {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .logo-text {
        font-size: 14px;
    }

    .yoyaku-image {
        height: 25px;
    }
    .logo-image{
        height: 25px;
    }

    /* ヒーローセクション */
    .hero {
        height: 500px;
        margin-top: 50px;
        padding: 0 20px;
    }

    .hero-copy {
        gap: 15px;
        margin-bottom: 30px;
    }

    .hero-copy-text {
        font-size: 24px;
        padding: 15px 8px;
        letter-spacing: 0.3em;
    }

    .hero-cta {
        bottom: 20px;
        right: 20px;
    }

    .hero-cta-image {
        height: 40px;        
    }

    .hero-title {
        font-size: 36px;
    }

    /* セクションタイトル */
    .section-title {
        font-size: 24px;
        letter-spacing: 0.3em;
        margin-bottom: 30px;
    }
    .section-title br{
        display: block;
    }

    .section-sauna-title {
        font-size: 24px;
        letter-spacing: 0.3em;
        margin-bottom: 30px;
    }

    .section-title::before {
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }

    /* about */
    .about {
        padding: 40px 0;
    }

    .about-text {
        font-size: 16px;
        padding: 0 20px;
    }

    .about-image {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .about-image-item h3 {
        font-size: 16px;
        letter-spacing: 0.1em;
    }

    .about-image-item p {
        font-size: 16px;
    }

    /* sauna */
    .sauna-section {
        padding: 40px 0;
    }

    .sauna-grid {
        grid-template-columns: 1fr;
    }

    .sauna-item2 {
        padding: 20px;
    }

    .sauna-item2 h3 {
        font-size: 20px;
        letter-spacing: 0.2em;
    }

    .sauna-item2 p {
        font-size: 13px;
    }

    .sauna-item2 img {
        max-width: 100%;
        margin: 15px auto;
    }

    .sauna-button ,.sauna-button-top{
        width: 100%;
        max-width: none;
        margin-top: 15px;
    }

    /* cafe */
    .cafe-section {
        padding: 40px 0;
    }

    .cafe-text {
        font-size: 14px;
        padding: 0 20px;
    }

    .cafe-item {
        flex-direction: column !important;
        gap: 20px;
        margin: 30px 0;
        padding: 0 20px;
    }

    .cafe-item img {
        width: 100%;
    }

    .cafe-title {
        font-size: 18px;
        letter-spacing: 0.1em;
    }

    .cafe-description {
        font-size: 14px;
    }

    /* access */
    .access-section {
        padding: 40px 0;
    }

    .access-container {
        padding: 0 20px;
    }

    .access-container iframe {
        width: 100% !important;
        height: 300px !important;
    }

    .access-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .access-content h3 {
        font-size: 18px;
    }

    .access-content p {
        font-size: 14px;
    }

    /* price */
    .price-content {
        padding: 40px 20px;
    }

    .price-content h2 {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .price-content h2 span {
        font-size: 10px;
        margin-left: 10px;
    }

    .price-info {
        font-size: 14px;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .price-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 10px;
    }

    .price-item h3 {
        font-size: 16px;
        padding: 8px 15px;
        margin-bottom: 15px;
    }

    .price-item table {
        font-size: 14px;
    }

    .price-item table th,
    .price-item table td {
        padding: 8px 5px;
        font-size: 14px;
    }

    .price-flow-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }

    .price-flow-item h3 {
        font-size: 18px;
        margin-bottom: 15px;
        text-align: center;
    }

    .price-flow-item p {
        font-size: 14px;
        margin-bottom: 30px;
        margin-left: 0;
        text-align: center;
        padding: 0 10px;
    }

    .price-flow-grid img {
        max-width: 200px;
        margin: 0 auto;
        display: block;
    }

    .price-other-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 10px;
    }

    .price-other-item h3 {
        font-size: 16px;
        margin-bottom: 15px;
        text-align: center;
    }

    .price-other-item p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .price-cta-button {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .price-cta-button img {
        max-width: 300px;
    }

    /* contact */
    .contact-section {
        padding: 40px 0;
    }

    .contact-content {
        padding: 0 20px;
    }

    .form-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .form-group label {
        width: auto;
        font-size: 14px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 14px;
        padding: 10px;
    }

    .submit-button {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }

    /* FAQ */
    .faq-section {
        padding: 40px 0;
    }

    .faq-content {
        padding: 0 20px;
    }

    .faq-question {
        padding: 15px;
    }

    .faq-question h4 {
        font-size: 16px;
    }

    .faq-answer {
        padding: 15px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    /* news */
    .news {
        padding: 20px;
    }

    .news-container {
        padding: 15px;
    }

    .news-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .news-item p {
        font-size: 16px;
    }

    .news-social {
        gap: 20px;
        margin-top: 30px;
    }

    .social-icon-img {
        width: 35px;
        height: 35px;
    }

    /* フッター */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 0 20px;
    }

    .footer-logo {
        grid-template-columns: 1fr;
        gap: 10px;
        justify-items: center;
    }

    .footer-logo-text {
        font-size: 11px;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-links h4 {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-social {
        align-items: center;
        gap: 15px;
    }

    .footer-social .social-icons {
        gap: 12px;
    }

    .footer-social .social-icon-img {
        width: 25px;
        height: 25px;
    }

    .footer-contact-btn img {
        height: 35px !important;
    }

    .footer-bottom {
        margin-top: 30px;
        padding-top: 20px;
        font-size: 12px;
    }

    /* その他の調整 */
    .section {
        margin-bottom: 60px;
    }

    .main-content {
        padding: 40px 0;
    }

    .section-divider {
        margin: 20px 0;
    }

    /* タブナビゲーションのモバイル対応 */
    .tab-navigation {
        padding: 0;
    }

    .tab-buttons {
        flex-direction: column;
        gap: 10px;
        padding: 0 20px;
    }

    .tab-button {
        flex: none;
        max-width: none;
        margin-bottom: 0;
    }

    .tab-button:first-child,
    .tab-button:last-child,
    .tab-button:not(:first-child):not(:last-child) {
        border: 1px solid #ddd;
    }

    .tab-content {
        padding: 40px 0;
    }

    .sauna-detail-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .sauna-detail-info h3 {
        font-size: 20px;
        letter-spacing: 0.2em;
        text-align: center;
    }

    .sauna-detail-info p {
        font-size: 14px;
        text-align: center;
    }

    .sauna-features h4,
    .sauna-equipment h4 {
        font-size: 16px;
        text-align: center;
    }

    .sauna-features li,
    .sauna-equipment li {
        font-size: 13px;
        text-align: left;
    }

    .sauna-button {
        display: block;
        text-align: center;
        margin: 30px auto 0;
        width: 200px;
    }

    .common-facilities-section {
        padding: 40px 0;
    }

    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .facility-item {
        padding: 20px;
    }

    .facility-item h3 {
        font-size: 16px;
        text-align: center;
    }

    .facility-item li {
        font-size: 13px;
    }

    /* サウナ詳細ページのモバイル対応 */
    .sauna-detail-info {
        width: 95%;
        font-size: 14px;
        padding: 0 20px;
        margin-bottom: 20px;
    }

    .sauna-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        grid-template-areas:
            "a"
            "b"
            "c"
            "d"
            "e"
            "f"
            "g"
            "h"
            "i"
            "j";
        padding: 0 20px;
    }

    .sauna-text {
        text-align: center;
        padding: 0 10px;
    }

    .sauna-text h3 {
        font-size: 18px;
        letter-spacing: 0.1em;
        margin-bottom: 10px;
    }

    .sauna-text p {
        font-size: 14px;
        line-height: 1.6;
    }

    .sauna-item {
        width: 100%;
        margin-bottom: 20px;
    }

    .sauna-item img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

    .section-sauna-title {
        font-size: 20px;
        letter-spacing: 0.1em;
        padding: 0 20px;
        text-align: center;
    }

    /* タブナビゲーションのモバイル調整 */
    .tab-buttons {
        gap: 10px;
        padding: 0;
    }

    .tab-button {
        padding: 12px 20px;
        font-size: 14px;
        letter-spacing: 0.2em;
    }

    .tab-content {
        padding: 30px 0;
    }

    .sauna-detail-section {
        padding: 20px 0;
        margin-bottom: 40px;
    }

    /* 共通設備セクションのモバイル調整 */
    .common-facilities-section {
        padding: 40px 0;
    }

    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .facility-item {
        padding: 20px;
        margin-bottom: 10px;
    }

    .facility-item h3 {
        font-size: 16px;
        text-align: center;
        margin-bottom: 15px;
    }

    .facility-item li {
        font-size: 13px;
        margin-bottom: 6px;
    }
}
