@charset "UTF-8";

body {
    font-family: "Noto Serif JP", serif;
    color: #2C2C2C;
}

a {
    color: #2C2C2C;
    text-decoration: none;
}

img {
    width: 100%;
    vertical-align: bottom;
}

li {
    list-style: none;
}

/* 部品
  ------------------------------------------ */
.container {
    max-width: 932px;
    margin: 0 auto;
    padding: 0 16px;
}

/* section-title */
.section-title {
    display: block;
    position: relative;
    z-index: 10;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin: 0 auto 80px;
}

.section-title img {
    display: inline-block;
    position: absolute;
    bottom: -4px;
    left: 0;
    z-index: -1;
}

/* access-btn */
.access-btn {
    display: block;
    position: relative;
    z-index: 1;
    width: 200px;
    padding: 12px 0;
    font-weight: 500;
    text-align: center;
    background-color: #fff;
    border: 1px solid #000;
    transition: all 0.2s;
}

.access-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2C2C2C;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1;
}

.access-btn:hover {
    color: #fff;
}

.access-btn:hover::before {
    transform: scale(1, 1);
}

.access-btn::after {
    content: "";
    display: inline-block;
    position: absolute;
    right: -24px;
    top: 50%;
    width: 50px;
    height: 1px;
    background-color: #000;
    transition: all 0.2s;
}

.access-btn:hover::after {
    background-color: #666666;
    right: -32px;
}


/*-------------------------------------------
レスポンシブ
-------------------------------------------*/
@media (max-width: 900px) {
    .section-title {
        font-size: 1.25rem;
        margin-bottom: 40px;
    }
}


/* header
  ------------------------------------------ */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding-left: 24px;
    width: 100%;
    height: 80px;
    background-color: #E9E9E9;
}

header h1 {
    width: 140px;
}

header h1 a {
    display: block;
}

.cake,
.vector {
    width: 20px;
}

.arrow {
    width: 6px;
}

.hamburger-menu {
    display: flex;
    align-items: center;
    gap: 80px;
    transition: all 0.8s;
}

.hamburger-menu ul {
    display: flex;
    gap: 80px;
    font-weight: 700;
}

.hamburger-menu .menu-link::after {
    position: relative;
    left: 0;
    bottom: -1px;
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #2C2C2C;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: all 0.3s;
}

.hamburger-menu .menu-link:hover::after {
    transform: scale(1, 1);
}

/* contact-btn共通 ---------------------- */
.contact-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    height: 80px;
    padding: 0 24px;
    background-color: #511F00;
    color: #fff;
    font-size: 1.25rem;
    white-space: nowrap;
    transition: all 0.2s;
}

.contact-btn:hover {
    gap: 39px;
    padding: 0 14px;
    font-size: 1.375rem;
    background-color: #C94D00;
    transition: all 0.3s;
}

/* お問い合わせボタン */
.contact-btn:nth-of-type(2) {
    display: none;
}

/* ハンバーガーボタン */
.toggle_btn {
    display: none;
}

/*-------------------------------------------
レスポンシブ
-------------------------------------------*/
@media screen and (max-width: 1050px) and (min-width: 900px) {

    .hamburger-menu,
    .hamburger-menu ul {
        gap: 40px;
    }
}

@media (max-width: 900px) {
    header {
        padding: 0 16px;
    }

    header h1 {
        width: 155px;
    }

    .hamburger-menu {
        opacity: 0;
        transition: all 0.8s;
    }

    .hamburger-menu ul {
        display: none;
    }

    .contact-btn {
        display: none;
    }

    /* open -------------------------------------------- */
    .open .hamburger-menu {
        display: inline-block;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        opacity: 1;
        height: 100vh;
        padding-top: 135px;
        background: rgba(48, 48, 48, 0.8);
        color: #E9E9E9;
    }

    .open .hamburger-menu ul {
        display: flex;
        flex-direction: column;
        gap: 20px;
        opacity: 1;
        text-align: center;
        margin-bottom: 66px;
    }

    .open .hamburger-menu .menu-link:hover::after {
        background-color: #E9E9E9;
        width: 30%;
        left: 50%;
        transform: translateX(-50%);
    }

    .open .menu-link {
        color: #E9E9E9;
    }

    /* contact-btn共通 ---------------------- */
    .open .contact-btn {
        display: flex;
        gap: 23px;
        width: 240px;
        height: auto;
        margin: 0 auto;
        padding: 20px 24px;
        font-size: 1rem;
        line-height: 1;
        transition: all 0.2s;
    }

    .open .contact-btn:hover {
        font-size: 1.125rem;
        gap: 39px;
        padding: 20px 14px;
        background-color: #C94D00;
        transition: all 0.3s;
    }


    /* 店頭ご予約 */
    .open .contact-btn:nth-of-type(1) {
        margin-bottom: 36px;
    }

    /* お問い合わせ */
    .open .contact-btn:nth-of-type(2) {
        background-color: #002A51;
        transition: all 0.2s;
    }

    .open .contact-btn:nth-of-type(2):hover {
        background-color: #003D75;
    }

    /* ハンバーガーボタン -------------------------------------------- */
    .toggle_btn {
        display: block;
        width: 34px;
        height: 26px;
    }

    .toggle_btn span {
        display: block;
        position: absolute;
        right: 16px;
        width: 34px;
        height: 4px;
        background-color: #666666;
        transition: all 0.5s;
    }

    .toggle_btn span:nth-child(1) {
        top: 36%;
    }

    .toggle_btn span:nth-child(2) {
        top: 50%;
    }

    .toggle_btn span:nth-child(3) {
        top: 64%;
    }

    /* open ---------------------- */
    .open .toggle_btn span:nth-child(1) {
        top: 50%;
        background-color: #E9E9E9;
        transform: rotate(-45deg);
    }

    /*2本目の線を消す*/
    .open .toggle_btn span:nth-child(2) {
        opacity: 0;
    }

    /* 3本目 */
    .open .toggle_btn span:nth-child(3) {
        top: 50%;
        background-color: #E9E9E9;
        transform: rotate(45deg);
    }
}

