@charset "utf-8";

@font-face {
    font-family: "NotoSansJP-Black";
    src: url("../fonts/NotoSansJP-Black.otf") format("OpenType");
    font-weight: bold;
}

@font-face {
    font-family: "NotoSansJP-Bold";
    src: url("../fonts/NotoSansJP-Bold.otf") format("OpenType");
    font-weight: bold;
}

@font-face {
    font-family: "NotoSansJP-Medium";
    src: url("../fonts/NotoSansJP-Medium.otf") format("OpenType");
    font-weight: 500;
}

@font-face {
    font-family: "NotoSansJP-Regular";
    src: url("../fonts/NotoSansJP-Regular.otf") format("OpenType");
    font-weight: 500;
}

@font-face {
    font-family: "NotoSerifJP-Black";
    src: url("../fonts/NotoSerifJP-Black.otf") format("OpenType");
    font-weight: bold;
}

@font-face {
    font-family: "NotoSerifJP-Bold";
    src: url("../fonts/NotoSerifJP-Bold.otf") format("OpenType");
    font-weight: bold;
}

@font-face {
    font-family: "NotoSerifJP-Medium";
    src: url("../fonts/NotoSerifJP-Medium.otf") format("OpenType");
    font-weight: 500;
}

@font-face {
    font-family: "NotoSerifJP-Regular";
    src: url("../fonts/NotoSerifJP-Regular.otf") format("OpenType");
    font-weight: 400;
}

@font-face {
    font-family: "NotoSerifJP-SemiBold";
    src: url("../fonts/NotoSerifJP-SemiBold.otf") format("OpenType");
    font-weight: bold;
}

@font-face {
    font-family: "OleoScript-Bold";
    src: url("../fonts/OleoScript-Bold.ttf") format("TrueType");
    font-weight: bold;
}

@font-face {
    font-family: "OleoScript-Regular";
    src: url("../fonts/OleoScript-Regular.ttf") format("TrueType");
    font-weight: 400;
}

@font-face {
    font-family: "Poppins-ExtraBold";
    src: url("../fonts/Poppins-ExtraBold.ttf") format("truetype");
    font-weight: 900;
}

@font-face {
    font-family: "NotoSerif-Regular";
    src: url("../fonts/NotoSerif-Regular.ttf") format("truetype");
    font-weight: 900;
}

@font-face {
    font-family: "JosefinSans-Bold";
    src: url("../fonts/JosefinSans-VariableFont_wght.ttf") format("truetype");
    font-weight: 900;
}

@font-face {
    font-family: "JosefinSans-Regular";
    src: url("../fonts/JosefinSans-Regular.ttf") format("truetype");
    font-weight: 900;
}

/*html設定_______________________________________________________________html*/
html {
    -webkit-overflow-scrolling: touch;
}

/*body設定_______________________________________________________________body*/
body {
    display: flex;
    flex-flow: column;
    width: calc((100 / 1366) * 1366vw);
    min-height: 100vh;
    margin: 0;
    padding: 0;
    position: relative;
    overflow-x: hidden;
    opacity: 0;
    animation: fadeIn 3s ease;
    animation-fill-mode: forwards;
}

