
/* ------------------------------------- */
/* ** メイン ** */
/* ------------------------------------- */

@media screen and (max-width: 768px) {
    main {
        padding: 0;
    }
}
.main-visual {
    position: relative;
    width: 100%;
    height: 90vh; 
    overflow: hidden; 
}

.main-visual__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; 
}

.main-visual__image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    object-position: center top;
}

.main-visual__content {
    position: absolute; 
    top: 20%;
    right: 10%;
    color: #fff; 
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4); /* テキストを見やすくするための影 */ 
    z-index: 10; /* 画像より手前に表示 */ 
}

@media (max-width: 768px) { /* 変数置き換え */
    .main-visual__content {
        top: 15%; 
        right: auto; 
        left: 50%; 
        transform: translateX(-50%); 
        text-align: center; 
    }
}

.main-visual__catchphrase {
    font-size: 1.2rem; 
    margin-bottom: 5px; 
    font-weight: 300; 
    letter-spacing: 0.1em; 
}

@media (max-width: 768px) { /* 変数置き換え */
    .main-visual__catchphrase {
        font-size: 1rem; 
    }
}

.main-visual__title {
    font-size: 2.5rem; 
    font-weight: 700; 
    line-height: 1.2; 
    margin: 0; 
}

@media (max-width: 768px) { /* 変数置き換え */
    .main-visual__title {
        font-size: 1.8rem; 
    }
}

/* ------------------------------------- */
/* ギャラリーセクション */
/* ------------------------------------- */
.gallery-scroll-section-slick {
    background-color: #333;
    padding: 60px 0;
    overflow: hidden;
}

.gallery-container-slick {
    position: relative;
    /* スライダー全体を画面幅いっぱいにするため、max-widthは不要 */
}

/* ------------------------------------- */
/* 1. 中央固定カード (最前面に配置) */
/* ------------------------------------- */
.gallery-fixed-card-slick {
    position: absolute;
    left: 50%;
    top: 70%;
    transform: translate(-50%, -50%);
    z-index: 20; /* スライダー（z-index: 10）より上にする */
    width: 400px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    padding: 40px 20px;
    text-align: center;
    
    /* (ロゴやテキストのスタイルは省略、前回のものを使用) */

    @media (max-width: 768px) {
        width: 80%;
          top: 80%;
    }
}

/* ------------------------------------- */
/* 2. スライダー本体 (背景として使用) */
/* ------------------------------------- */
.slider {
    /* 中央カードの高さに合わせてスライダーの高さを設定 */
    height: 450px; 
    @media (max-width: 768px) {
        height: 350px;
    }
}

.slider .slide-item img {
    width: 100%;
    object-fit: cover;
    @media (max-width: 768px) {
        height: 150px;
    }
}


/* ------------------------------------- */
/* STORYセクション (標準/反転共通) */
/* ------------------------------------- */
.story-section {
    background-color: #111;
    padding: 100px 0;
    color: #f5f5f5;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    /* PCでは両カラムを均等に配置 */
    align-items: center; 
    padding: 0 40px;

    /* SPでは縦に並べる */
    @media (max-width: 768px) {
        flex-direction: column;
        padding: 0 20px;
    }
}

/* ------------------------------------- */
/* 左側のテキストエリア (40%) */
/* ------------------------------------- */
.story-content-left {
    flex: 0 0 40%; /* 40%幅に固定 */
    padding-right: 80px;
    
    @media (max-width: 768px) {
        flex: 1 1 100%;
        width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }
}

.story-heading {
    font-family: serif;
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    margin: 0 0 10px 0;
    color: #C0A278; /* 見出しはゴールド */
    
    @media (max-width: 768px) {
        font-size: 2rem;
    }
}

.story-divider {
    width: 80px;
    height: 1px;
    background-color: #C0A278;
    border: none;
    margin: 0 0 120px 0;
    text-align: left;
    
    @media (max-width: 768px) {
        margin-bottom: 30px;
    }
}

.story-block {
   text-align: start;
}

.story-pre-title {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: #666;
    margin-bottom: 10px;
}

