@charset "utf-8";

/* ==========================
   common
========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    font-family: "Noto Sans JP", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    color: #204762;
    line-height: 1.5;
}

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

ul {
    list-style: none;
}

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

picture {
    display: block;
    line-height: 0;
}

/* button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
} */

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

/* header------------------------------- */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background-color: transparent;
    z-index: 200;
    padding-right: 20px;
}

.menu-trigger {
    width: 44px;
    height: 44px;
    background-color: #204762;
    border: none;
    border-radius: 50%;
    border: 3px solid #988C2E;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.2s;
}

.menu-trigger:hover {
    opacity: 0.7;
}

.menu-trigger span {
    position: relative;
    display: block;
    width: 22px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s;
}

.menu-trigger span::before,
.menu-trigger span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transition: all 0.3s;
}

.menu-trigger span::before {
    top: -7px;
}

.menu-trigger span::after {
    top: 7px;
}

.menu-trigger.is-active span {
    background-color: transparent;
}

.menu-trigger.is-active span::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-trigger.is-active span::after {
    transform: rotate(-45deg);
    top: 0;
}

.g-nav {
    position: fixed;
    top: 0;
    width: 350px;
    right: -350px;
    height: 100vh;
    background-color: rgba(22, 50, 70, 0.98);
    z-index: 190;
    transition: right 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
}

.g-nav.is-active {
    right: 0;
}

.nav-inner {
    width: 100%;
    max-width: 250px;
}

.g-nav li {
    width: 100%;
    margin: 30px 0;
    height: auto;
}

.nav-inner li a {
    display: block;
    transition: 0.3s;
}

.nav-inner li a:hover {
    opacity: 0.7;
}

.g-nav li img {
    width: 100%;
    height: auto;
    display: block;
}

.g-nav li.nav-logo {
    margin-top: 60px;
}

@media (max-width: 768px) {
    .site-header {
        padding-right: 8px;
    }

    .g-nav {
        width: 100%;
        right: -100%;
    }

    .g-nav.is-active {
        right: 0;
    }

    .nav-inner {
        max-width: 200px;
    }

    .g-nav li {
        margin: 0;
        padding: 10px;
    }
}

/* ==========================
   TOParea
========================== */
h1 {
    font-size: clamp(1.4rem, 1rem + 1vw, 3.2rem);
    font-family: "Kaisei Tokumin", "Noto Sans JP", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "メイリオ", serif;
    font-weight: bold;
    font-style: normal;
    margin: 10px 0 60px;
}

.top_area {
    background: url("../img/bg_bk.jpg") center center / cover no-repeat;
    padding: 0 0 30px;
}

.top_area .inner {
    max-width: 1200px;
    text-align: center;
    margin: 0 auto;
    position: relative;
}

.top_area .inner picture {
    display: block;
    line-height: 0;
    width: 90%;
    margin: 20px auto;
}

.top_area .inner img {
    width: 100%;
}

.anchor_area {
    margin: 60px 0 30px;
}

.anchor_area ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.anchor_area li:hover {
    opacity: 0.7;
    transition: 0.3s ease;
}

.anchor_area img {
    max-width: 200px;
    height: auto;
}

@media (max-width: 1240px) {
    .top_area .inner {
        margin: 20px 80px;
    }
}

@media (max-width: 768px) {
    h1 {
        margin: 10px 0 20px;
    }

    .top_area .inner {
        margin: 0 20px;
    }

    .anchor_area ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* ==========================
   contents
========================== */
.content {
    margin: 0 auto;
}

.content_inner {
    padding: 60px 0;
    margin: 0 auto;
}

.inner_wrap {
    max-width: 1100px;
    width: 100%;
    height: auto;
    text-align: center;
}

.inner_wrap p {
    text-align: left;
}

.content01 {
    position: relative;
    background: url("../img/content01_bg.webp") center / cover no-repeat;
    overflow: hidden;
    isolation: isolate;
}

.content01::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    max-width: 500px;
    aspect-ratio: 1 / 1;
    background: url("../img/deco_lt.webp") no-repeat center / contain;
    pointer-events: none;
    z-index: 1;
    transform: translate(0, -25%);
}

.content01::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30%;
    max-width: 500px;
    aspect-ratio: 1 / 1;
    background: url("../img/deco_rb.webp") no-repeat center / contain;
    pointer-events: none;
    z-index: 1;
    transform: translate(0, 25%);
}

.step_box {
    display: flex;
    justify-content: center;
    gap: 5rem;
    margin: 30px 60px 80px;
}

.step {
    position: relative;
}

.step .btn {
    font-size: clamp(1rem, 2.2vw, 1.4rem);
    position: absolute;
    bottom: 10%;
    left: 10%;
    padding-left: 20px;
}

