@charset "UTF-8";

/* 全体のリセット設定 */
body {
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #333333;
}

/* 縦長のコンテンツを囲むコンテナ */
.page-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;    
    background-color: #ffffff;
    box-sizing: border-box;
}

/* 画像挿入エリア */
.image-section {
    width: 100%;
    line-height: 0;
    font-size: 0;  
}

.image-section a {
    display: block;
    width: 100%;
    height: auto;
    text-decoration: none;
    border: none;
}

.image-section img {
    display: block;
    width: 100%;
    height: auto;
    border: none;
}

/* 中央のコンテンツエリア */
.content-section {
    background-color: #ffffff;
    padding: 60px 20px 20px 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* メインタイトル */
.main-title {
    font-size: 28px;
    font-weight: bold;
    line-height: 2.0;
    margin: 0 0 35px 0;
    color: #333333;
    display: block;
    width: 100%;
}

.main-title span {
    display: inline;
    padding: 0 4px;
    background: linear-gradient(transparent 55%, #97fab1 55%) !important;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

/* ==========================================
   【③修正項目】お問い合わせボタン共通立体デザイン
   ========================================== */
.contact-button, .final-contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 480px;
    padding: 18px 25px;
    background: linear-gradient(to bottom, #f9edea 0%, #ecd3cb 40%, #dec1b7 100%);
    color: #55443c;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15), inset 0 2px 3px #ffffff;
    box-sizing: border-box;
    transition: all 0.3s ease;
    border: 1px solid #d2b4aa;
    margin-bottom: 65px;
}

/* 💡【変更】ホバー時：上品で深みのあるココアブラウンへ反転し、文字を白に */
.contact-button:hover, .final-contact-button:hover {
    background: #6e554f !important; /* 温かみのある深いブラウン */
    color: #ffffff !important;       /* 文字色を白に反転 */
    border-color: #523e3a !important; /* 枠線も合わせて濃く */
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* 💡ボタンがブラウンになった時、中にあるメールマーク（✉）も一緒に白にする */
.contact-button:hover .icon-placeholder,
.final-contact-button:hover .icon-mail {
    color: #ffffff !important;
}

/* アイコン用のプレースホルダー調整（通常時のお手紙マーク） */
.icon-placeholder, .icon-mail {
    margin-right: 12px;
    font-size: 24px;
    vertical-align: middle;
    color: #66554e;
    transition: color 0.3s ease;
}

/* 下部テキストエリア */
.sub-text-container {
    width: 100%;
    display: block;
    margin-bottom: 0;
}

.notice-headline {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 15px 0;
    color: #d9534f;
}

.notice-sub {
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
    color: #555555;
}

/* ==========================================
   実績＆紹介セクションのスタイル
   ========================================== */
.intro-section {
    width: 100%;
    background-color: #ffffff;
    box-sizing: border-box;
}

.slider-container {
    width: 100%;
    position: relative;
    background-color: #362521;
    margin-top: 100px;
}

.slider-container::before {
    content: "";
    display: block;
    padding-top: 56.25%;
}

.slider-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: fadeAnimation 24s infinite ease-in-out;
}

.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
}

.slide-item:nth-child(1) { animation-delay: 0s; }
.slide-item:nth-child(2) { animation-delay: 4s; }
.slide-item:nth-child(3) { animation-delay: 8s; }
.slide-item:nth-child(4) { animation-delay: 12s; }
.slide-item:nth-child(5) { animation-delay: 16s; }
.slide-item:nth-child(6) { animation-delay: 20s; }

@keyframes fadeAnimation {
    0% { opacity: 0; }
    5% { opacity: 1; }  
    16.66% { opacity: 1; }
    21.66% { opacity: 0; }
    100% { opacity: 0; }
}

.intro-text-block {
    padding: 50px 30px;
    text-align: left;
    box-sizing: border-box;
}

.intro-title {
    font-size: 26px;
    font-weight: bold;
    line-height: 1.5;
    color: #222222;
    margin: 0 0 25px 0;
}
.intro-title span {
    font-size: 22px;
    font-weight: bold;
    display: block;
    margin-top: 5px;
}

.intro-lead {
    font-size: 15px;
    line-height: 2.0;
    color: #444444;
    margin: 0;
}

/* ==========================================
   テディベア専門店だからできること（.additional-section）
   ========================================== */
.additional-section {
    width: 100%;
    background-color: #ffffff;
    box-sizing: border-box;
}

.additional-text-block {
    padding: 60px 30px 40px 30px;
    text-align: center;
    box-sizing: border-box;
}

.additional-title {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.4;
    color: #222222;
    margin: 0 0 50px 0;
    display: block;
    width: 100%;
}

.additional-title span {
    display: inline-block;
    padding-bottom: 4px;
    background: none !important;
    border-bottom: 3px double #333333 !important;
}

.additional-text-block ul.additional-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 auto !important;
    max-width: 800px;
    text-align: left !important;
}

.additional-text-block .additional-list li {
    list-style: none !important;
    margin: 0 0 40px 0 !important;
    padding: 0 !important;
    background: none !important;
    text-align: left !important;
}

.additional-text-block .additional-list li:last-child {
    margin-bottom: 0 !important;
}

.additional-text-block .additional-list h3 {
    font-size: 25px;
    font-weight: normal;
    color: #333333 !important;
    margin: 0 0 8px 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
    display: block;
    text-align: left !important;
}

.additional-text-block .additional-list h3::before {
    content: "・";
    color: #333333;
    margin-right: 2px;
}

.additional-text-block .additional-list p {
    font-size: 15px;
    line-height: 1.8;
    color: #555555 !important;
    margin: 0 !important;
    padding: 0 0 0 18px !important;
    text-align: left !important;
}

.additional-image-section {
    width: 100%;
    line-height: 0;
    font-size: 0;
}

.additional-image-section img {
    width: 100%;
    height: auto;
    display: block;
    border: none;
}

/* ==========================================
   記念品・ノベルティサポートセクション（.support-section）
   ========================================== */
.support-section {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 30px;
    box-sizing: border-box;
}

.support-text-block {
    text-align: center;
    margin-bottom: 50px;
}

.support-title {
    font-size: 28px;
    font-weight: bold;
    color: #222222;
    margin: 0 0 25px 0;
    line-height: 1.4;
}

.support-lead {
    font-size: 15px;
    line-height: 2.0;
    color: #333333;
    max-width: 850px;
    margin: 0 auto;
    text-align: left;
}

.support-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
}

