@charset "UTF-8";

/* ページ移動画面ここから */

/***** 全画面を覆う背景 *****/
.mask {
    position: fixed; /*固定表示*/
    z-index: 999; /*最前面へ*/
    top: 0;
    left: 0;
    width: 100vw; /*画面幅*/
    height: 100vh; /*画面の高さ*/
    background: #000; /*好きな色*/
    animation: fadeOut 0.4s forwards; /*フェードアウト*/
    animation-delay: 1.6s; /*円のアニメーション＋遅延時間*/
}
  /*フェードアウトアニメーション*/
@keyframes fadeOut {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      visibility: hidden;
    }
}
  
  /***** 広がる円 *****/
.circle {
    position: absolute; /*固定表示*/
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto; /*中央配置*/
    width: 0;
    height: 0;
    background: #fff; /*ページ全体の背景色*/
    animation: circle-open 1s linear forwards;
    animation-delay: 0.6s; /*任意の遅延時間*/
}
  
  /*円が拡大するアニメーション*/
@keyframes circle-open {
    0% {
      width: 0;
      height: 0;
      border-radius: 50%;
    }
    20%,
    80% {
      /*少し拡大して止まる*/
      width: 100px;
      height: 100px;
      border-radius: 50%;
    }
    99% {
      /*ぎりぎりまで正円*/
      width: 99vw;
      height: 99vw;
      border-radius: 50%;
    }
    100% {
      /*全画面*/
      width: 100vw;
      height: 100vh;
      border-radius: 0;
    }
}


/* マウスストーカーここから */

#js-mouse {
    pointer-events: none;
    position: fixed;
    top: -15px;
    left: -15px;
    width: 30px;
    height: 30px;
    background-color: rgba(255,255,255,0.5);
    border-radius: 50%;
    transform: translate(0,0);
    transition: transform 0.3s ease-out;
    z-index: 9999;
    opacity: 0;
    border: 1px solid #999;
}

#js-mouse.js-hover {
    width: 50px;
    height: 50px;
    background-color: rgba(255,255,255,0.5);
}



/* スクロールCSS */
.fade-in {
    opacity: 0;
    transition-duration: 500ms;
    transition-property: opacity, transform;
}
  
.fade-in-up {
    transform: translate(0, 50px);
}
  
.fade-in-down {
    transform: translate(0, -50px);
}
  
.fade-in-left {
    transform: translate(-50px, 0);
}
  
.fade-in-right {
    transform: translate(50px, 0);
}
  
.scroll-in {
    opacity: 1;
    transform: translate(0, 0);
}
  


/* ヘッダーここから */

/* ロゴ */
.header_logo1 {
    margin-left: -6% !important;
    margin-top: -7% !important;
}
.header_logo2 {
    display: none !important;
}
@media screen and (max-width:1060px) {
    .header_logo1 {
        display: none !important;
    }
    .header_logo2{
        display: block !important;
        width: 200px;
        position: absolute;
        top: 0%;
        left: 10%;
    }
}



/* ヘッダーナビ */
nav.header_navi {
    width: 700px;
    height: 114px;
    margin-top: -130px;
    margin-left: auto;
    margin-right: 50px;
}

ul.header_navilist1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
    margin-top: -300px;
}

li.header_navilist2 {
    list-style: none;
    margin-left: 20px;
    color: #000;
    font-family: "Source Han Sans JP","源ノ角ゴシック JP"serif;
    font-weight: bold;
    font-size: 20px;
    line-height: 66px;
    text-align: right;
}

