@charset "utf-8";

/* 共通 */
html {
    background-color: #FDFAFF;
}

/* 本文用フォント*/
body {
    font-family: "BIZ UDPGothic", sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: #503B2F;
}

/* ナビゲーション展開時にbodyに付与するクラス */
body.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.main {
    width: 100%;
    margin: 0 auto;
}

h1 {
    font-family: "Potta One", system-ui;
}

.header,
.footer {
    width: 100%;
}

.bg-video,
.pc_left_content,
.pc_side_nav_wrapper {
    display: none;
}

/* ------------------
ヘッダー の設定
------------------*/
.header {
    width: 100%;
    background-color: #91AE7E;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header_inner {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    margin: 0 auto;
}

.header_left {
    display: flex;
    gap: 2px;
    align-items: center;
}

.header_right {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* ロゴ */
.logo {
    width: auto;
    height: auto;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img {
    height: 42px;
    width: auto;
}

.logo_text {
    font-size: 18px;
    color: #fff;
}


/* お問い合わせボタン */
.contact_btn {
    display: inline-block;
    font-size: 16px;
    text-align: center;
    padding: 8px 20px;
    min-width: 136px;
    height: 32px;
    background-color: #BFB9A1;
    border-radius: 30px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    line-height: 1;
    color: #503B2F;
    text-decoration: none;
}

.contact_btn:hover {
    opacity: 0.8;
}

/* ハンバーガーメニューの設定(3→×) */
.openbtn {
    position: relative;
    background: #503B2F;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    z-index: 30;
}

.openbtn span {
    position: absolute;
    display: inline-block;
    transition: all .4s;
    left: 10px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    width: 50%;
}

.openbtn span:nth-of-type(1) {
    top: 12px;
}

.openbtn span:nth-of-type(2) {
    top: 19px;
}

.openbtn span:nth-of-type(3) {
    top: 26px;
}

.openbtn.active span:nth-of-type(1) {
    top: 19px;
    left: 10px;
    transform: translateY(0) rotate(-45deg);
}

.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
    top: 19px;
    left: 10px;
    transform: translateY(0) rotate(45deg);
}

/* ハンバーガーメニュー内ナビゲーションの設定 */
#header .navi {
    width: 80%;
    height: 80vh;
    background-color: rgba(191, 185, 161, 0.9);
    position: fixed;
    top: 0;
    right: -80%;
    z-index: 20;
    transition: all 0.6s;
}

#header .navi.active {
    right: 0;
}

#header .navi .menu {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 132px 20px;
    overflow: auto;
    align-items: center;
    gap: 14px;
}

#header .navi .menu li {
    width: 80%;
    text-align: center;
    padding-bottom: 8px;
    position: relative;
}

#header .navi .menu li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 212.5px;
    max-width: 100%;
    height: 1px;
    background-image: repeating-linear-gradient(to right,
            #FDFAFF 0px,
            #FDFAFF 4px,
            transparent 4px,
            transparent 8px);
}

#header .navi .menu li:last-child {
    padding-bottom: 0;
}

#header .navi .menu li:last-child::after {
    content: none;
}

#header .navi .menu a {
    color: #503B2F;
    text-decoration: none;
    display: block;
    font-size: 16px;
}

#header .navi .menu a:hover {
    opacity: 0.8;
}


/* aboutの設定 */
.about {
    height: 610px;
    display: flex;
    padding: 60px 32px;
    gap: 32px;
    flex-direction: column;
    background-image: url(../img/bg_map.svg);
    background-repeat: no-repeat;
    background-position: 10% 80%;
    background-size: contain;
}

.main_title {
    margin: 0 auto;
    padding-bottom: 10px;
    text-align: center;
    gap: 10px;
}

.text_area {
    gap: 12px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-bottom: 10px;
}

.text_area .jp {
    font-size: 25px;
    font-family: "Shippori Mincho";
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    display: block;
}

.text_area .en {
    font-size: 12px;
    font-family: "BIZ UDPGothic";
    letter-spacing: 4.8px;
    display: block;
}

.text_area::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 1px;
    background-color: #91AE7E;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.catchcopy {
    font-size: 20px;
    font-family: "Shippori Mincho";
    line-height: 1.4;
    text-align: center;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25)
}

.bodytext {
    font-size: 16px;
    font-family: "Shippori Mincho";
    line-height: 1.7;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25)
}

/* introの設定 */
.intro {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    height: 482px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/bg_intro.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}

.intro_inner {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    display: flex;
    justify-content: center;

}

.overlay_box {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 40px 16px;
    width: auto;
    max-width: 322px;
    height: auto;
    background-color: rgba(253, 250, 255, 0.5);
    border-radius: 30px;
}

