@charset 'UTF-8';

:root {
    --accent-color: #DDC5D1;
    --main-color01: #AA8E7D;
    --bace-color: #FFF9F2;
    --text-color: #202020;
}

html {
    width: 100%;
    font-size: 0.695vw;
    font-family: 'Zen Maru Gothic', sans-serif, sans-serif;
    letter-spacing: .15rem;
    overflow-x: hidden;
}



body {
    background-color: var(--bace-color);
    color: #202020;
    font-size: 100%;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: var(--text-color);
}

li {
    list-style: none;
}

* {
    box-sizing: border-box;
}

.container {
    margin: 0 auto;
    padding: 0 20vw;
    margin-bottom: 16rem;
    max-width: 1920px;
}

.inner {
    max-width: 768px;
    margin: 0 auto;
    /* padding-inline: 5.6%; */
}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 5%;
    }

    .home .nav>.text,
    h1 {
        display: none;
    }

}


@media screen and (min-width: 1500px) {
    .inner {
        max-width: 1200px;
        margin: 0 auto;
    }

    .home .nav>.text {
        display: flex;
    }
}

@media screen and (min-width: 2000px) {
    .container {
        padding: 0 20px;
    }

    .inner {
        max-width: 1200px;
        margin: 0 auto;
    }
}

.home h1 {
    font-family: 'Cantarell', sans-serif;
    width: 5rem;
    position: absolute;
    bottom: 2rem;
    margin-left: 4rem;
    z-index: 99999;
    left: 0;
}

h2 {
    font-family: 'Italiana', serif;
    font-style: normal;
    text-orientation: sideways;
    font-size: clamp(60px, 1vw, 96px);
    color: #b2b2b2;
}


.home h3 {
    font-size: clamp(18px, 1vw, 40px);
    font-weight: 600;
    letter-spacing: .8rem;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
    color: var(--text-color);
    margin-bottom: 12rem;
}

h3::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 0;
    height: .3rem;
    background: var(--text-color);
    transition: width 0.6s ease-out 0.5s;
}

.home h3.active::after {
    width: 100%;
}

h4 {
    font-size: clamp(18px, 1vw, 24px);
    font-weight: bolder;
}

/* フォント */
.italiana {
    font-family: "Italiana", serif;
    font-style: normal;
}

.cantarell {
    font-family: "Cantarell", sans-serif;
    font-style: normal;
}

@media screen and (max-width: 768px) {

    .home h3 {
        font-size: 18px;
    }

    h4 {
        font-size: 24px;
    }
}


@media screen and (min-width: 2000px) {

    .home h3 {
        font-size: 36px;
    }

    h4 {
        font-size: 24px;
    }
}

/* ローディング画面 */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--accent-color);
    background-size: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    animation: fadeOut 0.5s ease 2.5s forwards;
      -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.loading__logo {
    animation: fadeInUp 1.5s ease forwards;
    opacity: 0;
}

.loading__logo img {
    width: 20rem;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(3rem);
    }

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

@keyframes fadeOut {
    0% {
        opacity: 1;
        visibility: visible;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}

@media screen and (max-width:768px) {
    .loading__logo img {
        width: 15rem;
    }
}



/* FV */



.home .top {
    position: relative;
    width: 100%;
    margin-bottom: 16rem;
}

/* .home .toggle_btn {
    display: none;
} */

.home .nav {
    position: absolute;
    bottom: 3rem;
    left: 7rem;
}


/* 画面が90vhスクロールされた時に付与するクラス */
.home header h1.is-fixed {
    position: fixed;
    top: 0.8rem;
    left: 0;
    z-index: 9999;
    /* navより上 */

}

.home .nav.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    width: 100%;
    height: 7rem;
    /* ← イメージ通りの高さ */

    padding-right: 3%;

    background-color: var(--main-color01);
    display: flex;
    align-items: center;
    text-align: right;
    box-sizing: border-box;
    z-index: 100;
    overflow: hidden;
    justify-content: flex-end;

}

.home .nav>p {
    letter-spacing: 1rem;
    font-weight: 500;
    font-size: 12.8rem;
    position: absolute;
    top: -53vh;
    z-index: 99999;
}

.home .nav>.text>div {
    width: 2rem;
    opacity: .9;
    display: flex;
    align-items: center;
    transition: color 0.5s, transform 0.5s;
}

.home .nav>.text>div:hover {
    transform: translateY(-5px);
    color: var(--accent-color);
}


.home .header-musk {
    position: absolute;
    top: 0;
    right: 0;
    height: 100vh;
    width: 50%;
    background-color: var(--bace-color);
    z-index: 9;
      transform: translateX(100%);
  will-change: transform;
}




.home header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
    width: 100%;
    background-color: var(--main-color01);
    height: 100vh;
    position: relative;
    z-index: 1;
    padding-top: 4rem;
}

.header__txt {
    position: absolute;
    bottom: 6rem;
    left: 6rem;
    transform: translateY(-3rem);
    transform: translateX(4rem);
    /* 英語の下に配置 */
    z-index: 20;
    font-size: clamp(0.75rem, 0.667rem + 0.356vw, 1rem);
    line-height: 2;
    color: #ffffff;
}

header>p.header__txt {
    position: absolute;
    bottom: calc(9vh + 3rem);
    /* 左下に固定 */
    left: calc(26.5vw + 3rem);
    z-index: 20;
    font-size: clamp(0.75rem, 0.667rem + 0.356vw, 1rem);
    line-height: 2;
    color: #f0e9e9;
    mix-blend-mode: difference;
}


nav>ul,
nav {
    display: flex;
    gap: 2rem;
    margin-left: 2rem;

}

