@charset 'utf-8';

:root {
    --main: #703437;
    --btnBg: #8D3236;
    --ffNotoSerif: "Noto Serif JP", serif;
    --ffShippori: "Shippori Mincho", serif;
}

body {
    position: relative;
    z-index: 0;
    margin: 0;
    font-family: var(--ffNotoSerif);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
}

body>.inner {
    background: url(../img/common/bg_sp.webp) repeat-y center/cover;
    padding-top: 60px;
}

a {
    color: #fff;
    text-decoration: none;
    transition: .5s;
}
a:hover {opacity: 0.5;}
a[href^="tel:"] {pointer-events: none;}
a.disabled {pointer-events: none;}
section p a{
    font-weight: 600;
    color: #703437;
    text-decoration: underline;
    text-underline-offset: 2px;
}
img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.inner {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    padding: 0 3%;
}
.flex {
    display: flex;
    flex-direction: column;
}
.fw700{font-weight: 700;}
/* :::::::::: scrollin animation :::::::::: */
.scrollin {
    visibility: hidden;
    opacity: 0;
    transition: 1.2s;
}
.scrollin.bottom {transform: translateY(30px);}
.scrollin.left {transform: translateX(-30px);}
.scrollin.right {transform: translateX(30px);}
.scrollin.active,
.scrollin.bottom.active,
.scrollin.left.active,
.scrollin.right.active {
    visibility: visible;
    opacity: 1;
    transform: translate(0, 0);
}

/* ===============================
header */
header {
    position: fixed;
    z-index: 10;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100vw;
    height: 70px;
    background: #fff;
}

header .logo {
    width: 70px;
    height: 70px;
    margin: 0 0 0 16px;
}

header .ig {
    margin-right: 80px;
    width: 45px;
    height: 45px;
}

/* ham */
.ham {
    position: fixed;
    z-index: 20;
    inset: 0 0 auto auto;
    width: 70px;
    height: 70px;
    cursor: pointer;
    text-align: center;
}

.ham::before,
.ham::after {
    position: absolute;
    z-index: 10;
    left: 50%;
    transform: translate(-50%, -50%);
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    border-radius: 1px;
    background: var(--main);
    transition: .4s;
}
.ham::before {top: 30%;}
.ham::after {top: 50%;}
.ham span {font-size: 0;}
.ham span::before {
    position: absolute;
    z-index: 10;
    content: 'menu';
    display: block;
    font-size: 14px;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: .4s;
}
.ham span::after {
    position: absolute;
    z-index: 10;
    content: 'close';
    color: #fff;
    display: block;
    font-size: 14px;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: .4s;
}

.ham.open::before,
.ham.open::after {
    top: 40%;
    background: #fff;
}
.ham.open::before {transform: translate(-50%, -50%) rotate(-45deg);}
.ham.open::after {transform: translate(-50%, -50%) rotate(45deg);}
.ham.open span::before {opacity: 0;}

.ham.open span::after {opacity: 1;}

.ham+nav {
    position: fixed;
    z-index: 15;
    top: 0;
    right: -110%;
    background: var(--main);
    height: 100vh;
    padding: 80px 40px 40px 20px;
    transition: .8s;
}

.ham+nav ul li {
    position: relative;
    z-index: 0;
    margin: 0 0 0.5em;
}

.ham+nav ul li span {
    font-size: 14px;
    opacity: 0.8;
}

.ham+nav ul li::before {
    position: absolute;
    z-index: 0;
    inset: 50% auto auto -1.2em;
    transform: translate(-50%, -50%);
    content: '';
    width: .7em;
    height: 1px;
    background: #fff;
}

.ham+nav ul li:nth-last-of-type(1):before,
.ham+nav ul li:nth-last-of-type(2):before {
    display: none;
}

.ham.open+nav {
    right: 0;
}

/* ================================ */
/* セクション共通 */
/* ================================ */
.sec_cont {
    padding: 40px 0;
}

.sec_cont h2 {
    position: relative;
    z-index: 0;
    font-family: var(--ffShippori);
    font-weight: 500;
    font-size: 28px;
}

.sec_cont h2::before {
    position: absolute;
    z-index: 0;
    inset: -0.1em auto auto -1.2em;
    content: '';
    width: 120px;
    height: 2px;
    background: var(--main);
}

.btn {
    width: 100%;
    max-width: 280px;
    margin: 50px auto;
}

.btn a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    font-family: var(--ffShippori);
    padding: .8em 1em .7em 1em;
    text-align: center;
    letter-spacing: 0.05em;
    background: var(--btnBg);
    border-radius: 8px;
    filter: drop-shadow(4px 4px 10px rgba(51, 51, 51, .3));
    transition: .3;
}

.btn a::after {
    position: absolute;
    z-index: 0;
    inset: -98% 1em -100% auto;
    margin: auto 0;
    content: '';
    width: 16px;
    height: 16px;
    background: url(../img/common/icon_btn_arrow.png) no-repeat center/contain;
    transition: .3s;
}

.btn a:hover {
    opacity: 1;
    transform: translateY(3px);
    filter: drop-shadow(2px 2px 5px rgba(51, 51, 51, .6));
}

.btn a:hover::after {
    right: calc(1em - 5px);
}

/* ================================ */
/* KV video */
/* ================================ */
.video_area {
    position: fixed;
    z-index: -1;
    inset: 70px -100% 0;
    margin: 0 auto;
    width: 100vw;
    height: 100vh;
}

/* .video_area video { */
.video_area figure {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
}

.video_area figure img {
    transition: filter 1s;
    filter: sepia(.2) brightness(0.7);
}