.story-number {
    font-size: 3rem;
    font-weight: 200;
    color: #C0A278;
    margin-bottom: 10px;
    line-height: 1;
}

.story-title {
    font-family: serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #C0A278;
}

.story-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 20px;
}

.story-text {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #aaa;
    margin-bottom: 40px;
    padding-right: 10%;
    
    @media (max-width: 768px) {
        padding-right: 0;
    }
}

.story-link {
    display: inline-block;
    color: #C0A278;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    padding: 10px 0;
    border-bottom: 1px solid #C0A278;
    transition: color 0.3s, border-color 0.3s;
    
    &:hover {
        color: lighten(#C0A278, 10%);
        border-color: lighten(#C0A278, 10%);
    }
}

/* ------------------------------------- */
/* 右側の画像エリア (60%) */
/* ------------------------------------- */
.story-image-right {
    flex: 0 0 60%; /* 60%幅に固定 */
    position: relative; /* 子要素のabsolute基準 */
    width: 100%;
    
    @media (max-width: 768px) {
        flex: 1 1 100%;
        /* SPでは画像幅を画面幅いっぱいに近づける */
        width: calc(100% + 40px); 
        margin-left: -20px;
        margin-right: -20px;
    }
}

.story-main-image-wrapper {
    /* 画像のアスペクト比を保持するためのラッパー */
    padding-bottom: 85%; /* 高さの比率調整（例：幅の65%の高さ） */
    position: relative;
    overflow: hidden;
    
    @media (max-width: 768px) {
        padding-bottom: 130%; /* SPでは正方形に近づける */
    }
}

.story-main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ------------------------------------- */
/* 画像上の白いオーバーレイカード */
/* ------------------------------------- */
.story-overlay-card {
    position: absolute;
    /* 添付画像の位置を参考に調整 */
    top: 15%; 
    left: 40%;
    transform: translateX(-50%);
    z-index: 10;
    
    width: 45%;
    height: 80%;
    background-color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    
    display: flex;
    justify-content: center;
    align-items: center;

    @media (max-width: 768px) {
        top: 10%;
        left: 35%;
        width: 50%;
        height: 70%;
    }
}

.overlay-text {
    font-family: cursive; /* 手書き風のフォントイメージ */
    font-size: 1.5rem;
    color: #444;
    line-height: 1.5;
    text-align: center;
    transform: rotate(-5deg); /* 斜めに傾ける */
    
    @media (max-width: 768px) {
        font-size: 1rem;
    }
}

.story-section.story-standard {
    background-color: #111;
    padding: 100px 0;
    color: #f5f5f5;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center; 
    padding: 0 40px;

    /* SPでは縦に並べる (この順序が「文字→画像」の標準順となる) */
    @media (max-width: 768px) {
        flex-direction: column;
        padding: 0 20px;
    }
}


.story-section.story-reverse-fixed {
    background-color: #111;
    padding: 100px 0;
    color: #f5f5f5;
}

.reverse-fixed-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center; 
    padding: 0 40px;
    
    /* ***** 左右反転を固定する設定 ***** */
    flex-direction: row-reverse; 

    /* SPでは縦に並べる（テキストが上、画像が下） */
    @media (max-width: 768px) {
        flex-direction: column;
        padding: 0 20px;
    }
}

/* ------------------------------------- */
/* 右側のテキストエリア (40%) */
/* ------------------------------------- */
.story-content-right {
    /* 40%幅に固定 */
    flex: 0 0 40%; 
    padding-left: 80px; /* 左側に十分な余白 */
    padding-right: 0;
    text-align: right; /* テキスト全体を右寄せに */
    
    @media (max-width: 768px) {
        flex: 1 1 100%;
        width: 100%;
        padding-left: 0;
        margin-bottom: 40px;
        text-align: left; /* SPでは左寄せに戻す */
    }
}

/* 見出し、区切り線、文章などの配置調整 */
.story-content-right .story-heading {
    text-align: start;
}

.story-content-right .story-divider {
    width: 80px;
    height: 1px;
    background-color: #C0A278;
    border: none;
    margin: 0 0 120px 0;
    /* 区切り線を右寄せに */
    
    @media (max-width: 768px) {
        margin-bottom: 30px;
        margin-left: 0; /* SPでは左寄せに戻す */
    }
}

.story-content-right .story-text {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #aaa;
    margin-bottom: 40px;
    
    @media (max-width: 768px) {
        padding-left: 0;
    }
}

.story-content-right .story-link {
    /* 右寄せのため特に変更なし */
}


/* ------------------------------------- */
/* 左側の画像エリア (60%) */
/* ------------------------------------- */
.story-image-left {
    /* 60%幅に固定 */
    flex: 0 0 60%; 
    position: relative;
    width: 100%;
    
    @media (max-width: 768px) {
        flex: 1 1 100%;
        /* SPで画像を画面幅いっぱいに広げるための調整 */
        width: calc(100% + 40px); 
        margin-left: -20px;
        margin-right: -20px;
        /* SPでの画像の順序をテキストの下にするため */
        order: 2; 
    }
}

.story-image-left .story-main-image-wrapper {
    padding-bottom: 85%;
    position: relative;
    overflow: hidden;
    
    @media (max-width: 768px) {
        padding-bottom: 130%;
    }
}

.story-image-left .story-main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ------------------------------------- */
/* アンバサダーセクション */
/* ------------------------------------- */
.ambassador-section {
    background-color: #f8f8ff; /* 変数置き換え */ 
    padding: 100px 0; 
    color: #000000; /* 変数置き換え */ 
    overflow: hidden; /* 画像がはみ出す可能性に対応 */ 
}

.ambassador-container {
    max-width: 1000px; /* 広めのレイアウト */ 
    margin: 0 auto; 
    display: flex; 
    /* 画像とテキストの縦方向の中央揃えを維持 */ 
    align-items: center; 
    padding: 0 40px; 
}

@media (max-width: 768px) { /* 変数置き換え */
    .ambassador-container {
        flex-direction: column; 
        padding: 0 20px; 
    }
}

/* 左側のテキストエリア (縦タイトル含む) */
.ambassador-text-content {
    flex: 1; /* 柔軟に幅を確保 */ 
    display: flex; /* 縦タイトルとプロフィールの配置のためにflexを使用 */ 
    padding-right: 80px; 
}

@media (max-width: 768px) { /* 変数置き換え */
    .ambassador-text-content {
        padding-right: 0; 
        margin-bottom: 40px; 
        width: 100%; 
    }
}

/* 縦書きの「ABOUT」タイトル */
.vertical-title-wrapper {
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: flex-start; /* 上端から配置 */ 
    margin-right: 30px; 
}

@media (max-width: 768px) { /* 変数置き換え */
    .vertical-title-wrapper {
        display: none; /* SPでは縦タイトルを非表示にするか、別途デザインを検討 */ 
    }
}

.vertical-title {
    writing-mode: vertical-rl; /* 縦書き（右から左へ） */ 
    text-orientation: upright; /* 文字を縦に配置 */ 
    font-family: serif; 
    font-size: 1.5rem; 
    font-weight: 300; 
    letter-spacing: 0.8em; 
    padding-bottom: 20px; 
    color: white;
    background-color: black;
}

.vertical-line {
    width: 1px; 
    height: 100%; 
    background-color: #f5f5f5; /* 変数置き換え: $color-text */ 
}

/* プロフィール詳細 */
.profile-details {
    flex-grow: 1; 
}

.profile-name {
    font-size: 2rem; 
    font-weight: 300; 
    letter-spacing: 0.1em; 
    margin: 0 0 5px 0; 
}

@media (max-width: 768px) { /* 変数置き換え */
    .profile-name {
        font-size: 1.5rem; 
    }
}

.profile-divider {
    width: 100px; 
    height: 1px; 
    background-color: #f5f5f5; /* 変数置き換え: $color-text */ 
    border: none; 
    margin: 10px 0 30px 0; 
    text-align: left; 
}

.profile-ja {
    font-size: 0.95rem; 
    line-height: 1.8; 
    margin-bottom: 40px; 
}

.profile-en {
    font-size: 0.8rem; 
    line-height: 1.8; 
    color: #ccc; 
}

/* 右側の画像エリア */
.ambassador-image-right {
    flex: 0 0 300px; /* 画像の最大幅を固定（添付画像に合わせて大きめに） */ 
    width: 50%; 
    position: relative; 
}

@media (max-width: 768px) { /* 変数置き換え */
    .ambassador-image-right {
        flex: 1 1 100%; 
        width: 100%; 
        /* SPで画像を右端に寄せるための調整（任意） */ 
        margin-right: -20px; 
    }
}

.ambassador-photo {
    display: block; 
    width: 90%; 
    height: auto; 
    object-fit: cover; 
    
    /* 画像を下にずらして見せるための設定 (任意) */ 
    transform: translateY(20px); 
}

@media (max-width: 768px) {
    .ambassador-photo {
          width: 60%; 
        transform: translateY(0); 
        margin: 0 auto; 
    }
}


/* ------------------------------------- */
/* シチュエーションセクション */
/* ------------------------------------- */
.situation-section {
    width: 100%; 
    /* 高さはコンテンツに合わせる */ 
    min-height: 600px; 
}

.situation-container {
    display: flex; 
    width: 100%; 
    min-height: inherit; 
}

@media (max-width: 768px) { /* 変数置き換え */
    .situation-container {
        flex-direction: column; 
    }
}

/* 左側の固定テキストエリア (約40%幅) */
.situation-text-left {
    /* flex: 0 0 40%; */ /* コメントアウトされているが、幅を固定する意図なら復元を推奨 */ 
    background-color: #878065; /* 変数置き換え: $color-bg-left */ 
    color: #fff; /* 変数置き換え: $color-text-left */ 
    padding: 100px 40px; 
}

@media (max-width: 768px) { /* 変数置き換え */
    .situation-text-left {
        flex: 1 1 100%; 
        padding: 60px 20px; 
    }
}

.situation-pre-title {
    font-size: 0.8rem; 
    letter-spacing: 0.2em; 
    margin-bottom: 10px; 
}

.situation-title {
    font-size: 2.5rem; 
    font-weight: 700; 
    line-height: 1.4; 
    margin-bottom: 40px; 
}

@media (max-width: 768px) { /* 変数置き換え */
    .situation-title {
        font-size: 2rem; 
    }
}

.situation-description p {
    font-size: 0.9rem; 
    line-height: 1.8; 
    /* color: rgba($color-text-left, 0.85); */
    color: rgba(255, 255, 255, 0.85); /* 変数置き換え */ 
}

/* 右側のスライダーエリア (約60%幅) */
.situation-slider-right {
    flex: 1; /* 残りの幅をすべて使用 */ 
    position: relative; 
    padding: 60px 0; /* 上下の余白 */ 
    overflow: hidden; /* スライダーを隠す */ 
    background-color: #fff; 
}

@media (max-width: 768px) { /* 変数置き換え */
    .situation-slider-right {
        padding: 40px 0; 
    }
}

/* スライダー本体のスタイル */
.situation-slider {
    display: flex; 
    /* スクロールを許可し、JavaScriptで操作 */ 
    overflow-x: scroll; 
    -webkit-overflow-scrolling: touch; 
    scroll-behavior: smooth; 
    
    /* スクロールバーを非表示 */ 
    scrollbar-width: none; 
}

.situation-slider::-webkit-scrollbar { /* 親セレクタ参照を解除 */
    display: none; 
}

/* スライドアイテム */
.slide-item {
    flex-shrink: 0; 
    width: 450px; /* スライドアイテムの幅 */ 
    margin-right: 30px; 
    position: relative; 
}

/* 最初のアイテムの左側の余白 (添付画像を再現) */
.slide-item:first-child { /* 親セレクタ参照を解除 */
    margin-left: 60px; 
}

@media (max-width: 768px) { /* 変数置き換え */
    .slide-item:first-child {
        margin-left: 20px; 
    }
    
    .slide-item {
        width: 80vw; /* SPでは画面幅の80% */ 
        margin-right: 20px; 
    }
}

.slide-image-wrapper {
    overflow: hidden; 
    margin-bottom: 15px; 
}

@media (max-width: 768px) { /* 変数置き換え */
    .slide-image-wrapper {
        height: 350px; 
    }
}

.slide-image {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

/* ナンバーとキャプション */
.slide-number {
    position: absolute; 
    top: -20px; /* 画像の外に配置 */ 
    left: 10px; 
    font-size: 2.5rem; 
    font-weight: 200; 
    /* color: rgba($color-text-right, 0.8); */
    color: rgba(68, 68, 68, 0.8); /* 変数置き換え */ 
    z-index: 5; 
}

.slide-caption-ja {
    font-size: 1rem; 
    font-weight: 600; 
    color: #444; /* 変数置き換え: $color-text-right */ 
    margin-bottom: 5px; 
}

.slide-caption-en {
    font-size: 0.7rem; 
    letter-spacing: 0.1em; 
    color: #999; 
}

/* スライダー操作ボタン */
.slider-arrow {
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); 
    background: rgba(255, 255, 255, 0.8); 
    border: 1px solid #ccc; 
    border-radius: 50%; 
    width: 40px; 
    height: 40px; 
    cursor: pointer; 
    z-index: 10; 
    padding: 0; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
}

.slider-arrow svg { /* ネスト解除 */
    fill: #333; 
    width: 20px; 
    height: 20px; 
}

.slider-arrow.prev {
    left: 40%; /* 左側ブロックの幅を超えた位置に配置 */ 
    margin-left: -20px; /* ボタンの半分を戻す */ 
}

@media (max-width: 768px) { /* 変数置き換え */
    .slider-arrow.prev {
        left: 20px; /* SPでは画面左端からの位置に配置 */ 
    }
}

.slider-arrow.next {
    right: 30px; 
}

@media (max-width: 768px) { /* 変数置き換え */
    .slider-arrow.next {
        right: 20px; 
    }
}


/* ------------------------------------- */
/* フォトグラファー紹介セクション */
/* ------------------------------------- */
.photographer-section {
    background-color: #fff; /* 変数置き換え: $color-bg */ 
    padding: 80px 40px; 
    color: #333; /* 変数置き換え: $color-text-main */ 
}

@media (max-width: 768px) { /* 変数置き換え */
    .photographer-section {
        padding: 60px 20px; 
    }
}

.photographer-container {
    max-width: 1000px; 
    margin: 0 auto; 
    display: flex; 
    justify-content: space-between; 
    gap: 40px; /* カード間のスペース */ 
}

@media (max-width: 768px) { /* 変数置き換え */
    .photographer-container {
        /* SPでは縦に積み重ねる */ 
        flex-direction: column; 
        gap: 60px; 
    }
}

.photographer-card {
    flex: 1 1 48%; /* 2枚並べるために約48%ずつ確保 */ 
    max-width: 500px; /* 念のため最大幅を設定 */ 
}

/* 役職 (英文) */
.card-pre-title {
    font-size: 1rem; 
    font-weight: 500; 
    letter-spacing: 0.15em; 
    text-align: left; 
    margin-bottom: 5px; 
}

/* 写真 */
.card-photo-wrapper {
    width: 100%; 
    /* 写真部分の縦横比を調整 */ 
    padding-bottom: 70%; 
    position: relative; 
    overflow: hidden; 
    margin-bottom: 30px; 
}

.card-photo {
    position: absolute; 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

/* 名前と役職（日本語） */
.card-name-box {
    margin-bottom: 30px; 
}

.name-en {
    font-size: 0.8rem; 
    font-weight: 300; 
    letter-spacing: 0.1em; 
    margin: 0; 
    color: #666; /* 変数置き換え: $color-text-sub */ 
}

.name-ja {
    font-size: 1.6rem; 
    font-weight: 600; 
    margin: 5px 0 10px 0; 
}

.title-ja {
    font-size: 0.9rem; 
    font-weight: 400; 
    letter-spacing: 0.1em; 
    padding-bottom: 10px; 
    border-bottom: 1px solid #ccc; /* 変数置き換え: $color-divider */ 
    width: 150px; /* 区切り線の幅を調整 */ 
    margin: 0 auto; 
   text-align: center;
}

/* 紹介文 */
.card-description {
    text-align: left; 
}

.card-description p { /* ネスト解除 */
    font-size: 0.9rem; 
    line-height: 1.8; 
    color: #666; /* 変数置き換え: $color-text-sub */ 
}
  
/* ------------------------------------- */
/* プラン紹介セクション (黒背景・白文字) */
/* ------------------------------------- */

/* ------------------------------------- */
/* プラン紹介セクション (添付画像デザイン準拠) */
/* ------------------------------------- */

.plan-section {
    background-color: #111; /* 背景色を黒に固定 */
    padding: 100px 20px;
}

.plan-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 40px;
}

@media (max-width: 768px) {
    .plan-container {
        flex-direction: column;
        gap: 60px;
        max-width: 450px;
    }
}
span.plan-title-full {
    font-size: 1.8rem;
  font-weight: 600;
}
span.plan-title-half {
    font-size: 1.8rem;
  font-weight: 600;
}
.plan-card {
    flex: 1 1 45%;
    max-width: 500px;
    color: #fff; /* 文字色を白に固定 */
    padding: 0 10px;
    /* カード内の区切り線の色を明確化 */
    --line-color: #B5A394; /* 淡いゴールド/ブラウン系 */
}

/* プランヘッダー (上部の情報と価格部分の区切り線) */
.plan-header {
    font-size: 0.9rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 20px;
    padding: 0 0 15px 0;
    /* 実線 */
    border-bottom: 1px solid var(--line-color); 
}

/* タイトルと価格 */
.plan-title-box {
    text-align: center;
    margin-bottom: 30px;
}
/* ... タイトル、価格のフォントサイズなどのスタイルは変更なし ... */

.plan-price-incl {
    display: block;
    font-size: 0.9rem;
    color: #ccc; 
    margin-top: 5px;
}

/* -------------------- */
/* インクルードリストの修正 */
/* -------------------- */
.plan-include-list {
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
    
    /* リスト全体の上下を実線で囲む */
    border-top: 1px solid var(--line-color); 
    border-bottom: 1px solid var(--line-color); 
}

.include-item {
    font-size: 0.95rem;
    line-height: 1.5;
    padding: 10px 0;
    
    /* 項目間のセパレーター：画像に合わせて細い点線または破線に変更 */
    border-bottom: 1px dashed rgba(181, 163, 148, 0.5); /* ラインカラーを薄くした点線 */
}

.include-item:last-child {
    /* リストの最後の項目は下線が二重にならないように、リスト全体のborder-bottomに任せる */
    border-bottom: none; 
}

/* 注意書き */
.plan-notes {
    font-size: 0.75rem;
    line-height: 1.6;
    color: #aaa;
    padding-top: 20px;
}

@media screen and (max-width: 768px) {
    main {
        padding: 0;
    }
}
.profile-name {
    display: flex;
}
h4.name-ja{
    display: flex;
  }
.plan-main-img {
    text-align: center;
    padding: 25px 10px;
}
/* ------------------------------------- */
/* 中央固定カード (日本語コンテンツ対応) */
/* ------------------------------------- */

.gallery-fixed-card-slick {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 20; /* スライダーの上に表示 */
    background-color: #fff; /* 背景は白 */
    color: #333; /* 文字色は濃いグレー/黒 */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    padding: 40px 25px; /* 内側の余白 */
    text-align: center; /* 中央寄せ */

    display: flex; /* コンテンツの縦配置のため */
    flex-direction: column;
    justify-content: center; /* 縦方向も中央寄せ */
    align-items: center;

    @media (max-width: 750px) {
        width: 80%;
        height: 350px;
        padding: 30px 20px;
    }
}

.gallery-fixed-card__logo {
    /* 長い日本語タイトル向け */
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 25px;
    padding-bottom: 10px;
    /* タイトルの下を細いラインで区切る（任意） */
    border-bottom: 1px solid #ccc; 
    letter-spacing: 0.1em;

    @media (max-width: 750px) {
        font-size: 1rem;
        margin-bottom: 15px;
    }
}

.gallery-fixed-card__text {
    line-height: 1.8;
    color: #666; /* 本文は少し薄い色に */
    margin: 0;
  font-family: cursive; /* 手書き風のフォントイメージ */
    font-size: 0.9rem;
}
/* ------------------------------------- */
/* CTAセクション - 共通スタイル */
/* ------------------------------------- */
.cta-section {
    background-color: #111; /* 黒背景 */
    padding: 80px 20px;
    text-align: center;
}

.cta-container {
    max-width: 960px;
    margin: 0 auto;
}

.cta-heading {
    color: #f5f5f5; /* 白文字 */
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: 0.1em;
}

/* ------------------------------------- */
/* 横並び2ボタンの配置 (cta-double) */
/* ------------------------------------- */
.cta-double .cta-buttons-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
}

