/* ====================
   サイト設計ガイドライン
==================== */

/* フォントウェイト使用ルール
----------------------------------------
400 (Regular)    : 本文・通常テキスト・段落文章
500 (Medium)     : 小見出し・ナビゲーション・ボタン
600 (Semi Bold)  : 大見出し・セクションタイトル・重要情報
700 (Bold)       : ロゴ・ブランド名・特別な強調
---------------------------------------- */

/* フォント使用ルール
----------------------------------------
Noto Sans JP     : メニュー・ナビゲーション・ボタン
游ゴシック        : 本文・見出し・説明文
Oswald          : 特殊用途（オンラインショップタブなど）
---------------------------------------- */

/* カラーパレット
----------------------------------------
Primary         : #ff6b35 (オレンジ - アクセント)
Background      : #f6f5e9 (ベージュ - ヘッダー背景)
Text            : #333 (ダークグレー - メインテキスト)
Light Text      : #666 (ミディアムグレー - サブテキスト)
Border          : #eee (ライトグレー - 境界線)
---------------------------------------- */

/* ブレークポイント
----------------------------------------
PC              : 768px以上
タブレット       : 768px〜1199px
スマートフォン    : 767px以下
コンテナ最大幅    : 1200px
---------------------------------------- */

/* 設計思想変更の可能性あり
----------------------------------------
BEM記法         : コンポーネント内の要素 (.block__element)
ケバブケース     : 汎用クラス・HTML属性 (.responsive-image)
rem単位         : 1rem = 10px (html font-size: 62.5%)
アニメーション    : 読み込み時0.5秒遅延、スクロール時0.2秒遅延
---------------------------------------- */

/* ====================
   リセット・基本設定
==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%; /* 1rem = 10px */
    scroll-behavior: smooth;
}

