@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Oooh+Baby&display=swap');

:root {
    --main-font: "Arial", sans-serif;
    --sub-font: "Yu Gothic UI", sans-serif;
    --bg-color: #e5f0e6;
    --accent-color: #ebd785;
    --accent-color-70: #ebd785B3;
    --white: #FFFFFF;
    --brown: #2a221e;
}

*,
::before,
::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border: none;
    outline: none;
    background-repeat: no-repeat;
}

ul,
ol {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

button {
    border: none;
    border-radius: none;
    outline: none;
    cursor: pointer;
}

h2,
h3 {
    font-weight: normal;
}

img {
    vertical-align: middle;
}

address {
    font-style: normal;
}

body {
    font-family: Arial,"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 16px;
    color: var(--brown);
    line-height: 1.0;
    background-color: var(--bg-color);
}


/* header */
.header {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    width: 100%;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    height: 110px;
    position: relative;
}

.header-logo {
    width: 150px;
}

.header-logo a {
    transition: .4s;
}

.header-logo a:hover {
    opacity: .4;
}

.header-box {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-list {
    font-family: Georgia, serif;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 36px;
    background-color: #e5f0e6CC;
    padding: 16px 27px;
    border-radius: 11px;
}


.header-list a {
    transition: .4s;
}

.header-list a:hover {
    opacity: .4;
}

.reserve {
    font-size: 15px;
    font-weight: bold;
    background-color: var(--accent-color);
    border-radius: 10px;
    border: solid 1px var(--brown);
    padding: 16px 13px;
    transition: all .3s ease-in-out;
}

.reserve:hover {
    color: var(--white);
    background-color: var(--brown);
}

.header-button {
    display: none;
}


/* footer */
.footer {
    background-color: var(--white);
    margin-right: 30%;
    border-radius: 0 47px 0 0;
    padding: 35px 0 25px;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
}

.footer-logo {
    width: 160px;
}

.footer-logo a {
    transition: .4s;
}

.footer-logo a:hover {
    opacity: .4;
}

.footer-nav {
    display: flex;
}

.footer-list {
    display: flex;
    align-items: center;
    gap: 45px;
    font-family: Georgia, serif;
    font-size: 18px;
}


.footer-list a {
    transition: .4s;
}

.footer-list a:hover {
    opacity: .4;
}

/* main */
.main {
    padding-top: 110px;
}

.en {
    font-family: 'Oooh Baby', cursive;
    font-size: 80px;
    display: block;
    margin-bottom: 5px;
    text-align: center;
}

.ja {
    font-size: 18px;
    display: block;
    text-align: center;
}

.btn-box {
    text-align: center;
}

.btn {
    display: inline-block;
    font-size: 18px;
    color: var(--brown);
    width: 174px;
    height: 50px;
    background-color: var(--white);
    border: solid 1px var(--brown);
    border-radius: 26px;
    padding: 17px 38px;
    text-align: center;
    transition: all .3s ease-in-out;
}

.btn:hover {
    background-color: var(--accent-color);
}

/* アニメーション */
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeUp2 {
    animation-name: fadeUpAnime2;
    animation-duration: .6s;
    animation-fill-mode: forwards;
    opacity: 0;
}

.box {
    opacity: 0;
}

@keyframes fadeUpAnime2 {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* first-view */
.first-view {
    position: relative;
    height: 100vh;
    background-image: url(./img/index/first-view.jpg);
    background-position: center center;
    background-size: cover;
    border-radius: 47px 0 0 47px;
    margin-left: 160px;
    width: calc(100% - 160px);
}

.first-view h2 {
    position: absolute;
    top: 44%;
    transform: translateY(-50%);
    left: -121px;
    font-family: 'Yu Mincho', YuMincho, serif;
    font-size: 39px;
    letter-spacing: 1px;
    line-height: 1.3;
}

.first-view h2 span {
    color: #4a624c;
}


/* concept */
.concept {
    position: relative;
    margin: 123px 0 268px;
}

.shape1 {
    position: absolute;
    bottom: 87%;
    right: 0;
    width: 45vw;
    z-index: -1;
}

.concept-inner {
    max-width: 1300px;
    width: 86%;
    margin: 0 auto;
}

.concept-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.concept-img1 {
    width: 50%;
    margin-top: 77px;
    border-radius: 47px;
    object-fit: cover;
}

.concept-img-box {
    text-align: right;
}

.concept-img2 {
    width: 300px;
    border-radius: 47px;
    margin: 120px 46px 0 0;
}

.concept-img3 {
    width: 262px;
    border-radius: 47px;
}

.concept-content {
    margin: 80px 0 0 70px;
    min-width: 0;
}


.concept-content h2 {
    position: absolute;
    top: 3%;
    right: 45%;
}

.concept-content .en {
    transform: rotate(-10deg);
    z-index: auto;
}

.concept-content .ja {
    width: 100px;
    margin: -20px 0 0 268px;
}

.concept-content p {
    font-size: 18px;
    line-height: 2.2;
    margin-bottom: 40px;
}

.concept-content p:last-of-type {
    margin-bottom: 0;
}

.kureyon1 {
    position: absolute;
    bottom: -154px;
    width: 100%;
    /* height: 491px; */
    /* background-image: url(./img/index/kureyon1.svg);
    background-position: center center;
    background-size: cover; */
}


/* menu */
.menu {
    margin-bottom: 130px;
}

.menu-inner {
    height: calc(400px + 140vh);
}

.menu-bg {
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(255, 255, 255, .4), rgba(255, 255, 255, .4)), url("./img/index/menu.jpg");
    background-position: center center;
    background-size: cover;
    position: sticky;
    top: 0;
    left: 0;
}

.menu-content {
    position: relative;
    max-width: 860px;
    width: 61%;
    height: 400px;
    background-color: #FFFFFFDE;
    border-radius: 47px;
    border: solid 1px var(--brown);
    margin: 0 auto;
    padding: 94px 100px 0;
}

.menu-content h2 {
    position: absolute;
    bottom: 346px;
    right: 52px;
}

.menu-price {
    display: flex;
    gap: 86px 0;
    flex-wrap: wrap;
    font-size: 18px;
    font-weight: bold;
}

.menu-price li {
    width: 35%;
    margin-right: 20%;
}

.menu-price li:nth-child(2n) {
    width: 45%;
    margin-right: 0;
}

.menu-price dl {
    display: flex;
    justify-content: space-between;
}


/* style */
.style {
    padding-bottom: 155px;
}

.style-inner {
    max-width: 1300px;
    width: 86%;
    margin: 0 auto;
}

.style-inner h2 {
    margin-bottom: 50px;
}

.style-inner .en {
    margin-bottom: 14px;
}

.slider {
    margin: 0 auto 20px;
}

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

.style-img {
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    opacity: .3;
    transform: scale(.8);
    margin-bottom: 35px;
}

.slick-center .style-img {
    opacity: 1;
    transform: scale(1);
    box-shadow: 5px 5px 30px 0px #ccc;
}

.slick-center .style-img::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    padding-top: 100%;
    background-image: url(./img/index/wood.png);
    background-position: center center;
    background-size: 100%;
    pointer-events: none;
}

.style-img img {
    width: 100%;
}

.slide-arrow {
    position: absolute;
    width: 0;
    height: 0;
    width: 0;
    top: calc(50% - 35px);
    transform: translateY(-50%);
    z-index: 999999;
    background: transparent;
    cursor: pointer;
    border-top: 2px solid var(--brown);
    border-right: 2px solid var(--brown);
    height: 25px;
    width: 25px;
}

.prev-arrow {
    left: 31%;
    transform: rotate(-135deg);
}

.next-arrow {
    right: 31%;
    transform: rotate(45deg);
}


/* shop */
.wave {
    width: 100%;
    height: 65px;
}

.shop {
    background-color: var(--white);
}

.shop-inner {
    max-width: 1300px;
    width: 86%;
    margin: 0 auto;
}

.shop-inner h2 {
    margin-bottom: 70px;
    padding-top: 78px;
}

.shop-box {
    display: flex;
    position: relative;
    margin-bottom: 120px;
}

.shop-img {
    width: 44%;
    flex-grow: 2;
}

.shop-img img {
    border-radius: 47px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-content {
    position: relative;
    width: 44%;
    flex-grow: 1;
}

.shop-content-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 70%;
}

.content-list {
    margin-bottom: 15px;
}

.content-list li {
    display: flex;
    justify-content: space-between;
    padding: 21px 0;
    border-bottom: 1px solid var(--brown);
}

.content-list li:last-of-type {
    border-bottom: none;
}

.shop-name {
    display: flex;
}

.shop-name h3 {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    margin-right: 13px;
}

.shop-name h3:after {
    position: absolute;
    bottom: -10px;
    left: 109px;
    content: '20周年';
    display: inline-block;
    font-size: 13px;
    font-weight: 400;
    color: var(--brown);
    background-color: var(--accent-color-70);
    border-radius: 50%;
    border: solid 1px var(--brown);
    width: 58px;
    height: 58px;
    padding: 22px 7.7px;
}

.instg {
    width: 20px;
}

.instg a {
    display: inline-block;
    transition: .4s;
}

.instg a:hover {
    opacity: .4;
}

.instg img {
    width: 100%;
    border-radius: 0;
}

.shop-btn {
    padding: 17px 22px 17px 17px;
    white-space: nowrap;
}

.shop-btn-box {
    text-align: left;
}

.shop-btn::before {
    content: '';
    display: inline-block;
    background-image: url(./img/index/pin2.png);
    width: 23px;
    height: 20px;
    background-size: contain;
    vertical-align: middle;
    margin-right: 6px;
}

.shop-okamoto h3:after {
    content: none;
}

.shop-kosien h3:after {
    position: absolute;
    bottom: -10px;
    left: 129px;
    content: '新店舗';
    font-size: 13px;
    font-weight: 400;
    color: var(--brown);
    display: inline-block;
    background-color: var(--accent-color-70);
    border-radius: 50%;
    padding: 22px 7.7px;
}

.staff-recruit {
    padding-bottom: 120px;
}

.staff-recruit-content {
    display: flex;
    gap: 10%;
}

.staff-recruit-content li {
    position: relative;
    width: 45%;
}

.staff-recruit-content a {
    position: relative;
    display: block;
    line-height: 0;
    overflow: hidden;
    border: 1px solid var(--brown);
    border-radius: 47px;
}

.staff-recruit-content a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF66;
    border-radius: 47px;
}

