@charset "utf-8";
/* ==========================
KV
===========================*/

.kv {
    position: relative;
    width: 100%;
    height: 100vh;
    /* 画面いっぱいの高さ */
    overflow: hidden;
    z-index: 1;
}

/* 画像を重ねるための設定 */
.kv__inner {
    position: relative;
    width: 100%;
    height: 100%;
}

/* 黒いオーバーレイを追加 */
.kv__inner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 5;
    pointer-events: none;
}

.kv__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slideShow 24s infinite;
}

.kv__img--01 {
    background-image: url('../images/topfirst.webp');
}

.kv__img--02 {
    background-image: url('../images/topsecond.webp');
    animation-delay: 8s;
}

.kv__img--03 {
    background-image: url('../images/toptherd.webp');
    animation-delay: 16s;
}

@keyframes slideShow {
    0% {
        opacity: 0;
        transform: scale(1.15);
    }

    10% {
        opacity: 1;
    }

    33% {
        opacity: 1;
    }

    43% {
        opacity: 0;
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}

.kv__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    color: var(--color-white);
    text-align: center;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.kv__title {
    display: flex;
    gap: 54px;
    justify-content: space-between;
    position: relative;
}

.kv__title p {
    font-size: 1.2rem;
}

.mainlogo img {
    width: 100%;
    height: auto;
    width: 37vw;
    margin-bottom: 24px;
}

.kokorohodokeru,
.hitokuchide {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 14vw;
    z-index: 5;
}

.kokorohodokeru {
    left: 3.2vw;
}

/* 右側の画像（ひとくちで） */
.hitokuchide {
    right: 3.2vw;
}

.scroll {
    position: absolute;
    bottom: 0;
    left: 1.8%;
    z-index: 20;
    padding-bottom: 80px;
}

/* SCROLLの文字 */
.scroll span {
    writing-mode: vertical-rl;
    font-size: 1.3rem;
    color: var(--color-red-light);
    display: block;
    margin-bottom: 10px;
    font-family: 'dnp-shuei-gothic-gin-std', 'sans-serif';
}

/* 線のベース */
.scroll::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 37%;
    width: 1px;
    height: 70px;
}

/* 動く線（アニメーション） */
.scroll::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 37%;
    width: 1px;
    height: 70px;
    background: var(--color-red-light);
    z-index: 1;
    animation: scrollLine 2s cubic-bezier(1, 0, 0, 1) infinite;
    transform-origin: top;
    /* 上から伸びるように設定 */
}

/* 線が上から下へ流れるアニメーション */
@keyframes scrollLine {
    0% {
        transform: translateX(-50%) scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: translateX(-50%) scaleY(1);
        transform-origin: top;
    }

    50.1% {
        transform: translateX(-50%) scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: translateX(-50%) scaleY(0);
        transform-origin: bottom;
    }
}

/* kv タブレット769px */
@media screen and (min-width: 769px) {

    .kokorohodokeru,
    .hitokuchide {
        width: 10vw;
        top: 67%;
    }

    .mainlogo img {
        width: 20vw;
    }
}

/* kv pc 1025px */
@media screen and (min-width: 1025px) {

    .kokorohodokeru,
    .hitokuchide {
        width: 9vw;
    }

    .kv__title p {
        font-size: 2.4rem;
    }
}


/* About */
.section--about {
    text-align: center;
    padding-top: 40px;
}

