@charset "utf-8";

/* Base / PC styles */
/* --- @font-face --- */
@font-face {
  font-family: "Kozuka Gothic Pr6N";
  src: url("assets/fonts/KozGoPr6N-Bold.woff2") format("woff2");
  font-weight: bold;
  font-display: swap;
}

@font-face {
  font-family: "BIZ UDMincho";
  src: url("assets/fonts/BIZUDMincho-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "BIZ UDMincho";
  src: url("assets/fonts/BIZUDMincho-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "TBUDGothic Std";
  src: url("assets/fonts/TBUDGothicStd.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "M PLUS 2p";
  src: url("assets/fonts/mplus-2p-regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "M PLUS 2p";
  src: url("assets/fonts/mplus-2p-bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

/* --- CSS Custom Properties --- */
:root {
  --font-ja: "Kozuka Gothic Pr6N", "TBUDGothic Std", "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --font-ja-serif: "BIZ UDMincho", "Noto Serif JP", "Yu Mincho", "游明朝", YuMincho, serif;
  --font-ja-sans: "Noto Sans JP", "Hiragino Sans", "Yu Gothic Medium", "Yu Gothic", "Meiryo", sans-serif;
  --font-en: "Playfair Display", "BIZ UDMincho", serif;
  --font-round: var(--font-ja-sans); /* 旧 M PLUS 2p から 役割別ゴシックへ移行 (v8) */
}

/* アクセシビリティ: フォーカスリング */
a:focus-visible,
button:focus-visible,
input:focus-visible,
label:focus-visible {
    outline: 2px solid #761e3b;
    outline-offset: 2px;
}

/* Q&A アコーディオン */
section.homebox009 dl dt{
    cursor: pointer;
    transition: background 0.2s;
}
section.homebox009 dl dt:hover{
    background: rgba(118, 30, 59, 0.04);
}
section.homebox009 dl dt:after{
    content: "＋";
    font-size: 120%;
    color: #761e3b;
    font-weight: normal;
    font-family: sans-serif;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
section.homebox009 dl dt.is-open:after{
    content: "－";
}

/* Login Page
------------------------------------------------------------*/

/* 管理画面の設定 */

body.login,#login h1 {
    background:#fff;
}
#login h1 a {
    background:#fff url(images/admin_logo.png?v=20260402)no-repeat center center;
    background-size: 200px 120px;
    padding-bottom: 30px;
    width: 200px;
    height: 120px;
}

/* Reset
------------------------------------------------------------*/

html { scroll-behavior: smooth; overflow-x: hidden;}

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,form,input,textarea,p,th,td,select,header,nav,section,footer {
	margin: 0;
	padding: 0;
	color: #333;
	line-height: 1.6;
	word-wrap: break-word;
	box-sizing: border-box;
}

address,em,i {
	font-style: normal;
}
strong,th,b {
	font-weight: normal;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
hr {
	display: none;
}
h1,h2,h3,h4,h5,h6 {
	font-size: 100%;
	font-weight: normal;
}
img {
	border: 0;
}
li {
	list-style-type: none;
}
small{
	font-size: 100%;
}
iframe {
	border: 0;
}

/*----------------- img -------------------*/

img{
	max-width: 100%;
	height: auto;
}
a img:hover{
	opacity:0.7;
}

/*----------------- link -------------------*/

a{
	color: #333;
	text-decoration: none;
}
a:hover{
	color: #666;
}
a:link{}
a:visited{}
a:active{}

/*----------------- font -------------------*/
body {
	font-size: 100%; /* IE */
	font-family: var(--font-ja-serif);
}
html>/**/body {
font-size: 16px; /* Except IE */
}

body {
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;  /* 横スクロール事故防止: 想定外の右はみ出しから守る安全網 */
    /* v8: 約物詰めで1行文字数を最適化(Apple, 資生堂等の業界標準) */
    font-feature-settings: "palt" 1;
    -webkit-font-feature-settings: "palt" 1;
    -moz-font-feature-settings: "palt" 1;
}

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

h1,h2,h3,h4,h5,h6,dt{
    font-family: var(--font-ja-serif) !important;
}

.pc {
    display: block
}


.sp {
    display: none
}


/* --- Hamburger Navigation --- */
#sp-nav {
    display: block;
}

#nav-drawer {
    position: relative;
}

.nav-unshown {
    display: none;
}

/* ハンバーガーアイコン */
#nav-open {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(59, 32, 37, 0.1);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#nav-open:active {
    transform: scale(0.93);
}

#nav-open span {
    position: relative;
    display: block;
    height: 1.5px;
    width: 18px;
    background: #3b2025;
    transition: 0.3s ease;
}

#nav-open span:before,
#nav-open span:after {
    position: absolute;
    left: 0;
    height: 1.5px;
    width: 18px;
    background: #3b2025;
    display: block;
    content: '';
    transition: 0.3s ease;
}

#nav-open span:before {
    top: -6px;
}

#nav-open span:after {
    top: 6px;
}

/* アイコン → × 変形 */
#nav-input:checked ~ #nav-open span {
    background: transparent;
}
#nav-input:checked ~ #nav-open span:before {
    top: 0;
    transform: rotate(45deg);
}
#nav-input:checked ~ #nav-open span:after {
    top: 0;
    transform: rotate(-45deg);
}

/* オーバーレイ */
#nav-close {
    display: none;
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 26, 31, 0.35);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    cursor: pointer;
}

#nav-input:checked ~ #nav-close {
    display: block;
}

/* メニューパネル */
#nav-content {
    overflow-y: auto;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
    width: 82%;
    max-width: 340px;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(180deg, #FFF9FA 0%, #FDF6F0 100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(105%);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

#nav-input:checked ~ #nav-content {
    transform: translateX(0);
    box-shadow: -8px 0 40px rgba(44, 26, 31, 0.12);
}

/* ロゴ部分 */
.nav-header {
    padding: 32px 28px 20px;
    border-bottom: 1px solid rgba(200, 96, 122, 0.15);
}

.nav-header img {
    width: 120px;
    height: auto;
}

/* メニューリスト */
#nav-content ul {
    padding: 16px 16px 8px;
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

#nav-content ul li {
    list-style: none;
    margin: 0;
    padding: 0;
}

#nav-content ul li a {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px 16px;
    border-radius: 10px;
    color: #3b2025;
    text-decoration: none;
    transition: background 0.2s ease;
}

#nav-content ul li a:hover,
#nav-content ul li a:active {
    background: rgba(200, 96, 122, 0.08);
}

.nav-en {
    font-family: "Playfair Display", serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #C8607A;
}

.nav-ja {
    font-family: var(--font-ja-serif);
    font-size: 0.72rem;
    color: #6E5A5F;
    letter-spacing: 0.03em;
    line-height: 1.4;
}

/* CTAボタン & フッター */
.nav-footer {
    padding: 16px 24px 32px;
    border-top: 1px solid rgba(200, 96, 122, 0.15);
}

.nav-cta {
    display: block;
    width: 100%;
    padding: 14px 0;
    background: linear-gradient(135deg, #C8607A 0%, #A04060 100%);
    color: #fff !important;
    text-align: center;
    font-family: var(--font-ja-serif);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    border-radius: 28px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(200, 96, 122, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover,
.nav-cta:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(200, 96, 122, 0.4);
}

.nav-legal {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
    padding-top: 12px;
}

.nav-legal a {
    font-size: 0.65rem;
    color: #9E8A8F;
    letter-spacing: 0.02em;
    text-decoration: none;
}

.nav-legal a:hover {
    color: #C8607A;
}

.fa {
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: 400;
    line-height: 1.9;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}


/* Content
------------------------------------------------------------*/
body{
	background: #fef8f1;
}

@media only screen and (max-width: 1280px){
	body {

	}
}


/*----------------- footer logo -------------------*/
#footer footer .footbox01 .footer-logo{
	padding:0 2%;
	font-size: 110%;
	text-align: center;
}
#footer footer .footbox01 .footer-logo a{
	color: #832846;
}
#footer footer .footbox01 .footer-logo img{
	width:60px;
}

/*----------------- ヒーローセクション -------------------*/
.hero-section{
    width: 960px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.hero-section__bg{
    display: block;
    width: 100%;
    max-height: 56.3vw;
    overflow: hidden;
}
@media only screen and (min-width: 1025px){
    .hero-section__bg{
        max-height: 540px;
    }
}
.hero-section__bg img{
    display: block;
    width: 100%;
    height: auto;
}
.hero-section__overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
}
.hero-section__content{
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    padding: 2% 5%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.hero-section__logo{
    margin: 0 0 50px;
}
.hero-section__logo img{
    width: 200px;
    height: auto;
}
.hero-section__sub{
    font-family: var(--font-ja-serif);
    font-size: 14.1038pt;
    font-weight: 400;
    color: #ffffff;
    background: #dd6a88;
    display: inline-block;
    padding: 6px 18px;
    letter-spacing: 0.12em;
    margin: 0 0 16px;
    border-radius: 2px;
    align-self: flex-start;
}
.hero-section__heading{
    font-family: var(--font-ja-serif) !important;
    font-size: 1.6rem;
    font-weight: 700;
    color: #3b2025;
    line-height: 1.55;
    letter-spacing: 0.05em;
    margin: 0 0 10px;
}
.hero-section__note{
    font-family: var(--font-round);
    font-size: 8pt;
    color: #3e3a39;
    margin: 0 0 20px;
}
.hero-section__product{
    display: none;
    margin: 10px 0;
}
.hero-section__package{
    position: absolute;
    right: 3%;
    bottom: 10%;
    width: 50%;
}
.hero-section__package img{
    display: block;
    width: 100%;
    height: auto;
}
/* ヒーローCTAボタン */
.hero-section__buttons{
    display: flex;
    gap: 12px;
    justify-content: center; /* v14.10: 中央配置で hero-btn と campaign-row の中心を揃える */
}
.hero-btn{
    display: inline-block;
    transition: opacity 0.3s;
}
.hero-btn img{
    display: block;
    height: auto;
}
.hero-btn:hover{
    opacity: 0.8;
}


/*----------------- #main -------------------*/
#main{
    width: 960px;
    margin: 0 auto;
}

#main main{}
#main section{}
section h2,
section h3{
    padding: 10% 5% 0;
}
section h2 img,
section h3 img{
    height: 80px;
    width: auto;
}

section.homebox001{
	display: flex;
	flex-wrap:	wrap;
	background: url(images/mirage2_bg002.webp) no-repeat center -0%;
	background-size: 100% auto;
	justify-content: space-between;
	padding: 0 0 5%;
}

section.homebox001 h2,
section.homebox001 h3{
    width: 55%;
    padding: 5% 5% 0;
}
section.homebox001 h2 img,
section.homebox001 h3 img{
    height: 80px;
    width: auto;
}
section.homebox001 > p{
    width: 40%;
    padding: 0% 5%;
    margin: 0;
}

section.homebox001 p.txt001{
    width: 100%;
	text-align:right;
    padding: 0 5%;
    margin: 0;
    font-size: 0.7rem;
}

section.homebox001 p img{}
section.homebox001 ul{
    width: 100%;
}
section.homebox001 ul li{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: #fff;
    padding: 2%;
    margin: 5%;
}

