.announcement-bar{
	background-color: #E6D3A3;
    text-align: center;
    padding: 1px 0;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0.05em;
	font-family: "Noto Serif JP", serif;
	color: #020b1c;
}

.customize-support {
  background-color: #020b1c;
}


  /* ページヘッダー */
  .page-header {
    background: url(http://worldhappy.net/wp-content/uploads/2026/04/world-top1.png) center top no-repeat;
    background-size: cover;
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
    position: relative;
  }
  .page-header h1 {
    text-align: center;
    font-size: 25px;
    color: white;
    text-shadow: 0px 0px 5px black;
    position: relative;
  }
  .page-header-title {
           text-align: center;
        font-size: 36px;
        color: white;
        text-shadow: 0px 0px 5px black;
        position: relative;
        font-weight: bold;
  }
  .page-inner {
    line-height: 1.8em;
    letter-spacing: 1.3px;
    color: #262626;
    font-family: "Noto Serif JP", serif;
  }
  .page-inner.box-680 {
    float: left;
    padding: 10px 30px;
  }

/* ヘッダー全体 */

.header {
  position: relative;
  background: #fff;
  border-bottom: 1px solid #eee;
}

@media (max-width: 768px) {
	.header-logo img{
	width: 165px !important;
	height: 35px !important;
	}
}

/* PCではハンバーガーメニューを隠す */
.hamburger-menu {
    display: none;
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: block;
        margin-left: 10px;
    }

    /* チェックボックスを隠す */
    #menu-btn-check {
        display: none;
    }

    /* 三本線アイコンの土台 */
    .menu-btn {
        position: relative;
        display: flex;
        height: 44px;
        width: 44px;
        justify-content: center;
        align-items: center;
        z-index: 100; /* ロゴなどより上に表示 */
        cursor: pointer;
    }

    /* 三本線の中心の線 */
    .menu-btn span,
    .menu-btn span:before,
    .menu-btn span:after {
        content: '';
        display: block;
        height: 2px;
        width: 25px;
        border-radius: 3px;
        background-color: #ffffff; /* 線の色（白） */
        position: absolute;
        transition: all 0.5s;
    }

    /* 三本線の上下の線 */
    .menu-btn span:before { bottom: 8px; }
    .menu-btn span:after { top: 8px; }

    /* クリック（チェック）された時に三本線を×に変える */
    #menu-btn-check:checked ~ .menu-btn span {
        background-color: rgba(255, 255, 255, 0); /* 真ん中の線を透明に */
    }
    #menu-btn-check:checked ~ .menu-btn span::before {
        bottom: 0;
        transform: rotate(45deg);
    }
    #menu-btn-check:checked ~ .menu-btn span::after {
        top: 0;
        transform: rotate(-45deg);
    }

    /* メニューの中身（初期状態は隠す） */
    .menu-content {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 100%;
        z-index: 90;
        background-color: #020b1c; 
        transition: all 0.5s;
        padding-top: 80px;
    }

    /* メニュー内のリンク装飾 */
    .menu-content ul {
        padding: 0;
        list-style: none;
    }
    .menu-content ul li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .menu-content ul li a {
        display: block;
        width: 100%;
        font-size: 18px;
        box-sizing: border-box;
        color: #ffffff;
        text-decoration: none;
        padding: 20px;
        text-align: center;
    }

    /* チェックされたらメニューをスライドさせて表示 */
    #menu-btn-check:checked ~ .menu-content {
        left: 0;
    }

    /* 既存の縦並びメニューを隠す（クラス名は現状に合わせて調整） */
    header nav, .header-nav {
        display: none !important;
    }
}

/* ナビゲーション */
.nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  display: none;
}

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

.nav li {
  border-bottom: 1px solid #eee;
}

.nav a {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  color: #333;
}

/* 開いた状態 */
.nav.active {
  display: block;
}

/* ハンバーガー開閉アニメーション */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
}

.site-header {
  width: 100%;
  background: #020b1c;
  color: #ffffff;
  font-family: "Noto Serif JP", serif;
}

