@charset "UTF-8";


/** {
    outline: 1px #000 solid;
}

↑チェック用*/
html {
    font-size: 100%;
}

body {
    background-color: #FDF6EC;
    color: #8B5E3C;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 400;
    font-size: 16px;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

li {
    list-style: none;
}

a {
    color: #8B5E3C;
    text-decoration: none;
}

a:hover {
    opacity: 0.7;
}

.wrapper {
    width: calc(100% - 70px - 10px);
    /* ビューポートの幅いっぱい */
    margin: 0px 10px 150px 70px;
    /* ヘッダーの幅分だけずらす */
}

/*テキストの設定*/
.navi-menu .ja {
    font-family: "Yusei Magic", sans-serif;
    font-size: clamp(12px, 1.67vw, 24px);
    color: #FDF6EC;
}

.navi-menu .en {
    font-family: "Dancing Script", "cursive", sans-serif;
    font-size: clamp(10px, 1.39vw, 20px);
    color: #FDF6EC;
}

.section-title {
    display: flex;
    flex-direction: column;
    position: relative;
}

.section-title .en {
    color: #A3B18A;
    opacity: 0.5;
    font-family: "Dancing Script", "cursive", sans-serif;
    font-size: 60px;
    font-weight: 900;
    display: block;
}

.section-title .ja {
    font-family: "Yusei Magic", sans-serif;
    font-size: 24px;
    font-weight: 400;
    display: block;
    position: absolute;
    top: 40px;
}

.title-left {
    display: flex;
    justify-content: flex-end;
}

.section-title {
    margin-bottom: 10px;
}

.text-right {
    margin-top: 1em;
}

.title-text,
.menu-title {
    font-family: "Yusei Magic", sans-serif;
    font-size: 20px;
    font-weight: 400;
}

.name,
.price {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-size: 20px;
    font-weight: 400;
}

.tax {
    /*円（税込み）*/
    font-size: 16px;
}

/*h3　下線*/
.under {
    border-bottom: 5px dotted #8B5E3C;
    padding-bottom: 0.1em;
}

/*img設定*/
.img-right img {
    width: 100%;
    border-radius: 0 0 0 50px;
}

.img-left img {
    width: 100%;
    border-radius: 0 0 50px 0;
}

.img-left-up img {
    width: 100%;
    border-radius: 0 50px 0 0;
}

/*ボタンの設定*/
.btn {
    max-width: 100%;
    display: inline-block;
    padding: 0.4em 2em 0.4em 1em;
    border: solid 3px #F4A261;
    background-color: #F4A261;
    border-radius: 30px;
    font-family: "Yusei Magic", sans-serif;
    font-size: 20px;
    color: #FDF6EC;
    white-space: nowrap;
    position: relative;
    text-align: center;
}

.btn::after {
    content: "";
    width: 20px;
    height: 20px;
    border-top: solid 3px #FDF6EC;
    border-right: solid 3px #FDF6EC;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 1em;
    /* ← paddingと合わせて調整 */
    transform: translateY(-45%) rotate(45deg);
    /* 垂直中央に配置 */
}

.btn:hover {
    border: solid 3px #F4A261;
    background-color: #FDF6EC;
    color: #8B5E3C;
}

.btn:hover::after {
    border-color: #8B5E3C;
}

/*========= ページトップのためのCSS ===============*/
/*リンクの形状*/
#page-top a {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    background-image: url(../img/top/down.png);
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 5px;
    width: 25vw;
    height: 25vw;
    color: #8B5E3C;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
}

#page-top a:hover {
    background-image: url(../img/top/up.png);
    background-repeat: no-repeat;
    background-size: contain;
}

/*リンクを右下に固定*/
#page-top {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 100;
    /*はじめは非表示*/
    opacity: 0;
    transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove {
    animation: UpAnime 3s forwards;
}

#page-top.floatAnime {
    animation: floatUp 2s ease-out;
}

@keyframes UpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }

}

/*　下に下がる動き　*/

#page-top.DownMove {
    animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 1;
        transform: translateY(10px);
    }
}

/*--------------------------------------------
header area
--------------------------------------------*/
#header-area {
    max-width: 100svh;
}

/*--------------------------------------------
header
--------------------------------------------*/
#header-area .header {
    max-width: 60px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    /* 他の要素より前面に表示 */
}

#header-area .header .header-1 {
    margin-bottom: 20px;
    padding: 0px 10px 60px 10px;
    background-color: #8B5E3C;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 0 0 25px 0;
    gap: 15px;
}