.grid-item {
    width: 31%;
    margin-bottom: 45px;
    box-sizing: border-box;
    text-align: center;
}

.grid-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #36363d;
    overflow: hidden;
    line-height: 0;
    font-size: 0;
}

.grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
}

.grid-caption {
    font-size: 15px;
    font-weight: bold;
    color: #222222;
    margin: 15px 0 0 0;
    line-height: 1.4;
}

/* ==========================================
   実績スライダーセクション（左右スワイプ仕様）
   ========================================== */
.cases-section {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 0;
    box-sizing: border-box;
}

.cases-header {
    max-width: 900px;
    margin: 0 auto 30px auto;
    padding: 0 30px;
    box-sizing: border-box;
}

.cases-section-title {
    font-size: 28px;
    font-weight: bold;
    color: #222222;
    margin: 0 0 20px 0;
    line-height: 1.4;
}

.cases-section-lead {
    font-size: 15px;
    line-height: 2.0;
    color: #333333;
    margin: 0;
    text-align: left;
}

.cases-slider-outer {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.cases-slider-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 30px 20px 30px;
    gap: 30px;
    scroll-behavior: smooth;
}

.cases-slider-wrapper::-webkit-scrollbar {
    height: 10px;
}
.cases-slider-wrapper::-webkit-scrollbar-thumb {
    background: #e3c4be;
    border-radius: 6px;
    cursor: pointer;
}
.cases-slider-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 6px;
}

.scroll-arrow {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background-color: #ffffff;
    border: 2px solid #e3c4be;
    color: #4a3b32;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
    user-select: none;
}
.scroll-arrow:hover {
    background-color: #f1dfdb;
    color: #ffffff;
    border-color: #f1dfdb;
}
.arrow-left { left: 15px; }
.arrow-right { right: 15px; }

.case-card {
    flex: 0 0 850px;
    scroll-snap-align: center;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 40px;
    box-sizing: border-box;
    text-align: left;
}

.case-title {
    font-size: 20px;
    font-weight: bold;
    color: #222222;
    margin: 0 0 30px 0;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 15px;
}