body {
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
    font-size: 1.6rem;
    line-height: 1.7;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

/* ====================
   共通クラス
==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 4rem;
}

.highlight {
    color: #ff6b35;
}

/* ====================
   レスポンシブ表示制御クラス
==================== */

/* スマホで非表示（PC・タブレットのみ表示） */
.nosp {
    display: block;
}

@media screen and (max-width: 767px) {
    .nosp {
        display: none;
    }
}

/* PC・タブレットで非表示（スマホのみ表示） */
.nopc {
    display: none;
}

@media screen and (max-width: 767px) {
    .nopc {
        display: block;
    }
}

/* インライン要素版 */
.nosp-inline {
    display: inline;
}

@media screen and (max-width: 767px) {
    .nosp-inline {
        display: none;
    }
}

.nopc-inline {
    display: none;
}

@media screen and (max-width: 767px) {
    .nopc-inline {
        display: inline;
    }
}

/* ====================
   レスポンシブ画像自動制御
==================== */
/* PC用画像クラス */
.img-pc-1x {
    display: block;
}
.img-mobile-2x {
    display: none;
}

/* スマホ時は逆転 */
@media screen and (max-width: 767px) {
    .img-pc-1x {
        display: none;
    }
    .img-mobile-2x {
        display: block;
    }
}

/* ====================
   ヘッダー
==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding-top: 5px;
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

/* PC表示でのスクロール時スタイル */
@media screen and (min-width: 768px) {
    .header.scrolled {
        padding-top: 2px;
        padding-bottom: 2px;
    }
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    background-color: #fff;
    border-radius: 2px;
    padding: 0 30px;
    transition: height 0.3s ease;
    /* 下側のみシャドウ */
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
}

/* PC表示でのスクロール時の高さ変更 */
@media screen and (min-width: 768px) {
    .header.scrolled .header__inner {
        height: 40px;
    }
}

.header__logo h1 {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.header__logo a {
    transition: opacity 0.3s ease;
}

.header__logo a:hover {
    opacity: 0.7;
}

.header__logo img {
    margin: auto;
    max-width: 145px;
}
.header.scrolled .header__logo img {
    max-width: 120px;
    transition: max-width 0.3s ease;
}


.header__nav {
    display: block;
}

.nav__list {
    display: flex;
    gap: 3rem;
}

.nav__link {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav__link:hover {
    color: #ff6b35;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff6b35;
    transition: width 0.3s ease;
}

.nav__link:hover::after {
    width: 100%;
}

/* ハンバーガーメニュー */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger__line {
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active .hamburger__line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .hamburger__line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger__line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* モバイルメニュー */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu__nav {
    padding-top: 100px;
    text-align: center;
}

.mobile-menu__list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.mobile-menu__link {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    padding: 1rem;
    display: block;
    transition: color 0.3s ease;
}

.mobile-menu__link:hover {
    color: #ff6b35;
}

/* ====================
   アクティブナビゲーション
==================== */
.nav__link.active {
    color: #ff6b35;
}

.nav__link.active::after {
    width: 100%;
}

/* モバイルメニューでも同様 */
.mobile-menu__link.active {
    color: #ff6b35;
}

/* フッターナビゲーションでも同様 */
/* .footer__nav-link.active {
    color: #ff6b35;
} */


/* ====================
   ヒーローセクション
==================== */
.hero {
    padding: 140px 0 80px;
    background-color: #f6f5e9;
    min-height: 80vh; /* ブラウザサイズの最低70% */
    display: flex;
    align-items: center; /* コンテンツを縦方向で中央配置 */
}

.hero__content {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.hero__content img{ margin: auto;}

/* ====================
   コンセプトセクション
==================== */
.concept {
    padding: 80px 0;
}

.concept__content {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.concept__text {
    flex: 1;
}

.concept__description {
    font-size: 1.6rem;
    line-height: 2;
    margin-bottom: 3rem;
}

.concept__shoplink {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.6rem;
    color: #000;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease; /* 色とフォントサイズのトランジション */
    transform-origin: left center; /* 左側を基準点に設定 */
}

.concept__shoplink:hover {
    color: #ff6b35; /* ホバー時にオレンジ色 */
}
.concept__shoplink:hover .text {
    transform: scale(1.125); /* ホバー時にフォントサイズを大きく */
}
.concept__shoplink .text {
    flex-shrink: 0; /* テキストサイズ固定 */
    transition: transform 0.3s ease; /* テキスト変形のトランジション */
    transform-origin: left center; /* 左側を基準点に設定 */
}

.concept__shoplink .arrow {
    flex-grow: 1; /* 残りスペースを全て使用 */
    height: 1px;
    background-color: #000;
    margin-left: 1rem;
    position: relative;
    transition: all 0.3s ease;
    transform-origin: left;
}

.concept__shoplink:hover .arrow {
    background-color: #ff6b35;
    transform: scaleX(1.1); /* 線が少し伸びる */
    margin-left: 20px; 
}

.concept__shoplink .arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #000;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    transition: all 0.3s ease;
}

.concept__shoplink:hover .arrow::after {
    border-left-color: #ff6b35;
    transform: translateY(-50%) translateX(5px); /* 矢印が右に移動 */
}

.concept__image {
    flex: 1;
}

/* ====================
   想いセクション
==================== */
.story {
    padding: 80px 0;
}

.story__ring { 
    position: absolute;
    width: 100%;
    text-align: right;
    margin-top: -200px;
    opacity: 0.2;
}
/* タブレット・スマホ共通 */
@media screen and (max-width: 767px) {
    .story__ring {
        margin-top: 300px;
    }
    .story__ring img { max-width: 70%; }
    .story__container {
        background-position-y: 400px !important;
        background-size: 100% 40%  !important;
    }
}

.story__container {
    background-image: url(../images/storybg.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
}

.story__content {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.story__text {
    flex: 1.5;
}

.story__description {
    font-size: 1.6rem;
    line-height: 2;
    margin-bottom: 3rem;
}

.story__shoplink {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.6rem;
    color: #000;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease; /* 色とフォントサイズのトランジション */
    transform-origin: left center; /* 左側を基準点に設定 */
}

.story__shoplink:hover {
    color: #ff6b35; /* ホバー時にオレンジ色 */
}
.story__shoplink:hover .text {
    transform: scale(1.125); /* ホバー時にフォントサイズを大きく */
}
.story__shoplink .text {
    flex-shrink: 0; /* テキストサイズ固定 */
    transition: transform 0.3s ease; /* テキスト変形のトランジション */
    transform-origin: left center; /* 左側を基準点に設定 */
}

.story__shoplink .arrow {
    flex-grow: 1; /* 残りスペースを全て使用 */
    height: 1px;
    background-color: #000;
    margin-left: 1rem;
    position: relative;
    transition: all 0.3s ease;
    transform-origin: left;
}

.story__shoplink:hover .arrow {
    background-color: #ff6b35;
    transform: scaleX(1.1); /* 線が少し伸びる */
    margin-left: 20px; 
}

.story__shoplink .arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #000;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    transition: all 0.3s ease;
}

.story__shoplink:hover .arrow::after {
    border-left-color: #ff6b35;
    transform: translateY(-50%) translateX(5px); /* 矢印が右に移動 */
}

.story__image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}
/* タブレット・スマホ共通 */
@media screen and (max-width: 767px) {
    .story__image {
        max-width: 60%;
    }

}

/* ====================
   製品案内セクション
==================== */
.products {
    padding: 80px 0;
}

.product {
    display: flex;
    gap: 6rem;
    margin-bottom: 8rem;
}

.product:last-child {
    margin-bottom: 0;
}

/* 360商品紹介 */
.viewer360-wrap {
    max-width: 560px;
    margin: 24px auto;
    text-align: center;
    margin-top: 108px;
}
.cloudimage-360 {
    width: 100%;
    outline: none;
    user-select: none;
    -webkit-user-drag: none;
}
/* タブレット・スマホ共通 */
@media screen and (max-width: 767px) {
    .viewer360-wrap {
        margin-top: 24px;
    }
}
/* 
.product__images1 {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background-image: url(../images/products01.webp);
    background-repeat: no-repeat;
    background-position: right;
    min-height: 650px;}
 */
.product__images2 {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background-image: url(../images/products02.webp);
    background-repeat: no-repeat;
    background-position: right;
    min-height: 650px;
}

/* タブレット・スマホ共通 */
@media screen and (max-width: 767px) {
    .product__images1,
    .product__images2 {
        /* background-size: cover; */
        background-position: center;
        /* min-height: 400px; */
    }
}

.product__main-image {
    width: 100%;
    border-radius: 8px;
}

.product__sub-images {
    display: flex;
    gap: 1rem;
}

.product__sub-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
}

.product__info {
    flex: 1;
}

.product__name {
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", sans-serif;
    font-size: 2.4rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.product__description {
    font-size: 1.6rem;
    color: #666;
    margin-bottom: 3rem;
}

.product__specs {
    width: 100%;
    border-collapse: collapse;
}

.product__specs th,
.product__specs td {
    padding: 1.2rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid #eee;
    font-size: 1.4rem;
}

.product__specs th {
    background-color: #f8f8f8;
    font-weight: 500;
    width: 120px;
}

/* ====================
   耐久性セクション
==================== */
.durability {
    padding: 80px 0;
    background-color: #fafafa;
    background-image: url(../images/durabilitybg@2x.webp);
    background-size: cover;
    min-height: 800px;
}

.durability__content {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.durability__text {
    flex: 2;
    min-height: 500px;    
}
.durability__text h2 {
    font-size: 3.8rem;
}

.durability__text .highlight {
    color:#000;
    font-size: 4.5rem;
}
/* タブレット・スマホ共通 */
@media screen and (max-width: 767px) {
    .durability {
        background-size: cover;
        background-position: 30% -200px;
    }
    .durability__text {
        padding-top: 5rem;
    }
    .durability__text h2 {
        font-size: 2.5rem;
    }
    .durability__text .highlight {
    font-size: 3rem;
    }
}

.durability__description {
    font-size: 1.8rem;
    line-height: 1.8;
}

.durability__images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.durability__images2 {
    margin-top: -150px;
}
.durability__images2 img {
    margin: auto;
}

/* ====================
   活用例セクション
==================== */
.usage {
    padding: 80px 0;
}

.usage__content {
    display: flex;
    align-items: flex-start;
    gap: 6rem;
}

.usage__text {
    flex: 1;
}

.usage__list {
    font-size: 1.6rem;
    line-height: 1.8;
}

.usage__list li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.usage__list li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #ff6b35;
}

.usage__images {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.usage__image {
    border-radius: 8px;
}

.usage__image:first-child {
    grid-column: 1 / -1;
}

/* ====================
   バナーセクション
==================== */
.banner__content h2 {
    font-size: 2rem;
    text-align: center;    
}

.banner__content img {
    margin: auto;
}

.banner__content2 {
    display: flex;
    gap: 2rem; /* リンク間の余白（お好みで調整） */
    align-items: center; /* 垂直方向中央揃え（必要なら） */
    justify-content: center; /* 水平方向中央揃え（必要なら） */
}
.banner__content2 a + a {
    margin-left: 20rem;
}

.banner__content,.banner__content2 {
    margin: 10rem 0;
}
/* タブレット・スマホ共通 */
@media screen and (max-width: 767px) {
    .banner__content h2 {
    font-size: 1.2rem;
    }
    .banner__content2 {
        /* margin: 50px 0; */
    }
    .banner__content2 a + a {
    margin-left: 7rem;
    }
}

.banner__shoplink img {
    transition:
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, box-shadow;
}

.banner__shoplink:hover img {
    transform: translateY(-12px);
}

/* ====================
   お問合せセクション
==================== */
.contact {
    padding: 80px 0;
    background-color: #fafafa;
}

.contact .section-title {
    text-align: center;
}

.contact__content {
    max-width: 600px;
    margin: 0 auto;
}

.contact__form {
    background-color: #fff;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 3rem;
}

.form-label {
    display: block;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #333;
}

.required {
    color: #ff6b35;
    font-weight: 700;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1.4rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    background-color: #ff6b35;
    color: #fff;
    border: none;
    padding: 1.5rem 4rem;
    font-size: 1.6rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.form-submit:hover {
    background-color: #e55a2b;
}

/* ====================
   フッター
==================== */
.footer {
    color: #000;
    padding: 4rem 0 2rem;
}

.footer__content {
    text-align: center;
}

.footer__nav {
    margin-bottom: 3rem;
}

.footer__nav-list {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer__nav-link {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer__nav-link:hover {
    color: #ff6b35;
}

.footer__brand {
    margin-bottom: 2rem;
}

.footer__brand-name {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin: auto;
    max-width: 235px;
}

.footer__copyright {
    font-size: 1.2rem;
    color: #999;
}

/* ====================
   レスポンシブデザイン
==================== */

/* タブレット */
@media screen and (max-width: 1199px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
    
    .section-title {
        font-size: 2.4rem;
        margin-bottom: 3rem;
    }
    
    .hero__content,
    .concept__content,
    .story__content,
    .durability__content,
    .usage__content {
        gap: 4rem;
    }
    
    .product {
        gap: 4rem;
    }
}

/* タブレット・スマホ共通 */
@media screen and (max-width: 767px) {
    .hero {
        min-height: 80vh; /* スマホでも70%維持 */
        padding-bottom: 60px; /* 適切な余白確保 */
    }
    
    .container {
        padding: 0 20px;
    }
    
    /* ヘッダー - モバイル専用スタイル */
    .header {
        /* background-color: rgba(255, 255, 255, 0.95) !important; */
        /* backdrop-filter: blur(10px);
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        border-bottom: 1px solid #eee; */
        /* トランジションを維持 */
        transition: all 0.3s ease !important;
    }
    
    .header__inner {
        background-color: #fff;
        border-radius: 0 !important;
        padding: 0 20px;
        height: 70px !important;
        /* 下側のみシャドウ */
        box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.1);
        /* トランジションを維持 */
        transition: all 0.3s ease !important;
    }
    
    /* スマホでもスクロール時のアニメーション対応 */
    .header.scrolled {
        /* background-color: rgba(255, 255, 255, 0.98) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important; */
    }
    
    .header.scrolled .header__inner {
        height: 55px !important;
        padding-top: 5px;
        padding-bottom: 5px;
    }
    
    .header__nav {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* セクション */
    .hero,
    .concept,
    .story,
    .products,
    .durability,
    .usage,
    .contact {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
        text-align: center;
    }
    
    /* ヒーロー */
    .hero {
        padding-top: 100px;
    }
    
    .hero__content {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .hero__title {
        font-size: 3.6rem;
    }
    
    .hero__subtitle {
        font-size: 1.8rem;
    }
    
    /* コンセプト */
    .concept__content {
        flex-direction: column;
        gap: 3rem;
    }
    
    /* 想い */
    .story__content {
        flex-direction: column;
        gap: 3rem;
    }
    
    /* 製品案内 */
    .product {
        flex-direction: column;
        gap: 3rem;
        margin-bottom: 6rem;
    }
    
    .product__specs th,
    .product__specs td {
        padding: 1rem;
        font-size: 1.3rem;
    }
    
    .product__specs th {
        width: 100px;
    }
    
    /* 耐久性 */
    .durability__content {
        flex-direction: column;
        gap: 3rem;
    }
    
    /* 活用例 */
    .usage__content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .usage__images {
        grid-template-columns: 1fr;
    }
    
    .usage__image:first-child {
        grid-column: 1;
    }
    
    /* お問合せ */
    .contact__form {
        padding: 3rem 2rem;
    }
    
    /* フッター */
    .footer__nav-list {
        flex-direction: column;
        gap: 2rem;
    }
}

/* スマホ（小） */
@media screen and (max-width: 480px) {
    .hero__title {
        font-size: 3.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact__form {
        padding: 2.5rem 1.5rem;
    }
    
    .form-submit {
        padding: 1.2rem 3rem;
        font-size: 1.4rem;
    }
}

/* ====================
   アニメーション・トランジション
==================== */
.hero__content,
.concept__content,
.story__content,
.product,
.durability__content,
.usage__content {
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* スクロール時のアニメーション用（JSで制御） */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ====================
   オンラインショップタブ
==================== */
.online-shop-tab {
    position: fixed;
    top: 50vh; /* 上から70% */
    right: 0;
    width: 70px;
    height: 150px;
    background-color: #fcc23a;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
}
.online-shop-tab:hover {
    width: 100px; /* 30px伸びる */
    right: 0;
}
.online-shop-tab__text {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 2px;
    transform: rotate(90deg);
    white-space: nowrap;
    transition: font-size 0.3s ease;
    color: #333;
    margin-right: 10px;;
}
.online-shop-tab:hover .online-shop-tab__text {
    font-size: 1.6rem;
}
/* スマホ用の調整 */
@media screen and (max-width: 767px) {
    .online-shop-tab {
        width: 40px;     /* 少し小さく */
        height: 120px;   /* 少し小さく */
        top: 65vh;       /* 位置調整 */
    }
    
    .online-shop-tab__text {
        font-size: 1.2rem; /* 文字サイズ調整 */
        letter-spacing: 2px;
        margin-right: 0px;;
    }
    
    .online-shop-tab:hover {
        width: 85px;     /* ホバー時のサイズ調整 */
    }
    
    .online-shop-tab:hover .online-shop-tab__text {
        font-size: 1.4rem;
    }
}

