@charset "UTF-8";

/* -------------共通設定------------- */
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
html {
    scroll-behavior: smooth;
}
body{
    font-family: "Noto Serif JP", serif;
}
h1{
    font-size: 36px;
}
h2{
    font-size: 32px;
    font-weight: 300;
}
h3{
    font-size: 24px;
}
h4{
    font-size: 16px;
}
p{
    font-size: 16px;
    line-height: 2.5;
}
img{
    width: 100%;
}
.btn{
    display: inline-block;
    font-size: 24px;
    color: #60828E;
    border: 2px solid #60828E;
    background-color: #fff;
    text-decoration: none;
    padding: .5em 4em;
    margin-top: 2em;
    margin-bottom: 6em;
    transition: all 0.3s;
}
.btn:hover{
    background: #60828E;
    color: white;
    transition: all 0.3s;
}
.scroll-section{
    scroll-margin-top: 75px;
}

/* -------------ヘッダー------------- */
.header{
    background-color: #60828E;
    height: 75px;
    display: block;
    position: fixed;
    z-index: 20;
    /* --------!!!!!ここ解除する!!!!!--------- */
    /*     position: fixed; */
    /*     z-index: 20; */
    width: 100%;
}
.nav-outer{
    display: flex;
    padding: 0.6em 1em;
    justify-content: space-between;
}
.menu{
    display: flex;
    align-items: center;
    gap: 1%;
    justify-content: flex-end;
}
.menu-button{
    width: 180px;
    text-align: center;
}
.menu a:hover{
    opacity: 0.7;
    transition: all 0.3s;
}
.menu a{
    margin: 0 auto;
    background-color: #fff;
    padding: 1em 3em;
    text-decoration: none;
    opacity: 0.6;
    color: #117B96;
    border-radius: 10px;
}
.menu-close{
    display: none;
}
.logo-outer{
    width: 70px;
    height: auto;
}

/* --------------top-------------- */
.home{
    background:url(../image/hero-pc.webp) center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
}
.catch-img{
    position: relative;
}
.catch-copy{
    position: absolute;
    width: 60%;
    height: 100%;
    background-color: #A3B7BE;
    background: linear-gradient(to right, #A3B7BE 60%, rgba(163, 183, 190, 0));
}
.text{
    color: #fff;
    top: 40%;
    position: absolute;
    z-index: 10;
    padding: 0 3em;
}
.text p{
    padding: 3em 0;
    line-height: 2;
}
.hamburger {
    display: none;
    font-size: 2em;
    color: white;
    cursor: pointer;
}
.sns-icons{
    display: none;
}

/* --------------コンセプト------------- */

.concept{
    width: 100%;
    height: 100%;
}
.concept-text{
    background: url(../image/about-pc.png)center/cover no-repeat;;
    width: 100%;
/*     background-attachment: fixed;  *//* ←これがポイント！ */
    min-height: 75vh; 
    text-align: center;
    color: #fff;
    justify-content: center; /* ←Y軸の中央に */
    align-items: center;/* X軸方向の中央寄せ */
    display: flex;/* 要素の並べ替えや整列が簡単になる */
    flex-direction: column;/* 縦並びにする（デフォルトは横並び） */
}
.concept-text h1{
    padding-bottom: 1em;
}
.concept-text h2{
    border-bottom: 2px solid #fff;
}
.concept-text p{
    padding-top: 3rem;
}

.slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
/*     height: 120px;  *//* お好みで高さ調整 */
}

.slider {
    display: flex;
    width: calc(200%); /* 画像2枚分 */
    animation: scroll-left 40s linear infinite;
}

.slider img {
    width: 65%;
    height: auto;
}
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* -------------lineup------------- */
.lineup{
    text-align: center;
    margin-top: 120px;
}
.lineup h2{
    color: #60828E;
}
.lead{
    line-height: 2;
    padding: 2em;
}
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 70%;
    margin: 0 auto;
}
.item {
    width: 100%; /* ←これつけて各セルをフルに使わせる */
    position: relative;
    overflow: hidden;
}
.caption{
    color: #fff;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    width: 100%;
    padding: 10px;
    text-align: center;
    z-index: 2;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
/* 最初は hover用テキスト非表示 */
.hover-caption {
    opacity: 0;
}
/* 通常キャプションは初期表示 */
.normal-caption {
    opacity: 1;
}
/* ホバーしたら切り替え */
.item:hover .hover-caption {
    opacity: 1;
}
.item:hover .normal-caption {
    opacity: 0;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0); /* 初期透明 */
    transition: background 0.3s ease;
    z-index: 1;
}
.item:hover .overlay {
    background: rgba(0,0,0,0.5);
}


