@charset "UTF-8";
/* 
Theme Name:FrenchRestaurant
*/


html {
    scroll-behavior: smooth;
    /* 常に自動調整時の倍率を1倍にする */
    -webkit-text-size-adjust: 100%;
    /* IE(Internet Explorer)・Microsoft Edgeへの対応 */
    -ms-overflow-style: none;
    /* Firefoxへの対応 */
    scrollbar-width: none;
}

/*Google Chrome、Safariへの対応*/
html::-webkit-scrollbar {
    display: none;
}

body {
    font-family: "Droid Sans", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "MS Ｐゴシック", sans-serif;
    box-sizing: border-box;
    overflow-x: hidden;
    max-width: 1920px;
}

h1 {
    font-size: 60px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 16px;
}

h4 {
    font-size: 13px;
}

ul {
    display: flex;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #1f1f1f;
}

p {
    text-align: justify;
}

ul a {
    font-size: 15px;
}

.inner {
    width: 65%;
    margin: 0 auto;
}

.fa-square-facebook,
.fa-instagram {
    font-size: 32px;
}

@media screen and (min-width: 1025px) {

    .fa-square-facebook:hover,
    .fa-instagram:hover {
        opacity: .5;
    }
}

.fa-arrow-up {
    font-size: 35px;
    position: absolute;
    right: 40px;
    bottom: 30px;
    opacity: .7;
    transition: .5s all;
}

@media screen and (min-width: 1025px) {
    .fa-arrow-up:hover {
        opacity: 1;
    }
}

.title {
    width: 62%;
    margin-bottom: 120px;
    padding-top: 40px;
    opacity: 0;
}

.discription,
.discription-en {
    display: block;
    width: 450px;
    opacity: 0;
}

.btn {
    display: inline-block;
    padding: 12px 60px;
    border: 1px solid #1f1f1f;
    background-color: white;
    position: relative;
    overflow: hidden;
    opacity: 0;
}

.discription-en,
.btn {
    margin-top: 40px;
}

/* =========ボタンアニメーション========== */
/*ボタン内spanの形状*/
.btn span {
    position: relative;
    z-index: 3;
    /*z-indexの数値をあげて文字を背景よりも手前に表示*/
    color: #333;
}

@media screen and (min-width: 1025px) {
    .btn:hover span {
        color: #fff;
    }
}

/*== 背景が流れる（左から右） */
.bgleft:before {
    content: '';
    /*絶対配置で位置を指定*/
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    /*色や形状*/
    background: #333;
    /*背景色*/
    width: 100%;
    height: 100%;
    /*アニメーション*/
    transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transform: scale(0, 1);
    transform-origin: right top;
}

@media screen and (min-width: 1025px) {

    /*hoverした際の形状*/
    .bgleft:hover:before {
        transform-origin: left top;
        transform: scale(1, 1);
    }
}

/* ================================ */

/*==================================================
ヘッダーメニューアンダーライン
===================================*/
.nav-item a {
    /*線の基点とするためrelativeを指定*/
    position: relative;
}

.nav-item a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: -5px;
    left: 0;
    /*線の形状*/
    width: 100%;
    height: 2px;
    background: #1f1f1f;
    /*アニメーションの指定*/
    transition: all .1s;
    transform: scale(0, 1);
    /*X方向0、Y方向1*/
    transform-origin: left top;
    /*左上基点*/
}

@media screen and (min-width: 1025px) {

    /*hoverの設定*/
    .nav-item a:hover::after {
        transform: scale(1, 1);
        /*X方向にスケール拡大*/
    }
}

/* ================================================== */

/*==================================================
ヘッダー小さくする
===================================*/
#header.HeightMin {
    height: 70px;
    animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
    from {
        opacity: 0;
        transform: translateY(-170px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================================== */

/* ========================
フェードイン
========================== */
.fadeIn {
    animation-name: fadeInAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes fadeInAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ================================================== */

/* ========================
フェードイン-レフト
========================== */
.fadeLeft {
    animation-name: fadeLeftAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}

@keyframes fadeLeftAnime {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 遅らせる */

.delay-time02 {
    animation-delay: 0.2s;
}

.delay-time04 {
    animation-delay: 0.4s;
}

.delay-time08 {
    animation-delay: 0.8s;
}

.delay-time15 {
    animation-delay: 1.5s;
}

/* ================================================== */
/* ========================
フェードイン-ライト
========================== */
.fadeRight {
    animation-name: fadeRightAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}

@keyframes fadeRightAnime {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ================================================== */
/* ========================
フェードイン-ボトム
========================== */
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================================== */


.ornement {
    display: flex;
    justify-content: right;
}

.ornement img {
    width: 200px;
}

#lunch-ornement {
    margin-top: 220px;
}

#information h1,
#access h1 {
    margin-top: 70px;
    margin-bottom: 5px;
}

/* ----------header---------- */
header {
    width: 100vw;
    height: 100vh;
    background-size: cover;
    position: relative;
}

#index-header {
    background-image: url(images/header.jpg);
}

#header {
    display: flex;
    padding: 16px 20px;
    justify-content: space-between;
    box-shadow: 0px 2px 5px -5px #1f1f1f;
    inset: 0 12.5% 87%;
    margin: auto;
    background-color: white;
}

#header.inner {
    width: 75%;
}