nav>ul>li a {
    line-height: 2.5rem;
    font-size: clamp(12px, 1vw, 16px);
    transition: color 0.5s, transform 0.5s;
    display: inline-block;
}

nav>ul>li>a:hover {
    transform: translateY(-5px);
    color: var(--accent-color);
}

.sp-nav {
    display: none;
}


.top>header>.italiana {
    top: 0;
    right: 1rem;
    /* なんでこれで右に寄るか聞く  */
    position: absolute;
    font-size: clamp(32px, 1vw, 69px);
    font-weight: lighter;
    color: #f0f0f0;
    mix-blend-mode: difference;
    z-index: 10;
}




.mv-slide {
    position: absolute;
    overflow: hidden;
    width: 70%;
    /* ← 70% → 50vw に */
    height: 80vh;
    /* ← 80vh → 100vh に */
    right: 0;
    top: 10vh;
    /* ← 10vh → 0 にしてズレ解消 */
    z-index: 10;
    border-radius: 2.5rem 0 0 2.5rem;
}


/*=== 画像の設定 ======================================= */
.mv-slide img {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center center;
    /* 2つのアニメを同じ周期で回す（32s）・両方とも fill-mode を入れて安定させる */
    animation: slideAnime 32s ease infinite both, zoomAnime 32s linear infinite both;
    z-index: 3;
}

/*=== スライドのアニメーションを段差で開始する ========= */
.mv-slide img:nth-of-type(1) {
    animation-delay: 24s
}

.mv-slide img:nth-of-type(2) {
    animation-delay: 16s
}

.mv-slide img:nth-of-type(3) {
    animation-delay: 8s
}

.mv-slide img:nth-of-type(4) {
    animation-delay: 0s
}

/*=== スライドのアニメーション ========================= */

.text>div>a {
    display: block;
}

/* ゆっくり拡大 */
@keyframes zoomAnime {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }

    /* 好みで1.05〜1.2まで調整可能 */
}


@keyframes slideAnime {
    0% {
        opacity: .5
    }

    5% {
        opacity: 1
    }

    33% {
        opacity: 1
    }

    38% {
        opacity: 0
    }

    100% {
        opacity: 0
    }
}

.scroll-box {
    width: 300px;
    height: 300px;
    margin: -20rem 5rem 0 auto;
    position: relative;
    overflow: hidden;
    color: #f0f0f0;
    mix-blend-mode: difference;
    z-index: 3;
    font-weight: bold;
    position: absolute;
    right: 0;
}



/* アニメーション設定 */
.arrowWrap {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 200px
}

.arrowInner p {
    font-size: 1.2rem;
    text-align: end;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.arrow {
    width: 1px;
    height: 10rem;
    margin: 3rem auto 0;
    background-color: #eee;
    position: relative;
    overflow: hidden;
}

.arrow::before {
    content: '';
    width: 1px;
    height: 100px;
    margin: 50px auto 0;
    background-color: var(--text-color);
    position: absolute;
    top: -150px;
    left: 0;
    -webkit-animation: arrow 2.5s ease 0s infinite normal;
    animation: arrow 2.5s ease 0s infinite normal;
}

@keyframes arrow {
    0% {
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
    }

    60% {
        -webkit-transform: translate3d(-50%, 100px, 0);
        transform: translate3d(-50%, 100px, 0);
    }

    100% {
        -webkit-transform: translate3d(-50%, 100px, 0);
        transform: translate3d(-50%, 100px, 0);
    }
}





@media screen and (max-width:768px) {


    .home .header-musk {
        width: 50%;
          transform: translateX(100%);
  will-change: transform;
    }

    .home .nav.is-fixed {
        display: none;
    }

    .home header::after {
        content: "";
        background-color: var(--bace-color);
        width: 100vw;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 40vh;
    }


    .mv-slide {
        top: 0;
        right: 0;
        width: 75vw;
        border-radius: 0 0 0 5rem;
    }

    .top>header>.italiana {
        top: 50vh;
        font-size: 10rem;
    }

    .top>header>.italiana>br:nth-child(2) {
        display: none;
    }

    .home .nav>p {
        top: -63vh;
    }

    .home .header-musk {
        transform: translateY(0);

    }

    header>p.header__txt {
        left: 6rem;
        bottom: 10rem;
        font-size: 4.5rem;
        line-height: 6rem;
    }

    /* hamburger-menu */

    .toggle_btn span .open {
        background-color: #202020;
        z-index: 999;
    }


    /* トグルボタン */
    .toggle_btn {
        width: 40px;
        height: 40px;
        position: fixed;
        cursor: pointer;
        z-index: 999;
        align-self: center;
        display: block;
        top: 0;
        right: 0;
        margin: 20px;
    }

    .toggle_btn span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #000000;
        position: absolute;
        left: 0;
        transition: all 0.6s ease;
        /* アニメーションをゆっくりに */
        transform-origin: center;
        /* 回転の中心を線の真ん中に */
        /* z-index: 9999; */
    }

    /* 線の初期位置 */
    .toggle_btn span:nth-child(1) {
        top: 3px;

    }

    .toggle_btn span:nth-child(2) {
        top: 50%;
    }

    .toggle_btn span:nth-child(3) {
        bottom: 3px;
    }

    /* トグルボタンアニメ */
    .toggle_btn.open span:nth-child(1) {
        transform: translateY(20px) rotate(45deg);
    }

    .toggle_btn.open span:nth-child(2) {
        opacity: 0;
    }

    .toggle_btn.open span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    /* ========== open状態（×になる時） ========== */

    .open .sp-nav {
        position: fixed;
        transform: translateX(0);
        z-index: 30;
        padding: 80px 30px;
    }

    .open .sp-nav a {
        color: #202020;
        display: block;
        line-height: 65px;
    }


    .open .sp-nav>ul:nth-child(2) {
        margin-top: 50px;
    }

    /* マスク */
    .musk {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #5a475243;
        z-index: 2;
        /* メニューの下、ボタンより上 */
    }

    .musk.open {
        display: block;
    }


    /* メニュー */
    .sp-nav {
        position: fixed;
        display: block;
        top: 0;
        left: 0;
        width: calc(100% - 80px);
        height: 100vh;
        /* 最前面 */
        transform: translateX(-100%);
        transition: transform 0.4s ease;
        padding: 80px 30px;
        z-index: 30;
        transition: all 0.6s;
        background: #b8a2adf5;
    }


    .sp-nav.open {
        transform: translateX(0);
    }

    /* メニューの中の文字 */
    .sp-nav a {
        color: var(--text-color);
        display: block;
        line-height: 3;
        font-size: 16px;
        letter-spacing: 1.5rem;
        font-weight: bold;
    }

    nav>ul,
    nav {
        flex-direction: column;
    }


    .text>div {
        width: 40px;
        margin-left: 2rem;
        margin-top: 4rem;
        transition: color 0.5s, transform 0.5s;
    }

    .text>div:hover {
        transform: translateY(-5px);
    }
}