section.homebox001 ul li p{
    padding: 2%;
}
section.homebox001 ul li .voice-photo{
    width: 40%;
    flex-shrink: 0;
}
section.homebox001 ul li .voice-photo img{
    width: 100%;
    height: auto;
}
section.homebox001 ul li .voice-meta{
    width: 60%;
    padding: 2%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
section.homebox001 ul li .voice-age{
    padding: 0 2%;
}
section.homebox001 ul li .voice-title{
    padding: 4px 2%;
}
section.homebox001 ul li p i{
    background: #f992a0;
    border-radius: 15px;
    padding: 5px 10px;
    color: #fff;
}
section.homebox001 ul li p em{
    font-size: 140%;
    display: inline-block;
    padding: 10px 0;
    color: #761e3b;
    font-family: var(--font-ja-serif) !important;
    font-weight: bold;
}
section.homebox001 ul li p b{
    color: #ac182d;
}
section.homebox001 ul li .voice-body{
    width: 100%;
}

section.homebox002{
}
section.homebox002 h2,
section.homebox002 h3{}
section.homebox002 h2 img,
section.homebox002 h3 img{}
section.homebox002 > p{
    line-height: 0;
}
section.homebox002 p img{}
section.homebox002 div.homebox002_col001{
	/* v13.1: #fff を解除し body のクリーム色 (#fef8f1) を継承 */
	background: transparent url(images/mirage2_bg003.webp) no-repeat right 0;
	background-size:400px auto;
	padding: 0 0 5%;
}

section.homebox002 div.homebox002_col001 p{
	width:50%;
}

section.homebox002 div.homebox002_col001 p img{}
/* WHY USコピー（mirage2_img046 テキスト化） */
.whyus-copy{
    padding: 10% 5% 5%;
    width: 100%;
}
.whyus-copy p{
    width: 100% !important;
    line-height: inherit !important;
    padding: 0 !important;
}
.whyus-copy__quote{
    font-family: var(--font-ja-serif) !important;
    font-size: 2rem;
    font-weight: 700;
    color: #3b2025;
    line-height: 1.6;
    letter-spacing: 0.04em;
    margin: 0 0 28px;
}
.whyus-copy__body{
    font-family: var(--font-ja-serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: #555;
    line-height: 1.9;
    letter-spacing: 0.06em;
    /* v13.3: 引用と本文の間にスペース、本文は全幅で改行なし流し込み */
    margin: 56px 0 0;
    width: 100% !important;
}
.whyus-copy__body + .whyus-copy__body{
    margin-top: 22px;
}
.whyus-copy__closing{
    font-family: var(--font-ja-serif) !important;
    font-size: 1.25rem !important;
    color: #761e3b !important;
    line-height: 1.7 !important;
    letter-spacing: 0.06em;
    margin-top: 28px !important;
    text-align: left;
}
.whyus-copy__closing em{
    font-style: normal;
    font-weight: 700;
    color: #761e3b;
}
.whyus-copy__promise{
    position: relative;
    padding-top: 22px !important;
    border-top: 1px solid rgba(199, 163, 106, 0.4);
    color: #3b2025 !important;
}
.whyus-copy__promise em{
    font-style: normal;
    font-weight: 700;
    color: #761e3b;
    letter-spacing: 0.08em;
}


/* バナー（mirage2_img012 テキスト化） */
.img012-banner{
    position: relative;
    overflow: hidden;
    line-height: 0;
}
.img012-banner__bg{
    width: 100%;
    height: auto;
    display: block;
}
.img012-banner__text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-ja-serif) !important;
    font-size: 1.95rem;
    font-weight: 400;
    color: #555;
    line-height: 1.8;
    letter-spacing: 0.06em;
    text-align: center;
    margin: 0;
    width: auto !important;
    padding: 0 !important;
    white-space: nowrap;
}
.img012-banner__text em{
    font-style: normal;
    font-weight: 700;
    color: #555;
}


/* バナー（mirage2_img005 テキスト化） */
.img005-banner{
    display: flex;
    align-items: center;
    background: #f7f2f3;
    max-height: 347px;
    overflow: hidden;
}
.img005-banner__bg{
    max-height: 347px;
    width: auto;
    display: block;
    flex-shrink: 0;
    object-fit: contain;
    object-position: left center;
}
.img005-banner__text{
    padding: 0 6%;
    line-height: 1.6;
    text-align: center;
    flex: 1;
}
.img005-banner__moisture{
    font-family: var(--font-ja-serif) !important;
    font-size: 1.75rem;
    font-weight: 700;
    color: #761e3b;
    line-height: 1.55;
    letter-spacing: 0.05em;
    margin: 0 0 18px;
}
.img005-banner__main{
    font-family: var(--font-ja-serif) !important;
    font-size: 1.45rem;
    font-weight: 700;
    color: #761e3b;
    line-height: 1.5;
    letter-spacing: 0.04em;
    margin: 0 0 6px;
}
.img005-banner__sub{
    font-family: var(--font-ja-serif) !important;
    font-size: 1.15rem;
    font-weight: 700;
    color: #761e3b;
    line-height: 1.5;
    letter-spacing: 0.04em;
    margin: 0;
}


.authority-note{
    text-align: center;
    font-size: 80%;
    color: #761e3b;
    padding: 10px 5%;
    background: rgba(118, 30, 59, 0.04);
}
.authority-note a{
    color: #761e3b;
    text-decoration: underline;
}

/* セクション共通見出し（テキスト化） */
.section-heading{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 5% 5% 0;
}
.section-heading__en{
    display: inline-block;
    font-family: var(--font-ja-serif);
    font-size: 2.44rem;
    font-weight: 700;
    color: #761e3b;
    letter-spacing: 0.06em;
    line-height: 1;
    border-right: 2px solid #761e3b;
    padding-right: 16px;
    margin: 0 0 12px;
}
.section-heading__ja{
    font-family: var(--font-ja-serif);
    font-size: 1rem;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
    letter-spacing: 0;
    font-feature-settings: "palt" 0;
    margin: 0 0 20px;
}


section.homebox003{
    background: #eee3e5;
}
section.homebox003 h2,
section.homebox003 h3{}
section.homebox003 h2 img,
section.homebox003 h3 img{}
section.homebox003 p{}
section.homebox003 p.pbox001{
    width: 80%;
    margin: 0 auto;
}

section.homebox003 p img{}
section.homebox003 p.pbox002{
    width: 100%;
    margin: 0 auto;
    background: #fff;
	padding:2%;
}
section.homebox003 p.pbox002 img{
	width:80%;
	margin:0 auto;
	display:block;
}

/* 混ぜて使うコピー（mirage2_img016 テキスト化） */
.pbox002-text{
    width: 100%;
    background: #fff;
    padding: 2.5% 2%;
    display: flex;
    align-items: center;
    gap: 20px;
}
.pbox002-text::before,
.pbox002-text::after{
    content: "";
    flex: 1;
    height: 1px;
    background: #999;
}
.pbox002-text p{
    font-family: var(--font-ja-serif);
    font-size: 1rem;
    font-weight: 400;
    color: #333 !important;
    line-height: 1.9;
    letter-spacing: 0.06em;
    text-align: center;
    white-space: nowrap;
    margin: 0;
}

section.homebox003 div.homebox003_col001{
	background: url(images/mirage2_bg004.webp) no-repeat center 0;
	background-size:100% auto;
}
section.homebox003 div.homebox003_col001 p{
    width: 60%;
    margin: 0 auto;
    padding: 25% 0 5%;
}

section.homebox003 div.homebox003_col001 p img{}
/* WHY NOWコピー（mirage2_img015 テキスト化） */
.whynow-copy{
    width: 72%;
    margin: 0 auto;
    padding: 5% 0 5%;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0) 70%);
}
.whynow-copy p{
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}
.whynow-copy__lead{
    font-family: var(--font-ja-serif);
    font-size: 0.9rem;
    font-weight: 400;
    color: #666 !important;
    line-height: 1.9;
    letter-spacing: 0.04em;
    margin-bottom: 16px !important;
}
.whynow-copy__main{
    font-family: var(--font-ja-serif) !important;
    font-size: 1.7rem;
    font-weight: 700;
    color: #333 !important;
    line-height: 1.6;
    letter-spacing: 0.02em;
    margin-bottom: 16px !important;
}
.whynow-copy__main small{
    font-size: 70%;
    font-weight: 400;
}
.whynow-copy__note{
    font-size: 0.7rem;
    color: #999 !important;
    line-height: 1.7;
}

section.homebox003 div.homebox003_col002,
section.homebox011 div.homebox003_col002{
    background: #fff;
    display: flex;
    flex-wrap: wrap;
}
/* v14.13: homebox011 のみ親 padding 5% を相殺して、
   購入ブロックの box_l / box_r 幅を homebox003 と揃える(ボタンサイズ統一)*/
section.homebox011 div.homebox003_col002{
    margin-left: -5.26%;  /* 5% の親padding を相殺 */
    margin-right: -5.26%;
}
section.homebox003 div.homebox003_col002 .box_l,
section.homebox011 div.homebox003_col002 .box_l{
	width:50%;
}

section.homebox003 div.homebox003_col002 .box_l p{}
section.homebox003 div.homebox003_col002 .box_l p img{}
section.homebox003 div.homebox003_col002 .box_r,
section.homebox011 div.homebox003_col002 .box_r{
	width:50%;
	padding:0 2% 2%;
}

section.homebox003 div.homebox003_col002 .box_r h3,
section.homebox011 div.homebox003_col002 .box_r h3{
    font-size: 160%;
    font-weight: bold;
}
section.homebox003 div.homebox003_col002 .box_r h3 i,
section.homebox011 div.homebox003_col002 .box_r h3 i{
	font-size:60%;
}
section.homebox003 div.homebox003_col002 .box_r p{}
section.homebox003 div.homebox003_col002 .box_r{}
section.homebox003 div.homebox003_col002 .box_r p{}
section.homebox003 div.homebox003_col002 .box_r p img,
section.homebox011 div.homebox003_col002 .box_r p img{
    border-bottom: solid 1px #666;
}
section.homebox003 div.homebox003_col002 .box_r ul,
section.homebox011 div.homebox003_col002 .box_r ul{
    display: flex;
    margin: 5% 0;
}
section.homebox003 div.homebox003_col002 .box_r ul li,
section.homebox011 div.homebox003_col002 .box_r ul li{
    padding: 2%;
}
section.homebox003 div.homebox003_col002 .box_r ul li a{}
section.homebox003 div.homebox003_col002 .box_r ul li a:hover{}
section.homebox003 div.homebox003_col002 .box_r ul li a img{}