.section__mainTitle--about {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.section__subTitle--about {
    margin-bottom: 4px;
}

.about__wave {
    display: flex;
    justify-content: center;
    gap: 27px;
    margin-bottom: 24px;
}

.bear {
    width: 53.3vw;
}

.wave {
    width: 4.3vw;
}

.about__txt {
    font-size: 1.1rem;
    line-height: 1.5;
}

/* about タブレット769px */
@media screen and (min-width: 769px) {
    .section--about {
        padding-top: 100px;
    }

    .section__mainTitle--about {
        margin-bottom: 21px;
    }

    .about__wave {
        gap: 100px;
    }

    .bear {
        width: 37.3vw;
    }
}

/* about pc 1025px */
@media screen and (min-width: 1025px) {
    .section__subTitle--about {
        font-size: 2rem;
        margin-bottom: 18px;
    }

    .section__mainTitle--about {
        font-size: 3.2rem;
        margin-bottom: 24px;
    }

    .bear {
        margin-bottom: 68px;
    }

    .about__txt {
        font-size: 2rem;
        line-height: 1.75;
        letter-spacing: 0.03em;
    }
}

/* キャンペーン */
.campaign__slider {
    width: 94%;
    margin: 0 auto;
}

.campaign__slider img {
    width: 60vw;
    height: auto;
}

.campaign__slider {
    width: 90%;
    margin: 0 auto;
}

.campaign__slider img {
    width: 100%;
    height: auto;
}

.campaign__slider .slick-slide {
    margin: 0 10px;
}

.slick-prev,
.slick-next {
    position: absolute;
    top: 42%;
    cursor: pointer;
    outline: none;
    border-top: 3px solid var(--color-red-light);
    border-right: 3px solid var(--color-red-light);
    height: 15px;
    width: 15px;
}

.slick-prev {
    left: -3.2%;
    transform: rotate(-135deg);
}

.slick-next {
    right: -3.2%;
    transform: rotate(45deg);
}

.slick-dots {
    text-align: center;
    margin: 20px 0 0 0;
}

.slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width: 8px;
    height: 8px;
    display: block;
    border-radius: 50%;
    background: var(--color-white);
}

.slick-dots .slick-active button {
    background: var(--color-red-light);
}

.campaign__banner {
    position: relative;
    display: block;
}

/* プラスボタン本体（白い丸） */
.plus-btn {
    position: absolute;
    right: 1px;
    bottom: 1px;
    width: 40px;
    height: 40px;
    background-color: var(--color-white);
    border: 1px solid var(--color-black);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    padding: 0;
    outline: none;
    transition: transform 0.3s ease;
    position: absolute !important;
    z-index: 999 !important;
    /* スライダーの矢印などより上に */
    cursor: pointer !important;
    pointer-events: auto !important;
    /* クリックを有効化 */
}

.plus-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 1.5px;
    background-color: var(--color-black);
    transform: translate(-50%, -50%);
}

.plus-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.5px;
    height: 22px;
    background-color: var(--color-black);
    transform: translate(-50%, -50%);
}

body.is-modal-open {
    overflow: hidden !important;
}

/* モーダル */
.modal__detail {
    background-color: var(--color-beige-dark);
    text-align: center;
    font-family: 'dnp-shuei-gothic-gin-std', 'sans-serif';
    font-weight: 600;
    width: 90.6vw;
    padding: 52px 20px;
}

.modal__detail img {
    border-radius: 18px;
    width: 76vw;
    margin-bottom: 40px;
}

.modal__content {
    text-align: left;
    width: 80vw;
    background-color: var(--color-white);
    padding: 20px 18px;
    border: 3px solid var(--color-green-light);
    border-radius: 18px;
}

.modal__name {
    font-size: 1.5rem;
    color: var(--color-orange-derk);
    margin-bottom: 12px;
}

.tag {
    display: flex;
    gap: 9px;
}

.modal_item {
    font-size: 1.1rem;
    background-color: var(--color-green-light);
    border-radius: 50px;
    padding: 6px 13px;
}

.modal__txt {
    font-size: 1.3rem;
    line-height: 2;
    margin-top: 32px;
}

/* バツ */
.modal__detail {
    position: relative;
    display: block;
}

.modal__close-btn {
    position: absolute;
    top: 1px;
    right: 1px;
    width: 40px;
    height: 40px;
    background-color: var(--color-white);
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    outline: none;
    transition: transform 0.3s ease;
    border: 1px solid var(--color-black);
}

.modal__close-btn::before,
.modal__close-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 1.5px;
    background-color: var(--color-black);
}