#header-area .header .logo {
    max-width: 40px;
}

#header-area .header .logo a {
    display: block;
}

#header-area .header .navi .navi-menu {
    text-align: center;
    /*テキストを真ん中*/
}

#header-area .header .navi li {
    padding: 20px 0;
}

/*sns＆カレンダーアイコンの設定*/
.sns-icon {
    list-style: none;
    /*先頭の・を無くす*/
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    font-size: 35px;
    transition: color 0.3s;

}

.sns-icon li a {
    color: #FDF6EC;
}

#header-area .header .header-2 {
    padding: 20px 10px;
    background-color: #F4A261;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 0 25px 25px 0;
}

.reservation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    font-family: "Yusei Magic", sans-serif;
    color: #8B5E3C;

}

.reservation i {
    font-size: 35px;
}

/*--------------------------------------------
mainvisual
--------------------------------------------*/
#header-area .mainvisual img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0 0 0 25px;
}

.mainvisual {
    position: relative;
    padding-left: 70px;
    padding-bottom: 50px;
}

.catchphrase {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    text-align: right;
    box-sizing: border-box;
}

.catchphrase-text {
    display: block;
    text-align: right;
}

.catchphrase-text span {
    font-family: "Yusei Magic", sans-serif;
    font-size: 14px;
    display: inline-block;
    background-color: #FDF6EC;
    padding: 10px;
    border-radius: 0 0 0 25px;
}

/*--------------------------------------------
こだわり
--------------------------------------------*/


/*--------------------------------------------
ニュース
--------------------------------------------*/
.news {
    position: relative;
    z-index: 0;
}

.news::before {
    content: "";
    position: absolute;
    background-image: url(../img/top/top_01_coffeebeans.png);
    background-repeat: no-repeat;
    background-size: contain;
    filter: blur(3px);
    top: -13%;
    left: -15%;
    width: 80%;
    height: 80%;
    opacity: 0.1;
    /* 10%の不透明度 */
    z-index: -1;
    /* 背景を後ろに配置 */
}

.news-1,
.news-2 {
    padding-bottom: 50px;
}

.news-1 p,
.news-2 p {
    margin: 10px 0;
}

/*--------------------------------------------
メニュー
--------------------------------------------*/
.menu {
    position: relative;
    overflow-x: clip;
    /*右側にはみ出た要素を非表示*/
}

.menu::before {
    content: "";
    position: absolute;
    background-image: url(../img/top/top_02_coffeemill.png);
    background-repeat: no-repeat;
    background-size: contain;
    filter: blur(3px);
    transform: scaleX(-1);
    top: -8%;
    right: -10%;
    width: 80%;
    height: 80%;
    opacity: 0.1;
    /* 10%の不透明度 */
    z-index: -2;
    /* 背景を後ろに配置 */
}

.menu-title {
    padding: 30px 0;
}

.menu .item {
    width: auto;
    display: flex;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: auto;
}

.menu .item li {
    width: 250px;
    margin-right: 5%;
    flex: 0 0 auto;
}

.menu .item li:last-child {
    margin-right: 0;
}

.menu .item li .menu-text p {
    margin: 20px 0;
}


.menu .item li .menu-text p.name,
.menu .item li .menu-text p.price {
    text-align: center;
}

.menu .item li .menu-img img {
    border-radius: 5px 50px 5px 50px;
}

/*--------------------------------------------
お店の紹介
--------------------------------------------*/
.introduction {
    position: relative;
}

.introduction::before {
    content: "";
    position: absolute;
    background-image: url(../img/top/top_03_coffeesiphon.png);
    background-repeat: no-repeat;
    background-size: contain;
    filter: blur(3px);
    top: -50%;
    left: -1%;
    width: 70%;
    height: 70%;
    opacity: 0.1;
    /* 10%の不透明度 */
    z-index: -2;
    /* 背景を後ろに配置 */
}

.introduction p {
    margin-top: 10px;
}

.introduction .text-2 {
    margin-bottom: 50px;
}

/*--------------------------------------------
アクセス
--------------------------------------------*/
.access {
    position: relative;
    overflow-x: clip;
    /*右側にはみ出た要素を非表示*/
}

.access::before {
    content: "";
    position: absolute;
    background-image: url(../img/top/top_04_coffee.png);
    background-repeat: no-repeat;
    background-size: contain;
    filter: blur(3px);
    top: -35%;
    right: -10%;
    width: 80%;
    height: 80%;
    opacity: 0.1;
    /* 10%の不透明度 */
    z-index: -2;
    /* 背景を後ろに配置 */
}

