@charset "UTF-8";
/* CSS Document */

* {
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    color: #0d0d0d;
    font-size: 1.6rem;
    /*
  font-family: 'Source Serif Pro', serif;*/
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    letter-spacing: 0.05em;
}

.s {
    font-family: 'Source Sans Pro';
}

.shop-name {
    font-family: 'Source Serif Pro';
}

img {
    max-width: 100%;
    height: auto;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #0d0d0d;
}

.cotomioshie-color {
    color: plum;
}

.text-weight {
    font-weight: bold;
}

.cotomioshie-color:hover {
    color: gainsboro;
}

dd {
    margin: 0;
    padding: 0;
}

h1 {
    z-index: 888;

}

.text-center {
    text-align: center;
}

.flex {
    display: flex;
}

/*------------------------------------------------------
header
------------------------------------------------------------*/
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #fff;
    z-index: 100;
    transition: 3s;
}

.logotop {
    position: absolute;
    width: 120px;
    height: 120px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.header-change {
    background-color: #fff;
    position: fixed;
    width: 100%;
    height: 80px;
    top: -120px;
    transition: 1s;
    z-index: 30;
    box-shadow: 3px 0 6px rgba(0, 0, 0, 0.3);
}

.header-change.show {
    top: 0;
}

.header-change .header {
    height: 60px;
}

.header-change .logotop {
    position: absolute;
    padding: 0;
    margin: 0;
    width: 90px;
    height: 90px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    transition: 1.5s;
}

.header-navi {
    position: relative;
    max-width: 70%;
    margin: 0 auto;
}

.header-navi ul {
    line-height: 100px;
    display: flex;
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

.header-navi ul li {
    margin: 0;
    flex-basis: 10%;
    font-family: 'Source Serif Pro';
    text-transform: uppercase;
}

.header-navi ul li:nth-child(3) {
    margin-right: 15%;
}

.header-navi ul li:nth-child(4) {
    margin-left: 15%;
}

.header-navi ul li:nth-child(1) {
    flex-basis: 10%;
}

.header-navi ul li:nth-child(2) {
    flex-basis: 12%;
}

.header-navi ul li:nth-child(3) {
    flex-basis: 13%;
}

.header-navi ul li:nth-child(4) {
    flex-basis: 10%;
}

.header-navi ul li:nth-child(5) {
    flex-basis: 11%;
}

.header-navi ul li:nth-child(6) {
    flex-basis: 12%;
}

.header-change .header-navi {
    position: relative;
    max-width: 70%;
    margin: 0 auto;
}

.header-change .header-navi ul {
    line-height: 80px;
}


.header-navi ul li a {
    position: relative;
}

.header-navi ul li a::after {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #333;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
}

.header-navi ul li a:hover:after {
    transform: scale(1, 1);
}

.header-navi2 ul li a {
    position: relative;
}

.header-navi2 ul li a::after {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #333;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
}

.header-navi2 ul li a:hover:after {
    transform: scale(1, 1);
}


/*------------------------------------------
ハンバーガーメニュー
-----------------*/

.globalMenuSp {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    background: #fff;
    color: #000;
    text-align: left;
    transform: translateX(-100%);
    transition: all 0.6s;
    width: 100%;
    height: 100vh;
}

.globalMenuSp ul {
    background: #fff;
    margin: 0 auto;
    width: 100%;
    height: 100vh;
    padding: 120px 0 0 60px;

}

.globalMenuSp ul li {
    font-size: 3.2rem;
    list-style-type: none;
    padding: 0;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-family: 'Source Serif Pro';
}

.sp-maps {
    text-transform: none;
    font-size: 2.4rem;
}

.globalMenuSp ul li a {
    position: relative;
}

.globalMenuSp ul li a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #333;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
}

.globalMenuSp ul li a:hover:after {
    transform: scale(1, 1);
}

.nav-sns li a::after {
    position: relative !important;
}

.sp-maps::after {
    position: relative !important;
}

.sp-maps:hover {
    opacity: 0.7;
    transition: 0.3s;
}

.sp-maps span {
    display: inline-block;
    margin-left: 8px;
    text-decoration: underline;
}

.globalMenuSp.active {
    transform: translateY(0%);
}


.navToggle {
    display: none;
    position: fixed;
    left: 23px;
    top: 22px;
    width: 58px;
    height: 58px;
    cursor: pointer;
    z-index: 3;
    background: #000;
    text-align: center;
}

.navToggle span {
    display: block;
    position: absolute;
    width: 32px;
    border-bottom: solid 2px #fff;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 13px;
}



.navToggle span:nth-child(1) {
    top: 16px;
}

.navToggle span:nth-child(2) {
    top: 27px;
}

.navToggle span:nth-child(3) {
    border: none;
    color: #fff;
    font-size: 0.9rem;
    top: 38px;
    text-transform: uppercase;
}



.navToggle.active span:nth-child(1) {
    top: 20px;
    left: 12px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.navToggle.active span:nth-child(2) {
    top: 21px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}


.navToggle.active span:nth-child(3) {
    content: "close";
    left: 11px;
}


/*------------------------------------------
haeder-nav-sp
-----------------*/

.nav-logot-sp {
    margin: 20px auto 60px;
    width: 120px;
    height: 120px;
}

.nav-list_sp {
    text-align: center;
    text-transform: uppercase;
    font-family: 'Source Serif Pro';
    font-size: 3.2rem;
}

.nav-list_sp li {
    margin-bottom: 30px;
}

.nav-line {
    width: 30%;
    height: 3px;
    border: none;
    margin: 60px auto;
    background-color: #0d0d0d;
}

.nav-sns {
    display: flex;
}

.nav-sns li:first-of-type {
    margin-right: 30px;
}

.nav-sns li {
    margin-bottom: 0;
}

.nav-sp-line {
    height: 2px;
    background-color: #0d0d0d;
    border: none;
    width: 60%;
    margin: 48px 0 48px;
}

.nav-sp-line2 {
    height: 2px;
    background-color: #0d0d0d;
    border: none;
    width: 60%;
    margin: 0 0 48px;
}

.is-active {
    pointer-events: auto;
    opacity: 1;
    transform: scale(1.0);
    z-index: 997;
}


/*------------------------------------------
main
-----------------*/
#main {
    margin: 0 80px;
    padding-top: 100px;
    max-width: 1556px;

}

#top-heroimage {
    width: 100%;
    height: calc(100vh - 100px);
    background-position: center;
    background-size: cover;
}

.page-top_name1 {
    font-size: 80px;
    font-family: 'Source Serif Pro';
    color: #f2f2f2;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
}

.page-top_name2 {
    font-size: 24px;
    font-family: 'Source Serif Pro';
    color: #f2f2f2;
    letter-spacing: 0.1em;
}

.pagetop-title {
    width: 100%;
    position: absolute;
    top: 40%;
    text-align: center;
    z-index: 9;
}

.vegas-timer {
    height: 3px;
}

.vegas-timer-progress {
    background-color: #000;
    height: 4px;
}

/*--------------------------------------------------------
concept~contact-[hero-images]
---------------------------*/
#top-heroimage.hero-images2 {
    position: relative;
    background: url("../images/concept/logocup3.jpg")no-repeat;
    width: 100%;
    height: calc(80vh - 100px);
    background-position: center;
    background-size: cover;
}

#top-heroimage.hero-images3 {
    position: relative;
    background: url("../images/example/page-top_example.jpg")no-repeat;
    width: 100%;
    height: calc(80vh - 100px);
    background-position: center;
    background-size: cover;
}

#top-heroimage.hero-images4 {
    position: relative;
    background: url("../images/menu/logocard.jpg")no-repeat;
    width: 100%;
    height: calc(80vh - 100px);
    background-position: center;
    background-size: cover;
}

#top-heroimage.hero-images5 {
    position: relative;
    background: url("../images/news/page-top_news.jpg")no-repeat;
    width: 100%;
    height: calc(80vh - 100px);
    background-position: center;
    background-size: cover;
}

#top-heroimage.hero-images6 {
    position: relative;
    width: 100%;
    height: calc(60vh - 100px);
    background-position: center;
    background-size: cover;
}

.pagetop-title2 {
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
}

.pagetop-title2 h2 {
    font-size: 4.8rem;
    color: #f2f2f2;
    letter-spacing: 0.1em;
}

.pagetop-title2 p {
    font-size: 2.4rem;
    color: #f2f2f2;
    margin-top: 30px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
    font-family: 'Source Serif Pro';
}

