@charset "UTF-8";
/**********************
- ROOT
- BASE
- GENERAL
  -- FONT
  -- ALIGN
  -- FLEX
  -- LIST
  -- OTHER
- HEADER
- BREADCRUMB
- CONTAINER
- HEADING
- BUTTON
- FOOTER
- ARCHIVE
- SINGLE
- CONTACT
- FRONT
- PAGE PARTS
- LOADING
- COLOR
- MARGIN
- ANIMATION
- RESPONSIVE
***********************/

/**********************
* ブレイクポイント
* 560px/960px
**********************/


/*********************
ROOT
**********************/
:root {
    --base: #FAF7EE;
    --bg-1: #EBF1DF;
    --bg-2: #FEFBE5;
    --text-main: #5E5950;
    --bg-image: url(../../assets/image/common/texture.webp);


    --accent-color-1: #7CB180;
    --accent-color-2: #F0B43D;
    --gradient: linear-gradient(70deg, #5DC5F7, #FA966B);

    --font-jp: "fot-tsukubrdgothic-std", sans-serif;
    --font-en: "Bellefair", serif;
    --font-number: "Amiri", serif;
    --light: 300;
    --normal: 400;
    --bold: 700;

    --container: calc(1920px + 6%);
    --container-side: 3%;
    --container-ll: 1600px;
    --container-l: 1200px;
    --container-m: 960px;
    --container-s: 660px;
    --container-ss: 480px;

    --letter-spacing-en: .08em;
    --letter-spacing-nomal: .1em;
    --letter-spacing-wide: .24em;

}

/**********
floating banner
**********/
ul.floating-banner-list {
    position: fixed;
    top: 12rem;
    right: 0;
    z-index: 100;
}

li.floating-banner-item {
    position: relative;
    width: 49px;
}


li.floating-banner-item::before {
    position: absolute;
    content: "";
    top: 2.4rem;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-color-2);
}

li.floating-banner-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 38px 0 2rem;
    width: 100%;
    background-color: var(--base);
    border: 1px solid var(--accent-color-2);
    border-radius: 20px 0 0 20px;
    color: var(--accent-color-2);
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: upright;
    line-height: 1.2em;
}

li.floating-banner-item:nth-child(2) {
    margin-top: 2rem;
}

@media screen and (max-width: 960px) {
    ul.floating-banner-list {
        display: flex;
        justify-content: space-between;
        top: auto;
        bottom: 0;
        right: 50%;
        transform: translateX(50%);
        width: 100%;
    }

    li.floating-banner-item {
        width: 49.6%;
    }

    li.floating-banner-item::before {
        top: 1.6rem;
        width: 4px;
        height: 4px;
    }

    li.floating-banner-item:nth-child(2) {
        margin-top: 0;
    }

    li.floating-banner-item a {
        padding: 2rem 1.4rem 1.4rem;
        border-radius: 20px 20px 0 0;
        text-align: center;
        -ms-writing-mode: lr-tb;
        writing-mode: horizontal-tb;
    }
}

@media screen and (max-width: 768px) {
    li.floating-banner-item::before {
        top: 1rem;
    }

    li.floating-banner-item a {
        padding: 1.6rem 1.4rem 1rem;
        border-radius: 16px 16px 0 0;
    }
}

/**********
# concept
**********/
#concept {
    margin-top: 24rem;
}

.container-concept {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1440px;
}

.container-concept .image {
    width: 44.4%;
    height: auto;
    aspect-ratio: 1/1;
}

.container-concept .text {
    display: flex;
    justify-content: space-between;
    width: 50%;
    position: relative;
}

.container-concept .text::before {
    position: absolute;
    content: "";
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    width: 83.3%;
    height: auto;
    aspect-ratio: 1/1;
    background-image: url(../../assets/image/common/accent02.webp);
    background-size: cover;
    z-index: -1;
}

.container-concept .text>p {
    width: 66%;
}

.container-concept .text .title-wrap {
    display: flex;
    width: 23%;
    justify-content: space-between;
    margin-top: -10rem;
}