@media (max-width: 768px) {
    .cta-double .cta-buttons-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}
/* ------------------------------------- */
/* シングルボタンの配置 (cta-single) */
/* ------------------------------------- */
.cta-single .cta-buttons-wrapper {
    display: flex;
    justify-content: center;
}

/* ラージボタンの調整 */
.cta-lg {
    height: 140px;
    width: 100%;
    max-width: 500px; /* 最大幅を設定 */
}

.cta-lg .cta-text-main {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.cta-lg .cta-text-sub {
    font-size: 0.85rem;
}
/* ------------------------------------- */
/* ボタンの基本デザイン */
/* ------------------------------------- */
.cta-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    height: 120px;
    min-width: 280px;
    max-width: 400px;
    transition: all 0.3s ease;
    border: 1px solid transparent; /* 枠線 */
}

/* テキストスタイル */
.cta-text-main {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
}

.cta-text-sub {
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.15em;
}

/* === プライマリCTA (予約/相談) === */
.primary-cta {
    background-color: #C0A278; /* ゴールド系 */
    color: #111; /* 黒文字 */
}

.primary-cta:hover {
    background-color: #D1B898; /* ホバーで少し明るく */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(192, 162, 120, 0.4);
}

/* === セカンダリCTA (資料請求/問い合わせ) === */
.secondary-cta {
    background-color: transparent; /* 背景なし */
    color: #C0A278; /* ゴールド系の文字 */
    border: 1px solid #C0A278; /* ゴールド系の枠線 */
}