.pagetop-title6 {
    position: absolute;
    top: 40%;
    width: 100%;
    text-align: center;
}

.pagetop-title6 h2 {
    font-size: 4.8rem;
    color: #0d0d0d;
    letter-spacing: 0.1em;
}

.pagetop-title6 p {
    font-size: 2.4rem;
    color: #0d0d0d;
    margin-top: 30px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
    font-family: 'Source Serif Pro';
}

/*------------------------------------------
main-shutter
-----------------*/
.gg {
    position: absolute;
    z-index: 9999;
    width: 100vw;
    height: 100%;

    background: #fff;
    animation: bgAnime 1s linear 1.8s forwards;
    overflow: hidden;
}

.text {
    text-align: center;
    font-size: 8.0rem;
    color: #000;
    font-family: 'Source Serif Pro';
    font-weight: bold;
    border-bottom: 1px solid #000;
    height: 1.2em;
    line-height: 1.2;
    letter-spacing: 0.1em;
    position: absolute;
    transform: translateY(-70%);
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 7;
    animation: textAnime2 .1s linear 1.5s forwards;
}

.text2 {
    text-align: center;
    font-size: 2.4rem;
    color: #000;
    padding-top: 120px;
    font-family: 'Source Serif Pro';
    height: 1.2em;
    line-height: 1.2;
    letter-spacing: 0.1em;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 7;
    animation: textAnime2 .1s linear 1.5s forwards;
}

.text:after {
    content: "";
    height: 2.0em;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 9;
    animation: textAnime1 1.3s linear forwards;
}

.text2:after {
    content: "";
    height: 1.8em;
    background: #fff;
    position: absolute;
    top: 150px;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 9;
    animation: textAnime1 1.3s linear forwards;
}

@media screen and (max-width:559px) {
    .text {
        font-size: 5.6rem;
    }

    .text2 {
        font-size: 1.8rem;
        padding-top: 80px;
    }

    .text2:after {
        top: 110px;
    }



}

/*keyframe*/

@keyframes textAnime1 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}



@keyframes bgAnime {
    0% {
        transform: translateY(0);
    }

    99% {
        transform: translateY(-100%);
    }

    100% {
        opacity: 0;
        display: none;
        ;
        height: 0;
    }
}

@keyframes gg {
    100% {
        display: none;
        height: 0;
    }
}

/*------------------------------------------
home-[welcome]
-----------------*/
#top-welcome h2 {
    margin: 120px 0 80px;
    font-size: 3.2rem;
    text-transform: uppercase;
    font-family: 'Source Sans Pro'
}

.br-welcome {
    display: none;
}

.title-math1 {
    display: inline-block;
    font-size: 5.6rem;
    margin-right: 20px;
}

.welcome-box {
    background-color: #0d0d0d;
    padding: 80px;
    width: 100%;
    display: flex;
}

.catchcopy {
    color: #f2f2f2;
    font-size: 3.6rem;
    margin-bottom: 60px;
    line-height: 1.5;
    letter-spacing: 0.25em;
    font-weight: bold;
}

.welcome-text {
    color: #f2f2f2;
    font-size: 1.8rem;
    margin-right: 70px;
    margin-bottom: 20px;
    line-height: 2;
    letter-spacing: 0.1em;
}

.flex-cell1 {
    width: 55%;
}

.flex-cell2 {
    width: 45%;
    align-self: flex-end;
}

.img-wrap3.img-animation {
    /*  animation: img-wrap3-p 3s cubic-bezier(.4, 0, .2, 1);*/
}

.img-wrap3 .text-fade {
    animation: img-wrap3-p 3s cubic-bezier(.4, 0, .2, 1);
}

.img-wrap3.img-animation:before {
    animation: img-wrap3-before 3s cubic-bezier(.4, 0, .2, 1) forwards;
    bottom: 0;
    content: '';
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

@keyframes img-wrap3-p {

    0% {
        opacity: 0;
    }

}

@keyframes img-wrap3-before {
    100% {
        transform: translateX(100%);
    }
}

.br-375 {
    display: none;
}

/*-----------------------------------------------------
home-[lunch]
----------------------------------------------------------*/

.img-wrap1 {
    overflow: hidden;
    position: relative;
}

.welcome-lunch {
    position: relative;
    width: 100%;
    padding: 120px 0 0;
    overflow: hidden;
}

.welcome-lunch h3 {
    font-family: 'Source Sans Pro';
    font-size: 4.8rem;
    width: 300px;
    padding: 15px 18px;
    text-transform: uppercase;
    border: 3px solid #000;
    margin: 0 auto;
    color: #0d0d0d;
}

.time {
    text-align: center;
    margin-top: 30px;
    font-weight: 700;
    color: #0d0d0d;
}

.time2 {
    text-align: center;
    margin-top: 30px;
    font-weight: 700;
    color: #fff;
}

.fa-sun {
    display: none;
    position: absolute;
    top: -300px;
    left: -190px;
    font-size: 600px;
    color: #FFFFFF;
    opacity: 0.5;
}

.lunchbox1 {
    margin-top: 120px;
    display: flex;
}

.lunchbox1-left {
    width: 50%;
    padding-left: 13%;
    padding-right: 4%;
}

.lunchbox1-right {
    width: 50%;
}

.lunchbox1-title {
    font-size: 3.0rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    color: #0d0d0d;
    width: 75%;
    padding: 5px;
    line-height: 1.5;
    margin-left: 20px;
}

.lunchbox1-right p {
    padding: 0 0 0 3%;
    margin-top: 40px;
    line-height: 2;
    margin-left: 20px;
    color: #0d0d0d;
}

.lunchbox1-right div img {
    width: 80%;
    margin-left: 10%;
    margin-top: 60px;
}

.lunchbox2-right {
    padding: 10%;
    margin-top: 60px;
}

.lunchbox2 {
    display: flex;
}

/*------------------------------------------------------------
home-[dinner]
-----------------*/
.welcome-dinner {
    position: relative;
    width: 100%;
    background-color: #171a26;
    padding: 120px 0 0;
    overflow: hidden;
}

.welcome-dinner h3 {
    font-family: 'Source Sans Pro';
    font-size: 4.8rem;
    width: 300px;
    padding: 15px 18px;
    text-transform: uppercase;
    border: 3px solid #f2f2f2;
    margin: 0 auto;
    color: #f2f2f2;
}

.fa-moon {
    display: none;
    position: absolute;
    top: -300px;
    left: -190px;
    font-size: 600px;
    color: #C9C9C9;
    opacity: 0.5;
}

.dinnerbox1 {
    margin-top: 120px;
    display: flex;
}

.dinnerbox1-left {
    width: 50%;
    padding: 0 2% 0 10%;
    overflow: hidden;
}

.dinnerbox-title {
    font-size: 3.0rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    width: 100%;
    padding: 5px;
    line-height: 1.5;
    color: #f2f2f2;
}

.dinnerbox1-left p {
    padding: 0 0 0 3%;
    margin-top: 40px;
    line-height: 2;
    color: #f2f2f2;
}

.dinnerbox1-left p img {
    margin-right: 20%;
    margin-top: 30px;
}

.dinnerbox1-right {
    width: 50%;
    padding: 0 10% 0 5%;
}

.dinnerbox2-left {
    width: 50%;
}

.dinnerbox2-right {
    width: 50%;
}

.dinnerbox2-pic1 {
    margin-top: 160px;
    padding: 0;
}

.dinnerbox2 {
    padding-bottom: 60px;
    display: flex;
}

.dinnerbox2-pic1 {
    padding-left: 15%;
    padding-right: 5%;
}

.dinnerbox2-pic2 {
    margin-top: 80px;
    padding: 0 0 10%;
}

.dinnerbox2-pic3 {
    padding: 0 0 0 9%;
    text-align: right;
}

.dinner-img {
    text-align: right;
}

@media screen and (max-width:1200px) {
    .fa-sun {
        position: absolute;
        top: -250px;
        left: -230px;
        font-size: 550px;
    }

    .fa-moon {
        position: absolute;
        top: -250px;
        left: -230px;
        font-size: 550px;
    }
}

/*------------------------------------------
home-[example]
-----------------*/
#top-example {
    padding: 0 60px 120px;
}

#top-example h2 {
    margin: 140px 0 120px;
    font-size: 3.2rem;
    text-transform: uppercase;
    font-family: 'Source Sans Pro'
}

.examplebox-left {
    width: 50%;
    text-align: center;
}

.examplebox-right {
    width: 50%;
}

.example-title {
    font-size: 4.8rem;
    font-weight: bold;
    border-bottom: 3px solid #0d0d0d;
    padding-bottom: 10px;
}