/* inspiration */

section {
    position: relative;
}

#inspiration p {
    font-size: clamp(12px, 1vw, 16px);
}


#inspiration p>span {
    font-size: clamp(18px, 1vw, 24px);
    font-weight: 300;
}

#inspiration img {
    object-fit: cover;
    border-radius: 2.5rem;
    aspect-ratio: 3/5;
}

section h2 {
    position: absolute;
    left: 0;
    top: 5rem;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    padding-left: 18rem;

}

.inspiration {
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: center;
}

.inspiration1,
.inspiration2 {
    width: calc(100% / 2);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px);
    transition:
        opacity 0.6s ease 0.4s,
        transform 0.6s ease 0.4s,
        visibility 0.6s ease 0.4s;
    margin-bottom: 50px;
}

.inspiration .inview {
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px);
    transition:
        opacity 0.9s ease-out 0.3s,
        transform 0.9s ease-out 0.3s,
        visibility 0.9s ease-out 0.3s;
    margin-bottom: 50px;
}

.inspiration .inview:last-child {
    transition:
        opacity 2s ease-out 0.3s,
        transform 0.9s ease-out 0.3s,
        visibility 0.9s ease-out 0.3s;
    margin-bottom: 50px;
}


/* 出現後 */
.inspiration .inview.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.inspiration1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 5.5rem;
}


.inspiration2 {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    text-align: right;
    gap: 5.5rem;
}


@media screen and (max-width: 768px) {

    .inspiration {
        flex-direction: column;
    }

    #inspiration img {
        aspect-ratio: 1/1;
        width: 80%;
    }

    .inspiration1,
    .inspiration2 {
        width: 100%;
    }

    #inspiration p {
        font-size: 12px;
    }


    #inspiration p>span {
        font-size: 18px;
    }

    .inspiration2 {
        display: flex;
        flex-direction: column;
    }

    .inspiration .inview {
        margin-bottom: 25px;
    }

    .inspiration .inview:last-child {
        margin-bottom: 0;
    }

    section h2 {
        padding-left: 0;
        font-size: 20rem;
        opacity: .5;
        mix-blend-mode: difference;
        z-index: 99999;
        color: #3e353b;
    }
}


@media screen and (min-width: 2000px) {

    section h2 {
        left: -95px;
    }

    #inspiration p {
        font-size: 16px;
    }


}


/* CONCEPT */

#concept {
    height: 75rem;
    background-image: url(../img/concept.webp);
    background-position: center;
    /* background-size: 100%; */
    background-repeat: no-repeat;
    transition: background-size 6s ease-out 0.6s;
}

#concept.is-show {
    background-size: 108%;
}

#concept h2 {
    /* top: 13rem; */
    margin-top: auto;
    padding-bottom: 100px;
}



#concept p {
    font-size: 1.6rem;
    color: #fff;
    line-height: 3;
    letter-spacing: .3rem;
    padding: 15rem 0;

}

#concept p::after {
    content: "";
    width: 110vw;
    /* 横を広げるとカーブが緩くなる（重要） */
    height: 22rem;
    /* 高さを低めに */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    /* 中央揃え */
    bottom: -8rem;
    background: var(--bace-color);

    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    /* ← カーブを浅く */

}


#concept span {
    font-size: 2.4rem;
}


@media screen and (max-width: 768px) {

    #concept {
        height: fit-content;
    }

    .concept_br {
        display: none;
    }

    #concept h2 {
        padding-bottom: 20px;
    }


    #concept p {
        font-size: 4.5em;
        line-height: 2.4;
        top: 20%;
        width: 80%;
        margin: 0 auto;
        left: 0;
        right: 0;
        display: inline-block;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #concept p::after {
        display: none;
    }

    #concept span {
        font-size: 8rem;
    }
}

@media screen and (min-width: 2000px) {

    #concept p {
        font-size: 16px;
        line-height: 3.5;
    }

    #concept span {
        font-size: 24px;
    }

    #concept {
        height: 60rem;
        padding-bottom: 25%;
    }
}



/* about */
#about {
    text-align: center;
}

#about h4>span {
    display: none;
}

#about li {
    display: flex;
    justify-content: space-between;
    position: relative;
    text-align-last: left;
    align-items: center;
    gap: 4rem;
}

#about li:nth-child(odd) {
    flex-direction: row-reverse;
}