.access .section-title .ja {
    position: absolute;
    top: 65%;
}

.map {
    width: 100%;
    max-width: 580px;
    height: 240px;
    margin: 10px 0;
}

.map iframe {
    width: 100%;
    height: 100%;
    border-radius: 0 0 0 50px;
}

.info dt {
    font-weight: 500;
    position: relative;
}

.info dt img {
    position: absolute;
    top: 0;
    left: 0;
    padding: 2px;
}

.info dt {
    padding-left: 40px;
}

.info dd {
    margin-bottom: 15px;
    padding-left: 40px;
}

.access .wrapper {
    margin: 0px 10px 50px 70px;
}

/*--------------------------------------------
フッター
--------------------------------------------*/
#footer {
    background-color: #8B5E3C;
    color: #FDF6EC;
}

#footer a {
    color: #FDF6EC;
}

#footer .innre-wrapper {
    padding: 20px;
}

#footer .footer-logo {
    max-width: 120px;
    margin: 30px auto;
}

#footer p {
    text-align: center;
}

/*--ハンバーガーメニュー--*/
@media screen and (max-width:769px) {
    #header-area .header .hamburger {
        width: 50px;
        height: 50px;
        cursor: pointer;
        /*マウスカーソルを指マークに変更*/
        position: fixed;
        top: 160px;
        z-index: 9999 !important;
    }

    #header-area .header .hamburger span {
        width: 30px;
        height: 2px;
        background-color: #FDF6EC;
        display: inline-block;
        position: absolute;
        left: 10px;
        transition: all 0.4s;
    }

    #header-area .header .hamburger span:nth-of-type(1) {
        top: 16px;
    }

    #header-area .header .hamburger span:nth-of-type(2) {
        top: 25px;
    }

    #header-area .header .hamburger span:nth-of-type(3) {
        top: 34px;
    }

    /*ハンバーガー内のメニュー*/
    #header-area .header .navi {
        width: 100%;
        height: 100svh;
        background-color: #8B5E3C;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10;
        opacity: 0;
        visibility: hidden;
    }

    #header-area .header-1 .navi .navi-menu {
        width: 100%;
        height: 100svh;
        padding: 80px 0;
        overflow: auto;
    }

    /*ボタンを押したときの動作*/
    #header-area .header .navi.active {
        opacity: 1;
        visibility: visible;
        /*表示と非表示を切り替え*/
        transition: all 0.6s;
    }

    /*ボタンを×*/
    #header-area .header .hamburger.active span:nth-of-type(1) {
        position: fixed;
        top: 20px;
        z-index: 20;
        top: 24px;
        transform: rotate(-45deg);
    }

    #header-area .header .hamburger.active span:nth-of-type(2) {
        position: fixed;
        top: 20px;
        z-index: 20;
        top: 24px;
        opacity: 0;
    }

    #header-area .header .hamburger.active span:nth-of-type(3) {
        position: fixed;
        top: 20px;
        z-index: 20;
        top: 24px;
        top: 24px;
        transform: rotate(45deg);
    }

    /*予約の英字*/
    .pc {
        display: none;
    }
}