/* 上段 */
.header-top {
  padding: 25px 80px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

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

/* 電話番号 */
.header-tel {
  font-size: 25px;
    letter-spacing: 0.05em;
    transform: translateX(70%);
    color: rgb(230, 211, 163);
	text-align: center;
}

.header-tel p {
	font-size: 18px;
    margin: 0;
}

.header-tel a {
  color: rgb(230, 211, 163);
    text-decoration: none;
    font-weight: 200;
}

@media (max-width: 768px) {
    /* 1. 親要素のテキスト（"TEL: "）を透明にする */
    .header-tel {
        font-size: 0; 
        display: flex;
        align-items: center;
    }

	.header-tel p {
		font-size: 0;
	}
	
    /* 2. リンク（電話番号）の文字も消し、アイコンを背景として出す */
    .header-tel a {
        display: inline-block;
        width: 30px;  /* アイコンのクリック範囲（幅） */
        height: 30px; /* アイコンのクリック範囲（高さ） */
        font-size: 0; /* 電話番号の数字を消す */
        background-color: #ffffff; /* アイコンの色 */
        
        /* 電話のSVGアイコンをマスクとして使用 */
        -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.62 10.79a15.15 15.15 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.11-.27c1.12.45 2.33.69 3.58.69a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1A17 17 0 0 1 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.25.24 2.46.69 3.58a1 1 0 0 1-.27 1.11z"/></svg>');
        mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.62 10.79a15.15 15.15 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.11-.27c1.12.45 2.33.69 3.58.69a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1A17 17 0 0 1 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.25.24 2.46.69 3.58a1 1 0 0 1-.27 1.11z"/></svg>');
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-position: center;
        mask-position: center;
        
        margin-right: 15px; 
    }
}

    



/* 予約ボタン */

.btn-reserve {
    color: rgb(230, 211, 163);
    padding: 12px 15px;
    border-radius: 3px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    letter-spacing: 0.1em;
    border: 1px solid rgb(230, 211, 163);
}

.btn-reserve:hover {
  opacity: 0.85;
}
.header-btn {
	margin-left: 0px;
    display: inline-block;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .btn-reserve {
        font-size: 0 !important;    
        width: 44px !important;       
        height: 44px !important;      
        padding: 0 !important;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        background-color: #d4af37 !important; 
        border-radius: 4px;          
        flex-shrink: 0;
	}
		
		.header-btn {
			margin-left: 35px;
		}

    /* 2. カレンダーアイコンを挿入 */
    .btn-reserve::before {
        content: "";
        display: block;
        width: 26px;
        height: 26px;
        background-color: #ffffff; /* アイコンの色（白） */
        
        /* カレンダーのSVGアイコンをマスクとして使用 */
        -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 4h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10zM9 14H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2zm-8 4H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2z"/></svg>');
        mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 4h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10zM9 14H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2zm-8 4H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2z"/></svg>');
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-position: center;
        mask-position: center;
    }

    /* 3. ヘッダー内の要素が重ならないようにバランス調整 */
    .header-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        padding: 5px 15px;
    }
	
	
	body {
  overflow-x: hidden;
}
	
}



/* ナビ */
.header-nav {
  border-top: 0.1px solid rgb(230, 211, 163);
    padding: 15px 0;
}

.header-nav ul {
  list-style: none;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 0;
    padding: 0;
}

.header-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.1em;
}

.header-nav ul li a {
  text-decoration: none;
  display: flex;
  flex-direction: column;  /* 上下（縦）に並べる */
  align-items: center;     /* 中央揃え */
  color: #333;
}

.header-nav ul li a span:first-child {
  font-size: 18px;
    font-weight: normal;
    letter-spacing: 0.1em;
    line-height: 1.2;
}

.header-nav ul li a span:last-child {
  font-size: 13px;
    margin-top: 2px;
    opacity: 0.8;
    line-height: 1.2;
}

.header-nav a:hover {
  opacity: 0.7;
}

.fv img {
  width: 100%;
  height: auto;
  display: block;
}

/* 固定ページのbody設定*/
body.page,
body.page #page,
body.page .site-content,
body.page main {
    background-color: #f7f3ec !important;
	color: #061822;
}

/* セクション全体 */
.approach-section {
  background: #020b1c;
  color: #ffffff;
  padding: 120px 20px 140px;
  font-family: "Noto Serif JP", serif;
}

/* 内側幅 */
.approach-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

/* タイトル */
.approach-title {
  font-size: 32px;
  line-height: 1.6;
  letter-spacing: 0.15em;
  font-weight: 400;
  margin-bottom: 60px;
}

/* 画像 */
.approach-image {
  margin: 0 auto 70px;
}