.modal__close-btn::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.modal__close-btn::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* 初期状態は非表示 */
#modal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    /* 背景を暗くする */
    overflow-y: auto;
}

/* is-activeクラスがついたら表示 */
#modal.is-active {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 各モーダルの中身はJSで制御するため初期は非表示 */
.modal__detail {
    display: none;
}

/* キャンペーン　タブレット769px */
@media screen and (min-width: 769px) {
    .modal__detail[style*="display: block"] {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 40px;
        width: 90%;
        max-width: 90.4vw;
        margin: 0 auto;
        padding: 80px 3.3%;
    }

    .modal__detail img {
        width: 50%;
        height: auto;
        object-fit: contain;
        margin-bottom: 0;
    }

    .syousai {
        width: 43%;
    }

    .modal__content {
        width: 34.7vw;
        gap: 54px;
    }
}

@media screen and (min-width: 1025px) {
    .campaign__slider {
        width: 100% !important;
        margin: 0 auto;
        overflow: visible;
    }

    .campaign__slider .slick-slide {
        transition: all 0.5s ease;
        transform: scale(0.6);
        z-index: 1;
    }

    .campaign__slider .slick-center {
        opacity: 1;
        transform: scale(1);
        z-index: 100 !important;
    }

    .campaign__banner {
        width: 38.8vw;
        margin: 0 auto;
        position: relative;
    }

    .campaign__banner img {
        width: 100%;
        height: auto;
        display: block;
    }

    .plus-btn {
        position: absolute;
        right: 6px;
        bottom: 6px;
        z-index: 101 !important;
        pointer-events: auto !important;
    }

    .modal__content {
        padding: 27px;
    }

    .modal__name {
        font-size: 2.4rem;
        margin-bottom: 27px;
    }

    .modal_item {
        font-size: 1.6rem;
    }

    .modal__txt {
        font-size: 1.9rem;
        margin-top: 48px;
    }
}


/* 流れる文字 */
.wrapper {
    display: flex;
    width: 100%;
    overflow: hidden;
    padding-top: 60px;
}

.loop_text {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 14vw;
    overflow: hidden;
    padding-left: 20px;
    font-family: 'dnp-shuei-gothic-gin-std', 'sans-serif';
    font-weight: 600;
    line-height: 1;
}

.yellowten {
    font-weight: 400;
    color: #FFC812;
    text-shadow: 1px 1px 0 var(--color-black),
        -1px 1px 0 var(--color-black),
        -1px -1px 0 var(--color-black),
        1px -1px 0 var(--color-black);
}

.loop_text:nth-child(odd) {
    animation: loop 50s -25s linear infinite;
}

.loop_text:nth-child(even) {
    animation: loop2 50s linear infinite;
}