section.homebox004{
    background: #fef5f1;
}
section.homebox004 div.homebox004_col001{
    display: flex;
    flex-wrap: wrap;
  background-image: linear-gradient(0deg, transparent 80%, #ffffff 70% 100%);
}

section.homebox004 div.homebox004_col001 h3{
    width: 100%;
    padding: 20% 5% 0;
}
section.homebox004 div.homebox004_col001 .section-heading{
    width: 50%;
    padding: 10% 5% 0;
}
section.homebox004 div.homebox004_col001 h3 img{}
section.homebox004 div.homebox004_col001 p{
    width: 50%;
}

section.homebox004 div.homebox004_col001 p img{}
section.homebox004 p{
    width: 80%;
    margin: 1% auto;
}

/* WHY THISコピー（mirage2_img023 テキスト化） */
.whythis-copy{
    /* v13.8: 「カプセルは…新しい解答です」を改行なしで収めるため拡幅 */
    width: 100%;
    margin: 1% auto;
    text-align: center;
    padding: 1% 2%;
}
.whythis-copy p{
    font-family: var(--font-ja-serif) !important;
    /* v13.8: 1 行に収めるためにフォント・字間を圧縮 */
    font-size: clamp(0.75rem, 2.1vw, 1.05rem);
    font-weight: 700;
    color: #333 !important;
    line-height: 1.7;
    letter-spacing: 0.02em;
    margin: 0;
    /* v13.8: PC は 1 行表示、SP は自然折り返し */
    word-break: keep-all;
    overflow-wrap: anywhere;
}
@media screen and (min-width: 1025px) {
    .whythis-copy p { white-space: nowrap; }
}

/* 比較テーブル（mirage2_img047 テキスト化） */
.compare-table{
    width: 80%;
    margin: 5% auto;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    table-layout: fixed;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
}
.compare-table th,
.compare-table td{
    padding: 8px 5px;
    text-align: center;
    vertical-align: middle;
    line-height: 1.5;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
}
/* 最終列の右線を消す */
.compare-table th:last-child,
.compare-table td:last-child{ border-right: none; }
/* 最終行の下線を消す */
.compare-table tr:last-child th,
.compare-table tr:last-child td{ border-bottom: none; }
.compare-table th{
    font-family: var(--font-round) !important;
    font-size: 1rem;
    font-weight: 700;
    color: #761e3b;
    background: #fff;
}
.compare-table td{
    font-family: var(--font-round) !important;
    font-size: 1rem;
    color: #555;
}
.compare-table__label{
    font-weight: 700;
    color: #888 !important;
    background: #f9f5f6;
    width: 60px;
}
.compare-table__img-row td{
    padding: 10px;
}
.compare-table__img-row img{
    width: 100%;
    max-width: 120px;
    height: auto;
    border-radius: 0;
}
.compare-table__tag{
    display: inline-block;
    background: #761e3b;
    color: #fff;
    border-radius: 20px;
    padding: 4px 16px;
    font-size: 1rem;
    font-weight: 700;
}
.compare-table__eval-row td{
    font-size: 1rem;
    color: #333;
}
.compare-table__issue-row td{
    font-size: 0.8rem;
    color: #555;
    line-height: 1.6;
}


section.homebox004 div.homebox004_col002{}
section.homebox004 div.homebox004_col002 p{
    width: 100%;
    margin: 0;
}
section.homebox004 div.homebox004_col002 p img{}

/* ミラージュIIで解決！ブロック */
.solution-block {
    position: relative;
    margin-top: 20px;
    line-height: 0;
}
.solution-block img {
    width: 100%;
    height: auto;
    display: block;
}
.solution-block__sp-bg {
    display: none;
}
.solution-block__text {
    position: absolute;
    left: 0;
    bottom: 100px;
    padding: 0 40px;
}
.solution-block__title {
    font-family: "FOT-UD明朝 Pr6N", var(--font-ja-serif);
    font-size: 24pt;
    font-weight: 700;
    color: #761e3b;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
    line-height: 1.4;
}
.solution-block__desc {
    font-family: "FOT-UD明朝 Pr6N", var(--font-ja-serif);
    font-size: 1.15rem;
    color: #3b2025;
    line-height: 2;
    letter-spacing: 0.04em;
}

section.homebox004 p img{}
section.homebox004 table{
    border: solid 1px #666;
    border-radius: 20px;
    border-collapse: separate;
    width: 90%;
    margin: 0 auto;
}

.radius-table{
    border-radius: 10px;
    border-spacing: 0;
    border: none;
    border-left: 1px solid #999;
    border-top: 1px solid #999;
}

.radius-table tr>*{
    border: none;
    border-right: 1px solid #999;
    border-bottom: 1px solid #999;
}

.radius-table tr:first-child>*:first-child{
    border-radius: 10px 0 0 0;
}

.radius-table tr:first-child>*:last-child{
    border-radius: 0 10px 0 0;
}

.radius-table tr:last-child>*:first-child{
    border-radius: 0 0 0 10px;
}

.radius-table tr:last-child>*:last-child{
    border-radius: 0 0 10px 0;
}

section.homebox004 table tr{}
section.homebox004 table tr th{
    padding: 20px;
}

section.homebox004 table tr td{
    padding: 1%;
    text-align: center;
}

section.homebox004 table tr td em{
    background: #761e3b;
    color: #fff;
    padding: 5px 20px;
    border-radius: 15px;
}
section.homebox004 table tr td img{}
section.homebox004 div.homebox004_col002 p{}
section.homebox004 div.homebox004_col002 p img{}

section.homebox005{}
section.homebox005 h2,
section.homebox005 h3{}
section.homebox005 h2 img,
section.homebox005 h3 img{}
section.homebox005 p{
    width: 80%;
    margin: 1% auto;
}
section.homebox005 p img{}
section.homebox005 ul{
    display: flex;
    flex-wrap: wrap;
    width: 96%;
    margin: 1% auto 5%;
}

section.homebox005 ul li{
    width: 25%;
    font-size: 95%;
    font-weight: bold;
}

section.homebox005 ul li p{}
section.homebox005 ul li p img{}
section.homebox005 ul li p.sp img{
	width: 100px;
	display:block;
	margin:0 auto;
}
.experience-lead{
    font-family: var(--font-ja-serif) !important;
    font-size: 1.05rem;
    color: #3b2025;
    line-height: 2.0;
    letter-spacing: 0.08em;
    text-align: center;
    width: 86% !important;
    margin: 1.5% auto 3% !important;
}
.whyme-lead{
    font-family: var(--font-ja-serif);
    font-size: 1.05rem;
    color: #3b2025;
    line-height: 2.0;
    letter-spacing: 0.08em;
    text-align: center;
    width: 86%;
    margin: 1.5% auto 3%;
}

section.homebox006{}
section.homebox006 h2,
section.homebox006 h3{
    margin: 0;
    padding: 5% 5% 0;
    width: 100%;
}
section.homebox006 h2 img,
section.homebox006 h3 img{
    width: 100%;
    height: auto;
}
section.homebox006 p{}
section.homebox006 p img{}

/* ACTIVE FORMULA テキスト化 */
.formula__hero {
    position: relative;
    text-align: center;
    z-index: 3;
    margin-top: -20px;
}
.formula__woman {
    width: 100%;
    height: auto;
}
.formula__hero-text {
    text-align: center;
    padding: 20px 5% 0;
    position: relative;
    z-index: 4;
}
.formula__catch {
    font-family: "FOT-UD明朝 Pr6N", var(--font-ja-serif);
    font-size: 1.4rem;
    color: #761e3b;
    line-height: 2;
    letter-spacing: 0.06em;
}
.formula .section-heading {
    position: relative;
    z-index: 4;
    margin-top: -140px;
}
.formula__lead {
    text-align: center;
    padding: 30px 5% 20px;
    position: relative;
    z-index: 4;
}
.formula__lead-main {
    font-family: "FOT-UD明朝 Pr6N", var(--font-ja-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: #761e3b;
    margin-bottom: 12px;
    letter-spacing: 0.04em;
    line-height: 1.8;
}
.formula__lead-body {
    font-family: "FOT-UD明朝 Pr6N", var(--font-ja-serif);
    font-size: 1.05rem;
    color: #3b2025;
    line-height: 2;
    letter-spacing: 0.04em;
}

/* 成分図解 */
.formula__diagram {
    background: url('images/formula_bg.webp') center/cover no-repeat;
    padding-top: 1px;
}
.formula__diagram-inner {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 50px;
    min-height: 750px;
    overflow: hidden;
}

/* バブル接続線（SVG） */
.formula__line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* 製品ジャー：左側に大きく */
.formula__product {
    position: absolute;
    left: 5%;
    top: 25%;
    width: 40%;
    max-width: 360px;
    height: auto;
    z-index: 1;
}

/* 各成分アイテム：バブル位置に合わせて配置 */
.formula__item {
    position: absolute;
    z-index: 2;
}

/* バブル：画像の上にラベルを重ねる */
.formula__bubble-wrap {
    position: relative;
    flex-shrink: 0;
}
.formula__bubble {
    width: 180px;
    height: 180px;
    object-fit: contain;
    display: block;
}
.formula__item-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 140px;
}
.formula__item-name {
    font-family: "FOT-UD明朝 Pr6N", var(--font-ja-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: #761e3b;
    line-height: 1.3;
}
.formula__item-sub {
    font-family: var(--font-ja-serif);
    font-size: 0.7rem;
    color: #333;
    line-height: 1.4;
    margin-top: 3px;
}
.formula__item-desc {
    font-family: var(--font-ja-serif);
    font-size: 0.95rem;
    color: #3b2025;
    line-height: 1.9;
    white-space: nowrap;
}

/* バブル配置：アーチ型（上下=左寄り、中央=右寄り） */
.formula__item--1 {
    top: 5%;
    left: 30%;
    width: 18%;
}
.formula__item--1 .formula__item-desc {
    position: absolute;
    left: 110%;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
}

.formula__item--2 {
    top: 30%;
    left: 40%;
    width: 18%;
}
.formula__item--2 .formula__item-desc {
    position: absolute;
    left: 110%;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
}

.formula__item--3 {
    top: 55%;
    left: 40%;
    width: 18%;
}
.formula__item--3 .formula__item-desc {
    position: absolute;
    left: 110%;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
}

.formula__item--4 {
    top: 78%;
    left: 30%;
    width: 20%;
}
.formula__item--4 .formula__item-name {
    font-size: 1.3rem;
}
.formula__item--4 .formula__item-desc {
    position: absolute;
    left: 110%;
    top: 50%;
    transform: translateY(-50%);
    width: 280px;
}

.formula__note {
    font-family: var(--font-ja-serif);
    font-size: 0.8rem;
    color: #6e5a5f;
    display: block;
    margin-top: 6px;
}

/* SP */


/* CANNES 2026 */
section.cannes2026{
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    padding: 60px 5%;
}
section.cannes2026 .cannes-heading{
    font-family: var(--font-en);
    font-size: 1.8rem;
    color: #c7a36a;
    padding: 0;
    margin-bottom: 30px;
    font-weight: 500;
}
section.cannes2026 .cannes-body{
    max-width: 700px;
    margin: 0 auto;
}
section.cannes2026 .cannes-lead{
    font-family: var(--font-ja-serif);
    font-size: 1.1rem;
    color: #d4b88a;
    line-height: 1.8;
    margin-bottom: 20px;
}
section.cannes2026 .cannes-body p{
    margin-bottom: 16px;
    line-height: 1.8;
    font-size: 0.9rem;
    color: #e8e8e8;
}
section.cannes2026 .cannes-body h4{
    font-size: 1.1rem;
    color: #c7a36a;
    margin: 24px 0 8px;
}
section.cannes2026 .cannes-body strong{
    color: #fff;
    font-weight: bold;
}
section.cannes2026 .cannes-authority{
    font-family: var(--font-ja-serif);
    font-size: 1rem;
    color: #d4b88a !important;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(199,163,106,0.3);
}
section.cannes2026 .cannes-note{
    display: block;
    max-width: 700px;
    margin: 16px auto 0;
    font-size: 75%;
    color: #999;
}

section.homebox007{
	background: url(images/mirage2_bg005.webp) no-repeat center bottom;
	background-size:100% auto;
	padding-bottom: 60px;
}
section.homebox007 h2,
section.homebox007 h3{}

/* ALL カード */
.allcards {
    display: flex;
    gap: 20px;
    width: 90%;
    max-width: 900px;
    margin: 30px auto 60px;
    justify-content: center;
}
.allcard {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    padding: 32px 16px 24px;
    text-align: center;
    position: relative;
    margin-top: 16px;
}
.allcard__label {
    font-family: var(--font-en), serif;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    color: #fff;
    font-weight: 600;
    background: linear-gradient(90deg, #C9A96E 0%, #E0CC9D 50%, #C9A96E 100%);
    padding: 6px 20px;
    display: inline-block;
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}
.allcard__title {
    font-family: "FOT-UD明朝 Pr6N", var(--font-ja-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: #3b2025;
    line-height: 1.5;
    margin-bottom: 16px;
}
.allcard__img {
    width: 85%;
    margin: 0 auto 16px;
    border-radius: 8px;
    overflow: hidden;
}
.allcard__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.allcard__desc {
    font-family: var(--font-round);
    font-size: 0.85rem;
    font-weight: 500;
    color: #3b2025;
    line-height: 1.8;
}


section.homebox008{
    padding: 5%;
    background: #fef5f1;
    overflow: hidden;
}

/* STORYブロック */
.story-block {
    position: relative;
    max-width: 900px;
    margin: 30px auto 0;
}
.story-block__img img {
    width: 100%;
    height: auto;
}
.story-block__text {
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5%;
    background: rgba(254, 245, 241, 0.85);
    z-index: 1;
}
.story-block__text .section-heading {
    padding: 0 0 16px;
    align-items: flex-start;
}
.story-block__text p {
    font-family: "FOT-UD明朝 Pr6N", var(--font-ja-serif);
    font-size: 0.9rem;
    color: #3b2025;
    line-height: 2.2;
    margin-bottom: 20px;
    text-align: left;
}
.story-block__closing {
    font-weight: 700;
    color: #761e3b !important;
    font-size: 0.95rem !important;
}


section.homebox009{
    background: #fef5f1;
    padding: 0 0 5%;
    counter-reset: qa-counter;
    font-family: var(--font-round);
}
section.homebox009 h2,
section.homebox009 h3{ padding: 3% 5% 3%; }
section.homebox009 h2 img,
section.homebox009 h3 img{}
section.homebox009 p{}
section.homebox009 p img{}
section.homebox009 dl{
    max-width: 860px;
    margin: 0 auto;
    padding: 0 5%;
}
section.homebox009 dl dt{
    counter-increment: qa-counter;
    background: #fff;
    margin: 0 0 0;
    padding: 18px 20px 18px 64px;
    font-size: 105%;
    color: #761e3b;
    font-weight: bold;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #761e3b;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
section.homebox009 dl dt.is-open{
    border-radius: 10px 10px 0 0;
}
section.homebox009 dl dt:before{
    content:"Q" counter(qa-counter);
    position: absolute;
    left: 16px;
    top: 16px;
    font-size: 90%;
    background: #761e3b;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: #fff;
    text-align: center;
    font-family: var(--font-en);
    font-weight: 500;
}
section.homebox009 dl dd{
    background: #fff;
    padding: 20px 20px 20px 64px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    margin: 0 0 20px;
    display: none;
    color: #333;
    font-size: 0.9rem;
    line-height: 1.8;
    position: relative;
    border-radius: 0 0 10px 10px;
    border: 1px solid #761e3b;
    border-top: none;
}
section.homebox009 dl dt:first-of-type + dd{
    display: block;
}
section.homebox009 dl dd:before{
    content:"A";
    position: absolute;
    left: 20px;
    top: 18px;
    font-size: 1.4rem;
    font-family: var(--font-en) !important;
    color: #c8607a;
    font-weight: 500;
}
section.homebox009 dl dd small{
    font-size: 80%;
    color: #999;
    display: block;
    margin-top: 8px;
}

section.homebox010{
    background: #fff;
}
section.homebox010 h2,
section.homebox010 h3{}
section.homebox010 h2 img,
section.homebox010 h3 img{}
section.homebox010 div.mainbox002{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 2%;
}
section.homebox010 div.box_l{
    width: 40%;
    padding: 2%;
}

section.homebox010 div.box_l p{}
section.homebox010 div.box_l p img{}
section.homebox010 div.box_r{
    width: 60%;
    padding: 2%;
}

section.homebox010 div.box_r table{
    border: solid 1px #ccc;
}
section.homebox010 div.box_r table tr{}
section.homebox010 div.box_r table tr th{
    border: solid 1px #ccc;
    padding: 10px;
    white-space: nowrap;
}
section.homebox010 div.box_r table tr td{
    border: solid 1px #ccc;
    padding: 10px;
}
section.homebox010 div.box_r table tr td em{
	border:solid 1px #999;
	background:#eaeaea;
	padding:5px 20px;
	border-radius:15px;
}
section.homebox010 div.box_r table tr td em a{}
section.homebox010 div.box_r table tr td em a:hover{}

section.homebox011{
    background: #fff;
    padding: 60px 5% 10%;
}

/* OFFER 見出し */

/* OFFER カード2列（画像ベース） */
.offer-cards{
    display: flex;
    gap: 20px;
    max-width: 820px;
    margin: 0 auto 24px;
    padding: 0 5%;
}
.offer-card-link{
    flex: 1;
    display: block;
}
.offer-card-link img{
    width: 100%;
    height: auto;
    transition: opacity 0.2s;
}
.offer-card-link:hover img{
    opacity: 0.85;
}

/* CTA情報 */
section.homebox011 .cta-info{
    text-align: center;
    padding: 16px 5% 0;
    font-size: 80%;
    color: #666;
}
section.homebox011 .cta-info p{
    margin-bottom: 8px;
}
section.homebox011 .cta-info ul{
    display: flex;
    justify-content: center;
    gap: 16px;
    font-size: 90%;
}
section.homebox011 .cta-info ul li{ width: auto; }
section.homebox011 .cta-info ul li a{ color: #812845; }

/* レスポンシブ */


/* 言語切替 */
.lang-switcher{
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 16px 0;
    background: #fff;
    font-size: 80%;
    border-bottom: 1px solid #eee;
}
.lang-switcher a{
    color: #812845;
    padding: 4px 12px;
    border-radius: 3px;
}
.lang-switcher a.is-active{
    background: #812845;
    color: #fff;
}
.lang-switcher a:hover{
    opacity: 0.7;
}

/*----------------- #footer -------------------*/

#footer{background: #fff;border-top: solid 1px #812845;}
#footer footer{
	padding: 5% 0 0;
	width: 100%;
	margin: 0 auto;
}

#footer footer .footbox01{
}

#footer footer .footbox01 h1{
	padding:0 2%;
	font-size: 110%;
	text-align: center;
}
#footer footer .footbox01 h1 a{
	color: #832846;
}
#footer footer .footbox01 h1 a img{
	width:60px;
}
#footer footer .footbox01 ul{
	font-size:80%;
	text-align: center;
}
#footer footer .footbox01 ul li.address{
	color: #812845;
	width: 100%;
}
#footer footer .footbox01 ul li.tel{
	color: #812845;
	width: 100%;
}