.approach-image img {
  max-width: 420px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* テキスト */
.approach-text {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
  font-size: 15px;
  line-height: 2.2;
  letter-spacing: 0.08em;
  font-weight: 400;
}

.approach-text p {
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .approach-title {
    font-size: 20px;
    line-height: 2;
    letter-spacing: 0.12em;
    font-weight: 400;
    margin-bottom: 35px;
}
}

.photo-stack {
  position: absolute;
  left: 80px;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.photo-stack img {
  width: 220px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.concept-visual {
  position: relative;
  width: 100%;
  height: 760px;
  background: url("http://worldhappy.net/wp-content/uploads/2026/01/world-tp2-1.png") no-repeat center center / cover;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 80px;
  box-sizing: border-box;
}

/* 文字エリア */
.concept-box {
  background: rgba(0, 15, 40, 0.65); /* 濃紺＋半透明 */
  padding: 50px 60px;
  max-width: 480px;
  color: #ffffff;
  line-height: 1.9;
  border-radius: 4px;
  font-family: "Noto Serif JP", serif;
}

.concept-box h2 {
  font-size: 24px;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  font-weight: 400;
}

.concept-box h3 {
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 25px;
  opacity: 0.9;
}

.concept-box p {
  font-size: 14px;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .concept-visual {
    padding: 40px 20px;
    justify-content: center;
  }

  .concept-box {
    padding: 30px 25px;
    max-width: 100%;
  }

  .concept-box h2 {
    font-size: 23px;
  }

  .concept-box h3 {
    font-size: 16px;
  }

  .concept-box p {
    font-size: 13px;
  }
	
  .concept-visual {
  position: relative;
  width: 100%;
  height: 760px;
  background: url("http://worldhappy.net/wp-content/uploads/2026/04/The-space1.png") no-repeat center center / cover;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 80px;
  box-sizing: border-box;
}
}

.concept-section {
  background: #f7f3ec;
  padding: 120px 0;
  color: #061822;
  font-family: "Noto Serif JP", serif;
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.concept-title {
  font-size: 40px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.concept-sub {
  font-size: 25px;
    margin-bottom: 60px;
    letter-spacing: 0.1em;
    margin-top: 0px;
}

.concept-en-title {
	font-size: 42px;
    margin-bottom: 0px;
    margin-top: 0px;
}

.concept-jp-subtitle {
    font-size: 25px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.concept-section-header {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: center;
}

.concept-navy-bar {
    width: 25px;
    height: 80px;
    background-color: #020b1c;
}

@media screen and (max-width: 768px) {
	.concept-en-title {
	font-size: 25px;
    margin-bottom: 0px;
    margin-top: 0px;
}

.concept-jp-subtitle {
    font-size: 18px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.concept-section-header {
    display: flex;
        gap: 15px;
        margin-bottom: 40px;
        align-items: center;
}

.concept-navy-bar {
    width: 20px;
    height: 55px;
    background-color: #020b1c;
}
}

.concept-section h3 {
	font-size: 20px;
	margin-bottom: 20px;
}

/* 画像2カラム */
.concept-images {
  display: flex;
  gap: 40px;
  margin-bottom: 0px;
}

.image-box {
  flex: 1;
}

.image-box img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* 説明文 */
.concept-text {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 80px;
  max-width: 1000px;
  margin-top: 0px;
}

/* カード3カラム */
.concept-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.concept-card {
  background: #ffffff;
  padding: 40px 30px;
  border: 1px solid #e5d8b5;
  position: relative;
}

.concept-card h3 {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
  text-align: center;
}

.concept-card p {
  font-size: 14px;
  line-height: 1.9;
}

/* ボタン */
.concept-button {
  text-align: center;
}

.concept-button a {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid #e5d8b5;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  font-weight: 600;
}

.concept-button a:hover {
  background: #e5d8b5;
  color: #000;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .concept-images {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding: 20px;
    flex-direction: row;align-content
	}

  }

  .concept-cards {
    grid-template-columns: 1fr;
  }

  .concept-title {
    font-size: 28px;
  }
}

.icon-image img {
	width: auto;
}

.icon-image{
    text-align: center;
}

.hero-section {
  background: #020b1c; /* 濃紺 */
  padding: 120px 0;
  display: flex;
  justify-content: center;
  font-family: "Noto Serif JP", serif;
}

.hero-image {
        position: relative;
        max-width: 900px;
        align-items: center;
        height: auto;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-text {
  position: absolute;
  inset: 0; /* 上下左右 0 */
  display: flex;
  flex-direction: column;
  justify-content: center; /* 縦中央 */
  align-items: center;     /* 横中央 */
  text-align: center;
  color: #fff;
  padding: 40px;
}

.hero-text h2 {
  font-size: 28px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.hero-text .lead {
  font-size: 20px;
  margin-bottom: 30px;
}

.hero-text .price {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.hero-text .desc {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 40px;
  width: 480px;
}

.hero-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #f1e0b5;
  color: #000;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.1em;
  border-radius: 2px;
  font-weight: 600;
}

@media (max-width: 768px) {
.hero-image img {
            width: 335px;
            display: block;
            height: auto;
}

    .hero-text h2 {
        font-size: 20px;
        letter-spacing: 0.1em;
        margin-bottom: 15px;
        line-height: 1.5;
}
	.hero-text .price {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 10px;
}
	.hero-text .desc {
       font-size: 14px;
        line-height: 1.8;
        margin-bottom: 40px;
        width: 225px;
        text-align: justify;
	}
	
	.hero-btn {
        display: inline-block;
        padding: 6px 13px;
        background: #f1e0b5;
        color: #000;
        text-decoration: none;
        font-size: 15px;
        letter-spacing: 0.1em;
        border-radius: 2px;
        font-weight: 600;
}
	.hero-section {
    background: #020b1c;
    padding: 100px 0;
    display: flex;
    justify-content: center;
    font-family: "Noto Serif JP", serif;
}
}


.site-footer {
  background: linear-gradient(180deg, #F3E6C8 0%, #E6D3A3 100%);
  padding: 60px 0;
  font-family: "Noto Serif JP", serif;
  color: #2E2A23;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

/* ロゴ */
.footer-logo img {
  max-width: 220px;
  height: auto;
}

/* 縦ライン */
.footer-line {
  width: 3px;
  height: 140px;
  background: #ffffff;
  opacity: 0.8;
}

/* 店舗情報 */
.footer-info dl {
  display: grid;
  grid-template-columns: 80px 1fr;
  row-gap: 14px;
  column-gap: 20px;
  font-size: 16px;
  line-height: 1.7;
  color: #061822;
}

.footer-info dt {
  font-weight: 500;
  letter-spacing: 0.1em;
}

.footer-info dd {
  margin: 0;
}

.footer-info .tel {
  font-weight: bold;
  letter-spacing: 0.08em;
  font-size: 20px;
}

.footer-copy {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  text-align: center;
  font-size: 13px;
  color: #444;
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    gap: 5px;
  }

  .footer-line {
    width: 0;
    height: 0;
  }

  .footer-info dl {
    grid-template-columns: 70px 1fr;
        font-size: 14px;
        row-gap: 5px;
        column-gap: 15px;
        line-height: 1.4;
  }
	
	.footer-info .tel {
		font-size: 14px;
}
	
	.footer-copy {
    margin-top: 5px;
        padding-top: 0;
        border-top: 0px solid rgba(255, 255, 255, 0.5);
        font-size: 10px;
}
	
	.site-footer {
    padding-top: 30px;
        padding-bottom: 5px;
}

}





@media screen and (max-width: 768px) {

  .hero {
    position: relative;
  }

  .hero img {
    width: 100%;
    height: auto;
    display: block;
  }

  .hero-text {
    position: absolute;
        bottom: 25px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        text-align: center;
        color: #fff;
  }

  .hero-catch {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .btn-tel,
  .btn-reserve {
        padding: 14px;
        margin-bottom: 12px;
        border-radius: 6px;
        font-size: 0;
        text-decoration: none;
  }

  .btn-tel {
    background: #E6D3A3; 
    color: #2E2A23;
    font-weight: bold;
  }

  .btn-reserve {
    border: 0px;
  }
}

/* 予約セクション全体の背景 */
.res-container {
    padding: 100px 20px;
    text-align: center;
    font-family: "Noto Serif JP", serif;
	background: #f9f6f1;
}

/* 導入テキスト */
.res-intro {
    margin-bottom: 40px;
    line-height: 1.8;
}

/* カードの並び（横並び） */
.res-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap; /* スマホで縦並びにする */
}

/* 各カードの基本スタイル */
.res-card {
    background: #fff;
    flex: 1;
    min-width: 300px;
    padding: 10px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* 装飾的な金枠の再現 */
.res-card-inner {
    padding: 40px 20px;
    height: 100%;
    position: relative;
}

/* 角の装飾パーツ（擬似要素で再現） */
.res-card-inner::before {
    content: "";
    position: absolute;
    top: -5px; left: -5px; right: -5px; bottom: -5px;
    pointer-events: none;
    clip-path: polygon(0 0, 15% 0, 15% 2%, 2% 2%, 2% 15%, 0 15%, 
                       0 85%, 2% 85%, 2% 98%, 15% 98%, 15% 100%, 0 100%,
                       100% 100%, 85% 100%, 85% 98%, 98% 98%, 98% 85%, 100% 85%,
                       100% 15%, 98% 15%, 98% 2%, 85% 2%, 85% 0, 100% 0);
}

/* タイトルとアイコン */
.res-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.res-icon {
    margin-bottom: 20px;
    opacity: 0.8;
}

.res-number {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 20px 0;
	text-decoration: none;
}

.res-link-text {
    margin: 20px 0;
}

/* ボタンのデザイン */
.res-button {
    display: inline-block;
    background-color: #dcc69d; /* ベージュゴールド */
    color: #333;
    padding: 12px 35px;
    text-decoration: none;
    transition: 0.3s;
}

.res-button:hover {
    background-color: #cbb48c;
    color: #fff;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .res-grid {
        flex-direction: column;
    }
    .res-card {
        width: 95%;
    }
}

/* コンタクトフォーム全体の装飾 */
.cf7-form-container {
    background: #fff;
    padding: 30px;
    border: 1px solid #d4af37;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
}

.wpcf7-form-control {
    width: 100% !important;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 5px;
}

.wpcf7-submit {
    background-color: #020b1c !important; 
    color: #ffffff !important;
    font-weight: bold;
    padding: 15px 30px !important;
    border: none !important;
    cursor: pointer;
    transition: 0.3s;
    width: 100% !important;
}

.wpcf7-submit:hover {
    background-color: #cbb48c !important; 
}

/* 店舗情報全体のコンテナ */
.shop-info-wrapper {
    max-width: 900px;
    padding: 100px 20px;
    font-family: "Noto Serif JP", serif; 
    color: #061822;
	margin-left: auto;
    margin-right: auto;
	background-color: #f9f6f1;
}

/* マップの装飾 */
.shop-map-container {
    margin-bottom: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    line-height: 0;
}

/* 情報リストのスタイル */
.shop-detail-list dl {
    border-top: 1px solid #dcc69d; 
}

.detail-item {
    display: flex;
    border-bottom: 1px dashed #dcc69d; /* 項目間の点線 */
    padding: 25px 10px;
    align-items: flex-start;
}

/* 左側（項目名） */
.detail-item dt {
    width: 150px;
    font-weight: bold;
    flex-shrink: 0;
}

/* 右側（内容） */
.detail-item dd {
    margin-left: 0;
    flex-grow: 1;
    line-height: 1.8;
}

/* 駐車場などの補足テキスト */
.small-text {
    font-size: 0.9em;
    color: #666;
}

/* スマホ対応の調整 */
@media (max-width: 768px) {
    .detail-item {
        flex-direction: column; /* 縦並びにする */
        padding: 15px 5px;
    }
    
    .detail-item dt {
        width: 100%;
        margin-bottom: 8px;
        color: #020b1c; /* スマホ時は項目名をネイビーで強調 */
    }
	
	.shop-map-container {
		width: 335px;　
	}
	
	.shop-map-frame {
		width: 335px;
		height: 250px;
	}
	
	
}

.title-name {
    max-width: 900px;
    margin: 30px auto;
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 20px;
	max-height: 85px;
}

.title-line {
   width: 30px;
    height: 85px;
    background: #020b1c;
}

.title-1{
    font-size: 30px;
	font-weight: bold;
}

.title-2{
    font-size: 20px;
	font-weight: bold;
}

.title-title{
    
}

/* 全体の背景とフォント設定 */
.vision-container {
    padding: 80px 20px;
    font-family: "Noto Serif JP", "Shippori Mincho", serif; 
}

.vision-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* 左側見出しのスタイル */
.vision-header {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}

.vision-bar {
    width: 25px;
    height: 65px;
    background-color: #020b1c !important; 
}

.vision-en-title {
    font-size: 32px;
    margin: 0;
    line-height: 1;
    font-weight: bold;
}

.vision-jp-subtitle {
    font-size: 20px;
    margin: 5px 0 0 0;
    font-weight: bold;
}

/* 右側本文のスタイル */
.vision-content {
    flex-grow: 1;
}

.vision-main-copy {
    font-size: 26px;
    margin: 0 ;
    font-weight: bold;
    line-height: 1.5;
}

.vision-text-body p {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 15px;
}

.vision-footer-text {
    margin-top: 40px;
    font-weight: 500;
}

/* スマホ対応（レスポンシブ） */
@media (max-width: 768px) {
    .vision-container {
        padding: 100px 20px;
		background: #f9f6f1;
    }
    
    .vision-inner {
        flex-direction: column; /* 縦並びに変更 */
        gap: 30px;
    }
    
    .vision-bar {
        width: 25px;
        height: 65px;
        background-color: #020b1c !important;
    }

    .vision-main-copy {
        font-size: 20px;
    }

    .vision-en-title {
        font-size: 28px;
    }
}

/* セクション全体の装飾 */
.commitments-section {
    background-color: #ffffff; 
    padding: 100px 20px;
    font-family: "Noto Serif JP", serif;
}

.commitments-inner {
    max-width: 1000px;
    margin: 0 auto;
}

/* 見出し部分（Visionセクションと統一） */
.section-header {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.navy-bar {
    width: 25px;
    height: 65px;
    background-color: #020b1c;
}

.en-title {
    display: block;
    font-size: 32px;
    color: #020b1c;
    margin: 0;
    line-height: 1;
    font-weight: bold;
}

.jp-title {
    font-size: 20px;
    margin: 10px 0 0 0;
    font-weight: bold;
}

/* グリッドレイアウト */
.commitments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* カード単体の装飾 */
.commitment-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    border-top: 4px solid #d4af37; /* カード上部にゴールドのライン */
}

.card-number {
    font-size: 40px;
    color: #d4af37;
    font-weight: bold;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 15px;
}

.card-title {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.4;
    color: #020b1c;
}

.card-text {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
}

/* ライセンスバッジ */
.badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.license-badge {
    font-family: "Noto Serif JP", serif;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(135deg, #d4af37 0%, #b8922e 100%);
    padding: 5px 14px;
    border-radius: 50px; /* 丸みを持たせて柔らかい上質さを */
    border: none;
    box-shadow: 0 4px 10px rgba(184, 146, 46, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    display: inline-block;
}
/* 画像の収まり */
.card-image-wrap {
    margin-top: auto;
    overflow: hidden;
    border-radius: 4px;
}

.card-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

/* スマホ対応 */
@media (max-width: 900px) {
    .commitments-grid {
        grid-template-columns: 1fr;
    }
    .commitments-section {
        padding: 100px 20px;
    }
}

.magazine-layout {
    background-color: #f9f6f1;
    padding: 100px 20px;
    font-family: "Noto Serif JP", serif;
    color: #020b1c;
}

.magazine-inner {
    max-width: 1000px;
    margin: 0 auto;
}

/* ヘッダー装飾 */
.magazine-header {
    margin-bottom: 80px;
    position: relative;
}

.navy-accent {
    width: 60px;
    height: 4px;
    background-color: #020b1c;
    margin-bottom: 20px;
}

.en-main {
    font-size: 48px;
    display: block;
    line-height: 1;
    font-weight: 500;
}

.jp-sub {
    font-size: 18px;
    margin: 15px 0 25px;
    letter-spacing: 0.2em;
}

.lead-text {
    font-size: 15px;
    line-height: 1.8;
    border-left: 1px solid #d4af37;
    padding-left: 20px;
}

/* グリッドレイアウト */
.asymmetric-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* 左を大きく */
    align-items: start;
}

.grid-sub-group {
    display: flex;
    flex-direction: column;
    gap: 35x;
}

/* 画像ボックス */
.image-box {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.image-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.image-box:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
	.image-box {
		flex: 0 0 85%;
    scroll-snap-align: center;
    border-radius: 8px;
}
}

/* 施術室にだけつくラベル */
.image-label {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #020b1c;
    color: #d4af37;
    padding: 10px 20px;
    font-size: 15px;
    letter-spacing: 0.3em;
    font-weight: bolder;
}

/* 説明文 */
.item-desc h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #020b1c;
}

.item-desc p {
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .asymmetric-grid {
        grid-template-columns: 1fr;
    }
    .grid-sub-group {
        margin-top: 40px;
    }
    .en-main {
        font-size: 36px;
    }
}

.koseirodosho-container img {
	padding-top: 10px;
}

.koseirodosho-container p {
	font-size: 12px;
}

.taylormade {
        background-color: #f9f6f1;
    }

/* 全体のコンテナ */
.menu-page-container {
    max-width: 800px;
    margin: 0px auto;
    padding: 100px 20px;
    color: #333;
    font-family: "Noto Serif JP", serif; 
    line-height: 1.8;
}

.menu-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
}

.brand-accent {
    width: 40px;
    height: 80px;
    background-color: #020b1c; /* WORLD HAPPY ネイビー */
    margin-right: 20px;
}

.eng-title {
    font-size: 36px;
    font-weight: 500;
    margin: 0;
    color: #020b1c;
    letter-spacing: 0.05em;
}

.jp-subtitle {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.1em;
}

/* 料金バー */
.price-bar {
    background-color: #e2d1b1; /* 高級感のあるゴールドベージュ */
    padding: 15px 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 0.05em;
}

.price-bar span {
    font-size: 14px;
    font-weight: normal;
}

/* 説明文エリア */
.content-title {
    font-size: 20px;
    border-left: none;
    padding-left: 0;
    margin-bottom: 10px;
}

.description-text {
    font-size: 15px;
    margin-top: 20px;
}

.description-text strong {
    font-size: 18px;
    display: block;
    margin-bottom: 10px;
}

/* 注釈 */
.menu-footer {
    margin-top: 20px;
    font-size: 13px;
    color: #666;
    border-top: 1px solid #ddd;
}


@media (max-width: 600px) {
    .eng-title { font-size: 28px; }
    .price-bar { font-size: 16px; padding: 12px; }
}

/* Specialized Care 全体コンテナ */
.specialized-menu-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: "Noto Serif JP", serif;
}

/* 導入文 */
.intro-text {
    font-size: 15px;
    margin-bottom: 70px;
    line-height: 1.8;
    color: #444;
}

/* カテゴリーバー */
.category-bar {
    background-color: #e2d1b1; /* ゴールドベージュ */
    padding: 10px 15px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

/* フレックスレイアウト（画像とリスト） */
.menu-flex {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* イメージ画像 */
.menu-thumbnail {
    flex: 0 0 35%; /* 幅を固定 */
}

.menu-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

/* メニューリスト */
.menu-list {
    flex: 1;
}

.menu-row {
    border-bottom: 1px dashed #ccc; /* 点線の区切り線 */
    padding: 12px 0;
}

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

.item-main {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 15px;
}

.item-name {
    font-size: 18px;
    font-weight: 700;
    color: #020b1c;
}

.item-price {
    font-size: 16px;
    color: #333;
}

.item-detail {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* スマホ対応（スマホでは縦に並べる） */
@media (max-width: 650px) {
    .menu-flex {
        flex-direction: column;
    }
    .menu-thumbnail {
        flex: 0 0 100%;
        margin-bottom: 10px;
    }
}

.specialized-menu {
	background-color: #fff;
	padding: 100px 20px;
    font-family: "Noto Serif JP", serif;
    color: #020b1c;animation-name
}

/* 予約エリア全体のコンテナ */
.cta-container {
    text-align: center;
    padding: 35px 20px;
}

.cta-lead {
    font-family: "Noto Serif JP", serif;
    font-size: 18px;
    color: #020b1c; /* WORLD HAPPY ネイビー */
    margin-bottom: 30px;
    letter-spacing: 0.1em;
}

/* 予約ボタン本体 */
.btn-reservation {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #020b1c;
    text-decoration: none;
    padding: 0px 60px;
    border: 1px solid #d4af37;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    /* width: 220px; */
    height: 65px;
    color: #fff;
}

/* ボタン内の英語テキスト */
.btn-eng {
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

/* ボタン内の日本語テキスト */
.btn-jp {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* ホバー時のアクション */
.btn-reservation:hover {
    background-color: #d4af37;
    color: #fff;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
    transform: translateY(-3px);
}

.cta-note {
    font-size: 12px;
    color: #666;
    margin-top: 20px;
}

/* スマホ対応 */
@media (max-width: 600px) {
    .btn-reservation {
        padding: 20px 30px;
        width: 100%;
        box-sizing: border-box;
    }
    .btn-jp { font-size: 16px; }
}