.container-concept .text .title-wrap h2 {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: clamp(2.4rem, 1.7vw, 3.2rem);
    line-height: 1.5em;
    font-weight: var(--bold);
    color: var(--accent-color-1);
    text-indent: -1em;
    margin-top: 1em;
}

.container-concept .text .title-wrap p {
    writing-mode: vertical-rl;
    text-transform: capitalize;
    font-size: clamp(1.6rem, 1.2vw, 2rem);
    color: var(--accent-color-1);
}

.image.concept02 {
    width: 20.8%;
    min-width: 220px;
    height: auto;
    aspect-ratio: 400/267;
    margin-left: auto;
    margin-top: 4rem;
}

.image.concept03 {
    width: 17.7%;
    min-width: 180px;
    height: auto;
    aspect-ratio: 340/227;
    margin-left: auto;
    margin-top: 10rem;
    margin-right: 20vw;
}

@media screen and (max-width: 960px) {
    .image.concept03 {
        margin-top: 4rem;
        margin-right: 16vw;
    }
}

@media screen and (max-width: 560px) {
    #concept {
        margin-top: 12rem;
    }

    .container-concept {
        flex-direction: column;
    }

    .container-concept .image {
        width: 100%;
        aspect-ratio: 345/230;
    }

    .container-concept .text {
        width: 100%;
        padding-top: 10rem;
    }

    .container-concept .text .title-wrap {
        width: 24.3%;
        margin-top: -4rem;
    }

    .container-concept .text .title-wrap h2 {
        font-size: clamp(2rem, 1.7vw, 2.4rem);
    }

    .container-concept .text .title-wrap p {
        font-size: clamp(1.2rem, 1.2vw, 1.6rem);
    }

    .image.concept03 {
        margin-right: 36vw;
    }

}

/**********
# info
**********/
section#info .container-l {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

section#info .wrap .image {
    padding-top: 6rem;
    max-width: 320px;
}

ul.info-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 63.3%;
}

li.info-item {
    display: flex;
    padding-bottom: 3rem;
    border-bottom: 1px solid #E2DAC1;
}

li.info-item dt {
    width: 20rem;
    font-weight: var(--bold);
    font-size: 1.8rem;
}

li.info-item dd {
    width: calc(100% - 20rem);
    font-size: 1.8rem;
}

@media screen and (max-width: 1200px) {
    ul.info-list {
        width: 56.3%;
    }


    li.info-item dt {
        width: 14rem;
    }

    li.info-item dd {
        width: calc(100% - 14rem);
    }
}

@media screen and (max-width: 960px) {
    section#info .container-l {
        gap: 8%;
    }

    ul.info-list {
        width: 63.3%;
    }

    li.info-item dt {
        font-size: 1.6rem;
    }

    li.info-item dd {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 768px) {
    section#info .container-l {
        flex-direction: column;
        gap: 4rem;
    }

    section#info .container-l .wrap {
        width: 100%;
    }

    section#info .container-l .wrap .image {
        margin: auto;
        padding-top: 4rem;
    }

    ul.info-list {
        width: 100%;
    }

    li.info-item dt {
        font-size: 1.4rem;
        width: 8rem;
    }

    li.info-item dd {
        font-size: 1.4rem;
        width: calc(100% - 8rem);
    }
}


/**********
# menu
**********/
section#menu {
    background-image:
        repeating-linear-gradient(0deg,
            rgba(124, 177, 128, 0.20),
            rgba(124, 177, 128, 0.20) 1px,
            rgba(0, 0, 0, 0) 0,
            rgba(0, 0, 0, 0) 20px),
        repeating-linear-gradient(90deg,
            rgba(124, 177, 128, 0.20),
            rgba(124, 177, 128, 0.20) 1px,
            rgba(0, 0, 0, 0) 0,
            rgba(0, 0, 0, 0) 20px);
    padding-bottom: 20rem;
    position: relative;
}

section#menu::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 7.2rem;
    background: var(--base);
    z-index: 1;
}

section#menu .section-title {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    margin: auto;
    z-index: 2;
}

section#menu .section-title p,
section#menu .section-title h2 {
    width: fit-content;
    margin: auto;
}

section#menu ul.menu-list {
    padding-top: 20rem;
    max-width: 1000px;
    margin: auto;
}