#footer footer .footbox01 ul li.tel a{
	color:#fff;
}
#footer footer .footbox02{
	padding: 0;
	margin: 0;
}
#footer footer .footbox02 h2{
	font-size:90%;
	padding: 2%;
}
#footer footer .footbox02 h2 a{
	color:#fff;
}
#footer footer .footbox02 h2 a:hover{
	opacity:0.7;
}
#footer footer .footbox02 ul{
	font-size: 80%;
	padding: 0;
	display: flex;
	justify-content: center;
	margin: 0 0 2%;
}
#footer footer .footbox02 ul li{
	float: none;
	padding: 0 1%;
}
#footer footer .footbox02 ul li a{color: #812845;}
#footer footer .footbox02 ul li a:hover{
	opacity:0.7;
}


#footer footer p{
	clear: both;
	text-align:center;
	background: #812845;
	padding: 2%;
}
#footer footer p small{
	color:#e8dede;
	font-size:70%;
	display: block;
	padding: 0;
}
#footer footer p small a{
	color:#e8dede;
}
#footer footer p small a:hover{
	color:#e8dede;
}
#footer footer p#page-top{
    position: fixed;
    bottom: 10px;
    right: 0;
    background: #7f2844;
    padding: 0;
    border: solid 1px #fff;
}
#footer footer p#page-top a{
	color:#fff;
	font-size:80%;
	padding: 1%;
	display:block;
	width: 60px;
	line-height:1.2;
}
#footer footer p#page-top a:hover{}
#footer footer p#page-top a:before {
	font-family: FontAwesome;
	font-size:100%;
	display:block;
	float:none;
	content:"\f077";
	font-weight: normal;
}

/* ==================== PARTNER section (homebox012) ==================== */
.homebox012 {
    padding: 80px 5% 100px;
    background: linear-gradient(135deg, #FFF5F7 0%, #FFE8ED 100%);
}
.partner-section__inner {
    max-width: 1080px;
    margin: 0 auto;
}
.partner-section__lead {
    font-family: var(--font-ja-serif);
    font-size: 1.05rem;
    color: #555;
    line-height: 2.0;
    letter-spacing: 0.06em;
    text-align: center;
    margin: 0 auto 50px;
    max-width: 720px;
}
.partner-channels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 50px;
}
.partner-channel {
    background: #fff;
    border: 1px solid #F0D0D8;
    border-radius: 4px;
    padding: 32px 24px;
    text-align: center;
}
.partner-channel__label {
    font-family: 'Playfair Display', serif;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    color: #C9A96E;
    margin-bottom: 12px;
}
.partner-channel__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: #3A2A2E;
    margin-bottom: 6px;
    letter-spacing: 0.04em;
}
.partner-channel__sub {
    font-family: var(--font-ja-serif);
    font-size: 0.9rem;
    color: #761e3b;
    margin-bottom: 14px;
    letter-spacing: 0.05em;
}
.partner-channel__desc {
    font-family: var(--font-ja-serif);
    font-size: 0.88rem;
    color: #6E5A5F;
    line-height: 1.85;
    letter-spacing: 0.03em;
    margin: 0;
}
.partner-section__cta {
    text-align: center;
    margin-bottom: 24px;
}
.partner-section__btn-primary,
.partner-section__btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    margin: 0 6px 12px;
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity .2s, background .2s;
}
.partner-section__btn-primary {
    background: #A04060;
    color: #fff;
}
.partner-section__btn-primary:hover { opacity: .85; }
.partner-section__btn-secondary {
    background: transparent;
    color: #A04060;
    border: 1px solid #A04060;
}
.partner-section__btn-secondary:hover {
    background: #A04060;
    color: #fff;
}
.partner-section__note {
    font-family: var(--font-ja-serif);
    font-size: 0.78rem;
    color: #888;
    text-align: center;
    line-height: 1.8;
    letter-spacing: 0.03em;
    margin: 0;
}
@media (max-width: 880px) {
    .partner-channels { grid-template-columns: 1fr; gap: 16px; }
    .homebox012 { padding: 60px 5% 70px; }
    .partner-section__lead { font-size: 0.95rem; line-height: 1.9; margin-bottom: 32px; }
    .partner-section__btn-primary,
    .partner-section__btn-secondary {
        display: block;
        max-width: 320px;
        margin: 0 auto 12px;
    }
}

/* ============================================
   v11: A+B デザイン改善
   A: スクロール連動フェードイン/パララックス
   B: グラデーション・ホバー・シャドウのリッチ化
   ============================================ */

