@charset "UTF-8";

/*****************************************
全体
*****************************************/
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@100;200;300;400;500;600;700;800;900&display=swap');

html {
    height: -webkit-fill-available;
}

body {
    font-family: 'Noto Serif JP', serif;
    font-weight: 200;
    overflow: hidden;
}

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

.slideshow img {
    object-fit: cover !important;
    height: 100vh !important;
}

.main-visual {
    position: relative;
}

.header-text {
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px;
    z-index: 100;
}

.logo-group {
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 20px;
    z-index: 99;
}

.logo-group::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    width: 400px;
    height: 500px;
    transform: rotate(45deg);
    margin-top: -50px;
    margin-right: -80px;
    z-index: -1;
}

/*****************************************
予約ボタンデザイン
*****************************************/
.btn {
    font-weight: 600;
}

.btn_box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}

.btn {
    display: block;
    position: relative;
    width: 200px;
    height: 78px;
    text-decoration: none;
    color: #fbfbfb;
    text-align: center;
    transition: .2s;
}

.btn a {
    width: 200px;
    height: 78px;
    line-height: 78px;
    padding: 0;
    transition: all 0.5s 0s ease;
}

.btn a:hover {
    background-color: #fff !important;
}

.btn:before,
.btn:after {
    content: "";
    position: absolute;
    z-index: -10;
    width: 200px;
    height: 78px;
    top: 0;
    left: 0;
    background: #ffffff;
    transform: translate3d(0, 0, 0);
}

.btn:before {
    animation: anime 1s ease-out infinite;
}

.btn:after {
    animation: anime 1s ease-out 1s infinite;
}

@keyframes anime {
    0% {
        transform: scale(.95);
        opacity: 1
    }

    90% {
        opacity: .1
    }

    to {
        transform: scale(1.2, 1.4);
        opacity: 0
    }
}

/*****************************************
お知らせデザイン
*****************************************/
.news-group {
    max-width: 1100px;
    margin: 0 auto;
}

.news-wrap {
    background: no-repeat url("/wp-content/themes/lighthouse/img/bg01.jpg");
}

.news-title {
    border-bottom: 1px #333 solid;
}

.wp-block-latest-posts__post-title {
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
}

.wp-block-latest-posts__post-date {
    font-weight: 400;
}

.news-list a {
    width: 100%;
    height: 100%;
}

.news-list img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*****************************************
wordpressのデザイン崩れ修正
*****************************************/
@media screen and (max-width:600px) {
    .wp-block-latest-posts.is-grid li {
        margin: 20px;
    }
}

/*****************************************
Light Houseコンセプトデザイン
*****************************************/
.concept-group {
    background: no-repeat url("/wp-content/themes/lighthouse/img/bg02.jpg");
}

.concept-title {
    color: #4E98AA;
    font-size: 48px;
    letter-spacing: 8px;
}

.concept-column {}

.concept-img-left {
    max-width: 100%;
    max-height: 350px;
}

.concept-img-left figure {
    width: 100%;
    height: 350px;
}

.concept-img-left img {
    width: 100%;
    height: 350px;
    object-fit: contain;
}

.concept-img-right {
    max-width: 100%;
    max-height: 350px;
}

.concept-img-right figure {
    width: 100%;
    height: 350px;
}

.concept-img-right img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}


.concept-text {
    max-width: 1100px;
    margin: 0 auto;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 2;
    position: relative;
}

.concept-text::before {
    content: url('/wp-content/themes/lighthouse/img/kakko1.png');
    position: absolute;
    top: -50px;
    left: -80px;
}

.concept-text::after {
    content: url('/wp-content/themes/lighthouse/img/kakko2.png');
    position: absolute;
    bottom: -50px;
    right: -80px;
}

/*****************************************
店舗情報デザイン
*****************************************/
.shopinfo-group {
    max-width: 1100px;
    margin: 0 auto;
}

.shopinfo-title {
    border-bottom: 1px #333 solid;
}

.table-style {
    line-height: 2;
}

.table-style td {
    padding: 15px 0;
}

.shop-info-img {
    height: 100%;
}

.shop-info-img img {
    height: 100%;
    object-fit: cover;
}

/*****************************************
Google Mapデザイン
*****************************************/
.map-column {
    max-width: 1100px;
    margin: 0 auto;
}

.map-btn a {
    width: 200px;
    height: 78px;
    line-height: 78px;
    padding: 0;
    transition: all 0.5s 0s ease;
}

.map-btn a:hover {
    background-color: pink !important;
}

/*****************************************
予約システムデザイン
*****************************************/
.scheduleTblWrap {
    max-height: none !important;
}

/*****************************************
footerデザイン
*****************************************/
footer {
    background-color: pink;
}

/*****************************************
予約キャンセルページデザイン
*****************************************/
.head-img {
    width: 100%;
    height: 200px;
    position: relative;
}

.head-img img {
    position: absolute;
    top: 20px;
    right: 20px;
}

.cancel-container {
    max-width: 1100px;
    margin: 100px auto;
}

.cancel-container h1 {
    text-align: center;
}

.cancel-container p {
    text-align: center;
    margin-top: 20px;
}

/*****************************************
LINE友達追加アイコンデザイン
*****************************************/
.line-button {
    display: none;
}

/*****************************************
投稿ページデザイン
*****************************************/
.single-head {
    background-color: pink;

}

.single-head h1 {
    color: #fff;
    font-size: 36px;
    padding: 20px;
}

.article-img {
    margin: 20px;
}

.article-head h2 {
    margin: 20px;
}

.single-body {
    margin: 20px;
}

/*****************************************
小型PC
*****************************************/
@media screen and (max-width:1200px) {
    .concept-text {
        width: 80%;
    }
}

/*****************************************
タブレットデザイン
*****************************************/
@media screen and (max-width:900px) {
    .logo-group {
        padding-top: 50px;
        padding-right: 50px;
    }

    .line-button {
        display: inline;
        position: fixed;
        bottom: 10px;
        right: 10px;
        z-index: 1000;
    }

    .line-button:hover {
        opacity: 0.8;
    }
}

/*****************************************
スマホデザイン
*****************************************/
@media screen and (max-width:768px) {
    .logo-group {
        padding: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .logo-group .sp-wrap {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .logo-group::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        rotate: -45deg;
        width: 1000px;
        height: 350px;
        margin-top: -400px;
    }

    .concept-title {
        font-size: 36px;
        text-align: center;
    }

    .table-style {
        margin: 0 10px;
    }

    .table-style tr,
    .table-style td {
        display: block;
        width: 100%;
    }

    .table-style td {
        padding: 10px;
    }

    .table-style tr td:nth-of-type(1) {
        background-color: pink;
    }

    .table-style tr td:nth-of-type(2) {
        background-color: #fff;
    }
}