section#menu .menu-header {
    display: flex;
    align-items: center;
    height: 120px;
    background-color: var(--base);
    border-top: 1px solid var(--accent-color-1);
    border-bottom: 1px solid var(--accent-color-1);
    cursor: pointer;
    transition: all ease .3s;
    margin-top: -1px;
}

section#menu .menu-item.open .menu-header {
    background-color: #F7F1DF;
}

section#menu .menu-header .image {
    width: 120px;
    height: 120px;
}

.menu-heder-right {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between;
    padding: 3rem;
}

.menu-header .title {
    flex: 1;
    color: var(--accent-color-1);
    font-size: 2.4rem;
    line-height: 1.5rem;
}

.menu-header .title p {
    font-size: 2rem;
    font-family: var(--font-en);
    padding-top: 1.6rem;
}

.menu-header .title .limited {
    background-color: var(--accent-color-1);
    color: var(--base);
    font-size: 1.4rem;
    width: fit-content;
    border-radius: 999px;
    margin-top: 1rem;
    padding: .6rem 1.2rem;
}

.menu-header i.icon {
    display: block;
    width: 2rem;
    height: 2rem;
    position: relative;
}

.menu-header i.icon::before,
.menu-header i.icon::after {
    display: flex;
    content: "";
    background-color: var(--accent-color-1);
    position: absolute;
    transition: all ease .3s;
}

.menu-header i.icon::before {
    width: 1px;
    height: 2rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.menu-header i.icon::after {
    width: 2rem;
    height: 1px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.menu-item.open .menu-header i.icon::before {
    opacity: 0;
}

.menu-content {
    display: none;
    background-color: #F7F1DF;
    padding: 6rem;
}

.menu-item.open .menu-content {
    display: block;
}

.menu-content ul.menu-detail-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 6rem;
}

.menu-content li.menu-detail-item {
    width: 46.6%;
}

li.menu-detail-item.w-100 {
    width: 100%;
}

li.menu-detail-item h4 {
    font-weight: var(--bold);
    font-size: 2rem;
    padding-bottom: .4rem;
    border-bottom: 1px solid var(--accent-color-1);
}

li.menu-detail-item h4.explanation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

li.menu-detail-item h4.explanation span {
    font-size: 1.4rem;
    text-indent: -1.5em;
    margin-left: 1.5em;
}

li.menu-detail-item .price {
    font-weight: var(--bold);
    padding-top: 1.6rem;
}

li.menu-detail-item ul li {
    display: flex;
}

li.menu-detail-item .price dt,
li.menu-detail-item .price dd {
    display: inline-block;
}

li.menu-item:nth-of-type(8) li.menu-detail-item:nth-of-type(2) .price dt {
    width: 160px;
}

li.menu-item:nth-of-type(8) li.menu-detail-item:nth-of-type(3) .price dt {
    width: 240px;
}

li.menu-detail-item .price dd {
    flex: 1;
}

li.menu-detail-item p {
    line-height: 2em;
    padding-top: 1rem;
}

.menu-content .supplement {
    text-align: right;
    font-size: 1.4rem;
    padding-top: 6rem;
}

.menu-content>.explanation {
    padding-bottom: 6rem;
}

.menu-content>.explanation h4 {
    font-size: 2rem;
    font-weight: var(--bold);
}

.menu-content>.explanation p {
    padding-top: 1.6rem;
}

.menu-content .btn-ja {
    display: block;
    margin: 60px auto 0;
}

.menu-content .btn-ja .link-text {
    text-align: center;
}

.menu-content .btn-ja p {
    font-size: 1.4rem;
    text-align: center;
}

.menu-content .btn-ja a span {
    background-image: url(../../assets/image/common/btn-arrow-orange.svg);
}

.only-miyahara-menu {
    background-color: var(--base);
    border: 1px solid var(--accent-color-1);
    padding: 4rem;
    margin-top: 4rem;
}

.only-miyahara-menu h3 {
    width: fit-content;
    margin: auto;
    font-size: 2rem;
    color: var(--base);
    background-color: var(--accent-color-1);
    padding: 6px 30px;
}

.only-miyahara-menu>p {
    padding-top: 3rem;
    color: var(--accent-color-1);
    width: fit-content;
    margin: auto;
}

.only-miyahara-menu ul.menu-wrap {
    display: flex;
    gap: 2.7%;
    max-width: 740px;
    margin: auto;
    padding-top: 3rem;
}

.only-miyahara-menu li.menu-item {
    width: 48.3%;
}

.only-miyahara-menu .menu-btn {
    width: 100%;
    aspect-ratio: 580/387;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.only-miyahara-menu .menu-btn a {
    display: inline-block;
    width: 100%;
    height: 100%;
    transition: all ease .5s;
    opacity: 1;
}

.only-miyahara-menu .menu-item:nth-child(1) .menu-btn a {
    background: linear-gradient(45deg, rgba(235, 241, 223, .2) 0%, rgba(235, 241, 223, .2) 100%), url(../../assets/image/utsunomiya/only-miyahara-menu02.webp);
    background-size: cover;
}

.only-miyahara-menu .menu-item:nth-child(2) .menu-btn a {
    background: linear-gradient(45deg, rgba(235, 241, 223, .3) 0%, rgba(235, 241, 223, .3) 100%), url(../../assets/image/utsunomiya/only-miyahara-menu01.webp);
    background-size: cover;
}

.only-miyahara-menu .menu-btn a:hover {
    transform: scale(1.05);
}

.only-miyahara-menu .menu-btn .guide {
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 30px 0 30px 0;
    padding: 2rem 3rem;
    background-color: var(--base);
}

.only-miyahara-menu .menu-btn .guide img {
    vertical-align: middle;
}

.only-miyahara-menu .menu-btn .guide::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 30px;
    background-image: url(../../assets/image/common/corner.png);
    top: -30px;
    right: 0;
}

.only-miyahara-menu .menu-btn .guide::after {
    position: absolute;
    content: "";
    width: 30px;
    height: 30px;
    background-image: url(../../assets/image/common/corner.png);
    bottom: 0;
    left: -30px;
}

.only-miyahara-menu .menu-btn .guide .text {
    color: var(--accent-color-1);
    padding-left: 1.4rem;
    white-space: nowrap;
    line-height: 1.75em;
    position: relative;
}

.only-miyahara-menu .menu-btn .guide .text::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--accent-color-1);
}

