@charset "UTF-8";

/* 外部リソースの読み込み */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500&family=Noto+Serif+JP:wght@300;500&family=Noto+Sans+JP:wght@300;400;500&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

/* -----------------------------------------
   ページ全体の設定（Bootstrap3の競合を強力に防止）
----------------------------------------- */
:root {
    --lh-primary: #c5a059;
    --lh-primary-hover: #b38f48;
    --lh-dark: #2c2c2c;
    --lh-muted: #666666;
    --lh-bg-light: #fcfaf5;
    --lh-border: #e5dfd3;
    --lh-section-v-pad: 100px;
    --lh-section-v-pad-sm: 60px;
    --lh-header-mb: 60px;
    --lh-grid-gap: 40px;
    font-family: 'Noto Sans JP', "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    color: var(--lh-dark);
    line-height: 1.8 ;
    letter-spacing: 0.05em ;
    background-color: #ffffff ;
}

.lh-seijin-page {
    --lh-primary: #c5a059;
    --lh-primary-hover: #b38f48;
    --lh-dark: #2c2c2c;
    --lh-muted: #666666;
    --lh-bg-light: #fcfaf5;
    --lh-border: #e5dfd3;
    --lh-section-v-pad: 100px;
    --lh-section-v-pad-sm: 60px;
    --lh-header-mb: 60px;
    --lh-grid-gap: 40px;
    font-family: 'Noto Sans JP', "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    color: var(--lh-dark);
    line-height: 1.8 ;
    letter-spacing: 0.05em ;
    background-color: #ffffff ;
}

.lh-seijin-page p {
    color: var(--lh-dark) ;
    font-family: 'Noto Sans JP', "Helvetica Neue", Arial, sans-serif ;
    margin-top: 0 ;
    margin-bottom: 1.5em ; 
    margin-bottom: 1.5em ;
    line-height: 1.8 ;
    font-weight: 400 ;
    letter-spacing: 0.05em ;
}

.lh-seijin-page ul,
.lh-seijin-page li {
    list-style: none ;
    margin: 0 ;
    padding: 0 ;
}

.lh-seijin-page h1,
.lh-seijin-page h2,
.lh-seijin-page h3,
.lh-seijin-page h4 {
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    color: var(--lh-dark) ;
    line-height: 1.4 ;
}
.lh-intro-title,
.lh-section-title,
.lh-plan-name-ja,
.lh-option-title,
.lh-product-title,
.lh-flow-title{
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    color: var(--lh-dark) ;
    line-height: 1.4 ;
}

.lh-seijin-page *,
.lh-seijin-page *::before,
.lh-seijin-page *::after {
    box-sizing: border-box ;
}

.lh-seijin-page .lh-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%; /* Bootstrap対策 */
}

.lh-section-padding {
    padding: var(--lh-section-v-pad) 0 ;
}

.lh-section-header {
    text-align: center;
    margin-bottom: var(--lh-header-mb) ;
}

.lh-section-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    color: var(--lh-primary);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block ;
    margin-bottom: 10px ;
}

.lh-section-title {
    font-size: 28px ;
	letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 20px ; 
    color: var(--lh-dark) ;
    margin: 0;
}
.lh-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background-color: var(--lh-primary);
}

/* 1. イントロダクション */
.lh-intro-section {
    background-color: var(--lh-bg-light) ;
    padding: var(--lh-section-v-pad) 0 ;
    text-align: center;
    border-bottom: 1px solid var(--lh-border) ;
}

.lh-intro-english {
    font-family: 'Cinzel', serif;
    font-size: 26px;
    letter-spacing: 0.2em;
    color: var(--lh-primary);
    margin-bottom: 15px ;
    display: block;
}

.lh-intro-title {
    font-size: 28px ;
    margin-bottom: 25px ;
}

.lh-intro-text {
    font-size: 15px ;
    color: var(--lh-muted) ;
    max-width: 680px ;
    margin: 0 auto ;
    line-height: 2.1 ;
    padding: 0 20px ;
}

.lh-intro-text p {
    margin-bottom: 0 ;
} /* イントロ内のpマージン調整 */

/* 2. プラン設定（Flexbox） */
.lh-plan-grid {
    display: flex;
    justify-content: space-between;
    gap: var(--lh-grid-gap);
}

.lh-plan-card {
    flex: 1;
    background-color: var(--lh-bg-light);
    border-top: 3px solid var(--lh-primary);
    padding: 50px 40px;
    text-align: center ;
    transition: transform 0.3s ease;
    display: flex ;
    flex-direction: column;
}

.lh-plan-card form {
    margin: 0 ; /* formタグによる予期せぬ余白を排除 */
    padding: 0 ;
}

.lh-plan-card:hover {
    transform: translateY(-5px);
}