.staff-recruit-content a::after {
    position: absolute;
    content: "";
    width: 50%;
    height: 100%;
    top: 0;
    left: -75%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    transform: skewX(-25deg);
}

.staff-recruit-content a:hover::after {
    animation: shine 1s;
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.staff-recruit-content h2 {
    position: absolute;
    top: 27%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    width: 100%;
}

.staff .en {
    margin-bottom: 18px;
}

.staff-recruit-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* news */
.news {
    margin: 78px 0 330px;
    position: relative;
}

.news-inner {
    max-width: 1300px;
    width: 86%;
    margin: 0 auto;
}

.news-inner h2 {
    margin-bottom: 25px;
}

.news-inner .en {
    text-align: left;
    margin-bottom: 0;
}

.news-inner .ja {
    text-align: left;
}

.news-content {
    display: flex;
    gap: 2%;
    margin-bottom: 68px;
}

.news-content-inner {
    width: 48%;
    background-color: var(--white);
    border-radius: 20px;
    padding: 25px;
}

.news-content-inner img {
    width: 100%;
}

.news-content-inner p:first-of-type {
    color: var(--accent-color);
    margin: 20px 0 10px;
}

.kureyon2 {
    position: absolute;
    bottom: -190px;
    width: 100%;
    /* height: 120px;
    background-image: url(./img/index/kureyon2.svg);
    background-position: center center;
    background-size: cover; */
}


/* -------------------------------recruit */
/* first-view */
.recruit-fsv {
    position: relative;
    height: 450px;
    background: linear-gradient(rgba(255, 255, 255, .4), rgba(255, 255, 255, .4)), url("./img/recruit/recruit-fsv.jpg");
    background-position: center 60%;
    background-size: cover;
    border-radius: 47px 0 0 47px;
    margin-left: 160px;
    width: calc(100% - 160px);
    margin-bottom: 170px;
}

.recruit-fsv h2 {
    position: absolute;
    top: 44%;
    transform: translateY(-50%);
    left: -121px;
    font-size: 50px;
}

.recruit {
    padding-top: 100px;
    background-color: var(--white);
}

.recruit-inner {
    max-width: 1300px;
    width: 86%;
    margin: 0 auto;
}

.recruit-text {
    text-align: center;
}

.recruit-text h3 {
    font-size: 23px;
    font-weight: bold;
    font-family: 'Yu Mincho', YuMincho, serif;
    margin-bottom: 80px;

}

.recruit-text p {
    font-size: 18px;
    line-height: 2.8;
    margin-bottom: 45px;
}

.recruit-text p:last-of-type {
    margin-bottom: 140px;
}

.asiya,
.okamoto,
.kosien {
    margin-bottom: 130px;
}

.recruit h3 {
    font-weight: bold;
}


.recruit-img {
    background-image: url(./img/index/shop1.jpg);
    background-position: center center;
    background-size: cover;
    border-radius: 25px;
    width: 100%;
    height: 300px;
    margin-bottom: 60px;
}

.okamoto .recruit-img {
    background-image: url(./img/index/shop2.jpg);
}

.kosien .recruit-img {
    background-image: url(./img/index/shop3.jpg);
}

.recruit-box {
    display: flex;
    gap: 6%;
    flex-wrap: wrap;
}

.recruit-list {
    width: 47%;
}

.recruit-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--bg-color);
    margin: 134px 0 100px;
    text-align: center;
}