.only-miyahara-menu .menu-btn .guide .text span {
    font-family: var(--font-en);
    text-transform: capitalize;
    font-size: 3.2rem;
}

.only-miyahara-menu .menu-item>p {
    padding-top: 1rem;
    color: var(--accent-color-1);
    font-size: 0.88em;
}

.only-miyahara-menu .btn-ja {
    margin: 2rem auto 0;
}

@media screen and (max-width: 960px) {
    section#menu {
        padding-bottom: 16rem;
    }

    section#menu::before {
        height: 4.2rem;
    }

    .menu-header .title {
        font-size: 2rem;
    }

    .menu-header .title p {
        font-size: 1.6rem;
        padding-top: 1.4rem;
    }

    section#menu ul.menu-list {
        padding-top: 16rem;
    }

    .menu-content {
        padding: 3rem;
    }

    .menu-content ul.menu-detail-list {
        row-gap: 3rem;
        flex-direction: column;
    }

    .menu-content li.menu-detail-item {
        width: 100%;
    }

    li.menu-detail-item h4 {
        font-size: 1.6rem;
    }

    li.menu-detail-item .price {
        padding-top: 1rem;
    }

    .only-miyahara-menu {
        padding: 3rem 1.5rem;
    }

    .only-miyahara-menu>p {
        padding-top: 2rem;
    }

    .only-miyahara-menu ul.menu-wrap {
        padding-top: 2rem;
    }

    .only-miyahara-menu .menu-btn .guide {
        padding: 1rem 1rem;
    }

    .only-miyahara-menu .menu-btn .guide .text {
        padding-left: 1rem;
    }

    .only-miyahara-menu .btn-en {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 560px) {
    section#menu {
        padding-bottom: 12rem;
    }

    section#menu .menu-header {
        height: 80px;
    }

    section#menu .menu-header .image {
        width: 80px;
        height: 80px;
    }

    .menu-heder-right {
        padding: 1rem;
    }

    .menu-header .title {
        font-size: 1.6rem;
    }

    .menu-header .title p {
        font-size: 1.2rem;
        padding-top: .4rem;
    }

    .menu-header .title .limited {
        font-size: 1.2rem;
        margin-top: .4rem;
        padding: .2rem .8rem;
    }

    .menu-header i.icon::before {
        height: 1.4rem;
    }

    .menu-header i.icon::after {
        width: 1.4rem;
    }

    li.menu-detail-item p {
        padding-top: .4rem;
    }

    li.menu-detail-item h4.explanation span {
        font-size: 1.2rem;
    }

    .menu-content>.explanation {
        padding-bottom: 3rem;
    }

    .menu-content>.explanation h4 {
        font-size: 1.6rem;
    }

    .menu-content>.explanation p {
        padding-top: .4rem;
    }

    li.menu-item:nth-of-type(8) li.menu-detail-item:nth-of-type(2) .price dt {
        width: 140px;
    }

    li.menu-item:nth-of-type(8) li.menu-detail-item:nth-of-type(3) .price dt {
        width: 210px;
    }

    .menu-content .btn-ja .link-text {
        font-size: 1.6rem;
    }

    .menu-content .btn-ja p {
        font-size: 1rem;
    }

    .only-miyahara-menu h3 {
        font-size: 1.8rem;
        padding: 4px 20px;
    }

    .only-miyahara-menu ul.menu-wrap {
        flex-direction: column;
        align-items: center;
        gap: 2rem 2.7%;
    }

    .only-miyahara-menu li.menu-item {
        width: 100%;
        max-width: 300px;
    }

    .only-miyahara-menu .btn-ja {
        font-size: 1.4rem;
        width: 100%;
        padding: 0;
        max-width: 400px;
    }
}