.secondary-cta:hover {
    background-color: #C0A278; /* ホバーで背景色をゴールドに */
    color: #111; /* 文字色を黒に反転 */
    transform: translateY(-2px);
}
  .insta{
  width: 100px;
    text-align: center;
  }
.insta_btn {
  display: inline-block;
  text-align: center;/*中央揃え*/
  color: #2e6ca5;/*文字色*/
  font-size: 20px;/*文字サイズ*/
  text-decoration: none;/*下線消す*/
}

.insta_btn:hover {/*ホバー時*/
  color:#668ad8;/*文字色*/
  transition: .5s;/*ゆっくり変化*/
}

.insta_btn .insta{/*アイコンの背景*/
  position: relative;/*相対配置*/
  display: inline-block;
  width: 50px;/*幅*/
  height: 50px;/*高さ*/
  background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;/*グラデーション①*/
  overflow: hidden;/*はみ出た部分を隠す*/
  border-radius: 13px;/*角丸に*/

}

.insta_btn .insta:before{/*グラデーションを重ねるため*/
  content: '';
  position: absolute;/*絶対配置*/
  top: 23px;/*ずらす*/
  left: -18px;/*ずらす*/
  width: 60px;/*グラデーションカバーの幅*/
  height: 60px;/*グラデーションカバーの高さ*/
  background: -webkit-radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
  background: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);/*グラデーション②*/
}

.insta_btn .fa-instagram {/*アイコン*/
  color: #FFF;/*白に*/
  position: relative;/*z-indexを使うため*/
  z-index: 2;/*グラデーションより前に*/
  font-size: 35px;/*アイコンサイズ*/
  line-height: 50px;/*高さと合わせる*/