#header,
#reservation,
.fa-arrow-up {
    position: fixed;
    z-index: 99;
}

#reservation.active,
.fa-arrow-up.active {
    opacity: 0;
}

#logo {
    display: flex;
}

#header img {
    width: 250px;
}

@media screen and (min-width: 1025px) {
    #header img:hover {
        opacity: .7;
    }
}

#header nav {
    display: flex;
    align-items: center;
}

.nav-item {
    transform: translateY(.5rem);
}

#header ul li {
    display: block;
}

#header ul li+li {
    margin-left: 40px;
}

#header ul li+li:last-child {
    margin-left: 65px;
}

#sns a+a {
    margin-left: 20px;
}

#reservation {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    padding: 20px 10px;
    background-color: #1f1f1f;
    color: white;
    letter-spacing: 1rem;
    top: 250px;
    right: 0;
    transition: .5s all;
}

/* +++++++++++++++++++++++
        hamburger-menu
+++++++++++++++++++++++++ */
.hamburger {
    display: none;
}

/* ++++++++++++++++++++++*/

/* -------------------------- */
/* ----------footer---------- */
footer {
    position: relative;
}

footer img {
    width: 440px;
    margin-bottom: 90px;
}

#footer-main {
    margin-left: 35px;
}

footer ul li+li {
    margin-left: 60px;
}

footer nav {
    margin-bottom: 60px;
}

#footer-sns {
    margin-bottom: 100px;
}

#footer-sns a+a {
    margin-left: 20px;
}

footer p+p {
    margin-top: 25px;
}

#mark {
    position: absolute;
    top: 100px;
    right: 0;
}

small {
    display: block;
    text-align: center;
    margin-top: 110px;
    margin-bottom: 5px;
}

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

/* =======================
index.html
============================================ */

/* ----------concept---------- */
#concept .title {
    padding-bottom: 75px;
    background-color: #D9D9D9;
}

#concept {
    margin-bottom: 220px;
}



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

/* ----------lunch---------- */
#lunch {
    margin-bottom: 140px;
}

#lunch-top {
    display: flex;
    justify-content: space-between;
}

#lunch-top-left {
    opacity: 0;
}

#lunch-top-left img {
    width: 90%;
}


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

/* ----------dinner---------- */
#dinner {
    height: 750px;
    margin-bottom: 300px;
    background-image: url(images/dinner.jpg);
}

#bg-wh {
    width: 46%;
    height: 645px;
    background-color: white;
}

#dinner-container {
    width: 90%;
    margin: 0 auto;
}

#dinner .title {
    padding-top: 35px;
}

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

/* ----------locale---------- */
#locale {
    height: 750px;
    background-image: url(images/local.jpg);
    color: white;
}

#locale .inner {
    display: flex;
    justify-content: right;
}

#bg-bk {
    width: 46%;
    height: 645px;
    background-color: #1f1f1f;
    position: relative;
    top: 50px;
}

#locale-container {
    width: 90%;
    margin: 0 auto;
}

#locale .title {
    padding-top: 35px;
}

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

/* ----------takeout---------- */
#takeout {
    display: flex;
    width: 100%;
    height: 455px;
    color: white;
    background-color: #1f1f1f;
    align-items: center;
    justify-content: center;
}

#takeout-unit {
    opacity: 0;
}

#takeout a {
    display: block;
    margin-top: 25px;
    color: white;
    text-decoration: underline;
    opacity: .5;
    transition: .5s all;
}

@media screen and (min-width: 1025px) {
    #takeout a:hover {
        opacity: 1;
    }
}

#takeout h1,
#takeout a {
    text-align: center;
}

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

/* ----------information---------- */
#information-title {
    opacity: 0;
}

#information h1,
#information h4 {
    text-align: center;
}

#information h4 {
    margin-bottom: 80px;
}

#information-main {
    display: flex;
    justify-content: space-between;
}

#information-lunch-title,
#information-dinner-title,
#information-payment-title,
#information-tel-title {
    display: flex;
    opacity: 0;
}

#information-lunch-title h3,
#information-dinner-title h3,
#information-payment-title h3,
#information-tel-title h3 {
    display: flex;
    align-items: center;
    margin-left: 15px;
}

#information-lunch p,
#information-dinner p,
#information-tel p {
    margin-top: 30px;
    padding-left: 25px;
}

#information-dinner {
    margin-top: 110px;
}

#information-payment ul {
    margin-top: 30px;
    flex-direction: column;
    padding-left: 35px;
}

#information-payment li {
    list-style: disc;
}

#information-payment li+li {
    margin-top: 20px;
}

#information-tel {
    margin-top: 70px;
}

#information-lunch p,
#information-dinner p,
#information-payment p,
#information-tel p,
#information-payment ul {
    opacity: 0;
}

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

/* ----------access---------- */
#access-title {
    opacity: 0;
}

#access h1,
#access h4 {
    text-align: center;
}

#access h4 {
    margin-bottom: 100px;
}

#access iframe {
    width: 100%;
    height: 400px;
    margin-bottom: 300px;
    opacity: 0;
}

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

/* =======================
concept.html
============================================ */


