@charset "UTF-8";

/*-------------------------
*
基本設定 Sorts Mill Goudy
*
---------------------------*/


html {
    font-size: 62.5%;
    /*16px × 62.5%=10px=1rem*/
}

body {

    min-width: 1080px;
    margin: 0 auto;


    color: #333;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    /*字間*/
    line-height: 1;
    font-feature-settings: "palt";
    /*プロポーショナルメトリクスを有効にする設定*/
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Lucida Grande", "segoe UI", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "Verdana", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

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

.sp-img {
    display: none;
}

.br-sp {
    display: none;
}

.pc-img {
    display: inline;
}


a {
    text-decoration: none;
    color: #705e5e;
}

a:hover {
    opacity: 0.7;
}

.center {
    text-align: center;
}


/*----jqery--------*/


.fadein {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s;
}


.snow {
    /*雪の色*/
    color: snow;
    /*雪の大きさ*/
    font-size: 10px;
    /*初期位置*/
    position: fixed;
    top: -5%;
    /*雪を適当な幅で降らせる*/
    text-shadow:
        /* 5vw -100px 2px, */
        400vw -150px 8px,
        300vw -50px 8px,
        300vw -100px 8px,
        205vw 0px 3px,
        220vw -450px 8px,
        400vw -450px 8px,
        300vw -300px 8px,
        205vw -500px 3px,
        220vw -450px 8px,
        400vw -150px 8px,
        300vw -200px 8px,
        205vw -200px 3px,
        220vw -200px 8px,
        200vw -200px 5px,
        180vw -200px 3px,
        160vw -180px 5px,
        150vw -300px 5px,
        140vw -200px 6px,
        120vw -220px 5px,
        100vw -160px 2px,
        10vw -400px 3px,
        20vw -500px 4px,
        30vw -580px 1px,
        39vw -250px 2px,
        42vw -340px 5px,
        56vw -150px 2px,
        63vw -180px 0,
        78vw -220px 4px,
        86vw -320px 9px,
        94vw -170px 7px;
    /*雪アニメーション1*/
    animation: roll 12s linear infinite;
}

/*2つめの雪アニメーション*/
.snow2nd {
    animation: anim 12s linear infinite;
}

@keyframes roll {
    0% {
        transform: rotate(0deg);
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: rotate(20deg);
        top: 100%;
        opacity: 0;
    }
}

@keyframes anim {
    100% {
        color: transparent;
        top: 150%;
    }
}


/*-------------------------
*
BOXA(header)
*

---------------------------*/

/* 電話固定 */
.fixed-tel {
    position: fixed;
    right: 0;
    top: 40%;
    transform: translateY(-50%);
    z-index: 999;
    background: linear-gradient(45deg, #f7c59f, #f28482);
    color: #fff;
    padding: 12px 16px;
    border-radius: 12px 0 0 12px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.fixed-tel:hover {
    background: linear-gradient(45deg, #f28482, #f6bd60);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.tel-icon-circle {
    background-color: #fff;
    color: #f28482;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    /* 丸くする */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.tel-text {
    line-height: 1.3;
    color: #fff;
}


.atataka2 {
    text-align: center;
}

.dandan3 {
    text-align: center;
    font-size: 4rem;
    color: #533507;
    /* お好きな色に変更可。これはやさしい赤系 */
    font-weight: bold;
    font-family: '游明朝体', 'Times New Roman', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.header {
    position: fixed;
    width: 100%;
    background-color: #fff;
    z-index: 10000;
}

header .nav-container {
    display: flex;
    justify-content: space-between;
    /* タイトル画像とnav-listを端っこへ*/
    align-items: center;
    /* navの中身縦方向中央寄せ*/
    max-width: 1080px;
    margin: 0 auto;
}

header .nav-list {
    color: #705e5e;
    display: flex;
    font-family: 'Sorts Mill Goudy', sans-serif;

}

header nav li:not(:last-child) {
    margin-right: 41px;
}

header nav li:last-child {
    margin-right: 65px;
}

/* .page-index__firstview {
    height: 100vh;
    background-image: url(../images/top/topimg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
} */


/* .page-index__box {
    max-width: 100%;
    height: 100vh;
} */

.page-index__firstview {
    max-width: 1080px;
    margin: 0 auto;
    padding-top: 83px;
}

.page-index__firstview img {
    width: 100%;
    height: 100%;

}


/*-------------------------
*
BOX B(NEWs)
*
---------------------------*/

.container {
    display: flex;
}

.anniversary-news {
    max-width: 1080px;
    margin: 0 auto;
}

.article-title {
    display: none;
}

.index-article {
    /* max-width: 1080px; */
    /* max-width: 100%; */
    margin: 0 auto;
    position: relative;
    background: #FFFCFC;
}

.news::after {
    content: "";
    position: absolute;
    top: 53%;
    left: 35%;
    display: inline-block;
    width: 110px;
    height: 2px;
    background-color: #666;
}

.news_list {
    text-align: center;
    max-width: 1080px;
    width: 100%;
    background-color: #FFFDFA;
    margin: 50px auto;
    padding: 80px;
    color: #382305;
    /*    margin: 242px auto auto;*/
}

.list-basic {
    font-size: 3rem;
    line-height: 2;
    border-bottom: ;
    background-image: -webkit-linear-gradient(left, #675543, #675543, 1px, transparent 1px, transparent 2px);
    background-size: 2px 2px;
    background-position: bottom;
    background-repeat: repeat-x;
}

.list-basic p {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.list-basic dt {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.nataregaro1 {
    color: #6b4202;
    font-size: 4rem;
    font-family: '游明朝体', 'Times New Roman', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.nataregaro2 {
    color: #6b4202;
    font-size: 3rem;
    font-family: '游明朝体', 'YuMincho', 'Times New Roman', '游明朝体', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.nataregaro3 {
    color: #6b4202;
    font-size: 3.5rem;
    font-family: '游明朝体', 'Times New Roman', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.list-basic dd {
    padding: .5em 0 1.2em;
}

.index-article dd {
    font-size: 1.8rem;
}

strong {
    font-weight: bold;
}

/*-------------------------
*
intro
*
---------------------------*/


.intro {
    max-width: 1080px;
    margin: 0 auto;
    background-image: url(../images/top/background1.jpg);
    background-repeat: repeat;

}

.row1 {
    display: flex;
}

.kazari {
    margin-top: 43px;
}

.text-box {
    width: 618px;
    margin: 0 auto 0 0;
}

.intro_title {
    font-size: 3.6rem;
    color: #6b4202;
    margin: 37px 0 71px 0;
    line-height: 60px;

}

.intro_title_h1 {
    text-align: center;
    font-size: 3.6rem;
    color: #6b4202;
    padding-top: 71px;
    margin: 0 0 37px 0;
    line-height: 60px;
    font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    letter-spacing: 0.27em;
    font-weight: 600;
}

span.dash::before {
    content: '――';
    letter-spacing: -.2em;
    width: 2em;
    margin-right: .5em;
}

span.dash::after {
    content: '――';
    letter-spacing: -.2em;
    width: 2em;
    margin-right: .5em;
}

.intro_sentence {
    font-size: 1.6rem;
    padding: 0 117px 30px 100px;
    line-height: 30px;
    font-weight: bold;
}

.intro_title {
    font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    letter-spacing: 0.27em;
    font-weight: 600;
}

.row1 .intro_pic1 {
    margin-top: 220px;
    line-height: 0;
}

.intro .row2 .kazari {
    margin-top: 61px;
}

.row2 .intro_title {
    margin: 32px 0 40px 0;
}

.row2 .intro_sentence {
    font-size: 1.6rem;
    padding: 0 48px 80px 76px;
}

.row2 .text-box {
    margin: 0 0 0 auto;
    width: 577px;
}

.intro .row2 .section-content {
    position: relative;
}

.intro .row2 .intro_pic2 {
    position: absolute;
    left: 43px;
    top: 129px;
}

.intro .row2 .intro_pic3 {
    width: 415px;
    height: auto;
    position: absolute;
    left: 300px;
    top: 630px;
}

.row3 {
    display: flex;
}

.row3 .text-box {
    width: 565px;
}

.row3 .intro_title {
    margin: 58px 0 21px 105px;
    color: #095a05;
    font-size: 2.4rem;
    line-height: 30px;
}

.row3 .intro_sentence {
    padding: 0 40px 0 183px;
}

.intro .row3 .section-content {
    position: relative;
}

.intro .row3 .intro_pic5 {
    position: absolute;
    left: 22px;
    top: 22px;
}

.intro_pic4 {
    padding-bottom: 64px;
}

/*-------------------------
*
commitment
*
---------------------------*/

.commitment {
    max-width: 1080px;
    margin: 0 auto;
    font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    font-weight: 400;

}

.tategaki {
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
}

.commitment .section-content {
    position: relative;
}

.commitment_pic1 {
    padding: 365px 209px 98px 192px;
}

.commitment .commit-sentence {
    padding: 0 212px 57px 256px;
    line-height: 36px;
    letter-spacing: 0.14em;
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Lucida Grande", "segoe UI", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "Verdana", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.commitment .title {
    font-size: 50px;
}

.commitment .title_01 {

    position: absolute;
    top: 144px;
    left: 170px;
}

.commitment .title_02 {
    position: absolute;
    top: 313px;
    left: 77px;
}

.commitment .title_03 {
    position: absolute;
    top: 622px;
    right: 33px;
    line-height: 1.5;
}


.commitment_pic2 {
    position: absolute;
    top: 74px;
    right: 0;
}

.commitment_pic3 {
    position: absolute;
    top: 322px;
    right: 0;
}

.commitment_pic4 {
    position: absolute;
    top: 1006px;
    right: 0;
}

.commitment_pic5 {
    position: absolute;
    top: 745px;
    left: -3px;
}

.commitment_pic6 {
    position: absolute;
    top: 1163px;
    left: 0;
    width: 401px;
    height: auto;
}


/*-------------------------
*
reservation
*
---------------------------*/

.reservation {
    max-width: 1080px;
    margin: 0 auto;
}

.reservation .text-box {
    padding: 482px 40px 125px 486px;
    width: auto;
}

.reserv_title01 {
    font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    color: #463306;
    letter-spacing: 0.27em;
    font-size: 45px;
    font-weight: bold;
    line-height: 74px;
}

.reserv_title02 {
    font-size: 28px;
    font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    letter-spacing: 0.2em;
}

.reserv_sentence {
    line-height: 30px;
}

.reserv_kazari {
    margin: 45px 0 26px 0;
}

.reserv_title02 {
    margin-bottom: 61px;
}

.reservation {
    position: relative
}

.reserv_pic1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 241px;
}

.reserv_pic2 {
    position: absolute;
    top: 75px;
    right: 326px;
}

.reserv_pic3 {
    position: absolute;
    top: 281px;
}

/*-------------------------
*
lunch
*
---------------------------*/
.lunch {
    width: 1080px;
    margin: 0 auto;
}

/*-------------------------
*
dinner
*
---------------------------*/
.dinner {
    max-width: 1080px;
    margin: 0 auto;
}

.page-dinner__footer .inner {
    background-image: url(../images/dinner/dinner-footer.jpg);
    background-size: 1080px auto;
    overflow: hidden;
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
}

.page-dinner__footer {
    max-width: 1080px;
    margin: 0 auto;
}

.footer_info {
    position: relative;
}

.page-dinner__footer .inner {
    padding: 209px 136px 113px 209px;
}

.cloud {
    position: absolute;
    top: 80px;
    right: -100px;

}

.page-dinner__footer .copy {
    margin-bottom: 20px;
}

/*-------------------------
*
access
*
---------------------------*/
.access {
    padding-top: 83px;
}

.access_inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 241px 0 51px 0;
    position: relative;
}

.access__info {
    font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    width: 716px;
    margin: 29px auto 0 220px;
    display: flex;
    flex-wrap: wrap;
}

.access_pic1 {
    position: absolute;
    top: -2px;
}

.access_pic2 {
    position: absolute;
    top: 13px;
    right: 315px;
}

.access__info dt {
    width: 30%;
    height: auto;
}

.access__info dt:first-child {
    margin-top: 9px;
}

.access__info dd {
    width: 70%;
    height: auto;
}

.access__info dt:first-child,
.access__info dd:first-child {
    padding-bottom: 86px;
}

.access__info dt,
.access__info dd {
    padding-bottom: 53px;
}

.phone-number {
    font-size: 43px;
}

.par_dd01 {
    display: block;
    margin: 42px 0 25px 0;
}


.map {
    width: 1080px;
    margin: 0 auto;
}

/*-------------------------
*
footer
*
---------------------------*/

.inner {
    padding: 209px 136px 113px 209px;
}

.page-index__footer {
    background-image: url(../images/top/footer_sun.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    max-width: 1080px;
    margin: 0 auto
}

.footer__info {
    width: 746px;
    /*    margin: 0 auto 0 213px;*/
    display: flex;
    flex-wrap: wrap;
}

.footer_logo {
    margin-bottom: 53px;
}

.footer_inquiry {
    font-size: 30px;
    font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

.phone {
    font-size: 30px;
    margin: 15px 0 33px 0;
    font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    font-weight: bold;
}


.footer__info dt {
    width: 23.5%;
}

.footer__info dd {
    width: 76.5%;
}

.footer__info dt,
.footer__info dd {
    padding-bottom: 32px;
}

.page-index__footer .copy {
    padding-bottom: 20px;
}

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


    .br-sp {
        display: block;
    }

    .index-article dd {
        font-size: 3.5rem;
        font-family: '游明朝体', 'Times New Roman', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    }

    /* スマホで見やすくする */
    .fixed-tel {
        bottom: 20px;
        top: auto;
        right: 20px;
        padding: 20px 30px;
        border-radius: 20px;
        font-size: 20px;
        gap: 14px;
    }

    .tel-icon-circle {
        width: 88px;
        height: 88px;
        font-size: 40px;
    }

    .tel-text {
        font-size: 30px;
        /* ← ここを変更！ */
        line-height: 1.4;
        font-weight: bold;
        /* ← 太字にして強調もOK */
        color: #fff;
    }

    .list-basic {
        font-size: 5rem;
    }

    .nataregaro1 {
        font-size: 6rem;
    }
}

/*---600px以上～767以下---*/
@media (min-width:351px) and (max-width:650px) {


    .commitment .commit-sentence {
        padding: 0 212px 57px 300px;
        line-height: 28px;
        letter-spacing: 0.14em;
        font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Lucida Grande", "segoe UI", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "Verdana", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    }

    .index-article dd {
        font-size: 3.5rem;
        font-family: '游明朝体', 'Times New Roman', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    }

    .br-sp {
        display: block;
    }

    strong {
        font-weight: bold;
    }

    .list-basic {
        font-size: 5rem;
    }

    .nataregaro1 {
        font-size: 6rem;
    }
}

@media (max-width:350px) {

    .commitment .commit-sentence {
        padding: 0 212px 57px 300px;
        line-height: 28px;
        letter-spacing: 0.14em;
        font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Lucida Grande", "segoe UI", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "Verdana", Osaka, ;
    }

    .index-article dd {
        font-size: 3.5rem;
        font-family: '游明朝体', 'Times New Roman', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    }

    .br-sp {
        display: block;
    }

    strong {
        font-weight: bold;
    }

    .list-basic {
        font-size: 5rem;
    }

    .nataregaro1 {
        font-size: 6rem;
    }
}