.example-subtitle {
    font-size: 2.8rem;
    font-weight: bold;
    text-transform: uppercase;
    padding-top: 10px;
}

.examplebox-right {
    font-size: 1.8rem;
    line-height: 1.75;
    padding: 90px 0 0 20px;
}

.example-h3 {
    display: flex;
}

/*-----------
home-[example_case]
-----------------*/
.grid-list:last-of-type {
    position: relative;
    margin-bottom: 80px;
}

.case-grid {
    display: grid;
    grid-template-columns: 48% 48%;
    grid-row-gap: 5%;
    grid-column-gap: 6%;
    margin-top: 120px;
}

.bg {
    position: absolute;
    margin-top: -85px;
    left: -20px;
    width: 85%;
    background-image: url("../images/bgc2.jpg");
    background-repeat: no-repeat;
    opacity: 0.9;
}

.case01-card {
    z-index: 5;
    background: url("../images/1x/case01@.png") no-repeat top 30px left 20px;
    padding: 38px 20px 20px 80px;
}

.case02-card {
    z-index: 5;
    background: url("../images/1x/case02@.png") no-repeat top 30px left 20px;
    padding: 38px 20px 20px 80px;
}

.case03-card {
    z-index: 5;
    background: url("../images/1x/case03@.png") no-repeat top 30px left 20px;
    padding: 38px 20px 20px 80px;
}

.case04-card {
    z-index: 5;
    background: url("../images/1x/case04@.png") no-repeat top 30px left 20px;
    padding: 26px 20px 20px 80px;
}

.case05-card {
    z-index: 5;
    background: url("../images/1x/case05@.png") no-repeat top 30px left 20px;
    padding: 27px 20px 20px 80px;
}

.grid-list dt {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    padding-left: 20px;
    line-height: 1.25;
}

.grid-list dd {
    margin-bottom: 20px;
    padding-left: 20px;
}


/*------------------------------------------
see more btn
-----------------*/
.btn {
    display: block;
    position: relative;
    margin: 0 3% 0 auto;
    right: 10px;
    width: 160px;
    height: 40px;
    box-sizing: border-box;
    border: 1px solid #000;
    text-align: center;
    line-height: 40px;
    text-transform: uppercase;
    font-family: 'Source Sans Pro';
    background-color: #fff;
}

.btn::before {
    content: "";
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 0px;
    height: 0px;
}

.btn::after {
    content: "";
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 0px;
    height: 0px;
}

.btn:hover {
    background: #94ABB4;
    border-color: #94ABB4;
    color: #fff;
    transition: 0.3s;
}

.btn:hover::before {
    content: "";
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 160px;
    height: 1px;
    background: #94ABB4;
    transition: all 0.3s ease;
}

.btn:hover::after {
    content: "";
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 1px;
    height: 40px;
    background: #94ABB4;
    transition: all 0.3s ease;
}

/*-----------------------------------------------
instagram
-----------------*/
#instagram {
    margin-top: 40px;
    border-top: 1px double #f19951;
    border-bottom: 4px double #f19951;
    background-color: #f19951;
    padding-bottom: 60px;
}

#instagram h2 {
    margin: 120px 0 80px;
    font-size: 3.2rem;
    text-transform: uppercase;
    font-family: 'Source Sans Pro';
    color: #000;
}

#instagram h2 span {
    margin-right: 20px;
    font-weight: normal;
    font-size: 4.2rem;
}

.btn-insta {
    display: block;
    position: relative;
    width: 180px;
    height: 50px;
    box-sizing: border-box;
    text-align: center;
    line-height: 50px;
    text-transform: uppercase;
    font-size: 2.2rem;
    border: 1px solid #000;
    background-color: #000;
    color: #f19951;
    margin: 110px auto 80px;
    font-family: 'Source Sans Pro';
}

.btn-insta::before {
    content: "";
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 0px;
    height: 0px;
}

.btn-insta::after {
    content: "";
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 0px;
    height: 0px;
}

.btn-insta:hover {
    background-color: #f2f2f2;
    color: #000;
    transition: 0.3s;
}

.btn-insta:hover:before {
    content: "";
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 180px;
    height: 1px;
    background: #000;
    transition: all 0.3s ease;
}

.btn-insta:hover:after {
    content: "";
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 1px;
    height: 50px;
    background: #000;
    transition: all 0.3s ease;
}

#instagram-list {
    padding: 0 20px;
    margin: 0 auto;
    width: 90%;
    max-width: 700px;
}

#instagram-list ul {
    position: relative;
    width: 85%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    box-sizing: border-box;
    margin: 0 auto;

}

#instagram-list ul li {
    overflow: hidden;
    margin-bottom: 40px;
    border-radius: 20%;

}

#instagram-list ul li img {
    width: 240px;
    height: 240px;
    object-fit: cover;
    border-radius: 20%;
}

#instagram-list ul li img:hover {
    opacity: 0.8;
    transform: rotate(-2deg);
    transition-duration: 0.3s;
    border-radius: 20%;
}

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

    #instagram-list ul li img {
        width: 180px;
        height: 180px;
    }
}

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

    #instagram-list ul li img {
        width: 160px;
        height: 160px;
    }
}

@media screen and (max-width:700px) {
    #instagram-list ul li img {
        width: 150px;
        height: 150px;
    }
}

@media screen and (max-width:600px) {
    #instagram-list ul li img {
        width: 120px;
        height: 120px;
    }
}

@media screen and (max-width:375px) {
    #instagram-list ul {
        width: 100%;
        padding: 0 20px 0;
    }

    #instagram-list ul li img {
        width: 90px;
        height: 90px;
    }

    #instagram-list ul li {
        flex-basis: 33% 33% 33%;
    }
}



/*-----------------------------------------------------------
conceptpege-section 「」
-----------------*/
.frame-box-001 {
    position: relative;
    width: 80%;
    padding: 15px 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 60px;
    margin: 0 auto;
    padding: 48px 30px 48px 30px;
}