.case-main-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 30px;
}

.case-image {
    width: 40%;
    aspect-ratio: 1 / 1;
    background-color: #36363d;
    line-height: 0;
}
.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-table-wrap {
    width: 55%;
}
.table-caption {
    font-size: 14px;
    color: #666666;
    margin: 0 0 10px 0;
}
.case-table {
    width: 100%;
    border-collapse: collapse;
}
.case-table th, .case-table td {
    border: 1px solid #f1dfdb;
    padding: 10px 15px;
    font-size: 14px;
}
.case-table th {
    background-color: #fcf6f5;
    color: #4a3b32;
    font-weight: bold;
    width: 30%;
    text-align: left;
}
.case-table td {
    color: #444444;
}

.story-heading {
    font-size: 16px;
    font-weight: bold;
    color: #222222;
    margin: 0 0 12px 0;
}
.story-text {
    font-size: 14px;
    line-height: 1.8;
    color: #444444;
    margin: 0 0 30px 0;
}

.customer-voice {
    background-color: #f3effa;
    padding: 20px 25px;
    border-radius: 4px;
}
.customer-voice h5 {
    font-size: 14px;
    font-weight: bold;
    color: #5b4b70;
    margin: 0 0 8px 0;
}
.customer-voice p {
    font-size: 13px;
    line-height: 1.7;
    color: #444444;
    margin: 0;
}

.cases-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}
.cases-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #dddddd;
    display: inline-block;
    transition: background-color 0.2s;
}
.cases-dots .dot.active {
    background-color: #e3c4be;
}

/* ==========================================
   お見積りと納期についてセクション
   ========================================== */
.estimate-section {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 80px 30px;
    box-sizing: border-box;
}

.estimate-header {
    text-align: center;
    margin-bottom: 30px;
}
.estimate-title {
    font-size: 28px;
    font-weight: bold;
    color: #222222;
    margin: 0 0 15px 0;
    line-height: 1.4;
}
.estimate-lead {
    font-size: 16px;
    color: #444444;
    margin: 0;
}

.estimate-main-image {
    width: 100%;
    margin-bottom: 40px;
    line-height: 0;
    font-size: 0;
    background-color: #36363d;
}
.estimate-main-image img {
    width: 100%;
    height: auto;
    display: block;
    border: none;
}

.estimate-intro-text {
    font-size: 15px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 40px;
    text-align: left;
}
.estimate-intro-text .highlight-note {
    margin-top: 15px;
    font-weight: bold;
}
.estimate-intro-text .text-red {
    color: #d9534f;
}

.plan-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
}
.plan-card {
    width: 42%;
    max-width: 320px;
    border: 1px solid #dddddd;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    background-color: #ffffff;
}
.plan-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #36363d;
    margin-bottom: 15px;
    line-height: 0;
}
.plan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.plan-name {
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    margin: 0 0 10px 0;
}
.plan-price {
    font-size: 14px;
    color: #555555;
    margin: 0;
}
.plan-price .price-red {
    color: #d9534f;
    font-size: 18px;
    font-weight: bold;
}

.comparison-table-wrap {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    overflow-x: auto;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    box-sizing: border-box;
}
.comparison-table th, .comparison-table td {
    border: 1px solid #dddddd;
    padding: 15px 10px;
    font-size: 14px;
    vertical-align: middle;
    line-height: 1.6;
}

.comparison-table th {
    background-color: #f5f5f5;
    color: #333333;
    font-weight: bold;
}
.comparison-table th.th-domestic,
.comparison-table th.th-overseas {
    width: 38%;
}

.comparison-table td.td-label {
    background-color: #fafafa;
    font-weight: bold;
    color: #444444;
    width: 24%;
    text-align: center;
}
.comparison-table td .text-small {
    font-size: 11px;
    color: #777777;
}

.pc-only { display: inline; }

/* ==========================================
   ベアの種類とロゴプリントについて（.bear-custom-section）
   ========================================== */
.bear-custom-section {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 80px 30px 40px 30px;
    box-sizing: border-box;
}

/* ヘッダー */
.custom-header {
    text-align: center;
    margin-bottom: 50px;
}
.custom-section-title {
    font-size: 28px;
    font-weight: bold;
    color: #222222;
    margin: 0 0 20px 0;
    line-height: 1.4;
}
.custom-section-lead {
    font-size: 15px;
    color: #444444;
    line-height: 1.6;
    margin: 0;
}