/* ---------- A: Reveal animation (フェードイン) ---------- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(32px);
        transition: opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
                    transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
        will-change: opacity, transform;
    }
    .reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
    }
    /* Stagger animations for grouped items */
    .reveal-stagger > * {
        opacity: 0;
        transform: translateY(28px);
        transition: opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
                    transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
    }
    .reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
    .reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.18s; }
    .reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.31s; }
    .reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.44s; }
    .reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.57s; }
    .reveal-stagger.is-visible > * {
        opacity: 1;
        transform: translateY(0);
    }
    /* Subtle parallax — uses transform on scroll for performance */
    .parallax-slow {
        will-change: transform;
        transition: transform 0.1s linear;
    }
}
/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-stagger > * {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ---------- B: Section heading gradient accent ---------- */
.section-heading__en {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #761e3b 0%, #A04060 50%, #C9A96E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
/* Fallback for browsers without background-clip support */
@supports not (-webkit-background-clip: text) {
    .section-heading__en {
        background: none;
        -webkit-text-fill-color: initial;
        color: #761e3b;
    }
}

/* ---------- B: CTA button rich hover ---------- */
.btn-buy,
#homebox011 .cta-info a.btn-buy,
.partner-section__btn-primary,
.partner-section__btn-secondary {
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
                box-shadow 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
                background 0.3s ease;
    will-change: transform;
}

/* Shimmer overlay for primary CTAs */
.btn-buy::before,
.partner-section__btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
        transparent 30%,
        rgba(255, 255, 255, 0.25) 50%,
        transparent 70%);
    transition: left 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
    pointer-events: none;
}
.btn-buy:hover::before,
.partner-section__btn-primary:hover::before {
    left: 100%;
}
.btn-buy:hover,
.partner-section__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px -8px rgba(118, 30, 59, 0.45),
                0 4px 12px -4px rgba(118, 30, 59, 0.3);
}
.partner-section__btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px -8px rgba(118, 30, 59, 0.3);
}

/* ---------- B: Voice card hover ---------- */
section.homebox001 ul li {
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
                box-shadow 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
}
section.homebox001 ul li:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px -16px rgba(118, 30, 59, 0.28),
                0 10px 24px -8px rgba(0, 0, 0, 0.12);
}

/* ---------- B: Allcard hover ---------- */
.allcard {
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
                box-shadow 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
    position: relative;
}
.allcard:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px -18px rgba(118, 30, 59, 0.3),
                0 10px 20px -8px rgba(0, 0, 0, 0.12);
}

/* ---------- B: Partner channel card — enhanced ---------- */
.partner-channel {
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
                box-shadow 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
                border-color 0.4s ease;
    will-change: transform;
    position: relative;
    overflow: hidden;
}
.partner-channel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #C9A96E 0%, #A04060 50%, #761e3b 100%);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.partner-channel:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -18px rgba(160, 64, 96, 0.3),
                0 12px 24px -8px rgba(0, 0, 0, 0.12);
    border-color: #C9A96E;
}
.partner-channel:hover::before {
    transform: scaleX(1);
}

/* ---------- B: Compare table row hover ---------- */
.compare-table tbody tr {
    transition: background 0.3s ease;
}
.compare-table tbody tr:hover {
    background: rgba(255, 245, 247, 0.6);
}

/* ---------- B: Image subtle zoom on hover (Voice photos, hero product) ---------- */
.voice-photo picture,
.formula__bubble-wrap {
    overflow: hidden;
    display: block;
}
.voice-photo img,
.formula__bubble {
    transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
}
section.homebox001 ul li:hover .voice-photo img {
    transform: scale(1.04);
}

/* ---------- B: Hero section gradient overlay enhancement ---------- */
.hero-section {
    position: relative;
}
.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right,
        rgba(255, 222, 232, 0.35) 0%,
        transparent 55%);
    pointer-events: none;
    z-index: 2; /* sit above bg image but below content */
}
/* Ensure content sits above the gradient overlay (without changing position scheme) */
.hero-section__content,
.hero-section__package,
.hero-section__product,
.hero-section__overlay {
    z-index: 3;
}

/* ---------- B: Section heading underline accent ---------- */
.section-heading {
    position: relative;
}
.section-heading::after {
    content: "";
    display: block;
    width: 48px;
    height: 2px;
    margin-top: 12px;
    background: linear-gradient(90deg, #C9A96E 0%, #761e3b 100%);
    border-radius: 2px;
    transition: width 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.section-heading.is-visible::after {
    width: 80px;
}
/* v13.20: OFFER ヘッダー直下の複製商品ブロック画像とゴールド線が
   SP で重なって見えるため、homebox011 のみアクセント線を非表示 */
section.homebox011 > .section-heading::after {
    display: none;
}

/* ---------- B: Solution-block product image float effect ---------- */
.solution-block__product-img,
.formula__bubble {
    transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Floating gentle animation for product showcases (when in view) */
@keyframes gentleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
@media (prefers-reduced-motion: no-preference) {
    .float-gentle {
        animation: gentleFloat 4s ease-in-out infinite;
    }
}

/* ---------- B: Header subtle shadow on scroll ---------- */
header.scrolled,
#header.scrolled {
    box-shadow: 0 2px 20px -4px rgba(0, 0, 0, 0.08);
    backdrop-filter: saturate(150%) blur(8px);
    -webkit-backdrop-filter: saturate(150%) blur(8px);
}

/* ---------- B: Link underline animation ---------- */
.footer-legal a {
    position: relative;
    transition: color 0.25s ease;
}
.footer-legal a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.footer-legal a:hover {
    color: #C9A96E;
}
.footer-legal a:hover::after {
    width: 100%;
}

/* ============================================
   v11 デザイン改善 — B(リッチホバー・シャドウ・グラデ)
   ※ A(スクロールフェード)は L2158-2199 の既存実装を活用
   ============================================ */

/* === B-1: ボタンのリッチ化(立体感・ホバー) === */
/* OFFER購入ボタン */
.cta-btn,
.partner-section__btn-primary,
.partner-section__btn-secondary {
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.35s ease;
}
.cta-btn::before,
.partner-section__btn-primary::before {
    content: "";
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
    transition: left 0.7s ease;
    pointer-events: none;
}
.cta-btn:hover::before,
.partner-section__btn-primary:hover::before {
    left: 100%;
}

/* PARTNER メインボタン: 立体的な深いシャドウ + ホバーリフト */
.partner-section__btn-primary {
    box-shadow:
        0 4px 12px rgba(160, 64, 96, 0.25),
        0 1px 3px rgba(160, 64, 96, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.partner-section__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 24px rgba(160, 64, 96, 0.35),
        0 2px 6px rgba(160, 64, 96, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.20);
    opacity: 1;
}

.partner-section__btn-secondary {
    box-shadow: 0 2px 6px rgba(160, 64, 96, 0.10);
}
.partner-section__btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(160, 64, 96, 0.20);
}

/* === B-2: PARTNER チャネルカードのホバーリフト === */
.partner-channel {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.5s ease;
    box-shadow:
        0 1px 3px rgba(118, 30, 59, 0.05),
        0 0 0 1px rgba(240, 208, 216, 1);
    border: none;
}
.partner-channel:hover {
    transform: translateY(-6px);
    box-shadow:
        0 16px 40px rgba(118, 30, 59, 0.15),
        0 4px 12px rgba(118, 30, 59, 0.08),
        0 0 0 1px rgba(201, 169, 110, 0.4);
}
.partner-channel__title {
    transition: color 0.4s ease;
}
.partner-channel:hover .partner-channel__title {
    color: #761e3b;
}

/* === B-3: VOICE カードのホバー効果 === */
section.homebox001 ul li {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
section.homebox001 ul li:hover {
    transform: translateY(-4px);
}

/* === B-4: ALL ジェネレーション/シーズン/スキン カードのホバー === */
.allcard {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.allcard:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 18px 40px rgba(118, 30, 59, 0.12), 0 4px 12px rgba(118, 30, 59, 0.08);
}

/* === B-5: gold accent line のリッチ化 === */
.section-heading {
    position: relative;
}

/* === B-6: PARTNER section 背景にゴールドアクセント === */
.homebox012 {
    position: relative;
    overflow: hidden;
}
.homebox012::before {
    content: "";
    position: absolute;
    top: -100px; right: -100px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.homebox012::after {
    content: "";
    position: absolute;
    bottom: -100px; left: -100px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(160, 64, 96, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.homebox012 .partner-section__inner {
    position: relative;
    z-index: 1;
}

/* === B-7: section-heading の en に subtle gold gradient === */
.section-heading__en {
    background: linear-gradient(135deg, #5a1f33 0%, #3a141f 50%, #5a1f33 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% auto;
    transition: background-position 0.8s ease;
}
.section-heading.is-visible .section-heading__en,
.section-heading:hover .section-heading__en {
    background-position: 100% center;
}

/* === A-2: 軽いパララックス背景(セクション背景固定風) === */
@media (min-width: 1025px) {
    section.homebox003 {
        background-attachment: fixed;
    }
    section.homebox008 {
        background-attachment: fixed;
    }
}

/* === Reduced motion: 全アニメ無効 === */
@media (prefers-reduced-motion: reduce) {
    .fx-fade-up,
    .fx-stagger > *,
    .partner-channel,
    .allcard,
    .partner-section__btn-primary,
    .partner-section__btn-secondary,
    .cta-btn,
    section.homebox001 ul li {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }
    @media (min-width: 1025px) {
        section.homebox003,
        section.homebox008 {
            background-attachment: scroll;
        }
    }
}

/* ============================================
   v11: A+B デザイン改善 — フェードイン・パララックス・リッチ化
   ============================================ */

/* === A: スクロール連動フェードイン === */

/* 初期状態: 透明 + 下から少し */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.0s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1.0s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}
.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* スライドイン左 */
.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 1.0s ease-out, transform 1.0s ease-out;
    will-change: opacity, transform;
}
.fade-in-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* スライドイン右 */
.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 1.0s ease-out, transform 1.0s ease-out;
    will-change: opacity, transform;
}
.fade-in-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* スケールイン(画像など強調用) */
.fade-in-scale {
    opacity: 0;
    transform: scale(0.94);
    transition: opacity 1.2s ease-out, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.fade-in-scale.is-visible {
    opacity: 1;
    transform: scale(1);
}

/* ステガード(ずれ動)用、子要素を順次フェード */
.fade-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}
.fade-stagger.is-visible > *:nth-child(1) { transition-delay: 0.0s; opacity: 1; transform: translateY(0); }
.fade-stagger.is-visible > *:nth-child(2) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.fade-stagger.is-visible > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.fade-stagger.is-visible > *:nth-child(4) { transition-delay: 0.45s; opacity: 1; transform: translateY(0); }
.fade-stagger.is-visible > *:nth-child(5) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }
.fade-stagger.is-visible > *:nth-child(6) { transition-delay: 0.75s; opacity: 1; transform: translateY(0); }

/* === パララックス(軽量・GPU加速) === */
.parallax-slow { will-change: transform; }
/* parallax値はJSで動的に */

/* === B: ホバー効果・シャドウのリッチ化 === */

/* ボタン全般のリッチ化 */
.btn,
.cta-button,
.partner-section__btn-primary,
.partner-section__btn-secondary,
.btn-primary {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(160, 64, 96, 0.18),
                0 1px 3px rgba(0, 0, 0, 0.06);
}
.btn:hover,
.cta-button:hover,
.partner-section__btn-primary:hover,
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(160, 64, 96, 0.28),
                0 2px 6px rgba(0, 0, 0, 0.08);
}

/* ボタンの光沢シマー効果 */
.btn::before,
.partner-section__btn-primary::before,
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%);
    transition: left 0.6s ease;
    pointer-events: none;
}
.btn:hover::before,
.partner-section__btn-primary:hover::before,
.btn-primary:hover::before {
    left: 100%;
}

/* カード(VOICE / PARTNER / WHY ME) リッチ化 */
.voice-section ul li,
.partner-channel,
.allcard {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.voice-section ul li:hover,
.partner-channel:hover,
.allcard:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(160, 64, 96, 0.10),
                0 4px 8px rgba(0, 0, 0, 0.06);
}