/* ----------header---------- */
#concept-header {
    background-image: url(images/concept.jpg);
}

/* -------------------------- */
/* ----concept-important---- */
#concept-important h1,
#concept-important h2,
#concept-important h3 {
    text-align: center;
}

#concept-important h1 {
    margin-bottom: 120px;
    opacity: 0;
}

#concept-important h2 {
    font-size: 40px;
    margin-bottom: 40px;
}

#concept-container {
    margin-bottom: 150px;
    opacity: 0;
}

#concept-feature {
    margin-bottom: 200px;
    box-sizing: border-box;
    opacity: 0;
}

#concept-feature p {
    padding: 100px 60px;
    border: 1px solid #1f1f1f;

}

#concept-feature p+p {
    display: none;

}

#concept-important h3 {
    width: fit-content;
    margin: 0 auto;
    padding: 16px 18px;
    border: 1px solid #1f1f1f;
    font-size: 24px;
    position: relative;
    top: 35px;
    background-color: white;
}

#concept-important p {
    width: 80%;
    margin: 0 auto;
    line-height: 2rem;
}


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

/* ============================================*/

/* =======================
lunch.html
============================================ */


/* ----------header---------- */
#lunch-header-top {
    height: 100vh;
    display: flex;
    justify-content: space-between;
}

#lunch-header-top-left {
    display: table;
}

#lunch-header-top-left h1 {
    display: table-cell;
    vertical-align: middle;
    padding-left: 50px;
}

#lunch-header-top-right {
    display: table;
}

#lunch-header-top-right div {
    display: table-cell;
    vertical-align: middle;
}

#lunch-header-top-right img {
    width: 100%;
}

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

/* ----------lunch-course---------- */
#lunch-unit {
    opacity: 0;
}

#lunch-course h1 {
    text-align: center;
    margin-block: 40px;
}

#lunch-course-description {
    width: 80%;
    margin: 0 auto 130px;
    line-height: 2rem;
}

#lunch-course-table {
    width: 80%;
    margin: 0 auto 200px;
    display: flex;
    opacity: 0;
}

#regular,
#special {
    width: 50%;
    border: 1px solid #1f1f1f;
}

#regular h2,
#special h2 {
    margin-top: 30px;
    font-size: 45px;
}

#special {
    color: white;
    background-color: #1f1f1f;
}

#special h2 {
    text-align: right;
}

.price {
    width: 90%;
    margin: 75px auto;
    border-bottom: 1px solid #1f1f1f;
}

.price p {
    text-align: center;
    padding-bottom: 20px;
    font-size: 40px;
}

#special .price {
    border-bottom: 1px solid white;
}

.menu dl {
    display: flex;
    justify-content: center;
}

.menu h3 {
    font-size: 25px;
}

.menu dl:last-child {
    margin-bottom: 75px;
}

.menu dl+dl {
    margin-top: 25px;
}

.menu dd {
    margin-left: 25px;
    display: flex;
    align-items: end;
}

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

/* ----------images---------- */
#images {
    margin-bottom: 200px;
}

#images h1 {
    text-align: center;
    opacity: 0;
}

#images h2 {
    margin-top: 130px;
    font-size: 35px;
}

#images p {
    margin-top: 40px;
    line-height: 2rem;
}

#images img {
    width: 100%;
}

#images-top,
#images-center,
#images-bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

#images-top div,
#images-center div,
#images-bottom div {
    opacity: 0;
}

#images-top {
    margin-top: 220px;
}

#images-center,
#images-bottom {
    margin-top: 100px;
}

#images-top-left,
#images-center-right,
#images-bottom-left {
    width: 50%;
}

#images-top-right,
#images-center-left,
#images-bottom-right {
    width: 40%;
}

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

/* ============================================*/

/* =======================
dinner.html
============================================ */


/* ----------header---------- */
#dinner-header {
    background-color: #1f1f1f;
}

#dinner-header-top {
    height: 100vh;
    display: flex;
    justify-content: space-between;
}

#dinner-header-top-left {
    display: table;
}

#dinner-header-top-left h1 {
    display: table-cell;
    vertical-align: middle;
    padding-left: 50px;
    color: white;
}

#dinner-header-top-right {
    display: table;
}

#dinner-header-top-right div {
    display: table-cell;
    vertical-align: middle;
}

#dinner-header-top-right img {
    width: 100%;
}

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

/* ----------dinner-course---------- */
#dinner-unit {
    opacity: 0;
}

#dinner-course h1 {
    text-align: center;
    margin-top: 100px;
    margin-bottom: 40px;
}

#dinner-course-description {
    width: 80%;
    margin: 0 auto 130px;
    line-height: 2rem;
}

#dinner-course-table {
    width: 80%;
    margin: 0 auto 200px;
    display: flex;
    opacity: 0;
}

/* -----------------------------top
/* ============================================*/

/* =======================
locale.html
============================================ */


/* ----------header---------- */
#locale-header {
    background-image: url(images/local-top.jpg);
}

#locale-header h1 {
    text-align: center;
    padding-top: 500px;
    color: white;
}

/* -------------------------- */
/* ----locale-important---- */
#locale-important h2 {
    text-align: center;
    font-size: 40px;
    margin-top: 100px;
    margin-bottom: 40px;
}

