/*
    Theme Name: hangryjoes_2025
*/
@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Calistoga&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700&display=swap');

html {
    height: 100%;
}
body{
    height: 100%;
    font-family: "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
    color: #000;
    background: #FFF;
    overscroll-behavior: none;
}
:root {
  --fonten: "Calistoga", serif;
  --fonten_title: "Merriweather", serif;
  --fontjp: 'Zen Kaku Gothic New', sans-serif;
  --color: #FD5500;
  --text_color: #044142;
  --background_color: #EFEADE;
  --header_height: 75px;
}
@media only screen and (max-width: 750px) {
    :root {
      --header_height: 50px;
    }
}

.pc { display: block; }
.sp { display: none; }
@media only screen and (max-width: 750px) {
    .pc { display: none; }
    .sp { display: block; }
}

.link_range {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    right: 0 !important;
}

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


/*------------------------------------*\
    共通
\*------------------------------------*/
.inview, .inview2 {
    transition: all 800ms ease-in-out;
    opacity: 0;
}
.inview_up, .inview_up2 {
    transition: all 500ms ease-in-out;
    opacity: 0;
    transform: translate(0,10px);
}
.inview_action {
    opacity: 1.0;
}
.inview_up_action {
    opacity: 1.0;
    transform: translate(0,0);
}

.com_main {
    padding-top: var(--header_height);
    background-color: var(--background_color);
    min-height: calc(100vh - var(--header_height) - 192px);
}
@media only screen and (max-width:750px) {
    .com_main {
        min-height: calc(100vh - var(--header_height) - 272px);
    }
}

.com_title_wrap {
    text-align: center;
    padding-top: 60px;
    padding-bottom: 60px;
}
.com_title {
    font-family: var(--fonten);
    font-size: 66px;
    line-height: 80px;
    color: var(--color);
    font-weight: 400;
}
@media only screen and (max-width:750px) {
    .com_title_wrap {
        padding-top: 35px;
        padding-bottom: 35px;
    }
    .com_title {
        font-size: 25px;
        line-height: 30px;
    }
}


/*------------------------------------*\
    header language
\*------------------------------------*/
.header_lang_wrap {
    position: fixed;
    top: 31px;
    /* left: 50%; */
    right: 4%;
    z-index: 940;
    transition: all 500ms ease-in-out;
    opacity: 0;
    visibility: hidden;
}
body.scroll_top .header_lang_wrap {
    opacity: 0;
    visibility: hidden;
}
body.scroll_down .header_lang_wrap {
    opacity: 1;
    visibility: visible;
}
body.scroll_up .header_lang_wrap {
    opacity: 1;
    visibility: visible;
}
body .header_lang_wrap.visible {
    opacity: 1;
    visibility: visible;
}

@media only screen and (max-width:750px) {
    .header_lang_wrap {
        top: 60px;
        opacity: 0;
        visibility: hidden;
    }
    body .header_lang_wrap.visible {
        opacity: 0;
        visibility: hidden;
    }
    body.scroll_top .header_lang_wrap {
        opacity: 0;
        visibility: hidden;
    }
    body.scroll_down .header_lang_wrap {
        opacity: 0;
        visibility: hidden;
    }
    body.scroll_up .header_lang_wrap {
        opacity: 0;
        visibility: hidden;
    }
    body.nav_open .header_lang_wrap {
        opacity: 1;
        visibility: visible;
    }
}
.header_lang_radio_wrap {
}
.header_lang_radio {
    display: flex;
    align-items: flex-start;
}

.header_lang_radio input[type="radio"] {
    display:none; 
}
.header_lang_radio label {
    font-family: var(--fonten);
    color: var(--color);
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.01em;
    position: relative;
    cursor: pointer;
    padding-bottom: 1px;
    display: block;
    transition: all 150ms ease-in-out;
}
@media only screen and (max-width:750px) {
  .header_lang_radio label {
    font-size: 12px;
  }
}
.header_lang_radio .header_lang_radio_label_jp {
}
.header_lang_radio .header_lang_radio_label_en {
}

.header_lang_radio_text {
    font-family: var(--fonten);
    color: var(--color);
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.01em;
    transition: all 150ms ease-in-out;
    display: inline-block;
    margin: 0 6px;
}
@media only screen and (max-width:750px) {
  .header_lang_radio_text {
    font-size: 12px;
    margin: 0 4px;
  }
}

.header_lang_radio label .header_lang_select {
    content: '';
    width: 100%;
    height: 1px;
    background-color: var(--color);
    position: absolute;
    bottom: 0;
    left: 0;
    display: none;
    transition: all 150ms ease-in-out;
}
.header_lang_radio input[type="radio"]:checked + label { 
}
.header_lang_radio input[type="radio"]:checked + label .header_lang_select { 
    display: block;
}


/* 言語切り替え用 */
.com_lang_wrap {
    position: relative;
}
.lang_jp, .lang_en {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    z-index: -1;
    /* transition: all 500ms ease-in-out; */
}
.lang_jp {
    font-family: var(--fontjp);
    color: var(--color);
    letter-spacing: 0.01em;
    font-weight: 700;
    top: -1px;
}
.lang_en {
    font-family: var(--fonten);
    color: var(--color);
    letter-spacing: 0.07em;
    font-weight: 400;
}


body.jp .lang_jp, body.en .lang_en {
    opacity: 1;
    visibility: visible;
    position: relative;
    z-index: auto;
}

.font_jp {
    font-family: var(--fontjp);
}
.font_en {
    font-family: var(--fonten);
}


/*------------------------------------*\
    header (logo)
\*------------------------------------*/
.header_logo_wrap {
    position: fixed;
    top: 16px;
    left: 4%;
    z-index: 940;
    /* filter: invert(100%); */
    /* mix-blend-mode: exclusion; */
    transition: all 500ms ease-in-out;
    opacity: 0;
    visibility: hidden;
}
@media only screen and (max-width:750px) {
    .header_logo_wrap {
        top: 13px;
    }
}
.header_logo {
    width: 252px;
}
@media only screen and (max-width:750px) {
    .header_logo {
        width: 162px;
    }
}

body.scroll_top .header_logo_wrap {
    opacity: 0;
    visibility: hidden;
}
body.scroll_down .header_logo_wrap {
    opacity: 1;
    visibility: visible;
}
body.scroll_up .header_logo_wrap {
    opacity: 1;
    visibility: visible;
}
body .header_logo_wrap.visible {
    opacity: 1;
    visibility: visible;
}


.header_bk_wrap {
    width: 100%;
    height: var(--header_height);
    position: fixed;
    top: 0;
    left: 0;
    background-color: #EFEADE;
    border-bottom: 4px solid var(--color);
    opacity: 0;
    visibility: hidden;
    transition: all 500ms ease-in-out;
    z-index: 900;
}
@media only screen and (max-width:750px) {
    .header_bk_wrap {
        border-bottom: 2px solid var(--color);
    }
}
body.scroll_top .header_bk_wrap {
    opacity: 0;
    visibility: hidden;
}
body.scroll_down .header_bk_wrap {
    opacity: 1;
    visibility: visible;
}
body.scroll_up .header_bk_wrap {
    opacity: 1;
    visibility: visible;
}
body .header_bk_wrap.visible {
    opacity: 1;
    visibility: visible;
}



/*------------------------------------*\
    header (nav)
\*------------------------------------*/
.header_nav_wrap {
    position: fixed;
    top: 27px;
    right: calc(4% + 100px);
    z-index: 940;
    transition: all 500ms ease-in-out;
    opacity: 0;
    visibility: hidden;
}
@media only screen and (max-width:750px) {
  .header_nav_wrap {
    display: none;
  }
}
body.scroll_top .header_nav_wrap {
    opacity: 0;
    visibility: hidden;
}
body.scroll_down .header_nav_wrap {
    opacity: 1;
    visibility: visible;
}
body.scroll_up .header_nav_wrap {
    opacity: 1;
    visibility: visible;
}
body .header_nav_wrap.visible {
    opacity: 1;
    visibility: visible;
}

.header_nav_inner {
}
.header_nav {
}
.header_nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 45px;
}

.header_nav li {
}
.header_nav .header_nav_name_wrap {
    position: relative;
    cursor: pointer;

    transform-style: preserve-3d;
}


/* .header_nav .header_nav_name {
    transition: all 300ms ease-in-out;
}
.header_nav .header_nav_name:hover {
  opacity: 0.5;
} */

.header_nav .header_nav_name_en_wrap {
    position: relative;
    top: 0;
    left: 50%;

    transform: rotateX(0) translate(-50%, 0);
    transform-origin: center center -15px;
    transition: all 300ms ease-in-out;
}
.header_nav .header_nav_name_wrap:hover .header_nav_name_en_wrap {
    transform: rotateX(-90deg) translate(-50%, 0);
}
.header_nav .header_nav_name_en {
    font-family: var(--fonten);
    color: var(--color);
    font-size: 23px;
    font-weight: 400;
    white-space: nowrap;
}
.header_nav .header_nav_name_jp_wrap {
    position: absolute;
    top: 0;
    left: 50%;

    transform: rotateX(90deg) translate(-50%, 0);
    transform-origin: center center -15px;
    transition: all 300ms ease-in-out;
}
.header_nav .header_nav_name_wrap:hover .header_nav_name_jp_wrap {
    transform: rotateX(0) translate(-50%, 0);
}
.header_nav .header_nav_name_jp {
    font-size: 21px;
    color: var(--color);
    white-space: nowrap;
}
  



/*------------------------------------*\
    header (button)
\*------------------------------------*/
.header_nav_button_wrap {
    position: fixed;
    top: 12px;
    right: 4%;
    z-index: 931;
    cursor: pointer;
    /* filter: invert(100%); */
    /* mix-blend-mode: exclusion; */
    
    transition: all 500ms ease-in-out;
    opacity: 0;
    visibility: hidden;
}
@media only screen and (max-width:750px) {
    .header_nav_button_wrap {
        top: 4px;
    }
    body.scroll_top .header_nav_button_wrap {
        opacity: 0;
        visibility: hidden;
    }
    body.scroll_down .header_nav_button_wrap {
        opacity: 1;
        visibility: visible;
    }
    body.scroll_up .header_nav_button_wrap {
        opacity: 1;
        visibility: visible;
    }
    body .header_nav_button_wrap.visible {
        opacity: 1;
        visibility: visible;
    }
}


/*
body.scroll_top .header_nav_button_wrap {
    opacity: 1;
    visibility: visible;
}
body.scroll_down .header_nav_button_wrap {
    opacity: 0;
    visibility: hidden;
}
body.scroll_up .header_nav_button_wrap {
    opacity: 1;
    visibility: visible;
}
body.nav_open .header_nav_button_wrap {
}
*/

.header_nav_button_inner {
    width: 109px;
    height: 50px;
    position: relative;
}
@media only screen and (max-width:750px) {
    .header_nav_button_inner {
        width: 40px;
        height: 40px;
    }
}

.header_nav_button_text {
    position: absolute;
    top: 8px;
    right: 0;
    font-family: var(--fonten);
    color: var(--color);
    font-size: 35px;
    letter-spacing: 0.1em;
    font-weight: 400;
}
.header_nav_button_logo {
    position: absolute;
    top: 6px;
    right: 0;
    width: 25px;
}



/* .header_nav_button_inner {
    width: 50px;
    height: 50px;
    position: relative;
}
.header_nav_button_line {
    width: 44px;
    height: 3px;
    background-color: #000;
    border: none;
    font-size: 0;
    position: absolute;
    left: 3px;
    transition: all 300ms ease-in-out;
}
.header_nav_button_line.line_1 {
    top: 20px;
}
.header_nav_button_line.line_2 {
    top: 27px;
}
@media only screen and (max-width:750px) {
    .header_nav_button_line {
        width: 36px;
        left: 6px;
    }
}
body.nav_open .header_nav_button_line.line_1 {
    width: 38px;
    top: 23px;
    left: 6px;
    transform: rotate(45deg);
}
body.nav_open .header_nav_button_line.line_2 {
    width: 38px;
    top: 23px;
    left: 6px;
    transform: rotate(-45deg);
}
@media only screen and (max-width:750px) {
    body.nav_open .header_nav_button_line.line_1 {
        width: 32px;
        top: 23px;
        left: 8px;
    }
    body.nav_open .header_nav_button_line.line_2 {
        width: 32px;
        top: 23px;
        left: 8px;
    }
} */



/*------------------------------------*\
    header (navigation)
\*------------------------------------*/
.header_background_wrap {
    display: block;
    width: 100vw;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    transition: all 500ms ease-in-out;
    z-index: 928;
}
body.nav_open .header_background_wrap {
    opacity: 0;
    visibility: visible;
}

.header_open_wrap {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    background-color: var(--background_color);
    visibility: hidden;
    opacity: 0;
    transition: all 500ms ease-in-out;
    z-index: 930;
}
body.nav_open .header_open_wrap {
    visibility: visible;
    opacity: 1;
}
.header_open_inner {
    width: 100vw;
    height: 100%;
    overflow: hidden;
}
.header_open_scroll_wrap {
    width: 100%;
    height: calc(100% - 100px);
    margin-top: 100px;
    overflow-y: scroll;
}