.frame-box-001::before,
.frame-box-001::after {
    position: absolute;
    content: '';
    width: 30px;
    height: 50px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.frame-box-001::before {
    top: 0;
    left: 0;
    border-top: 2px solid #000;
    border-left: 2px solid #000;
}

.frame-box-001::after {
    bottom: 0;
    right: 0;
    border-bottom: 2px solid #000;
    border-right: 2px solid #000;
}

@media screen and (max-width:1199px) {
    .frame-box-001::before {
        top: 0;
        left: -20px;
    }

    .frame-box-001::after {
        bottom: 0;
        right: -20px;
    }
}

.section-top h3 {
    text-align: center;
    font-size: 3.2rem;
    line-height: 1.5;
    margin: 120px 0 80px;
}

.frame-box-001 p {
    font-size: 1.8rem;
    text-align: center;
    line-height: 1.75;
    font-weight: bold;
}

.frame-box-001 p:first-of-type {
    margin-bottom: 30px;
}

/*---------------------------------------------------------
conceptpage-section
-----------------*/
.section-math {
    font-size: 5.2rem;
    font-weight: bold;
    font-family: 'Source Sans Pro';
}

.concept-section {
    border-top: 3px solid #868686;
    position: relative;
    margin-bottom: 120px;
}

.section-title {
    font-family: 'Source Sans Pro';
    font-size: 4.8rem;
    font-weight: bold;
    text-transform: uppercase;
    width: 350px;
    border: 2px solid #0d0d0d;
    padding: 12px 15px;
    text-align: center;
    margin: 0 auto;
    margin-top: 80px;
    margin-bottom: 80px;
    letter-spacing: 0.05em;
}

.vegetables-img1 {
    position: absolute;
    top: 30px;
    right: 30px;
}

.section-detail {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    line-height: 1.75;
    font-weight: bold;
}

.section-box1 {
    display: flex;
    margin-top: 120px;
}

.section-box1-left {
    width: 50%;
    padding: 0 5%;
}

.section-box1-right {
    width: 50%;
    padding: 0 5% 0 2%;
}

.vegetables-box_title {
    font-size: 2.4rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    border-bottom: 3px solid #45AE85;
    width: 100%;
    padding-bottom: 5px;
    line-height: 1.25;
}

.section-box-_detail1 {
    width: 100%;
    padding-top: 20px;
    line-height: 1.75;
}

.section-box-_detail2 {
    width: 100%;
    margin-top: 30px;
    line-height: 1.75;
}

.section-box2 {
    position: relative;
    display: flex;
    margin: 60px 0 120px;
}

.section-box2-left {
    width: 50%;
    padding: 0 2% 0 5%;
}

.section-box2-right {
    width: 50%;
    padding: 0 5%;
}

.vegetables-img2 {
    display: none;
    position: absolute;
    bottom: 0;
    left: 30px;
}

.concept-address1 {
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.5;
    vertical-align: middle;
}


.concept-address1 a:hover {
    color: #4e4c4c;
    transition: 0.3s ease;
}

.concept-address2 {
    text-align: center;
    line-height: 1.5;
}

.concept-address2 a:hover {
    color: #4e4c4c;
    transition: 0.3s ease;
}

.address-name {
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.coffeebox-title {
    font-size: 2.4rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    border-bottom: 3px solid #795548;
    width: 100%;
    padding-bottom: 5px;
    text-transform: uppercase;
}

.renovation-grid {
    display: grid;
    grid-template-columns: 20% 20% 20% 20%;
    column-gap: 2%;
    row-gap: 5%;
    margin: 120px 0 80px;
    justify-content: center;
    align-items: center;
}

.renovation-text {
    width: 80%;
    line-height: 1.75;
    letter-spacing: 0.1em;
    margin: 0 auto;
}

.sns-icon_concept {
    font-size: 30px;
    display: block;
    margin-bottom: 10px;
}

/*------------------------------------------
examplepage-main
-----------------*/
.detail-box {
    width: 80%;
    margin: 120px auto 160px;
}

.detail-title {
    font-size: 2.4rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    padding: 0 0 10px 20px;
    border-bottom: 2px solid #0d0d0d;
}

.detail-text_box {
    text-align: center;
    margin: 0 auto;
    display: block;
}

.detail-text {
    text-align: left;
    line-height: 1.75;
    padding-top: 20px;
    display: inline-block;
}

/*------------------------------------------
case01~05
-----------------*/
.br {
    display: none;
}

.case-box {
    display: flex;
    margin-bottom: 120px;
}

.case-img {
    width: 55%;
}

.animation {
    overflow: hidden;
    position: relative;
}

.img-wrap1.img-animation {
    animation: img-wrap1-img 2s cubic-bezier(.4, 0, .2, 1);
}

.img-wrap1.img-animation:before {
    animation: img-wrap1-before 2s cubic-bezier(.4, 0, .2, 1) forwards;
    bottom: 0;
    content: '';
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

@keyframes img-wrap1-img {
    0% {
        opacity: 0;
    }
}

@keyframes img-wrap1-before {
    100% {
        transform: translateX(100%);
    }
}


.img-wrap2.img-animation {
    animation: img-wrap2-img 2s cubic-bezier(.4, 0, .2, 1);
}

.img-wrap2.img-animation:before {
    animation: img-wrap2-before 2s cubic-bezier(.4, 0, .2, 1) forwards;
    background: #fff;
    bottom: 0;
    content: '';
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

@keyframes img-wrap2-img {
    0% {
        opacity: 0;
    }
}

@keyframes img-wrap2-before {
    100% {
        transform: translateX(-100%);
    }
}

.img-wrap-orange.img-animation:before {
    background: #fff;
}

.img-wrap-gray.img-animation:before {
    background: #171a26;
}

.img-wrap-black.img-animation:before {
    background: #0d0d0d;
}

.img-wrap-fff.img-animation:before {
    background: #fff;
}


.case-textbox {
    width: 45%;
    margin: 0 5% 0 5%;
}

.case-box h3 {
    font-size: 3.2rem;
    font-weight: bold;
    letter-spacing: 0.15em;
    line-height: 1.5;
}

.case-number {
    display: block;
    width: 70px;
    font-family: 'Source Sans Pro';
    border-bottom: 3px solid #0d0d0d;
    margin-bottom: 20px;
    font-size: 60px;
    margin-top: -25px;
}

.case-text {
    margin-top: 40px;
    line-height: 1.75;
    letter-spacing: 0.1em;
}

.case-price_text {
    width: 82.5%;
    font-size: 1.4rem;
    padding: 12px;
    line-height: 1.5;
    background-color: #d2d4d9;
    margin-top: 20px;
}

/*------------------------------------------
menupage-common
-----------------*/
.menu-section {
    position: relative;
    margin-bottom: 120px;
}

.menu-line {
    height: 1px;
    background: linear-gradient(to right, black, white);
    border: none;
}

.menu-titlebox {
    display: flex;
    margin: 48px 0 60px 30px;
    align-items: baseline;
}

.menu-titlebox h3 {
    font-family: 'Source Sans Pro';
    font-size: 4.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-left: 48px;
}

.menu-titleja {
    font-size: 2.4rem;
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
    margin-left: 56px;
}

.menu-text {
    line-height: 2;
    letter-spacing: 0.2em;
    margin: 0 0 60px 30px;
}

/*------------------------------------------
menupage-lunch
-----------------*/
.menu-lunch_box {
    display: flex;
}

.menu-text {
    width: 55%;
}

.lunch-img_box {
    position: relative;
    width: 45%;
}

.lunch-img1 {
    position: absolute;
    top: -60px;
    left: -20px;
    width: 80%;
}

.lunch-img2 {
    position: absolute;
    top: 120px;
    right: -20px;
    width: 80%;
}

/*------------------------------------------
menupage-dinner
-----------------*/
.dinner-grid {
    display: grid;
    grid-template-columns: 35% 35% 35%;
    grid-row-gap: 12%;
    grid-column-gap: 5%;
    margin-left: 30px;
    width: 80%;
}

.images-radius {
    border-radius: 10%;
}

/*------------------------------------------
pdf btn
-----------------*/
.pdf-btn a {
    display: block;
    position: relative;
    margin: 0 3% 0 auto;
    right: 10px;
    width: 160px;
    height: 40px;
    box-sizing: border-box;
    border: 1px solid #000;
    text-align: center;
    line-height: 40px;
    text-transform: uppercase;
    font-family: 'Source Sans Pro';
}

.pdf-btn a::before {
    content: "";
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 0px;
    height: 0px;
}

.pdf-btn a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 0px;
    height: 0px;
}

.pdf-btn a:hover {
    background: #94ABB4;
    border-color: #94ABB4;
    color: #FFFFFF;
    transition: 0.3s;
}

.pdf-btn a:hover::before {
    content: "";
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 160px;
    height: 1px;
    background: #94ABB4;
    transition: all 0.3s ease;
}

.pdf-btn a:hover::after {
    content: "";
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 1px;
    height: 40px;
    background: #94ABB4;
    transition: all 0.3s ease;
}

.pdf-btn {
    margin: 0 10% 0 auto;
}

/*------------------------------------------
menupage-party
-----------------*/
.inner {
    padding: 0 30px;
}

.party-list {
    display: flex;
    align-items: stretch;
    align-content: stretch;
    width: 100%;
    justify-content: space-between;
}

.party-item {
    flex: 0 1 auto;
    flex-basis: 30%;
    max-width: 100%;
}

.party-list_detail {
    background-color: #D9D9D9;
    padding: 30px;
}

.party-list_title {
    text-align: center;
    text-transform: uppercase;
    font-size: 2.2rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1.25;
    margin-bottom: 48px;
}

.party-list_titleja {
    display: block;
    font-size: 1.6rem;
    margin-top: 20px;
}

.party-list_price {
    font-weight: bold;
    font-size: 1.4rem;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.5;
}

.party-list_detail_text {
    letter-spacing: 0.1em;
    line-height: 1.75;
    margin-bottom: 30px;
    padding: 10px 10px 0;
    border: 1px solid #f2f2f2;
    border-radius: 20px;
    background-color: #f2f2f2;
}

.text-margin {
    margin-bottom: 20px;
}

.party-list_img img {
    width: 100%;
}

.img-block {
    display: block;
}

.reserved-span::before {
    content: ":";
}

@media screen and (max-width:1055px) {
    .br-1055 {
        display: block;
    }

    .party-list_price {
        line-height: 1.5;
    }
}

/*------------------------------------------
news-main
-----------------*/
.news-section {
    display: flex;
    margin: 120px 30px 160px;
}

.news-main {
    width: 75%;
}

.news-main_list {
    margin-bottom: 60px;

}

.news-item:hover {
    opacity: 0.5;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.news-item {
    padding: 30px;
    display: flex;
    background-color: #f2f2f2;
    width: 100%;
    margin-bottom: 30px;
}

.news-detail {
    margin-left: 30px;
    width: 100%;
}

.news-title {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    border-bottom: 1px solid #0d0d0d;
    padding: 0px 10px 10px 10px;
    line-height: 1.25;
}

.news-text {
    line-height: 0.1;
    line-height: 1.75;
    padding: 20px 10px;
}

.news-date {
    color: #1BBCB6;
    float: right;
}

.news-aside {
    width: 30%;
    display: none;
}

.pickup {
    text-transform: uppercase;
    font-size: 2.4rem;
    font-family: 'Source Sans Pro';
    font-weight: bold;
    text-align: center;
    line-height: 60px;
    color: #FFFFFF;
    background-color: #9ABA9E;
    width: 100%;
    height: 60px;
    padding: 30px auto;
    margin-bottom: 48px;
}

.aside-item {
    padding: 15px;
    display: flex;
    background-color: #f2f2f2;
    width: 100%;
}

.aside-item:hover {
    opacity: 0.5;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.aside-item p img {
    width: 100%;
}

.news-title-aside {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    border-bottom: 1px solid #0d0d0d;
    padding: 10px 10px 10px 10px;
}

.news-date-aside {
    padding-top: 30px;
    color: #1BBCB6;
    float: right;
}

.news-detail2 {
    margin-left: 15px;
    width: 100%;
}

.aside-item p {
    width: 60%;
}

/*------------------------------------------
news-detail.html
-----------------*/
.article-area {
    width: 100%;
    padding: 120px 100px 160px;
}

.article {
    text-align: center;
    width: 90%;
    padding: 20px 0;
    border-bottom: 1px solid #0d0d0d;
    margin: 0 auto;
    margin-bottom: 120px;
}

.article-img {
    width: 56%;
    margin: 0 auto 120px;
}

.article-title {
    color: #333;
    font-size: 3.2rem;
    font-weight: bold;
    margin-bottom: 48px;
    line-height: 1.25;
}

.footer-news_detail {
    margin: 0 80px;
    padding: 80px 80px 20px;
    background-color: #404040;
}

.article-text {
    color: #333;
    width: 80%;
    line-height: 2.5;
    letter-spacing: 0.1em;
    margin: 0 auto 48px;
}

.article-date {
    color: #333;
}

.change-date {
    display: block;
    font-size: 2.0rem;
    font-weight: bold;
    margin: 20px 0 20px;
}

/*------------------------------------------
contact-[form]
-----------------*/
.form-section input {
    display: block;
    width: 100%;
    height: 46px;
    padding: 10px 20px;
    background-color: #f5f5f5;
    /*inputのフォーカス時の枠線を消す*/
    outline: 0;
    /* 文字色を親から継承 */
    color: inherit;
    /* inputの枠線を消す */
    border: 1px solid #ddd;
    transition: border 0.2s ease-out;
}

input:focus {
    border: 1px solid#0d0d0d;
    background-color: #fff;
    color: #0d0d0d;
}

.form-box {
    margin: 0 auto 160px;
    width: 50%;
}

.form-section {
    text-align: left;
    margin-bottom: 48px;
    font-size: 16px;
    font-weight: bold;
}

.form-section:last-of-type {
    margin-bottom: 80px;
}


.form-section dt {
    margin-bottom: 10px;
}

.hissu {
    color: #A73634;
}

textarea {
    width: 100%;
    padding: 10px 20px;
    background-color: #f5f5f5;
    outline: 0;
    color: inherit;
    border: 1px solid #ddd;
    transition: border 0.2s ease-out;
}

textarea:focus {
    border: 1px solid#0d0d0d;
    background-color: #fff;
    color: #0d0d0d;
}

.send-btn {
    margin: 0 auto;
    width: 30%;
    height: 60px;
    background-color: #0d0d0d;
    border-radius: 30px;
    border: none;
    color: #fff;
    text-transform: uppercase;
    font-size: 2.2rem;
    letter-spacing: 0.1em;
}

.send-btn:hover {
    background-color: #94ABB4;
    transition: 0.3s;
}

.form-section2 {
    text-align: left;
    margin-bottom: 48px;
}

.form-section2:last-of-type {
    margin-bottom: 80px;
}

.back-btn {
    width: 80px;
    height: 40px;
    display: block;
    margin: 0 auto;
    background-color: #fff;
    border: 1px solid #000;
    color: #0d0d0d;
}

.back-btn:hover {
    opacity: 0.7;
}

.confirm-box {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.confirm-box dt {
    margin-bottom: 15px;
    color: #494949;
}

.confirm-box dd {
    font-weight: bold;
    font-size: 1.8rem;
}

.confirm_send-btn {
    margin: 0 auto 80px;
    display: block;
    width: 30%;
    height: 60px;
    border: none;
    background-color: #0d0d0d;
    border-radius: 30px;
    color: #fff;
    text-transform: uppercase;
    font-size: 2.0rem;
    letter-spacing: 0.1em;
    margin-bottom: 48px;
}

.confirm_send-btn:hover {
    background-color: #94ABB4;
    transition: 0.3s;
    border: none;
}

.mailconfirm-dt {
    color: #c9c9c9;
}

#tyMessage {
    margin: 60px auto 0;
    line-height: 1.75;
    text-align: center;
    font-weight: bold;
}

.home-backbtn {
    display: block;
    width: 120px;
    padding: 5px 10px;
    margin: 30px auto 0;
    border: 1px solid #000;
    background-color: black;
    color: #fff;
    font-weight: normal;
}

.home-backbtn:hover {
    background-color: #fff;
    color: #000;
    transition: 0.3s;
}

/*------------------------------------------
side-bar
-----------------*/
#sp-fixed {
    display: none;
}

#sidebar-left {
    position: fixed;
    top: 50%;
    left: 0;
    width: 80px;
    height: auto;
    transform: translateY(-50%);
    line-height: 80px;
    font-size: 1.2rem;
}

#sidebar-left ul li a {
    writing-mode: tb-rl;
    font-family: 'Source Serif Pro';
}

#sidebar-left ui li a:first-of-type {
    padding: 0;
}

#sidebar-right {
    position: fixed;
    top: 50%;
    right: 0;
    width: 80px;
    height: auto;
    transform: translateY(-50%);
}

