@charset "UTF-8";

/* Reset & Base Styles */


a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.7;
    color: #333;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

/* Common Layout: Section & Inner */
section {
    width: 100%;
    padding: 40px 0; /* 上下の余白 */
}

section.curriculum{
    padding-bottom:150px
}

/* __inner の共通設定 (中央寄せ・幅制限) */
[class$="__inner"] {
    max-width: 1000px; /* コンテンツ幅 */
    margin: 0 auto;
    padding: 0 20px;   /* スマホ時の左右余白 */
}
.concept__inner{
    max-width: 810px;
}
/* Section Title Style */
.section-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}
.section-title small {
    font-size: 0.8rem;
    color: #666;
    margin-left: 10px;
    font-weight: normal;
}



/* ------------------------------------------------
   Hero Section (Slider)
------------------------------------------------ */

.hero {
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    position: relative;
    z-index: 1; /* コンセプトより背面に配置 */
    /* background-color: #f9f9f9; */
    z-index: 9;
}

/* スライドのページネーション（点々）の位置調整 */
/* 白いボックスが被っても点が見えるように少し上に移動させます */
.hero .swiper-pagination {
    bottom: 0px !important; /* ボックスの被り具合に合わせて調整 */
    z-index: 999999999999999999999999999;
}

/* スマホ表示での調整 */
@media (max-width: 768px) {
    .hero .swiper-pagination {
        bottom: 50px !important;
    }
}


/* Swiper本体の調整 */
.swiper {
    width: 100%;
    height: auto;
    border-radius: 8px; /* 角丸にしたい場合 */
}

.swiper-slide {
    position: relative;
    width: 100%;
}

.hero__image-wrapper {
    position: relative;
    text-align: center;
    width: 100%;
}

/* 画像をしっかり広げる */
.hero__image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.hero__text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    color: #333;
    text-shadow: 0 0 10px rgba(255,255,255,0.8);
    z-index: 10; /* 画像より手前に */
}

/* Swiperのナビゲーション（矢印）の色変更: 必要であれば */
.swiper-button-next,
.swiper-button-prev {
    color: #fff; /* 白い矢印 */
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
}

/* Swiperのページネーション（下の点）の色変更 */
.swiper-pagination-bullet-active {
    background: #333;
}
/* ------------------------------------------------
   Concept Section - Pattern A (Luxury)
------------------------------------------------ */
.concept {
    background-color: transparent;
    padding: 80px 0 80px 0;
    /* margin-top: -60px; */   /* スライドにボックスを被せる（食い込ませる） */
    position: relative;
    z-index: 2;
}

/* 背景のグラデーション設定 */
.concept::before {
    content: "";
    display: block;
    position: absolute;
    /* スライドの終わりの位置（被せている分60px下）から背景スタート */
    top: 60px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;

    /* ★ここが変更点: グラデーションで自然に流す */
    /* 上部は白(#fff)で始まり、150pxかけて徐々にグレー(#f9f9f9)になる */
    background: linear-gradient(to bottom, #ffffff 0%, #f9f9f9 150px, #f9f9f9 100%);
    
    /* ※もしサイト全体の背景が白以外の場合は、#ffffff をその色に合わせてください */
}

/* コンセプトボックスのスタイル（変更なし・確認用） */
.concept__box {
    background-color: #fff;
    padding: 60px 40px;
    text-align: center;
    /* 浮遊感を出すための影 */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}


.concept__box {
    background-color: #fff;
    padding: 60px 40px;
    text-align: center;
    /* 影を少し強めにして「浮遊感」を出す */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.09);
    border-radius: 4px;
    /* margin: -50px 0 0; */
    }

/* タイトル：明朝体で優雅に */
.concept__box h3 {
    font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #222;
    margin: -81px 0 0;
}

/* サブタイトル（サロンから始まる...） */
.concept__box > p:first-of-type {
    font-size: 0.9rem;
    color: #a59aca; /* 少しアクセントカラー（淡い色味）を入れるとお洒落 */
    /* またはゴールド系なら #bfb5a2 など */
    margin-bottom: 35px;
    letter-spacing: 0.15em;
    font-weight: bold;
}

/* 本文 */
.concept__description {
    font-size: 0.95rem;
    line-height: 2.2; /* 行間を広く取って読みやすく */
    color: #555;
    text-align: justify; /* 両端揃え（または center でもOK） */
    text-align-last: center; /* 最後の行だけ中央寄せ */
    font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .concept__box {
        padding: 40px 20px;
    }
    .concept__box h3 {
        font-size: 1.4rem;
    }
    .concept__description {
        text-align: left; /* スマホは左寄せの方が読みやすい場合が多い */
        text-align-last: left;
    }
}
/* ------------------------------------------------
   Nav Buttons Section (Luxury Design)
------------------------------------------------ */
.nav-buttons {
    padding: 60px 0; /* 上下の余白を少し広げて優雅に */
    margin-top: -60px;
    position: relative;
    z-index: 9;
}

.nav-buttons__inner {
    display: flex;
    justify-content: space-between;
    gap: 20px; /* ボタン同士の間隔を少し広げる */
}

.btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 32%;
    padding: 25px 0; /* 高さを出して存在感をアップ */
    border-radius: 3px; /* 角を少しだけ丸めてシャープかつ上品に */
    text-align: center;
    border: 1px solid #ccc;
    transition: all 0.4s ease; /* ホバー時の動きを滑らかに */
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.09);
}