/* -------------foryou------------- */
.foryou{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 4em 2em;
    text-align: center;
    background-image: url(../image/Foryou-pc.webp);
    position: relative;
    color: #7D5827;
    margin: 0 auto;
    background-position: center;
    background-size: cover;
}
.foryou h2{
    color: #117B96;
    margin-bottom: 2.5em;
}
.foryou h3{
    margin-bottom: 1.5em;
}
.foryou::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.5); /* ←ここで白さ調整 */
    z-index: 0;
}
.foryou > * {
    position: relative;
    z-index: 1; /* 中身を前に出す */
}
.icon-outer{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.7); 
    border-radius: 20px;
    max-width: 1000px;
    flex-wrap: wrap;
}
.icon{
    padding: 1em 2em;
}
.icon img{
    width: 150px;
    height: 150px;
}
.icon-read{
    margin-top: 3em;
}
.foryou p{
    line-height: 1.5;
}
/* --------------インフォ------------- */
.info{
    text-align: center;
    padding: 120px 20px;
    display: block;
}

.info h2{
    margin-bottom: 40px;
    color: #60828E;
    text-align: center;
}

.info-cards{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.info-card{
    width: 340px;
    text-align: left;
    background-color: #fff;

}
.info-cards a{
    text-decoration: none;
    color: #000;
}
.info-cards a:hover{
    opacity: 0.7;
    transition: all 0.3s;
}
.info-card img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}
.info-content {
    padding: 3px 8px;
}
.info-date {
    font-size: 13px;
    color: #999;
}
.info-meta {
    display: flex;
    align-items: center;
    gap: 8px; /* 間隔あける */
    flex-wrap: wrap; /* ← 小さい画面で折り返したいならつける */
}
.info-tags{
    margin: 4px 0;
}
.tag{
    display: inline-block;
    font-size: 12px;
    color: #fff;
    background-color: #A3B7BE;
    border-radius: 12px;
    padding: 2px 8px;
    margin-right: 5px;
}
.info-title{
    font-size: 16px;
    font-weight: 500;
    margin: 2px 0 6px;
    border-bottom: 1px solid #000;
}
.info-text{
    font-size: 12px;
    color: #000;
    line-height: 2;
}
.info-button-wrapper{
    margin-top: 40px;
    display: flex;
    justify-content: center;
}
.info-button{
    display: inline-block;
    border: 2px solid #60828E;
    color: #60828E;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    text-align: center;
}
.info-button:hover{
    background-color: #60828E;
    color: #fff;
}


/* --------------フッター------------- */
.footer {
    background-color: #60828E;
    padding: 40px 20px;
    text-align: center;
    color: #fff;
}

.logo {
    width: 95px;
    margin-bottom: 20px;
}

.icons {
    margin-bottom: 20px;
}

.icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff; /* アイコン白 */
    background-color: #A3B7BE;
    margin: 0 10px;
    font-size: 35px;
    width: 70px;
    height: 70px;
    border-radius: 50%; /* 丸 */
    transition: all 0.3s ease;
}
.icons a:hover {
    opacity: 0.7;
}
.menu-footer {
    margin-bottom: 20px;
}
.menu-footer a {
    margin: 0 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 100;
    position: relative;
}
.menu-footer a:not(:first-child)::before {
    content: "|";
    color: #fff;
    margin-right: 20px;
}
.shop-info{
    padding: 1.5rem 0;
}
.copyright {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* -------note-------*/
.note{
    text-align: center;
    padding: 2em 0;
    color: #60828E;
}

@media screen and ( max-width: 639px ){
    /* ------共通設定-------*/
    h1{
        font-size: 24px;
    }
    h2{
        font-size: 22px;
    }
    h3{
        font-size: 16px;
    }
    h4{
        font-size: 16px;
    }
    p{
        font-size: 13px;
        line-height: 2.5;
    }
    .btn{
        display: inline-block;
        font-size: 20px;
        color: #60828E;
        border: 2px solid #60828E;
        background-color: #fff;
        text-decoration: none;
        padding: 1em ;
        margin-top: 2em;
        margin-bottom: 6em;
        width: 80%;
    }

        /* ----------ヘッダー-----------*/
    .menu{
        display: none;
        flex-direction: column;
        background-color: #fff;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        padding: 1em 0;
        max-width: 70%;
        z-index: 100;
        display: flex;
        transform: translateX(100%);
        transition: transform 0.4s ease;
    }
    .menu-close{
        display: block;
        color: #A3B7BE;
        font-size: 40px;
        align-self: flex-end;
        padding-right: 20px;
        cursor: pointer;
    }
    .menu.show{
        display: flex;
        border-radius: 20px;
        border-top-right-radius: 0;
        transform: translateX(0); 
    }
    .menu a{
        padding: 1em;
        margin: 1em 0;
        background-color: none;
        opacity: 0.9;
        text-align: center;
    }
    .hamburger{
        display: block;
        align-self: center;
    }
    .nav-outer{
        align-items: center;
    }
    .sns-icons{
        display: flex;
        justify-content: center;
        gap: 1em;
    }
    
    .sns-icons a {
        display: flex;
        background-color: #A3B7BE;
        color: #fff;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        font-size: 2em;
        transition: 0.3s ease;
        align-items: center;
        justify-content: center;
    }
    
    .sns-icons a:hover {
        opacity: 0.7;
    }

    /* ---------top--------- */
    .home {
        display: block; /* ← flexやめて、縦並びに */
        background: url(../image/hero-mobile.webp) center/cover no-repeat;
        background-size: cover;
        background-position: center;
        align-items: flex-end;
        position: relative;
    }
    .item:hover .overlay,
    .item:hover .hover-caption {
        background: none;
        opacity: 1;
    }
    .catch-copy {
        width: 100%;
        height: auto;
        background: linear-gradient(to top, #A3B7BE 70%, rgba(163, 183, 190, 0)); /* ← 下から上へグラデ！ */
        padding: 3em 1.5em;
        padding-top: 8em;
        position: absolute;
        bottom: 0; 
    }
    .text {
        position: static;
        color: #fff;
        text-align: left;
        bottom: 10%;
    }
    .text p {
        padding: 1.5em 0;
    }

    /* -----------concept------------ */
    .concept-text{
        min-height: 60vh;
    }
    .slider img {
        width: 250%;
        height: auto;
        object-fit: cover;
    }

    /* -----------concept------------ */
    .item{
        width: 100%;
        display: flex;
        pointer-events: none;
    }
    .grid{
        grid-template-columns: 1fr;
        width: 100%;
    }
    .grid .caption {
        display: block; /* キャプション部分を常に表示 */
        opacity: 1;     /* フェードイン無効にする */
        transform: none; /* アニメーション解除 */
        position: static; /* 絶対位置を無効にして自然なフローにする */
        left: 0%;
        top: 0%;
        padding-bottom: 10px;
    }
    .item img{
        width: 50%;
    }
    .overlay{
        display: none;/* 非表示 */
    }
    .item:hover .overlay {
        background: none;
        z-index: 0;
    }
    .captions{
        background-color: #60828E;
        width: 50%;
        justify-content: center;
        padding: 20px 0;
    }
    .normal-caption {
        display: block;
        position: absolute;
    }
    .hover-caption{
        display: block;
        opacity: 0.8;
    }
    .hover-caption p{
        line-height: 1.5;
        font-size: 10px;
    }
    /* -------------foryou------------- */
    .icon-outer{
        grid-template-columns: 2fr;
        padding: 10px;
        width: 95%;
    }
    .icon{
        padding: 1em 10px;
        width: 50%;
    }
    /* --------------information-------------- */
    
    .info-card{
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
}