/* 各大見出し */
.custom-sub-block {
    margin-bottom: 60px;
}
.custom-block-title {
    font-size: 24px;
    font-weight: bold;
    color: #222222;
    border-bottom: 2px solid #333333;
    padding-bottom: 12px;
    margin: 0 0 30px 0;
}
.bear-ranking-title {
    font-size: 16px;
    font-weight: bold;
    color: #4a3b32;
    text-align: center;
    margin: 0 0 25px 0;
}

/* 4列ベアグリッド */
.bear-type-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 850px;
    margin: 0 auto 30px auto;
}
.bear-type-item {
    width: 23%;
    text-align: center;
}
.bear-type-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #36363d;
    margin-bottom: 12px;
}
/* 【①修正項目】画像リンクとしてのホバー演出を追加 */
.bear-type-image a {
    display: block;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease;
}
.bear-type-image a:hover {
    opacity: 0.8;
}
.bear-type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.bear-type-name {
    font-size: 14px;
    font-weight: bold;
    color: #333333;
    margin: 0;
}
.bear-more-text {
    font-size: 14px;
    line-height: 1.8;
    color: #444444;
    text-align: center;
    margin: 0;
}
.bear-link {
    color: #0066cc;
    text-decoration: underline;
    font-weight: bold;
}
.bear-link:hover {
    text-decoration: none;
}

/* ==========================================
   【②修正項目】サイズ違い対応ボックス（赤枠太線強化）
   ========================================== */
.size-notice-box {
    width: fit-content;        
    max-width: 850px;
    margin: 0 auto 60px auto;  
    border: 5px solid #d9534f; /* 3pxから5pxに太線化 */
    padding: 30px 45px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;   
    align-items: center;
    gap: 40px;
}
.size-box-image {
    width: 220px;            
    height: 220px;            
    aspect-ratio: 1 / 1;      
    background-color: #36363d;
    overflow: hidden;        
    flex-shrink: 0;          
}
.size-box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;        
    display: block;
    border: none;
}
.size-box-text {
    flex: 1;
    text-align: left;          
}
.size-box-text h4 {
    font-size: 20px;
    font-weight: bold;
    color: #333333;
    margin: 0 0 12px 0;
}
.size-box-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #555555;
    margin: 0 0 15px 0; /* 下にリンクを配置するため余白を追加 */
}
/* 追加したテキストリンク用のスタイル */
.size-list-link {
    display: inline-block;
    color: #0066cc;
    text-decoration: underline;
    font-size: 15px;
    font-weight: bold;
}
.size-list-link:hover {
    text-decoration: none;
}

/* 3パターンのプリントレイアウト */
.pattern-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid #eeeeee;
    max-width: 850px;
    margin: 0 auto;
}
.pattern-row:last-child {
    border-bottom: none;
}
.pattern-text {
    width: 55%;
    text-align: left;
}
.pattern-text h4 {
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    margin: 0 0 12px 0;
}
.pattern-text p {
    font-size: 14px;
    line-height: 1.8;
    color: #555555;
    margin: 0;
}
.pattern-image {
    width: 40%;
    aspect-ratio: 1.6 / 1;
    background-color: #36363d;
}
.pattern-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 注意事項（イエロー太枠ボックス・左寄せ） */
.caution-box {
    max-width: 850px;
    margin: 50px auto 60px auto;
    border: 6px solid #ffcc29 !important;
    border-radius: 20px !important;      
    background-color: #ffffff;            
    padding: 40px 45px;
    box-sizing: border-box;
    text-align: left;
}

/* 注意事項タイトル：黒い細下線 */
.caution-title {
    font-size: 24px;
    font-weight: bold;
    color: #222222;
    margin: 0 0 35px 0;
    line-height: 1.3;
    text-align: left !important;
}
.caution-title span {
    display: inline-block;
    padding-bottom: 3px;
    border-bottom: 2px solid #222222 !important;
}

/* 注意事項内のリスト */
.caution-box ul.caution-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: left !important;
}
.caution-box .caution-list li {
    list-style: none !important;
    margin: 0 0 30px 0 !important;
    padding: 0 !important;
    background: none !important;
    text-align: left !important;
}
.caution-box .caution-list li:last-child {
    margin-bottom: 0 !important;
}