.step>img:first-child {
    display: block;
    width: 100%;
}

.arrow {
    position: absolute;
    top: 60%;
    right: calc(-5rem / 2);
    transform: translate(50%, -50%);
    width: 35%;
    height: auto;
    z-index: 10;
    pointer-events: none;
}

.banner_link {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.content02,
.content03,
.content04 {
    overflow: hidden;
    isolation: isolate;
}

.content02 .inner_wrap,
.content03 .inner_wrap,
.content04 .inner_wrap {
    padding: clamp(10px, 4vw, 60px);
    border-radius: 20px;
    margin: 0 auto;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

h2 {
    text-align: center;
}

.content02 {
    background: url("../img/content02_bg.webp") center / cover no-repeat;
}

.content02 .inner_wrap {
    background: url("../img/content02_bg02.jpg") center / cover no-repeat;
}

.content03 {
    background: url("../img/content03_bg.jpg") center / cover no-repeat;
}

.content03 .inner_wrap {
    background: url("../img/content03_bg02.jpg") center / cover no-repeat;
}

.content03 p {
    font-size: clamp(1.4rem, 2vw, 2rem);
    font-weight: bold;
    width: 80%;
    margin: 20px auto 60px;
}

.content03 span {
    color: #CA4917;
}

.content03 small {
    font-size: 1.2rem;
    display: block;
    margin-top: 10px;
}

.content04 {
    background: url("../img/content04_bg.jpg") center / cover no-repeat;
}

.content04 .inner_wrap {
    background-color: #F5F3EB;
    padding: clamp(10px, 5vw, 40px);
}

.content04 .flex_box {
    align-items: center;
    margin-top: 40px;
}

.content04 .flex_box p {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 600;
    width: 80%;
    text-align: center;
}

.content04 .flex_box p span {
    color: #CA4917;
}

.content04 .flex_box p strong {
    color: #CA4917;
    font-size: clamp(1.6rem, 3vw, 3rem);
    font-weight: 600;
    display: block;
    margin-top: 20px;
    line-height: 1.3;
}

.content04 .flex_box p strong span {
    color: #204762;
}

.btn {
    display: block;
    width: fit-content;
    background-color: #CA4917;
    padding: 1.2rem 4rem;
    padding-right: 3em;
    font-size: clamp(1.2rem, 2.5vw, 2.4rem);
    font-weight: 600;
    color: #fff;
    margin: 45px auto 20px;
    position: relative;
}

.btn::after {
    content: "";
    width: 10px;
    height: 10px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(45deg);
    position: absolute;
    right: 1.2em;
    top: 45%;
}

.btn:hover {
    opacity: 0.7;
}

.content04>.content_inner>p {
    font-size: clamp(1rem, 2vw, 1.6rem);
    text-align: center;
}


@media (max-width: 1240px) {
    .content_inner {
        padding: 60px 40px;
    }

    .content01 .flex_box {
        flex-direction: column;
        align-items: center;
    }

    .content01 .flex_box {
        flex-direction: column;
        align-items: center;
    }

    .arrow {
        top: auto;
        bottom: -40px;
        right: 50%;
        transform: translate(50%, 50%) rotate(90deg);
    }

    .content04 .flex_box {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .content04 .flex_box p {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .content_inner {
        padding: 30px 10px;
    }

    .step_box {
        margin: 30px 0 40px;
    }

    .btn {
        padding-right: 4em;
    }

    .step .btn {
        left: 5%;
        padding-left: 10px;
    }

    .btn::after {
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        top: 40%;
    }

    .content03 p {
        width: 95%;
        margin: 20px auto 30px;
    }

    .content04 .flex_box p {
        width: 95%;
    }

    .content04 .btn {
        font-size: clamp(1.8rem, 1.5vw, 2.4rem);
    }
}

/* ==========================
   sake
========================== */

.sake_ti {
    position: relative;
    width: 100%;
    height: clamp(400px, 42vw, 800px);
    overflow: hidden;
    background: url("../img/map_bg.jpg") center center / cover no-repeat;
}

.sake_ti .map_image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
}

.content05 {
    position: relative;
    background: url("../img/content05_bg.webp") center repeat;
    overflow: hidden;
    isolation: isolate;
}

.area_box {
    margin: 0 auto;
    font-family: "Noto Serif JP", "游明朝体", "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", "HGS明朝E", "MS P明朝", serif;
}

.area-title {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 60px 0 50px;
}

.area-title::before,
.area-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #fff;
}

.area-title span {
    padding: 0 30px;
    font-size: clamp(1.6rem, 3vw, 3.2rem);
    font-weight: normal;
    color: #fff;
    border: 2px solid #fff;
}

.area-title.south span {
    background: #8D4E61;
}

.area-title.east span {
    background: #5F833F;
}

.area-title.north span {
    background: #1C577F;
}

.area-title.west span {
    background: #A48026;
}

/* 酒蔵リスト表示------------------------------- */
.shop-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
}

.shop-card {
    display: block;
    width: 100%;
    background-image: url(../img/modal_bk.jpg);
    border: none;
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: transform 0.2s ease;
    font-family: inherit;
    color: #204762;

}

.shop-card img {
    aspect-ratio: 3 / 2;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    margin-bottom: 15px;
    overflow: hidden;
}

.shop-card:hover img {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.shop-card h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: bold;
    margin: 0 0 6px 0;
    line-height: 1.4;
}

.shop-card p {
    font-size: clamp(.9rem, 1.6vw, 1.4rem);
    margin: 10px 0;
    line-height: 1.4;
    text-align: center;
}

.shop-img-wrap {
    position: relative;
    display: block;
}

.shop-img-wrap::after {
    content: "";
    position: absolute;
    right: -5px;
    bottom: -30px;
    width: clamp(40px, 6vw, 70px);
    height: clamp(40px, 6vw, 70px);
    background: url(../img/sake/stamp-icon.webp) no-repeat center / contain;
    z-index: 2;
}

.shop.no-stamp .shop-img-wrap::after {
    content: none;
}

@media (max-width: 1240px) {
    .shop-list {
        grid-template-columns: repeat(3, 1fr);
    }

    #sake_spot.content_inner {
        padding: 30px 20px;
    }

}