#locale-important-container {
    margin-bottom: 150px;
    opacity: 0;
}

#locale-important p {
    width: 80%;
    margin: 0 auto;
    line-height: 2rem;
}

/* -------------------------- */
/* ----locale-snap---- */
#locale-snap {
    margin-bottom: 200px;
    display: grid;
    gap: 10px;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
}

#locale-snap img {
    width: 100%;
    order: 1;
}


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

/* ============================================*/

/* =======================
contact.html
============================================ */


/* ----------header---------- */

#contact-header {
    height: fit-content;
}

#contact-header h1,
#contact-header h4 {
    text-align: center;
}

#contact-header h1 {
    padding-top: 300px;
}

#contact-header h4 {
    margin-bottom: 230px;
}

/* -------------------------- */
/* ----------contact---------- */
#contact {
    padding-inline: 45px;
    box-sizing: border-box;
    margin-bottom: 200px;
}

/* +++++++++++++++++++++++++++++++
        contact form 7
++++++++++++++++++++++++++++++++++*/
.cf7__list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.cf7__list dt:nth-of-type(n + 2),
.cf7__list dd:nth-of-type(n + 2) {
    margin-top: 30px;
}

.cf7__list dt {
    width: 35%;
    padding-top: 15px;
}

.cf7__list dd {
    width: 65%;
}

/* 必須・任意 */
.cf7__required,
.cf7__optional {
    margin-right: 15px;
    padding: 6px 14px;
    color: #fff;
    font-size: 12px;
    vertical-align: 1px;
}

.cf7__required {
    background: #BE1D1D;
}

.cf7__optional {
    background: #878D8E;
}

/* input・textarea */
.cf7__list dd input[type="text"],
.cf7__list dd input[type="tel"],
.cf7__list dd input[type="email"],
.cf7__list dd textarea {
    width: 100%;
    padding: 15px 20px;
    background: #F4F4F4;
}

/* プレースホルダー */
/* Google Chrome / Safari / Mozilla Firefox / Opera */
.cf7__list dd input[type="text"]::placeholder,
.cf7__list dd input[type="tel"]::placeholder,
.cf7__list dd input[type="email"]::placeholder,
.cf7__list dd textarea::placeholder {
    color: #a5a5a5;
}

/* Microsoft Edge */
.cf7__list dd input[type="text"]::-ms-input-placeholder,
.cf7__list dd input[type="tel"]::-ms-input-placeholder,
.cf7__list dd input[type="email"]::-ms-input-placeholder,
.cf7__list dd textarea::-ms-input-placeholder {
    color: #a5a5a5;
}

/* Internet Explorer */
.cf7__list dd input[type="text"]:-ms-input-placeholder,
.cf7__list dd input[type="tel"]:-ms-input-placeholder,
.cf7__list dd input[type="email"]:-ms-input-placeholder,
.cf7__list dd textarea:-ms-input-placeholder {
    color: #a5a5a5;
}

.personal-information {
    width: 100%;
    padding: 30px 60px;
    box-sizing: border-box;
    background-color: #D9D9D9;
}

.personal-information h2 {
    font-size: 25px;
}

.personal-information p {
    margin-top: 20px;
    font-size: 16px;
}

/* 同意チェックボックス */
.consent {
    width: fit-content;
    margin: 5px auto 140px;
}

/* 送信ボタン */
.cf7__button {
    width: fit-content;
    margin: 0 auto;
    padding-left: 72px;
    text-align: center;
}

input[type="submit"] {
    width: 260px;
    height: 60px;
    background: #1f1f1f;
    color: #fff;
    transition: .5s all;
}

/* ajax-loader */
.wpcf7-spinner {
    vertical-align: middle;
}

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

    .cf7__list dt {
        width: 100%;
        margin-bottom: 15px;
        padding-top: 0;
    }

    .cf7__list dd {
        width: 100%;
    }

    .cf7__list dd:nth-of-type(n + 2) {
        margin-top: 0;
    }

    .cf7__list dd .wpcf7-checkbox,
    .cf7__list dd .wpcf7-radio {
        padding: 15px 0 0;
    }

    /* 送信ボタン */
    input[type="submit"] {
        width: 180px;
        height: 56px;
    }

}

/* ++++++++++++++++++++++++++++++ */


/* -------------------------- */
/* ============================================*/
/* =======================
reservation.html
============================================ */


/* ----------header---------- */
#reservation-header {
    height: auto;
    background-color: #1f1f1f;
}

#reservation-header h1,
#reservation-header h4 {
    text-align: center;
    color: white;
}

#reservation-header h1 {
    padding-top: 300px;
}

#reservation-header h4 {
    padding-bottom: 100px;
}

#reservation-header #reservation {
    display: none;
}

/* -------------------------- */
/* ----------reservation-important---------- */
#reservation-important {
    width: 100%;
    background-color: #1f1f1f;
}

#reservation-important iframe {
    opacity: 1;
    margin-bottom: 200px;
}

/* ------------------------------------------ */
/* ============================================*/