/* mainvisual
  ------------------------------------------ */
.main-visual {
    position: relative;
    z-index: -1;
    width: 100%;
    height: calc(100vh - 80px);
}

/*=== 画像の設定 ======================================= */
.slide-img-pc {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: calc(100vh - 80px);
    opacity: 0;
    object-fit: cover;
    animation: slideAnime 15s ease infinite;
}

/*=== スライドのアニメーションを段差で開始する ========= */
.slide:nth-child(1) .slide-img-pc {
    animation-delay: 0s
}

.slide:nth-child(2) .slide-img-pc {
    animation-delay: 5s
}

.slide:nth-child(3) .slide-img-pc {
    animation-delay: 10s
}

/*=== スライドのアニメーション ========================= */
@keyframes slideAnime {
    0% {
        opacity: 0
    }

    16% {
        opacity: 1
    }

    33% {
        opacity: 1
    }

    49% {
        opacity: 0
    }

    100% {
        opacity: 0
    }
}


/* news
  ------------------------------------------ */
.news {
    position: absolute;
    bottom: 0;
    background: rgba(130, 119, 112, 0.4);
    width: 100%;
    height: 180px;
}

.news .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.news h2 {
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
}

.news h2::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: -54px;
    left: 120px;
    width: 1px;
    height: 148px;
    background-color: #2C2C2C;
}

.slide02 {
    position: relative;
    width: 80%;
}

.slide02 .slick-slide a {
    display: inline-block;
    width: 90%;
    padding-left: 40px;
    white-space: nowrap;
}

.news .slick-slide span {
    font-size: 0.75rem;
}

.prev-arrow,
.next-arrow {
    display: block;
    width: 20px;
    height: 20px;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.prev-arrow {
    position: absolute;
    top: 50%;
    left: 0;
    transform: rotate(180deg);
}

.next-arrow {
    position: absolute;
    top: 50%;
    right: 0;
}

.prev-arrow::before,
.next-arrow::before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid #2C2C2C;
    border-top: 2px solid #2C2C2C;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(45deg);
}

/*-------------------------------------------
レスポンシブ
-------------------------------------------*/
@media (max-width: 900px) {
    .news .container {
        flex-direction: column;
        padding: 24px 16px;
        /* gap: 16px; */
    }

    .news h2::after {
        display: none;
    }

    .slide02 {
        width: 100%;
    }

    .slide02 li {
        width: 100vw;
    }
}

/* about
  ------------------------------------------ */
#about {
    background-color: #E9E9E9;
    padding: 80px 0 120px;
    position: relative;
}

#about .section-title {
    width: 132px;
}

.about-contents {
    display: flex;
    justify-content: space-between;
    gap: 68px;
}

.about-contents img {
    width: 44.5%;
}

.about-contents-text h3 {
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 700;
    border-bottom: 1px solid #2C2C2C;
    padding-bottom: 16px;
}

.about-contents-text p {
    line-height: calc(28 / 16);
    padding-top: 24px;
    padding-bottom: 32px;
}

.slidein {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s;
}

/* 0.5秒間かけてフェードイン */
.slideInAnime01 {
    animation-name: slideIn01;
}

.slideIn01 {
    animation-delay: 0.5s;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    transform: translateY(50px);
    opacity: 0;
}