#sidebar-right ul {
    padding: 50% 60% 50% 40%;
}

#sidebar-right ul li {
    padding-bottom: 20px;
}

#sidebar-right p {
    text-align: center;
    margin-top: 100px;
}

.phone {
    display: block;
    transform: rotate(90deg);
    margin-bottom: -30px;
    font-family: 'Source Serif Pro';
}


#sidebar-left ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    line-height: 76px;
}

#sidebar-left ul li a::after {
    position: absolute;
    bottom: 0;
    left: 28px;
    content: '';
    width: 2px;
    height: 100%;
    background: #333;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
}

#sidebar-left ul li a:hover::after {
    transform: scale(1, 1);
}

.fab.fa-instagram:hover {
    transform: scale(1.2, 1.2);
    transition: 0.3s;
}

.fab.fa-facebook-square:hover {
    transform: scale(1.2, 1.2);
    transition: 0.3s;
}

#sidebar-right ul li a {
    color: #0d0d0d;
}

/*------------------------------------------
btn-pageTop
-----------------*/
.fa.fa-chevron-up {
    color: #FFFFFF;
}

#pagetop {
    position: fixed;
    bottom: 20px;
    right: 22.5px;
}

#pagetop i {
    padding-top: 6px
}

#pagetop a {
    display: block;
    z-index: 999;
    padding: 3px 0;
    border-radius: 30px;
    width: 35px;
    height: 35px;
    background-color: #0d0d0d;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
}

#pagetop a:hover {
    text-decoration: none;
    opacity: 0.7;
    transition: 0.3s;
}

/*------------------------------------------
footer
-----------------*/
#footer {
    margin: 0 80px;
    padding: 80px 80px 20px;
    background-color: #404040;
    max-width: 1556px;
}

.footer-title {
    font-size: 4.8rem;
    font-family: 'Source Serif Pro';
    color: #f2f2f2;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 0.1em;
}

.footer-subtitle {
    font-size: 2.4rem;
    font-family: 'Source Serif Pro';
    color: #f2f2f2;
    text-align: center;
    margin-bottom: 90px;
    letter-spacing: 0.1em;
}

.map-detail {
    color: #f2f2f2;
    margin-top: 10px;
    font-size: 1.2rem;
    line-height: 1.5;
}

.copyright {
    display: block;
    color: #f2f2f2;
    text-align: center;
    margin: 60px auto 30px;
}

.footer-mapbox {
    width: 45%;
}

.footer-textbox {
    padding-top: 20px;
    width: 55%;
}