/*------------------------------------*\
    header (nav)
\*------------------------------------*/
.header_open_nav_wrap {
    height: 100%;
}
@media only screen and (max-width:750px) {
}

.header_open_nav {
    height: 100%;
    display: flex;
    justify-content: center;
}
.header_open_nav ul {
}
.header_open_nav li {
    position: relative;
    padding: 20px 0;
}
.header_open_nav_name_wrap {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.header_open_nav_name {
    font-family: var(--fonten);
    font-size: 30px;
    font-weight: 400;
    color: var(--color);
}
.header_open_nav_name_jp_wrap {
}
.header_open_nav_name_jp {
    font-size: 16px;
    color: var(--color);
}

/*------------------------------------*\
    top 
\*------------------------------------*/
.top_main {
}
.top_fv_wrap {
}
.top_fv_inner {
    overflow: hidden;
    /* height: calc(100svh - var(--header_height)); */
    /* padding-top: var(--header_height); */
}
.top_fv_content_wrap {
    position: relative;
    max-height: 100svh;
    /* max-height: calc(100svh - var(--header_height)); */
    /* background-color: var(--background_color); */
}
@media only screen and (max-width:750px) {
}


.top_fv_anime_logo_wrap {
    /* display: none; */
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 340px;
    max-width: 67%;
    z-index: 3;
}

.top_fv_anime_logo_inner {
    position: relative;
}
.top_fv_anime_logo_inner:before {
    content: "";
    display: block;
    padding-top: calc(100%*(228 / 340));
}
.top_fv_anime_logo_icon_1 { 
    position: absolute;
    width: 19.6%;
    top: 3%;
    left: 40%;
    transition: all 500ms cubic-bezier(0.4, 0, 0.4, 1.35);
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0px, -50px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.top_fv_anime_logo_icon_1.action {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.top_fv_anime_logo_icon_2 { 
    position: absolute;
    width: 22%;
    top: 18%;
    left: 39%;
    transition: all 500ms cubic-bezier(0.4, 0, 0.4, 1.35);
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0px, -50px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.top_fv_anime_logo_icon_2.action {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.top_fv_anime_logo_icon_3 { 
    position: absolute;
    width: 20%;
    top: 33%;
    left: 40%;
    transition: all 500ms cubic-bezier(0.4, 0, 0.4, 1.35);
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0px, -50px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.top_fv_anime_logo_icon_3.action {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}

.top_fv_anime_logo_icon_1 .cls-1, .top_fv_anime_logo_icon_2 .cls-1, .top_fv_anime_logo_icon_3 .cls-1 { 
    fill: var(--color);
    transition: all 800ms ease-in-out;
}
.top_fv_anime_logo_icon_1.action2 .cls-1, .top_fv_anime_logo_icon_2.action2 .cls-1, .top_fv_anime_logo_icon_3.action2 .cls-1 { 
    fill: #fff;
}



.top_fv_anime_logo {
    position: absolute;
    width: 89.2%;
    left: 5.4%;
    bottom: 14%;
    transition: all 500ms ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0px, 10px, 0px) scale3d(1.05, 1.05, 1.05) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.top_fv_anime_logo.action {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.top_fv_anime_logo .cls-1 {
    fill: var(--color);
    transition: all 800ms ease-in-out;
}
.top_fv_anime_logo.action2 .cls-1 {
    fill: #fff;
}



.top_fv_content_logo_wrap {
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 340px;
    max-width: 67%;
    z-index: 2;
}
@media only screen and (max-width:750px) {
}
.top_fv_content_logo {
    transition: all 800ms ease-in-out;
    opacity: 0;
    visibility: hidden;
    /* transform: translate3d(0px, 10px, 0px) scale3d(1.05, 1.05, 1.05) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg); */
}
.top_fv_content_logo.action {
    opacity: 1;
    visibility: visible;
    /* transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg); */
}


/*------------------------------------*\
    top FV ギャラリー
\*------------------------------------*/
.top_fv_slick_wrap {
    visibility: hidden;
    opacity: 0;
    transition: all 1000ms ease-in-out;
    position: relative;
    z-index: 1;
}
.top_fv_slick_wrap.visible {
    visibility: visible;
    opacity: 1;
}
.top_fv_slick {
}
.top_fv_slick li {
}
.top_fv_slick_img_wrap {
    height: 100svh;
    /* height: calc(100svh - var(--header_height)); */
    position: relative;
    overflow: hidden;
    z-index: 1;
}
@media only screen and (max-width:750px) {
    .top_fv_slick_img_wrap {
        height: auto;
        object-fit: cover;
        aspect-ratio: 2 / 3;
    }
}
.top_fv_slick_img_wrap::before {
  content: "";
  display: block;
  padding-top: calc(100% * (2 / 3));
}
.top_fv_slick_img {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
@media only screen and (max-width:750px) {
}





/*------------------------------------*\
    top FV detail
\*------------------------------------*/

.top_fv_detail_wrap {
}
@media only screen and (max-width:750px) {
}
.top_fv_logo_wrap {
    width: 60%;
    margin: 0 auto;
    max-width: 596px;
    padding-top: 60px;
}
@media only screen and (max-width:750px) {
    .top_fv_logo_wrap {
        width: 80%;
        padding-top: 30px;
    }
}

.top_fv_title_wrap {
    text-align: center;
    padding: 15 px 0 60px;
}
.top_about_title_img {
    width: 50%;
    margin: 0 auto;
    max-width: 440px;
}
.top_about_title {
    font-size: 36px;
    line-height: 52px;
}
@media only screen and (max-width:750px) {
    .top_fv_title_wrap {
        padding: 5px 0 15px;
    }
    .top_about_title_img {
        width: 55%;
    }
    .top_about_title {
        font-size: 16px;
        line-height: 25px;
        letter-spacing: 0.01em;
    }
}


.top_fv_burger_wrap {
}
.top_fv_burger_inner {
    position: relative;
    max-width: 1469px;
    margin: 0 auto;
}
.top_fv_burger_img_wrap {
    position: relative;
    width: 100%;
    padding-top: 10%;
    padding-bottom: 8%;
    margin-left: -6%;
    z-index: 2;
}
.top_fv_pop_1_wrap {
    position: absolute;
    top: 0;
    width: 26%;
    left: 16%;
    z-index: 1;
}
.top_fv_pop_2_wrap {
    position: absolute;
    bottom: 27%;
    width: 28%;
    right: 10%;
    z-index: 3;
}
.top_fv_pop_3_wrap {
    position: absolute;
    bottom: 8.5%;
    width: 29%;
    left: 18%;
    z-index: 4;
}
.top_fv_pop_4_wrap {
    position: absolute;
    bottom: 0;
    width: 25%;
    left: 33%;
    z-index: 5;
}


.top_fv_logo {
    transition: all 500ms ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0px, -30px, 0px) scale3d(1.2, 1.2, 1.2) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.top_fv_logo.action {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.top_fv_title_wrap {
    transition: all 500ms ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0px, -30px, 0px) scale3d(1.2, 1.2, 1.2) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.top_fv_title_wrap.action {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}

.top_fv_burger_img {
    transition: all 700ms ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0px, 30px, 0px) scale3d(1.1, 1.1, 1.1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
@media only screen and (max-width:750px) {
    .top_fv_burger_img {
        transform: translate3d(0px, 10px, 0px) scale3d(1.1, 1.1, 1.1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    }
}
.top_fv_burger_img.action {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.top_fv_pop_1 {
    transition: all 500ms ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0px, -30px, 0px) scale3d(2, 2, 2) rotateX(0deg) rotateY(0deg) rotateZ(20deg) skew(0deg, 0deg);
}
.top_fv_pop_1.action {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.top_fv_pop_2 {
    transition: all 500ms ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0px, -30px, 0px) scale3d(2, 2, 2) rotateX(0deg) rotateY(0deg) rotateZ(-20deg) skew(0deg, 0deg);
}
.top_fv_pop_2.action {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.top_fv_pop_3 {
    transition: all 500ms ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0px, -30px, 0px) scale3d(1.5, 1.5, 1.5) rotateX(0deg) rotateY(0deg) rotateZ(10deg) skew(0deg, 0deg);
}
.top_fv_pop_3.action {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.top_fv_pop_4 {
    transition: all 500ms ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0px, -30px, 0px) scale3d(2, 2, 2) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.top_fv_pop_4.action {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}



/*------------------------------------*\
    top 選べる辛さ
\*------------------------------------*/
.top_fv_choose_wrap {
    padding-top: 60px;
    padding-bottom: 60px;
}
@media only screen and (max-width:750px) {
    .top_fv_choose_wrap {
        padding-top: 20px;
        padding-bottom: 30px;
    }
}
.top_fv_choose_inner {
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
}
.top_fv_choose_title_wrap {
}
.top_fv_choose_title {
    font-size: 30px;
}
@media only screen and (max-width:750px) {
    .top_fv_choose_title {
        font-size: 16px;
    }
}


.top_fv_choose_img_wrap {
    max-width: 620px;
    margin: 0 auto;
    padding-top: 30px;
}
@media only screen and (max-width:750px) {
    .top_fv_choose_img_wrap {
        padding-top: 10px;
    }
}
.top_fv_choose_border {
    width: 100%;
    position: relative;
    border: 4px solid var(--color);
    aspect-ratio: 9 / 1;
    border-radius: 60px;
}
@media only screen and (max-width:750px) {
    .top_fv_choose_border {
        border: 2px solid var(--color);
    }
}
.top_fv_choose_0_wrap {
    position: absolute;
    bottom: 0;
    width: 7%;
    left: 6%;
    z-index: 1;
}
.top_fv_choose_1_wrap {
    position: absolute;
    bottom: 0;
    width: 9%;
    left: 20%;
    z-index: 1;
}
.top_fv_choose_2_wrap {
    position: absolute;
    bottom: 0;
    width: 10%;
    left: 35%;
    z-index: 1;
}
.top_fv_choose_3_wrap {
    position: absolute;
    bottom: 0;
    width: 13%;
    left: 50%;
    z-index: 1;
}
.top_fv_choose_4_wrap {
    position: absolute;
    bottom: 0;
    width: 14%;
    left: 67%;
    z-index: 1;
}
.top_fv_choose_5_wrap {
    position: absolute;
    bottom: 0;
    width: 14%;
    left: 83.5%;
    z-index: 1;
}

.top_fv_choose_0 {
    transition: all 300ms ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0px, 30px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.top_fv_choose_0.action {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.top_fv_choose_1 {
    transition: all 300ms ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0px, 30px, 0px) scale3d(1.5, 1.5, 1.5) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.top_fv_choose_1.action {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.top_fv_choose_2 {
    transition: all 300ms ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0px, 30px, 0px) scale3d(2, 2, 2) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.top_fv_choose_2.action {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.top_fv_choose_3 {
    transition: all 300ms ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0px, 30px, 0px) scale3d(2.5, 2.5, 2.5) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.top_fv_choose_3.action {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.top_fv_choose_4 {
    transition: all 300ms ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0px, 30px, 0px) scale3d(3, 3, 3) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.top_fv_choose_4.action {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.top_fv_choose_5 {
    transition: all 300ms ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0px, 30px, 0px) scale3d(4, 4, 4) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.top_fv_choose_5.action {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}


.top_fv_choose_level_list {
    display: flex;
    width: 93%;
    margin: 0 auto;
    gap: 6%;
    padding-top: 7px;
    padding-bottom: 7px;
}
@media only screen and (max-width:750px) {
    .top_fv_choose_level_list {
        gap: 5%;
        padding-top: 5px;
        padding-bottom: 5px;
    }
}
.top_fv_choose_level_list li {
}
.top_fv_choose_level {
}



.top_fv_about_wrap {
}
@media only screen and (max-width:750px) {
}

.top_fv_about_catch_wrap {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 60px;
}
@media only screen and (max-width:750px) {
    .top_fv_about_catch_wrap {
        width: 85%;
        text-align: left;
        padding-top: 50px;
        padding-bottom: 30px;
    }
}
.top_fv_about_catch {
    font-size: 36px;
    line-height: 52px;
}
@media only screen and (max-width:1000px) {
    .top_fv_about_catch {
        font-size: 28px;
        line-height: 42px;
    }
}
@media only screen and (max-width:750px) {
    .top_fv_about_catch {
        font-size: 24px;
        line-height: 30px;
    }
}

.top_fv_about_text_wrap {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    /* padding-top: 60px; */
    padding-bottom: 70px;
}
@media only screen and (max-width:750px) {
    .top_fv_about_text_wrap {
        width: 85%;
        text-align: left;
        /* padding-top: 30px; */
        padding-bottom: 30px;
    }
}
.top_fv_about_text {
    font-size: 30px;
    line-height: 49px;
    margin-bottom: 30px;
}
@media only screen and (max-width:1000px) {
    .top_fv_about_text {
        font-size: 22px;
        line-height: 40px;
    }
}
@media only screen and (max-width:750px) {
    .top_fv_about_text {
        font-size: 16px;
        line-height: 25px;
        margin-bottom: 20px;
    }
}

.top_fv_about_inner {
    background-color: var(--background_color);
    padding-top: 60px;
    padding-bottom: 70px;
}
@media only screen and (max-width:750px) {
    .top_fv_about_inner {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

.top_fv_about_title_wrap {
    text-align: center;
}
.top_fv_about_title {
    font-family: var(--fonten_title);
    color: var(--color);
    font-size: 45px;
    line-height: 51px;
    letter-spacing: 0.01em;
    font-weight: 700;
}
@media only screen and (max-width:1000px) {
    .top_fv_about_title {
        font-size: 30px;
        line-height: 40px;
    }
}
@media only screen and (max-width:750px) {
    .top_fv_about_title {
        font-size: 26px;
        line-height: 30px;
    }
}

.top_fv_about_note_wrap {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
}
@media only screen and (max-width:750px) {
    .top_fv_about_note_wrap {
        width: 85%;
        text-align: left;
        padding-top: 15px;
    }
}
.top_fv_about_note {
    font-size: 30px;
    line-height: 49px;
}
@media only screen and (max-width:1000px) {
    .top_fv_about_note {
        font-size: 22px;
        line-height: 40px;
    }
}
@media only screen and (max-width:750px) {
    .top_fv_about_note {
        font-size: 16px;
        line-height: 25px;
    }
}

.top_fv_about_halal_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}
.top_fv_about_halal_img_wrap {
    width: 120px;
}
.top_fv_about_halal_img {
}
.top_fv_about_halal_text_wrap {
    text-align: left;
}
.top_fv_about_halal_text {
    font-family: var(--fonten_title);
    color: var(--color);
    font-size: 27px;
    line-height: 29px;
    font-weight: 700;
}
.top_fv_about_halal_text_jp {
    font-size: 22px;
    line-height: 33px;
}


/*------------------------------------*\
    top FV 映像
\*------------------------------------*/
.top_fv_video_wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    transition: all 500ms cubic-bezier(1, 0.04, 0.47, 0.9);

    display: none;
}
.top_fv_video {
    position: relative;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    z-index: 1;

    opacity: 0;
    transition: all 1200ms ease-in-out;
}
.top_fv_video.kv_start {
    opacity: 1;
}
.top_fv_video.width_max {
    width: 100%;
}
.top_fv_video.height_max {
    height: 100%;
}
.top_fv_video_overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background-color: #212121;
    opacity: 0;
}


/*------------------------------------*\
    top スライド
\*------------------------------------*/
@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
} 
.top_slide_wrap {
  background-color: var(--color);
}
@media only screen and (max-width:750px) {
}

.top_slide_text_list_wrap {
  display: flex;
  white-space: nowrap;
  align-items: center;
  width: 100%;
  height: 100%; 
  overflow: hidden;
  padding: 4px 0;
}
@media only screen and (max-width:750px) {
    .top_slide_text_list_wrap {
        padding: 2px 0;
      }
}
.top_slide_text_wrap {
  white-space: nowrap;
  animation: loop-slide 30s infinite linear 1s both;
}

.top_slide_text_list_wrap.list_1 .top_slide_text {
    /* font-family: var(--fontjp); */
    font-size: 22px;
    line-height: 32px;
    color: #FFF;
    white-space: nowrap;
    margin-left: 8px;
}
@media only screen and (max-width:750px) {
    .top_slide_text_list_wrap.list_1  .top_slide_text {
    font-size: 16px;
    line-height: 20px;
  }
}

.top_slide_text_list_wrap.list_2 .top_slide_text {
    font-family: var(--fonten);
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.05em;
    color: #FFF;
    white-space: nowrap;
    margin-left: 8px;
}
@media only screen and (max-width:750px) {
    .top_slide_text_list_wrap.list_2 .top_slide_text {
    font-size: 14px;
    line-height: 22px;
  }
}

.top_slide_text_list_wrap.list_3 .top_slide_text {
    font-family: var(--fonten);
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.05em;
    color: #FFF;
    white-space: nowrap;
    margin-left: 8px;
}
@media only screen and (max-width:750px) {
    .top_slide_text_list_wrap.list_3 .top_slide_text {
    font-size: 14px;
    line-height: 22px;
  }
}

/*------------------------------------*\
    top gallery
\*------------------------------------*/
.top_gallery_wrap {
    background-color: #FFF;
    background-image: linear-gradient(-90deg, var(--color) 1px, transparent 0%), linear-gradient(var(--color) 1px, transparent 0%);
    background-size: 30px 30px;
    /* background-attachment: fixed; */
    border-bottom: 4px solid var(--color);
    overflow: hidden;
}
@media only screen and (max-width:750px) {
    .top_gallery_wrap {
        border-bottom: 2px solid var(--color);
    }
}
.top_gallery_inner {
    position: relative;
    width: 100%;
    aspect-ratio: 5 / 3;
}
@media only screen and (max-width:750px) {
    .top_gallery_inner {
        aspect-ratio: 375 / 450;
    }
}
.top_gallery_img_1_wrap {
    width: 24%;
    position: absolute;
    top: 17%;
    left: -1%;
    overflow: hidden;
    font-size: 0;
    border-radius: 30px;
    border: 5px solid var(--color);
}
@media only screen and (max-width:750px) {
    .top_gallery_img_1_wrap {
        width: 48%;
        top: 15%;
        left: -16.5%;
        border-radius: 12px;
        border: 2px solid var(--color);
    }
}
.top_gallery_img_2_wrap {
    width: 37%;
    position: absolute;
    top: 6%;
    left: 27%;
    overflow: hidden;
    font-size: 0;
    border-radius: 30px;
    border: 5px solid var(--color);
}
@media only screen and (max-width:750px) {
    .top_gallery_img_2_wrap {
        width: 71%;
        top: 5.5%;
        left: 37%;
        border-radius: 12px;
        border: 2px solid var(--color);
    }
}
.top_gallery_img_3_wrap {
    width: 37%;
    position: absolute;
    top: 53%;
    left: 36%;
    overflow: hidden;
    font-size: 0;
    border-radius: 30px;
    border: 5px solid var(--color);
}
@media only screen and (max-width:750px) {
    .top_gallery_img_3_wrap {
        width: 71%;
        top: 53%;
        left: 44%;
        border-radius: 12px;
        border: 2px solid var(--color);
    }
}
.top_gallery_img_4_wrap {
    width: 24%;
    position: absolute;
    top: 26%;
    right: -2%;
    overflow: hidden;
    font-size: 0;
    border-radius: 30px;
    border: 5px solid var(--color);
}
@media only screen and (max-width:750px) {
    .top_gallery_img_4_wrap {
        display: none;
    }
}
.top_gallery_img_1 {
    object-fit: cover;
    aspect-ratio: 2 / 3;
}
.top_gallery_img_2 {
    object-fit: cover;
    aspect-ratio: 3 / 2;
}
.top_gallery_img_3 {
    object-fit: cover;
    aspect-ratio: 3 / 2;
}
.top_gallery_img_4 {
    object-fit: cover;
    aspect-ratio: 2 / 3;
}





/*------------------------------------*\
    top menu
\*------------------------------------*/
.top_lunch_menu_wrap {
    padding-top: 100px;
}
@media only screen and (max-width:750px) {
    .top_lunch_menu_wrap {
        padding-top: 50px;
    }
}
.top_lunch_menu_inner {
}


.top_cafe_menu_wrap {
    padding-top: 100px;
    padding-bottom: 100px;
}
@media only screen and (max-width:750px) {
    .top_cafe_menu_wrap {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
.top_cafe_menu_inner {
}




/*------------------------------------*\
    top menu 共通
\*------------------------------------*/
.top_com_menu_time_wrap {
    background-color: var(--color);
    display: inline-block;
    padding: 5px 32px;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
    margin-top: 5px;
}
@media only screen and (max-width:750px) {
    .top_com_menu_time_wrap {
        padding: 3px 30px;
    }
}
.top_com_menu_time {
    font-family: var(--fonten);
    font-size: 30px;
    color: #FFF;
}
@media only screen and (max-width:750px) {
    .top_com_menu_time {
        font-size: 15px;
    }
}

.top_menu_slick_wrap {
    visibility: hidden;
    opacity: 0;
    transition: all 1000ms ease-in-out;
    position: relative;
    z-index: 1;
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 70px;
}
@media only screen and (max-width:750px) {
    .top_menu_slick_wrap {
        margin-top: 40px;
    }
}
.top_menu_slick_wrap.visible {
    visibility: visible;
    opacity: 1;
}
.top_menu_slick {
}
.top_menu_slick .slick-list {
    overflow: visible;
}

.top_menu_slick .slick-track {
    display: flex;
}
.top_menu_slick .slick-list li {
    float: none;
    height: auto;

    padding: 0 2vw;
    position: relative;
    /* top: -80px; */
    scale: 0.85;
    transition: all 1000ms ease-in-out;
}
@media only screen and (max-width:750px) {
    .top_menu_slick .slick-list li {
        padding: 0;
        scale: 0.75;
    }
}
.top_menu_slick .slick-list li.is-active-next {
    /* top: 0; */
    scale: 1;
}
.top_menu_slick .slick-list li.slick-active {
    /* top: 0; */
    /* scale: 1; */
}
.top_menu_slick .slick-list li.slick-current {
    /* top: 0; */
    scale: 1;
}



.top_menu_slick_detail_wrap {
    height: 100%;
    max-height: 300px;
    /* position: relative; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
@media only screen and (max-width:750px) {
    .top_menu_slick_detail_wrap {
        max-height: max(18vh, 28vw);
    }
}
.top_menu_slick_img {
    max-height: 100%;
    object-fit: contain;
    /* object-fit: cover; */
    /* aspect-ratio: 1 / 1; */
}
@media only screen and (max-width:750px) {
}

.top_menu_slick_name_wrap {
    width: 65vw;
    text-align: center;
    opacity: 0;
    transition: all 1000ms ease-in-out;

    position: absolute;
    bottom: -93px;
    /* margin-top: 8px; */
}
@media only screen and (max-width:750px) {
    .top_menu_slick_name_wrap {
        width: 60vw;
        bottom: -58px;
    }
}
.top_menu_slick .slick-list li.is-active-next .top_menu_slick_name_wrap {
    opacity: 1;
}
.top_menu_slick .slick-list li.slick-active .top_menu_slick_name_wrap {
    /* opacity: 1; */
}
.top_menu_slick .slick-list li.slick-current .top_menu_slick_name_wrap {
    opacity: 1;
}




.top_menu_slick_name_en {
    font-family: var(--fonten);
    color: var(--color);
    font-size: 30px;
    line-height: 40px;
}
@media only screen and (max-width:750px) {
    .top_menu_slick_name_en {
        font-size: 20px;
        line-height: 26px;
    }
}
.top_menu_slick_name_jp {
    font-family: var(--fontjp);
    color: var(--color);
    font-size: 16px;
    line-height: 20px;
}
@media only screen and (max-width:750px) {
    .top_menu_slick_name_jp {
        font-size: 10px;
        line-height: 16px;
    }
}




body.en .top_menu_slick_name_wrap {
    bottom: -80px;
}
@media only screen and (max-width:750px) {
    body.en .top_menu_slick_name_wrap {
        bottom: -50px;
    }
}

body.en .top_menu_slick_name_jp {
    display: none;
}



.slick_prev_wrap {
    position: absolute;
    bottom: 20px;
    left: 10%;
    z-index: 2;
    /* top: calc(50% - 50px); */
    /* transform: translate(0, -50%); */
}
.slick_next_wrap {
    position: absolute;
    bottom: 20px;
    right: 10%;
    z-index: 2;
    /* top: calc(50% - 50px); */
    /* transform: translate(0, -50%); */
}
@media only screen and (max-width:750px) {
    .slick_prev_wrap {
        bottom: 17px;
        left: 8%;
    }
    .slick_next_wrap {
        bottom: 17px;
        right: 8%;
    }
}
.slick_prev, .slick_next {
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: relative;
}
@media only screen and (max-width:750px) {
    .slick_prev, .slick_next {
        width: 30px;
        height: 30px;
    }
}
.slick_prev::before, .slick_next::before {
    content: "";
    position: absolute;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
}
.slick_prev::before {
    background-image: url(img/icon_left.svg);
}
.slick_next::before {
    background-image: url(img/icon_right.svg);
}
/* .slick_prev::before, .slick_next::before {
    content: "";
    position: absolute;
    background-color: var(--color);
    opacity: 0.6;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.slick_prev::after {
    content: "";
    width: 10px;
    height: calc(tan(60deg) * 10px);
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
    background-color: #FFF;
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    z-index: 3;
}
.slick_next::after {
    content: "";
    width: 10px;
    height: calc(tan(60deg) * 10px);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    background-color: #FFF;
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    z-index: 3;
}
@media only screen and (max-width:750px) {
    .slick_prev::after {
        width: 8px;
        height: calc(tan(60deg) * 8px);
    }
    .slick_next::after {
        width: 8px;
        height: calc(tan(60deg) * 8px);
    }
} */



.top_menu_slick .dot {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 45px;
    padding-bottom: 40px;
    opacity: 0;
    visibility: hidden;
}
@media only screen and (max-width:750px) {
    .top_menu_slick .dot {
        margin-top: 30px;
        padding-bottom: 30px;
    }
}
.top_menu_slick .dot li {
    margin: 0px 7px;
    cursor: pointer;
}
.top_menu_slick .dot li::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    /* background-color: #E3E3E3; */
    border: 2px solid var(--color);
    transition: all 300ms ease-in-out;
}
.top_menu_slick .dot li.slick-active::before {
    width: 12px;
    height: 12px;
    background-color: var(--color);
}
.top_menu_slick .dot li button {
    display: none;
}




.top_com_menu_slick .slick_prev_wrap {
    left: 25%;
}
.top_com_menu_slick .slick_next_wrap {
    right: 25%;
}
@media only screen and (max-width:750px) {
    .top_com_menu_slick .slick_prev_wrap {
        left: 8%;
    }
    .top_com_menu_slick .slick_next_wrap {
        right: 8%;
    }
}


.top_com_menu_slick .dot {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 33px;
    padding-bottom: 33px;
}
@media only screen and (max-width:750px) {
    .top_com_menu_slick .dot {
        margin-top: 25px;
        padding-bottom: 25px;
    }
}
.top_com_menu_slick .dot li {
    margin: 0px 7px;
    cursor: pointer;
}
.top_com_menu_slick .dot li::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    /* background-color: #E3E3E3; */
    border: 2px solid var(--color);
    transition: all 300ms ease-in-out;
}
.top_com_menu_slick .dot li.slick-active::before {
    width: 12px;
    height: 12px;
    background-color: var(--color);
}
.top_com_menu_slick .dot li button {
    display: none;
}






.top_menu_list_wrap {
    margin-top: 30px;
}
@media only screen and (max-width:750px) {
}


.top_menu_list_label_wrap {
    width: 90%;
    max-width: 1080px;
    margin: 0 auto;
    margin-bottom: 30px;
}
@media only screen and (max-width:750px) {
    .top_menu_list_label_wrap {
        margin-bottom: 15px;
    }
}
.top_menu_list_label {
    display: inline-block;
    border-radius: 12px;
    border: 3px solid var(--color);
    position: relative;
    padding: 7px 75px;
}
@media only screen and (max-width:750px) {
    .top_menu_list_label {
        border-radius: 8px;
        border: 2px solid var(--color);
        position: relative;
        padding: 5px 38px;
    }
}
.top_menu_list_label:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color);
}
.top_menu_list_label:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color);
}
@media only screen and (max-width:750px) {
    .top_menu_list_label:before {
      left: 10px;
      width: 5px;
      height: 5px;
    }
    .top_menu_list_label:after {
      right: 10px;
      width: 5px;
      height: 5px;
    }
}
.top_menu_list_label_text {
    font-family: var(--fonten);
    color: var(--color);
    font-size: 36px;
    letter-spacing: 0.04em;
    font-weight: 400;
    white-space: nowrap;
}
@media only screen and (max-width:750px) {
    .top_menu_list_label_text {
        font-size: 20px;
    }
}



.top_com_menu_slick_wrap {
    visibility: hidden;
    opacity: 0;
    transition: all 1000ms ease-in-out;
    position: relative;
    z-index: 1;
}
.top_com_menu_slick_wrap.visible {
    visibility: visible;
    opacity: 1;
}
.top_com_menu_slick {
}

.top_com_menu_slick .slick-track {
    display: flex;
}
.top_com_menu_slick .slick-list li {
    /* padding: 0 1.5vw; */
    float: none;
    height: auto;
}

.top_com_menu_slick_li {
}
.top_com_menu_wrap {
    width: 90%;
    max-width: calc(1080px - 6px);
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    border: 3px solid var(--color);
    overflow: hidden;
    height: calc(100% - 6px);
}
@media only screen and (max-width:750px) {
    .top_com_menu_wrap {
        border-radius: 10px;
        border: 2px solid var(--color);
        height: calc(100% - 4px);
    }
}
.top_com_menu_list_wrap {
    width: 92%;
    margin: 0 auto;
    /* display: flex; */
    /* flex-direction: column; */
    /* gap: 20px; */
    padding-top: 30px;
    padding-bottom: 10px;
}
@media only screen and (max-width:750px) {
    .top_com_menu_list_wrap {
        padding-top: 20px;
        padding-bottom: 10px;
    }
}
.top_com_menu_list {
    column-count: 2;
    column-gap: 5%;
}
@media only screen and (max-width:750px) {
    .top_com_menu_list {
        column-count: 1;
    }
}
.top_com_menu_list_li {
    break-inside: avoid;
    margin-bottom: 18px;
}
@media only screen and (max-width:750px) {
    .top_com_menu_list_li {
        margin-bottom: 7px;
    }
}
.top_com_menu_list > li {
}




.top_com_menu_content {
    margin-bottom: 22px;
}
@media only screen and (max-width:750px) {
    .top_com_menu_content {
        margin-bottom: 15px;
    }
}
.top_com_menu_cat_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 18px;
    margin-bottom: 18px;
}
@media only screen and (max-width:750px) {
    .top_com_menu_cat_wrap {
        gap: 10px;    
        flex-direction: row;
        margin-bottom: 7px;
    }
}


.top_com_menu_cat_name_en_wrap {
    background-color: #FFF;
    position: relative;
    z-index: 3;
}
.top_com_menu_cat_name_en {
    font-family: var(--fonten);
    color: var(--text_color);
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.05em;
    font-weight: 400;
}
@media only screen and (max-width:750px) {
    .top_com_menu_cat_name_en {
        font-size: 15px;
        line-height: 18px;
    }
}
.top_com_menu_cat_name_wrap {
    background-color: #FFF;
    position: relative;
    z-index: 3;
    padding-right: 10px;
}
.top_com_menu_cat_name {
    color: var(--text_color);
    font-size: 16px;
    line-height: 24px;
}
@media only screen and (max-width:750px) {
    .top_com_menu_cat_name {
        font-size: 10px;
        line-height: 18px;
    }
}

.top_com_menu_cat_price_wrap {
    margin-left: auto;
    position: relative;
}
.top_com_menu_cat_price_wrap:before {
    content: '';
    background: radial-gradient(circle farthest-side, var(--text_color), var(--text_color) 21%, transparent 21%, transparent);
    background-size: 20px;
    height: 20px;
    width: 266px;
    max-width: calc(38vw - 100%);
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translate(0, -50%);
    z-index: 1;
}
@media only screen and (max-width:750px) {
    .top_com_menu_cat_price_wrap:before {
        display: none;
    }
}
.top_com_menu_cat_price {
    font-family: var(--fonten);
    color: var(--text_color);
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.05em;
    font-weight: 400;
}
@media only screen and (max-width:750px) {
    .top_com_menu_cat_price {
        font-size: 15px;
        line-height: 18px;
    }
}



.top_com_menu {
}
.top_com_menu_detail {
    display: flex;
    gap: 10px;
    align-items: center;
    /* position: relative; */
}

/* .top_com_menu_detail:before {
    content: '';
    background: radial-gradient(circle farthest-side, var(--color), var(--color) 21%, transparent 21%, transparent);
    background-size: 20px;
    height: 20px;
    width: 70%;
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(0, -50%);
    z-index: 1;
} */

.top_com_menu_name_en_wrap {
    max-width: 80%;
    position: relative;
    z-index: 3;
    padding-right: 10px;
    background-color: #FFF;
}
@media only screen and (max-width:750px) {
    .top_com_menu_name_en_wrap {
        max-width: none;
        padding-right: 10px;
    }
}
.top_com_menu_name_en {
    font-family: var(--fonten);
    color: var(--color);
    font-size: 30px;
    line-height: 30px;
    font-weight: 400;
}
.top_com_menu_name_en .small {
    font-size: 24px;
    line-height: 24px;
}
@media only screen and (max-width:750px) {
    .top_com_menu_name_en {
        font-size: 20px;
        line-height: 20px;
    }
    .top_com_menu_name_en .small {
        font-size: 16px;
        line-height: 16px;
    }
}
.top_com_menu_price_wrap {
    margin-left: auto;
    position: relative;
    z-index: 2;
    padding-left: 10px;
    background-color: #FFF;
    text-align: right;
    position: relative;
}

.top_com_menu_price_wrap:before {
    content: '';
    background: radial-gradient(circle farthest-side, var(--color), var(--color) 21%, transparent 21%, transparent);
    background-size: 20px;
    height: 20px;
    width: 253px;
    max-width: calc(38vw - 100%);
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translate(0, -50%);
    z-index: 1;
}
@media only screen and (max-width:750px) {
    .top_com_menu_price_wrap:before {
        display: none;
    }
}

.top_com_menu_price {
    font-family: var(--fonten);
    color: var(--color);
    font-size: 24px;
    line-height: 24px;
    font-weight: 400;
    white-space: nowrap;
}
@media only screen and (max-width:750px) {
    .top_com_menu_price {
        font-size: 15px;
        line-height: 16px;
    }
}
.top_com_menu_name_wrap {
    margin-top: 4px;
}
.top_com_menu_name {
    font-size: 16px;
    line-height: 24px;
}
@media only screen and (max-width:750px) {
    .top_com_menu_name_wrap {
        margin-top: 2px;
    }
    .top_com_menu_name {
        font-size: 10px;
        line-height: 15px;
    }
}


/* .top_com_menu {
    display: flex;
    gap: 10px;
}
.top_com_menu_left {
}
.top_com_menu_right {
    margin-left: auto;
}
.top_com_menu_name_wrap {
}
.top_com_menu_name {
    font-size: 18px;
    line-height: 22px;
}
.top_com_menu_note_wrap {
}
.top_com_menu_note {
    font-size: 14px;
    line-height: 18px;
    color: #000;
}

.top_com_menu_sub_wrap {
    display: flex;
    gap: 10px;
}
.top_com_menu_name_sub_wrap {
}
.top_com_menu_name_sub {
    font-family: var(--fonten);
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.05em;
    font-weight: 400;
    white-space: nowrap;
}
.top_com_menu_price_wrap {
    margin-left: auto;
}
.top_com_menu_price {
    font-family: var(--fonten);
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.05em;
    font-weight: 400;
    white-space: nowrap;
} */


.top_menu_list_wrap.menu_night {
    margin-top: 60px;
}
@media only screen and (max-width:750px) {
    .top_menu_list_wrap.menu_night {
        margin-top: 30px;
    }
}
.top_menu_list_wrap.menu_night .top_com_menu_cat_name_en_wrap {
    background-color: #03343C;
}
.top_menu_list_wrap.menu_night .top_com_menu_cat_name_en {
    color: var(--color);
}
.top_menu_list_wrap.menu_night .top_com_menu_cat_name_wrap {
    background-color: #03343C;
}
.top_menu_list_wrap.menu_night .top_com_menu_cat_name {
    color: var(--color);
}
.top_menu_list_wrap.menu_night .top_com_menu_name_en_wrap {
    background-color: #03343C;
}
.top_menu_list_wrap.menu_night .top_com_menu_name_en {
    color: #FFF;
}
.top_menu_list_wrap.menu_night .top_com_menu_name {
    color: #FFF;
}
.top_menu_list_wrap.menu_night .top_com_menu_price_wrap {
    background-color: #03343C;
}
.top_menu_list_wrap.menu_night .top_com_menu_price_wrap:before {
    background: radial-gradient(circle farthest-side, #FFF, #FFF 21%, transparent 21%, transparent);
    background-size: 20px;
}
.top_menu_list_wrap.menu_night .top_com_menu_price {
    color: #FFF;
}




/*------------------------------------*\
    top night menu
\*------------------------------------*/

.top_night_wrap {
    padding-top: 160px;
    padding-bottom: 100px;
    background-color: #03343C;
}
@media only screen and (max-width:750px) {
    .top_night_wrap {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
.top_night_inner {
    overflow: hidden;
    /* width: 90%; */
    /* max-width: 900px; */
    /* margin: 0 auto; */
}
@media only screen and (max-width:750px) {
    .top_night_inner {
        /* width: 85%; */
    }
}


.top_night_fv_wrap {
    width: 85%;
    max-width: 1000px;
    margin: 0 auto;
}
.top_night_fv_inner {
    position: relative;
    padding-top: 12%;
}
.top_night_fv_img_wrap {
    position: relative;
    overflow: hidden;
    font-size: 0;
    border-radius: 65px;
    z-index: 1;
}
@media only screen and (max-width:750px) {
    .top_night_fv_img_wrap {
        border-radius: 16px;
    }
}
.top_night_fv_img {
    object-fit: cover;
    aspect-ratio: 1000 / 670;
}
@media only screen and (max-width:750px) {
    .top_night_fv_img {
        aspect-ratio: 2 / 3;
    }
}

.top_night_title_wrap {
    width: 83%;
    max-width: 860px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 2;
}
@media only screen and (max-width:750px) {
    .top_night_title_wrap {
        left: 48%;
    }
}
.top_night_title {
}

.top_night_title_time_wrap {
    width: 34%;
    max-width: 340px;
    position: absolute;
    top: 26%;
    right: 2%;
    z-index: 3;
}
@media only screen and (max-width:750px) {
    .top_night_title_time_wrap {
        width: 37%;
        top: 13%;
    }
}
.top_night_title_time {
}



.top_night_text_wrap {
    text-align: center;
    display: inline-block;
    position: relative;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    margin: 60px 0;
}
.top_night_text_wrap:before {
    content: '';
    background: radial-gradient(circle farthest-side, #FFF, #FFF 33%, transparent 33%, transparent);
    background-size: 15px;
    height: 15px;
    width: 100%;
    position: absolute;
    top: -5px;
    left: 0;
}
.top_night_text_wrap:after {
    content: '';
    background: radial-gradient(circle farthest-side, #FFF, #FFF 33%, transparent 33%, transparent);
    background-size: 15px;
    height: 15px;
    width: 100%;
    position: absolute;
    bottom: -5px;
    left: 0;
}
.top_night_text_inner {
    padding: 30px 10px;
}
.top_night_text {
    font-size: 30px;
    line-height: 40px;
    color: #FFF;
}
@media only screen and (max-width:750px) {
    .top_night_text {
        font-size: 20px;
        line-height: 30px;
    }
}



.top_night_detail_list_wrap {
}

.top_night_detail_wrap {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}
.top_night_detail_wrap:before {
    content: "";
    display: block;
}

.top_night_detail_inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.top_night_detail_title_wrap {
    position: absolute;
}
.top_night_detail_title {
}

.top_night_detail_menu_wrap {
    position: absolute;
}
.top_night_detail_menu_inner {
    position: relative;
}
.top_night_detail_menu_inner:before {
    content: "";
    display: block;
}
.top_night_detail_menu_img_wrap {
    position: absolute;
}
.top_night_detail_menu_img {
}
.top_night_detail_menu_img_wrap_2 {
    position: absolute;
}
.top_night_detail_menu_img_2 {
}
.top_night_detail_menu_name_wrap {
    position: absolute;
}
.top_night_detail_menu_name {
}



#burger.top_night_detail_wrap {
}
#burger.top_night_detail_wrap:before {
    padding-top: calc(100%*(1040 / 1000));
}
#burger .top_night_detail_title_wrap {
    top: 0;
    left: 0;
    width: 40%;
}
#burger .top_night_detail_menu_wrap.menu_1 {
    top: 3%;
    right: 0;
    width: 100%;
}
#burger .top_night_detail_menu_wrap.menu_1 .top_night_detail_menu_inner:before {
    padding-top: calc(100%*(480 / 1000));
}

#burger .top_night_detail_menu_wrap.menu_1 .top_night_detail_menu_img_wrap {
    top: 0;
    right: 0;
    width: 86%;
}
#burger .top_night_detail_menu_wrap.menu_1 .top_night_detail_menu_name_wrap {
    width: 20%;
    bottom: 21%;
    left: 3%;
}

#burger .top_night_detail_menu_wrap.menu_2 {
    bottom: 6%;
    left: 2%;
    width: 50%;
}
#burger .top_night_detail_menu_wrap.menu_2 .top_night_detail_menu_inner:before {
    padding-top: calc(100%*(440 / 460));
}
#burger .top_night_detail_menu_wrap.menu_2 .top_night_detail_menu_img_wrap {
    top: 2%;
    right: 9%;
    width: 53%;
    z-index: 2;
    transform: rotate(14deg);
}
#burger .top_night_detail_menu_wrap.menu_2 .top_night_detail_menu_name_wrap {
    width: 49%;
    bottom: 32%;
    left: 2%;
    z-index: 1;
}


#burger .top_night_detail_menu_wrap.menu_3 {
    bottom: 0;
    right: 1%;
    width: 58%;
}
#burger .top_night_detail_menu_wrap.menu_3 .top_night_detail_menu_inner:before {
    padding-top: calc(100%*(410 / 570));
}
#burger .top_night_detail_menu_wrap.menu_3 .top_night_detail_menu_img_wrap {
    bottom: 0;
    right: 2%;
    width: 53%;
    z-index: 2;
    transform: rotate(-14deg);
}
#burger .top_night_detail_menu_wrap.menu_3 .top_night_detail_menu_img_wrap_2 {
    top: 0;
    right: 30%;
    width: 47%;
    z-index: 1;
    transform: rotate(18deg) scale(-1, 1);
}
#burger .top_night_detail_menu_wrap.menu_3 .top_night_detail_menu_name_wrap {
    width: 40%;
    bottom: 16%;
    left: 2%;
}