@keyframes fadeIn {
    100% {
        opacity: 1;
    }
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

/*footerをウィンドウ最下部へ固定する_______________________________________________________________wrapper*/
.wrapper {
    width: calc((100 / 1366) * 1366vw);
    min-height: 100vh;
    position: relative;
    /*←footerと相対位置*/
    padding-bottom: calc((100 / 1366) * 450vw);
    /*←footerの高さ*/
    box-sizing: border-box;
    /*←全て含めてmin-height:100vhに*/
}

/*___________________________________________________________________________________________スクロールバーデザイン*/
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track-piece {
    display: none;
}

::-webkit-scrollbar-track {

    background: rgba(0, 0, 0, 1);
}

::-webkit-scrollbar-thumb {
    height: 50px;
    background: #fff;
    border-radius: 5px;
}

:root {
    --font-jp: "NotoSansJP-Regular";
    --font-eng: "JosefinSans-Regular";
    --font-jp_b: "NotoSansJP-Bold";
    --font-eng_b: "JosefinSans-Bold";
    /*darkorange　R:255 G:140 B:0*/
    --menu-color: #ff8c00;
    /*blue R:0 G:0 B:255*/
    --blue: #0000ff;
    /*mediumturquoise R:72 G:209 B:204*/
    --mediumturquoise: #48d1cc;
    /*turquoise R:64 G:224 B:208*/
    --turquoise: #40e0d0;
}

/*___________________________________________________________________________________________要素のフェードイン*/
.js-fadeUp1 {
    opacity: 0;
    /* 最初は非表示 */
    transform: translateY(50px);
    /* 下に30pxの位置から */
    transition: opacity 1.0s, transform 1.0s;
    /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.js-fadeUp1.is-inview1 {
    opacity: 1;
    /* 表示領域に入ったら表示 */
    transform: translateY(0px);
    /* 30px上に移動する */
    transition-delay: .5s;
    /* フェード開始を0.5秒遅らせる */
}

.js-fadeUp2 {
    opacity: 0;
    /* 最初は非表示 */
    transform: translateY(50px);
    /* 下に30pxの位置から */
    transition: opacity 1.0s, transform 1.0s;
    /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.js-fadeUp2.is-inview2 {
    opacity: 1;
    /* 表示領域に入ったら表示 */
    transform: translateY(0px);
    /* 30px上に移動する */
    transition-delay: .5s;
    /* フェード開始を0.5秒遅らせる */
}

.js-fadeUp7 {
    opacity: 0;
    /* 最初は非表示 */
    transform: translateY(50px);
    /* 下に30pxの位置から */
    transition: opacity 1.0s, transform 1.0s;
    /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.js-fadeUp7.is-inview7 {
    opacity: 1;
    /* 表示領域に入ったら表示 */
    transform: translateY(0px);
    /* 30px上に移動する */
    transition-delay: .6s;
    /* フェード開始を0.5秒遅らせる */
}

.js-fadeUp8 {
    opacity: 0;
    /* 最初は非表示 */
    transform: translateY(50px);
    /* 下に30pxの位置から */
    transition: opacity 1.0s, transform 1.0s;
    /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.js-fadeUp8.is-inview8 {
    opacity: 1;
    /* 表示領域に入ったら表示 */
    transform: translateY(0px);
    /* 30px上に移動する */
    transition-delay: .6s;
    /* フェード開始を0.5秒遅らせる */
}

.js-fadeUp9 {
    opacity: 0;
    /* 最初は非表示 */
    transform: translateY(50px);
    /* 下に30pxの位置から */
    transition: opacity 1.0s, transform 1.0s;
    /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.js-fadeUp9.is-inview9 {
    opacity: 1;
    /* 表示領域に入ったら表示 */
    transform: translateY(0px);
    /* 30px上に移動する */
    transition-delay: .6s;
    /* フェード開始を0.5秒遅らせる */
}

.js-fadeUp10 {
    opacity: 0;
    /* 最初は非表示 */
    transform: translateY(50px);
    /* 下に30pxの位置から */
    transition: opacity 1.0s, transform 1.0s;
    /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.js-fadeUp10.is-inview10 {
    opacity: 1;
    /* 表示領域に入ったら表示 */
    transform: translateY(0px);
    /* 30px上に移動する */
    transition-delay: .7s;
    /* フェード開始を0.5秒遅らせる */
}

/*___________________________________________________________________________________________header*/

/*header設定*/
#header {
    display: none;
    width: calc((100 / 1366) * 1366vw);
    height: calc((100 / 1366) * 800vw);
    overflow: hidden;
    position: relative;
    /*h1の中央寄せ配置の起点とするためのrelative*/
}

.header_bg {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

/*___________________________________________________________________________________________g-nav*/

.site-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: calc((100 / 1366) * 100vw);
    background-color: rgba(0, 0, 0, 0);
    padding-top: calc((100 / 1366) * 30vw);
    padding-right: calc((100 / 1366) * 50vw);
    padding-left: calc((100 / 1366) * 50vw);
    position: fixed;
    z-index: 999;
    opacity: 0;
    animation-name: fadein1;
    animation-duration: .5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

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

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-simbol h2 {
    width: calc((100 / 1366) * 200vw);
    height: 100%;
}

.menu-simbol h2 a {
    display: block;
    width: 100%;
    height: 100%;
}

.menu-simbol h2 a.-after {
    display: none;
}

.menu-simbol h2 img {
    width: calc((100 / 1366) * 200vw);
}

.openbtn1 {
    display: none;
}

nav {
    margin-top: 10px;
}

nav ul {
    display: flex;
    justify-content: space-between;
    width: calc((100 / 1366) * 500vw);
    list-style: none;
}

.active_menu {
    font-family: var(--font-eng);
    font-size: calc((100 / 1366) * 14vw);
    color: var(--menu-color);
    margin-top: 6px;
    position: relative;
}

.active_menu::before {
    content: '';
    display: block;
    width: 100%;
    border: solid #ff8c00 1px;
    border-radius: 5px;
    position: absolute;
    top: 15px;
    left: 0;
    opacity: 0;
    animation-name: stretch-line;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}

@keyframes stretch-line {
    0% {
        width: 0;
        opacity: 0;
        transform: translateX(0);
    }

    100% {
        width: 100%;
        opacity: 1;
        transform: translateX(0px);
    }
}

nav ul li a {
    font-family: var(--font-eng);
    font-size: calc((100 / 1366) * 14vw);
    color: #fff;
    position: relative;
}

nav ul li.current a,
nav ul li a:hover {
    color: var(--menu-color);
    transition: all .2s ease;
}

/*メニュー下線の動き*/
nav li a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    top: 15px;
    left: 0;
    /*線の形状*/
    width: 100%;
    height: 2px;
    background: var(--menu-color);
    border-radius: 5px;
    /*アニメーションの指定*/
    transition: all .2s;
    transform: scale(0, 1);
    /*X方向0、Y方向1*/
    transform-origin: center top;
    /*上部中央基点*/
}

/*現在地とhoverの設定*/
nav li.current a::after,
nav li a:hover::after {
    transform: scale(1, 1);
    /*X方向にスケール拡大*/
}
/*___________________________________________________________________________________________コンテンツタイトルのポジション*/
.content_title {
    display: none;
    width: calc((100 / 1366) * 137vw);
    height: 20%;
    position: relative;
    top: 35%;
    left: 15%;
    text-align: center;
}

.content_title h3 {
    font-family: var(--font-eng);
    font-size: calc((100 / 1366) * 30vw);
    color: #fff;
}

/*___________________________________________________________________________________________スクロールでロゴ画像とメニューカラー切り替え*/
.header-logo.headerLogoScroll.-before {
    display: none;
}

.header-logo.-after {
    display: none;
}

/* スクロールがコンテンツに達したらヘッダーメニューのフォントカラー変更 */
.header-logo.headerLogoScroll.-after {
    display: block;
    position: absolute;
    top: calc((100 / 1366) * 30vw);
    left: calc((100 / 1366) * 50vw);
}

/* スクロールがコンテンツに達したらヘッダーメニューのフォントカラー変更 */
.g-navi ul li a.headerColorScroll {
    color: #000;
    transition: color 0.4s ease-out;
}

/* スクロールがコンテンツに達してからホバーしたらヘッダーメニューのフォントカラー変更 */
.g-navi ul li.current a.headerColorScroll,
.g-navi ul li a.headerColorScroll:hover {
    color: #ff8c00;
    transition: all .2s ease;
}

/* スクロールがコンテンツに達したらアクティブメニューのラインカラー変更 */
.active_menu.scroll::before {
    border: solid #ff8c00 1px;
}

/*___________________________________________________________________________________________スクロールダウン*/

/*スクロールダウン全体の場所*/
.scrolldown1 {
    display: none;
    height: 50px;
    /*描画位置※位置は適宜調整してください*/
    position: fixed;
    top: 60%;
    left: 20%;
    transform: translate(-50%, -50%);
    /*全体の高さ*/
    text-align: center;
    z-index: 10;
  }

  /*Scrollテキストの描写*/
  .scrolldown1 span {
    font-family: var(--font-eng);
    font-size: calc((100 / 1366) * 14vw);
    color: #fff;
  }

  /* 線の描写 */
  .scrolldown1::after {
    content: "";
    /*描画位置*/
    position: absolute;
    top: 0;
    left: 50%;
    /*線の形状*/
    width: 2px;
    height: 30px;
    background: #fff;
    margin-top: 20px;
    /*線の動き1.4秒かけて動く。永遠にループ*/
    animation: linemove 1.4s ease-in-out infinite;
    opacity: 0;
    transition: all 1.5s ease;
  }

  /*高さ・位置・透過が変化して線が上から下に動く*/
  @keyframes linemove {
    0% {
      height: 0;
      top: 0;
      opacity: 0;
    }

    30% {
      height: 30px;
      opacity: 1;
    }

    100% {
      height: 0;
      top: 50px;
      opacity: 0;
    }
  }

  .is-hidden {
    visibility: hidden;
    opacity: 0;
    transition: 0.5s all ease;
  }

/*___________________________________________________________________________________________content*/
#content {
    display: none;
    width: calc((100 / 1366) * 1366vw);
    height: calc((100 / 1366) * 900vw);
    background-color: rgba(244, 244, 244, 1);
    position: relative;
    z-index: 10;
}

.content_wrapper {
    padding-top: calc((100 / 1366) * 150vw);
    padding-right: calc((100 / 1366) * 150vw);
    padding-bottom: calc((100 / 1366) * 100vw);
    padding-left: calc((100 / 1366) * 150vw);
}

#address-data {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    text-align: center;
}

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

.mse {
    margin-left: calc((100 / 1366) * 170vw);
}

.address_content p {
    font-family: var(--font-jp);
    font-size: calc((100 / 1366) * 18vw);
    margin-bottom: 20px;
}

.address_content p:nth-child(2) {
    margin-bottom: calc((100 / 1366) * 50vw);
}

.address_content p:nth-child(5) {
    margin-bottom: calc((100 / 1366) * 50vw);
}

.address_content img {
    width: 30%;
}

#content .gmap {
    width: 50%;
    height: calc((100 / 1366) * 600vw);
    /*filter: grayscale(100%);*/
    overflow: hidden;
    transition: all 0.3s ease 0s;
}

#content .gmap:hover {
    filter: none;
}


/*___________________________________________________________________________________________gmap 矢印エフェクト*/
.gmap_arrow {
    display: inline-block;
    width: calc((100 / 1366) * 330vw);
    padding: 10px;
    font-family: var(--font-eng);
    font-size: calc((100 / 1366) * 20vw);
    color: #000;
    margin-top: 20px;
    cursor: pointer;
    position: relative;
    top: calc((100 / 1366) * 0vw);
    left:calc((100 / 1366) * 760vw);
    z-index: 999;
    text-decoration: none;
}

.gmap_arrow::after {
    content: "";
    display: block;
    width: calc((100 / 1366) * 25vw);
    height: 6px;
    border: none;
    border-right: 2px solid #000;
    border-bottom: 1px solid #000;
    margin-top: 10px;
    position: absolute;
    top: 15%;
    right: calc((100 / 1366) * 65vw);
    transform: skew(45deg);
    transition: .2s;
}

.gmap_arrow:hover::after {
    right: calc((100 / 1366) * 50vw);
    width: calc((100 / 1366) * 40vw);
}

.open-time {
    font-family: var(--font-eng);
    font-size: calc((100 / 1366) * 20vw);
    margin-top: 30px;
}

.holiday {
    font-family: var(--font-jp);
    font-size: calc((100 / 1366) * 16vw);
}

/*___________________________________________________________________________________________inquiry 矢印エフェクト*/
.inquiry_arrow {
    display: inline-block;
    width: 100%;
    font-family: var(--font-jp);
    font-size: calc((100 / 1366) * 16vw);
    color: #000;
    margin-top: 30px;
    cursor: pointer;
    position: relative;
    top: 0px;
    left: 0px;
    text-decoration: none;
}

.inquiry_arrow::after {
    content: "";
    display: block;
    position: absolute;
    top: 40%;
    right: calc((100 / 1366) * 400vw);
    width: calc((100 / 1366) * 35vw);
    height: 6px;
    border: none;
    border-right: 2px solid #000;
    border-bottom: 1px solid #000;
    transform: skew(45deg);
    transition: .2s;
}

.inquiry_arrow:hover::after {
    right: calc((100 / 1366) * 390vw);
    width: calc((100 / 1366) * 45vw);
}


/*___________________________________________________________________________________________footer*/

#footer {
    display: none;
    width: 100%;
    height: calc((100 / 1366) * 468vw);
    background-color: rgba(255, 255, 255, 1);
    position: absolute;
    /*←絶対位置*/
    bottom: 0;
    /*下に固定*/
    z-index: 999;
}

.footer_wrapper {
    width: 100%;
    height: 100%;
    padding-top: calc((100 / 1366) * 100vw);
    padding-right: calc((100 / 1366) * 100vw);
    padding-bottom: calc((100 / 1366) * 20vw);
    padding-left: calc((100 / 1366) * 100vw);
}

.footer_inner {
    width: 100%;
    background-color: rgba(0, 0, 0, 0);
    margin-top: calc((100 / 1366) * 60vw);
}

.footer_logo img {
    width: calc((100 / 1366) * 200vw);
    object-fit: cover;
    object-position: left top;
}

.footer_address {
    display: none;
    width: 100%;
    text-align: center;
    font-family: var(--font-jp);
    font-size: calc((100 / 1366) * 14vw);
    color: #000;
    line-height: 2;
}

.footer_address .mgr {
    margin-right: calc((100 / 1366) * 20vw);
}

.footer_inner2 {
    width: 100%;
    background-color: rgba(0, 0, 0, 0);
    margin-top: calc((100 / 1366) * 50vw);
}

.footer_nav {
    width: 100%;
}

.footer_nav_li {
    display: flex;
    justify-content: center;
    width: 100%;
}

.footer_nav_content {
    display: flex;
    justify-content: space-between;
    width: 35%;
}

.footer_nav_item {
    cursor: pointer;
}

.footer_nav_active a {
    font-family: var(--font-eng);
    font-size: calc((100 / 1366) * 14vw);
    color: var(--menu-color);
    border-left: 2px solid #ff8c00;
    padding-top: calc((100 / 480) * 1vw);
    padding-left: calc((100 / 1366) * 2vw);
    cursor: auto;
    pointer-events: none;
}

.footer_nav_item a {
    font-family: var(--font-eng);
    font-size: calc((100 / 1366) * 14vw);
    color: #000;
    border-left: 2px solid #000;
    padding-top: calc((100 / 480) * 1vw);
    padding-left: calc((100 / 1366) * 2vw);
    transition: all 0.3s ease 0s;
}

.footer_nav_item a:hover {
    color: var(--menu-color);
    border-color: var(--menu-color);
}

.footer_sns {
    width: 100%;
    margin-top: 50px;
}

.footer_sns ul {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
    gap: 15px;
}

.footer_sns ul li {
    display: inline-block;
    width: calc((100 / 1366) * 80vw);
    height: calc((100 / 1366) * 80vw);
}

.sns-icon img {
    width: 35%;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.sns-icon.sns-x img {
    width: 30%;
}

.sns-icon.sns-x img:hover {
    content: url('../images/sns_X_Logo_BlackWhite.png');
    filter: drop-shadow(0 3px 2px rgba(0, 0, 0, .6));
}

.sns-icon.sns-ig:hover img {
    content: url('../images/sns_IG_Logo_GradientWhite.png');
    filter: drop-shadow(0 3px 2px rgba(0, 0, 0, .2));
}

.sns-icon.sns-fb:hover img {
    content: url('../images/sns_FB_Logo_Primary.png');
    filter: drop-shadow(0 3px 2px rgba(0, 0, 0, .6));
}

.footer_copylight {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 30px;
}

.footer_copylight p {
    font-family: var(--font-eng);
    font-size: calc((100 / 1366) * 14vw);
    color: #000;
}

.footer_copylight img {
    width: calc((100 / 1366) * 100vw);
    margin-left: 10px;
}
/*____________________________________________________________________________________________________________media_768*/
@media (max-width:768px) {

    a {
        text-decoration: none;
    }

    li {
        list-style: none;
    }

    /*footerをウィンドウ最下部へ固定する________________________________________________________________768_wrapper*/
    .wrapper {
        width: calc((100 / 768) * 768vw);
        min-height: 100vh;
        position: relative;
        /*←footerと相対位置*/
        padding-bottom: calc((100 / 768) * 300vw);
        /*←footerの高さ*/
        box-sizing: border-box;
        /*←全て含めてmin-height:100vhに*/
    }

    /*___________________________________________________________________________________________768_スクロールバーデザイン*/
    ::-webkit-scrollbar {
        width: 5px;
    }

    ::-webkit-scrollbar-track-piece {
        display: none;
    }

    ::-webkit-scrollbar-track {

        background: rgba(0, 0, 0, 1);
    }

    ::-webkit-scrollbar-thumb {
        height: 50px;
        background: #fff;
        border-radius: 5px;
    }

    /*header設定*/
    #header {
        display: none;
        width: 100%;
        height: calc((100 / 768) * 439vw);
        overflow: hidden;
        position: relative;
        /*h1の中央寄せ配置の起点とするためのrelative*/
    }

    .header_bg {
        width: 100%;
        height: calc((100 / 768) * 439vw);
        position: fixed;
        top: 0;
        left: 0;
        z-index: -1;
    }

    /*___________________________________________________________________________________________768_g-nav*/

    .site-header {
        display: flex;
        justify-content: space-between;
        width: 100%;
        height: calc((100 / 768) * 100vw);
        background-color: rgba(0, 0, 0, 0);
        padding-top: calc((100 / 768) * 30vw);
        padding-right: calc((100 / 768) * 50vw);
        padding-left: calc((100 / 768) * 50vw);
        position: fixed;
        opacity: 0;
        animation-name: fadein1;
        animation-duration: .5s;
        animation-timing-function: ease-out;
        animation-fill-mode: forwards;
    }

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

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .menu-simbol {
        width: 100%;
        height: 50%;
    }

    .menu-simbol h2 {
        width: calc((100 / 768) * 200vw);
        height: 100%;
        transition: all 0.3s ease 0s;
    }

    .menu-simbol h2 a {
        display: block;
        width: 100%;
        height: 100%;
    }

    .menu-simbol h2 img {
        width: calc((100 / 768) * 200vw);
    }

    .openbtn1 {
        display: inline-block !important;
        position: fixed;
        /*ボタンを最前面に*/
        z-index: 9999;
        top: 35px;
        right: 50px;
        cursor: pointer;
        width: 50px;
        height: 50px;
    }

    .openbtn1 span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 1px;
        border-radius: 2px;
        background-color: #fff;
        width: 70%;
    }

    .openbtn1.scroll span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 1px;
        border-radius: 2px;
        background-color: #000;
        width: 70%;
    }

    .openbtn1 span:nth-of-type(1) {
        top: 15px;
    }

    .openbtn1 span:nth-of-type(2) {
        top: 23px;
    }

    .openbtn1 span:nth-of-type(3) {
        top: 31px;
    }

    .openbtn1.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 50%;
    }

    .openbtn1.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn1.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 50%;
    }

    nav.panelactive {
        top: 0;
        opacity: 1;
        margin-top: 0;
        transform: none;
    }

    nav {
        width: 100%;
        height: 25vh;
        /*ナビの高さ*/
        background-color: var(--menu-color);
        margin-top: 0px;
        position: fixed;
        z-index: -1;
        top: -150%;
        left: 0;
        opacity: 0;
        /*動き*/
        transition: all 0.6s;
        transform: none;
    }

    nav ul {
        display: flex;
        justify-content: space-between;
        width: calc((100 / 768) * 500vw);
        list-style: none;
        position: absolute;
        z-index: 999;
        top: 80%;
        left: 50%;
        transform: translate(-50%, -50%);
    }



    nav ul li a {
        font-family: var(--font-eng);
        font-size: calc((100 / 768) * 14vw);
        color: #fff;
        position: relative;
    }

    nav ul li.current a,
    nav ul li a:hover {
        color: var(--blue);
        transition: all .2s ease;
    }

    /*メニュー下線の動き*/
    nav li a::after {
        content: '';
        /*絶対配置で線の位置を決める*/
        position: absolute;
        top: 15px;
        left: 0;
        /*線の形状*/
        width: 100%;
        height: 2px;
        background: var(--blue);
        border-radius: 5px;
        /*アニメーションの指定*/
        transition: all .2s;
        transform: scale(0, 1);
        /*X方向0、Y方向1*/
        transform-origin: center top;
        /*上部中央基点*/
    }

    /*現在地とhoverの設定*/
    nav li.current a::after,
    nav li a:hover::after {
        transform: scale(1, 1);
        /*X方向にスケール拡大*/
    }

    .active_menu {
        font-family: var(--font-eng);
        font-size: calc((100 / 768) * 14vw);
        color: #0000ff;
        margin-top: 6px;
        position: relative;
    }

    .active_menu::before {
        content: '';
        display: block;
        width: 100%;
        border: solid #0000ff 1.5px;
        border-radius: 5px;
        position: absolute;
        top: 15px;
        left: 0%;
        opacity: 0;
        animation-name: stretch-line;
        animation-duration: 1s;
        animation-delay: 5s;
        animation-timing-function: ease;
        animation-fill-mode: forwards;
    }

    @keyframes stretch-line {
        0% {
            width: 0;
            opacity: 0;
            transform: translateX(0);
        }

        100% {
            width: 100%;
            color: var(--blue);
            opacity: 1;
            transform: translateX(0px);
        }
    }

    /*___________________________________________________________________________________________スクロールでロゴ画像とメニューカラー切り替え*/
    .header-logo.headerLogoScroll.-before {
        display: none;
    }

    .header-logoheaderLogoScroll.-after {
        display: none;
    }

    /* スクロールがコンテンツに達したらヘッダーメニューのフォントカラー変更 */
    .header-logo.headerLogoScroll.-after {
        display: block;
        width: 30%;
        height: 50%;
        position: absolute;
        top: calc((100 / 768) * 30vw);
        left: calc((100 / 768) * 50vw);
    }

    /* スクロールがコンテンツに達したらヘッダーメニューのフォントカラー変更 */
    .g-navi ul li a.headerColorScroll {
        color: #000;
        transition: color 0.4s ease-out;
    }

    /* スクロールがコンテンツに達してからホバーしたらヘッダーメニューのフォントカラー変更 */
    .g-navi ul li.current a.headerColorScroll,
    .g-navi ul li a.headerColorScroll:hover {
        color: orange;
        transition: all .2s ease;
    }

    /* スクロールがコンテンツに達したらアクティブメニューのラインカラー変更 */
    .active_menu.scroll::before {
        border: solid #0000ff 1px;
    }

    /*footer手前でロゴとナビを削除*/
    .is-hidden {
        visibility: hidden;
        opacity: 0;
        transition: .5s all ease;
    }

    /*___________________________________________________________________________________________/スクロールでロゴ画像とメニューカラー切り替え*/

    .content_title {
        display: none;
        width: calc((100 / 768) * 100vw);
        height: calc((100 / 768) * 30vw);
        position: relative;
        top: 35%;
        left: 15%;
        text-align: center;
    }

    .content_title h3 {
        font-family: var(--font-eng);
        font-size: calc((100 / 768) * 25vw);
        color: #fff;
    }

    /*___________________________________________________________________________________________768_スクロールダウン*/

    /*スクロールダウン全体の場所*/
    .scrolldown1 {
        display: none;
        height: 50px;
        /*描画位置※位置は適宜調整してください*/
        position: fixed;
        top: 50%;
        left: 21%;
        transform: translate(-50%, -50%);
        /*全体の高さ*/
        text-align: center;
        z-index: 10;
    }

    /*Scrollテキストの描写*/
    .scrolldown1 span {
        font-family: var(--font-eng);
        font-size: calc((100 / 768) * 14vw);
        color: #fff;
    }

    /* 線の描写 */
    .scrolldown1::after {
        content: "";
        /*描画位置*/
        position: absolute;
        top: 0;
        left: 50%;
        /*線の形状*/
        width: 2px;
        height: 30px;
        background: #fff;
        margin-top: 20px;
        /*線の動き1.4秒かけて動く。永遠にループ*/
        animation: linemove 1.4s ease-in-out infinite;
        opacity: 0;
        transition: all 1.5s ease;
    }

    /*高さ・位置・透過が変化して線が上から下に動く*/
    @keyframes linemove {
        0% {
            height: 0;
            top: 0;
            opacity: 0;
        }

        30% {
            height: 30px;
            opacity: 1;
        }

        100% {
            height: 0;
            top: 50px;
            opacity: 0;
        }
    }

    .is-hidden {
        visibility: hidden;
        opacity: 0;
        transition: .5s all ease;
    }

    /*___________________________________________________________________________________________768_content*/
    #content {
        display: none;
        width: 100%;
        height: 100%;
        background-color: rgba(244, 244, 244, 1);
        margin-top: 0px;
        position: relative;
        z-index: 10;
    }

    .content_wrapper {
        padding-top: calc((100 / 768) * 50vw);
        padding-right: calc((100 / 768) * 50vw);
        padding-bottom: calc((100 / 768) * 50vw);
        padding-left: calc((100 / 768) * 50vw);
    }

    #address-data {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        height: 100%;
        text-align: center;
    }

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

    .mse {
        margin-left: calc((100 / 768) * 150vw);
    }

    .address_content p {
        font-family: var(--font-jp);
        font-size: calc((100 / 768) * 14vw);
        margin-bottom: calc((100 / 768) * 10vw);
    }

    .address_content p:nth-child(2) {
        margin-bottom: calc((100 / 768) * 30vw);
    }

    .address_content p:nth-child(5) {
        margin-bottom: calc((100 / 768) * 30vw);
    }

    .address_content img {
        width: 30%;
    }

    #content .gmap {
        width: 50%;
        height: calc((100 / 768) * 400vw);
        /*filter: grayscale(100%);*/
        overflow: hidden;
        transition: all 0.3s ease 0s;
    }

    #content .gmap:hover {
        filter: none;
    }

    /*___________________________________________________________________________________________gmap 矢印エフェクト*/
    .gmap_arrow {
        display: inline-block;
        width: calc((100 / 768) * 180vw);
        padding: 10px 10px 10px 20px;
        text-align: left;
        font-family: var(--font-eng);
        font-size: calc((100 / 768) * 16vw);
        color: #000;
        margin-top: 0px;
        cursor: pointer;
        position: relative;
        top:calc((100 / 768) * 15vw);
        left:calc((100 / 768) * 500vw);
        text-decoration: none;
    }

    .gmap_arrow::after {
        content: "";
        display: block;
        width: calc((100 / 768) * 25vw);
        height: 6px;
        border: none;
        border-right: 2px solid #000;
        border-bottom: 1px solid #000;
        margin-top: 12px;
        position: absolute;
        top: 10%;
        right: calc((100 / 768) * 30vw);
        transform: skew(45deg);
        transition: .2s;
    }

    .gmap_arrow:hover::after {
        right: calc((100 / 768) * 20vw);
        width: calc((100 / 768) * 35vw);
    }

    .open-time {
        font-family: var(--font-eng);
        font-size: calc((100 / 768) * 16vw);
        margin-top: 30px;
    }

    .holiday {
        font-family: var(--font-jp);
        font-size: calc((100 / 768) * 16vw);
    }


    /*___________________________________________________________________________________________tab_inquiry 矢印エフェクト*/
    .inquiry_arrow {
        display: inline-block;
        width: 100%;
        font-family: var(--font-jp);
        font-size: calc((100 / 768) * 12vw);
        color: #000;
        margin: 2px;
        cursor: pointer;
        position: relative;
        text-decoration: none;
    }

    .inquiry_arrow::after {
        content: "";
        display: block;
        position: absolute;
        top: 45%;
        right: calc((100 / 768) * 240vw);
        width: calc((100 / 768) * 25vw);
        height: 6px;
        border: none;
        border-right: 2px solid #000;
        border-bottom: 1px solid #000;
        transform: skew(45deg);
        transition: .2s;
    }

    .inquiry_arrow:hover::after {
        right: calc((100 / 768) * 230vw);
        width: calc((100 / 768) * 35vw);
    }

    /*___________________________________________________________________________________________768_footer*/

    #footer {
        display: none;
        width: 100%;
        height: calc((100 / 768) * 318vw);
        background-color: rgba(255, 255, 255, 1);
        position: absolute;
        /*←絶対位置*/
        bottom: 0;
        /*下に固定*/
        z-index: 10;
    }

    .footer_wrapper {
        width: 100%;
        height: 100%;
        padding-top: calc((100 / 768) * 30vw);
        padding-right: calc((100 / 768) * 100vw);
        padding-bottom: calc((100 / 768) * 20vw);
        padding-left: calc((100 / 768) * 100vw);
    }

    .footer_inner {
        width: 100%;
        background-color: rgba(0, 0, 0, 0);
        margin-top: calc((100 / 768) * 30vw);
    }

    .footer_logo img {
        width: calc((100 / 768) * 200vw);
        object-fit: cover;
        object-position: left top;
    }

    .footer_address {
        width: 100%;
        text-align: center;
        font-family: var(--font-jp);
        font-size: calc((100 / 768) * 12vw);
        color: #000;
        line-height: 2;
    }

    .footer_address .mgr {
        margin-right: calc((100 / 768) * 20vw);
    }

    .footer_inner2 {
        width: 100%;
        background-color: rgba(0, 0, 0, 0);
        margin-top: calc((100 / 768) * 0vw);
    }

    .footer_nav {
        width: 100%;
    }

    .footer_nav_li {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .footer_nav_content {
        display: flex;
        justify-content: space-between;
        width: 65%;
    }

    .footer_nav_item {
        cursor: pointer;
    }

    .footer_nav_active a {
        font-family: var(--font-eng);
        font-size: calc((100 / 768) * 13vw);
        color: var(--menu-color);
        border-left: 2px solid #ff8c00;
        padding-top: calc((100 / 480) * 1vw);
        padding-left: calc((100 / 768) * 2vw);
        cursor: auto;
        pointer-events: none;
    }

    .footer_nav_item a {
        font-family: var(--font-eng);
        font-size: calc((100 / 768) * 13vw);
        color: #000;
        border-left: 2px solid #000;
        padding-top: calc((100 / 480) * 1vw);
        padding-left: calc((100 / 768) * 3vw);
        transition: all 0.3s ease 0s;
    }

    .footer_nav_item a:hover {
        color: var(--menu-color);
        border-color: var(--menu-color);
    }

    .footer_sns {
        margin-top: 30px;
    }

    .footer_sns ul li {
        width: calc((100 / 768) * 70vw);
        height: calc((100 / 768) * 70vw);
    }

    .footer_copylight {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 30px;
    }

    .footer_copylight p {
        font-family: var(--font-eng);
        font-size: calc((100 / 768) * 14vw);
        color: #000;
    }

    .footer_copylight img {
        width: calc((100 / 768) * 100vw);
        margin-left: 10px;
    }

}