/* 各見出し */
.caution-box .caution-list h3 {
    font-size: 18px;
    font-weight: bold;
    color: #222222 !important;
    margin: 0 0 8px 0 !important;
    padding: 0 !important;
    display: block;
    text-align: left !important;            
    border-bottom: none !important;         
    text-decoration: none !important;      
}
.caution-box .caution-list h3::before {
    content: "・";
    color: #222222;
}

/* 各項目の説明文章 */
.caution-box .caution-list p {
    font-size: 15px;
    line-height: 1.6;
    color: #333333 !important;
    margin: 0 0 12px 0 !important;
    padding: 0 0 0 15px !important;
    text-align: left !important;
}
.caution-box .caution-list p:last-child {
    margin-bottom: 0 !important;
}

.caution-box .caution-list p.caution-sub-text {
    font-size: 15px;
    font-weight: normal;
    line-height: 1.6;
    color: #333333 !important;
    text-align: left !important;
}

/* 最下部お問い合わせブロック */
.bottom-contact-area {
    text-align: center;
    border-top: 1px solid #eeeeee;
    padding-top: 60px;
    margin-top: 60px;
}
.bottom-contact-area h3 {
    font-size: 26px;
    font-weight: bold;
    color: #222222 !important;
    margin: 0 0 15px 0 !important;
    border-bottom: none !important;         
    text-decoration: none !important;      
    display: inline-block;
    width: 100%;
    text-align: center;
}
.bottom-contact-area p {
    font-size: 15px;
    color: #444444;
    margin: 0 0 45px 0;
}
.bottom-contact-area .contact-button {
    margin-bottom: 0;
}

/* ==========================================
   ご注文 - 制作の流れセクションのスタイル（PC基準）
   ========================================== */
.process-section {
    width: 100%;
    background-color: #ffffff;
    box-sizing: border-box;
    margin-top: 100px; 
}

.process-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px 80px 30px;
    box-sizing: border-box;
    text-align: center;
}

.process-title {
    font-size: 28px;
    font-weight: bold;
    color: #222222;
    margin: 0 0 40px 0;
    line-height: 1.4;
    text-align: center;
}

.process-image-wrap {
    width: 100%;
    line-height: 0;
    font-size: 0;
}

.process-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    border: none;
}

/* ==========================================
   よくある質問セクションのスタイル（PC基準）
   ========================================== */
.faq-section {
    width: 100%;
    background-color: #ffffff;
    box-sizing: border-box;
    margin-top: 100px;
}

.faq-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px 100px 30px;
    box-sizing: border-box;
}

.faq-title {
    font-size: 28px;
    font-weight: bold;
    color: #222222;
    margin: 0 0 50px 0;
    line-height: 1.4;
    text-align: center;
}