.fotter-open dd {
    display: block;
}

.footer-textbox dl {
    margin-bottom: 40px;
    color: #f2f2f2;
}

#footer dl dd .fas.fa-phone {
    color: #f2f2f2;
}

#footer dl dd .far.fa-envelope {
    color: #f2f2f2;
}

#footer dl dd .fab.fa-instagram-square {
    color: #f2f2f2;
}

.footer-textbox dl dt {
    width: 35%;
}

.footer-textbox dl dd {
    width: 65%;
    padding-left: 10%;
}

.address {
    line-height: 1.5;
}

.open {
    line-height: 1.5;
}

.footer-textbox dl dd a {
    display: inline-block;
    margin-right: 40px;
    color: #f2f2f2;
}

.footer-textbox dl dt {
    text-align: right;
}

.address dt {
    text-transform: uppercase;
}

.tel dt {
    text-transform: uppercase;
}

.open dt {
    text-transform: uppercase;
}

.form-icon {
    display: flex;
}

.fas.fa-phone:hover {
    transform: scale(1.2, 1.2);
    transition: 0.3s;
}

.far.fa-envelope:hover {
    transform: scale(1.2, 1.2);
    transition: 0.3s;
}

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

    .menu-btn {
        display: block;
    }

    .header-navi {
        display: none;
    }

    .header-navi2 {
        display: none;
    }

    .header-change > .p-hamburger {
        top: 8px;
    }

    .navToggle {
        display: block;
        z-index: 1000;
    }

    .globalMenuSp ul {
        padding: 180px 0 0 80px;
    }

    .sp-maps span {
        font-size: 2.0rem;
    }

    .catchcopy {
        font-size: 2.8rem;
    }

    .lunchbox1-title {
        font-size: 2.6rem;
        width: 100%;
    }

    .dinnerbox-title {
        font-size: 2.6rem;
        width: 100%;
    }

    .dinnerbox1-left {
        padding: 0 2% 0 6%;
    }

    .lunchbox1-right p {
        padding: 0 10% 0 3%;
    }

    /*------------------------------------------
contact
-----------------*/
    .confirm_send-btn {
        width: 40%;
    }

    /*------------------------------------------
footer
-----------------*/
    #footer {
        margin: 0;
    }

    /*------------------------------------------
main
-----------------*/
    #main {
        margin: 0;
    }

    .sp-inner {
        padding: 0 40px 0;
    }

    #sidebar-right {
        display: none;
    }

    #sidebar-left {
        display: none;
    }

    #sp-fixed {
        display: none;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 40px;
        background-color: #408C2B;
        z-index: 500;
    }

    #sp-fixed ul li {
        float: left;
        width: 50%;
        text-align: center;
        line-height: 40px;
    }

    #sp-fixed ul li a {
        color: #fff;
    }

    /*------------------------------------------
lunch-dinner
-----------------*/

    .fas.fa-sun {
        position: absolute;
        top: -200px;
        left: -200px;
        font-size: 500px;
    }

    .fas.fa-moon {
        position: absolute;
        top: -200px;
        left: -200px;
        font-size: 500px;
    }

    /*------------------------------------------
home-case01~05
-----------------*/
    .grid-list dt {
        font-size: 2.0rem;
        font-weight: bold;
        margin-bottom: 20px;
        padding-left: 20px;
        line-height: 1.25;
    }

    .grid-list dd {
        margin-bottom: 20px;
        padding-left: 20px;
        line-height: 1.25;
    }

    .bg {
        position: relative;
        margin-left: -10px;
        width: 100%;
        background-image: url("../images/bgc2.jpg");
        background-size: cover;
    }

    .btn {
        display: block;
        position: relative;
        bottom: 0;
        width: 100px;
        height: 30px;
        box-sizing: border-box;
        border: 1px solid #000;
        text-align: center;
        line-height: 30px;
        text-transform: uppercase;
        font-family: 'Source Sans Pro';
        font-size: 1.3rem;
    }

    .btn::before {
        content: "";
        position: absolute;
        bottom: -4px;
        right: -4px;
        width: 0px;
        height: 0px;
    }

    .btn::after {
        content: "";
        position: absolute;
        bottom: -4px;
        right: -4px;
        width: 0px;
        height: 0px;
    }

    .btn:hover:before {
        content: "";
        position: absolute;
        bottom: -4px;
        right: -4px;
        width: 100px;
        height: 1px;
        background: #94ABB4;
        transition: all 0.3s ease;
    }

    .btn:hover:after {
        content: "";
        position: absolute;
        bottom: -4px;
        right: -4px;
        width: 1px;
        height: 30px;
        background: #94ABB4;
        transition: all 0.3s ease;
    }

    .btn-insta {
        display: block;
        position: relative;
        width: 140px;
        height: 40px;
        box-sizing: border-box;
        text-align: center;
        line-height: 40px;
        text-transform: uppercase;
        font-size: 1.6rem;
        border: 1px solid #000;
        background-color: #000;
        color: #f19951;
        margin: 90px auto 60px;
        font-family: 'Source Sans Pro';
    }

    .btn-insta::before {
        content: "";
        position: absolute;
        bottom: -4px;
        right: -4px;
        width: 0px;
        height: 0px;
    }

    .btn-insta::after {
        content: "";
        position: absolute;
        bottom: -4px;
        right: -4px;
        width: 0px;
        height: 0px;
    }

    .btn-insta:hover {
        background-color: #f2f2f2;
        color: #000;
    }

    .btn-insta:hover:before {
        content: "";
        position: absolute;
        bottom: -4px;
        right: -4px;
        width: 140px;
        height: 1px;
        background: #000;
        transition: all 0.3s ease;
    }

    .btn-insta:hover:after {
        content: "";
        position: absolute;
        bottom: -4px;
        right: -4px;
        width: 1px;
        height: 40px;
        background: #000;
        transition: all 0.3s ease;
    }

    .welcome-lunch {
        padding: 120px 20px 0;
    }

    .welcome-dinner {
        padding: 120px 20px 0;
    }

    .main-sp {
        padding: 0 20px;
    }

    .lunch-img2 {
        position: absolute;
        top: 120px;
        right: 0px;
    }

    .lunch-img1 {
        top: 0;
        left: 0;
        width: 60%;
    }

    .lunch-img2 {
        width: 60%;
    }

    .vegetables-img1 {
        width: 150px;
    }

    .aside-item p {
        width: 60%;
    }

    .br-1024 {
        display: none;
    }

    .section-title {
        font-size: 4.0rem;
        width: 300px;
    }

    .frame-box-001 {
        padding: 48px 20px 48px 20px;
    }

    .frame-box-001 p {
        line-height: 2.15;
    }
}