#about li:nth-child(even) {
    gap: 8rem;
    justify-content: end;
}

#about li>div:nth-child(2) {}

#about img {
    object-fit: cover;
    aspect-ratio: 1 / 1;
    border-radius: 2.5rem;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#about p {
    font-size: clamp(12px, 1vw, 16px);
    font-weight: bold;
    margin-top: 1.8rem;
}


.about_img {
    flex: 0 0 33.333%;
}


.about_list {
    counter-reset: about;
    /* カウンター初期化 */
    list-style: none;
    padding: 0;
}

.about_list li {
    counter-increment: about;
    position: relative;
}

.about_list li>div {

    /* リストが進むごとに +1 */
    position: relative;
    margin-bottom: 8rem;
    width: 70%;
}

/* ここで “01 / 02 / 03” を生成 */
.about_img::before {
    content: counter(about, decimal-leading-zero);
    position: absolute;
    left: -2rem;
    top: -3rem;
    font-size: 5rem;
    font-weight: bolder;
    color: var(--text-color);
}

.about_img {
    position: relative;
}

.about_list .inview {
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px);
    transition:
        opacity 0.6s ease 0.4s,
        transform 0.6s ease 0.4s,
        visibility 0.6s ease 0.4s;
    margin-bottom: 50px;
}

/* 出現後 */
.about_list .inview.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


@media screen and (max-width: 768px) {


    #about h4 {
        font-size: 16px;
    }

    #about h4>span {
        display: inline-block;
        margin-right: 5px;
    }

    #about li,
    #about li:nth-child(odd) {
        flex-direction: column;
    }

    .about_img::before {
        display: none;
    }

    .about_list li>div {
        width: 100%;
        margin-bottom: 1rem;

    }

    #about p {
        font-size: 12px;
        font-weight: lighter;
        margin-top: 10px;
    }


}


@media screen and (min-width: 2000px) {

    #about p {
        font-size: 16px;
    }
}



/* flavors */

#flavors {
    text-align: center;
    margin-bottom: 16rem;
}


#flavors p {
    padding-top: 0.5rem;
    text-align: left;
    line-height: 1.5;
}

#flavors h4 {
    font-family: "Cantarell", sans-serif;
    font-size: clamp(24px, 1vw, 36px);
    font-weight: 300;
    text-align: center;
    ;
}

#flavors ul {
    display: flex;
    width: 80vw;
    margin-left: auto;
    justify-content: center;
}

#flavors ul li {
    border-radius: 9999px;
    /* ← 縦長カプセル */
    overflow: hidden;
}



#flavors ul li div {
    padding: 1.5rem 2rem 8rem;
    margin: 0 auto;
    background: var(--card-bg);

}

#flavors img {
    aspect-ratio: 1 / 1;
}

#flavors .text {
    text-align: right;
    margin-right: 5rem;
    margin-top: 5rem;
}

/* 親を基準にする */
.flavor-item {
    position: relative;
    cursor: pointer;

}

/* 1枚目・2枚目 共通 */
.flavor-item img {
    display: block;
}

/* 2枚目（切り替え画像） */
.flavor-item img:last-of-type {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(.1rem);
    opacity: 0;
    transition: opacity .6s ease;
    pointer-events: none;
    filter: brightness(120%) contrast(78%);
}

/* hover時に2枚目だけ表示 */
.flavor-item:hover img:last-of-type {
    opacity: 1;

}

/* ↓フレーバー詳細モーダルのパーツ */

/* モーダルを開くボタン */
.modal-open {
    position: fixed;
    top: 50%;
    left: 50%;
    font-size: clamp(12px, 1vw, 16px);
    font-weight: bold;
    width: 300px;
    height: 60px;
    color: #fff;
    background: #000;
    border: none;
    cursor: pointer;
    translate: -50% -50%;
}

/* モーダルと背景の指定 */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 50%);
    padding: 40px 20px;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    box-sizing: border-box;
    display: none;
}

/* モーダルの擬似要素の指定 */
.modal:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    margin-left: -0.2em;
}

/* クラスが追加された時の指定 */
.modal.is-active {
    opacity: 1;
    visibility: visible;
}

/* モーダル内側の指定 */
.modal-container {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    max-width: 600px;
    width: 90%;
}

/* モーダルを閉じるボタンの指定 */
.modal-close {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -20px;
    right: -20px;
    width: 40px;
    height: 40px;
    color: #fff;
    background: #000;
    border-radius: 50%;
    cursor: pointer;
}

/* モーダルのコンテンツ部分の指定 */
.modal-content {
    background: #fff;
    text-align: left;
    line-height: 1.8;
    padding: 20px;

}

/* モーダルのコンテンツ部分のテキストの指定 */
.modal-content p {
    margin: 1em 0;
}

/* モーダル全体の背景（暗幕） */
#flavor-modal {
    display: none;
    /* JSのfadeInで表示させるため最初は隠す */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    /* 非常に高い値を設定 */
    background: rgba(0, 0, 0, 0.7);
}

/* モーダルの白い箱 */
.modal-content {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    /* PCサイズ */
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 横並びのレイアウト設定 */
.modal-flex-container {
    display: flex;
    align-items: center;
    gap: 40px;
    align-self: center;
    height: 100%;
}

/* 写真部分（50%） */
.modal-img-box {
    flex: 1;
    overflow: hidden;
    border-radius: 15px;
    max-height: 100%;
}

.modal-img-box img {
    width: 100%;
    object-fit: cover;
    /* 画像を枠に合わせる */
    vertical-align: bottom;
}

/* テキスト部分（50%） */
.modal-txt-box {
    flex: 1;
    font-size: clamp(12px, 1vw, 16px);
    line-height: 1.4;
}


#modal-title {
    font-family: 'Italiana', serif;
    font-size: clamp(24px, 1vw, 36px);
    margin-bottom: 20px;
    color: var(--text-color);
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

#modal-desc {
    font-size: clamp(12px, 1vw, 16px);
    line-height: 1;
}