.lh-plan-image img{
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

.lh-plan-content-top{
    flex: 1;
    margin-bottom: 30px;
}

.lh-plan-name-en,
.lh-plan-name-en{
    font-family: 'Cinzel', serif;
    font-size: 15px;
    color: var(--lh-primary);
    display: block;
    margin-bottom: 8px;
}

.lh-plan-name-ja,
.lh-plan-name-ja{
    font-size: 22px ;
    margin-bottom: 20px ;
}

.lh-plan-price-wrapper, 
.lh-plan-price-wrapper{
    border-bottom: 1px solid var(--lh-border) ;
    padding-bottom: 25px ;
    margin-bottom: 30px ;
}

.lh-plan-price {
    font-size: 36px ;
    font-family: 'Cinzel', serif;
    font-weight: 500;
}

.lh-plan-price span {
    font-size: 14px ;
}

.lh-plan-tax {
    font-size: 13px ;
    color: var(--lh-muted) ;
    display: block;
}

.lh-plan-features {
    list-style: none ;
    padding: 0 ;
    margin: 0 ;
    text-align: left ;
    display: inline-block ;
}

.lh-plan-features li {
    font-size: 14px ; 
    margin-bottom: 12px ; 
    padding: 0 ; 
    border: 0 ; 
}
.lh-plan-features li i { 
    color: var(--lh-primary); 
    margin-right: 8px; 
    width: 18px; 
}
.lh-plan-features li {
    font-size: 14px ;
    margin-bottom: 12px ;
    padding: 0 ;
    border: 0 ;
}
.lh-plan-features li i {
    color: var(--lh-primary);
    margin-right: 8px;
    width: 18px;
}

.lh-plan-btn {
    display: block ;
    background-color: var(--lh-primary);
    color: #ffffff ;
    text-decoration: none ;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}
.lh-plan-btn:hover {
    background-color: var(--lh-primary-hover);
}

/* 3. オプション設定 */
.lh-option-section {
    background-color: var(--lh-bg-light);
}

.lh-option-grid { 
    display: flex; 
    justify-content: space-between;
    gap: calc(var(--lh-grid-gap) * 0.75);
}
.lh-option-text {
    font-size: 14px ;
    color: var(--lh-muted) ;
    margin-bottom: 25px ;
    text-align: left ;
    line-height: 1.8 ;
}
.lh-option-card {
    flex: 1;
    background-color: #ffffff ;
    padding: 50px 25px;
    border: 1px solid var(--lh-border);
    text-align: center;
}
.lh-option-card.lh-featured {
    border: 1px solid var(--lh-primary);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.08);
}

.lh-option-icon {
    font-size: 32px;
    color: var(--lh-primary);
    margin-bottom: 25px;
}
.lh-option-title {
    font-size: 18px;
    margin-bottom: 15px;
}

.lh-option-price {
    font-size: 16px;
    font-weight: 500;
    color: var(--lh-primary);
    display: block;
}

/* 4. アルバム製品（Flexbox交互配置） */
.lh-product-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--lh-section-v-pad) ;
}
.lh-product-image-col {
    width: 45%;
}

.lh-product-content-col {
    width: 50%;
}
.lh-product-row.lh-inverse {
    flex-direction: row-reverse ;
}

.lh-product-image-holder {
    background-color: var(--lh-bg-light) ;
    border: 1px solid var(--lh-border) ;
    line-height: 0 ;
}

.lh-product-image-holder img {
    width: 100%;
    height: auto;
    display: block;
}
.lh-img-responsive {
    max-width: 100%;
    height: auto;
    display: block ;
}
.lh-product-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.lh-product-text {
    font-size: 14px ;
    color: var(--lh-muted) ;
    margin-bottom: 25px ;
    line-height: 1.8 ;
}
ul.lh-product-spec {
    list-style: none ;
    padding: 0 ;
    margin-top: 1em ;
    margin-bottom: 1em ;
    border-top: 1px solid var(--lh-border) ;
    padding-top: 20px ;
}
ul.lh-product-spec li {
    font-size: 13px ;
    margin-bottom: 8px ;
    padding: 0 ;
    border: 0 ;
}

ul.lh-product-spec li span {
    color: var(--lh-dark);
    font-weight: 500;
    width: 110px;
    display: inline-block;
}

.lh-tax-note {
    font-size: 12px;
    color: var(--lh-muted);
    margin-left: 5px;
}

/* 5. 価格テーブル */
.lh-table-section {
    background-color: var(--lh-bg-light);
}

.lh-price-table {
    width: 100% ;
    border-collapse: collapse ;
    background-color: #fff ;
    margin: 0 ;
}

.lh-price-table th,
.lh-price-table td {
    padding: 20px ;
    text-align: left ;
    font-family: 'Noto Sans JP', "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    font-size: 14px ;
    letter-spacing: 0.05em;
    border: 0 ;
    border-bottom: 1px solid var(--lh-border) ;
}
.lh-price-table th {
    background-color: #faf8f5 ;
    border-top: 1px solid var(--lh-primary) ;
    color: var(--lh-dark) ;
}

.lh-price-cell { text-align: right ; }

/* 6. 注意事項（CSSタブ） */
.lh-notice-section input[type="radio"] { display: none; }
.lh-notice-section{
    padding-bottom: 0;
}
.lh-notice-tabs {
    display: flex ;
    justify-content: center ;
    gap: 10px ;
    margin-bottom: 40px ;
}
.lh-tab-label {
    padding: 15px 40px ;
    border: 1px solid var(--lh-border) ;
    cursor: pointer;
    transition: 0.3s;
    background: #fff ;
    display: block ;
}
.lh-tab-content {
    display: none;
    background-color: var(--lh-bg-light) ;
    border: 1px solid var(--lh-border) ;
    padding: 45px 50px ;
}