.recruit-bottom p {
    display: inline-block;
    margin: 0 auto;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Yu Mincho', YuMincho, serif;
    position: relative;
    border-bottom: solid 1.5px var(--brown);
    padding-bottom: 19px;
    margin-bottom: 32px;
}

.recruit-bottom p::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 50%;
    border-bottom: solid 1.5px var(--brown);
    border-right: solid 1.5px var(--brown);
    background-color: var(--bg-color);
    width: 20px;
    height: 20px;
    transform: rotate(45deg);
}

.recruit-bottom img {
    width: 140px;
}


@media (max-width: 900px) {

    /* --------------------------------------index */
    /* header */
    .header-box {
        position: fixed;
        top: 28px;
        right: 30px;
    }

    .header-button {
        position: relative;
        display: block;
        width: 55px;
        height: 48px;
        background-color: var(--white);
        border: 1px solid var(--brown);
        border-radius: 10px;
        z-index: 10;
    }

    .header-button::before {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        content: 'Menu';
        font-size: 17px;
        color: var(--brown);
    }

    .header-button.on::before {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        content: '×';
        font-size: 30px;
        color: var(--brown);
    }

    .header-nav {
        display: none;
        text-align: center;
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        padding: 0;
    }

    .header-nav.on {
        display: block;
        animation: appear .3s ease;
    }

    @keyframes appear {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    .header-list {
        flex-direction: column;
        gap: 0;
        justify-content: space-between;
        font-size: 45px;
        background-color: var(--white);
        height: 100vh;
        border-radius: 0;
        padding: 12vh 0;
    }

    /* first-view */
    .first-view {
        margin-left: auto;
        width: 90%;
        height: calc(100vh - 70px);
        background-position: 55% center;
    }

    .first-view h2 {
        top: 69%;
        left: -29px;
        background-color: #ffffffE6;
        border-radius: 10px;
        padding: 4px 8px;
    }


    /* concept */
    .concept {
        margin: 140px 0 460px;
    }

    .shape1 {
        bottom: 97%;
        width: 54vw;
    }

    .concept-inner {
        width: 80%;
    }

    .concept-box {
        display: block;
    }

    .concept-img1 {
        width: 100%;
    }

    .concept-img2 {
        display: block;
        margin: 100px 46px 0 0;
    }

    .concept-img3 {
        display: block;
        margin-left: auto;
    }

    .concept-content {
        margin: 100px 0 0 0;
        text-align: center;
    }

    .concept-content h2 {
        top: -2%;
        right: 52%;
    }

    .kureyon1 {
        bottom: -400px;
        height: 26%;
        object-fit: cover;
        object-position: 8% center;
    }

    /* menu */
    .menu-content {
        padding: 85px 100px 0;
        width: 80%;
    }

    .menu-content h2 {
        right: 10px;
    }

    .menu-price {
        display: block;
    }

    .menu-price li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 40px;
    }

    .menu-price li:nth-child(2n) {
        width: 100%;
    }

    /* style */
    .style-inner {
        width: 100%;
    }

    .prev-arrow {
        left: 20%;
    }

    .next-arrow {
        right: 20%;
    }

    /* shop */
    .shop-inner {
        width: 80%;
    }

    .shop-box {
        display: block;
    }

    .shop-img {
        width: 100%;
        margin-bottom: 45px;
    }

    .shop-content {
        width: 100%;
    }

    .shop-content-inner {
        position: static;
        width: 100%;
        transform: none;
        width: 95%;
        margin: 0 auto;
    }

    .staff-recruit-content {
        display: block;
    }

    .staff-recruit-content li {
        width: 100%;
    }

    .staff {
        margin-bottom: 70px;
    }

    .staff-recruit-content a {
        height: 340px;
    }

    /* news */
    .news-inner {
        width: 80%;
    }

    .news-inner h2 {
        margin-bottom: 45px;
    }

    .news-content {
        display: block;
        margin-bottom: 68px;
    }

    .news-content-inner {
        width: 100%;
        border-radius: 30px;
        margin-bottom: 60px
    }

    .kureyon2 {
        height: 7%;
        bottom: -210px;
        object-fit: cover;
        object-position: right center;
    }

    /* -------------------------------recruit */
    .recruit-fsv {
        margin-left: auto;
        width: 90%;
        height: 400px;
    }

    .recruit-fsv h2 {
        top: 82%;
        left: -29px;
    }

    .recruit-text {
        width: 80%;
        margin: 0 auto;
    }

    .recruit-text h3 {
        font-size: 20px;
        line-height: 2.2;
    }

    .recruit-inner {
        width: 80%;
    }

    .recruit h3 {
        margin-bottom: 25px;
    }

    .recruit-box {
        display: block;
    }

    .recruit-list {
        width: 100%;
    }

    .recruit-bottom {
        width: 80%;
        margin: 134px auto 100px;
    }

    .recruit-bottom p {
        font-size: 16px;
        line-height: 1.8;
    }

    .recruit-bottom p::before {
        top: 39px;
    }

}