/*--------------------------------------------
PC
--------------------------------------------*/
@media screen and (min-width:769px) {

    #page-top a {
        width: 10vw;
        height: 10vw;
        font-size: 2rem;
    }

    .wrapper {
        width: 70%;
        /* ビューポートの幅いっぱい */
        margin: 0 0 300px 25%;
        /* ヘッダーの幅分だけずらす */
    }

    /*テキストの設定*/

    .section-title {
        display: flex;
        flex-direction: column;
        position: relative;
        margin-bottom: 30px;
    }

    .section-title .en {
        font-size: clamp(60px, 10.42vw, 150px);
        /*画面サイズに応じて自動的にフォントサイズが可変する（元1440px-150px）*/
    }

    .section-title .ja {
        font-size: clamp(24px, 3.33vw, 48px);
        /*画面サイズに応じて自動的にフォントサイズが可変する（元1440px-48px）*/
        position: absolute;
        top: clamp(40px, 6.94vw, 100px);
    }

    .title-text,
    .menu-title {
        font-size: 32px;
        padding-bottom: 20px;
    }

    .news-1 .title-text {
        padding-top: 30px;
    }

    .text-right,
    .text-left {
        padding-top: clamp(24px, -21.84px + 5.96vw, 64px);
    }

    .text-right .text,
    .text-left .text,
    .text-left .text-1,
    .text-left .text-2 {
        font-size: clamp(16px, 1.11vw, 20px);
    }

    /*h3　下線*/
    .under {
        border-bottom: 8px dotted #8B5E3C;
        padding-bottom: 0.1em;
    }

    /*img設定*/
    .img-right img {
        width: 50%;
        float: right;
        margin-left: 1rem;
    }

    .img-left img {
        width: 50%;
        float: left;
        margin-right: 1rem;
    }

    .img-left-up img {
        width: 50%;
        float: left;
        margin-right: 1rem;
    }

    /*ボタンの設定*/
    .btn {
        font-size: 24px;
    }

    /*--------------------------------------------
    (PC)header area
    --------------------------------------------*/
    #header-area {
        max-width: 100%;
    }

    /*--------------------------------------------
    (PC)header
    --------------------------------------------*/
    #header-area .header {
        max-width: 20%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 100;
        /* 他の要素より前面に表示 */
    }

    #header-area .header .header-1 {
        background-color: #8B5E3C;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 0 0 50px 0;
        padding: 20px 0;
        margin-bottom: 30px;
    }

    #header-area .header .logo {
        max-width: clamp(60px, 10.42vw, 150px);
    }

    #header-area .header .logo a {
        display: block;
        padding: 10px;
    }

    #header-area .header .navi .navi-menu {
        text-align: center;
        /*テキストを真ん中*/
    }

    #header-area .header .navi li {
        padding: clamp(5px, -6.397px + 1.486vw, 15px) 0;
    }

    /*sns＆カレンダーアイコンの設定*/
    .sns-icon {
        list-style: none;
        /*先頭の・を無くす*/
        display: flex;
        flex-direction: row;
        gap: 20px;
        padding: 0;
        font-size: clamp(24px, 3.33vw, 48px);
        transition: color 0.3s;
    }

    .sns-icon li a {
        color: #FDF6EC;
    }

    #header-area .header .header-2 {
        border-radius: 0 50px 50px 0;
    }

    .reservation {
        width: clamp(75px, 10.42vw, 150px);
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
        gap: 10px;
        font-size: clamp(20px, 2.78vw, 40px);
    }

    .reservation-text-and-icon {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .pc {
        font-family: "Dancing Script", "cursive", sans-serif;
        font-size: clamp(10px, 1.39vw, 20px);
    }

    .reservation i {
        font-size: clamp(24px, 3.33vw, 48px);
    }

    /*--------------------------------------------
    (PC)mainvisual
    --------------------------------------------*/
    #header-area .mainvisual img {
        height: clamp(500px, 158.098px + 44.577vw, 800px);
        object-fit: cover;
        border-radius: 0 0 0 50px;
    }

    .mainvisual {
        position: relative;
        padding-left: 20%;
    }

    .catchphrase {
        position: absolute;
        top: 50px;
        left: 0;
        width: 100%;
        text-align: right;
        box-sizing: border-box;
    }

    .catchphrase-text {
        display: block;
        text-align: right;
    }

    .catchphrase-text span {
        font-family: "Yusei Magic", sans-serif;
        max-width: 80%;
        font-size: clamp(24px, 3.33vw, 48px);
        /*画面サイズに応じて自動的にフォントサイズが可変する（元1440px-48px）*/
        display: inline-block;
        background-color: #FDF6EC;
        padding: 10px;
        border-radius: 0 0 0 25px;
    }

    /*--------------------------------------------
    (PC)こだわり
    --------------------------------------------*/
    .commitment .content-flex {
        width: 100%;
        display: flex;
        margin: 0 auto;
        flex-direction: row;
        flex-direction: row-reverse;
        /* 残りの余白を均等に分配 */
        gap: 20px;
        /* 必要に応じて調整可能 */
    }

    .commitment p {
        width: 100%;
        padding-top: 60px;
        line-height: 2;
    }

    .commitment {
        margin-top: clamp(50px, 6.94vw, 100px);
        position: relative;
    }

    .commitment .section-title {
        position: absolute;
        top: clamp(-100px, -6.94vw, -60px);
    }


    /*--------------------------------------------
    (PC)ニュース
    --------------------------------------------*/
    .news::before {
        top: -55%;
        left: -10%;
        width: 70%;
        height: 70%;
        opacity: 0.05;
    }

    .news-1,
    .news-2 {
        width: 100%;
        display: flex;
        margin: 0 auto;
        flex-direction: row;
        /* 残りの余白を均等に分配 */
        gap: 20px;
        /* 必要に応じて調整可能 */

    }

    .news .section-title {
        position: absolute;
        top: clamp(-100px, -6.94vw, -60px);
        right: clamp(100px, 13vw, 290px);
    }

    .news-1,
    .news-2 {
        padding-bottom: 50px;
    }

    .news-1 p,
    .news-2 p {
        width: 100%;
        line-height: 2;
        margin: 0;
    }

    /*--------------------------------------------
    (PC)メニュー
    --------------------------------------------*/
    .menu::before {
        top: clamp(-400px, -286.033px + -14.859vw, -500px);
        right: clamp(-100px, -156.984px + 7.429vw, -50px);
        width: clamp(700px, 358.098px + 44.577vw, 1000px);
        height: clamp(700px, 358.098px + 44.577vw, 1000px);
        opacity: 0.05;
        /* 10%の不透明度 */
        z-index: -2;
        /* 背景を後ろに配置 */
    }

    .menu .item li {
        width: clamp(300px, 72.065px + 29.718vw, 500px);
    }

    .menu .item li .menu-text p {
        line-height: 2;
    }

    .menu .item li .menu-text p.text {
        width: clamp(250px, 79.049px + 22.288vw, 400px);
        text-align: justify;
        margin: 0 auto 10px auto;
    }

    .menu .wrapper {
        margin-bottom: 400px;
    }

    /*--------------------------------------------
    (PC)お店の紹介
    --------------------------------------------*/
    .introduction::before {
        top: clamp(-850px, -50vw, -300px);
        left: clamp(10px, 5vw, 100px);
        width: clamp(500px, 50vw, 1000px);
        height: clamp(500px, 50vw, 1000px);
        opacity: 0.05;
        /* 10%の不透明度 */
        z-index: -2;
        /* 背景を後ろに配置 */
    }

    .introduction .section-title {
        position: absolute;
        top: 100px;
        right: 200px;
    }

    .introduction .content-flex {
        width: 100%;
        display: flex;
        margin: 0 auto;
        flex-direction: row;
        /* 残りの余白を均等に分配 */
        gap: 20px;
        /* 必要に応じて調整可能 */
        margin-bottom: 50px;
    }

    .introduction {
        margin-top: clamp(50px, 6.94vw, 100px);
        position: relative;
    }

    .introduction .section-title {
        position: absolute;
        top: clamp(-120px, calc(-60px - ((100vw - 770px) * 60 / 670)), -60px);
        right: clamp(115px, 15.97vw, 370px);
    }

    .introduction .text-1 {
        width: 100%;
        padding-top: 40px;
    }

    .introduction .text-2 {
        padding-top: 10px;
    }

    /*--------------------------------------------
    (PC)アクセス
    --------------------------------------------*/
    .access::before {
        top: clamp(-700px, calc(-500px - (100vw - 770px) * 0.174), -500px);
        right: clamp(-100px, -156.984px + 7.429vw, -50px);
        width: clamp(400px, -55.869px + 59.435vw, 800px);
        height: clamp(400px, -55.869px + 59.435vw, 800px);
        opacity: 0.05;
        /* 10%の不透明度 */
        z-index: -2;
        /* 背景を後ろに配置 */
    }

    .access .wrapper {
        width: 70%;
        /* ビューポートの幅いっぱい */
        margin: 0 0 10% 25%;
        /* ヘッダーの幅分だけずらす */
    }

    .access .section-title {
        position: absolute;
        top: clamp(-200px, calc(-80px - (100vw - 770px) * 0.1043), -80px);
    }

    .access .section-title .ja {
        position: absolute;
        top: clamp(100px, calc(100px + (100vw - 770px) * 0.0783), 190px);
    }

    .access .content-flex {
        width: 100%;
        display: flex;
        margin: 0 auto;
        flex-direction: row-reverse;
        /* 残りの余白を均等に分配 */
        gap: 20px;
        /* 必要に応じて調整可能 */
    }

    .access .info {
        margin-top: 100px;
    }

    .map {
        max-width: 100%;
        height: auto;
    }




    /*--------------------------------------------
    (PC)フッター
    --------------------------------------------*/
    #footer {
        background-color: #8B5E3C;
        color: #FDF6EC;
    }

    #footer a {
        color: #FDF6EC;
    }

    #footer .innre-wrapper {
        padding: 20px;
    }

    #footer .footer-logo {
        max-width: 120px;
        margin: 30px auto;
    }

    #footer p {
        text-align: center;
    }
}

/*---Fontfamily---
.dancing-script-<uniquifier> {
  font-family: "Dancing Script", cursive;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.yusei-magic-regular {
  font-family: "Yusei Magic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.m-plus-rounded-1c-regular {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  font-style: normal;
}--*/