.intro_title {
    text-align: center;
}

/* PC版 */
@media (min-width: 770px) {
    .intro_inner {
        max-width: 100%;
        /* PC版では幅制限を解除 */
    }
}

/* ボタン群の設定 */
.btn_group {
    display: flex;
    justify-content: center;
    padding-bottom: 48px;
    gap: 0;
}

.btn {
    width: 113px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    background-color: #C7B9E6;
    text-decoration: none;
    border-radius: 0 0 20px 20px;
    border: 1px solid #503B2F;
    box-sizing: border-box;
}

.btn p {
    margin: 0;
    line-height: 1;
}

.btn:hover {
    opacity: 0.8;
}

/* seasonの設定 */
.season {
    padding: 48px 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.section_header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.section_title {
    font-size: 25px;
    line-height: 1.4;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25)
}

.section_subtitle {
    font-size: 16px;
    line-height: 1.4;
}

.season_cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.season_card {
    background-color: #fff;
    border-radius: 16px;
    padding: 24px;
    position: relative;
    border: solid 1px #503B2F;
}

.season_label {
    font-size: 40px;
    display: block;
    font-family: "Shippori Mincho";
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25)
}

.season_label--right {
    text-align: right;
}

.season_label--left {
    text-align: left;
}

.season_text {
    text-align: center;
    font-size: 16px;
    margin: 16px 0 16px 0;
    line-height: 1.4;

}

.season_img {
    width: 100%;
}

.season_img img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

/* productの設定 */
.product {
    padding: 48px 24px;
}

.product .section_header .section_subtitle {
    text-align: left;
    margin: 0 16px;
}

.product_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 32px 24px;
}

.product_list:nth-child(odd) .product_img {
    flex-direction: row-reverse;
}

.product_list:nth-child(even) .product_img {
    flex-direction: row;
}