/*-------------------------------------------------------------------*/
@media screen and (max-width:769px) {

    /*------------------------------------------
pagetop-main images
-----------------*/
    .page-top_name1 {
        font-size: 5.6rem;
    }

    .page-top_name2 {
        font-size: 2.4rem;
    }

    .pagetop-title2 h2 {
        font-size: 4.0rem;
    }

    .pagetop-title2 p {
        font-size: 1.8rem;
    }

    .pagetop-title6 h2 {
        font-size: 4.0rem;
    }

    .pagetop-title6 p {
        font-size: 1.8rem;
    }

    .sp-maps span {
        font-size: 2.0rem;
    }

    /*------------------------------------------
footer
-----------------*/
    .footer-mapbox {
        display: block;
    }

    .footer-mapbox {
        display: none;
    }

    .footer-textbox {
        width: 100%;
        margin: 0 auto;
    }

    /*------------------------------------------
page-top
-----------------*/
    #top-welcome h2 {
        font-size: 2.6rem;
    }

    #top-example h2 {
        font-size: 2.6rem;
    }

    #instagram h2 {
        font-size: 2.6rem;
    }

    .title-math1 {
        font-size: 4.0rem;
    }

    .welcome-box {
        padding: 60px 0 0;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .flex-cell2 {
        width: 63%;
        margin: 0 auto 60px;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 2;
        -webkit-order: 2;
        order: 2;
    }

    .flex-cell1 {
        width: 90%;
        margin: 0 auto;
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 1;
        -webkit-order: 1;
        order: 1;
    }

    .catchcopy {
        margin-bottom: 80px;
        font-size: 3.2rem;

    }

    .welcome-text:last-of-type {
        margin: 0 0 80px 0;
    }

    .welcome-lunch h3 {
        font-size: 4.0rem;
        width: 180px;
        position: relative;
    }

    .lunchbox1 {
        display: block;
    }

    .lunchbox1-left {
        width: 100%;
        padding: 0;
        margin-bottom: 60px;
    }

    .lunchbox1-right {
        width: 100%;
    }

    .lunchbox1-right p {
        margin-bottom: 30px;
    }

    .lunchbox1-right div img {
        width: 100%;
        padding-left: 40%;
        margin: 0 0 30px;
        ;
    }

    .lunchbox1-title {
        width: 60%;
        font-size: 2.4rem;
    }

    .lunchbox2 {
        display: block;
    }

    .lunchbox2-img1 {
        width: 80%;
        text-align: left;
    }

    .lunchbox2-right {
        width: 80%;
        margin: 0 auto;
        padding-top: 5%;
    }

    .welcome-dinner h3 {
        font-size: 4.0rem;
        position: relative;
    }

    .time {
        position: relative;
        z-index: 20;
    }

    .dinnerbox1 {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .dinnerbox1-left {
        width: 100%;
        margin: 0 auto;
        padding: 0;
        margin-left: 20px;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 2;
        -webkit-order: 2;
        order: 2;
    }

    .dinnerbox1-right {
        width: 100%;
        padding: 0;
        margin-bottom: 60px;
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 1;
        -webkit-order: 1;
        order: 1;
    }

    .dinnerbox1-left p img {
        margin-top: 0;
        padding-left: 40%;
    }

    .dinnerbox2-pic1 {
        padding: 0;
        margin: 30px auto 0;
        width: 77%;
    }

    .dinnerbox2-pic2 {
        margin-top: 0;
        margin-left: -20px;
    }

    .dinnerbox-title {
        width: 60%;
        font-size: 2.4rem;
    }

    .dinnerbox2 {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding-top: 5%;
    }

    .dinnerbox2-right {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 1;
        -webkit-order: 1;
        order: 1;
        width: 80%;
        text-align: left;
    }

    .dinnerbox2-left {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 2;
        -webkit-order: 2;
        order: 2;
        padding-top: 2%;
        margin: 0 auto;
        width: 70%;
    }

    .dinnerbox1-left.dinner-img {
        padding: 0;
    }

    .dinnerbox2-pic3 {
        padding: 0;
    }

    .fas.fa-sun {
        top: -220px;
        left: -230px;
        font-size: 480px;
    }

    .fas.fa-moon {
        top: -140px;
        left: -180px;
        font-size: 480px;
    }

    .example-title {
        font-size: 3.6rem;
    }

    .example-subtitle {
        font-size: 2.2rem;
    }

    .example-h3 {
        display: block;
    }

    .examplebox-left {
        width: 100%;
    }

    .examplebox-right {
        width: 100%;
        padding-left: 0;
        padding: 90px 10px 0;
    }

    .sp-br {
        display: none;
    }

    .case-grid {
        display: block;
    }

    #top-example {
        padding: 0 40px 60px 60px;
    }

    .grid-list {
        margin-bottom: 30px;
    }

    .w100 img {
        width: 100%;
    }

    /*------------------------------------------
concept
-----------------*/
    .section-box1 {
        display: block;
    }

    .section-title {
        font-size: 3.6rem;
        width: 260px;
    }

    .section-box1-left {
        width: 90%;
        margin: 0 auto;
    }

    .section-box1-right {
        width: 100%;
        padding: 0;
    }

    .section-box2 {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        flex-direction: column;
    }

    .section-box2-right {
        order: 1;
        width: 90%;
        margin: 0 auto;
    }

    .section-box2-left {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 2;
        -webkit-order: 2;
        order: 2;
        width: 100%;
        padding: 0;
    }

    .vegetables-box_title {
        margin-top: 60px;
    }

    .coffeebox-title {
        margin-top: 60px;
    }

    .section-box-_detail1 {
        padding: 0;
        margin-top: 30px;
    }

    .renovation-grid {
        grid-template-columns: 30% 30% 30%;
    }

    .renovation-text {
        width: 100%;
        margin: 0 auto;
    }

    /*------------------------------------------
concept
-----------------*/
    .case-box {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        display: flex;
        flex-wrap: wrap;
    }

    .case-img {
        width: 90%;
        margin: 0 auto;
    }

    .case-textbox {
        width: 100%;
    }

    .case-img:nth-child(even) {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 1;
        -webkit-order: 1;
        order: 1;
    }

    .case-textbox {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 2;
        -webkit-order: 2;
        order: 2;
        margin-top: 30px;
    }

    .section-top {
        margin-bottom: 80px;
    }

    .section-top h3 {
        font-size: 2.8rem;
    }

    .vegetables-img1 {
        display: none;
    }

    .section-box2 {
        margin-bottom: 60px;
    }

    .concept-section {
        margin-bottom: 90px;
    }

    .section-box1 {
        margin-top: 90px;
    }

    /*------------------------------------------
menu
-----------------*/
    .menu-lunch_box {
        display: block;
    }

    .menu-text {
        width: 100%;
        margin-left: 0;
        letter-spacing: 0.1em;
    }

    .lunch-img_box {
        display: flex;
        width: 100%;
        border: 1px solid #fff;
        border-radius: 50%;
        background-color: #f2f2f2;
    }

    .lunch-img1 {
        position: static;
        width: 100%;
    }

    .lunch-img2 {
        position: static;
        width: 100%;
        margin-top: 80px;
    }

    .dinner-grid {
        width: 100%;
        margin-left: 10px;
        grid-template-columns: 30% 30% 30%;
        grid-row-gap: 5%;
        grid-column-gap: 3%;
    }

    .party-list {
        display: block;
    }

    .party-item {
        width: 80%;
        margin: 0 auto 30px;
    }

    .menu-titleja {
        display: block;
        margin-top: 30px;
        margin-left: 0;
        font-size: 1.8rem;
    }

    .menu-icon {
        order: 2;
        min-width: 20px;
    }

    .menu-titlebox h3 {
        margin-left: 0;
        margin-right: 48px;
    }

    .inner {
        padding: 0;
    }

    .menu-titlebox h3 {
        font-size: 4.0rem;
    }

    .pdf-btn {
        order: 3;
        margin: 0 10% 0 auto;
    }

    .send-btn {
        width: 50%;
        font-size: 2.0rem;
    }

    /*------------------------------------------
news
-----------------*/
    .news-main_list {
        display: block;
    }

    .news-section {
        display: block;
    }

    .news-main {
        width: 100%;
    }

    .news-item {
        width: 100%;
    }

    .news-img {
        margin-bottom: 20px;
    }

    .news-aside {
        width: 80%;
        margin: 0 auto;
    }

    .sp-wide {
        width: 80%;
        margin: 0 auto;
    }

    .aside-item p {
        width: 40%;
    }

    .article-img {
        width: 90%;
    }



    .article-area {
        padding: 120px 80px 160px;
    }

    .article-title {
        font-size: 2.6rem;
        line-height: 1.25;
    }

    .article-text {
        width: 90%;
        line-height: 2.0;
    }

    .news-date-aside {
        float: right;
    }



    .footer-news_detail {
        margin: 0;
    }

    .confirm_send-btn {
        width: 40%;
    }

}

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