/*____________________________________________________________________________________________________________media_480*/
@media (max-width:480px) {

    a {
        text-decoration: none;
    }

    li {
        list-style: none;
    }

    /*footerをウィンドウ最下部へ固定する________________________________________________________________480_wrapper*/
    .wrapper {
        width: calc((100 / 480) * 480vw);
        min-height: 100vh;
        position: relative;
        /*←footerと相対位置*/
        padding-bottom: calc((100 / 480) * 280vw);
        /*←footerの高さ*/
        box-sizing: border-box;
        /*←全て含めてmin-height:100vhに*/
    }

    /*___________________________________________________________________________________________480_スクロールバーデザイン*/
    ::-webkit-scrollbar {
        width: 5px;
    }

    ::-webkit-scrollbar-track-piece {
        display: none;
    }

    ::-webkit-scrollbar-track {

        background: rgba(0, 0, 0, 1);
    }

    ::-webkit-scrollbar-thumb {
        height: 50px;
        background: #fff;
        border-radius: 5px;
    }

    /*___________________________________________________________________________________________要素のフェードイン*/

    .js-fadeUp9 {
        opacity: 0;
        /* 最初は非表示 */
        transform: translateY(50px);
        /* 下に30pxの位置から */
        transition: opacity 1.0s, transform 1.0s;
        /* 透過率と縦方向の移動を0.8秒 */
    }

    /* フェードイン(スクロールした後) */
    .js-fadeUp9.is-inview9 {
        opacity: 1;
        /* 表示領域に入ったら表示 */
        transform: translateY(0px);
        /* 30px上に移動する */
        transition-delay: 1.5s;
        /* フェード開始を0.5秒遅らせる */
    }

    .js-fadeUp10 {
        opacity: 0;
        /* 最初は非表示 */
        transform: translateY(50px);
        /* 下に30pxの位置から */
        transition: opacity .5s, transform 1.0s;
        /* 透過率と縦方向の移動を0.8秒 */
    }

    /* フェードイン(スクロールした後) */
    .js-fadeUp10.is-inview10 {
        opacity: 1;
        /* 表示領域に入ったら表示 */
        transform: translateY(0px);
        /* 30px上に移動する */
        transition-delay: 0s;
        /* フェード開始を0.5秒遅らせる */
    }

    /*header設定*/
    #header {
        display: none;
        width: 100%;
        height: calc((100 / 480) * 300vw);
        overflow: hidden;
        position: relative;
        /*h1の中央寄せ配置の起点とするためのrelative*/
    }

    .header_bg {
        width: 100%;
        height: auto;
        position: fixed;
        top: 0;
        left: 0;
        z-index: -1;
    }

    /*___________________________________________________________________________________________480_スクロールダウン*/

    /*スクロールダウン全体の場所*/
    .scrolldown1 {
        display: none;
        height: 50px;
        /*描画位置※位置は適宜調整してください*/
        position: fixed;
        top: 20%;
        right: 12%;
        transform: translate(-50%, -50%);
        /*全体の高さ*/
        text-align: center;
        z-index: 10;
    }

    /*Scrollテキストの描写*/
    .scrolldown1 span {
        font-family: var(--font-eng);
        font-size: calc((100 / 480) * 12vw);
        color: #fff;
    }

    /* 線の描写 */
    .scrolldown1::after {
        content: "";
        /*描画位置*/
        position: absolute;
        top: 0;
        left: 50%;
        /*線の形状*/
        width: 2px;
        height: 30px;
        background: #fff;
        margin-top: 20px;
        /*線の動き1.4秒かけて動く。永遠にループ*/
        animation: linemove 1.4s ease-in-out infinite;
        opacity: 0;
        transition: all 1.5s ease;
    }

    /*高さ・位置・透過が変化して線が上から下に動く*/
    @keyframes linemove {
        0% {
            height: 0;
            top: 0;
            opacity: 0;
        }

        30% {
            height: 30px;
            opacity: 1;
        }

        100% {
            height: 0;
            top: 50px;
            opacity: 0;
        }
    }

    /*___________________________________________________________________________________________480_g-nav*/

    .site-header {
        display: block;
        width: 100%;
        height: calc((100 / 480) * 100vw);
        background-color: rgba(0, 0, 0, 0);
        padding-top: calc((100 / 480) * 30vw);
        padding-right: calc((100 / 480) * 50vw);
        padding-left: calc((100 / 480) * 50vw);
        text-align: left;
        position: fixed;
        top: 0%;
        opacity: 0;
        animation-name: fadein1;
        animation-duration: .5s;
        animation-timing-function: ease-out;
        animation-fill-mode: forwards;
    }

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

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .menu-simbol {
        width: 100%;
        height: 50%;
    }

    .menu-simbol h2 {
        width: 100%;
        height: 100%;
    }

    .menu-simbol h2 a {
        display: block;
        width: 100%;
        height: 100%;
    }

    .menu-simbol h2 img {
        width: calc((100 / 480) * 150vw);
    }

    .openbtn1 {
        display: inline-block;
        position: fixed;
        /*ボタンを最前面に*/
        z-index: 9999;
        top: 25%;
        right: 10%;
        cursor: pointer;
        width: 50px;
        height: 50px;
    }

    .openbtn1 span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 1px;
        border-radius: 2px;
        background-color: #fff;
        width: 70%;
    }

    .openbtn1.scroll span {
        display: inline-block;
        transition: all 0s;
        position: absolute;
        left: 14px;
        height: 1px;
        border-radius: 2px;
        background-color: #000;
        width: 70%;
    }

    .openbtn1 span:nth-of-type(1) {
        top: 15px;
    }

    .openbtn1 span:nth-of-type(2) {
        top: 23px;
    }

    .openbtn1 span:nth-of-type(3) {
        top: 31px;
    }

    .openbtn1.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 40%;
    }

    .openbtn1.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn1.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 40%;
    }

    nav {
        width: 100%;
        height: 100vh;
        /*ナビの高さ*/
        background-color: var(--menu-color);
        margin-top: 0px;
        position: fixed;
        top: -800%;
        left: 0;
        opacity: 0;
        /*動き*/
        transition: all 0.6s;
        transform: none;
    }

    nav ul {
        display: block;
        justify-content: space-between;
        width: 80%;
        list-style: none;
        position: absolute;
        z-index: 999;
        top: 60%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    nav ul li {
        margin-top: 20px;
        transition: all .3s ease;
    }

    nav ul li:hover {
        background: rgba(255, 255, 0, .3);
    }

    nav ul li a {
        font-family: var(--font-eng);
        font-size: calc((100 / 480) * 14vw);
        color: #fff;
        position: relative;
    }

    /*メニュー下線の動き*/
    nav ul li a:hover {
        color: #0000ff;
    }

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

    /*現在地とhoverの設定*/
    nav li:hover a::after {
        color: #0000ff;
        transform: scale(1, 1);
        /*X方向にスケール拡大*/
    }

    nav.panelactive {
        top: 0%;
        opacity: 1;
        transform: none;
    }

    .active_menu {
        font-family: var(--font-eng);
        font-size: calc((100 / 480) * 14vw);
        color: #0000ff; /*blue R:0 G:0 B:255*/
        margin-top: 20px;
        pointer-events: none;
        position: relative;
    }

    .active_menu::before {
        content: '';
        display: block;
        width: 100%;
        border: solid #0000ff 1px;
        /*blue R:0 G:0 B:255*/
        border-radius: 5px;
        position: absolute;
        top: 15px;
        left: 0%;
        opacity: 0;
        animation-name: stretch-line;
        animation-duration: 1s;
        animation-delay: 5s;
        animation-timing-function: ease;
        animation-fill-mode: forwards;
    }

    @keyframes stretch-line {
        0% {
            width: 0;
            opacity: 0;
            transform: translateX(0);
        }

        100% {
            width: 14%;
            color: #0000ff;
            /*blue R:0 G:0 B:255*/
            opacity: 1;
            transform: translateX(0px);
        }
    }

    /*___________________________________________________________________________________________スクロールでロゴ画像とメニューカラー切り替え*/
    .header-logo.headerLogoScroll.-before {
        display: none;
    }

    .header-logo.-after {
        display: none;
    }

    /* 変更ロゴの位置*/
    .header-logo.headerLogoScroll.-after {
        display: block;
        width: 30%;
        height: 50%;
        position: absolute;
        top: calc((100 / 480) * 30vw);
        left: calc((100 / 480) * 50vw);
    }

    /* スクロールがコンテンツに達したらヘッダーメニューのフォントカラー変更 */
    .g-navi ul li a.headerColorScroll {
        color: #000;
        transition: color 0.4s ease-out;
    }

    /* スクロールがコンテンツに達してからホバーしたらヘッダーメニューのフォントカラー変更 */
    .g-navi ul li.current a.headerColorScroll,
    .g-navi ul li a.headerColorScroll:hover {
        color: #0000ff; /*blue R:0 G:0 B:255*/
        transition: all .2s ease;
    }

    /* スクロールがコンテンツに達したらアクティブメニューのラインカラー変更 */
    .active_menu.scroll::before {
        border: solid #0000ff 1px;
    }

    /*footer手前でロゴとナビを削除*/
    .is-hidden {
        visibility: hidden;
        opacity: 0;
        transition: .5s all ease;
    }

    /*___________________________________________________________________________________________/スクロールでロゴ画像とメニューカラー切り替え*/

    .content_title {
        display: none;
        width: calc((100 / 480) * 90vw);
        height: calc((100 / 480) * 30vw);
        position: relative;
        top: 45%;
        left: 10%;
        z-index: 1;
        text-align: center;
    }

    .content_title h3 {
        font-family: var(--font-eng);
        font-size: calc((100 / 480) * 20vw);
        color: #fff;
    }

    /*___________________________________________________________________________________________480_content*/
    #content {
        display: none;
        width: 100%;
        height: 100%;
        background-color: rgba(244, 244, 244, 1);
        margin-top: 0px;
        position: relative;
        z-index: 10;
    }

    .content_wrapper {
        padding-top: calc((100 / 480) * 30vw);
        padding-right: calc((100 / 480) * 30vw);
        padding-bottom: calc((100 / 480) * 50vw);
        padding-left: calc((100 / 480) * 30vw);
    }

    #address-data {
        display: flex;
        flex-direction: column-reverse;
        width: 100%;
        height: 100%;
        text-align: center;
    }

    .address_content {
        width: 100%;
        padding-top: 100px;
        text-align: left;
    }

    .mse {
        margin-left: 10px;
    }

    .address_content br {
        display: none;
    }

    .address_content p {
        font-family: var(--font-jp_b);
        font-size: calc((100 / 480) * 14vw);
        margin-bottom: calc((100 / 480) * 10vw);
    }

    .address_content p:nth-child(2) {
        margin-bottom: calc((100 / 480) * 30vw);
    }

    .address_content p:nth-child(5) {
        margin-bottom: calc((100 / 480) * 30vw);
    }

    .address_content img {
        width: 30%;
    }

    #content .gmap {
        width: 100%;
        height: calc((100 / 480) * 400vw);
        /*filter: grayscale(100%);*/
        overflow: hidden;
        transition: all 0.3s ease 0s;
    }

    #content .gmap:hover {
        filter: none;
    }

    /*___________________________________________________________________________________________gmap 矢印エフェクト*/
    .gmap_arrow {
        display: inline-block;
        width: calc((100 / 480) * 180vw);
        padding: 10px 10px 10px 20px;
        text-align: left;
        font-family: var(--font-eng);
        font-size: calc((100 / 480) * 14vw);
        color: #000;
        margin-top: 0px;
        cursor: pointer;
        position: relative;
        top: calc((100 / 480) * 450vw);
        left: calc((100 / 480) * 250vw);
        text-decoration: none;
    }

    .gmap_arrow::after {
        content: "";
        display: block;
        width: calc((100 / 480) * 25vw);
        height: 6px;
        border: none;
        border-right: 2px solid #000;
        border-bottom: 1px solid #000;
        margin-top: 12px;
        position: absolute;
        top: 10%;
        right: calc((100 / 480) * 45vw);
        transform: skew(45deg);
        transition: .2s;
    }

    .gmap_arrow:hover::after {
        right: calc((100 / 480) * 40vw);
        width: calc((100 / 480) * 30vw);
    }

    .open-time {
        font-family: var(--font-eng);
        font-size: calc((100 / 480) * 16vw);
        margin-top: 30px;
    }

    .holiday {
        font-family: var(--font-jp);
        font-size: calc((100 / 480) * 16vw);
    }


    /*___________________________________________________________________________________________tab_inquiry 矢印エフェクト*/
    .inquiry_arrow {
        display: inline-block;
        width: 25%;
        font-family: var(--font-jp);
        font-size: calc((100 / 480) * 12vw);
        color: #000;
        margin: 2px;
        cursor: pointer;
        position: relative;
        text-decoration: none;
    }

    .inquiry_arrow::after {
        content: "";
        display: block;
        position: absolute;
        top: 45%;
        right: calc((100 / 480) * 15vw);
        width: calc((100 / 480) * 25vw);
        height: 6px;
        border: none;
        border-right: 2px solid #000;
        border-bottom: 1px solid #000;
        transform: skew(45deg);
        transition: .2s;
    }

    .inquiry_arrow:hover::after {
        right: calc((100 / 480) * 5vw);
        width: calc((100 / 480) * 35vw);
    }

    /*___________________________________________________________________________________________480_footer*/

    #footer {
        display: none;
        width: 100%;
        height: calc((100 / 480) * 268vw);
        background-color: rgba(255, 255, 255, 1);
        position: absolute;
        /*←絶対位置*/
        bottom: calc((100 / 480) * 20vw);
        /*下に固定*/
        z-index: 10;
    }

    .footer_wrapper {
        width: 100%;
        height: 100%;
        padding-top: calc((100 / 480) * 10vw);
        padding-right: calc((100 / 480) * 10vw);
        padding-bottom: calc((100 / 480) * 10vw);
        padding-left: calc((100 / 480) * 10vw);
    }

    .footer_inner {
        width: 100%;
        background-color: rgba(0, 0, 0, 0);
        margin-top: calc((100 / 480) * 0vw);
    }

    .footer_logo img {
        width: calc((100 / 480) * 200vw);
        object-fit: cover;
        object-position: left top;
    }

    .footer_address {
        width: 100%;
        text-align: center;
        font-family: var(--font-jp_b);
        font-size: calc((100 / 480) * 14vw);
        color: #000;
        line-height: 2;
    }

    .footer_address .mgr {
        margin-right: calc((100 / 480) * 20vw);
    }

    .footer_inner2 {
        width: 100%;
        background-color: rgba(0, 0, 0, 0);
        margin-top: calc((100 / 480) * 50vw);
    }

    .footer_nav {
        width: 100%;
    }

    .footer_nav_li {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .footer_nav_content {
        display: flex;
        justify-content: space-between;
        width: 80%;
    }

    .footer_nav_item {
        cursor: pointer;
    }

    .footer_nav_active a {
        font-family: var(--font-eng);
        font-size: calc((100 / 480) * 12vw);
        color: var(--menu-color);
        border-left: 2px solid #ff8c00;
        padding-top: calc((100 / 480) * 1vw);
        padding-left: calc((100 / 480) * 2vw);
        cursor: auto;
        pointer-events: none;
    }

    .footer_nav_item a {
        font-family: var(--font-eng);
        font-size: calc((100 / 480) * 12vw);
        color: #000;
        border-left: 2px solid #000;
        padding-top: calc((100 / 480) * 1vw);
        padding-left: calc((100 / 480) * 3vw);
        transition: all 0.3s ease 0s;
    }

    .footer_nav_item a:hover {
        color:  var(--menu-color);
        border-color: var(--menu-color);
    }

    .footer_sns {
        margin-top: 30px;
    }

    .footer_sns ul li {
        width: calc((100 / 480) * 60vw);
        height: calc((100 / 480) * 50vw);
    }

    .footer_copylight {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 10px;
    }

    .footer_copylight p {
        font-family: var(--font-eng);
        font-size: calc((100 / 480) * 12vw);
        color: #000;
        text-align: center;
    }

    .footer_copylight img {
        width: 20%;
        margin-left: 10px;
    }

}