.faq-wrapper {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    width: 100%;
    background-color: #f5f5f5;
    margin-bottom: 15px;
    border-radius: 4px;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.faq-question {
    padding: 20px 50px 20px 60px;
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    cursor: pointer;
    position: relative;
    list-style: none;
    display: block;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::before {
    content: "Q.";
    font-size: 20px;
    font-weight: bold;
    color: #333333;
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.faq-question::after {
    content: "〉";
    font-size: 12px;
    color: #666666;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.2s ease;
}

.faq-item[open] {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.faq-item[open] .faq-question {
    background-color: #f5f5f5;
    border-bottom: 1px solid #eeeeee;
}
.faq-item[open] .faq-question::after {
    transform: translateY(-50%) rotate(90deg);
}

.faq-answer {
    padding: 25px 30px 25px 60px;
    background-color: #ffffff;
    position: relative;
    border: 1px solid #f5f5f5;
    border-top: none;
    border-radius: 0 0 4px 4px;
}

.faq-answer::before {
    content: "A.";
    font-size: 20px;
    font-weight: bold;
    color: #d9534f;
    position: absolute;
    left: 25px;
    top: 23px;
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.8;
    color: #444444;
    margin: 0;
}

.faq-answer p.faq-sub-para {
    margin-top: 15px;
}

.faq-answer a {
    color: #0066cc;
    text-decoration: underline;
    font-weight: bold;
}
.faq-answer a:hover {
    text-decoration: none;
}

/* ==========================================
   最下部コンタクト・ブログ案内セクション（PC基準）
   ========================================== */
.final-contact-section {
    width: 100%;
    background-color: #ffffff;
    box-sizing: border-box;
    margin-top: 60px;
}

.final-contact-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px 100px 30px;
    box-sizing: border-box;
    text-align: center;
}

/* スタッフブログバナー */
.blog-banner-wrap {
    max-width: 650px;
    margin: 0 auto 70px auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
    line-height: 0;
}

.blog-banner-link {
    display: block;
    width: 100%;
}

.blog-banner-link img {
    width: 100%;
    height: auto;
    display: block;
    border: none;
    transition: transform 0.3s ease;
}

.blog-banner-link:hover img {
    transform: scale(1.02);
}

/* フォーム問い合わせブロック */
.form-contact-block {
    margin-bottom: 65px;
}

.form-contact-lead {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.8;
    color: #222222;
    margin: 0 0 35px 0;
}

/* 電話お問い合わせエリア */
.tel-contact-block {
    border-top: 1px dashed #dddddd;
    padding-top: 50px;
    max-width: 700px;
    margin: 0 auto;
}

.tel-contact-lead {
    font-size: 16px;
    font-weight: bold;
    color: #222222;
    margin: 0 0 10px 0;
}

.tel-number-wrap {
    margin-bottom: 5px;
    line-height: 1.2;
}

.tel-link {
    font-size: 42px;
    font-weight: bold;
    color: #333333;
    text-decoration: none;
    cursor: default;
    pointer-events: none;
    font-family: "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 0.05em;
}

/* 【④修正項目】PC環境の時間フォントをさらに強調 */
.tel-time {
    font-size: 22px; /* 18pxから22pxに拡大 */
    font-weight: bold;
    color: #444444;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

.icon-clock {
    margin-right: 6px;
    font-size: 24px;
}

.sp-only { display: none; }
.pc-only { display: inline; }


/* ==========================================
   スマートフォン用（画面幅768px以下）の設定
   ========================================== */
@media screen and (max-width: 768px) {
    .sp-only { display: inline; }
    .pc-only { display: none; }
    
    .content-section {
        padding: 40px 15px 20px 15px;
    }

    .main-title {
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 25px;
    }

    /* 【③修正項目】SP版ボタン一括調整 */
    .contact-button, .final-contact-button {
        font-size: 16px;
        padding: 14px 20px;
        max-width: 340px;
        margin-bottom: 45px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15), inset 0 1px 2px #ffffff;
    }

    .icon-placeholder, .icon-mail {
        font-size: 18px;
        margin-right: 8px;
    }

    .notice-headline {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .notice-sub {
        font-size: 12px;
        line-height: 1.6;
    }

    .slider-container {
        margin-top: 70px;
    }

    .intro-text-block {
        padding: 35px 20px;
    }
    
    .intro-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .intro-title span {
        font-size: 13px;
        white-space: nowrap;
    }
    
    .intro-lead {
        font-size: 13px;
        line-height: 1.8;
    }

    /* 専門店だからできること */
    .additional-text-block {
        padding: 40px 20px 30px 20px;
    }

    .additional-title {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .additional-list h3 {
        font-size: 16px !important;
        margin-bottom: 4px !important;
        text-align: left !important;
    }

    .additional-list p {
        font-size: 12px !important;
        line-height: 1.6;
        padding-left: 12px !important;
        text-align: left !important;
    }
    
    .additional-list li {
        margin-bottom: 25px !important;
    }

    /* 記念品・ノベルティサポート */
    .support-section {
        padding: 50px 20px;
    }
    
    .support-text-block {
        margin-bottom: 35px;
    }
    
    .support-title {
        font-size: 14px;
        margin-bottom: 15px;
        text-align: left;
        white-space: nowrap;
    }
    
    .support-lead {
        font-size: 12px;
        line-height: 1.8;
    }
    
    .grid-item {
        width: 47%;
        margin-bottom: 30px;
    }
    
    .grid-caption {
        font-size: 12px;
        margin-top: 10px;
    }

    /* 実績スライダーセクション */
    .cases-section {
        padding: 50px 0;
    }
    .cases-header {
        padding: 0 20px;
        margin-bottom: 25px;
    }
    .cases-section-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .cases-section-lead {
        font-size: 12px;
        line-height: 1.8;
    }

    .cases-slider-wrapper {
        padding: 10px 20px 15px 20px;
        gap: 20px;
    }

    .case-card {
        flex: 0 0 88vw;
        padding: 20px;
    }

    .scroll-arrow {
        display: none;
    }

    .case-title {
        font-size: 15px;
        margin-bottom: 20px;
        padding-bottom: 10px;
    }

    .case-main-flex {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
    }
    .case-image {
        width: 100%;
    }
    .case-card .case-table-wrap {
        width: 100%;
    }
    .case-table th, .case-table td {
        padding: 8px 10px;
        font-size: 12px;
    }
    .body-container .table-caption {
        font-size: 12px;
    }

    .story-heading {
        font-size: 14px;
    }
    .story-text {
        font-size: 12px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .customer-voice {
        padding: 15px;
    }
    .customer-voice h5 {
        font-size: 12px;
    }
    .customer-voice p {
        font-size: 11px;
        line-height: 1.6;
    }
    
    .cases-dots {
        margin-top: 10px;
    }

    /* お見積りと納期について */
    .estimate-section {
        padding: 50px 20px;
    }
    .estimate-title {
        font-size: 18px;
    }
    .estimate-lead {
        font-size: 13px;
    }
    /* 【⑥修正項目】SP版導入文：4行に綺麗に収めるためのフォント微調整 */
    .estimate-intro-text {
        font-size: 11.5px;
        line-height: 1.5;
        letter-spacing: -0.02em;
    }

    .plan-grid {
        gap: 15px;
        margin-bottom: 35px;
    }
    .plan-card {
        width: 50%;
        padding: 10px;
    }
    .plan-name {
        font-size: 13px;
        margin-bottom: 5px;
    }
    .plan-price {
        font-size: 11px;
    }
    .plan-price .price-red {
        font-size: 14px;
    }

    .comparison-table th, .comparison-table td {
        padding: 10px 5px;
        font-size: 11px;
    }
    .comparison-table td .text-small {
        font-size: 9px;
    }

    /* ベアの種類とロゴプリントについて */
    .bear-custom-section {
        padding: 50px 20px;
    }
    .custom-section-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .custom-section-lead {
        font-size: 12px;
    }
    .custom-block-title {
        font-size: 16px;
        margin-bottom: 20px;
        padding-bottom: 8px;
    }
    
    .bear-type-grid {
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 20px;
    }
    .bear-type-item {
        width: 47%;
    }
    .bear-type-name {
        font-size: 12px;
    }
    .bear-more-text {
        font-size: 12px;
        line-height: 1.6;
    }

    /* ==========================================
       【②修正項目】サイズ違い対応ボックス（SP赤枠太線強化）
       ========================================== */
    .size-notice-box {
        width: 100% !important; 
        flex-direction: column;
        padding: 20px 15px;
        gap: 15px;
        margin-bottom: 40px;
        border-width: 5px !important; /* 4pxから5pxへ太枠化 */
    }
    .size-box-image {
        width: 125px;              
        height: 125px;              
        aspect-ratio: 1 / 1;
        margin: 0 auto;            
    }
    .size-box-text {
        width: 100%;
        text-align: center !important; 
    }
    .size-box-text h4 {
        font-size: 15px;
        margin-bottom: 6px;
        text-align: center !important; 
    }
    .size-box-text p {
        font-size: 12px;
        line-height: 1.6;
        text-align: center !important; 
        margin: 0 auto 10px auto;
        display: block;
    }
    .size-list-link {
        font-size: 13px;
        display: block;
        text-align: center;
    }

    .pattern-row {
        flex-direction: column-reverse;
        gap: 15px;
        padding: 20px 0;
    }
    .pattern-text {
        width: 100%;
    }
    .pattern-text h4 {
        font-size: 15px;
        margin-bottom: 8px;
    }
    .pattern-text p {
        font-size: 12px;
        line-height: 1.6;
    }
    .pattern-image {
        width: 100%;
    }

    /* 注意事項（黄枠ボックス） */
    .caution-box {
        padding: 25px 20px !important;
        margin: 30px auto 40px auto;
        border-width: 4px !important;
        border-radius: 12px !important;
    }
    .caution-title {
        font-size: 16px;
        margin-bottom: 20px;
        text-align: left !important;
    }
    .caution-list h3 {
        font-size: 14px !important;
        margin-bottom: 4px !important;
        text-align: left !important;  
        border-bottom: none !important;
    }
    .caution-list p {
        font-size: 12px !important;
        line-height: 1.6;
        padding-left: 12px !important;
        text-align: left !important;  
    }
    .caution-box .caution-list p.caution-sub-text {
        font-size: 12px !important;
        text-align: left !important;  
    }
    .caution-list li {
        margin-bottom: 20px !important;
    }

    /* お問い合わせ */
    .bottom-contact-area {
        padding-top: 40px;
        margin-top: 40px;
    }
    .bottom-contact-area h3 {
        font-size: 16px !important;
        border-bottom: none !important; 
    }
    .bottom-contact-area p {
        font-size: 12px;
        margin-bottom: 25px;
    }

    /* ご注文 - 制作の流れセクション */
    .process-section {
        margin-top: 60px;
    }

    .process-container {
        padding: 0 20px 50px 20px; 
    }

    .process-title {
        font-size: 18px;
        margin-bottom: 25px;
    }

    /* よくある質問セクション（スマホ） */
    .faq-section {
        margin-top: 60px;
    }

    .faq-container {
        padding: 0 20px 60px 20px;
    }

    .faq-title {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .faq-question {
        padding: 15px 40px 15px 45px;
        font-size: 13px;
        line-height: 1.5;
    }

    .faq-question::before {
        font-size: 16px;
        left: 15px;
    }

    .faq-question::after {
        right: 15px;
        font-size: 10px;
    }

    .faq-answer {
        padding: 15px 15px 15px 45px;
    }

    .faq-answer::before {
        font-size: 16px;
        left: 15px;
        top: 13px;
    }

    .faq-answer p {
        font-size: 12px;
        line-height: 1.7;
    }
    
    .faq-answer p.faq-sub-para {
        margin-top: 10px;
    }

    /* 最下部コンタクト（スマホ） */
    .final-contact-section {
        margin-top: 40px;
    }

    .final-contact-container {
        padding: 0 20px 60px 20px;
    }

    .blog-banner-wrap {
        margin-bottom: 50px;
    }

    .form-contact-block {
        margin-bottom: 50px;
    }

    /* 【⑤修正項目】SP版フォーム誘導リード文：2行に綺麗に収める設定 */
    .form-contact-lead {
        font-size: 12px;
        line-height: 1.5;
        text-align: center;
        margin-bottom: 25px;
    }

    .form-contact-block .final-contact-button {
        margin-bottom: 0;
    }

    .tel-contact-block {
        padding-top: 35px;
    }

    .tel-contact-lead {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .tel-link {
        font-size: 32px;
        color: #0066cc; 
        cursor: pointer;
        pointer-events: auto; 
    }

    /* 【④修正項目】SP版の営業時間テキストをハッキリ拡大 */
    .tel-time {
        font-size: 16px; /* 14pxから16pxに拡大 */
    }
    
    .icon-clock {
        font-size: 18px;
    }
}

/* ==========================================
   ①専門店だからできること（image_ba514a.png）
   ========================================== */
.additional-section {
    width: 100%;
    background-color: #faf8f2; /* 【変更】白から優しいアイボリー系に変更 */
    box-sizing: border-box;
}

/* ==========================================
   ②記念品・ノベルティサポート（image_ba51a5.png）
   ========================================== */
.support-section {
    width: 100%;
    background-color: #eef7f9; /* 【変更】白からさわやかな薄水色に変更 */
    padding: 80px 30px;
    box-sizing: border-box;
}

/* ==========================================
   ③選べる3パターン（image_ba555f.png）
   ========================================== */
/* 新しく追加するスタイル */
.pattern-bg-box {
    background-color: #faf8f2; /* 優しいアイボリー背景 */
    padding: 50px 40px;        /* 枠内の余白 */
    border-radius: 8px;        /* 角を少し丸く */
    max-width: 900px;
    margin: 0 auto 60px auto;  
    box-sizing: border-box;
}

/* 既存の .pattern-row の max-width を打ち消して背景いっぱいに広げる調整 */
.pattern-bg-box .pattern-row {
    max-width: 1000px;
}

/* 【スマホ用調整】左右の余白を少し縮小 */
@media screen and (max-width: 768px) {
    .pattern-bg-box {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
}