/**********
# reserve
**********/
section#reserve .container-ll {
    background-color: #fff;
    border-radius: 60px;
    box-shadow: 0px 0px 60px 0px rgba(244, 196, 101, .25);
    position: relative;
}

section#reserve .animation {
    position: absolute;
    content: "";
    top: -6rem;
    left: 4rem;
    width: 32px;
    height: auto;
    aspect-ratio: 32/38;
}

section#reserve .animation::before {
    position: absolute;
    content: "";
    background-image: url(../../assets/image/miyahara/animation.webp);
    background-size: cover;
    top: 50%;
    left: 50%;
    width: 270px;
    height: 270px;
    animation: rotate 28s infinite linear;
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

section#reserve .container-l {
    padding: 10rem 0;
}

section#reserve .wrap {
    display: flex;
    gap: 8.3%;
}

section#reserve .section-title p,
section#reserve .section-title h2 {
    color: var(--accent-color-2);
}

section#reserve p.reserve-text {
    line-height: 2.4em;
}

section#reserve .btn-wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3.33%;
    margin-top: 6rem;
}

section#reserve .btn-en a {
    padding: 0 4rem;
}

@media screen and (max-width: 960px) {
    section#reserve .container-l {
        padding: 8rem 0;
    }

    section#reserve .animation {
        top: -3rem;
        left: 3rem;
        width: 24px;
    }

    section#reserve .animation::before {
        width: 180px;
        height: 180px;
    }

    section#reserve .btn-wrap {
        margin-top: 4rem;
        gap: 2rem 3.33%;
    }

    section#reserve .btn-en {
        width: 100%;
        max-width: 480px;
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 560px) {
    section#reserve .container-ll {
        border-radius: 40px;
    }

    section#reserve .wrap {
        flex-direction: column;
        gap: 4rem 8.3%;
    }

    section#reserve .container-l {
        padding: 3rem 0;
    }

    section#reserve .section-title {
        text-align: center;
    }

    section#reserve .animation {
        top: 2rem;
        left: 1rem;
        width: 16px;
    }

    section#reserve .animation::before {
        width: 120px;
        height: 120px;
    }

    section#reserve .btn-en {
        font-size: 1.4rem;
    }

    section#reserve .btn a {
        padding: 0;
    }
}