#hotdish.top_night_detail_wrap {
}
#hotdish.top_night_detail_wrap:before {
    padding-top: calc(100%*(1190 / 1000));
}
#hotdish .top_night_detail_title_wrap {
    top: -8%;
    right: -3%;
    width: 58%;
}
#hotdish .top_night_detail_menu_wrap.menu_1 {
    top: 3%;
    left: 0;
    width: 44%;
}
#hotdish .top_night_detail_menu_wrap.menu_1 .top_night_detail_menu_inner:before {
    padding-top: calc(100%*(400 / 440));
}

#hotdish .top_night_detail_menu_wrap.menu_1 .top_night_detail_menu_img_wrap {
    bottom: 0;
    left: 0;
    width: 100%;
}
#hotdish .top_night_detail_menu_wrap.menu_1 .top_night_detail_menu_name_wrap {
    width: 53%;
    top: 0;
    left: 28%;
}

#hotdish .top_night_detail_menu_wrap.menu_2 {
    top: 24%;
    right: 2%;
    width: 50%;
}
#hotdish .top_night_detail_menu_wrap.menu_2 .top_night_detail_menu_inner:before {
    padding-top: calc(100%*(430 / 500));
}
#hotdish .top_night_detail_menu_wrap.menu_2 .top_night_detail_menu_img_wrap {
    top: 0;
    left: 0;
    width: 100%;
}
#hotdish .top_night_detail_menu_wrap.menu_2 .top_night_detail_menu_name_wrap {
    width: 71%;
    bottom: 0;
    left: 14%;
}