.product_img {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.product_img img {
    width: 250px;
    height: auto;
    object-fit: cover;
    flex-shrink: 0;

}

.product_title {
    font-size: 24px;
    writing-mode: vertical-rl;
    margin: 0;
    flex-shrink: 0;
}

.product_desc {
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* onlineの設定 */
.online {
    gap: 32px;
    padding: 16px 24px 48px;
    display: flex;
    flex-direction: column;
}

.online .section_header .section_subtitle {
    text-align: left;
    margin: 0 16px;
}

.online_btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* accessの設定 */
.access {
    padding: 48px 24px 80px;
    gap: 40px;
    display: flex;
    flex-direction: column;
}

.section_subsubtitle {
    text-align: left;
    margin: 0 16px;
}

.access_img {
    margin-left: -24px;
    margin-right: -24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.access_img img {
    width: 100%;
    display: block;
}

/*  --------------------------
footerの設定
 -------------------------- */
.footer {
    background-color: #FDFAFF;
    background-image: url(../../Common/image/footer.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    text-align: center;
    padding: 80px 0 350px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer_nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer_nav li {
    position: relative;
    padding-bottom: 8px;
}

.footer_nav li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 212.5px;
    max-width: 100%;
    height: 1px;
    background-image: repeating-linear-gradient(to right,
            #FDFAFF 0px,
            #FDFAFF 4px,
            transparent 4px,
            transparent 8px);
}

.footer_nav li:last-child {
    padding-bottom: 0;
}

.footer_nav li:last-child::after {
    content: none;
}

.footer_nav a {
    text-decoration: none;

}

.footer_nav a:hover {
    opacity: 0.8;
}

.footer_logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer_logo a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.footer_logo img {
    height: 40px;
    width: auto;
}

.logo_text {
    font-size: 20px;
    color: #fff;
    font-family: "Potta One";
}

.footer_sns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.footer_sns img {
    width: auto;
    height: 40px;
}

.footer_address {
    line-height: 1.5;
}

.footer-copyright {
    font-family: "Shippori Mincho";
}

/* ==========================
PC版 
==========================*/
@media (min-width: 770px) {
    body {
        position: relative;
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        background-color: transparent;
    }

    /* 🌟htmlの背景色を透明にして、固定背景動画が見えるようにする */
    html {
        background-color: transparent;
    }

    /* 🌟 PC版でPC要素を表示 */
    .bg-video,
    .pc_left_content,
    .pc_side_nav_wrapper {
        display: block;
    }

    /* 全画面動画背景 */
    .bg-video {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: -1;
        overflow: hidden;
    }

    .bg-video video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .main {
        width: 400px;
        margin: 0 auto;
        position: relative;
        z-index: 5;
        background-color: #FDFAFF;
        min-height: 100vh;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .header {
        width: 100%;
        margin: 0;
        position: sticky;
        top: 0;
        z-index: 100;
        background-color: #91AE7E;
    }

    .header_inner {
        max-width: 100%;
        padding: 14px 40px;
        justify-content: space-between;
    }

    /* pcで非表示 */
    .openbtn {
        display: none !important;
    }

    #header .navi {
        display: none !important;
    }

    /* 左側: ロゴとキャッチコピーエリア */
    .pc_left_content {
        display: flex;
        flex-direction: column;
        gap: 96px;
        position: fixed;
        top: 50%;
        left: calc((100vw - 400px) / 4 - 158.5px);
        transform: translateY(-50%);
        width: 317px;
        z-index: 1;
        text-align: center;
    }

    .pc_left_logo {
        margin-bottom: 32px;
    }

    .pc_left_logo img {
        width: 136px;
        height: auto;
    }

    .pc_left_logo .logo_text {
        display: block;
        font-size: 32px;
        color: #fff;
        margin-top: 16px;
        font-family: "Potta One", system-ui;
        text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .pc_catchcopy {
        color: #503B2F;
        font-size: 22px;
        font-family: "Shippori Mincho";
        text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    }

    /* 右側: ナビゲーションエリア */
    .pc_side_nav_wrapper {
        position: fixed;
        top: 50%;
        right: calc((100vw - 400px) / 4 - 158.5px);
        transform: translateY(-50%);
        z-index: 1;
    }

    .pc_side_nav {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 14px;
        width: 317px;
        height: auto;
        background-color: rgba(191, 185, 161, 0.9);
        padding: 80px 0;
    }

    .pc_side_nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .pc_side_nav li {
        position: relative;
        padding-bottom: 10px;
    }

    .pc_side_nav li::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 212.5px;
        max-width: 100%;
        height: 1px;
        background-image: repeating-linear-gradient(to right,
                #FDFAFF 0px,
                #FDFAFF 4px,
                transparent 4px,
                transparent 8px);
    }

    .pc_side_nav li:last-child {
        padding-bottom: 0;
    }

    .pc_side_nav li:last-child::after {
        content: none;
    }

    .pc_side_nav a {
        color: #503B2F;
        text-decoration: none;
        font-size: 18px;
        font-weight: 500;
        display: inline-block;
    }

    .pc_side_nav a:hover {
        opacity: 0.8;
    }

    .contact {
        padding-bottom: 160px;
    }

    /*  フッターの背景色を透明に設定し、動画を透かして見せる */
    .footer {
        background-color: transparent;
        background-image: url(../../Common/image/footer_pc.png);
        width: 100%;
        margin: 0;
        background-size: cover;
        background-position: top center;
        min-height: 700px;
        position: relative;
        align-items: center;
        z-index: 10;
        padding: 176px 40px 350px;
        margin-top: -96px;
    }

    .footer_nav {
        margin-bottom: 80px;
        width: 1277px;
    }

    .footer_nav ul {
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer_nav li::after {
        content: none;
    }

    .intro {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .intro::before {
        width: 400px;
        left: 50%;
        transform: translateX(-50%);
    }

    .intro_inner {
        max-width: 100%;
        padding: 0 32px;
    }

}

/* フェードインアニメーション */
.season_card,
.product_list {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.season_card.fade-in,
.product_list.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* productのアニメーション設定 */
.product_list {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.product_list.fade-in {
    opacity: 1;
}

/* 画像とタイトルのアニメーション */
.product_img {
    overflow: visible;
}

.product_img img,
.product_title {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* 奇数番目：画像は左から、タイトルは右から */
.product_list:nth-child(odd) .product_img img {
    transform: translateX(-50px);
}

.product_list:nth-child(odd) .product_title {
    transform: translateX(50px);
}

/* 偶数番目：画像は右から、タイトルは左から */
.product_list:nth-child(even) .product_img img {
    transform: translateX(50px);
}

.product_list:nth-child(even) .product_title {
    transform: translateX(-50px);
}

/* アニメーション実行後 */
.product_list.fade-in .product_img img,
.product_list.fade-in .product_title {
    opacity: 1;
    transform: translateX(0);
}

/* 説明文のフェードイン（少し遅延） */
.product_desc {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.product_list.fade-in .product_desc {
    opacity: 1;
    transform: translateY(0);
}

/* フォントメモ 
BIZ UDPGothic
.biz-udpgothic-regular {
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}
Shippori Mincho
.shippori-mincho-regular {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}
Potta One
.potta-one-regular {
  font-family: "Potta One", system-ui;
  font-weight: 400;
  font-style: normal;
}

*/