* {
    box-sizing: border-box;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}
h1,h2,h3,h4,h5 {
    font-weight: 600;
}
section {
    width: 100%;
}

/****************************************************/
/* 共通パーツ */
/****************************************************/

/* 予約について */
.reserve {
    position: fixed;
    bottom: 0;
    color: #ffffff;
    background-color: #620A0A;
    padding: 0 16px;
    font-family: sans-serif;
    z-index: 100;

    @media screen and (min-width: 1079px) {
        display: flex;
        padding: 0;
        justify-content: center;
        height: 80px;
    }
}
.reserve-title {
    margin-bottom: 0;
    @media screen and (min-width: 768px) {
        margin-bottom: 8px;
    }
}
.reserve-head {
    display: block;
    font-family: sans-serif;
    margin-right: 24px;
    margin-bottom: 8px;
    @media screen and (min-width: 768px) {
        display: inline;
        margin-right: 0;
    }
}
.reserve-number {
    display: block;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 24px;
    text-decoration: none;
    color: #ffffff;
    padding-left: 30px;
    background-image: url("../img/icon-phone.svg");
    background-repeat: no-repeat;
    background-position-y: center;
    margin-bottom: 8px;
    @media screen and (min-width: 768px) {
        display: inline;
        margin-left: 24px;
        font-size: 24px;
    }
}
.reserve-email {
    display: block;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 20px;
    text-decoration: none;
    color: #ffffff;
    padding-left: 30px;
    background-image: url("../img/icon-email.svg");
    background-repeat: no-repeat;
    background-position-y: center;
    @media screen and (min-width: 768px) {
        display: inline;
        margin: 0 24px;
    }
}
.reserve-link {
    @media screen and (min-width: 1079px) {
        padding-top: 14px;
    }
}
.reserve-text {
    font-size: 14px;
    margin: 8px 0 16px 0;
    @media screen and (min-width: 768px) {
        margin-top: 18px;
    }
}
.reserve-text span {
    font-size: 14px;
    @media screen and (min-width: 768px) {
        font-size: 16px;
        padding-top: 3px;
    }
}

/* カレンダー */
.calendar {
    background-size: cover;
    background-image: url("../img/calender_bg_pc.jpg");
    @media screen and (min-width: 768px) {
        padding: 90px 0;
    }
}
.calendar-js {
    background-color: #ffffff;
    max-width: 90vw;
    margin: 16px auto;
    padding: 24px;
    border: 1px solid #eeeeee;
    border-top: 3px solid #F2CE84;
    min-height: 100px;
    @media screen and (min-width: 768px) {
        height: 600px;
        max-width: 800px;
    }
}
.fc-daygrid-day.fc-day-sat{
    background-color: #eeeeee;
}
.fc-daygrid-day.fc-day-sun{
    background-color: #eeeeee;
}
.fc .fc-bg-event {
    opacity: 1;
}
.fc-daygrid-day-events {
    cursor: default;
}
.fc-daygrid-day-events a {
    cursor: default;
}
.fc-event-title-container {
    line-height: 12px;
    cursor: default;
}
.fc-event-title {
    font-size: 10px !important;
    line-height: 12px;
    font-family: sans-serif;
}
.calendar-event-holiday .fc-event-title {
    color: #C92A2A;
    font-style: normal !important;
}
.calendar-event-post .fc-event-title {
    color: #ffffff;
    word-break: break-all;
}
.fc-today-button {
    display: none !important;
}
.fc-list-event-time {
    display: none;
}
.fc-list-event-graphic {
    cursor: default;
}
.fc-list-event-title {
    cursor: default;
}
.fc-list-event-title a {
    color: #000000;
    text-decoration: none !important;
    cursor: default;
}

/* 著作 */
.copyright {
    color: #666666;
    font-size: 12px;
    font-style: normal;
    font-family: sans-serif;
    text-align: center;
    margin-top: 100px;
}