/* +++++++++++++++++++++ DT ++++++++++++++++++++++ */
@media screen and (max-width:1536px) {

    /* =======================
    index.html
    ============================================ */
    #bg-wh,
    #bg-bk {
        width: 50%;
    }

    /* =======================
    lunch.html
    ============================================ */
    #lunch-header-top-right,
    #right-header-top-right {
        margin-left: 30px;
    }
}

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

    #bg-wh,
    #bg-bk {
        width: 56%;
    }
}

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

    #bg-wh,
    #bg-bk {
        width: 60%;
    }

    /* ----------header---------- */
    #header ul li+li {
        margin-left: 30px;
    }

    #header ul li+li:last-child {
        margin-left: 45px;
    }

    /* ----------footer---------- */
    footer img:first-child {
        width: 300px;
    }

    footer ul {
        flex-direction: column;
    }

    footer ul li+li {
        margin-left: 0;
        margin-top: 20px;
    }

    /* --------------------------- */
}

/* +++++++++++++++++++++ TB ++++++++++++++++++++++ */
@media screen and (max-width:1024px) {

    .inner {
        width: 90%;
    }

    h1 {
        font-size: 50px;
    }

    ul a {
        font-size: 13px;
    }

    .title {
        margin-bottom: 80px;
    }

    .fa-square-facebook,
    .fa-instagram {
        font-size: 25px;
    }

    /* ----------header---------- */
    #index-header {
        background-image: url(images/header-tb.jpg);
    }

    #header.inner {
        width: 100%;
    }

    #header {
        inset: 0 0 94%;
    }

    #header img {
        max-width: 170px;
    }

    #header nav {
        align-items: baseline;
    }

    #header ul li+li:last-child {
        margin-left: 40px;
        transform: translateY(5px);
    }

    #sns a+a {
        margin-left: 10px;
    }

    /* -------------------------- */
    /* ----------footer---------- */
    footer img {
        width: 270px;
    }

    /* -------------------------- */
    /* ----------access---------- */
    #access iframe {
        height: 500px;
    }

    /* -------------------------- */
    /* =======================
    index.html
    ============================================ */
    /* ----------lunch---------- */
    #lunch-top-left {
        width: 65%;
    }

    #lunch-top-left img {
        width: 100%;
    }

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

    /* ----------dinner---------- */
    #dinner {
        background-image: url(images/dinner-tb.jpg);
    }

    #bg-wh {
        width: 55%;
    }

    /* -------------------------- */
    /* ----------locale---------- */
    #bg-bk {
        width: 55%;
    }

    /* -------------------------- */
    /* ----------takeout---------- */
    #takeout {
        height: 300px;
    }

    /* -------------------------- */
    /* ----------information---------- */
    #information.inner {
        width: 78%;
    }

    /* -------------------------- */
    /* =======================
    concept.html
    ============================================ */
    /* ----------header---------- */
    #concept-header {
        background-image: url(images/concept-tb.jpg);
        height: 65vh;
    }

    /* -------------------------- */
    /* =======================
    dinner.html
    ============================================ */
    /* ----------header---------- */
    #dinner-header-top-left h1 {
        padding-left: 70px;
    }

    /* -------------------------- */
    /* =======================
    locale.html
    ============================================ */
    /* ----------header---------- */
    #locale-header {
        background-image: url(images/local-top-tb.jpg);
    }

    #locale-header h1 {
        padding-top: 900px;
        font-size: 75px;
    }

    /* -------------------------- */
}

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

    h1 {
        font-size: 45px;
    }

    /* ----------access---------- */
    #access iframe {
        height: 350px;
    }

    /* -------------------------- */
    /* ----------footer---------- */
    footer img {
        width: 250px;
    }

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

    /* =======================
    index.html
    ============================================ */
    #lunch-top-container,
    #bg-wh,
    #bg-bk {
        width: fit-content;
        margin: 0 auto;
        text-align: center;
    }

    #lunch .title,
    #dinner .title,
    #locale .title {
        width: fit-content;
        margin: 0 auto 80px;
    }


    /* ----------lunch---------- */
    #lunch-top {
        flex-direction: column;
    }

    #lunch-top-left {
        width: fit-content;
        margin: 0 auto;
    }


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

    /* ----------dinner---------- */
    #dinner {
        margin-bottom: 200px;
    }

    #bg-wh {
        width: 68%;
        transform: translateY(50px);
    }

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

    /* ----------locale---------- */
    #bg-bk {
        width: 69%;
    }

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


    /* ----------information---------- */
    #information-right {
        margin-left: 120px;
    }

    /* -------------------------- */
    /* =======================
    lunch.html
    ============================================ */
    /* ----------header---------- */
    #lunch-header {
        height: 65vh;
    }

    #lunch-header-top {
        height: 73vh;
    }

    /* -------------------------- */
    /* ----------lunch-course---------- */
    #lunch-course-table {
        width: 90%;
    }

    /* -------------------------------- */
    /* ----------images---------- */
    #images h2 {
        margin-top: 0;
    }

    #images img {
        width: 90%;
    }

    /* -------------------------------- */
    /* =======================
    dinner.html
    ============================================ */


    /* ----------header---------- */
    #dinner-header {
        height: 65vh;
    }

    #dinner-header-top {
        height: 73vh;
    }

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

    /* ----------dinner-course---------- */
    #dinner-course-table {
        width: 90%;
    }

    /* ----------------------------- */
    /* ============================================*/
    /* =======================
    locale.html
    ============================================ */
    #locale-header h1 {
        padding-top: 485px;
    }
}