#hotdish .top_night_detail_menu_wrap.menu_3 {
    bottom: 11%;
    left: 7%;
    width: 43%;
}
#hotdish .top_night_detail_menu_wrap.menu_3 .top_night_detail_menu_inner:before {
    padding-top: calc(100%*(546 / 430));
}
#hotdish .top_night_detail_menu_wrap.menu_3 .top_night_detail_menu_img_wrap {
    top: 1%;
    left: 5%;
    width: 53%;
    z-index: 2;
    transform: rotate(-11deg);
}
#hotdish .top_night_detail_menu_wrap.menu_3 .top_night_detail_menu_name_wrap {
    width: 59%;
    bottom: 34%;
    right: -2%;
    z-index: 1;
}

#hotdish .top_night_detail_menu_wrap.menu_4 {
    bottom: 0;
    right: 0;
    width: 61%;
}
#hotdish .top_night_detail_menu_wrap.menu_4 .top_night_detail_menu_inner:before {
    padding-top: calc(100%*(420 / 610));
}
#hotdish .top_night_detail_menu_wrap.menu_4 .top_night_detail_menu_img_wrap {
    bottom: -4%;
    right: -2%;
    width: 85%;
    z-index: 2;
    transform: rotate(212deg);
}
#hotdish .top_night_detail_menu_wrap.menu_4 .top_night_detail_menu_name_wrap {
    width: 33%;
    bottom: 0;
    left: 0;
}