@keyframes slideIn01 {
    0% {}

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* 1秒間かけてフェードイン */
.slideInAnime02 {
    animation-name: slideIn02;
}

.slideIn02 {
    animation-delay: 1s;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    transform: translateY(50px);
    opacity: 0;
}

@keyframes slideIn02 {
    0% {}

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/*-------------------------------------------
レスポンシブ
-------------------------------------------*/
@media (max-width: 900px) {
    #about {
        padding: 40px 0 80px;
    }

    #about .section-title {
        width: 83px;
    }

    .about-contents {
        flex-direction: column;
        gap: 68px;
    }

    .about-contents img {
        width: 100%;
    }

    .access-btn {
        margin: 0 auto;
    }

}

/* products
  ------------------------------------------ */
#products {
    padding: 80px 0 120px;
}

#products .section-title {
    width: 205px;
}

#products .slick-slide {
    margin: 0 15px;
}

.slick-dotted.slick-slider {
    margin-bottom: 120px;
}

.slide03 li {
    position: relative;
    margin: 0px 30px;
}

#products h3 {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px 0;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.1em;
    text-align: center;
    background: rgba(217, 217, 217, 0.4);
}

#products h3 span {
    display: block;
    /* font-size: 0.625rem; */
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0;
}

.slick-dots {
    bottom: -60px;
}

.slick-dots li button {
    width: 16px;
    height: 16px;
}

.slick-dots li button:before {
    font-size: 12px;
}

#products .access-btn {
    margin: 0 auto;
}

/*-------------------------------------------
レスポンシブ
-------------------------------------------*/
@media (max-width: 900px) {
    #products .section-title {
        width: 129px;
    }

    .slide03 li {
        margin: 0px 16px;
    }

    #products h3 {
        font-size: 0.875rem;
        padding: 4px 0;
    }

    #products h3 span {
        font-size: 0.75rem;
    }
}


/* popular
  ------------------------------------------ */
#popular {
    background-color: #E0D2C9;
    padding: 80px 0 120px;
}

#popular .section-title {
    width: 181px;
}

.popular-list li {
    display: flex;
}

.popular-list-text {
    width: 65.5%;
    background-color: #fff;
    padding: 88px 73px 61px;
    box-shadow: 8px 8px 30px 0px rgba(0, 0, 0, 0.25);
}

.popular-list-text h3 {
    position: relative;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: calc(32 / 24);
}

.popular-list-text h3 span {
    font-family: "Mrs Saint Delafield", cursive;
    font-size: 6rem;
    color: rgba(0, 0, 0, 0.1);
    position: absolute;
    top: -54px;
    left: -40px;
}

.popular-list-text p {
    margin: 16px 0;
    line-height: calc(28 / 16);
}

.popular-list-img {
    position: relative;
    width: 420px;
}

.popular-list-img img:nth-child(1) {
    position: absolute;
    top: -40px;
    left: -20px;
    box-shadow: 8px 8px 30px 0px rgba(0, 0, 0, 0.25);
}

.popular-list-img img:nth-child(2) {
    display: block;
    width: 156px;
    position: absolute;
    top: -100px;
    left: 80px;
}

/* リスト2 */
.popular-list li:nth-child(2) {
    flex-direction: row-reverse;
    margin: 130px 0;
}

.popular-list li:nth-child(2) .popular-list-img img:nth-child(1) {
    transform: scale(-1, 1);
    left: 20px;
}

.popular-list li:nth-child(2) .popular-list-img img:nth-child(2) {
    left: 150px;
}

/* 0.5秒間かけてフェードイン */
.fadeInAnime01 {
    animation-name: fadeIn01;
}