@keyframes loop {
    0% {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes loop2 {
    0% {
        transform: translateX(0);
    }

    to {
        transform: translateX(-200%);
    }
}

/* 流れる文字　600px */
@media screen and (min-width: 600px) {
    .loop_text {
        font-size: 10vw;
    }
}

@media screen and (min-width: 1025px) {
    .loop_text {
        font-size: 8vw;
    }

    .wrapper {
        padding-top: 190px;
    }
}

body.is-modal-open .header {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

/* お品書き */
.menu {
    text-align: center;
}

.menu-card__img img {
    width: 66.6vw;
    margin: 0 auto 18px;
    display: block;
}

.menu__content {
    text-align: center;
}

.menu__name {
    display: inline-block;
    color: #FFD95B;
    font-size: 2rem;
    font-weight: 500;
    padding: 8px 3.2%;
    background-color: var(--color-red-dark);
    margin-bottom: 8px;
}

.menu__price {
    font-size: 1.3rem;
    margin-bottom: 18px;
}

.menu__detail__txt::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background-color: var(--color-red-light);
    border-radius: 50%;
}

.menu__detail__txt {
    position: relative;
    display: inline-block;
    font-size: 1.2rem;
    line-height: 1.5;
    background-color: var(--color-white);
    border-radius: 4px;
    padding: 24px 19px 18px;
    width: 64.5vw;
    border: 1.5px dotted var(--color-red-light);
    letter-spacing: 0.03em;
    text-align: left;
}

/* 下のナビゲーションのスタイル */
.menu-slider-nav {
    margin: 21px auto 60px;
    width: 100%;
    /* 全体の幅に合わせる */
}

.nav-item {
    padding: 0 5px;
    /* 画像同士の隙間 */
    cursor: pointer;
    opacity: 0.5;
    /* 通常時は少し薄くする */
    transition: opacity 0.3s;
}

/* 選択されている（表示されている）画像だけハッキリ見せる */
.nav-item.slick-current {
    opacity: 1;
}

.nav-item img {
    width: 100%;
    height: auto;
}

/* お品書き　タブレット769px */
@media screen and (min-width: 769px) {
    .menu {
        display: flex;
        justify-content: center;
        gap: 8.3%;
    }

    .menu-card__img img {
        width: 41.6vw;
        margin-bottom: 0;
    }

    .menu__detail__txt {
        padding: 24px 24px;
        width: 32vw;
    }

    .menu__content {
        align-items: center;
    }

    .menu-slider-nav {
        padding: 0 15.4%;
    }

}

/* お品書き　pc 1025px */
@media screen and (min-width: 1025px) {
    .menu__name {
        font-size: 3rem;
        padding: 18px 3.2%;
        margin-bottom: 18px;
    }

    .menu__price {
        font-size: 2.1rem;
        margin-bottom: 40px;
    }

    .menu__detail__txt {
        font-size: 1.6rem;
        padding: 36px;
        width: 24vw;
    }

    .menu-slider-nav {
        margin: 80px auto 80px;
    }
}

/* 餃子のこだわり */
.section--commitment {
    padding: 75px 9.7% 0;
}

.commitment__item {
    text-align: center;
    margin-bottom: 48px;
}

.commitment__img {
    position: relative;
    display: inline-block;
    width: 80vw;
    margin-bottom: 21px;
}

.commitment__img img {
    border-radius: 24px;
    width: 80vw;
}

.commitment__img::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -12px;
    width: 16.5vw;
    height: 53px;
    z-index: 1;
    background-size: contain;
    background-repeat: no-repeat;
}

.commitment__item:nth-of-type(1) .commitment__img::before {
    background-image: url("../images/no1.svg");
}

.commitment__item:nth-of-type(2) .commitment__img::before {
    background-image: url("../images/no2.svg");
}

.commitment__item:nth-of-type(3) .commitment__img::before {
    background-image: url("../images/no3.svg");
}

.commitment__content {
    text-align: left;
    width: 69.3vw;
    margin: 0 auto;
}

.commitment__title {
    font-family: 'dnp-shuei-gothic-gin-std', 'sans-serif';
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.no1 {
    color: var(--color-red-dark);
    font-size: 1.2rem;
}

.no2 {
    color: var(--color-green-dark);
    font-size: 1.2rem;
}

.no3 {
    color: var(--color-orange-light);
    font-size: 1.2rem;
}

.commitment__txt {
    font-size: 1.2rem;
    letter-spacing: 0.03em;
    line-height: 1.6;
    margin-bottom: 25px;
}

.bold {
    font-weight: 600;
}

/* --- 1. 全アイテム共通：形と位置の設定 --- */
.commitment__border {
    position: relative;
    width: 100%;
    height: 0.5px;
    margin-bottom: 48px;
}

/* 両端の丸の共通スタイル */
.commitment__border::before,
.commitment__border::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.commitment__border::before {
    left: 0;
}

.commitment__border::after {
    right: 0;
}


/* --- 2. 各番号ごとの「色」だけをまとめて指定 --- */

/* 01番目：赤系 */
.commitment__item:nth-of-type(1) .commitment__border {
    background-color: var(--color-orange-light);
}

/* 線の色 */
.commitment__item:nth-of-type(1) .commitment__border::before,
.commitment__item:nth-of-type(1) .commitment__border::after {
    background-color: var(--color-red-dark);
}

/* 丸の色 */

/* 02番目：緑系 */
.commitment__item:nth-of-type(2) .commitment__border {
    background-color: var(--color-green-dark);
}

.commitment__item:nth-of-type(2) .commitment__border::before,
.commitment__item:nth-of-type(2) .commitment__border::after {
    background-color: var(--color-green-dark);
}

/* 03番目：オレンジ系 */
.commitment__item:nth-of-type(3) .commitment__border {
    background-color: var(--color-orange-light);
}

.commitment__item:nth-of-type(3) .commitment__border::before,
.commitment__item:nth-of-type(3) .commitment__border::after {
    background-color: var(--color-orange-light);
}

/* 餃子のこだわり　タブレット769px */
@media screen and (min-width: 769px) {
    .section--commitment {
        padding: 100px 8.8%;
    }

    .commitment__item {
        display: flex;
        align-items: center;
        gap: 8.3%;
    }

    .commitment__title {
        margin-bottom: 27px;
    }

    .commitment__border {
        margin-bottom: 0;
    }
}

/* 餃子のこだわり　pc 1025px */
@media screen and (min-width: 1025px) {
    .section--commitment {
        padding-top: 153px;
    }

    .commitment__img {
        width: 36.1vw;
    }

    .commitment__item {
        margin-bottom: 120px;
    }

    .commitment__content {
        width: 36.1vw;
    }

    .no1,
    .no2,
    .no3 {
        font-size: 2.2rem;
    }

    .commitment__title {
        font-size: 3rem;
    }

    .commitment__txt {
        font-size: 1.8rem;
        line-height: 2.05;
        margin-bottom: 80px;
    }

    .commitment__img::before {
        width: 6.3vw;
        height: 91px;
        top: -18px;
        left: -28px;
    }
}

/*　ノーマルスライダー  */
.slider li {
    padding-bottom: 8px;
    list-style: none;
}

.slider img {
    width: 26.6vw;
    display: block;
    box-shadow: 4px 3px 4px 2px rgba(0, 0, 0, 0.25);
}

.section__slider {
    padding-top: 27px;
    overflow: hidden;
}


/* お知らせ*/
.section--news {
    padding: 60px 4.5% 60px;
    text-align: center;
}

.section__title {
    margin-bottom: 40px;
}

/* リスト部分 */
.news_list {
    max-width: 90.9vw;
    margin: 0 auto;
}

.news_list_item {
    background: var(--color-white);
    border-radius: 4px;
    margin-bottom: 18px;
    padding: 16px 18px;
    text-align: left;
}

.news_list_item a {
    letter-spacing: 0.06em;
}

/* 日付とラベルの横並び */
.news_list_meta {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 11px;
}

.news_list_date {
    font-size: 1.1rem;
}

/* 「お知らせ」ラベル */
.news_item_label {
    border: 0.5px solid var(--color-orange-derk);
    color: var(--color-orange-derk);
    font-size: 0.8em;
    padding: 5px 8px;
    border-radius: 50px;
}

.news_list_text {
    font-size: 1.4rem;
}

/* 一覧へリンク */
.link_wrapper {
    text-align: right;
    max-width: 600px;
    margin: 22px auto 0;
}

.link {
    display: inline-flex;
    align-items: center;
    font-size: 1.4rem;
}

/* お知らせ　タブレット769px */
@media screen and (min-width: 769px) {
    .section--news {
        padding-top: 100px;
    }
}

/* お知らせ　pc 1025px */
@media screen and (min-width: 1025px) {
    .news_list {
        max-width: 62.5vw;
    }

    .news_list_item {
        margin-bottom: 22px;
    }

    .news_list_date {
        font-size: 1.6rem;
    }

    .news_item_label {
        font-size: 1.2em;
        padding: 7px 12px;
    }

    .news_list_text {
        font-size: 1.8rem;
    }

    .link_wrapper {
        max-width: 62.5vw;
    }

    .link {
        font-size: 1.9rem;
    }

    .borderyellow {
        margin-top: 100px;
    }
}

/* 採用情報 */
.recruit__content {
    text-align: center;
}

.recruit__serif {
    font-size: 1.6rem;
    line-height: 1.47;
    letter-spacing: 0.03em;
}

.recruit__content img {
    max-width: 80vw;
}

.recruit__txt {
    font-size: 1.2rem;
    letter-spacing: 0.03em;
    line-height: 1.83;
    width: 80vw;
    margin: 0 auto 60px;
}

/* 画像を囲う親要素 */
.recruit__img-wrapper {
    position: relative;
    display: inline-block;
    margin: 40px 0;
}

/* 画像自体の設定 */
.recruit__img-wrapper img {
    display: block;
    max-width: 80vw;
    height: auto;
}

/* 共通の擬似要素設定（雲） */
.recruit__img-wrapper::before,
.recruit__img-wrapper::after {
    content: "";
    position: absolute;
    background-image: url("../images/kumoleft.webp");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}

/* 左上の雲 */
.recruit__img-wrapper::before {
    width: 13vw;
    height: 50px;
    top: -14px;
    left: -24px;
}

/* 右下の雲 */
.recruit__img-wrapper::after {
    width: 13vw;
    height: 50px;
    bottom: -29px;
    right: -24px;
    transform: scaleX(-1);
}

.recruit__border {
    margin-top: 35px;
}

@keyframes anim_s {
    50% {
        transform: rotate(-30deg);
    }

    100% {
        transform: rotate(30deg);
    }
}

/* 採用情報　タブレット769px */
@media screen and (min-width: 769px) {
    .recruit__img-wrapper img {
        width: 60vw;
    }
}

/* 採用情報　pc 1025px */
@media screen and (min-width: 1025px) {
    .recruit__serif {
        font-size: 3.2rem;
        line-height: 1.66;
        margin-bottom: 18px;
    }

    .recruit__img-wrapper img {
        width: 65.4vw;
        height: 450px;
        object-fit: cover;
    }

    .recruit__txt {
        font-size: 2.1rem;
        line-height: 2.1;
        margin: 18px auto 82px;
    }
}

/* アクセス */
.section--access {
    text-align: center;
}

/* タイトル部分の調整 */
.section__title {
    margin-bottom: 40px;
}

/* Google Maps (iframe) のスタイル */
.section--access iframe {
    width: 100%;
    max-width: 91vw;
    height: 200px;
}

/* リスト全体のコンテナ */
.access__list {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    padding: 40px 14% 112px;
}

/* 各項目のスタイル */
.access__item {
    display: flex;
    border-bottom: 1px dashed var(--color-orange-derk);
    padding: 22px 0;
}

/* 項目ラベル（住所、定休日など） */
.access__item dt {
    width: 100px;
    flex-shrink: 0;
    font-weight: 500;
    color: var(--color-black);
    font-size: 1.1rem;
    letter-spacing: 0.03em;
    line-height: 1.5;
}

/* 項目の内容 */
.access__item dd {
    flex-grow: 1;
    line-height: 1.5;
    color: var(--color-black);
    font-size: 1rem;
    letter-spacing: 0.03em;
}

/* アクセス　タブレット769px */
@media screen and (min-width: 769px) {
    .section--access iframe {
        width: 50%;
        max-width: none;
        height: 400px;
    }

    .access__content {
        display: flex;
        gap: 13.8%;
        align-items: center;
        padding: 0 8.3% 150px;
    }

    .access__list {
        padding: 0;
        width: 41.3vw;
    }
}

/* アクセス　pc 1025px */
@media screen and (min-width: 1025px) {
    .section--access iframe {
        width: 43vw;
        height: 450px;
    }

    .access__item dt {
        font-size: 1.5rem;
        line-height: 1.4;
    }

    .access__item dd {
        line-height: 1.6;
        font-size: 1.5rem;
    }

    .access__list {
        width: 24.3vw;
    }

    .access__content {
        padding: 0 8.3% 300px;
    }
}