/* 閉じるボタン（×） */
.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 35px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
}

.close-btn:hover {
    color: var(--text-color);
}

#flavors h5 {
    border-top: 1px solid var(--text-color);
    padding-top: 10px;
}

.modal-info-grid dl {
    padding: 10px 0;
    border-top: 1px solid var(--text-color);
}

@media screen and (max-width: 768px) {

    #flavors {
        margin-bottom: 54rem;
    }


    .modal-content {
        padding: 20px;
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
        /* 長いテキストの場合スクロール可能に */
    }

    .modal-flex-container {
        flex-direction: column;
        /* 縦並び */
        gap: 5px;
    }


    #modal-title {
        margin-bottom: 15px;
    }

    #modal-desc {
        font-size: 1.4rem;
    }

    .close-btn {
        top: 5px;
    }

    #flavors p {
        font-size: 12px;
    }

    #flavors ul {
        margin: 0 auto;
    }

    #flavors ul li {
        height: 80%;
    }

    #flavors ul li>div {
        height: 250px;
        padding: 5% 10%;
    }

    #flavors h4 {
        font-size: 7rem;
    }

    #flavors .text {
        margin: 50px auto 0;
    }

    .modal-info-grid,
    .price-row {
        font-size: 12px;
    }

    .modal-info-grid dt {
        font-weight: bold;
    }

    #flavors h5 {
        font-size: 12px;
        border-top: 1px solid var(--text-color);
        padding-top: 10px;
    }

    #flavors img {
        aspect-ratio: unset;
    }

}

@media screen and (min-width: 2000px) {
    #flavors h2 {
        left: 270px;
    }
}

@media screen and (min-width: 2500px) {

    #flavors ul {
width: 2000px;
}
}



/* NEWS */

#news {
    background-color: var(--accent-color);
    height: 40rem;
}


/* リスト */
.news-list {
    max-width: 900px;
    margin-left: auto;
}

/* 各行 */
.news-list-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}

/* ボタン */
.news-item {
    all: unset;
    display: grid;
    grid-template-columns: 120px 1fr auto;
    align-items: center;
    width: 100%;
    padding: 2.2rem 0;
    cursor: pointer;
}

/* 日付 */
.news-date {
    font-size: 13px;
    letter-spacing: 0.08em;
}

/* タイトル */
.news-title {
    font-size: 1rem;
    letter-spacing: 0.08em;
}


.lineArrow {
    width: 12vw;
    height: 1.5rem;
    border-bottom: .1rem solid var(--text-color);
    border-right: .1rem solid var(--text-color);
    /*傾きを調節*/
    transform: skew(45deg);
    /*下線矢印をテキストに合わせてうまい具合にはめる*/
    margin: -.5rem -2rem 0 10rem;
}

.moreLinkText {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    letter-spacing: 0.5rem;
    text-align: right;
    padding-right: 30px;
    font-size: clamp(12px, 1vw, 16px);
    ;
}

.moreLink {
    position: absolute;
    bottom: 4.5rem;
    right: -10px;
    font-size: clamp(12px, 1vw, 16px);
    top: 31rem;
}

.moreLink:hover {
    opacity: .6;
}

#news>div {
    display: flex;
    margin-top: 20rem;
    justify-content: space-between;
    position: relative;
    margin-top: 3rem;


}

#news>div>div {
    width: 25rem;
    border-radius: 25px 25px 25px 25px;
    position: absolute;
    top: -5rem;
    left: 0;
    margin-left: auto;
    filter: brightness(104%) contrast(95%) saturate(86%);
}

#news>div>div>img {
    border-radius: 25px 25px 25px 25px;
    aspect-ratio: 1 / 2;
    object-fit: cover;
}

#news>div>ul>li {
    /* 1. 位置移動（transform）を滑らかにする設定 */
    transition: transform 0.3s ease;
}

#news>div>u li .button:hover {
    /* background-color: #d2c3ce; */
    /* 2. 少し上に浮かせる（-5px） */
    transform: translateY(-5px);
}


/* 4. ホバーした時の文字色を指定 */
.news-title:hover {
    color: #926989;
    transform: translateY(-5px);
}

.news-title {
    transition: color 0.5s, transform 0.5s;
    font-size: clamp(12px, 1vw, 16px);
}

#news>div>ul li .button::after {
    content: '';
    position: absolute;
    width: .8rem;
    height: .8rem;
    border: 0;
    border-top: solid .1rem var(--text-color);
    border-right: solid .1rem var(--text-color);
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 1rem;
    bottom: 0;
    margin: auto;
}


#news>div>ul {
    width: 60%;
    margin-left: auto;
    margin-top: 6rem;
    position: relative;
    right: 0;
}

#news .inview {
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px);
    transition:
        opacity 0.9s ease-out 0.3s,
        transform 0.9s ease-out 0.3s,
        visibility 0.9s ease-out 0.3s;
    margin-bottom: 50px;
}


#news .inview.inview.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.news-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
}

.news-modal {
    background: #fff;
    /* max-width: 520px; */
    width: 80%;
    margin: 20vh auto;
    padding: 40px;
    position: relative;
}

.modal-date {
    font-size: 14px;
    opacity: 0.6;
    margin-bottom: 8px;
}

.modal-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 16px;
}

.modal-body {
    line-height: 1.7;
}

.modal-body p {
    font-size: 16px;
}