/* 価格カード(OFFER) — リッチなシャドウとホバー */
.offer-card,
section.homebox011 .offer-cards > * {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.5s ease;
    box-shadow: 0 4px 24px rgba(160, 64, 96, 0.08);
}
.offer-card:hover,
section.homebox011 .offer-cards > *:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(160, 64, 96, 0.15),
                0 4px 10px rgba(0, 0, 0, 0.05);
}

/* 比較表 — 静謐ながら陰影 */
.compare-table-wrap {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(160, 64, 96, 0.08),
                0 1px 3px rgba(0, 0, 0, 0.04);
}

/* ヒーローCTAボタンのリッチ化(購入する) */
.hero-cta-button,
.offer-card-link,
.cta-info-button {
    background: linear-gradient(135deg, #A04060 0%, #8B3550 50%, #761e3b 100%) !important;
    background-size: 200% 200%;
    background-position: 0% 50%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 6px 20px rgba(160, 64, 96, 0.32),
                0 2px 4px rgba(118, 30, 59, 0.15) !important;
}
.hero-cta-button:hover,
.offer-card-link:hover,
.cta-info-button:hover {
    background-position: 100% 50%;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(160, 64, 96, 0.45),
                0 4px 8px rgba(118, 30, 59, 0.20) !important;
}

/* セクション見出し下線にエレガントなアクセント */
.section-heading {
    position: relative;
}

/* INGREDIENTS テーブル(homebox010) — 静かなシャドウ */
section.homebox010 table {
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    border-radius: 6px;
    overflow: hidden;
}

/* FAQ アコーディオン — ホバーで微妙に強調 */
section.homebox009 dl dt {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
section.homebox009 dl dt:hover {
    background-color: rgba(160, 64, 96, 0.04);
    box-shadow: 0 2px 8px rgba(160, 64, 96, 0.08);
}

/* PARTNER section背景にリッチなグラデーション(既存を強化) */
.homebox012 {
    background: linear-gradient(135deg, #FFF5F7 0%, #FFE8ED 35%, #FFDDE5 65%, #FFE3E9 100%);
    background-size: 200% 200%;
    animation: subtle-gradient-shift 12s ease-in-out infinite;
}
@keyframes subtle-gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* 画像のホバー — 軽い拡大 */
.voice-photo img,
.formula__item img,
.allcard picture img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 0.5s ease;
}
.voice-section ul li:hover .voice-photo img,
.allcard:hover picture img {
    transform: scale(1.04);
    filter: brightness(1.04);
}

/* リンクの下線アニメーション */
.footbox02 ul li a,
.footer-legal a {
    position: relative;
    transition: color 0.3s ease;
}
.footbox02 ul li a::after,
.footer-legal a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.4s ease;
}
.footbox02 ul li a:hover::after,
.footer-legal a:hover::after {
    width: 100%;
}

/* === パフォーマンス最適化 === */

/* prefers-reduced-motion を尊重(アクセシビリティ) */
@media (prefers-reduced-motion: reduce) {
    .fade-in,
    .fade-in-left,
    .fade-in-right,
    .fade-in-scale,
    .fade-stagger > * {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .homebox012 {
        animation: none !important;
    }
}

/* ============================================
   v12: PARTNER Editorial Mode (アイボリー×真鍮)
   #homebox012 + carries to /ja/partners/ via shared vars
   ============================================ */
:root {
    --color-ivory: #FAF6F0;
    --color-ivory-soft: #F4ECE0;
    --color-brass: #B08D57;
    --color-brass-light: #C9A96E;
    --color-brass-dark: #8A6D3F;
    --color-deep-red: #5C1F2E;
    --color-noir: #1A1419;
}

/* Section background — replace pink */
.homebox012.partner-section--editorial {
    background:
        linear-gradient(180deg, transparent 0, transparent 60%, rgba(176,141,87,0.04) 100%),
        var(--color-ivory) !important;
    padding: 100px 0 80px;
    position: relative;
}

/* Hairline brass top + bottom borders */
.homebox012.partner-section--editorial::before,
.homebox012.partner-section--editorial::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: min(900px, 80%);
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(176, 141, 87, 0.5) 20%,
        rgba(176, 141, 87, 0.8) 50%,
        rgba(176, 141, 87, 0.5) 80%,
        transparent 100%);
}
.homebox012.partner-section--editorial::before { top: 40px; }
.homebox012.partner-section--editorial::after { bottom: 32px; }

/* Heading — make ja text more refined */
.partner-section--editorial .section-heading__en {
    /* Inherit gradient from existing v11 */
    letter-spacing: 0.36em;
    font-size: 1.75rem;
}
.partner-section--editorial .section-heading__ja {
    color: var(--color-noir);
    letter-spacing: 0.18em;
    font-weight: 500;
    margin-top: 8px;
}

/* Flourish ornament */
.partner-section__flourish {
    display: flex;
    justify-content: center;
    margin: 40px auto 28px;
    color: var(--color-brass);
    opacity: 0.85;
}

/* Lead text */
.partner-section--editorial .partner-section__lead {
    color: #3a2630;
    font-family: var(--font-ja-serif);
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 2.1;
    text-align: center;
    margin: 0 auto 80px;
    max-width: 720px;
}

/* Channel cards container — asymmetric grid on PC */
.partner-section--editorial .partner-channels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px 36px;
    max-width: 1080px;
    margin: 0 auto 80px;
    padding: 0 24px;
}

/* Asymmetric vertical offsets — editorial magazine feel */
@media screen and (min-width: 1025px) {
    /* Override reveal-stagger transform on partner channels (use higher specificity) */
    .partner-section--editorial .partner-channels.reveal-stagger.is-visible > .partner-channel--01,
    .partner-section--editorial .partner-channel--01 {
        transform: translateY(0);
    }
    .partner-section--editorial .partner-channels.reveal-stagger.is-visible > .partner-channel--02,
    .partner-section--editorial .partner-channel--02 {
        transform: translateY(48px);
    }
    .partner-section--editorial .partner-channels.reveal-stagger.is-visible > .partner-channel--03,
    .partner-section--editorial .partner-channel--03 {
        transform: translateY(16px);
    }
}

/* Card itself — editorial style */
.partner-section--editorial .partner-channel {
    position: relative;
    background: transparent;
    border: none;
    padding: 56px 28px 32px;
    border-radius: 0;
    text-align: center;
    overflow: visible;
    box-shadow: none;
    transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Hairline brass top border for each card */
.partner-section--editorial .partner-channel::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--color-brass);
    transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Big editorial number — the hero element */
.partner-section--editorial .partner-channel__num {
    display: block;
    font-family: "Playfair Display", "BIZ UDMincho", serif;
    font-size: 6.5rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1;
    /* v13.5: 白抜き(outline)→ 真鍮 solid fill に変更 */
    color: var(--color-brass);
    -webkit-text-stroke: 0;
    text-stroke: 0;
    letter-spacing: -0.02em;
    margin: 0 0 8px;
    transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1),
                color 0.4s ease;
    user-select: none;
}

/* Hide the small CHANNEL XX label since the big number replaces its function */
.partner-section--editorial .partner-channel__label {
    font-size: 0.6rem;
    letter-spacing: 0.5em;
    color: var(--color-brass);
    margin: 0 0 28px;
    font-weight: 500;
    opacity: 0.85;
    text-transform: uppercase;
}

/* Channel title — refined English */
.partner-section--editorial .partner-channel__title {
    font-family: "Playfair Display", "BIZ UDMincho", serif;
    font-size: 1.55rem;
    font-weight: 500;
    color: var(--color-noir);
    letter-spacing: 0.04em;
    margin: 0 0 16px;
    line-height: 1.4;
}

/* Subtitle — Japanese tagline */
.partner-section--editorial .partner-channel__sub {
    font-family: var(--font-ja-serif);
    font-size: 0.95rem;
    color: var(--color-deep-red);
    font-weight: 500;
    letter-spacing: 0.12em;
    margin: 0 0 24px;
    padding-bottom: 18px;
    position: relative;
}
.partner-section--editorial .partner-channel__sub::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 1px;
    background: var(--color-brass);
    opacity: 0.5;
}

/* Description */
.partner-section--editorial .partner-channel__desc {
    font-family: var(--font-ja-serif);
    font-size: 0.92rem;
    color: #4a3540;
    line-height: 2.0;
    letter-spacing: 0.06em;
    margin: 0;
}

/* Hover effect — editorial */
.partner-section--editorial .partner-channel:hover {
    transform: translateY(-6px);
}
@media screen and (min-width: 1025px) {
    .partner-section--editorial .partner-channels.reveal-stagger.is-visible > .partner-channel--01:hover,
    .partner-section--editorial .partner-channel--01:hover {
        transform: translateY(-6px);
    }
    .partner-section--editorial .partner-channels.reveal-stagger.is-visible > .partner-channel--02:hover,
    .partner-section--editorial .partner-channel--02:hover {
        transform: translateY(42px);
    }
    .partner-section--editorial .partner-channels.reveal-stagger.is-visible > .partner-channel--03:hover,
    .partner-section--editorial .partner-channel--03:hover {
        transform: translateY(10px);
    }
}
.partner-section--editorial .partner-channel:hover::before {
    width: 80px;
}
.partner-section--editorial .partner-channel:hover .partner-channel__num {
    /* v13.5: solid fill ベースから hover で濃い真鍮に微変化 */
    color: var(--color-brass-dark);
}

/* CTA buttons — editorial refined */
.partner-section--editorial .partner-section__cta {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 0 auto 40px;
    padding: 60px 0 0;
    border-top: 1px solid rgba(176, 141, 87, 0.2);
    max-width: 720px;
}

