@charset "UTF-8";

/* ==========================================================================
   ユーザー設定（ルートのフォントサイズ）
   ========================================================================== */
html {
    /* PC：1rem = 10px (16pxの62.5%) */
    font-size: 62.5%;
    scroll-behavior: smooth;
}

@media (max-width: 750px) {
    html {
        font-size: 56.25%;
    }
}

/* ==========================================================================
   全体レイアウト・共通設定（PCデフォルト）
   ========================================================================== */
body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-size: 1.6rem;
    /* 16px */
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
    /* ベースの背景色 */
    position: relative;
    /* 擬似要素の基準にするため追加 */
    z-index: 0;
    /* 重なり順の基準にするため追加 */
}

/* 背景画像だけを半透明にして敷くための設定 */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-image: url("img/karaage.jpg");
    /* 画像のパス */
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;

    opacity: 0.5;
    /* ★ここで透明度を調節します（0.5 = 50%） */
    z-index: -1;
    /* LPコンテンツ（.lp-container）よりも奥に配置 */
}

/* 画像の基本設定 */
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

.lp-container {
    max-width: 1024px;
    /* 1024pxに固定 */
    margin: 0 auto;
    overflow: hidden;
    /* 横スクロール（文字飛び出しなど）の防止 */
    background-color: #ffffff;
}

/* サイトコンテンツのインナー幅（デザインに応じた共通の幅） */
.inner {
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 750px) {
    .inner {
        padding: 0 20px;
        /* SP時は左右の余白を狭める */
    }
}

/* ==========================================================================
   各パーツのスタイリング（PCベース）
   ========================================================================== */

/* メインビジュアル */
.fv {
    width: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* セクション共通 */
.concept {
    margin-top: 20px;
}

.section-title {
    font-size: 2.8rem;
    /* 28px */
    text-align: center;
    margin-bottom: 40px;
}

.text {
    font-size: 2.6rem;
    /* PC時：26px */
    text-align: left;
    width: 94%;
    margin: 0 auto;
}

.brandName {
    width: 100%;
    font-size: 3.6rem;
    font-weight: 700;
    text-align: center;
    padding: 50px 0 0 0;
}

.brand {
    width: 86%;
    padding-top: 30px;
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   ボタンエリア
   -------------------------------------------------------------------------- */
.btn-area {
    text-align: center;
    margin-top: 40px;
}

.btn-link {
    display: inline-block;
    width: 100%;
    max-width: 600px;
    transition: opacity 0.3s ease;
}

.btn-link:hover {
    opacity: 0.8;
}

/* --------------------------------------------------------------------------
   スライドセクション（モーダル・カード装飾）
   -------------------------------------------------------------------------- */
.slide {
    background-color: #fff;
    margin-top: 60px;
}

/* 各スライド内の動画カードの装飾 */
.video-card {
    display: block;
    width: 100%;
    text-decoration: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

/* ホバー時にカード全体を持ち上げる */
.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

/* 縦長(9:16)を維持するためのラッパー処理 */
.video-card__thumbnail {
    position: relative;
    width: 100%;
    padding-top: 177.77%;
    /* 縦横比9:16 */
    background-color: #000;
}

/* 枠線いっぱいに画像を配置 */
.video-card__thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease;
}

/* ホバー時に画像を少し暗くする */
.video-card:hover .video-card__thumbnail img {
    filter: brightness(0.8);
}

/* ご指定画像の白い再生ボタン風マーク */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

/* 再生マーク（▶） */
.play-button::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent #333333;
    margin-left: 4px;
}

.video-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: #ffffff;
}

/* Splideのデフォルトの左右矢印 */
.splide__arrow {
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    opacity: 1;
}

.splide__arrow svg {
    fill: #333333;
    width: 20px;
    height: 20px;
}

.splide__arrow:hover {
    background-color: #f1f1f1;
}

/* --------------------------------------------------------------------------
   モーダルポップアップのCSS
   -------------------------------------------------------------------------- */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal.is-active {
    opacity: 1;
    visibility: visible;
}

.video-modal__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.video-modal__content {
    position: relative;
    width: 90%;
    max-width: 400px;
    /* ショート動画(縦長)なので横幅を絞る */
    aspect-ratio: 9 / 16;
    z-index: 1010;
}

.video-modal__video {
    width: 100%;
    height: 100%;
    background-color: #000;
    border-radius: 12px;
    overflow: hidden;
}

.video-modal__close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background: none;
    border: none;
}

.video-modal__close::before,
.video-modal__close::after {
    content: "";
    position: absolute;
    top: 14px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #fff;
}

.video-modal__close::before {
    transform: rotate(45deg);
}

.video-modal__close::after {
    transform: rotate(-45deg);
}

/* フッター */
.footer {
    background-color: #333333;
    color: #ffffff;
    text-align: center;
    padding: 40px 0;
    margin-top: 30px;
}

.copyright {
    font-size: 1.4rem;
}


/* ==========================================================================
SNSアイコンエリアの設定
========================================================================== */
.sns-area {
    width: 100%;
    margin: 40px auto;
    text-align: center;
}

.sns-list {
    display: flex;
    justify-content: center; /* 中央寄せ */
    align-items: center;
    gap: 40px;              /* ★アイコン同士の間隔*/
}

.sns-item {
    width: 42px;            /* ★アイコンサイズ*/
    height: auto;
}

.sns-item a {
    display: block;
    transition: opacity 0.3s ease;
}

.sns-item a:hover {
    opacity: 0.7;           /* マウスホバーで少し薄くする */
}

/* --- スマホ表示用（画面幅750px以下）の設定 --- */
@media (max-width: 750px) {
    .sns-area {
        margin: 30px auto;
    }

    .sns-list {
        gap: 28px;          /* ★アイコン同士の間隔*/
    }

    .sns-item {
        width: 35px;        /* ★アイコンサイズ*/
    }
}

/* ==========================================================================
   SP専用スタイル（@media (max-width: 750px) のみを使用）
   ========================================================================== */
@media (max-width: 750px) {
    .lp-container {
        width: 100%;
    }

    .fv {
        width: 100%;
    }

    .concept {
        margin-top: 20px;
    }

    .text {
        font-size: 1.6rem;
        width: 100%;
    }

    .brandName {
        font-size: 2.6rem;
        padding: 30px 0 0 0;
    }

    .brand {
        width: 100%;
        padding-top: 20px;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 24px;
    }

    .btn-area {
        margin-top: 30px;
    }

    .btn-link {
        max-width: 100%;
    }

    .play-button {
        width: 46px;
        height: 46px;
    }

    .play-button::before {
        border-width: 9px 0 9px 15px;
        margin-left: 3px;
    }
}