@media (max-width: 768px) {
    .shop-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0;
    }

    #sake_spot.content_inner {
        padding: 30px 10px;
    }

    .area-title {
        margin: 30px 0;
    }

    .shop-card {
        padding: 5px;
    }
}

/* モーダル表示------------------------------- */

body:has(dialog[open]) {
    overflow: hidden;
}

#shop-modal {
    border: none;
    border-radius: 12px;
    padding: 0;
    width: min(1100px, 95%);
    background-image: url(../img/modal_bk.jpg);
    position: fixed;
    inset: 0;
    margin: auto;
    overflow: hidden;
    font-family: inherit;
    color: inherit;
    font-size: 1.6rem;
}

#shop-modal::backdrop {
    background: rgba(32, 71, 98, 0.9);
}

#shop-modal .modal-inner {
    width: min(840px, 95%);
    margin: 0 auto;
    padding: 40px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    cursor: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

#shop-modal .modal-inner::-webkit-scrollbar {
    display: none;
}

/* 閉じるボタン */
#shop-modal .modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #204762;
    color: #ffffff;
    border: 3px solid #988C2E;
    border-radius: 50%;
    font-size: 2.4rem;
    cursor: pointer;
    z-index: 10;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

#shop-modal .modal-close:hover {
    background-color: #163246;
    transform: scale(1.05);
}

/* モーダル内部のコンテンツ装飾 */
.modal-content-wrap {
    color: #204762;
    font-family: "Noto Serif JP", "游明朝体", "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", "HGS明朝E", "MS P明朝", serif;
}

.modal-main-visual {
    width: 100%;
    margin-bottom: 35px;
    line-height: 0;
}

.modal-main-visual img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.modal-shop-header {
    text-align: center;
    margin-bottom: 30px;
    color: #988C2E;
}

.modal-shop-header h3 {
    font-size: 4rem;
    font-family: "Shippori Mincho", "Kaisei Tokumin", serif;
    font-weight: normal;
    margin: 0 0 8px 0;
    border-bottom: 1px solid #988C2E;
    padding-bottom: 12px;
    margin: 0 0 12px 0;
}

.modal-shop-header p {
    font-size: 1.2rem;
    margin: 0;
}

.modal-lead {
    text-align: center;
    margin-bottom: 45px;
}

.modal-lead h4 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-family: "Shippori Mincho", "Kaisei Tokumin", serif;
    font-weight: normal;
    margin: 0 0 12px 0;
}