/* リンクボタン */
.link-btn {
    text-align: center;
    display: block;
    background-color: #74B93B;
    color: #ffffff;
    line-height: 45px;
    width: 270px;
    cursor: pointer;
    border-radius: 4px;
    margin: 16px auto;
    text-decoration: none;
    background-image: url("../img/arrow.svg");
    background-repeat: no-repeat;
    background-position: left 15px center;
}
/* PC/SP表示切りかえ */
.for-pc {
    display: none;
    @media screen and (min-width: 768px) {
        display: block;
    }
}
.for-sp {
    display: block;
    @media screen and (min-width: 768px) {
        display: none;
    }
}
/* 言語の切り替え */
.switch-language
{
    position: absolute;
    z-index: 100;
    top: 16px;
    right: 16px;
    display: flex;
}
.switch-language select {
    color: #ffffff;
    border: 0;
    background-color: transparent;
    appearance: none;
    font-size: 14px;
    line-height: 20px;
    outline: none;
    cursor: pointer;
}
.switch-language select option {
    color: #000000;
}
.lang-icon {
    display: none;
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

/****************************************************/
/* メイン */
/****************************************************/

.first-view {
    min-height: 100dvh;
    background-color: #000000;
    background-image: url("../img/fv_bg_sp.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    @media screen and (min-width: 768px) {
        background-image: url("../img/fv_bg_pc.jpg");
        background-position-y: center;
    }
}
@keyframes fadein {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadein2 {
    50% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.fv-logo {
    position: absolute;
    top: 50px;
    left: 50px;
    height: 265px;
    opacity: 0;
    animation-name: fadein;
    animation-duration: 2.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}
.fv-haiku {
    position: absolute;
    top: 185px;
    right: 50px;
    height: 265px;
    opacity: 0;
    animation-name: fadein2;
    animation-duration: 3.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    @media screen and (min-width: 768px) {
        top: 150px;
        right: 15%;
    }
}

/* インスタグラム */
.instagram {
    background-color: #EFDFBD;
    color: #532D2D;
    padding: 24px 0;
    text-align: center;
    font-family: sans-serif;
    @media screen and (min-width: 768px) {
        padding: 130px 0;
    }
}
.instagram-icon {
    width: 60px;
}
ul.insta_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 0;
    @media screen and (min-width: 768px) {
        max-width: 900px;
        margin: 50px auto 0 auto;
    }
}
ul.insta_list li {
    list-style: none;
    width: 30%;
    margin: 1%;
    @media screen and (min-width: 768px) {
        width: 150px;
    }
}
ul.insta_list li img {
    object-fit: cover;
    width: 30vw;
    height: 30vw;
    @media screen and (min-width: 768px) {
        width: 150px;
        height: 150px;

    }
}
ul.insta_list li a {
    text-decoration: none;
    color: #000000;
}
ul.insta_list li a p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    font-size: 12px;
    line-height: 15px;
    margin: 0 auto 24px auto;
}
ul.insta_list li a p span {
    font-size: 120%;
}

/* 料理 */
.food {
    color: #532D2D;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url('../img/food_bg_sp.jpg');
    padding-top: 50px;
    background-attachment: fixed;
    @media screen and (min-width: 768px) {
        text-align: center;
        background-size: cover;
        background-image: url('../img/food_bg_pc.jpg');
        padding: 100px;
    }
}
.food img {
    vertical-align:top;
}
.food-text {
    padding: 24px;
}
.food-text p {
    margin: 0;
}
.food-image-pc {
    max-width: 1100px;
}

/* 店内 */
.inside {
    color: #532D2D;
    background-size: cover;
    background-position-y: bottom;
    background-repeat: no-repeat;
    background-image: url('../img/inside_bg_sp.jpg');
    background-attachment: fixed;
    @media screen and (min-width: 768px) {
        background-position-y: center;
        background-size: cover;
        padding: 100px;
        background-image: url('../img/inside_bg_pc.jpg');
    }
}
.inside-inner {
    max-width: 800px;
    margin: 0 auto;
}
.inside-image-first {
    width: 100%;
}
.inside-image {
    width: 180px;
    vertical-align:top;
}
.inside-text {
    padding: 24px;
    @media screen and (min-width: 768px) {
        padding: 0;
        position: absolute;
        left: 55%;
        top: 40px;
    }
}
.inside-bottom {
    padding: 40px 0;
    position: relative;
}
.inside-image-last {
    text-align: right;
    @media screen and (min-width: 768px) {
        text-align: left;
        margin-left: 180px;
    }
}
/* うなぎ */
.bnr {
    position: relative;
    background-color: #000000;
    color: #ffffff;
    background-image: url("../img/unagi_kv_bg_sp.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 24px;
    background-attachment: fixed;
    @media screen and (min-width: 768px) {
        background-image: url("../img/unagi_kv_bg_pc.jpg");
        padding-bottom: 100px;
    }
}
.bnr-top {
    width: 100%;
    text-align: right;
    @media screen and (min-width: 768px) {
        position: absolute;
        width: 50%;
        right: 0;
    }
}
.bnr-bottom {
    width: 100%;
    text-align: center;
    @media screen and (min-width: 768px) {
        position: absolute;
        width: 50%;
        left: 0;
        top: 250px;
    }
}
.bnr-tennen {
    position: absolute;
    top: 45px;
    left: 45px;
    @media screen and (min-width: 768px) {
        left: 50%;
        right: 50%;
        top: 75px;
    }
}
.bnr-text {
    width: fit-content;
    margin: 0 auto;
    padding: 24px;
    @media screen and (min-width: 768px) {
        padding-top: 700px;
        margin-bottom: 50px;
    }
}
.btn-wrapper {
    text-align: center;
}

/* インフォメーション */
.information {
    padding: 24px 24px 50px 24px;
    color: #444444;
    @media screen and (min-width: 768px) {
        padding: 150px 0 100px 0;
        background-size: cover;
        background-image: url("../img/calender_bg_pc.jpg");
    }
}
.information-flex {
    @media screen and (min-width: 768px) {
        display: flex;
        gap: 80px;
    }
}
.information-left, .information-right {
    @media screen and (min-width: 768px) {
        width: 50%;
    }
}
.information-inner {
    margin: 0 auto;
    max-width: 760px;
}
.info-title {
    border-bottom: 2px solid #444444;
}

/****************************************************/
/* 天然鰻 */
/****************************************************/

/* キービジュアル */
.unagi-fv {
    min-height: 100dvh;
    background-color: #000000;
    color: #ffffff;
    background-image: url("../img/unagi_kv_bg_sp.jpg");
    background-size: auto 100%;
    background-repeat: no-repeat;
    position: relative;
    background-attachment: fixed;
    @media screen and (min-width: 768px) {
        background-size: cover;
        background-image: url("../img/unagi_kv_bg_pc.jpg");
        padding-bottom: 50px;
    }
}
.unagi-fv-logo {
    position: absolute;
    left: 50px;
    top: 50px;
    opacity: 0;
    animation-name: fadein;
    animation-duration: 2.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    @media screen and (min-width: 1099px) {
        margin: 0 auto;
        top: 50px;
        left: 50%;
        right: 50%;
    }
}
.unagi-fv-top {
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
    text-align: right;
    @media screen and (min-width: 768px) {
        width: 50%;
    }
}
.unagi-fv-bottom {
    padding-top: 400px;
    width: 100%;
    text-align: center;
    opacity: 0;
    animation-name: fadein2;
    animation-duration: 2.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    @media screen and (min-width: 768px) {
        padding-top: 450px;
        margin-bottom: 50px;
    }
}
.unagi-fv-dish {
    width: 700px;
}
.unagi-fv-text {
    padding: 24px ;
    @media screen and (min-width: 768px) {
        width: fit-content;
        margin: 0 auto;
        padding: 0;
    }
}
.unagi-fv-tennen {
    position: absolute;
    top: 250px;
    right: 50px;

    @media screen and (min-width: 768px) {
        right: 150px;
        left: auto;
        top: 450px;
    }
}

/* メニュー */
.menu {
    padding: 24px;
    background-image: url("../img/menu_bg_sp.jpg");
    background-size: cover;
    background-attachment: fixed;
    @media screen and (min-width: 768px) {
        padding: 150px 16px;
        background-size: cover;
        background-image: url("../img/menu_bg_pc.jpg");
    }
}
.menu-inner {
    max-width: 800px;
    margin: 0 auto;
}
.menu-flex {
    width: 100%;
    @media screen and (min-width: 768px) {
        display: flex;
        gap: 80px;
    }
}
.menu-left {
    @media screen and (min-width: 768px) {
        width: 50%;
    }
}
.menu-right {
    @media screen and (min-width: 768px) {
        width: 50%;
    }
}
.menu h2 {
    font-size: 24px;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 400;
}
.menu h3 {
    border-bottom: 2px solid #333333;
}
.menu .price {
    float: right;
}
.menu ul {
    padding: 0;
    margin-bottom: 40px;
}
.menu ul li {
    width: 100%;
    list-style: none;
    padding: 0;
}
.menu ul li .title {
    font-weight: 600;
    margin-right: 24px;
}
.menu ul li .price {
    float: right;
}

/* おいしさの秘密 */
.story {
    background-color: #000000;
    color: #ffffff;
    padding: 400px 0 40px 0;
    background-image: url("../img/story_bg_sp.jpg");
    background-size: 100% auto;
    background-repeat: no-repeat;

    @media screen and (min-width: 768px) {
        padding: 350px 0 100px 0;
        background-size: 100% auto;
        background-image: url("../img/story_bg_pc.jpg");
    }
}
.story-inner {
    max-width: 530px;
    margin: 0 auto;
}
.story-image-wrapper {
    text-align: center;
    margin-bottom: 40px;
}
.story h2 {
    color: #C9A063;
    font-size: 24px;
    text-align: center;
    margin-bottom: 36px;
    font-weight: 400;
    @media screen and (min-width: 768px) {
        margin-bottom: 48px;
    }
}
.story h3 {
    color: #C9A063;
    margin-bottom: 0;
}
.story-text {
    margin: 0 24px 40px 24px;
    @media screen and (min-width: 768px) {
        margin: 0 0 40px 0;
    }
}
.story p {
    margin: 0 0 24px 0;
}
.unagi-title-kv {
    height: 190px;
    position: absolute;
    right: 40px;
    top: 240px;
}
.unagi-dish {
    margin-top: 56px;
    width: 100%;
    max-width: 390px;
}
