* {
    font-family: "Zen Maru Gothic", "Gothic";
    line-height: 1.5;
    /* outline: 2px dotted red; */
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

.zen-maru-gothic-light {
    font-family: "Zen Maru Gothic", serif;
    font-weight: 300;
    font-style: normal;
}

.zen-maru-gothic-regular {
    font-family: "Zen Maru Gothic", serif;
    font-weight: 400;
    font-style: normal;
}

.zen-maru-gothic-medium {
    font-family: "Zen Maru Gothic", serif;
    font-weight: 500;
    font-style: normal;
}

.zen-maru-gothic-bold {
    font-family: "Zen Maru Gothic", serif;
    font-weight: 700;
    font-style: normal;
}

.zen-maru-gothic-black {
    font-family: "Zen Maru Gothic", serif;
    font-weight: 900;
    font-style: normal;
}


header {
    height: 80vh;
    padding: 37px 32px 0 32px;
    position: relative;
}

/* 複数画像切り替え---------------------------------------------- */
.slider-container {
    position: relative;
    /* コンテナ内でスライド位置を相対的に設定 */
    width: 100%;
    /* コンテナ幅を100%に */
    height: 100%;
    /* コンテナの高さを固定 */
    overflow: hidden;
    /* スライドがコンテナ外に出ないように非表示 */
    z-index: -1;
    position: absolute;
}

/*画像の配置*/
.slideimg {
    position: absolute;
    /* 位置を絶対指定で重ねて配置 */
    inset: 0;
    /*親要素内にフルサイズで配置*/
    opacity: 0;
    /* 初期状態で透明に */
    background-size: cover;
    /* 画像をスライド全体にカバー */
    animation: slideAnime 15s infinite;
    /* 1サイクル15秒を無限ループ */
    background-color: #e2d9bd;
}

/* スライド個別設定 */
.slideimg:nth-of-type(1) {
    background-image: url(../images/meomaruke.images/cat_top1.png);
    animation-delay: 0s;
}

.slideimg:nth-of-type(2) {
    background-image: url(../images/meomaruke.images/cat_top2.png);
    animation-delay: 3s;
}

.slideimg:nth-of-type(3) {
    background-image: url(../images/meomaruke.images/cat_top5.png);
    animation-delay: 6s;
}

.slideimg:nth-of-type(4) {
    background-image: url(../images/meomaruke.images/cat_top6.png);
    animation-delay: 9s;
}

.slideimg:nth-of-type(5) {
    background-image: url(../images/meomaruke.images/cat_top7.png);
    animation-delay: 12s;
}

/*タイミング設定*/
@keyframes slideAnime {

    0%,
    30%,
    100% {
        opacity: 0;
    }

    /* 非表示のタイミング */
    10%,
    20% {
        opacity: 1;
    }

    /* 表示されるタイミング */
}

.headerLeft {
    display: flex;
    flex-direction: column;
    float: left;
    align-items: center;
}

.headerLogo {
    height: 58px;
    width: 188px;
    margin-bottom: 40px;

}

.calender {
    background-color: #fff;
    width: 235px;
    height: 332px;
    border-radius: 12px;
    padding: 24px 0;
    text-align: center;
}

.calender p {
    font-size: 16px;
    line-height: 30px;
}

.calender span {
    font-weight: bold;
}

.calender img {
    width: 230px;
}

.headerRight {
    float: right;
}

.humberger {
    font-size: 29px;
    color: #543622;
    background-color: #fff;
    display: block;
    width: 64px;
    height: 64px;
    border-radius: 100%;
    text-align: center;
    position: fixed;
    right: 32px;
    z-index: 1;
    opacity: 0.8;
}

.humberger:hover {
    opacity: 1;
    transition: all 0.2s;
}

.fa-bars {
    margin: 17.5px;
    color: #543622;
}

.news {
    float: right;
    position: absolute;
    top: 642px;
    right: 32px;
    font-size: 18px;
}

.newsContent {
    display: inline-block;
    color: #fff;
}

.newsTitle {
    margin: 12px;
    font-weight: bold;
}

.titleContainer {
    text-align: center;
    padding: 145px 0px 64px 0px;
}

.titleContainer h1 {
    font-size: 60px;
    color: #634613;
    line-height: 105px;
}

.titleContainer h3 {
    font-size: 24px;
}

.titleContainer img {
    width: 31px;
    padding-top: 16px;
    margin: 0 auto;
}

.about1Wrapper {
    background-color: #e2d9bd;
    padding-top: 72px;
}

.about1Container {
    width: 1088px;
    border-radius: 43px 43px 0px 0px;
    background-color: #fff;
    margin: 0px auto;
}

.about1LRcontainer {
    position: relative;
    padding-left: 54%;
}

.about1Left {
    position: absolute;
    left: -20%;
    width: 870px;
}

.about1Right {
    font-size: 16px;
    color: #3A1101;
    padding-bottom: 40px;
}

.about1Container p {
    line-height: 48px;
    text-align: center;
}

.aboutP1 {
    margin: 60px 0 104px 60px;
}

.aboutP2 {
    margin: 0px 0 0px 60px;
}

.about2LRcontainer {
    position: relative;
    padding-left: 54%;
}

.about2Wrapper {
    background-color: #634613;
}

.about2Container {
    width: 1088px;
    border-radius: 0 0 43px 43px;
    background-color: #fff;
    margin: 0px auto;
}

.about2Left {
    position: absolute;
    left: -20%;
    width: 870px;
}

.about2Right {
    font-size: 16px;
    color: #3A1101;
    padding-bottom: 160px;
}

.about2Container p {
    line-height: 48px;
    text-align: center;
    padding: 87px 0 0 60px;
}

.subTitleContainer {
    text-align: center;
}

.subTitleContainer h2 {
    padding-top: 55px;
    margin-bottom: 12px;
    color: #634613;
    font-size: 30px;
}

.subTitleContainer h4 {
    font-size: 20px;
    margin-bottom: 54px;
}

.request ul {
    width: fit-content;
    margin: auto;
}

.notesLink {
    text-align: center;
}

.notes {
    display: inline-block;
    height: 182px;
    width: 182px;
    border-radius: 100%;
    text-align: center;
    /* padding-top: 50px; */
    color: black;
    font-size: 18px;
    text-decoration: none;
    margin: 28px 20px 177px 20px;
    opacity: 0.8;
}

.notes:hover {
    opacity: 1;
    border: #543622 solid 1px;
    transition: all 0.2s;
}

.Yellow {
    background-color: #e0c368;
}

.Yellow p {
    line-height: 1.5;
    padding: 0;
    display: flex;
    justify-content: center;
    padding-top: 50px;
}


.Green {
    background-color: #a6c387;
}

.Green p {
    line-height: 1.5;
    padding: 0;
    display: flex;
    justify-content: center;
    padding-top: 50px;
}

.SleepcatWrapper {
    padding: 124px 86px;
    background-color: #634613;
}

.sleepcatContainer {
    display: flex;
}

.sleepcatContainer img {
    /* height: 624px; */
    height: 60%;
    width: 60%;
}

.sleepcatContainer p {
    font-size: 16px;
    color: #fff;
    line-height: 48px;
    text-align: center;
}

.sleepcatContainerP1 {
    padding: 176px 0 80px 60px;
}

.sleepcatContainerP2 {
    padding: 0px 0 116px 60px;
}

.catsWrapper {
    padding-bottom: 124px;
    background-color: #634613;
}

.catsContainer {
    background-color: #e2d9bd;
    width: 1088px;
    border-radius: 43px;
    margin: 0px auto;
    padding-bottom: 180px;
}

.cats {
    text-align: center;
    margin: 0 auto;
    font-size: 18px;
    font-weight: bold;
}

.cats a {
    color: #000;
    text-decoration: none;
}

.cats img:hover {
    /* background-color: #543622; */
    transform: scale(1.1);
    transition: all 0.2s;
}

.cat2-5 {
    padding: 64px 38px 20px 38px;
}

.cattop {
    padding: 0px 38px 20px 38px;
}

/* かり */
/* .modal-2__wrap input {
    display: none;
}

.modal-2__open-label,
.modal-2__close-label {
    cursor: pointer;
}

.modal-2__open-label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    margin:0 auto;
    padding: .8em 2em;
    border: none;
    border-radius: 5px;
    background-color: #2589d0;
    color: #ffffff;
    font-weight: 600;
    font-size: 1em;
}

.modal-2__open-label:hover {
    background-color: #fff;
    color: #2589d0;
    outline: 1px solid #2589d0;
}

.modal-2 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
}

.modal-2__open-input:checked + label + input + .modal-2 {
    display: block;
    animation: modal-2-animation .6s;
}

.modal-2__content-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 650px;
    background-color: #fefefe;
    z-index: 2;
    border-radius: 5px;
}

.modal-2__close-label {
    background-color: #777;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 20px;
    width: 36px;
    height: 36px;
    line-height: 1.6;
    text-align: center;
    display: table-cell;
    position: fixed;
    top: -15px;
    right: -2%;
    z-index: 99999;
    font-size: 1.3em;
}

.modal-2__content {
    max-height: 50vh;
    overflow-y: auto;
    padding: 39px 45px 40px;
}

.modal-2__background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .45);
    z-index: 1;
}

@keyframes modal-2-animation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@media only screen and (max-width: 520px) {
    .modal-2__open-label {
        max-width: 90%;
        padding: .94em 2.1em .94em 2.6em;
    }

    .modal-2__close-label {
        top: -17px;
        right: -4%;
    }

    .modal-2__content-wrap {
        width: 90vw;
    }

    .modal-2__content {
        padding: 33px 21px 35px;
        max-width: 100%;
    }
} */
/* かり */


.drinkPhoto {
    background-image: url(../images/meomaruke.images/drinkPhoto.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 580px;
    border: #e0c368;
}

.pricingPlansWrapper {
    padding-top: 124px;
    background-color: #e2d9bd;
}

.sheetFeeContainer {
    background-color: #fff;
    width: 1088px;
    border-radius: 43px;
    margin: 0px auto;
    padding-bottom: 150px;
}

.sheetFeeContainer p {
    font-size: 16px;
    text-align: center;
    padding-bottom: 50px;
}

.subTitleContainerSF {
    text-align: center;
}

.subTitleContainerSF h2 {
    margin-top: 4px;
    margin-bottom: 12px;
    color: #634613;
    font-size: 30px;
}

.subTitleContainerSF h4 {
    font-size: 20px;
    margin-bottom: 54px;
}

/* 料金表 */
.tab-1 {
    display: flex;
    flex-wrap: wrap;
    max-width: 742px;
    margin: 0 auto;
}

.tab-1>label {
    flex: 1 1;
    order: -1;
    min-width: 70px;
    padding: 40px 0 24px;
    border-radius: 0;
    background-color: #e9f0f6;
    color: #202020;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
    border-radius: 22px 22px 0 0;
}

.tab-1>label:hover {
    opacity: .8;
}

.tab-1 input {
    display: none;
}

.tab-1>div {
    display: none;
    width: 100%;
    padding: 40px;
    background-color: #a6c387;
    border-radius: 0 0 22px 22px;
}

.tab-1 label:has(:checked) {
    background-color: #a6c387;
    border-radius: 22px 22px 0 0;
    color: #000000;
}

.tab-1 label:has(:checked)+div {
    display: block;
    border-radius: 0 0 22px 22px;
}

.tab-1 p {
    font-size: 14px;
    padding-bottom: 0;
    text-align: end;
}

.SFimg {
    border: blue;
    /* width: 1800px; */
}

/* 料金表 */

.menuWrapper {
    background-color: #e2d9bd;
}

.menuContainer {
    /* background-color: #fff; */
    width: 1088px;
    border-radius: 43px;
    margin: 0px auto;
    padding-bottom: 150px;
}

.menuTextWrapper {
    display: flex;
    justify-content: center;
    padding: 0 47px;
}

.menuTextWrapper dt {
    font-weight: bold;
    font-size: 20px;
    padding-bottom: 24px;
}

.menuTextWrapper dd {
    font-size: 16px;
    line-height: 28px;
}

.menuTextLeft {
    padding: 0 88px;
}

.ume {
    padding-bottom: 24px;
}

.MTRdt {
    padding-top: 72px;
}

.alcohol {
    padding-top: 0px;
}

.menuTextRight p {
    font-size: 14px;
    padding-top: 48px;
}

.hotelWrapper {
    padding-bottom: 124px;
}

.hotelContainer {
    background-color: #fff;
    width: 1088px;
    border-radius: 43px;
    margin: 0px auto;
    padding-bottom: 180px;
}

.hotelContainer img {
    width: fit-content;
    text-align: center;
    display: block;
    margin: 0 auto;
    padding-bottom: 50px;
}

.hotelContents {
    width: fit-content;
    margin: 0 auto;
}

.hotelTxt {
    padding-bottom: 44px;
}

.hotelCaution {
    background-color: #e0c368;
    border-radius: 30px;
    padding: 40px 0 46px 0px;
    margin: 50px 96px 0 96px;
}

.cautionTitle {
    text-align: center;
}

.cautionTitle p {
    color: #c80c0c;
    font-weight: bold;
    padding: 14px 0 76px 0;
}

.caitionTxt {
    width: fit-content;
    margin: auto;
}

.caitionTxt li {
    line-height: 30px;
}

.catPhoto {
    background-image: url(../images/meomaruke.images/catPhoto.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 768px;
    border: #e0c368;
}

.accessWrapper {
    padding: 124px 0;
    background-color: #634613;
}

.accessContainer {
    background-color: #e2d9bd;
    width: 1088px;
    border-radius: 43px;
    margin: 0px auto;
    padding-bottom: 180px;
}

.accessLRContainer {
    display: flex;
    padding: 0 64px;
}

.accessLeft {
    width: 50%;
}

.map {
    width: 100%;
    position: relative;
    padding-top: 56.25%;
}

.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.originalMap {
    margin-top: 24px;
    width: 480px;
}

.accessRight {
    width: 50%;
    margin-left: 67px
}

.dd {
    font-size: 16px;
    padding-bottom: 72px;
}

.ddText {
    font-size: 16px;
    padding-bottom: 40px;
}

.accessRight dt {
    font-weight: bold;
    font-size: 20px;
    padding-bottom: 24px;
}

footer {
    background-color: #e0c368;
    padding: 78px 0 32px 0;
}

.footerContainer {
    display: flex;
    justify-content: center;
}

.footerLeft {
    margin: 0 120px;
}

.footerRight {
    margin: 0 120px;
    color: #fff;
    font-size: 15px;
}

.address {
    padding-bottom: 37px;
}

.footerRight a {
    display: inline-block;
    margin-top: 18px;
    color: #fff;
}

.footerLogo {
    width: 265px;
}

.sns {
    display: flex;
    margin-top: 58px;
    justify-content: center;
}

.instagram {
    height: 40px;
    padding-right: 14px;
}

.youtube {
    height: 40px;
    padding-left: 14px;
}

.copyRight {
    color: #fff;
    font-size: 14px;
    text-align: center;
    margin-top: 80px;
}

.pagetop {
    font-size: 29px;
    background-color: #fff;
    width: 64px;
    height: 64px;
    border-radius: 100%;
    text-align: center;
    z-index: 1;
    float: right;
    margin-right: 38px;
    opacity: 0.8;
}

.pagetop:hover {
    opacity: 1;
    transition: all 0.2s;
}

.fa-chevron-up {
    margin-top: 16px;
    color: #543622;
}