/* ヘッダーナビホバー時の動き */
a.mouse_under {
    background: linear-gradient(45deg,#000 50%,transparent 0)right /250% 100% no-repeat,
    linear-gradient(45deg,transparent 50%,#000 0)left /250% 100% no-repeat;
    transition: 0.5s;
}

a.mouse_under:hover {
    background-position: center;
    color: #fff;
}

/* ハンバーガーメニューここから */

/* PC非表示 */
.nav_toggle, .nav {
    display: none;
}

/* 1060px以下のサイズで見た場合のスタイル */

.nav_toggle {
    position: absolute;
    right: 10%;
    top: 7%;
}
@media screen and (max-width: 1060px) {

    .header_navi {
        display: none;
    }
    

    /* ハンバーガーのマーク */
    .nav_toggle {
        display: block;
        /* position: relative; */
        width: 1.75rem;
        height: 1.5rem;
        margin-left: 10px;
        z-index: 2;
    }
    .nav_toggle i {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #333;
        position: absolute;
        transition: transform 0.5s,opacity 0.5s;
    }
    .nav_toggle i:nth-child(1) {
        top: 0;
    }
    .nav_toggle i:nth-child(2) {
        top: 0;
        bottom: 0;
        margin: auto;
    }
    .nav_toggle i:nth-child(3) {
        bottom: 0;
    }

    /* クリックされた後のハンバーガーのマーク */
    .nav_toggle.show i:nth-child(1) {
        transform: translateY(10px) rotate(-45deg);
    }
    .nav_toggle.show i:nth-child(2) {
        opacity: 0;
    }
    .nav_toggle.show i:nth-child(3) {
        transform: translateY(-12px) rotate(45deg);
    }

    /* クリックで表示されるメニュー：クリックされる前 */
    .nav {
        display: flex;
        position: fixed;
        align-items: center;
        justify-content: center;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.5s,visibilty 0.5s;
        background-color: #fff;
        z-index: 1;
    }

    /* クリックで表示されるメニュー：クリックされた後 */
    .nav.show {
        opacity: 1;
        visibility: visible;
    }
}


/* ハンバーガーメニュー表示後のデザインここから */

.nav.show {
    display: block;
    background-color: #EAEAEA;
    width: 375px;

}


.h_nav_title1 {
    font-family: "Source Han Sans JP","源ノ角ゴシック JP"serif;
    font-weight: bold;
    font-size: 15px;
    color: #565555;
    margin-top: 5%;
    margin-left: 5%;
}

.nav_menu_li1 {
    font-family: "Source Han Sans JP","源ノ角ゴシック JP"serif;
    font-weight: bold;
    font-size: 15px;
    margin-left: 5%;
    margin-top: 5%;
}

.h_nav_title2 {
    font-family: "Source Han Sans JP","源ノ角ゴシック JP"serif;
    font-weight: bold;
    font-size: 15px;
    color: #565555;
    margin-top: 5%;
    margin-bottom: 5%;
}

.nav_menu_ul2 {
    margin-left: 5%;
    font-family: "Source Han Sans JP","源ノ角ゴシック JP"serif;
    font-weight: bold;
    font-size: 15px;
    margin-left: 5%;
    margin-top: 5%;
}

.nav_menu_li2 {
    margin-bottom: 24px;
}

.nav_menu_li3{
    margin-bottom: 24px;
}

.h_nav_title3 {
    font-family: "Source Han Sans JP","源ノ角ゴシック JP"serif;
    font-weight: bold;
    font-size: 15px;
    color: #565555;
    margin-top: 5%;
    margin-bottom: 5%;
}

.nav_menu_ul3 {
    width: 329px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

/* コンセプトタイトルここから */

.title {
    font-family: "Source Han Sans JP","源ノ角ゴシック JP"serif;
    font-size: 40px;
    line-height: 58px;
    font-weight: bold;
    text-align: left;
    display: block;
    margin-left: 5%;
    margin-top: 15%;
}
@media screen and (max-width:710px){
    .title {
        font-size: 25px;
        margin-top: 40%;
    }
}
@media screen and (max-width:375px) {
    .title {
        font-size: 25px;
        margin-top: 200px;
    }
}


@-webkit-keyframes ani {
    0% {
      transform: translate3d(0, 0, 0);
      text-shadow: 0em 0em 0 lightblue;
      color: black;
    }
    30% {
      transform: translate3d(0, 0, 0);
      text-shadow: 0em 0em 0 lightblue;
      color: black;
    }
    70% {
      transform: translate3d(0.08em, -0.08em, 0);
      text-shadow: -0.08em 0.08em lightblue;
      color: black;
    }
    100% {
      transform: translate3d(0.08em, -0.08em, 0);
      text-shadow: -0.08em 0.08em lightblue;
      color: black;
    }
}
@keyframes ani {
    0% {
      transform: translate3d(0, 0, 0);
      text-shadow: 0em 0em 0 lightblue;
      color: black;
    }
    30% {
      transform: translate3d(0, 0, 0);
      text-shadow: 0em 0em 0 lightblue;
      color: black;
    }
    70% {
      transform: translate3d(0.08em, -0.08em, 0);
      text-shadow: -0.08em 0.08em lightblue;
      color: black;
    }
    100% {
      transform: translate3d(0.08em, -0.08em, 0);
      text-shadow: -0.08em 0.08em lightblue;
      color: black;
    }
}
.popout span {
    position: relative;
    display: inline-block;
    -webkit-animation: ani 1s infinite alternate cubic-bezier(0.86, 0, 0.07, 1);
            animation: ani 1s infinite alternate cubic-bezier(0.86, 0, 0.07, 1);
}
.popout span:nth-last-child(1n) {
    -webkit-animation-delay: -0.1666666667s;
            animation-delay: -0.1666666667s;
}
.popout span:nth-last-child(2n) {
    -webkit-animation-delay: -0.3333333333s;
            animation-delay: -0.3333333333s;
}
.popout span:nth-last-child(3n) {
    -webkit-animation-delay: -0.5s;
            animation-delay: -0.5s;
}




/* 会社概要ここから */

.haikeishoku1 {
    background-color: #EAEAEA;
    width: 90%;
    height: auto;
    margin-left: auto;
    margin-top: 15%;
    display: flex;
}
@media screen and (max-width:710px){
    .haikeishoku1{
        background-color: transparent;
    }
}
@media screen and (max-width:375px){
    .haikeishoku1{
        display: block;
        background-color: transparent;
        position: relative;
    }
}


.haikeishoku3 p:nth-child(1) {
    padding-top: 10%;
}

.concept_text {
    font-family: "Source Han Sans JP","源ノ角ゴシック JP"serif;
    font-size: 20px;
    line-height: 29px;
    display: block;
    margin-top: -10%;
}
@media screen and (max-width:375px){
    .concept_text{
        font-size: 15px;
        line-height: 1;
        margin-left: -5%;
    }
}


.concept1 {
    display: block;
    width: 40%;
    height: auto;
    margin-left: 15%;
    margin-top: -10%;
}
@media screen and (max-width:710px){
    .concept1{
        display: none;
    }
}
@media screen and (max-width:375px){
    .concept1{
        display: block;
        width: 95%;
        position: absolute;
        top: 0;
        left: -21%;
    }
}


.ph_gazou {
    display: none !important;
}
@media screen and (max-width:375px) {
    .ph_gazou{
        display: block !important;
        width: 85%;
        position: absolute;
        top: 50%;
        left: 15%;
    }
}


@media screen and (max-width:375px){
    .r_haikeishoku1{
        background-color: #EAEAEA;
        height: 678px;
        width: 110%;
        margin-top: 30%;
        top: 0;
        left: -10%;
        position: relative;
    }
}


.r_haikeishoku2 p:nth-child(3) {
    padding-bottom: 10%;
}

/* 企業理念ここから */

.kigyourinenn {
    font-family: "Source Han Sans JP","源ノ角ゴシック JP"serif;
    font-size: 30px;
    line-height: 29px;
    text-align: center;
    font-weight: bold;
    margin: 5%;
}
@media screen and (max-width:375px){
    .kigyourinenn{
        font-size: 20px;
        margin-top: 20%;
    }
}


.font_d {
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.m_k {
    position: relative;
    z-index: 1; 
}
@media screen and (max-width:375px){
    .m_k{
        display: none !important;
    }
}


.font_d::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 10%;
    width: 0%;
    height: 40%;
    background: rgba(12, 189, 12, 0.5);
    z-index: -1;
    transition: all 0.8s;
    transition-delay: .8s;
}

.m_k::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 10%;
    width: 0%;
    height: 40%;
    background: rgba(252, 209, 20, 0.5);
    z-index: -1;
    transition: all 0.8s;
    transition-delay: .8s;
}
@media screen and (max-width:375px){
    .m_k::after{
        display: none !important;
    }
}


.font_d.isActive:after {
    width: 100%;
}

.m_k.isActive:after {
    width: 100%;
}
@media screen and (max-width:375px){
    .m_k.isActive:after{
        display: none !important;
    }
}


.haikeishoku2 {
    background-color: #EAEAEA;
    padding-top: 1%;
    padding-bottom: 1%;
}
@media screen and (max-width:375px) {
    .haikeishoku2{
        background-color: transparent;
    }
}


.haikeishoku3 {
    background-color: #fff;
    width: 60%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}
@media screen and (max-width:375px) {
    .haikeishoku3{
        background-color: transparent;
        width: 90%;
    }
}

.ph_gazou2 {
    display: none !important;
}
@media screen and (max-width:375px) {
    .ph_gazou2{
        display: block !important;
        width: 85%;
        margin-left: 20%;
        margin-bottom: 30%;
    }
}



.rinenn_text {
    font-family: "Source Han Sans JP","源ノ角ゴシック JP"serif;
    font-size: 20px;
    text-align: center;
    padding: 5%;
}
@media screen and (max-width:375px) {
    .rinenn_text{
        text-align: left;
        padding: 0;
        margin: 0;
    }
}


.r_haikeishoku2 {
    background-color: #fff;
    width: 60%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    padding-top: 10%;
    margin-top: -20%;
}
@media screen and (max-width:375px){
    .r_haikeishoku2{
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        background-color: #ccc;
        padding-top: 50%;
        margin-top: -70%;
    }
}


.rinenn_text:nth-child(-n+2) {
    margin-top: 10%;
    margin-bottom: 10%;
}

.rinenn_text:nth-child(n+3){
    margin-top: 10%;
    margin-bottom: 10%;
}


/* 店内写真ここから */

.concept_tennnai {
    display: flex;
    margin: 5%;
}
@media screen and (max-width:375px) {
    .concept_tennnai{
        width: 100%;
    }
}

@media screen and (max-width:375px) {
    .concept_tennnai div .concept2{
        display: none !important;
    }
}


.concept2 {
    width: 80%;
    height: auto;
    margin-left: 10%;
    margin-top: 10%;
}


.concept3 {
    width: 80%;
    height: auto;
    margin-left: 5%;
    margin-top: 25%;
}
@media screen and (max-width:375px) {
    .concept3{
        margin-top: 0;
        width: 90%;
        margin-left: -6%;
        padding-top: 10%;
    }
}


/* 文言ここから */

.haikeishoku4 {
    background: #EAEAEA;
    width: 90%;
    margin-right: 5%;
    margin-top: 30%;
    margin-bottom: 3%;
}
@media screen and (max-width:375px) {
    .haikeishoku4{
        background-color: transparent;
    }
}


.concept_monngonn {
    width: 40%;
    height: auto;
}
@media screen and (max-width:785px){
    .concept_monngonn{
        width: 50%;
        height: 50%;
    }
}

.concept_text_l {
    font-family: "Source Han Sans JP","源ノ角ゴシック JP"serif;
    font-size: 20px;
    line-height: 29px;
    display: block;
}
@media screen and (max-width:585px){
    .concept_text_l{
        font-size: 17px;
        line-height: 1;
    }
}


.conceptbox {
    display: flex;
}
@media screen and (max-width:375px) {
    .conceptbox{
        display: block;
    }
}


.cg1 {
    margin-top: -10%;
    margin-left: 5%;
}
@media screen and (max-width:785px){
    .cg1{
        margin-top: 10%;
    }
}
@media screen and (max-width:585px){
    .cg1{
        margin-top: 20%;
    }
}
@media screen and (max-width:480px){
    .cg1{
        margin-top: 30%;
    }
}
@media screen and (max-width:375px) {
    .cg1{
        display: none;
    }
}


.cg2 {
    margin-top: 5%;
}
@media screen and (max-width:785px){
    .cg2{
        margin-top: 10%;
    }
}
@media screen and (max-width:585px){
    .cg2{
        margin-top: 20%;
    }
}
@media screen and (max-width:480px){
    .cg2{
        margin-top: 30%;
    }
}
@media screen and (max-width:375px) {
    .cg2{
        display: none;
    }
}


.ct1 {
    margin-top: 15%;
    margin-left: 5%;
}
@media screen and (max-width:375px) {
    .ct1{
        margin-left: 10%;
    }
}


.ct2 {
    margin-top: 20%;
    margin-left: 10%;
}
@media screen and (max-width:375px) {
    .ct2{
        margin-bottom: 10%;
    }
}



@media screen and (max-width:375px){
    .r_haikeishoku3{
        background-color: #CCCCCC;
        margin-left: -5%;
        margin-top: -23%;
        padding-bottom: 30%;
    }
}


/* 空白用divここから */

div.kuuhaku {
    height: 2000px;
}

div.kuuhaku1 {
    height: 100px;
}

/* フッターここから */

/* 背景色 */
.footer {
    color: #ccc;
    background: #000;
    padding: 5%;
}
/* 文字 */
.footer a {
    color: #fff;
    text-decoration: none;
    font-family: "Source Han Sans JP","源ノ角ゴシック JP"serif;
    font-size: 20px;
    line-height: 50px;
}
@media screen and (max-width:1270px) {
    .footer a{
        font-size: 15px;
    }
}


/* フッターホバー時 */
.f_c li a {
    background: linear-gradient(45deg,#fff 50%,transparent 0)right /250% 100% no-repeat,
    linear-gradient(45deg,transparent 50%,#fff 0)left /250% 100% no-repeat;
    transition: 0.5s;
}
@media screen and (max-width:1060px) {
    .f_c li a{
        display: block;
        width: 50%;
    }
}


.f_c li a:hover {
    background-position: center;
    color: #000;
}

@media screen and (max-width:1060px){
    .f_c li:nth-of-type(n+5) a{
        margin-left: 70%;
        
    }
}
@media screen and (max-width:700px){
    .f_c li:nth-of-type(n+5) a{
        margin-left: 50%;
    }
}


.footer .footer_navi {
    display: flex;
}
@media screen and (max-width:1060px){
    .footer .footer_navi{
        display: block;
    }
}

@media screen and (max-width:1060px) {
    .f_c li:nth-child(5) a{
        margin-top: -200px;        
    }
}

@media screen and (max-width:1060px) {
    .f_c :nth-of-type(-n+4){
        margin-left: 5%;
    }
}
@media screen and (max-width:700px){
    .f_c :nth-of-type(-n+4){
        margin-left: 0;
    }
}

@media screen and (max-width:1060px) {
    .s_c li{
        margin-left: 10%;
    }
}
@media screen and (max-width:700px) {
    .s_c li{
        margin-left: 0%;
    }
}

@media screen and (max-width:1060px) {
    .s_c li img{
        display: block;
    }
}
@media screen and (max-width:700px){
    .s_c li img{
        margin-left: -20%;
    }
}


/* 店舗名ホバー時 */
.s_c li a {
    background: linear-gradient(45deg,#fff 50%,transparent 0)right /250% 100% no-repeat,
    linear-gradient(45deg,transparent 50%,#fff 0)left /250% 100% no-repeat;
    transition: 0.5s;
}

.s_c li a:hover {
    background-position: center;
    color: #000;
}

.footer.footer_navi h3 {
    margin: 0 0 10px 0;
    padding: 0;
    border-bottom: 1px solid #fff;
    font-size: 15px;
    line-height: 21px;
    font-family: "Source Han Sans JP","源ノ角ゴシック JP"serif;
}

@media screen and (max-width:1060px) {
    .footer_menu h3{
        margin-left: 10%;
        margin-top: 5%;
    }

}
@media screen and (max-width:700px){
    .footer_menu h3{
        margin-left: 0;
    }
}


.footer.footer_navi p {
    margin: 0;
    padding: 0 0 20px 0;
}

.footer.footer_navi.footer_menu {
    width: 22%;
}

.footer.footer_navi.footer_menu ul {
    margin: 0;
    padding: 0 0 20px 0;
    list-style: none;
}

.footer.footer_navi {
    width: 100%;
    padding: 20px 0 0 0;
}

/* マップ画像 */
.mapbutton {
    position: relative;
}

.mapbutton img {
    position: absolute;
    top: 7px;
    left: 350px;
    cursor:pointer;
}
@media screen and (max-width:1340px){
    .mapbutton img{
        display: none;
    }
}


.footer_menu {
    flex: 1;
}

/* 予約ボタン */
.yoyaku {
    margin-top: 20px;
    cursor: pointer;
    transition: .5s;
}

.yoyaku:hover {
    filter: invert(100);
    border: 3px solid #000;
}


@media screen and (max-width:1060px) {
    .g_c li{
        width: 35%;
        margin-left: auto;
        margin-right: auto;
    }
}
@media screen and (max-width:700px){
    .g_c li{
    margin-left: 0%;
    padding-left: 2%;
    }
}




.footer_logo {
    margin-left: -90px;
}
@media screen and (max-width:1060px) {
    .footer_logo{
        margin-left: 8%;
    }
}


.footer_top1 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
    margin-top: -70px;
    margin-bottom: 30px;
}
@media screen and (max-width:1060px) {
    .footer_top1{
        display: block;
    }
}

@media screen and (max-width:1060px) {
    .footer_top1 a img{
        margin-left: 170%;
    }
}
@media screen and (max-width:700px){
    .footer_top1 a img{
        margin-left: 210%;
    }
}


.footer_line {
    margin-bottom: 30px;
}

/* コピーライト */
.copyright {
    display: block;
    margin-left: auto;
    width: 100%;
    height: auto;
    margin-right: 0;
}
@media screen and (max-width:1060px) {
    .copyright{
        margin-right: 5%;
    }
}