.news-modal-close {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -20px;
    right: -20px;
    width: 40px;
    height: 40px;
    color: #fff;
    background: #000;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
}

@media screen and (min-width: 2000px) {
    #news>div>ul>li>a {
        font-size: 16px;
    }

}

@media screen and (max-width: 768px) {

    #news {
        height: 98rem;
    }

    .news_list {
        padding: 0 20px;
    }

    #news h2 {
        opacity: .2;
        color: #e9696983;
    }

    #news .container {
        padding: 0;
    }

    #news>div>div {
        width: 100%;
        border-radius: 0;
        position: absolute;
        top: -34rem;
        left: 0;
        margin-left: auto;
        filter: brightness(104%) contrast(95%) saturate(86%);
    }

    #news>div>div>img {
        border-radius: 0;
        aspect-ratio: 8 / 2;
        object-fit: cover;
        /* margin-top: 100px; */
    }

    #news>div>ul {
        width: 100%;
        padding: 0 5%;
        margin-top: 9rem;
    }

    .moreLink {
        top: 68rem;
        right: -2px;
    }

    .moreLinkText {
        font-size: 12px;
    }

    .lineArrow {
        width: 22vw;
        height: 2.5rem;
    }



    .modal-date {
        font-size: 12px;
        margin-bottom: 8px;

    }

    .modal-title {
        font-size: 12px;
        font-weight: bold;
        margin-bottom: 16px;
    }

    .modal-body {
        line-height: 1.7;
    }

    .modal-body p {
        font-size: 12px;
    }

    .news-title {
        font-size: 12px;
    }

    .news-title {
        width: 100%;
        /* タイトルを横いっぱいに広げる */
        padding-right: 30px;
        /* 右側の矢印と被らないように余白を作る */
        text-align: left;
    }

    .news-item {
        display: flex;
        flex-direction: column;
        /* 縦並びに変更 */
        align-items: flex-start;
        /* 左寄せに揃える */
        padding: 2% 0;
        position: relative;
    }

}


@media screen and (max-width: 1000px) {
    .news-item {
        /* 縦並びに変更 */
        align-items: flex-start;
        /* 左寄せに揃える */
        padding: 2% 0;
        position: relative;
    }

    .news-item {
        grid-template-columns: 75px 1fr auto;
    }

    #news>div>ul {
        margin-top: 4rem;
    }

}

/* access */

.access-info {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.8;
    color: #222;
}

.access-txtbox {
    width: 50%;
}

/* address全体 */

#access {
    font-size: clamp(12px, 1vw, 14px);
    margin-top: 20rem;
}

#access>div:first-of-type {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}

.access_img>img {
    border-radius: 2.5rem;
    object-fit: cover;
}

.access_img {
    display: flex;
    flex-direction: column;
    flex-basis: 50%;
    gap: 2.5rem;
    justify-content: center;

}

.access_img .inview {
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px);
    transition:
        opacity 0.9s ease-out 0.3s,
        transform 0.9s ease-out 0.3s,
        visibility 0.9s ease-out 0.3s;
}

.access_img .inview.inview.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.access_txtbox {
    flex-basis: 50%;
}


.access_txtbox>p:first-child {
    font-size: clamp(24px, 1vw, 38px);
    font-weight: bold;
}

.home address {
    font-style: normal;
    border-bottom: solid .1rem var(--text-color);
    line-height: 2;
    margin-top: 10px;
    padding-bottom: 1.5rem;
}

address p {
    font-size: clamp(12px, 1vw, 16px);
}

.access-text {
    line-height: 2;
    padding-top: 1.5rem;
    font-size: clamp(12px, 1vw, 16px);
}

/* 各情報ブロック */
.access-info p {
    margin-bottom: 1rem;
}

/* 郵便番号 */
.access-info .postal-code {
    font-weight: 500;
}

/* 住所 */
.access-info .address {
    display: inline-block;
    margin-top: 0.2rem;
}

/* ラベル部分（TEL / 営業時間など） */
.access-info strong {
    font-weight: 600;
    margin-right: 0.3rem;
}

/* 電話リンク */
.access-info a[href^="tel"] {
    color: inherit;
    text-decoration: none;
}

.access-info a[href^="tel"]:hover {
    text-decoration: underline;
}

.map-onimg {
    position: relative;
    margin-top: 5rem;
}

.map-onimg p {
    color: #fff;
    width: 100%;
    height: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgba(46, 34, 22, 0.7);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s ease;
    font-size: clamp(14px, 1vw, 18px);
    cursor: pointer;
}

.map-onimg:hover p {
    opacity: 1;
}

.dli-caret-right {
    display: inline-block;
    vertical-align: middle;
    color: #333;
    line-height: 1;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent;
    border-width: 0.375em 0.64952em;
    border-left-color: currentColor;
    border-right: 0;
}

.map-link {
    margin-left: auto;
    text-align: right;
    margin-top: 3rem;
    transition: 0.5s, transform 0.5s;
}

.map-link:hover {
    transform: translateY(-5px);
}

.map-link span {
    content: '';
    display: inline-block;
    vertical-align: middle;
    color: var(--text-color);
    line-height: 1;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent;
    border-width: 0.375em 0.64952em;
    border-left-color: currentColor;
    border-right: 0;
}

/* MAPモーダル */
.course-item {
    /* width: 30%; */
}

.course-item img {
    cursor: pointer;
}

/* モーダル背景 */
#grayDisplay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    z-index: 99999;
    /* フレーバーモーダルと同じかそれ以上に */
    justify-content: center;
    /* 追加：中央寄せ */
    align-items: center;
    /* 追加：中央寄せ */
}