#appetizer.top_night_detail_wrap {
    margin-top: 7%;
}
#appetizer.top_night_detail_wrap:before {
    padding-top: calc(100%*(1125 / 1000));
}
#appetizer .top_night_detail_title_wrap {
    top: 0%;
    left: 0%;
    width: 57.6%;
}

#appetizer .top_night_detail_menu_wrap.menu_1 {
    top: 2%;
    right: 2%;
    width: 50%;
}
#appetizer .top_night_detail_menu_wrap.menu_1 .top_night_detail_menu_inner:before {
    padding-top: calc(100%*(424 / 500));
}
#appetizer .top_night_detail_menu_wrap.menu_1 .top_night_detail_menu_img_wrap {
    top: 0;
    left: 0;
    width: 100%;
}
#appetizer .top_night_detail_menu_wrap.menu_1 .top_night_detail_menu_name_wrap {
    width: 63%;
    bottom: 5%;
    right: 8%;
}

#appetizer .top_night_detail_menu_wrap.menu_2 {
    top: 29%;
    left: 7%;
    width: 68%;
}
#appetizer .top_night_detail_menu_wrap.menu_2 .top_night_detail_menu_inner:before {
    padding-top: calc(100%*(440 / 676));
}
#appetizer .top_night_detail_menu_wrap.menu_2 .top_night_detail_menu_img_wrap {
    top: 0;
    left: 0;
    width: 100%;
}
#appetizer .top_night_detail_menu_wrap.menu_2 .top_night_detail_menu_name_wrap {
    width: 22.4%;
    bottom: 0;
    left: 3%;
}

#appetizer .top_night_detail_menu_wrap.menu_3 {
    bottom: 0;
    right: 0;
    width: 54%;
}
#appetizer .top_night_detail_menu_wrap.menu_3 .top_night_detail_menu_inner:before {
    padding-top: calc(100%*(534 / 542));
}
#appetizer .top_night_detail_menu_wrap.menu_3 .top_night_detail_menu_img_wrap {
    bottom: -1%;
    right: 10%;
    width: 50%;
    z-index: 2;
    transform: rotate(13deg);
}
#appetizer .top_night_detail_menu_wrap.menu_3 .top_night_detail_menu_name_wrap {
    width: 45%;
    bottom: 31%;
    left: 0;
}




#rice.top_night_detail_wrap {
    margin-top: -10%;
}
#rice.top_night_detail_wrap:before {
    padding-top: calc(100%*(1272 / 1000));
}
#rice .top_night_detail_title_wrap {
    top: 0%;
    left: 5%;
    width: 27%;
}
#rice .top_night_detail_menu_wrap.menu_1 {
    top: 11%;
    left: 0;
    width: 64%;
}
#rice .top_night_detail_menu_wrap.menu_1 .top_night_detail_menu_inner:before {
    padding-top: calc(100%*(635 / 755));
}
#rice .top_night_detail_menu_wrap.menu_1 .top_night_detail_menu_img_wrap {
    top: 2%;
    left: 0;
    width: 101%;
    transform: rotate(-13deg);
}
#rice .top_night_detail_menu_wrap.menu_1 .top_night_detail_menu_name_wrap {
    width: 48%;
    bottom: 0;
    left: 1%;
}

#rice .top_night_detail_menu_wrap.menu_2 {
    top: 44%;
    right: 0;
    width: 58%;
}
#rice .top_night_detail_menu_wrap.menu_2 .top_night_detail_menu_inner:before {
    padding-top: calc(100%*(469 / 506));
}
#rice .top_night_detail_menu_wrap.menu_2 .top_night_detail_menu_img_wrap {
    top: 0;
    left: 0;
    width: 100%;
}
#rice .top_night_detail_menu_wrap.menu_2 .top_night_detail_menu_name_wrap {
    width: 60%;
    bottom: 1%;
    left: 21%;
}

#rice .top_night_detail_menu_wrap.menu_3 {
    bottom: 0;
    left: 2%;
    width: 36%;
}
#rice .top_night_detail_menu_wrap.menu_3 .top_night_detail_menu_inner:before {
    padding-top: calc(100%*(554 / 364));
}
#rice .top_night_detail_menu_wrap.menu_3 .top_night_detail_menu_img_wrap {
    top: 1%;
    right: -1%;
    width: 74%;
    z-index: 2;
    transform: rotate(-11deg);
}
#rice .top_night_detail_menu_wrap.menu_3 .top_night_detail_menu_name_wrap {
    width: 70%;
    bottom: -5%;
    left: -2%;
    z-index: 1;
}



#sweets.top_night_detail_wrap {
    margin-top: 0%;
}
#sweets.top_night_detail_wrap:before {
    padding-top: calc(100%*(950 / 1000));
}
#sweets .top_night_detail_title_wrap {
    top: 0%;
    left: 8%;
    width: 41%;
}

#sweets .top_night_detail_menu_wrap.menu_1 {
    top: 5%;
    right: 0%;
    width: 53%;
}
#sweets .top_night_detail_menu_wrap.menu_1 .top_night_detail_menu_inner:before {
    padding-top: calc(100%*(305 / 490));
}
#sweets .top_night_detail_menu_wrap.menu_1 .top_night_detail_menu_img_wrap {
    top: 0;
    left: 0;
    width: 100%;
}
#sweets .top_night_detail_menu_wrap.menu_1 .top_night_detail_menu_name_wrap {
    width: 32.4%;
    bottom: 0;
    right: 32%;
}

#sweets .top_night_detail_menu_wrap.menu_2 {
    top: 27%;
    left: -5%;  
    width: 60%;
}
#sweets .top_night_detail_menu_wrap.menu_2 .top_night_detail_menu_inner:before {
    padding-top: calc(100%*(840 / 1000));
}
#sweets .top_night_detail_menu_wrap.menu_2 .top_night_detail_menu_img_wrap {
    top: 0;
    left: 0;
    width: 99%;
}
#sweets .top_night_detail_menu_wrap.menu_2 .top_night_detail_menu_name_wrap {
    width: 60%;
    bottom: 0;
    right: 9%;
}