#lh-tab-trigger-1:checked ~ .lh-notice-tabs .lh-label-1,
#lh-tab-trigger-2:checked ~ .lh-notice-tabs .lh-label-2 {
    background-color: var(--lh-primary) ; 
    color: #fff ; 
    border-color: var(--lh-primary) ;
}

#lh-tab-trigger-1:checked ~ .lh-tab-content-1,
#lh-tab-trigger-2:checked ~ .lh-tab-content-2 { display: block; }

.lh-notice-list { 
    list-style: none ; 
    padding: 0 ; 
}
.lh-notice-list li { 
    position: relative ; 
    padding-left: 30px ; 
    margin-bottom: 25px ; 
    font-size: 14px ; 
    border: 0 ; 
}
.lh-notice-list li::before {
    content: "•" ; 
    position: absolute ; 
    left: 10px ; 
	top: -10px;
    color: var(--lh-primary) ; 
    font-size: 24px ; 
    background: transparent ;
 }
.lh-notice-list li strong { 
    display: block ; 
    font-size: 16px ; 
    margin-bottom: 5px ; 
}

/* 7. コンタクトボックス */
.lh-contact-box {
    background-color: var(--lh-bg-light) ;
    border: 1px solid var(--lh-border) ;
    padding: 60px 40px ;
    text-align: center ;
    max-width: 700px ;
    margin: 0 auto ;
}

.lh-contact-studio {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: var(--lh-primary);
    display: block;
    margin-bottom: 10px;
}

/* アルバム価格の改行・デザイン調整 */
.lh-product-spec .lh-tax-block {
    display: block ;
    margin-top: 4px;
}

.lh-product-spec .lh-spec-note {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    color: var(--lh-muted);
    font-weight: normal;
}

@media screen and (max-width: 767px) {
     .lh-plan-grid,
     .lh-option-grid,
     .lh-product-row {
        display: block ;
        width: 100% ;
    }

     .lh-plan-card,
     .lh-option-card {
        margin-bottom: 20px;
        width: 100% ;
        max-width: 100% ;
    }

     .lh-product-image-col,
     .lh-product-content-col {
        width: 100% ;
    }

            /* 価格テーブルのスマホ最適化（ブロック化） */
             .lh-price-table,
             .lh-price-table thead,
             .lh-price-table tbody,
             .lh-price-table tr,
             .lh-price-table th,
             .lh-price-table td {
                display: block ;
                width: 100% ;
            }

             .lh-price-table thead {
                display: none ;
            }

             .lh-price-table tr {
                padding: 15px 20px  ;
                border-bottom: 1px solid var(--lh-border) ;
            }

             .lh-price-table td {
                padding: 2px 0 ;
                border: none ;
                text-align: left ;
            }

             .lh-price-table td:first-child {
                font-size: 10px ;
                color: var(--lh-primary) ;
                letter-spacing: 0.1em ;
            }

             .lh-price-table td:nth-child(2) {
                font-size: 14px ;
                font-weight: 500 ;
                color: var(--lh-dark) ;
            }

             .lh-price-table td.lh-price-cell {
                text-align: right ;
                font-size: 15px ;
                margin-top: 5px ;
            }
    /* 注意事項 */
    .lh-tab-content {
        padding: 30px 25px 30px 10px;
    }

     .lh-product-content-col { margin-top: 20px; }
     .lh-section-padding { padding: var(--lh-section-v-pad-sm) 0 ; }
     .lh-notice-tabs { flex-direction: row; }
     .lh-tab-label { flex: 1; padding: 12px 5px; font-size: 12px; }
}
 /* 撮影フロー専用スタイル */
    .lh-flow-container {
        max-width: 650px;
        margin: 0 auto;
		padding: 0 30px;
    }
    .lh-flow-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        margin-bottom: 50px;
    }
    .lh-flow-item:last-child {
        margin-bottom: 0;
    }
    .lh-flow-num {
        font-family: 'Cinzel', serif;
        font-size: 36px;
        color: var(--lh-primary);
        margin-right: 35px;
        line-height: 1;
        padding-top: 2px;
        min-width: 55px;
    }
    .lh-flow-content{
        box-sizing: border-box;
    }
    .lh-flow-title {
        font-size: 20px;
		letter-spacing: 0.05em;
        margin: 0;
        margin-bottom: 10px ;
    }
    .lh-flow-text {
        font-size: 14.5px;
        color: var(--lh-muted);
        line-height: 1.8;
        margin: 0;
    }

    /* レスポンシブ調整 */
    @media screen and (max-width: 767px) {
        .lh-flow-item {
            margin-bottom: 35px;
        }
        .lh-flow-num {
            font-size: 28px;
            margin-right: 20px;
            min-width: 45px;
        }
        .lh-flow-title {
            font-size: 17px;
        }
    }