.partner-section--editorial .partner-section__btn-primary,
.partner-section--editorial .partner-section__btn-secondary {
    font-family: "Playfair Display", "BIZ UDMincho", serif;
    font-weight: 500;
    letter-spacing: 0.18em;
    font-size: 0.95rem;
    padding: 16px 36px;
    border-radius: 0;
    border: 1px solid var(--color-deep-red);
    transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.partner-section--editorial .partner-section__btn-primary {
    background: var(--color-deep-red);
    color: var(--color-ivory);
}
.partner-section--editorial .partner-section__btn-primary:hover {
    background: var(--color-noir);
    border-color: var(--color-noir);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -10px rgba(26, 20, 25, 0.4);
}
.partner-section--editorial .partner-section__btn-secondary {
    background: transparent;
    color: var(--color-deep-red);
    border-color: var(--color-brass);
}
.partner-section--editorial .partner-section__btn-secondary:hover {
    background: var(--color-brass);
    color: var(--color-ivory);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -10px rgba(176, 141, 87, 0.4);
}

/* Note — minimal */
.partner-section--editorial .partner-section__note {
    text-align: center;
    color: #847164;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    line-height: 1.9;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px;
}

/* SP adjustments */
@media screen and (max-width: 1024px) {
    .homebox012.partner-section--editorial {
        padding: 70px 0 50px;
    }
    .partner-section--editorial .partner-channels {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 0 6%;
    }
    .partner-section--editorial .partner-channel--01,
    .partner-section--editorial .partner-channel--02,
    .partner-section--editorial .partner-channel--03 {
        transform: translateY(0) !important;
    }
    .partner-section--editorial .partner-channel:hover {
        transform: translateY(-4px) !important;
    }
    .partner-section--editorial .partner-channel__num {
        font-size: 5rem;
    }
    .partner-section--editorial .partner-channel__title {
        font-size: 1.35rem;
    }
    .partner-section--editorial .partner-section__cta {
        flex-direction: column;
        gap: 14px;
        padding: 40px 24px 0;
    }
    .partner-section--editorial .partner-section__btn-primary,
    .partner-section--editorial .partner-section__btn-secondary {
        font-size: 0.88rem;
        padding: 14px 20px;
        text-align: center;
    }
    .partner-section--editorial .partner-section__lead {
        font-size: 0.95rem;
        margin-bottom: 50px;
    }
}

/* ============================================
   v13: Header Language Picker (Editorial)
   ============================================ */
.lang-picker {
    position: relative;
    display: inline-block;
    margin: 0 0 14px;
    width: 100%;
    max-width: 280px;
}
.lang-picker__toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1px solid rgba(176, 141, 87, 0.5);
    border-radius: 0;
    padding: 10px 14px;
    font-family: var(--font-ja-serif), "BIZ UDMincho", serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #1A1419;
    letter-spacing: 0.12em;
    cursor: pointer;
    transition: border-color 0.3s ease, background 0.3s ease;
    width: 100%;
    justify-content: center;
}
.lang-picker__toggle:hover,
.lang-picker__toggle:focus-visible {
    border-color: #B08D57;
    background: rgba(176, 141, 87, 0.06);
    outline: none;
}
.lang-picker__icon-globe {
    color: #B08D57;
    flex-shrink: 0;
}
.lang-picker__current {
    flex: 1;
    text-align: center;
    letter-spacing: 0.16em;
}
.lang-picker__icon-chevron {
    color: #8A6D3F;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.lang-picker__toggle[aria-expanded="true"] .lang-picker__icon-chevron {
    transform: rotate(180deg);
}
.lang-picker__menu {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #FAF6F0;
    border: 1px solid rgba(176, 141, 87, 0.4);
    border-radius: 0;
    list-style: none;
    margin: 0;
    padding: 6px 0;
    box-shadow: 0 -8px 28px -10px rgba(26, 20, 25, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 100;
}
.lang-picker__toggle[aria-expanded="true"] + .lang-picker__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lang-picker__menu li {
    margin: 0;
    padding: 0;
    list-style: none;
}
.lang-picker__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    font-family: var(--font-ja-serif), "BIZ UDMincho", serif;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: background 0.2s ease;
    border-bottom: 1px solid rgba(176, 141, 87, 0.12);
}
.lang-picker__menu li:last-child .lang-picker__item {
    border-bottom: none;
}
.lang-picker__item .lang-picker__name { font-weight: 500; }
.lang-picker__item .lang-picker__name[lang="en"] { font-family: "Playfair Display", serif; font-style: italic; font-weight: 500; letter-spacing: 0.12em; }
.lang-picker__item .lang-picker__name[lang="ko"] { font-family: "Noto Serif KR", "BIZ UDMincho", serif; }
.lang-picker__item .lang-picker__name[lang="zh-CN"] { font-family: "Noto Serif SC", "BIZ UDMincho", serif; }
.lang-picker__item .lang-picker__name[lang="fr"] { font-family: "Playfair Display", "Noto Serif", serif; font-style: italic; }
.lang-picker__item.is-active {
    color: #5C1F2E;
    background: rgba(176, 141, 87, 0.08);
    cursor: default;
}
.lang-picker__item.is-active .lang-picker__check {
    color: #B08D57;
    font-size: 0.85rem;
}
a.lang-picker__item {
    color: #1A1419;
    cursor: pointer;
}
a.lang-picker__item:hover,
a.lang-picker__item:focus-visible {
    background: rgba(176, 141, 87, 0.1);
    color: #5C1F2E;
    outline: none;
}
.lang-picker__item.is-disabled {
    color: #B5A89B;
    cursor: not-allowed;
}
.lang-picker__soon {
    font-family: "Playfair Display", "BIZ UDMincho", serif;
    font-style: italic;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: #B08D57;
    opacity: 0.85;
}

/* ============================================
   v13.2: WHY NOW 「MIRAGE IIの特長」 リスト
   旧 .whynow-copy__lead / __main 流し込み文を 2 項目カードに置換
   ============================================ */
.whynow-features__title {
    font-family: var(--font-ja-serif), "BIZ UDMincho", serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #761e3b;
    text-align: center;
    letter-spacing: 0.1em;
    margin: 0 auto 6px;
    padding: 0;
    position: relative;
}
.whynow-features__title::after {
    content: "";
    display: block;
    width: 56px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #B08D57 50%, transparent 100%);
    /* v13.4: 見出し→1枚目カードの間を詰める (30 → 16px) */
    margin: 12px auto 16px;
}
.whynow-features {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    /* v13.4: PC で 02 を 1 行に収めるため拡幅 (720 → 920px) */
    max-width: 920px;
}
.whynow-features__item {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 22px 28px;
    margin: 0 0 16px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(176, 141, 87, 0.32);
    border-radius: 4px;
    box-shadow: 0 4px 18px -8px rgba(118, 30, 59, 0.08);
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
                box-shadow 0.4s ease,
                border-color 0.4s ease;
}
.whynow-features__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px -10px rgba(118, 30, 59, 0.18);
    border-color: rgba(176, 141, 87, 0.6);
}
.whynow-features__item:last-child {
    margin-bottom: 0;
}
.whynow-features__num {
    flex-shrink: 0;
    font-family: "Playfair Display", "BIZ UDMincho", serif;
    font-style: italic;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1;
    color: #B08D57;
    letter-spacing: 0;
    width: 56px;
    text-align: center;
    border-right: 1px solid rgba(176, 141, 87, 0.3);
    padding-right: 18px;
}
.whynow-features__text {
    font-family: var(--font-ja-serif);
    font-size: 1.08rem;
    /* v13.4: アピール強化 — ブランド deep wine + bold */
    color: #761e3b;
    font-weight: 600;
    line-height: 1.85;
    letter-spacing: 0.04em;
    margin: 0;
    text-align: left;
    flex: 1;
    /* v13.3.1: 行末孤立(「スキンケア」など)を回避 */
    text-wrap: balance;
    word-break: keep-all;
    overflow-wrap: anywhere;
}
/* 法的注釈の余白を強める */
.whynow-copy .whynow-copy__note {
    /* v13.4: もっと空ける (36 → 64px)。.whynow-copy p の margin:0 !important を上書き */
    margin-top: 64px !important;
    padding-top: 0;
}

/* v13.4: PC のみ — whynow-copy 幅を拡げて features を 920px まで使えるように */
@media screen and (min-width: 1025px) {
    .whynow-copy {
        width: 96%;
    }
}

/* ============================================
   v13.2: PARTNER channel カード枠化
   editorial の余白感は維持、フレームを明示して FAQ 並みのコントラスト
   ============================================ */
.partner-section--editorial .partner-channel {
    background: #FFFEFB;
    border: 1px solid rgba(176, 141, 87, 0.45);
    box-shadow: 0 6px 24px -10px rgba(26, 20, 25, 0.08);
}
.partner-section--editorial .partner-channel:hover {
    border-color: var(--color-brass);
    box-shadow: 0 16px 40px -12px rgba(26, 20, 25, 0.18);
}

/* ============================================
   v13.2: PARTNER channel — 段差解消 + 改行整形
   asymmetric stagger を解除して 01/02/03 のトップを揃える
   text-wrap: balance + word-break: keep-all で「向け」など末尾孤立を抑制
   ============================================ */
@media screen and (min-width: 1025px) {
    .partner-section--editorial .partner-channels.reveal-stagger.is-visible > .partner-channel--01,
    .partner-section--editorial .partner-channels.reveal-stagger.is-visible > .partner-channel--02,
    .partner-section--editorial .partner-channels.reveal-stagger.is-visible > .partner-channel--03,
    .partner-section--editorial .partner-channel--01,
    .partner-section--editorial .partner-channel--02,
    .partner-section--editorial .partner-channel--03 {
        transform: translateY(0);
    }
    /* hover も同レベルから -6px にホップ */
    .partner-section--editorial .partner-channels.reveal-stagger.is-visible > .partner-channel--01:hover,
    .partner-section--editorial .partner-channels.reveal-stagger.is-visible > .partner-channel--02:hover,
    .partner-section--editorial .partner-channels.reveal-stagger.is-visible > .partner-channel--03:hover,
    .partner-section--editorial .partner-channel--01:hover,
    .partner-section--editorial .partner-channel--02:hover,
    .partner-section--editorial .partner-channel--03:hover {
        transform: translateY(-6px);
    }
    /* 行末孤立対策: 短いタイトル/サブを均等折り返しに */
    .partner-section--editorial .partner-channel__title,
    .partner-section--editorial .partner-channel__sub {
        text-wrap: balance;
        word-break: keep-all;
        overflow-wrap: anywhere;
    }
    /* タイトルの最低高(2行ぶん)で 01/02/03 のベースラインを揃える */
    .partner-section--editorial .partner-channel__title {
        min-height: 2.8em;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .partner-section--editorial .partner-channel__sub {
        min-height: 1.4em;
    }
}


/* ============================================
   v13.10: LINE 友だち追加 フローティングボタン
   PC/SP 共通で右下に固定、TOPへボタン(#page-top)の上に積層
   ============================================ */
.line-float {
    position: fixed;
    right: 12px;
    bottom: 90px; /* #page-top の上に配置(TOPへ ≒ bottom 10px + 高さ ~50px) */
    z-index: 9997;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: 64px;
    height: 80px;
    padding: 8px 6px;
    background: #06C755; /* LINE 公式ブランドカラー */
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 6px 18px -4px rgba(6, 199, 85, 0.45),
                0 4px 12px rgba(0, 0, 0, 0.18);
    font-family: var(--font-ja-serif), "Noto Serif JP", serif;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.04em;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1),
                box-shadow 0.3s ease,
                background 0.3s ease;
}
.line-float:hover,
.line-float:focus {
    transform: translateY(-3px);
    background: #05B14B;
    box-shadow: 0 12px 28px -4px rgba(6, 199, 85, 0.55),
                0 6px 14px rgba(0, 0, 0, 0.22);
    color: #fff;
    outline: none;
}
.line-float__logo {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    display: block;
}
.line-float__text {
    display: block;
}
@media screen and (max-width: 1024px) {
    .line-float {
        right: 8px;
        bottom: 78px;
        width: 56px;
        height: 72px;
        font-size: 0.62rem;
        gap: 2px;
        padding: 6px 4px;
    }
    .line-float__logo {
        width: 26px;
        height: 26px;
    }
}

/* ============================================
   v13.11: 統一サイトフッター (.site-footer)
   JA TOP からも使用するため root の style.css にも複製
   ============================================ */
.site-footer {
    background: #8B3A55;
    color: rgba(255, 255, 255, 0.92);
    padding: 56px 5% 28px;
    font-family: var(--font-ja-serif), "BIZ UDMincho", "Noto Serif JP", serif;
    font-size: 0.85rem;
    line-height: 1.85;
    letter-spacing: 0.04em;
}
.site-footer * { box-sizing: border-box; }
.site-footer__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
}
.site-footer__brand-block { display: flex; flex-direction: column; gap: 10px; }
.site-footer__brand {
    font-family: "Playfair Display", "BIZ UDMincho", serif;
    font-size: 1.4rem;
    letter-spacing: 0.18em;
    color: #fff;
    margin: 0;
    font-weight: 500;
}
.site-footer__brand span { font-size: 0.78em; }
.site-footer__tagline {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.86);
    margin: 0;
    line-height: 1.7;
    /* v13.16: 日本語の途中で分断しない(「エイジングケ/ア」防止)*/
    word-break: keep-all;
    overflow-wrap: anywhere;
}
.site-footer__company {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.72);
    margin-top: 8px;
    line-height: 1.6;
}
.site-footer__col-title {
    font-family: "Playfair Display", serif;
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.78);
    text-transform: uppercase;
    margin: 0 0 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}