.fadeIn01 {
    animation-delay: 0.5s;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeIn01 {
    0% {}

    100% {
        opacity: 1;
    }
}

/* 1秒間かけてフェードイン */
.fadeInAnime02 {
    animation-name: fadeIn02;
}

.fadeIn02 {
    animation-delay: 1s;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeIn02 {
    0% {}

    100% {
        opacity: 1;
    }
}

/* 2秒間かけてフェードイン */
.fadeInAnime03 {
    animation-name: fadeIn03;
}

.fadeIn03 {
    animation-delay: 2s;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeIn03 {
    0% {}

    100% {
        opacity: 1;
    }
}

/* 2.5秒間かけてフェードイン */
.fadeInAnime04 {
    animation-name: fadeIn04;
}

.fadeIn04 {
    animation-delay: 2.5s;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeIn04 {
    0% {}

    100% {
        opacity: 1;
    }
}

/* 3秒間かけてフェードイン */
.fadeInAnime05 {
    animation-name: fadeIn05;
}

.fadeIn05 {
    animation-delay: 3s;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeIn05 {
    0% {}

    100% {
        opacity: 1;
    }
}

/* 3.5秒間かけてフェードイン */
.fadeInAnime06 {
    animation-name: fadeIn06;
}

.fadeIn06 {
    animation-delay: 3.5s;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeIn06 {
    0% {}

    100% {
        opacity: 1;
    }
}

/*-------------------------------------------
レスポンシブ
-------------------------------------------*/
@media (max-width: 900px) {
    #popular {
        background-color: #E0D2C9;
        padding: 40px 0 80px;
    }

    #popular .section-title {
        width: 113px;
        margin-bottom: 60px;
    }

    .popular-list li {
        flex-direction: column-reverse;
        box-shadow: 8px 8px 30px 0px rgba(0, 0, 0, 0.25);
    }

    .popular-list-text {
        width: 100%;
        padding: 24px 16px;
        box-shadow: none;
    }

    .popular-list-text h3 span {
        font-size: 3rem;
        top: -10px;
        left: 0;
    }

    .popular-list-img {
        width: 100%;
    }

    .popular-list-img img:nth-child(1) {
        position: unset;
        box-shadow: none;
    }

    .popular-list-img img:nth-child(2) {
        width: 100px;
        top: -26px;
        left: 50%;
        transform: translateX(-50%);
    }

    /* リスト2 */
    .popular-list li:nth-child(2) {
        flex-direction: column-reverse;
        margin: 60px 0;
    }

    .popular-list li:nth-child(2) .popular-list-img img:nth-child(1) {
        left: 20px;
    }

    .popular-list li:nth-child(2) .popular-list-img img:nth-child(2) {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* store
  ------------------------------------------ */
#store {
    padding: 80px 0 120px;
    background-color: #E9E9E9;
}

#store .section-title {
    width: 124px;
}

#store .store-contents {
    background-color: #fff;
    padding: 48px 32px;
}

.store-contents-text {
    display: flex;
    margin-bottom: 80px;
}

.store-contents-text img {
    width: 48%;
    height: 420px;
}

.store-contents-text dl {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 50%;
    padding-right: 22px;
    padding-left: 48px;
    row-gap: 14px;
}

.store-contents-text dl dt {
    width: 22%;
}

.store-contents-text dl dd {
    width: 78%;
}

dl dd span {
    color: #C40000;
}

.map iframe {
    width: 100%;
    height: 300px;
}

/*-------------------------------------------
レスポンシブ
-------------------------------------------*/
@media (max-width: 900px) {
    #store {
        padding: 40px 0 80px;
    }

    #store .store-contents {
        padding: 48px 16px;
    }

    .store-contents-text {
        flex-direction: column;
        margin-bottom: 40px;
    }

    .store-contents-text img {
        width: 100%;
        margin-bottom: 24px;
    }

    .store-contents-text dl {
        width: 100%;
        padding: 0;
        font-size: 0.875rem;
    }
}

/* footer
  ------------------------------------------ */
footer {
    background-image: url(../img/footer/footer-bg.jpg);
    background-size: cover;
    position: relative;
    z-index: 0;
}

footer::after {
    content: "";
    display: block;
    width: 100%;
    background-color: #000;
    position: absolute;
    top: 0;
    bottom: 0;
    background-color: rgba(130, 119, 112, 0.5);
    z-index: -1;
}

.footer-top {
    padding: 60px 0;
}

.footer-top-group01 {
    margin-bottom: 32px;
}

.footer-top-group01>a {
    display: block;
    width: 250px;
    margin: 0 auto;
}

.sns-btn {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.sns-btn img {
    width: 30px;
}

.footer-top-group02 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.footer-top-group02 li {
    width: 240px;
}

.footer-top-group02 li p {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: calc(27 / 12);
}

.footer-top-group02 li .contact-btn {
    font-size: 1rem;
    height: 60px;
    transition: all 0.2s;
}

.footer-top-group02 li .contact-btn:hover {
    font-size: 1.125rem;
}

.footer-top-group02 li:nth-child(2) .contact-btn {
    background-color: #002A51;
    transition: all 0.2s;
}

.footer-top-group02 li:nth-child(2) .contact-btn:hover {
    background-color: #003D75;
}

.footer-bottom {
    background-color: rgba(10, 10, 10, 0.4);
    padding: 12px 0;
}

.footer-bottom-menu ul {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.footer-bottom-menu ul li {
    padding: 0 24px;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: calc(14 / 12);
    border-right: 1px solid #2C2C2C;
}

.footer-bottom-menu ul li:last-child {
    border-right: none;
}

.copyright {
    text-align: center;
    font-size: 0.625rem;
    line-height: calc(14 / 10);
}

/*-------------------------------------------
レスポンシブ
-------------------------------------------*/
@media (max-width: 900px) {
    .footer-top-group02 {
        flex-direction: column;
    }

    .footer-top-group02 li .contact-btn {
        display: flex;
    }

    .footer-bottom {
        padding: 24px 0;
    }

    .footer-bottom-menu ul {
        flex-wrap: wrap;
        row-gap: 12px;
        margin-bottom: 24px;
    }

    .footer-bottom-menu ul li {
        padding: 0 12px;
    }
}