@media (max-width: 723px) {
    .recruit-bottom p::before {
        top: 68px;
    }
}

@media (max-width: 480px) {

    /* header */
    .header-inner {
        padding: 0 8px;
    }

    .header-logo {
        width: 120px;
    }

    .header-box {
        gap: 10px;
        right: 21px;
    }

    /* first-view */
    .first-view h2 {
        font-size: 30px;
    }

    /* concept */
    .shape1 {
        bottom: 97%;
        width: 75vw;
    }

    .concept-inner {
        width: 85%;
    }

    .concept-content h2 {
        right: 2%;
    }

    .concept-img2 {
        margin: 100px 46px 40px 0px;
    }

    .kureyon1 {
        bottom: -520px;
    }


    /* menu */
    .menu-content {
        padding: 83px 50px 0;
        width: 85%;
    }

    /* style */
    .style-inner {
        width: 86%;
    }

    .slick-center .style-img {
        box-shadow: none;
    }

    .next-arrow {
        right: -3%;
    }

    .prev-arrow {
        left: -3%;
    }

    /* shop */
    .shop-inner {
        width: 85%;
    }

    .staff-recruit-content a {
        height: 210px;
    }

    /* news */
    .news-inner {
        width: 85%;
    }


    /* -------------------------------recruit */
    .recruit-fsv {
        margin-left: auto;
        width: 90%;
        height: 400px;
        background-position: -62% 60%;
    }

    .recruit-text {
        width: 85%;
        margin: 0 auto;
    }

    .recruit-inner {
        width: 85%;
    }

    .recruit-bottom {
        width: 85%;
    }
}