/* 英語タイトル（Use LOOK等） */
.btn__title {
    font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif; /* 明朝体 */
    font-weight: 500;
    font-size: 1.2rem; /* 少し大きく */
    display: block;
    letter-spacing: 0.1em; /* 文字間を広げる */
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

/* 日本語サブテキスト */
.btn__sub {
    font-family: "Helvetica Neue", Arial, sans-serif; /* 日本語はゴシックで読みやすく */
    font-size: 0.7rem;
    display: block;
    opacity: 0.8;
    letter-spacing: 0.05em;
    z-index: 1;
}

/* ------------------------------------------------
   Button Color Variations
------------------------------------------------ */

/* White Button: 白背景に黒枠 */
.btn--white {
    background-color: #fff;
    color: #111;
    border: 1px solid #111; /* 薄いグレーではなく黒枠で引き締める */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.09);
}
.btn--white:hover {
    background-color: #111;
    color: #fff;
}

/* Gray Button: 上品なグレー */
.btn--gray {
    background-color: #7d7d7d; /* デフォルトのグレーより深みのある色に */
    color: #fff;
    border: 1px solid #7d7d7d;
}
.btn--gray:hover {
    background-color: #555;
    border-color: #555;
    opacity: 1; /* opacity遷移ではなく色変化で表現 */
    color: #ffff;
}

/* Black Button: 深い黒 */
.btn--black {
    background-color: #111;
    color: #fff;
    border: 1px solid #111;
}
.btn--black:hover {
    background-color: #fff;
    color: #111;
    opacity: 1;
}

/* ------------------------------------------------
   Responsive (Mobile)
------------------------------------------------ */
@media (max-width: 600px) {
    .nav-buttons__inner {
        flex-direction: column; /* スマホでは縦並びにする場合 */
        gap: 15px;
    }
    .btn {
        width: 100%; /* 横幅いっぱいに */
        padding: 20px 0;
        flex-direction: row; /* スマホでは横並びレイアウトにして高さを抑える */
        gap: 15px;
        align-items: baseline;
    }
    .btn__title {
        font-size: 1.1rem;
        margin-bottom: 0;
    }
    .btn__sub {
        font-size: 0.65rem;
    }
}

/* ------------------------------------------------
   Works / Blog Section (4 columns)
------------------------------------------------ */
.works__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.img-box {
    background-color: #ccc;
    height: 150px; /* プレースホルダー高さ */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.section-label {
    margin-bottom: 10px;
    font-weight: bold;
}

/* ------------------------------------------------
   Instagram Section
------------------------------------------------ */
.instagram__header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.icon-insta {
    font-size: 24px;
    margin-right: 10px;
}
.instagram__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6列 */
    gap: 10px;
}
.instagram__grid .insta-item{
    position: relative;
}
.instagram__grid .insta-item a{
    position: relative;
}
.instagram__grid .insta-item  figure{
    overflow: hidden;
    position: relative;
    height: 250px;
    padding-bottom: 30px;
    background-color: #000;
    box-sizing: content-box;
}

.instagram__grid .insta-item video{
        width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    right: 0;
    z-index: 99999;
}

.instagram__grid .insta-item a figure img{
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    right: 0;
    z-index: 99999;
}
.instagram__grid .insta-item  figcaption{
    position: absolute;
    /* top: 50%; */
    left: 0;
    right: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .4);
    -webkit-transition: .3s;
    transition: .3s;
    opacity: 1;
    display: flex;
    margin: 0 auto;
    color: #fff;
    align-items: center;
    justify-content: center;
    z-index: 9999999999;
    height: 20px;
    align-items: center;
    bottom: 4px;
}
.instagram__grid .insta-item  figcaption a{
    display: flex;
    color: #fff !important;
}
.instagram__grid .insta-item  figcaption p.likes{
    padding: 0 5px 0 0px;
}
.instagram__grid .insta-item  figcaption p.coments{
    padding: 0 0px 0 5px;
}
.instagram__grid .insta-item  figcaption p i{
    color: #fff;
}

/* スマホなどのレスポンシブ対応 */
@media (max-width: 768px) {
    .instagram__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ------------------------------------------------
   Column & Movie Section (Grid Cards)
------------------------------------------------ */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.card {
    text-align: center;
}
.card__img {
    background-color: #ccc;
    height: 180px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.card__text {
    font-size: 0.9rem;
}

/* ------------------------------------------------
   Curriculum Section
------------------------------------------------ */
.curriculum__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2カラム */
    gap: 15px;
}
.curriculum-btn {
    display: block;
    padding: 20px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    border-radius: 4px;
}

/* Colors for curriculum buttons */
.bg-green-light { background-color: #cddc9b; }
.bg-pink-light { background-color: #eab8cb; }
.bg-green { background-color: #9ccb8d; }
.bg-pink { background-color: #f08da5; }
.bg-teal { background-color: #7cc3bd; }
.bg-magenta { background-color: #cf6ba8; }

/* ------------------------------------------------
   Responsive (Mobile)
------------------------------------------------ */
@media (max-width: 600px) {
    /* インナー幅のパディング調整 */
    [class$="__inner"] {
        padding: 0 15px;
    }
    
    /* ボタンを縦並びにする場合 */
    /* デザイン通り横並び維持ならこのままでOKだが、狭すぎる場合は調整 */
    .btn__title {
        font-size: 0.8rem;
    }
    .btn__sub {
        font-size: 0.5rem;
    }

    /* グリッドを崩して1カラムや2カラムにする */
    .works__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .card-grid {
        grid-template-columns: 1fr; /* スマホは1列 */
    }
    .curriculum__grid {
        grid-template-columns: 1fr;
    }
}