#sweets .top_night_detail_menu_wrap.menu_3 {
    bottom: 0;
    right: 0;
    width: 40%;
}
#sweets .top_night_detail_menu_wrap.menu_3 .top_night_detail_menu_inner:before {
    padding-top: calc(100%*(524 / 400));
}
#sweets .top_night_detail_menu_wrap.menu_3 .top_night_detail_menu_img_wrap {
    bottom: 0;
    left: 1%;
    width: 46%;
    z-index: 2;
    transform: rotate(13deg);
}
#sweets .top_night_detail_menu_wrap.menu_3 .top_night_detail_menu_name_wrap {
    width: 65%;
    bottom: 4%;
    right: 6%;
}


/*------------------------------------*\
    top SHOP / MAP
\*------------------------------------*/

.top_shop_wrap {
    padding-top: 100px;
    padding-bottom: 100px;
}
@media only screen and (max-width:750px) {
    .top_shop_wrap {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
.top_shop_inner {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}
@media only screen and (max-width:750px) {
    .top_shop_inner {
        width: 85%;
    }
}

.top_com_title_wrap {
    text-align: center;
}
.top_com_title {
    font-family: var(--fonten);
    font-size: 66px;
    line-height: 80px;
    color: var(--color);
}
.top_com_title.title_white {
    color: #FFF;
}
@media only screen and (max-width:750px) {
    .top_com_title {
        font-size: 36px;
        line-height: 45px;
    }
}

.top_shop_img_wrap {
    position: relative;
    border-radius: 20px;
    border: 4px solid var(--color);
    overflow: hidden;
    margin-top: 60px;
}
@media only screen and (max-width:750px) {
    .top_shop_img_wrap {
        border-radius: 10px;
        border: 2px solid var(--color);
        margin-top: 30px;
    }
}
.top_shop_img_wrap:before {
  content: "";
  display: block;
  padding-top: calc(100%*(9 / 16));
}
.top_shop_img {
    background-image: url(img/top_shop_img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
}

.top_shop_about_wrap {
    border-radius: 20px;
    border: 4px solid var(--color);
    overflow: hidden;
    margin-top: 60px;
    display: flex;
}
@media only screen and (max-width:750px) {
    .top_shop_about_wrap {
        border-radius: 10px;
        border: 2px solid var(--color);
        margin-top: 30px;
        flex-direction: column;
    }
}
.top_shop_map_wrap {
    width: 50%;
    border-right: 4px solid var(--color);
}
@media only screen and (max-width:750px) {
    .top_shop_map_wrap {
        width: 100%;
        border-right: none;
        border-bottom: 2px solid var(--color);
    }
}
.top_shop_map {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.top_shop_detail_wrap {
    width: 50%;
    display: flex;
    align-items: center;
}
@media only screen and (max-width:750px) {
    .top_shop_detail_wrap {
        width: 100%;
    }
}
.top_shop_detail_inner {
    width: 89%;
    margin: 0 auto;
    padding: 10px 0 20px;
}
@media only screen and (max-width:750px) {
    .top_shop_detail_inner {
        width: 92%;
        margin-left: 6%;
        margin-top: 30px;
        margin-bottom: 30px;
        padding: 0;
    }
}

.top_shop_detail_name_wrap {
    padding: 10px 0;
}
@media only screen and (max-width:750px) {
    .top_shop_detail_name_wrap {
        padding: 0;
    }
}
.top_shop_detail_name {
}
.top_shop_detail_name .text_name {
    font-family: var(--fontjp);
    font-size: 27px;
    line-height: 32px;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-right: 10px;
}
@media only screen and (max-width:750px) {
    .top_shop_detail_name .text_name {
        font-size: 24px;
        line-height: 32px;
        letter-spacing: -0.01em;
        margin-right: 6px;
    }
}
.top_shop_detail_name .text_small {
    font-size: 19px;
    line-height: 32px;
    letter-spacing: 0.05em;
}
@media only screen and (max-width:750px) {
    .top_shop_detail_name .text_small {
        font-size: 15px;
        line-height: 26px;
        letter-spacing: -0.01em;
    }
}
.top_shop_detail_address_wrap {
}
.top_shop_detail_address {
    font-size: 22px;
    line-height: 36px;
}
@media only screen and (max-width:750px) {
    .top_shop_detail_address {
        font-size: 16px;
        line-height: 25px;
    }
}
.top_shop_detail_map {
    font-family: var(--fontjp);
    color: var(--color);
    font-size: 22px;
    line-height: 36px;
    letter-spacing: 0.01em;
    font-weight: bold;
    text-align: center;
}
@media only screen and (max-width:750px) {
    .top_shop_detail_map {
        font-size: 16px;
        line-height: 25px;
    }
}
.top_shop_detail_map .shop_map {
    text-decoration: underline;
}

.top_shop_detail_list {
}
.top_shop_detail_dt_wrap {
    margin-top: 20px;
}
@media only screen and (max-width:750px) {
    .top_shop_detail_dt_wrap {
        margin-top: 10px;
    }
}
.top_shop_detail_dt {
    font-size: 22px;
    line-height: 36px;
}
@media only screen and (max-width:750px) {
    .top_shop_detail_dt {
        font-size: 16px;
        line-height: 25px;
    }
}
.top_shop_detail_dd_wrap {
}
.top_shop_detail_dd {
    font-size: 22px;
    line-height: 26px;
    display: block;
}
.top_shop_detail_dd .text_name {
    font-size: 18px;
    line-height: 36px;
}
.top_shop_detail_dd .spacing_small {
    letter-spacing: -0.1em;
}
@media only screen and (max-width:750px) {
    .top_shop_detail_dd {
        font-size: 16px;
        line-height: 25px;
    }
    .top_shop_detail_dd .text_name {
        font-size: 14px;
        line-height: 25px;
    }
}


/*------------------------------------*\
    top America
\*------------------------------------*/
.top_america_wrap {
    padding-top: 90px;
    padding-bottom: 10px;
    background-color: var(--color);
}
@media only screen and (max-width:750px) {
    .top_america_wrap {
        padding-top: 50px;
        padding-bottom: 10px;
    }
}
.top_america_inner {
    width: 1100px;
    max-width: 80%;
    margin: 0 auto;
    padding-bottom: 10px;
}
@media only screen and (max-width:750px) {
    .top_america_inner {
        max-width: 90%;
    }
}
.top_america_title_wrap {
}
.top_america_title {
    font-family: var(--fonten_title);
    color: #FFF;
    font-size: 53px;
    line-height: 78px;
    font-weight: 400;
}
@media only screen and (max-width:750px) {
    .top_america_title_wrap {
        text-align: center;
    }
    .top_america_title {
        font-size: 29px;
        line-height: 45px;
    }
}
.top_america_text_wrap {
    margin-top: 30px;
}
.top_america_text {
    font-size: 30px;
    line-height: 49px;
    color: #FFF;
}
@media only screen and (max-width:750px) {
    .top_america_text_wrap {
        text-align: center;
        margin-top: 18px;
    }
    .top_america_text {
        font-size: 16px;
        line-height: 29px;
        color: #FFF;
    }
}

/*------------------------------------*\
    top America gallery
\*------------------------------------*/
.top_america_gallery_wrap {
    background-color: var(--color);
    overflow: hidden;
}
@media only screen and (max-width:750px) {
    .top_america_gallery_wrap {
    }
}
.top_america_gallery_inner {
    position: relative;
    width: 100%;
    aspect-ratio: 5 / 3;
}
@media only screen and (max-width:750px) {
    .top_america_gallery_inner {
        aspect-ratio: 375 / 450;
    }
}
.top_america_gallery_img_1_wrap {
    width: 37%;
    position: absolute;
    top: 6%;
    left: -8%;
    overflow: hidden;
    font-size: 0;
    border-radius: 30px;
    border: 5px solid #FFF;
}
@media only screen and (max-width:750px) {
    .top_america_gallery_img_1_wrap {
        width: 71%;
        top: 6%;
        left: -17%;
        border-radius: 12px;
        border: 2px solid #FFF;
    }
}
.top_america_gallery_img_2_wrap {
    width: 37%;
    position: absolute;
    bottom: 5%;
    left: 6%;
    overflow: hidden;
    font-size: 0;
    border-radius: 30px;
    border: 5px solid #FFF;
}
@media only screen and (max-width:750px) {
    .top_america_gallery_img_2_wrap {
        width: 71%;
        bottom: 3.5%;
        left: -14%;
        border-radius: 12px;
        border: 2px solid #FFF;
    }
}
.top_america_gallery_img_3_wrap {
    width: 24%;
    position: absolute;
    top: 12%;
    left: 46%;
    overflow: hidden;
    font-size: 0;
    border-radius: 30px;
    border: 5px solid #FFF;
}
@media only screen and (max-width:750px) {
    .top_america_gallery_img_3_wrap {
        width: 48%;
        top: 12%;
        left: auto;
        right: -10%;
        border-radius: 12px;
        border: 2px solid #FFF;
    }
}
.top_america_gallery_img_4_wrap {
    width: 37%;
    position: absolute;
    top: 22%;
    right: -11%;
    overflow: hidden;
    font-size: 0;
    border-radius: 30px;
    border: 5px solid #FFF;
}
@media only screen and (max-width:750px) {
    .top_america_gallery_img_4_wrap {
        display: none;
    }
}
.top_america_gallery_img_1 {
    object-fit: cover;
    aspect-ratio: 3 / 2;
}
.top_america_gallery_img_2 {
    object-fit: cover;
    aspect-ratio: 3 / 2;
}
.top_america_gallery_img_3 {
    object-fit: cover;
    aspect-ratio: 2 / 3;
}
.top_america_gallery_img_4 {
    object-fit: cover;
    aspect-ratio: 3 / 2;
}


.top_america_logo_wrap {
    width: 11%;
    position: absolute;
    bottom: 5%;
    right: 4%;
}
@media only screen and (max-width:750px) {
    .top_america_logo_wrap {
        width: 21%;
        bottom: 2%;
        right: 7%;
    }
}
.top_america_logo {
}




/*------------------------------------*\
    top News
\*------------------------------------*/

.top_news_wrap {
    display: none;

    background-color: var(--background_color);
    padding-top: 100px;
    padding-bottom: 100px;
}
@media only screen and (max-width:750px) {
    .top_news_wrap {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
.top_news_inner {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
}
@media only screen and (max-width:750px) {
    .top_news_inner {
        width: 85%;
    }
}

.top_news_list_wrap {
    margin-top: 30px;
    margin-bottom: 36px;
    padding-top: 22px;
    padding-bottom: 36px;
    background-color: #FFF;
    border-radius: 16px;
}
@media only screen and (max-width:750px) {
    .top_news_list_wrap {
        margin-top: 20px;
        margin-bottom: 25px;
        padding-top: 10px;
        padding-bottom: 25px;
        border-radius: 12px;
    }
}
.top_news_list {
    display: flex;
    flex-direction: column;
    /* gap: 20px; */
}
.top_news_list li {
    /* width: calc(100% / 3); */
}
.top_news_article {
    /* border-radius: 20px; */
    /* border: 4px solid var(--color); */
    /* overflow: hidden; */
    /* height: 100%; */
    /* max-height: 350px; */
}


/* .top_news_img_wrap {
}
.top_news_img {
    object-fit: cover;
    aspect-ratio: 3 / 2;
}
.top_news_category_wrap {
}
.top_news_category {
}
.top_news_category .top_news_category_span {
} */


.top_news_detail_wrap {
    width: 90%;
    margin: 0 auto;
    padding-top: 22px;
    padding-bottom: 22px;
    border-bottom: 3px solid var(--background_color);
    position: relative;
}
@media only screen and (max-width:750px) {
    .top_news_detail_wrap {
        padding-top: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid var(--background_color);
    }
}
.top_news_date {
    font-family: var(--fontjp);
    color: var(--text_color);
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
}
@media only screen and (max-width:750px) {
    .top_news_date {
        font-size: 12px;
        line-height: 14px;
    }
}

.top_news_title_and_arrow_wrap {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 3px;
    transition: all 300ms ease-in-out;
}
.top_news_title_and_arrow_wrap:hover {
    opacity: 0.7;
}
@media only screen and (max-width:750px) {
    .top_news_title_and_arrow_wrap {
        gap: 15px;
        margin-top: 4px;
    }
    .top_news_title_and_arrow_wrap:hover {
        opacity: 1;
    }
}
.top_news_title_wrap {
}
.top_news_title {
    font-size: 22px;
    line-height: 34px;
    color: var(--text_color);
}
@media only screen and (max-width:750px) {
    .top_news_title {
        font-size: 16px;
        line-height: 25px;
    }
}
.top_news_title_arrow_wrap {
    margin-left: auto;
}
.top_news_title_arrow {
    width: 13px;
}
@media only screen and (max-width:750px) {
    .top_news_title_arrow {
        width: 10px;
    }
}

/* 
.top_news_detail_wrap {
    width: 90%;
    margin: 0 auto;
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--background_color);
    position: relative;
}
.top_news_date {
    font-family: var(--fontjp);
    color: var(--text_color);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.01em;
}
.top_news_title_and_arrow_wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 3px;
}
.top_news_title_wrap {
}
.top_news_title {
    font-size: 16px;
    line-height: 25px;
    color: var(--text_color);
}
.top_news_title_arrow_wrap {
    margin-left: auto;
}
.top_news_title_arrow {
    width: 12px;
} */


.top_com_btn_wrap {
    width: 140px;
    max-width: 80%;
    border-radius: 40px;
    background-color: var(--color);
    margin: 0 auto;
    padding: 11px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.top_com_btn_text {
    color: #FFF;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.05em;

    /* font-family: var(--fonten); */
    /* color: #FFF; */
    /* font-size: 14px; */
    /* font-weight: bold; */
    /* letter-spacing: 0.15em; */

}





/*------------------------------------*\
    NEWS ARCHIVE
\*------------------------------------*/
.archive_news {
}
.archive_news_main {
}

.news_archive_wrap {
    padding-bottom: 24px;
}
.news_archive_inner {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
}
@media only screen and (max-width:750px) {
}

.news_archive_list_wrap {
    /* margin-top: 30px; */
    margin-bottom: 36px;
    padding-top: 22px;
    padding-bottom: 36px;
    background-color: #FFF;
    border-radius: 16px;
}
@media only screen and (max-width:750px) {
    .news_archive_list_wrap {
        margin-bottom: 25px;
        padding-top: 10px;
        padding-bottom: 25px;
        border-radius: 12px;
    }
}
.news_archive_list {
    display: flex;
    flex-direction: column;
}
.news_archive_list li {
}
.news_article {
}

.news_detail_wrap {
    width: 90%;
    margin: 0 auto;
    padding-top: 22px;
    padding-bottom: 22px;
    border-bottom: 3px solid var(--background_color);
    position: relative;
}
@media only screen and (max-width:750px) {
    .news_detail_wrap {
        padding-top: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid var(--background_color);
    }
}
.news_date {
    font-family: var(--fontjp);
    color: var(--text_color);
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
}
@media only screen and (max-width:750px) {
    .news_date {
        font-size: 12px;
        line-height: 14px;
    }
}
.news_title_and_arrow_wrap {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 3px;
    transition: all 300ms ease-in-out;
}
.news_title_and_arrow_wrap:hover {
    opacity: 0.7;
}
@media only screen and (max-width:750px) {
    .news_title_and_arrow_wrap {
        gap: 15px;
        margin-top: 4px;
    }
    .news_title_and_arrow_wrap:hover {
        opacity: 1;
    }
}
.news_title_wrap {
}
.news_title {
    font-size: 22px;
    line-height: 34px;
    color: var(--text_color);
}
@media only screen and (max-width:750px) {
    .news_title {
        font-size: 16px;
        line-height: 25px;
    }
}
.news_title_arrow_wrap {
    margin-left: auto;
}
.news_title_arrow {
    width: 13px;
}
@media only screen and (max-width:750px) {
    .news_title_arrow {
        width: 10px;
    }
}


/* 
.news_cat_nav_wrap {
}
.news_cat_nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.news_cat_nav li {
    position: relative;
    padding: 5px 7px;
}
.news_cat_nav li.select::before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: calc(50% - 2px);
    transform: translate(-50%, 0);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #000;
}
.news_cat_nav_text_wrap {
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition: all 300ms ease-in-out;
}
.news_cat_nav_text_wrap:hover {
    opacity: 0.5;
  }
.news_cat_nav_text {
    font-family: var(--fonten);
    font-size: 12px;
    line-height: 22px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #000;
} */

/* 
.news_archive_title_wrap {
}
.news_archive_title {
    font-family: var(--fontjp);
    font-size: 28px;
    line-height: 36px;
    font-weight: 500;
    color: #000;
}
.news_archive_date_wrap {
    display: flex;
    margin-top: 3px;
}
.news_archive_date {
    font-family: var(--fonten);
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
    color: #000;
    margin-right: 10px;
}
.news_archive_category {
    font-family: var(--fonten);
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
    color: #000;
}
.news_archive_category span {
    margin-right: 5px;
}

.news_archive_img_wrap {
    position: relative;
    overflow: hidden;
    margin-top: 5px;
}
.news_archive_img_wrap:before {
    content: "";
    display: block;
    padding-top: calc(100% * (2 / 3));
}
.news_archive_img {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transition: all 500ms ease-in-out;
}
.news_archive_img:hover {
  transform: translate3d(0px, 0px, 0px) scale3d(1.07, 1.07, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  opacity: 0.8;
}
@media screen and (max-width: 750px) {
  .news_archive_img:hover {
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    opacity: 1;
  }
}

.news_archive_catch_wrap {
    margin-top: 8px;
}
.news_archive_catch {
    font-family: var(--fonten);
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: #000;
}
*/


/*------------------------------------*\
    pagenation
\*------------------------------------*/
.pagination {
    text-align: center;
}
.page-numbers {
    font-family: var(--fonten);
    font-size: 18px;
    font-weight: 400;
    padding: 11px 14px;
    color: var(--color);
    background-color: #FFF;
    display: inline-block;
    border-radius: 8px;
}
.page-numbers.prev, .page-numbers.next {
    /* color: #FFF; */
    /* background-color: #000; */
}
.page-numbers.current {
    color: #FFF;
    background-color: var(--color);
}
.page-numbers:hover {
    color: #FFF;
    background-color: var(--color);
    transition: all 300ms ease-in-out;
}
.page-numbers.dots {
    padding: 11px 0px;
}
.page-numbers.dots:hover {
    color: var(--color);
    background-color: #FFF;
}


/*------------------------------------*\
    NEWS SINGLE
\*------------------------------------*/
.single_news {
}
.single_news_main {
    padding-bottom: 50px;
}
@media only screen and (max-width:750px) {
    .single_news_main {
        padding-bottom: 30px;
    }
}
.single_news_wrap {
    width: 74%;
    margin: 0 auto;
    background-color: #FFF;
    border-radius: 32px;
    padding: 36px 5%;
    max-width: 800px;
    margin-top: 50px;
    margin-bottom: 30px;
}
@media only screen and (max-width:750px) {
    .single_news_wrap {
        border-radius: 24px;
        padding: 25px 5%;
        margin-top: 25px;
        margin-bottom: 15px;
    }
}

.single_news_inner {
}
.single_news_date_wrap {
    margin-bottom: 8px;
}
@media only screen and (max-width:750px) {
    .single_news_date_wrap {
        margin-bottom: 4px;
    }
}
.single_news_date {
    font-family: var(--fontjp);
    color: var(--text_color);
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
}
@media only screen and (max-width:750px) {
    .single_news_date {
        font-size: 12px;
    }
}

.single_news_title_wrap {
}
.single_news_title {
    color: var(--text_color);
    font-size: 22px;
    line-height: 25px;
}
@media only screen and (max-width:750px) {
    .single_news_title {
        font-size: 16px;
        line-height: 22px;
    }
}

.single_news_catch_wrap {
    margin-top: 22px;
    margin-bottom: 22px;
}
.single_news_catch {
    color: var(--text_color);
    font-size: 16px;
    line-height: 25px;
    text-align: justify;
}
@media only screen and (max-width:750px) {
    .single_news_catch_wrap {
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .single_news_catch {
        font-size: 12px;
        line-height: 20px;
    }
}

.single_news_catch_wrap {
    margin-top: 22px;
    margin-bottom: 22px;
}
.single_news_catch {
    color: var(--text_color);
    font-size: 16px;
    line-height: 25px;
    text-align: justify;
    word-break: break-all;
}
@media only screen and (max-width:750px) {
    .single_news_catch_wrap {
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .single_news_catch {
        font-size: 12px;
        line-height: 20px;
    }
}


/* 
.single_news_category {
    font-family: var(--fonten);
    color: var(--text_color);
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #000;
}
.single_news_category span {
    margin-right: 5px;
}
*/

.top_news_img_wrap {
    margin-top: 22px;
    margin-bottom: 22px;
}
.single_news_img {
}
@media only screen and (max-width:750px) {
    .top_news_img_wrap {
        margin-top: 15px;
        margin-bottom: 15px;
    }
}


.single_news_detail_wrap {
    margin-top: 22px;
    margin-bottom: 22px;
}
.single_news_detail {
    color: var(--text_color);
    font-size: 16px;
    line-height: 25px;
    text-align: justify;
    word-break: break-all;
}
@media only screen and (max-width:750px) {
    .single_news_detail_wrap {
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .single_news_detail {
        font-size: 12px;
        line-height: 20px;
    }
}




.single_news_editor_wrap {
    margin-top: 22px;
    margin-bottom: 22px;
}
.single_news_editor {
    color: var(--text_color);
    font-size: 16px;
    line-height: 25px;
    text-align: justify;
    word-break: break-all;
}
@media only screen and (max-width:750px) {
    .single_news_editor_wrap {
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .single_news_editor {
        font-size: 12px;
        line-height: 20px;
    }
}

.single_news_editor p {
    margin-top: 22px;
    margin-bottom: 22px;
}
@media only screen and (max-width:750px) {
    .single_news_editor p {
        margin-top: 15px;
        margin-bottom: 15px;
    }
}
.single_news_editor .aligncenter {
  display: block;
  margin: 0 auto;
}
.single_news_editor img {
  width: auto;
  max-width: 100%;
}
.single_news_editor a {
  border-bottom: 1px solid var(--text_color);
  padding-bottom: 2px;
  transition: all 500ms ease-in-out;
}
.single_news_editor a:hover {
  opacity: 0.5;
}
.single_news_editor .wp-caption {
    max-width: 100%;
}
.single_news_editor .wp-caption-text {
    font-size: 12px;
    line-height: 24px;
    margin-bottom: 30px;
    margin-top: -7px;
}
@media only screen and (max-width:750px) {
    .single_news_editor p {
        margin-bottom: 26px;
    }
    .single_news_editor .wp-caption-text {
        font-size: 10px;
        line-height: 14px;
        margin-bottom: 22px;
        margin-top: -2px;
    }
}



.com_btn_wrap {
    width: 200px;
    max-width: 80%;
    border-radius: 40px;
    background-color: var(--color);
    margin: 0 auto;
    padding: 11px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.com_btn_text {
    color: #FFF;
    font-size: 22px;
}
@media only screen and (max-width:750px) {
    .com_btn_wrap {
        width: 140px;
    }
    .com_btn_text {
        font-size: 16px;
    }
}






/*------------------------------------*\
    FAQ
\*------------------------------------*/
.com_faq_wrap {
    padding-bottom: 60px;
    /* padding-top: 180px; */
    /* padding-bottom: 180px; */
}
@media only screen and (max-width:750px) {
    .com_faq_wrap {
        /* padding-top: 80px; */
        /* padding-bottom: 80px; */
    }
}

.com_faq_list_wrap {
    width: 74%;
    margin: 0 auto;
    background-color: #FFF;
    border-radius: 32px;
    padding: 14px 5%;
    max-width: 800px;
}
@media only screen and (max-width:750px) {
    .com_faq_list_wrap {
        border-radius: 24px;
        padding: 10px 5%;
    }
}
.com_faq_list {
    display: flex;
    flex-direction: column;
}
@media only screen and (max-width:750px) {
}
.com_faq_list li {
    padding: 22px 0;
    border-bottom: 2px solid var(--background_color);
}
.com_faq_list li:last-child {
    border-bottom: none;
}
@media only screen and (max-width:750px) {
    .com_faq_list li {
        padding: 15px 0;
        border-bottom: 1px solid var(--background_color);
    }
}
.com_faq_detail {
    /* padding: 34px 40px; */
    /* box-shadow: 0px 0px 8px 5px rgb(0 0 0 / 5%); */
}
@media only screen and (max-width:750px) {
    .com_faq_detail {
        /* padding: 20px 15px; */
    }
}
.com_faq_q_wrap {
    position: relative;
}
.com_faq_q_detail {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
@media only screen and (max-width:750px) {
}
.com_faq_q_text_wrap {
    margin-top: 2px;
    padding-right: 24px;
}
.com_faq_q_text {
    color: var(--text_color);
    font-size: 22px;
    line-height: 32px;
}
@media only screen and (max-width:750px) {
    .com_faq_q_text {
        font-size: 16px;
        line-height: 22px;
    }
}

.com_faq_a_wrap {
    padding-top: 22px;
}
.com_faq_a_detail {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
@media only screen and (max-width:750px) {
    .com_faq_a_detail {
        gap: 5px;
    }
}
.com_faq_a_text_wrap {
}
.com_faq_a_text {
    color: var(--text_color);
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.01em;
}
@media only screen and (max-width:750px) {
    .com_faq_a_text {
        font-size: 12px;
        line-height: 20px;
    }
}


.com_faq_q, .com_faq_a {
    font-family: var(--fonten);
    color: var(--color);
    font-size: 35px;
    font-weight: 500;
    letter-spacing: 0.15em;
}
@media only screen and (max-width:750px) {
    .com_faq_q, .com_faq_a {
        font-size: 24px;
    }
}

.com_faq_arrow_wrap {
    position: absolute;
    right: 0;
    top: 2px;
}
@media only screen and (max-width:750px) {
}

.com_faq_arrow {
    color: var(--color);
	width: 28px;
	height: 28px;
	position: relative;
    cursor: pointer;
}
@media only screen and (max-width:750px) {
    .com_faq_arrow {
        width: 20px;
        height: 20px;
    }
}
.com_faq_arrow:before, .com_faq_arrow:after {
	content: "";
	position: absolute;
	top: 10px;
	width: 24px;
	height: 4px;
	background-color: currentColor;
    transition: all 300ms ease-in-out;
}
@media only screen and (max-width:750px) {
    .com_faq_arrow:before, .com_faq_arrow:after {
        top: 10px;
        width: 20px;
        height: 3px;
    }
}
.com_faq_arrow:before {
	transform: rotate(0);
}
.com_faq_arrow:after {
	transform: rotate(90deg);
}
.com_faq_q_wrap.accordion_open .com_faq_arrow:before {
	/* transform: rotate(-45deg); */
    transform: rotate(180deg);
}
.com_faq_q_wrap.accordion_open .com_faq_arrow:after {
	/* transform: rotate(45deg); */
    transform: rotate(180deg);
    opacity: 0;
}
@media only screen and (max-width:750px) {
}




/*------------------------------------*\
    CONTACT
\*------------------------------------*/
.contact_form_wrap {
    width: 74%;
    margin: 0 auto;
    background-color: #FFF;
    border-radius: 32px;
    padding: 36px 5%;
    max-width: 800px;
}
@media only screen and (max-width:750px) {
    .contact_form_wrap {
        border-radius: 24px;
        padding: 25px 5%;
    }
}

.contact_form_title_wrap {
    text-align: center;
}
.contact_form_title {
    font-size: 20px;
    line-height: 30px;
    color: var(--text_color);
}
@media only screen and (max-width:750px) {
    .contact_form_title {
        font-size: 16px;
    }
}

.contact_form {
    display: none;
    margin-top: 22px;
}
@media only screen and (max-width:750px) {
    .contact_form {
        margin-top: 15px;
    }
}
body.jp .contact_form.form_jp, body.en .contact_form.form_en {
    display: block;
}

.contact_form dl {
}
.contact_imput_wrap {
    margin-bottom: 36px;
}
@media only screen and (max-width:750px) {
    .contact_imput_wrap {
        margin-bottom: 25px;
    }
}
.contact_imput_wrap dt {
    font-family: var(--fontjp);
    color: var(--text_color);
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
    white-space: nowrap;
}
@media only screen and (max-width:750px) {
    .contact_imput_wrap dt {
        font-size: 12px;
    }
}


.contact_imput_wrap dd {
    margin-top: 22px;
    margin-bottom: 22px;
}
@media only screen and (max-width:750px) {
    .contact_imput_wrap dd {
        margin-top: 15px;
        margin-bottom: 15px;
    }
}
.page_contact_confirm .contact_imput_wrap dd p {
    font-family: var(--fontjp);
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #000;
    width: calc(100% - 16px);
    padding: 13px 8px;
    border: 1px solid #B9B9B9;
}



.contact_imput_wrap input[type="text"], .contact_imput_wrap input[type="tel"], .contact_imput_wrap input[type="email"] {
    font-family: var(--fontjp);
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--text_color);
    width: calc(100% - 18px);
    padding: 13px 8px;
    box-shadow: 0 0 0px 999px #FFF inset;
    border: 2px solid var(--background_color);
    border-radius: 10px;
}
.contact_imput_wrap textarea {
    font-family: var(--fontjp);
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--text_color);
    width: calc(100% - 12px);
    height: 178px;
    padding: 5px;
    border: 2px solid var(--background_color);
    border-radius: 10px;
}


.contact_form_policy_wrap {
    font-family: var(--fontjp);
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
    color: var(--text_color);
    text-align: center;
    margin-top: 36px;
}
@media only screen and (max-width:750px) {
    .contact_form_policy_wrap {
        font-size: 12px;
        line-height: 14px;
        margin-top: 25px;
    }
}
.contact_form_policy_wrap a {
    display: inline-block;
    border-bottom: 1px solid var(--text_color);
}
.contact_send_button_wrap {
    text-align: center;
    margin-top: 36px;
}
@media only screen and (max-width:750px) {
    .contact_send_button_wrap {
        margin-top: 20px;
    }
}
input[type="submit"].contact_send_button {
    font-family: var(--fontjp);
    font-size: 16px;
    line-height: 16px;
    /* letter-spacing: 0.13em; */
    font-weight: 500;
    color: #FFF;
    background-color: var(--color);
    width: 100px;
    max-width: 100%;
    height: 36px;
    border-radius: 20px;
}
input[type="submit"].contact_send_button:disabled {
    background-color: #FDA97E;
    /* border-bottom: none; */
}
.contact_send_button_wrap .wpcf7-spinner {
    display: none;
}



/* 確認画面 */
.contact_back_button_wrap {
    text-align: center;
    margin-top: 20px;
}
/* 戻るボタン */
.contact_back_button_wrap input[type="button"] {
    font-family: var(--fontjp);
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0.05em;
    font-weight: 400;
    color: #000;
    background-color: #FFF;
    padding: 0;
    padding-bottom: 1px;
    border-bottom: 1px solid #000;
}


/* 完了画面 */
.contact_form_message_text_wrap {
}
.contact_form_message_text {
    font-size: 16px;
    line-height: 32px;
    color: var(--text_color);
}
.contact_top_button_wrap {
margin-top: 40px;
}
.contact_top_button_text_wrap {
    background-color: #FFF;
    padding: 0;
    padding-bottom: 1px;
    border-bottom: 1px solid var(--text_color);
    display: inline-block;
}
.contact_top_button_text {
    font-size: 14px;
    line-height: 14px;
    color: var(--text_color);
}


/* radioカスタマイズ */
.contact_imput_wrap .wpcf7-radio {
    display: flex;
    gap: 20px 70px;
    flex-wrap: wrap;
    justify-content: center;
}
@media only screen and (max-width:750px) {
    .contact_imput_wrap .wpcf7-radio {
        gap: 15px 25px;
    }
}
.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0px;
}
.contact_imput_wrap .wpcf7-list-item {
    margin: 0;
}
.contact_form_wrap input[type="radio"] {
  display: none;
}
.contact_form_wrap input[type="radio"] + span {
  cursor: pointer;
  position: relative;
  margin-left: 0px;
  padding-left: 28px;
  font-family: var(--fontjp);
  font-size: 22px;
  line-height: 25px;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: var(--text_color);
}
@media only screen and (max-width:750px) {
    .contact_form_wrap input[type="radio"] + span {
      font-size: 15px;
      line-height: 20px;
    }
}
.contact_form_wrap input[type="radio"] + span::before {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  color: transparent;
  border: 1px solid var(--background_color);
  background: #FFF;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 8px;
  left: 0;
  border-radius: 50%;
}
@media only screen and (max-width:750px) {
    .contact_form_wrap input[type="radio"] + span::before {
      top: 3px;
    }
}
/* 枠からはみ出すチェック用 */
.contact_form_wrap input[type="radio"] + span::after {
  content: "";
  /*
  width: 26px;
  height: 26px;
  position: absolute;
  top: -1px;
  left: -3px;
  */
  width: 12px;
  height: 12px;
  position: absolute;
  top: 12px;
  left: 4px;
  border-radius: 50%;
}
@media only screen and (max-width:750px) {
    .contact_form_wrap input[type="radio"] + span::after {
      top: 7px;
    }
}
.contact_form_wrap input[type="radio"]:checked + span::after{
  /* background-image: url(img/contact_check.svg);
  background-repeat: no-repeat;
  background-size: 19px;
  background-position: 6px -1px; */
  background: var(--color);
}
.contact_form_wrap .mwform-radio-field-text {
  font-family: var(--fontjp);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  letter-spacing: 0.05em;
  white-space: nowrap;
}





  
/* checkboxカスタマイズ */
.contact_form_policy_wrap input[type="checkbox"] {
    display: none;
}
.contact_form_policy_wrap input[type="checkbox"] + span {
    cursor: pointer;
    position: relative;
    margin-left: 0px;
    padding-left: 36px;
}
.contact_form_policy_wrap input[type="checkbox"] + span::before {
    content: "";
    width: 26px;
    height: 26px;
    display: inline-block;
    color: transparent;
    border: 2px solid var(--background_color);
    background: #FFF;
    box-sizing: border-box;
    border-radius: 3px;
    position: absolute;
    top: 1px;
    left: 0;
}
@media only screen and (max-width:750px) {
    .contact_form_policy_wrap input[type="checkbox"] + span::before {
        top: -2px;
    }
}
/*
.contact_form_policy_wrap input[type="checkbox"]:checked + span::before{
    background: #000;
}
*/
/* チェック用 */
.contact_form_wrap input[type="checkbox"] + span::after {
    content: "";
    width: 18px;
    height: 18px;
    position: absolute;
    top: 7px;
    left: 4px;
}
@media only screen and (max-width:750px) {
    .contact_form_wrap input[type="checkbox"] + span::after {
        top: 3px;
    }
}
.contact_form_wrap input[type="checkbox"]:checked + span::after{
    background-image: url(img/contact_check.svg);
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: 0px 0px;
}

/* エラーメッセージのカスタマイズ */
.wpcf7-not-valid-tip {
    font-family: var(--fontjp);
    font-size: 12px;
    line-height: 21px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #dc3232;
}
.wpcf7 form .wpcf7-response-output {
    margin: 2em 0.5em 1em;
    padding: 0.2em 1em;
    border: 1px solid darksalmon;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: darksalmon;
}
.wpcf7-response-output {
    font-family: var(--fontjp);
    font-size: 12px;
    line-height: 21px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #707070;
}




/*------------------------------------*\
    PRIVACY POLICY
\*------------------------------------*/
.policy_main {
}
.policy_wrap {
    width: 78%;
    margin: 0 auto;
    background-color: #FFF;
    border-radius: 32px;
    padding: 36px 5%;
    max-width: 800px;
}
@media only screen and (max-width:750px) {
    .policy_wrap {
        border-radius: 24px;
        padding: 25px 5%;
    }
}

.policy_inner {
    /* width: 80%;
    margin: 0 auto;
    max-width: 1000px;
    padding-top: 75px;
    padding-bottom: 85px; */
}
@media only screen and (max-width:750px) {
    .policy_inner {
        /* padding-top: 40px;
        padding-bottom: 60px; */
    }
}
.policy_detail_wrap {
}
.policy_detail_text_wrap {
    margin-bottom: 43px;
}
@media only screen and (max-width:750px) {
    .policy_detail_text_wrap {
        margin-bottom: 26px;
    }
}
.policy_detail_title {
    font-family: var(--fontjp);
    font-size: 15px;
    line-height: 21px;
    font-weight: 500;
    color: #000;
    margin-bottom: 5px;
}
.policy_detail_title.title_big {
    font-size: 20px;
    padding-top: 10px;
}
.policy_detail_text {
    font-family: var(--fontjp);
    font-size: 15px;
    line-height: 21px;
    font-weight: 400;
    color: #000;
    margin-top: 8px;
    margin-bottom: 18px;
}
@media only screen and (max-width:750px) {
    .policy_detail_title.title_big {
        font-size: 15px;
        padding-top: 8px;
    }
    .policy_detail_title {
        font-size: 12px;
        line-height: 20px;
        margin-bottom: 4px;
    }
    .policy_detail_text {
        font-size: 11px;
        line-height: 19px;
        margin-top: 5px;
        margin-bottom: 12px;
    }
}




/*------------------------------------*\
    FOOTER
\*------------------------------------*/
.footer_wrap {
    background-color: var(--background_color);
    padding-top: 60px;
    padding-bottom: 60px;
}
@media only screen and (max-width:750px) {
    .footer_wrap {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}
.footer_inner {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}
@media only screen and (max-width:750px) {
    .footer_inner {
        max-width: 550px;
    }
}



.footer_logo_wrap {
    width: 80%;
    display: flex;
    gap: 20px;
}
@media only screen and (max-width:750px) {
    .footer_logo_wrap {
        width: 100%;
        flex-direction: column;
        gap: 0;
    }
}

.footer_logo {
    width: 200px;
}
.footer_address_wrap {
    margin-top: 7px;
}
.footer_address {
    font-size: 12px;
    line-height: 20px;
    color: var(--color);
}
.footer_link_wrap {
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    position: relative;
    z-index: 2;
}
@media only screen and (max-width:750px) {
    .footer_link_wrap {
        width: 100%;
        align-items: center;
        margin-top: 50px;
        margin-bottom: 10px;
    }
}
.footer_link_sns_wrap {
    text-align: center;
}
.footer_link_instagram {
    width: 30px;
}
.footer_nav_name_wrap {
    text-align: center;
    margin-top: 10px;
}
.footer_nav_name {
    color: var(--color);
    font-size: 12px;
    line-height: 20px;
}



.footer_copy_wrap {
    width: 100%;
    text-align: left;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
}
@media only screen and (max-width:750px) {
    .footer_copy_wrap {
        position: relative;
        text-align: center;
    }
}
.footer_copy {
    font-family: var(--fontjp);
    font-size: 18px;
    line-height: 22 px;
    font-weight: bold;
    letter-spacing: 0.01em;
    color: var(--color);
}
@media only screen and (max-width:750px) {
    .footer_copy {
        font-size: 10px;
        line-height: 15px;
    }
}