@media screen and (max-width:559px) {
    .lunchbox1-title {
        width: 80%;
        margin-left: 0;
    }

    .news-main_list {
        display: block;
    }

    .dinnerbox-title {
        width: 80%;
        margin-left: 0;
    }

    .pdf-btn {
        align-self: flex-end;
    }

    .pdf-btn a {
        width: 110px;
        font-size: 1.5rem;
    }

    .pdf-btn a::before {
        width: 0px;
    }

    .pdf-btn a:hover::before {
        width: 110px;
    }


    .height {
        height: 180px;

    }

    .form-box {
        width: 80%;
    }

    .article-area {
        padding: 80px 0 160px;
    }

    .article-title {
        font-size: 3.2rem;
    }

    .article-date {
        font-size: 1.4rem;
    }

    .footer-news_detail {
        padding: 80px 0 10px;
    }

    .article-title {
        margin-bottom: 24px;
    }

    .detail-title {
        padding: 0 0 10px 0;
    }

}

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

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

    /*------------------------------------------
home
-----------------*/
    .text {
        font-size: 4.8rem;
    }

    .text2 {}

    #instagram h2 {
        margin: 60px 0 48px;
    }

    .br-welcome {
        display: block;
    }

    .send-box input {
        width: 50%;
        font-size: 1.8rem;
        letter-spacing: 0.1em;
    }

    #top-welcome h2 {
        margin: 60px 0 48px;
    }

    .catchcopy {
        font-size: 2.6rem;
        margin-bottom: 40px;
    }

    .flex-cell2 {
        width: 90%;
    }

    .welcome-lunch h3 {
        width: 180px;
        padding: 10px;
    }

    .welcome-dinner h3 {
        width: 180px;
        padding: 10px;
    }

    .welcome-lunch {
        padding: 60px 20px 0;
    }

    .lunchbox1 {
        margin-top: 80px;
    }

    .lunchbox2-right {
        width: 90%;
        margin: 0 auto 30px;
        padding-top: 9%;
    }

    .welcome-dinner {
        padding: 60px 20px 0;
    }

    .dinnerbox1 {
        margin-top: 80px;
    }

    .dinnerbox2 {
        padding-bottom: 30px;
    }

    .dinnerbox2-pic1 {
        width: 100%;
        margin: 20px auto 0;
    }

    .dinnerbox2-pic2 {
        padding: 0 0 80px;
    }

    .fas.fa-moon {
        top: -210px;
        font-size: 460px;
    }

    .case-grid {
        margin-top: 72px;
    }

    #top-example h2 {
        margin: 60px 0 80px;
    }

    .example-title {
        font-size: 3.2rem;
    }

    .example-subtitle {
        font-size: 2.0rem;
    }

    .form-box {
        width: 100%;
        padding: 0 20px 0;
    }

    .pagetop-title6 h2 {
        font-size: 3.4rem;
    }

    .pagetop-title2 h2 {
        font-size: 3.4rem;
    }

    .header {
        height: 80px;
    }

    #main {
        padding-top: 80px;
    }

    .navToggle {
        top: 12px;
        left: 12px;
    }

    .logotop {
        width: 90px;
        height: 90px;
    }

    #top-heroimage {
        height: calc(100vh - 80px);
    }

    .header-change {
        height: 70px;
        display: none;
    }

    .header-change .logotop {
        width: 70px;
        height: 70px;
    }

    .sp-br2 {
        display: none;
    }

    .br-375 {
        display: block;
    }

    .lunchbox1-title {
        width: 100%;
    }

    .dinnerbox-title {
        width: 100%;
    }

    .lunchbox1-right p {
        margin-left: 0;
    }

    .dinnerbox1-left {
        margin-left: 0;
    }

    #top-example {
        padding: 0 20px 40px 20px;
    }

    .bg {
        left: 0;
        margin-top: -65px;
        margin-left: 0;
    }

    #footer {
        padding: 80px 0 10px;
    }

    .footer-title {
        font-size: 4.0rem;
    }

    .footer-subtitle {
        font-size: 1.8rem;
        margin-bottom: 60px;
    }

    .fas.fa-phone {
        font-size: 20px;
    }

    .far.fa-envelope {
        font-size: 20px;
    }

    .ff {
        font-size: 20px;
    }

    .copyright {
        margin: 20px auto 30px;
    }

    #instagram {
        margin-top: 0;
    }

    .examplebox-right {
        font-size: 1.6rem;
    }

    .welcome-text {
        font-size: 1.6rem;
        margin-right: 0;
    }

    .btn-insta {
        display: block;
        position: relative;
        width: 130px;
        height: 40px;
        box-sizing: border-box;
        text-align: center;
        line-height: 40px;
        text-transform: uppercase;
        font-size: 1.4rem;
        border: 1px solid #000;
        background-color: #000;
        color: #f19951;
        margin: 60px auto 10px;
        font-family: 'Source Sans Pro';
    }

    .btn-insta::before {
        content: "";
        position: absolute;
        bottom: -4px;
        right: -4px;
        width: 0px;
        height: 0px;
    }

    .btn-insta::after {
        content: "";
        position: absolute;
        bottom: -4px;
        right: -4px;
        width: 0px;
        height: 0px;
    }

    .btn-insta:hover:before {
        content: "";
        position: absolute;
        bottom: -4px;
        right: -4px;
        width: 130px;
        height: 1px;
        background: #000;
        transition: all 0.3s ease;
    }

    .btn-insta:hover:after {
        content: "";
        position: absolute;
        bottom: -4px;
        right: -4px;
        width: 1px;
        height: 40px;
        background: #000;
        transition: all 0.3s ease;
    }

    .nav-sp-line {
        margin: 40px 0 30px;
    }

    .globalMenuSp ul li {
        margin-bottom: 20px;
    }

    .globalMenuSp ul {
        padding: 140px 0 0 40px;
    }

    .sp-maps span {
        font-size: 1.4rem;
    }

    .form-section p {
        font-weight: bold;
    }

    /*------------------------------------------
concept
-----------------*/
    .section-top h3 {
        margin: 70px 0 20px;
        font-size: 2.3rem;
    }

    .section-math {
        font-size: 4.8rem;
    }

    .section-box1 {
        margin-top: 60px;
    }

    .sp-inner {
        padding: 0 20px 0
    }

    .frame-box-001::before {
        display: none;
    }

    .frame-box-001::after {
        display: none;
    }

    .frame-box-001 {
        width: 100%;
    }

    .frame-box-001 p {
        line-height: 2.0;
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 3.2rem;
        margin-top: 48px;
        margin-bottom: 48px;
    }

    .section-detail {
        font-size: 1.6rem;
        line-height: 2.0;
    }

    .section-box1-left {
        padding: 0;
    }

    .section-box2-right {
        padding: 0;
    }

    .vegetables-box_title {
        font-size: 2.2rem;
        line-height: 1.25;
    }

    .coffeebox-title {
        font-size: 2.2rem;
    }

    .concept-address1 {
        font-size: 1.4rem;

    }

    .concept-address2 {
        font-size: 1.4rem;
    }

    .renovation-grid {
        grid-template-columns: 50% 50%;
        margin: 60px 0 110px;
    }

    .address-span {
        display: inline-block;
        line-height: 40px;
    }

    .sns-icon_concept {
        margin-bottom: 0;
    }

    /*------------------------------------------
example
-----------------*/
    .case-box h3 {
        font-size: 2.8rem;
    }

    .case-number {
        font-size: 50px;
    }

    .case-img {
        width: 100%;
    }

    .case-textbox {
        margin: 30px 0 0;
    }

    .br {
        display: block;
    }

    .br-375 {
        display: none;
    }

    /*------------------------------------------
menu
-----------------*/
    .party-item {
        width: 100%;
    }

    .dinner-grid {
        margin: 0 auto;
        grid-template-columns: 48% 48%;
    }

    .menu-titlebox h3 {
        font-size: 3.4rem;
    }

    .menu-titleja {
        margin-top: 20px;
    }

    .height {
        height: 120px;
    }

    .detail-box {
        margin: 80px auto 90px;
    }

    .menu-section {
        margin-bottom: 90px;
    }

    .sp-margin {
        padding-bottom: 30px;
    }

    .menu-titlebox h3 {
        margin-right: 30px;
    }

    /*------------------------------------------
news
-----------------*/
    .news-section {
        margin: 80px 30px 160px;
    }

    .news-item {
        padding: 20px;
        display: block;
    }

    .news-detail {
        margin-left: 0px;
    }

    .news-date {
        font-size: 1rem;
    }

    .news-title {
        font-size: 1.8rem;
        padding: 10px 10px 10px 10px;
    }

    .news-text {
        font-size: 1.5rem;
    }

    .news-img {
        margin: 0 auto;
        width: 77%;
    }

    .news-aside {
        width: 90%;
        margin: 0 auto;
    }

    .aside-item p {
        width: 70%;
    }

    .news-detail2 {
        margin-left: 10px;
    }

    .news-title-aside {
        font-size: 1.6rem;
    }

    .news-date-aside {
        font-size: 1rem;
        float: right;
    }

    .article-title {
        font-size: 2.4rem;
    }

    .article {
        margin-bottom: 30px;
    }

    .article-img {
        margin-bottom: 60px;
    }

    .article-text {
        font-size: 1.5rem;
        margin-bottom: 36px;
    }

    .article-area {
        padding: 60px 0 60px
    }

    .confirm_send-btn {
        width: 50%;
        height: 50px;
        font-size: 1.8rem;
    }

    .confirm-box dt {
        font-size: 1.4rem;

    }

    .confirm-box dd {
        font-size: 1.4rem;
    }

    .form-section dd input,
    .form-section dd textarea {
        font-size: 16px;
    }

    .form-section p {
        font-weight: bold;
    }

    @media screen and (min-width:1719px) {
        #main {
            margin: 0 auto;
        }

        #footer {
            margin: 0 auto;
        }
    }