/* 画像とボタンを包むコンテナ */
#grayDisplay .modal-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

#grayDisplay img {
    max-width: 100%;
    max-height: 90vh;
    display: block;
    object-fit: contain;
    border: 3px solid #fff;
    /* 少し額縁をつけると高級感が出ます */
}

/* 閉じるボタンの配置（画像の右上） */
#grayDisplay .modal-close {
    position: absolute;
    top: -20px;
    /* 少し上に浮かせる */
    right: -20px;
    /* 少し右に浮かせる */
    width: 44px;
    /* スマホでも押しやすいサイズ */
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: #333;
    font-size: 28px;
    font-weight: bold;
    line-height: 44px;
    text-align: center;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 100000;
}

/* スマホではボタンを少し小さく、位置を調整 */
@media screen and (max-width: 768px) {
    #grayDisplay .modal-close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
        line-height: 36px;
        font-size: 20px;
    }

    .access_img>img:first-child {
        display: none;
    }

    .access_img>img {
        height: 160px;
    }

    #access>div:first-of-type {
        flex-direction: column;
    }

    .access_txtbox>p:first-child {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .access_txtbox>p {
        font-size: 12px;
        padding-top: 15px;
        margin-bottom: 36px;
    }

    .home address p {
        font-size: 12px;
    }

    .home address {
        padding-bottom: 15px;
    }

    .map-link {
        font-size: 12px;
    }

    .map-link span {
        margin-left: 4px;
    }



}

@media screen and (min-width: 2000px) {

    .home address,
    .access-text {
        line-height: 2;
    }

    address p,
    .access-text {
        font-size: 16px;
    }

    .map-link {
        margin-top: 3rem;
        max-width: 1200px;
        margin: 30px auto 0;
    }
}




/* footer */

footer {
    background-color: var(--main-color01);
    padding-top: 10rem;
    padding-bottom: 1rem;
    margin-top: 120px;
    text-align: center;
}

footer ul {
    display: flex;
    gap: 2.4rem;
    font-size: clamp(12px, 1vw, 16px);
    justify-content: center;
}

footer ul li a {
    transition: color 0.5s, transform 0.5s;
    display: inline-block;
}

footer ul li a:hover {
    transform: translateY(-5px);
    color: var(--accent-color);
}

footer ul li img {
    width: 2.5rem;
}

.footer-logo {
    width: 6rem;
    margin: 0 auto;
    margin-top: 5rem;
}

footer>small {
    justify-content: center;
    margin: 0 auto;
    display: flex;

    font-size: clamp(10px, 1vw, 12px);
}

footer>div:nth-child(3) {
    margin-top: 5rem;
    margin-bottom: 1rem;
    font-size: 12px;
}


@media screen and (max-width: 768px) {
    footer ul {
        gap: 16px;
        font-size: 12px;
    }

    footer ul li:last-child {
        line-height: 14px;
    }

}








/* contact */

.contact_body {
    position: relative;
    text-align: center;

}

.contact_header {
    background-color: var(--main-color01);
    width: 100%;
    height: 7rem;
    margin: 0 auto;
    position: fixed;
    z-index: 1;
}

.contact_fv {
    height: 30vh;
    position: relative;
    background: url(../img/contact.webp) center;
    background-size: cover;
    margin-bottom: 100px;
    margin-top: 7rem;
}

.contact_fv h1 {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    color: var(--text-color);
    top: 10vh;
    font-size: clamp(24px, 1vw, 48px);

}

.contact_fv h1::after {
    content: "お問い合わせ";
    font-size: clamp(12px, 1vw, 16px);
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: -15px;
    text-align: center;
    position: absolute;

}

.contact_header p {
    position: static;
    margin-left: 0;
    width: 5rem;
}

.contact_header>.contact_nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 7rem;
}

.contact_header>.contact_nav>nav>div {
    width: 2rem;
    opacity: .9;
    display: flex;
    align-items: center;
    transition: color 0.5s, transform 0.5s;
}


.contact_header nav {
    text-align: right;

}

.contact_body footer {
    position: absolute;
    width: 100%;
    bottom: -40rem;
    margin-top: 16rem;
}

.contact_right {
    width: 60%;
    padding-left: 7rem;

}

.contact_right li {
    font-size: clamp(12px, 1vw, 16px);
    background-color: #ede6df;
    margin-bottom: 20px;
}

address .cantarell,
address .cantarell a,
address li>p {
    font-size: clamp(12px, 1vw, 16px);
}

input,
textarea,
select {
    padding: 10px 0;
    font-size: clamp(12px, 1vw, 16px);
    padding: 1.3rem;
    width: 100%;
    color: var(--text-color);
}

::placeholder {
    color: #353535;
    /* プレースホルダー */
}

/* 通常 */
input,
textarea,
select {
    background: #f1e8df;
    color: #333;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* フォーカス時（水色なし） */
input:focus,
textarea:focus,
select:focus {
    outline: none;
    box-shadow: none;
    background: #f7f4f2;
}

select {
    color: #353535;
    /* 初期表示を薄く */
    cursor: pointer;

}

select option {
    color: #333;
    /* 選択後は濃く */
}

.select-wrap {
    position: relative;

}

.select-wrap::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1.6rem;
    width: 0;
    height: 0;
    border-left: .6rem solid transparent;
    border-right: .6rem solid transparent;
    border-top: .6rem solid #717070;
    /* 下向き三角 */
    transform: translateY(-50%);
    /* クリック邪魔しない */
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    padding-right: 3.5rem;
    /* 三角分の余白 */
}

/* Chromeの青いフォーカス枠を完全に消す */
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: none;
    box-shadow: none;
}