.site-footer__links {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.site-footer__links li { margin: 0; }
.site-footer__links a {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.82rem;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}
.site-footer__links a:hover {
    color: #fff;
    padding-left: 4px;
}
.site-footer__notes {
    max-width: 1100px;
    margin: 40px auto 0;
    padding: 22px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 0.7rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.78);
    text-align: left;
}
.site-footer__notes p { margin: 0 0 6px; color: rgba(255, 255, 255, 0.78); }
.site-footer__notes p:last-child { margin: 0; }
.site-footer__bottom {
    max-width: 1100px;
    margin: 24px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.74);
}
.site-footer__bottom a {
    color: rgba(255, 255, 255, 0.85);
    margin-right: 14px;
    text-decoration: none;
}
.site-footer__bottom a:hover { color: #fff; }
@media (max-width: 768px) {
    .site-footer { padding: 44px 5% 22px; }
    .site-footer__inner { grid-template-columns: 1fr; gap: 28px; }
    .site-footer__bottom {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }
    .site-footer__bottom a { margin: 0 8px; }
}

/* ============================================================
   v13.19: グローバルヘッダー (JA TOP のみ)
   サブページと UX 統一。PC で水平ナビ、SP では非表示
   (SP ではドロワー内の既存ナビ #nav-content を使用)
   .header-top プリフィックスで既存セレクタとの衝突を回避
   ============================================================ */
.header-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: rgba(251, 232, 236, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #F0D0D8;
    transition: background 0.3s ease;
}
.header-top__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-top__logo {
    font-family: var(--font-en);
    font-size: 1.15rem;
    letter-spacing: 0.15em;
    color: #3A2A2E !important;
    font-weight: 500;
    text-decoration: none;
}
.header-top__logo span {
    font-size: 0.85em;
}
.header-top__logo:hover {
    color: #761e3b !important;
    opacity: 1;
}
.header-top__nav {
    display: flex;
    align-items: center;
}
.header-top__list {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.header-top__list li {
    margin: 0;
    padding: 0;
}
.header-top__link {
    font-family: var(--font-ja-serif);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    color: #3A2A2E !important;
    text-decoration: none;
    padding: 6px 2px;
    position: relative;
    transition: color 0.2s ease;
}
.header-top__link:hover {
    color: #761e3b !important;
    opacity: 1;
}
.header-top__link[aria-current="page"] {
    color: #761e3b !important;
    font-weight: 600;
}
.header-top__link[aria-current="page"]::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 1.5px;
    background: #C9A96E;
}

/* lang-picker (サブページから移植 — 同一クラス名で挙動も同等) */
.header-top__lang {
    margin-left: 8px;
    padding-left: 18px;
    border-left: 1px solid rgba(118, 30, 59, 0.18);
}
.header-top .lang-picker {
    position: relative;
    font-family: var(--font-ja-serif);
}
.header-top .lang-picker__toggle {
    background: transparent;
    border: 1px solid rgba(118, 30, 59, 0.22);
    border-radius: 18px;
    padding: 5px 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: #3A2A2E;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.header-top .lang-picker__toggle:hover,
.header-top .lang-picker__toggle:focus-visible {
    border-color: #C9A96E;
    background: rgba(255, 255, 255, 0.5);
}
.header-top .lang-picker__icon-globe {
    color: #B08D57;
    flex-shrink: 0;
}
.header-top .lang-picker__current {
    letter-spacing: 0.14em;
}
.header-top .lang-picker__icon-chevron {
    color: #6E5A5F;
    transition: transform 0.2s ease;
}
.header-top .lang-picker__toggle[aria-expanded="true"] .lang-picker__icon-chevron {
    transform: rotate(180deg);
}
.header-top .lang-picker__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 200px;
    background: #fff;
    border: 1px solid #F0D0D8;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(118, 30, 59, 0.12);
    list-style: none;
    margin: 0;
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 1001;
}
.header-top .lang-picker__toggle[aria-expanded="true"] + .lang-picker__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.header-top .lang-picker__menu li {
    margin: 0;
    padding: 0;
    list-style: none;
}
.header-top .lang-picker__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 14px;
    font-size: 0.78rem;
    color: #3A2A2E;
    border-bottom: 1px solid rgba(240, 208, 216, 0.5);
}
.header-top .lang-picker__menu li:last-child .lang-picker__item {
    border-bottom: none;
}
.header-top .lang-picker__item .lang-picker__name {
    font-weight: 500;
}
.header-top .lang-picker__item .lang-picker__name[lang="en"] {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0.12em;
}
.header-top .lang-picker__item .lang-picker__name[lang="ko"] {
    font-family: "Noto Serif KR", "BIZ UDMincho", serif;
}
.header-top .lang-picker__item .lang-picker__name[lang="zh-CN"] {
    font-family: "Noto Serif SC", "BIZ UDMincho", serif;
}
.header-top .lang-picker__item .lang-picker__name[lang="fr"] {
    font-family: "Playfair Display", "Noto Serif", serif;
    font-style: italic;
}
.header-top .lang-picker__item.is-active {
    color: #761e3b;
    font-weight: 600;
}
.header-top .lang-picker__item.is-active .lang-picker__check {
    color: #C9A96E;
}
.header-top .lang-picker__item.is-disabled {
    color: #9E8A8F;
    cursor: not-allowed;
}
.header-top .lang-picker__soon {
    font-size: 0.66rem;
    color: #B08D57;
    letter-spacing: 0.06em;
}

/* SP/タブレット: 水平ナビを隠してドロワー(既存)に委譲。
   ヘッダー自体も非表示にして、既存 #nav-open ハンバーガーが
   ページ全体の上に浮く従来 UX を完全維持する */
@media (max-width: 1024px) {
    .header-top {
        display: none;
    }
}

/* PC: 固定ヘッダー分 body を押し下げ。SP では @media で打ち消し */
@media (min-width: 1025px) {
    body#to-top {
        padding-top: 60px;
    }
    /* 既存ハンバーガー (#nav-open) は PC では水平ナビと干渉するので非表示 */
    #nav-open {
        display: none !important;
    }
}

/* ============================================================
   v13.22: News Banner (JA TOP — カンヌコラボ告知バナー)
   ヒーロー直下に配置。フルブリード画像 + 暗オーバーレイ + 中央寄せテキスト
   ============================================================ */
.news-banner {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #2C1A1F;
}
.news-banner__link {
    display: block;
    position: relative;
    width: 100%;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}
.news-banner__link:hover {
    color: #fff;
    opacity: 1;
}
.news-banner__bg {
    display: block;
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center 40%;
    transition: transform 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.news-banner__link:hover .news-banner__bg {
    transform: scale(1.04);
}
.news-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(28, 12, 18, 0.45) 0%,
        rgba(118, 30, 59, 0.55) 60%,
        rgba(28, 12, 18, 0.78) 100%
    );
    pointer-events: none;
}
.news-banner__inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px 5%;
    z-index: 2;
}
.news-banner__meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-en);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    color: #C9A96E;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.news-banner__category {
    padding: 4px 12px;
    border: 1px solid rgba(201, 169, 110, 0.6);
    border-radius: 2px;
    color: #C9A96E;
}
.news-banner__divider {
    color: rgba(255, 255, 255, 0.5);
}
.news-banner__date {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}
.news-banner__title {
    font-family: var(--font-ja-serif);
    font-size: clamp(1.05rem, 2.4vw, 1.5rem);
    font-weight: 600;
    line-height: 1.55;
    letter-spacing: 0.05em;
    margin: 0 0 12px;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.news-banner__excerpt {
    font-family: var(--font-ja-serif);
    font-size: clamp(0.78rem, 1.4vw, 0.9rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 18px;
    max-width: 720px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}
.news-banner__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 26px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.7);
    border-radius: 2px;
    font-family: var(--font-en);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    color: #fff;
    text-transform: uppercase;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.news-banner__link:hover .news-banner__cta {
    background: rgba(201, 169, 110, 0.18);
    border-color: #C9A96E;
    transform: translateY(-1px);
}

/* SP 768px 以下: 画像高さ・テキストスケール調整 */
@media (max-width: 768px) {
    .news-banner__bg {
        height: 380px;
    }
    .news-banner__br-pc {
        display: none;
    }
    .news-banner__title {
        font-size: 1rem;
        letter-spacing: 0.04em;
    }
    .news-banner__excerpt {
        font-size: 0.76rem;
        line-height: 1.7;
    }
    .news-banner__cta {
        padding: 9px 22px;
        font-size: 0.72rem;
    }
}

/* ============================================================
   v13.22: ハンバーガーメニュー再編
   セクションアンカー群とサイト横断ナビをグループ分け
   ============================================================ */
.nav-section-heading {
    margin: 6px 16px 4px;
    padding: 12px 16px 6px;
    font-family: var(--font-en);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #C8607A;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.nav-section-heading__en {
    color: #C8607A;
    opacity: 0.85;
}
.nav-section-heading__ja {
    font-family: var(--font-ja-serif);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: #761e3b;
    text-transform: none;
}
.nav-section-list {
    padding: 0 16px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    list-style: none;
}
/* 既存 #nav-content ul li / a スタイルが両グループに適用される.
   新規 list でも同じ rule を流用するため、追加のセレクタ拡張で対応 */
#nav-content .nav-section-list li {
    list-style: none;
    margin: 0;
    padding: 0;
}
#nav-content .nav-section-list li a {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px 16px;
    border-radius: 10px;
    color: #3b2025;
    text-decoration: none;
    transition: background 0.2s ease;
}
#nav-content .nav-section-list li a:hover,
#nav-content .nav-section-list li a:active {
    background: rgba(200, 96, 122, 0.08);
}

/* ページ群(サブページ): 日本語のみ表示なので少しだけリッチに */
.nav-section-list--pages li a {
    padding: 14px 16px !important;
}
.nav-ja-only {
    font-family: var(--font-ja-serif);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: #3b2025;
    line-height: 1.4;
}

/* グループ間の罫線 */
.nav-section-divider {
    margin: 12px 24px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(200, 96, 122, 0.28) 50%,
        transparent 100%
    );
}

/* ============================================================
   v13.23: 多言語実装に伴う lang-picker 拡張
   ============================================================ */
/* 简体中文・Français に対応するフォント指定 */
.lang-picker__item .lang-picker__name[lang="zh-CN"] {
    font-family: "Noto Serif SC", "BIZ UDMincho", "Noto Serif JP", serif;
}
.lang-picker__item .lang-picker__name[lang="fr"] {
    font-family: "Playfair Display", "BIZ UDMincho", serif;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0.08em;
}
/* English active link: クリック可能な状態のホバー */
a.lang-picker__item {
    color: #3A2A2E;
    transition: background 0.2s ease, color 0.2s ease;
}
a.lang-picker__item:hover,
a.lang-picker__item:focus-visible {
    background: rgba(176, 141, 87, 0.10);
    color: #761e3b;
    opacity: 1;
}

/* ============================================================
   v14.17: br.sp / br.pc ユーティリティクラス + .nowrap
   - br.sp: SP のみで改行 (PC では非表示)
   - br.pc: PC のみで改行 (SP では非表示)
   - .nowrap: 改行禁止スコープ
   ============================================================ */
br.sp { display: none; }
br.pc { display: inline; }
.nowrap { white-space: nowrap; }
@media (max-width: 768px) {
  br.sp { display: inline; }
  br.pc { display: none; }
}

/* v14.17: VOICE タイトル PC で 1 行確保(em が inline-block で shrink-to-fit するため、
   改行可能位置「、」で 2 行に折り返されるのを防ぐ)*/
@media (min-width: 769px) {
  section.homebox001 ul li p em { white-space: nowrap; }
}