.modal-lead p {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.modal-products {
    display: flex;
    gap: 25px;
    margin-bottom: 60px;
}

.product-item {
    flex: 1;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
}

.product-item h5 {
    font-size: clamp(1.6rem, 2vw, 1.8rem);
    font-weight: bold;
    text-align: center;
}

.product-detail {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-top: 10px;
}

.product-detail.flex-column {
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
}

.product-detail img {
    width: clamp(40px, 8vw, 70px);
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.product-spec-area {
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    font-weight: normal;
}

.price {
    display: block;
    margin: 20px 0;
}

.spec-list {
    width: 100%;
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    line-height: 1.5;
    border-top: 1px solid #204762;
    padding-top: 12px;
    margin: 12px 0 0;
}

.modal-shop-detail h4 {
    font-size: 3rem;
    font-family: "Shippori Mincho", "Kaisei Tokumin", serif;
    text-align: center;
    margin: 0 0 40px 0;
}

.detail-grid {
    display: flex;
    gap: 35px;
}

.detail-info {
    flex: 1;
}

.detail-info dl {
    display: block;
    font-size: 1.6rem;
}

.detail-info dt {
    font-weight: bold;
}

.detail-info dd {
    font-weight: 300;
    margin: 0;
    margin-bottom: 10px;
}

.detail-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-photos {
    display: flex;
    gap: 30px;
}

.detail-photos img {
    width: calc((100% - 30px)/2);
    height: auto;
    object-fit: cover;
    border-radius: 6px;
}

.detail-map img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.sp-only {
    display: none;
}

@media (max-width: 1240px) {
    .modal-lead p {
        text-align: start;
    }
}

@media (max-width: 768px) {
    #shop-modal .modal-inner {
        padding: 20px 0;
    }

    .modal-products {
        display: flex;
        gap: 25px;
        margin-bottom: 60px;
    }

    .pc-only {
        display: none;
    }

    .sp-only {
        display: block;
    }

    .modal-products {
        flex-direction: column;
        gap: 20px;
    }

    .product-detail {
        gap: 30px;
    }

    .detail-grid {
        flex-direction: column;
        gap: 25px;
    }

    .detail-info {
        text-align: center;
    }
}

@media (max-width: 460px) {
    .product-detail {
        display: block;
        margin-top: 20px;
    }

    .product-detail img {
        display: block;
        margin: 0 auto;
    }

    #shop-modal .modal-close {
        top: 5px;
        right: 5px;
    }
}

/* ==========================
   footer
========================== */

footer .footer_inner {
    max-width: 1100px;
    text-align: center;
    margin: 0 auto;
}

footer .warning-banner {
    display: block;
    background-color: #163246;
    padding: clamp(20px, 3vw, 30px) clamp(20px, 5vw, 50px);
    margin: 60px 10px;
    text-align: left;
}

footer .warning-banner strong {
    display: block;
    color: #FFEC00;
    font-size: clamp(2.4rem, 4vw, 4rem);
    font-weight: 600;
    text-align: center;
}

footer .warning-banner .flex_box {
    align-items: center;
    gap: 20px;
    padding: clamp(10px, 2vw, 20px)s;
    flex-wrap: wrap;
}

footer .warning-banner .warning-slogans {
    display: block;
    color: #FFEC00;
    font-weight: 600;
    font-size: clamp(1.4rem, 2vw, 2.5rem);
    line-height: 1.8;
}

footer .warning-banner img {
    max-width: 320px;
    width: 100%;
}

footer .warning-banner p {
    display: block;
    color: #fff;
    font-weight: 300;
    font-size: clamp(1.2rem, 1.5vw, 2rem);
    margin: 20px 0 0;
}

footer .banner_link.flex_box {
    max-width: 1100px;
    justify-content: space-between;
    margin: clamp(40px, 2vw, 100px) 0;
}

footer .banner_link.flex_box a:hover {
    opacity: 0.7;
}

footer .banner_link.flex_box li a img {
    max-width: 430px;
    width: 100%;
    padding: 30px;
}

footer .contact {
    font-family: "Noto Serif JP", "游明朝体", "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", "HGS明朝E", "MS P明朝", serif;
    margin: 100px 0;
}

footer .contact h3 {
    font-size: clamp(1.2rem, 5vw, 2.5rem);
    color: #D80000;
    font-weight: bold;
}

footer .contact p {
    font-size: clamp(1.2rem, 3vw, 2rem);
}

footer .contact .email-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: bold;
    color: #fff;
    background-color: #C63F35;
    border-radius: 50px;
    margin: 30px 0;
    padding: clamp(10px, 3vw, 20px) clamp(20px, 8vw, 50px);
}

footer .contact .email-button:hover {
    opacity: 0.7;
}

footer .contact .email-button img {
    max-width: 48px;
    display: inline;
    flex-shrink: 0;
}

footer .foot-copy {
    display: block;
    background-image: url(../img/footer_bg.jpg);
    text-align: center;
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    padding: 20px;
}

footer .foot-copy a:hover {
    text-decoration: underline;
}

@media (max-width: 1240px) {
    footer .banner_link.flex_box {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    footer .warning-banner {
        padding: clamp(10px, 3vw, 30px) clamp(10px, 5vw, 50px);
        margin: 30px 10px;
    }

    footer .banner_link.flex_box {
        gap: 20px;
    }

    footer .contact {
        margin: 50px 0;
    }

    footer .contact .email-button img {
        max-width: 30px;
    }

    footer .contact .email-button {
        gap: 10px;
        padding: clamp(10px, 3vw, 20px) clamp(20px, 10vw, 50px);
    }
}