/* autofill（水色背景）を無効化 */
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #ded4ca inset;
    -webkit-text-fill-color: var(--text-color);
    transition: background-color 9999s ease-in-out 0s;
}

.submit-btn {
    text-align: center;
    margin-top: 3rem;
    background-color: var(--accent-color);
    width: 15rem;
    margin: 0 auto;
    -webkit-transition: all .3s;
    transition: all .3s;
    cursor: pointer;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    width: 40%;
}

.submit-btn:hover {
    transform: translateY(-5px);
    color: #FFFFFF;
    opacity: 0.7;
}

.submit-btn input[type="submit"] {
    width: fit-content;
    padding: 1.5rem 2rem;
    font-size: 1.6rem;

    display: flex;
    justify-content: center;
    margin: 0 auto;
    background-color: var(--accent-color);
}

.contact_body>main {
    text-align-last: left;
    ;
    margin-bottom: 16rem;
    display: flex;
    justify-content: space-between;
}

address>ul>li {
    display: flex;
    flex-direction: column;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 5rem;
}

address>ul>li>a {
    font-size: 1.6rem;
    font-weight: lighter;
    display: inline-block;
    width: fit-content;
}


address>ul>li img {
    width: 3rem;
    margin-top: 1rem;
}

.contact_left {
    border-right: .1rem solid var(--text-color);
    padding-right: 7rem;
    width: 40%;
}

.privacy_check {
    position: relative;
    margin-bottom: 20px;
}

.privacy_check span,
.privacy_check a {
    font-size: 12px;
}

.privacy_check input {
    position: absolute;
    right: 20px;
    width: fit-content;
    cursor: pointer;
    ;
}

@media screen and (max-width: 768px) {

    input,
    textarea,
    select {
        font-size: 12px;
        padding: 2.4rem;
    }

    textarea[name="message"] {
        min-height: 160px;
    }

    .privacy_check {
        text-align: center;
        margin: 0 auto;
    }

    .privacy_check span,
    .privacy_check a {
        font-size: 12px;
    }

    .submit-btn input[type="submit"] {
        font-size: 12px;
    }

    .contact_body>main {
        flex-direction: column-reverse;
    }

    .contact_header {
        height: 80px;
    }

    .contact_header>.contact_nav {
        display: none;
    }

    .privacy_body .sp-nav,
    .contact_body .sp-nav {
        text-align-last: left;
    }

    .privacy_check {
        padding-inline: 5%;
        margin: 0 auto;
        margin-bottom: 20px;
    }

    .contact_right {
        width: 100%;
        padding: 0;
        margin-bottom: 10%;
    }

    .contact_left {
        border: none;
        border-top: 1px solid var(--text-color);
        margin: 0 auto;
        padding: 0;
        width: 100%;

    }

    .contact_left ul {
        margin-top: 10%;
    }

    .contact_fv,
    .privacy_fv {
        margin-top: 80px;
    }


    .contact_right li {
        font-size: 12px;
    }



    address>ul>li:last-child a img {
        width: 40px;
    }

}



@media screen and (max-width:960px) {
    .contact_body .inner {
        padding-inline: 5.6%;
    }

    input,
    textarea,
    select {
        font-size: 12px;
        padding: 2.4rem;
    }

    .privacy_check span,
    .privacy_check a {
        font-size: 12px;
    }
}

@media screen and (min-width: 2000px) {

    address>ul>li>a {
        font-size: 16px;
    }

    address>ul>li {
        font-size: 24px;
    }

    input,
    textarea,
    select {
        font-size: 16px;
    }

}



/* PRIVACY POLICY */

.privacy_body {
    position: relative;
    text-align: center;
    font-size: 16px;
}

.privacy_fv {
    height: 30vh;
    position: relative;
    background: url(../img/privacy.webp) center;
    background-size: cover;
    margin-bottom: 100px;
    margin-top: 7rem;
}

.privacy_fv h1 {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    color: var(--text-color);
    top: 10vh;
    font-size: clamp(24px, 1vw, 48px);
}

.privacy_fv h1::after {
    content: "個人情報の取り扱いについて";
    font-size: clamp(12px, 1vw, 16px);
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: -15px;
    text-align: center;
    position: absolute;
}

.privacy_body h3 {
    font-size: 20px;
    margin: 80px 0 8px;
}


.privacy_body main {
    text-align-last: left;
}

.privacy_body main ul>li {
    font-size: clamp(12px, 1vw, 16px);
}

.privacy_body main p:last-child {
    position: relative;
    padding-left: 20px;
    margin-top: 15px;
}

.privacy_body main p:last-child::after {
    content: "▶︎";
    position: absolute;
    left: 0;
}

@media screen and (max-width: 768px) {

    .privacy_body .inner {
        padding: 0 5%;
    }

    .privacy_fv,
    .contact_fv {
        margin-top: 80px;
        margin-bottom: 60px;
    }
}


/* ニュース一覧 */

.news_body {
    position: relative;
    text-align: center;
}

.news_fv {
    height: 30vh;
    position: relative;
    background: url(../img/news_fv.webp) center;
    background-size: cover;
    background-position: 0 20%;
    margin-bottom: 100px;
    margin-top: 7rem;
}

.news_fv h1 {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    color: var(--text-color);
    top: 10vh;
    font-size: clamp(24px, 1vw, 48px);

}

.news_fv h1::after {
    content: "お知らせ";
    font-size: clamp(12px, 1vw, 16px);
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: -15px;
    text-align: center;
    position: absolute;

}

.news_body .news-title {
    text-align: left;
    margin-left: 10rem;
    font-size: 16px;
}

.news_body .news-modal-overlay {
    text-align-last: left;
}