@media screen and (max-width:768px) {
    .no_scroll {
        overflow: hidden;
    }

    .fa-square-facebook,
    .fa-instagram {
        font-size: 35px;
    }

    .ornement img {
        width: 150px;
    }

    /* ----------header---------- */
    .hamburger {
        display: block;
    }

    #header {
        inset: 0 0 92%;
    }

    #header ul {
        padding-left: 40px;
    }

    #header ul li {
        display: flex;
    }

    #header ul li+li {
        margin-left: 0;
        margin-top: 10px;
    }

    #header ul li+li:last-child {
        margin-left: 3px;
    }

    /* -------------------------- */
    /* ----------footer---------- */
    footer img {
        width: 230px;
    }

    /* -------------------------- */
    /* +++++++++++++++++++++++
    hamburger-menu
    +++++++++++++++++++++++++ */
    .hamburger {
        display: block;
    }

    .drawer-list {
        position: fixed;
        right: 0;
        top: -7px;
        height: 100vh;
        width: 100vw;
        transform: translate(100vw, 0);
        -ms-transform: translatex(-100vw);
        box-sizing: border-box;
        pointer-events: none;
        padding-top: 125px;
        transition: width 475ms ease-out, transform 450ms ease, border-radius .8s .1s ease;
        border-bottom-left-radius: 100vw;
        background-color: white;
    }

    .drawer-list {
        width: 35vw;
        box-shadow: 0px 7px 10px -5px #1f1f1f;
    }

    .shadow-change {
        box-shadow: -2px 0px 10px -5px #1f1f1f;
    }

    .drawer-list ul {
        flex-direction: column;
        height: 100%;
        width: 100%;
        margin: 0;
        padding: 0;
        overflow: auto;
        overflow-x: hidden;
        pointer-events: auto;
    }

    .drawer-list li {
        list-style: none;
        text-transform: uppercase;
        pointer-events: auto;
        white-space: nowrap;
        box-sizing: border-box;
        transform: translatex(100vw);
        -ms-transform: translatex(-100vw);
    }

    .drawer-list li:last-child {
        margin-bottom: 2em;
    }

    .drawer-list li a {
        text-decoration: none;
        color: #1f1f1f;
        text-align: center;
        display: block;
        padding: 1rem;
        font-size: calc(24px - .5vw);
    }

    @media (min-width: 768px) {
        .drawer-list li a {
            text-align: right;
            padding: .5rem;
        }
    }

    input.hamburger {
        display: none;
    }

    input.hamburger:checked~.drawer-list {
        transform: translatex(0);
        border-bottom-left-radius: 0;
    }

    input.hamburger:checked~.drawer-list li {
        transform: translatex(0);
    }

    input.hamburger:checked~.drawer-list li:nth-child(1) {
        transition: transform 1s 0.08s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(2) {
        transition: transform 1s 0.16s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(3) {
        transition: transform 1s 0.24s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(4) {
        transition: transform 1s 0.32s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(5) {
        transition: transform 1s 0.4s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(6) {
        transition: transform 1s 0.48s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(7) {
        transition: transform 1s 0.56s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(8) {
        transition: transform 1s 0.64s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(9) {
        transition: transform 1s 0.72s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(10) {
        transition: transform 1s 0.8s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(11) {
        transition: transform 1s 0.88s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(12) {
        transition: transform 1s 0.96s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(13) {
        transition: transform 1s 1.04s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(14) {
        transition: transform 1s 1.12s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(15) {
        transition: transform 1s 1.2s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(16) {
        transition: transform 1s 1.28s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(17) {
        transition: transform 1s 1.36s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(18) {
        transition: transform 1s 1.44s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(19) {
        transition: transform 1s 1.52s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(20) {
        transition: transform 1s 1.6s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(21) {
        transition: transform 1s 1.68s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(22) {
        transition: transform 1s 1.76s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(23) {
        transition: transform 1s 1.84s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(24) {
        transition: transform 1s 1.92s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(25) {
        transition: transform 1s 2s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(26) {
        transition: transform 1s 2.08s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(27) {
        transition: transform 1s 2.16s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(28) {
        transition: transform 1s 2.24s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(29) {
        transition: transform 1s 2.32s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(30) {
        transition: transform 1s 2.4s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(31) {
        transition: transform 1s 2.48s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(32) {
        transition: transform 1s 2.56s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(33) {
        transition: transform 1s 2.64s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(34) {
        transition: transform 1s 2.72s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(35) {
        transition: transform 1s 2.8s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(36) {
        transition: transform 1s 2.88s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(37) {
        transition: transform 1s 2.96s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(38) {
        transition: transform 1s 3.04s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(39) {
        transition: transform 1s 3.12s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(40) {
        transition: transform 1s 3.2s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(41) {
        transition: transform 1s 3.28s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(42) {
        transition: transform 1s 3.36s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(43) {
        transition: transform 1s 3.44s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(44) {
        transition: transform 1s 3.52s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(45) {
        transition: transform 1s 3.6s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(46) {
        transition: transform 1s 3.68s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(47) {
        transition: transform 1s 3.76s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(48) {
        transition: transform 1s 3.84s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(49) {
        transition: transform 1s 3.92s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li:nth-child(50) {
        transition: transform 1s 4s cubic-bezier(0.29, 1.4, 0.44, 0.96);
    }

    input.hamburger:checked~.drawer-list li a {
        padding-right: 15px;
    }

    input.hamburger:checked~label>i {
        background-color: transparent;
        transform: rotate(90deg);
    }

    input.hamburger:checked~label>i:before {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    input.hamburger:checked~label>i:after {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    label.hamburger {
        z-index: 9999;
        position: relative;
        display: block;
        height: 50px;
        width: 50px;
    }

    label.hamburger:hover {
        cursor: pointer;
    }


    label.hamburger>i {
        position: absolute;
        width: 72%;
        height: 2px;
        top: 50%;
        background-color: #1f1f1f;
        pointer-events: auto;
        transition-duration: .35s;
        transition-delay: .35s;
    }

    label.hamburger>i:before,
    label.hamburger>i:after {
        position: absolute;
        display: block;
        width: 100%;
        height: 2px;
        left: 50%;
        background-color: #1f1f1f;
        content: "";
        transition: transform 0.35s;
        transform-origin: 50% 50%;
    }

    label.hamburger>i:before {
        transform: translate(-50%, -9px);
    }

    label.hamburger>i:after {
        transform: translate(-50%, 9px);
    }

    label.hamburger {
        position: fixed;
        top: 20px;
        right: 11px;
    }

    /* ++++++++++++++++++++++ */
    /* ----------lunch---------- */
    #lunch-header-top-left h1 {
        padding-left: 25px;
    }

    #lunch-top-left img {
        margin-left: 0;
    }

    /* -------------------------- */
    /* ----------dinner---------- */
    #bg-wh {
        width: 72%;
    }

    /* -------------------------- */
    /* ----------locale---------- */
    #bg-bk {
        width: 72%;
    }

    #locale-snap {
        grid-template-rows: 1fr;
        grid-template-columns: 1fr;
    }

    #locale-snap img {
        height: 400px;
        object-fit: cover;
    }

    /* --------------------------- */
}


/* +++++++++++++++++++++ SP ++++++++++++++++++++++ */
@media screen and (max-width:430px) {

    h1 {
        font-size: 35px;
    }

    h4 {
        font-size: 11px;
    }

    p {
        font-size: 13px;
    }

    .discription,
    .discription-en {
        width: auto;
    }

    .ornement {
        transform: translateY(100px);
    }

    .ornement img {
        width: 100px;
    }

    #lunch-ornement {
        margin-top: 0;
    }

    .btn {
        padding: 8px 35px;
    }

    .btn span {
        font-size: 13px;
    }

    #bg-wh,
    #bg-bk {
        width: 100%;
        height: 550px;
    }

    /* ----------header---------- */
    #header {
        transform: translateY(-1px);
    }

    #index-header {
        background-image: url(images/header-sp.jpg);
    }

    #logo {
        display: block;
    }

    #header img {
        max-width: 130px;
        translate: 0 1px;
    }

    #sns a+a {
        margin-left: -15px;
    }

    .fa-arrow-up {
        font-size: 30px;
        right: 30px;
    }

    /* --------------------------- */
    /* ----------footer---------- */
    footer img {
        width: 195px;
        margin-bottom: 50px;
    }

    footer img:first-child {
        width: 160px;
    }


    /* -------------------------- */
    /* +++++++++++++++++++++++
        hamburger-menu
    +++++++++++++++++++++++++ */
    label.hamburger {
        width: 40px;
        height: 40px;
        top: 12px;
    }

    .drawer-list {
        width: 55vw;
        height: 101vh;
    }

    .drawer-list li a {
        font-size: calc(20px - .5vw);
    }

    /* ++++++++++++++++++++++ */

    /* =======================
    index.html
    ============================================ */

    /* ----------concept---------- */
    #concept .title {
        padding-bottom: 30px;
    }

    /* -------------------------- */
    /* ----------lunch---------- */
    #lunch-top-left {
        width: 300px;
    }


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

    /* ----------dinner---------- */
    #dinner {
        margin-bottom: 100px;
    }

    /* -------------------------- */
    /* ----------takeout---------- */
    #takeout {
        height: 165px;
    }

    #takeout a {
        margin-top: 15px;
        font-size: 13px;
    }

    /* -------------------------- */
    /* ----------information---------- */
    #information-main {
        flex-direction: column;
    }

    #information-dinner,
    #information-tel {
        margin-top: 50px;
    }

    #information-right {
        margin-left: 0;
        margin-top: 50px;
    }

    /* --------------------------- */
    /* ----------access---------- */
    #access iframe {
        height: 200px;
        margin-bottom: 150px;
    }

    /* -------------------------- */
    /* =======================
    concept.html
    ============================================ */
    #concept-important h2 {
        font-size: 30px;
    }

    #concept-important p {
        width: 90%;
        line-height: 1.5rem;
    }

    #concept-feature p {
        padding: 75px 35px;

    }

    /* =======================
    lunch.html
    /*============================================ */
    /* ----------header---------- */
    #lunch-header {
        height: 85vh;
    }

    #lunch-header-top {
        flex-direction: column;
        transform: translateY(140px);
        justify-content: normal;
    }

    #lunch-header-top-left h1 {
        display: block;
        width: fit-content;
        margin: 0 auto 50px;
        padding-left: 0;
    }

    #lunch-header-top-right {
        display: block;
        width: 80%;
        margin: 0 auto;
    }

    /* -------------------------- */
    /* ----------lunch-course---------- */
    #lunch-course-description {
        line-height: 1.5rem;
    }

    #lunch-course-table {
        flex-direction: column;
    }

    #regular,
    #special {
        width: 100%;
    }

    #regular h2,
    #special h2 {
        font-size: 35px;
    }

    .price p {
        font-size: 30px;
    }

    /* -------------------------------- */
    /* ----------images---------- */
    #images h2 {
        font-size: 30px;
    }

    #images p {
        line-height: 1.5rem;
    }

    #images-top {
        margin-top: 100px;
    }

    #images-top,
    #images-center,
    #images-bottom {
        flex-direction: column;
    }

    #images-center {
        flex-direction: column-reverse;
    }

    #images-top-left,
    #images-center-right,
    #images-bottom-left {
        width: 80%;
        margin: 0 auto;
    }

    #images img {
        width: 100%;
    }


    #images-top-right,
    #images-center-left,
    #images-bottom-right {
        width: 90%;
        margin: 20px auto 0;
    }

    /* =======================
    dinner.html
    ============================================ */
    /* ----------header---------- */
    #dinner-header {
        height: 85vh;
    }

    #dinner-header-top {
        flex-direction: column;
        transform: translateY(140px);
        justify-content: normal;
    }

    #dinner-header-top-left h1 {
        display: block;
        width: fit-content;
        margin: 0 auto 50px;
        padding-left: 0;
    }

    #dinner-header-top-right {
        display: block;
        width: 80%;
        margin: 0 auto;
    }

    /* -------------------------- */
    /* ----------lunch-course---------- */
    #dinner-course-table {
        flex-direction: column;
    }

    /* -------------------------------- */
    /* =======================
    locale.html
    ============================================ */
    #locale-header h1 {
        font-size: 50px;
    }

    #locale-important p {
        line-height: 1.5rem;
    }

    #locale-snap img {
        height: 200px;
    }

    /* =======================
    contact.html
    ============================================ */
    /* ----------contact---------- */
    #contact {
        padding-inline: 0;
    }

    /* +++++++++++++++++++++++++++++++
            contact form 7
    ++++++++++++++++++++++++++++++++++*/
    .consent {
        width: fit-content;
        margin: 5px auto 100px;
    }

    .personal-information {
        padding: 30px;
    }

    /* ++++++++++++++++++++++++++++++ */
    /* =======================
    reservation.html
    ============================================ */
    /* ----------reservation-important---------- */
    #reservation-important iframe {
        min-width: 95% !important;
        margin: 0 auto 200px;
    }

    /* ------------------------------------------ */
    /* ============================================*/
}

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

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 13px;
    }

    .menu h3 {
        font-size: 20px;
    }

    .menu dd {
        font-size: 13px;
    }

    #images h2 {
        font-size: 25px;
    }

    /* ----------header---------- */
    #header img {
        max-width: 125px;
        translate: 0 -5px;
    }


    #reservation {
        letter-spacing: .5rem;
        font-size: 13px;
    }

    /* -------------------------- */
    /* ----------footer---------- */
    footer img:first-child {
        width: 150px;
    }

    /* --------------------------- */
    /* +++++++++++++++++++++++
        hamburger-menu
    +++++++++++++++++++++++++ */
    label.hamburger {
        top: 10px;
        right: 7px;
    }

    label.hamburger>i {
        width: 60%;
    }

    label.hamburger>i:before {
        transform: translate(-50%, -8px);
    }

    label.hamburger>i:after {
        transform: translate(-50%, 8px);
    }


    .drawer-list li a {
        font-size: calc(18px - .5vw);
    }

    /* ++++++++++++++++++++++ */
    /* =======================
        concept.html
    ============================================ */
    #concept-important h3 {
        font-size: 20px;
    }

    /* =======================
        locale.html
    ============================================ */
    #locale-header h1 {
        font-size: 45px;
        padding-top: 415px;
    }

    #locale-important h2 {
        font-size: 35px;
    }

    /* =======================
        contact.html
    ============================================ */
    /* +++++++++++++++++++++++++++++++
        contact form 7
    ++++++++++++++++++++++++++++++++++*/
    .personal-information h2 {
        font-size: 20px;
    }

    .personal-information p {
        font-size: 13px;
    }

    /* ++++++++++++++++++++++++++++++*/
}

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

    .price p {
        font-size: 25px;
    }

    /* ----------footer---------- */
    footer img:first-child {
        width: 140px;
    }

    /* --------------------------- */
    /* +++++++++++++++++++++++
        hamburger-menu
    +++++++++++++++++++++++++ */
    label.hamburger {
        top: 7px;
    }

    /* ++++++++++++++++++++++ */
}