.video_area.is_scrolled figure img {
    filter: sepia(.2) brightness(0.3);
}



/* ================================ */
/* KV */
/* ================================ */
.kv {
    padding-top: 70px;
}

.kv>.inner {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    height: calc(100svh - 70px);
}

.kv p,
.kv h1 {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    color: #fff;
    font-size: 38px;
    font-weight: 400;
    letter-spacing: 0.23em;
    text-shadow: 0 0 10px #70343733;
}

.kv p {
    font-size: 30px;
    text-align: right;
}

.kv+.lead {
    color: #fff;
    padding: 90px 0;
}

.kv+.lead h2 {
    width: 70%;
    max-width: 200px;
    margin: 0 auto 30px;
}

.kv+.lead p {
    line-height: 1.66;
    letter-spacing: 0.05em;
    font-weight: 300;
}

/* オープニングアニメ */
/* 初期状態では透明 */
#kv_p span {
    opacity: 0;
    transform: translateY(10px);
    /* 文字が少し下に位置 */
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* .activeが付与されたときにアニメーション */
#kv_p.show span {
    opacity: 1;
    transform: translateY(0);
}

#kv_h1 {
    opacity: 0;
    filter: blur(10px);
}

#kv_h1.active {
    opacity: 1;
    filter: blur(0px);
    transition: all 0.8s ease;
}

/* ================================ */
/* お知らせ */
/* ================================ */
section.news .news_cont {
    background: rgba(255, 255, 255, .7);
    color: #000;
    padding: 15px;
    margin: 0 auto 48px;
}

section.news .news_cont dl {
    margin: 0;
    padding: 15px 0;
}

section.news .news_cont dl:first-of-type {padding: 0 0 15px;}
section.news .news_cont dl:last-of-type {padding: 15px 0 0;}
section.news .news_cont dl:not(:last-of-type) {border-bottom: 1px dashed #CCBEBE;}
section.news .news_cont dl a {color: #000;}
section.news .news_cont dl dd span{font-weight: 700;}


/* ================================ */
/* メニュー */
/* ================================ */
section.menu {
    overflow-x: hidden;
}

.menu_slider {
    position: relative;
    z-index: 0;
    padding: 0;
}

.menu_slider li {
    padding: 0 15px;
}

.menu_slider li * {
    color: #000;
    width: 100%;
    pointer-events: none;
}

.menu_slider .slick-track {
    display: flex;
    justify-content: space-evenly;
    /* gap: 50px; */
}

.menu_slider li figure {
    width: 100%;
    height: auto;
    aspect-ratio: 335 / 200;
    margin: 0;
}

.menu_slider li figure img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu_slider li .menu_cat {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 0;
    margin: 7px 0 0;
}

.menu_slider li .menu_cat li {
    width: fit-content;
    margin: 0 .5em .5em 0;
}

.menu_slider li .menu_cat li a {
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 30px;
    padding: 2px 15px 1px;
    font-family: var(--ffShippori);
    font-size: 14px;
}

.menu_slider li p a {
    font-family: var(--ffShippori);
    font-size: 24px;
    font-weight: 500;
}

.menu_slider .slick-prev,
.menu_slider .slick-next {
    position: absolute;
    z-index: 1;
    top: -120%;
    bottom: -100%;
    margin: auto 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 0;
    border: none;
    background: #ffffffdd;
    cursor: pointer;
    box-shadow: 0 0 5px #70343733;
}

.menu_slider .slick-prev {
    left: -15px;
}

.menu_slider .slick-next {
    right: -15px;
}

.menu_slider .slick-prev::before,
.menu_slider .slick-next::before {
    position: absolute;
    z-index: 1;
    inset: -120% -100% -100% -100%;
    content: '▶︎';
    margin: auto;
    font-size: 14px;
    color: var(--main);
    width: 15px;
    height: 15px;
}

.menu_slider .slick-prev::before {
    transform: translateX(-1px) rotate(180deg);
    transform-origin: center 70%;
}

/* ================================ */
/* アクセス */
/* ================================ */
.access p a {
    font-weight: 700;
    color: var(--btnBg);
}

/* ================================ */
/* フッター */
/* ================================ */

footer {
    text-align: center;
    background: var(--btnBg);
    padding: 80px 0 10px;
}

footer p {
    padding: .5em 0;
    margin: 0;
    color: #fff;
}

footer figure {
    max-width: 120px;
    margin: 0 auto 30px;
}

footer address {
    color: #fff;
    font-style: normal;
}

footer p.ig {
    max-width: 50px;
    margin: 0 auto;
}

/* ページトップ */
.pagetop {
    position: fixed;
    z-index: 1;
    inset: auto 2% 2% auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: .5s;
}

.pagetop a {
    position: relative;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    width: 50px;
    height: 50px;
    background: linear-gradient(to bottom, var(--main) 0%, #662222 100%);
    border-radius: 50px;
    padding: 5px 0 0;
}

.pagetop::before {
    position: absolute;
    z-index: 1;
    display: inline-block;
    content: '〉';
    font-size: 14px;
    color: #fff;
    inset: 25% auto auto 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
}

.pagetop.is_visible {
    opacity: 1;
    visibility: visible;
    transform: none;
}

/* ================================ */
/* Google Mapレスポンシブ対応 */
/* ================================ */
.map {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 75%;
    /* 比率を4:3に固定 */
}

/* Google Mapのiframe */
.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media screen and (max-width:767px) {
    a[href^="tel:"] {
        pointer-events: initial;
    }

    /* =========== max-width:767px =========== */
}