<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/* WordPress が出力する class の設定 */
.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.alignright {
  float: right;
  margin-bottom: 20px;
  margin-left: 20px;
}
.alignleft {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}
.wp-caption,
[class*='wp-image'] {
  display: block;
  max-width: 100% !important;
  margin-top: 1.5em;
  text-align: center;
}
.wp-caption-text {
  margin-top: 0;
}
/* WordPress が出力する class の設定 */

/*----------------------------------*/
/* base
/*----------------------------------*/
a:hover{
    /*transform:scale(1.2,1.2);*/
    /*transition:1s all;*/
    cursor: pointer;
}
html,body{
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    font-style: normal;
    color: #FFFFFF;
    background: #18181B;
    font-size: 16px;
}
@media screen and (max-width: 1370px) {
html,body{
    font-size: 14px;
}
}
/*topへ戻る*/
#page_top {
    position: fixed;
    bottom: 0px;
    right: 0px;
    z-index: 10;
    background: #000000;
}
#page_top a {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#page_top a:hover {
    text-decoration: none;
}
.pc_disp{
    display: block;
}
.sp_disp{
    display:none;
}
@media screen and (max-width: 870px) {
.pc_disp{
display:none;
}
.sp_disp{
display:block;
}
#page_top {
    position: fixed;
    bottom: 60px;
    right: 0px;
}
}

/*----------------------------------*/
/* breadcrumbs
/*----------------------------------*/
.breadcrumbs-box{
    font-size: 0.8rem;
    padding: 0.7rem 5vw;
    background: #000000;
    line-height: 1.6;
}
/*----------------------------------*/
/* global navi
/*----------------------------------*/
.header{
    position: fixed;
    width: 100%;
    height: 90px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    background: rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 870px) {
.header{
    display: none;
}
}
.header_h1{
    width: 129px;
    height: 90%;
	text-indent:100%;
	white-space:nowrap;
	overflow:hidden;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.header_right{
    display: flex;
    flex-direction: row;
    height: 100%;
    gap: 1vw;
}
.header_link{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.header_link li{
    height: 100%;
}
.header_link_item{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 0.5rem;
}
.header_link_subitem{
    font-size: 0.8rem;
    margin-top: 0.5rem;
}
.header_cta{
    height: 100%;
    display: flex;
    flex-direction: row;
    gap: 1px;
}
.header_cta_item{
    height: 100%;
}
.header_cta_item a{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #AC9D2C;
    color: #FFFFFF;
    padding: 0 1rem;
}
.header_cta_subtxt{
    font-size: 0.7rem;
}
.header_cta_linktxt{
    font-size: 1.3rem;
    margin-top: 0.2rem;
}
.header_cta_item a.cta_tel{
    background: #FFFFFF;
    color: #000000;    
}
.header_cta_item a.cta_web{
    background: #5c060c;
    color: #FFFFFF;    
}
.header_cta_item a.cta_web.lunch{
    background: #cc9f00;
    color: #FFFFFF;    
}

.nav-wrapper{
    display: none;
}
@media screen and (max-width: 870px) {
#nav-wrapper{
    display: block;
    position: fixed;
    width: 100%;
    height: 60px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.7);
}
.navi_sp_head{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}
.logo_sp{
    height: 60px;
}
/*=================================== */
/* hamburger(ハンバーガーアイコン)
/*=================================== */
.hamburger {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 300;
}
.hamburger__line {
    position: absolute;
    width: 22px;
    height: 2px;
    right: 0;
    background-color: #FFF;
    transition: all 0.5s;
}
.hamburger__line--1 {
    top: 24px;
    right: 20px;
}
.hamburger__line--2 {
    top: 30px;
    right: 20px;
}
.hamburger__line--3 {
    top: 36px;
    right: 20px;
}
/*ハンバーガーがクリックされたら*/
.open .hamburger__line--1 {
    transform: rotate(-45deg);
    top: 24px;
}
.open .hamburger__line--2 {
    opacity: 0;
}
.open .hamburger__line--3 {
    transform: rotate(45deg);
    top: 24px;
}

/* 
sp-nav(ナビ)
=================================== */
.sp-nav {
    display:none;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* 閉じるアニメーション */
    transition:
    border-top     .3s ease-out,
    padding-top    .3s ease-out,
    padding-bottom .3s ease-out;
    z-index: 200;
    overflow-y: auto;
}
.sp-nav li{
    border-top: 0.9px solid rgba(255, 255, 255, 0.4);
}
.sp-nav a{
    display: block;
    padding: 3%;
}
.sp-nav a i{
    margin-right: 5px;
}
.lb-nav a.lb-prev{
    opacity:1 !important;
}
.lb-nav a.lb-next{
    opacity:1 !important;
}
}

/*----------------------------------*/
/* swiper
/*----------------------------------*/
.swiper{
    width: 100%;
    height: 100vh;
}
.swiper-wrapper{
    width: 100%;
    height: 100vh;
}
.swiper-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.swiper-slide-next{
    opacity: 0.5;
}
.swiper-slide-prev{
    opacity: 0.5;
}
.swiper-slide.swiper-slide-active {
    opacity: 1;
}
.swiper-button-prev::after,
.swiper-button-next::after {
    color: #FFFFFF !important;
}
.swiper-pagination-bullet,
.swiper-pagination-bullet-active{
    background-color: #FFFFFF !important;
}
@media screen and (max-width: 870px) {
.swiper{
    width: 100%;
    height: 50vh;
}
.swiper-wrapper{
    width: 100%;
    height: 50vh;
}
}

/*----------------------------------*/
/* index aboutus
/*----------------------------------*/
.aboutus_wrap{
    width: 100%;
    padding: 10vh 0;
}
.aboutus_wrap:nth-of-type(odd){
    background: #27272A;
}
.aboutus_outline{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 0 5vw;
}
.aboutus_head{
    width: 100%;
    height: 50vh;
    display: flex;
    flex-direction: row;
    gap: 2rem;
}
.aboutus_bottom{
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 2rem;
}
.aboutus_left{
    width: 40%;
    position: relative;
}
.aboutus_left h2{
    position: absolute;
    top: 2rem;
    left: 20%;
    font-size: 1.4rem;
    line-height: 1.6;
    color: #AC9D2C;
	-ms-writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	text-orientation: upright;
	writing-mode: vertical-rl;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.aboutus_left h2 .subtitle{
    font-size: 2rem;
    letter-spacing: 10px;
    color: #FFFFFF;
}
.aboutus_left_line{
    border-left: 1px solid #FFFFFF;
}
.aboutus_left_txt{
    width: 40%;
    line-height: 2;
    position: relative;
}
.aboutus_left_txt_in{
    position: absolute;
    top: 0;
    left: 20%;
}
.aboutus_right{
    width: 60%;
    background-size: cover;
    background-position: center;
    flex-grow: 1;
}
.aboutus_right img{
    width: 100%;
}
.aboutus_right figure{
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}
.aboutus_right_txt{
    width: 60%;
    line-height: 2;
}
@media screen and (max-width: 870px) {
.aboutus_wrap{
    padding: 5vh 0;
}
.aboutus_head{
    gap: 1rem;
    height: 40vh;
}
.aboutus_left{
    width: 30%;
}
.aboutus_left h2{
    top: 0;
    left: 0;
    line-height: 1.4;
}
.aboutus_right{
    width: 70%;
}
.aboutus_bottom{
    flex-direction: column;
}
.aboutus_left_txt{
    width: 100%;
}
.aboutus_right_txt{
    width: 100%;
}
.aboutus_left_txt_in{
    position: unset;
    font-size: 1.2rem;
    font-weight: bold;
    border-bottom: 1px dotted #FFFFFF;
    padding-bottom: 0.3rem;
}
}

/*----------------------------------*/
/* index menu
/*----------------------------------*/
.menu_index_wrap{
    width: 100%;
    padding: 10vh 0;
}
.menu_index_wrap:nth-of-type(odd){
    background: #27272A;
}
.menu_index_inner{
    margin: 0 5vw;
}
.menu_index_item{
    width: 100%;
    display: flex;
    flex-direction: row;
}
.menu_index_left{
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.menu_index_left_inner{
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.menu_index_item_title{
    font-size: 1.8rem;
}
.menu_index_item_english{
    font-size: 1.4rem;
    color: #AC9D2C;
    border-bottom: 1px solid #FFFFFF;
    padding-bottom: 1rem;
}
.menu_index_item_time{
    line-height: 2;
}
.menu_index_item_link{
    border: 1px solid;
    padding: 1rem;
    text-align: center;
    margin-top: 5vh;
}
.menu_index_right{
    width: 70%;
    overflow: hidden;
}
.menu_index_right_inner{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.menu_index_item_list{
    display: flex;
    flex-direction: row;
}
.menu_index_swiper{
    width: 100%;
    height: 50vh;
}
.menu_index_swiper .swiper-wrapper{
    width: 30vw;
    height: 100%;
    transition-timing-function: linear;
}
.menu_index_swiper .swiper-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.menu_index_item_txt{
    line-height: 1.6;
    padding: 1rem;
}
.swiper_title{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: end;
    padding: 1rem 1rem 2rem 1rem;
    line-height: 1.6;
    background: rgba(0,0,0,0.3);
}
.menu_index_noswiper{
    width: 100%;
    height: 50vh;
}
.menu_index_noswiper .swiper-wrapper{
    width: 30vw;
    height: 100%;
    transition-timing-function: linear;
}
.menu_index_noswiper .swiper-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
@media screen and (max-width: 870px) {
.menu_index_wrap{
    padding: 5vh 0;
}
.menu_index_item{
    flex-direction: column-reverse;
    gap: 5vh;
}
.menu_index_left{
    width: 100%;
}
.menu_index_left_inner{
    width: 100%;
}
.menu_index_item_txt{
    padding: 1rem 0 0 0;
}
.menu_index_right{
    width: 100%;
}
.menu_index_swiper{
    height: 30vh;
}
.menu_index_noswiper{
    height: 30vh;
}
.menu_index_noswiper .swiper-wrapper {
    width: 100%;
}
}

/*----------------------------------*/
/* google_review
/*----------------------------------*/
.review_wrap{
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 10vh 0;
    background-size: cover;
    background-position: center;
}
.review_title{
    display: flex;
    flex-direction: column;
    color: #FFFFFF;
    font-size: 2rem;
    margin-bottom: 2rem;
    align-items: center;
}
.review_subtitle{
    margin-top: 0.5rem;
    font-size: 1.2rem;
}
.review_outline{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 5vw;
    gap: 1vw;
}
.review_item{
    width: 24%;
    display: flex;
    flex-direction: column;
    background: rgba(0,0,0,0.7);
    padding: 2rem;
    gap: 1rem;
    line-height: 1.4;
}
.review_item_head{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}
.review_item_star_wrap{
    display: flex;
    flex-direction: column;
}
.review_item_icon{
    width: 40px;
}
.review_more{
    margin-top: 5rem;
    width: 100%;
    display: flex;
    justify-content:center;
}
.review_more a{
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
    padding: 1rem 3rem;
}
.gbp_review_wrap{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content:center;
    gap: 0.5rem;
    margin: 2vh 0 0;
}
.gbp_review_average{
    font-size: 3rem;
}
.gbp_review_star{
    font-size: 2rem;
}
.gbp_review_count{
    margin-top: 0.5rem;
    font-size: 1rem;
}
@media screen and (max-width: 870px) {
.review_wrap{
    padding: 5vh 0;
}
.review_title{
    margin-left: unset;
    align-items: center;
}
.review_outline{
    gap: 1vh 1vw;
}
.review_item_head{
    flex-direction: column;
    align-items: start;
}
.review_item{
    width: 44vw;
    padding: 1rem;
}

}
    
/*----------------------------------*/
/* columns
/*----------------------------------*/
.columns_wrap{
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 10vh 0;
    background: #27272A;
}
.columns_title{
    display: flex;
    flex-direction: column;
    margin-left: 5vw;
    font-size: 2rem;
    margin-bottom: 2rem;
}
.columns_subtitle{
    margin-top: 1rem;
    font-size: 1.2rem;
}
.columns_outline{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    /*justify-content: space-between;*/
    margin: 0 5vw;
    gap: 1.3%;
}
@media screen and (max-width: 870px) {
.columns_outline{
    justify-content: space-between;
    gap: 1vw;
}
}
.columns_item{
    width: 24%;
}
.columns_item figure{
    width: 100%;
}
.columns_item figure img{
    width: 100%;
    height: 25vh;
    object-fit: cover;
    object-position: center;
}
.columns_item figcaption{
    display: flex;
    flex-direction: column;
    margin: 1rem 0;
}
.columns_item_head{
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.taxonomymark{
    background: #F0B74A;
    color: #FFFFFF;
    border-radius: 30px;
    padding: 3px 10px;
}
.columns_item_title{
    margin-top: 1rem;
    line-height: 1.6;
}
.columns_more{
    margin-top: 5rem;
    width: 100%;
    display: flex;
    justify-content:center;
}
.columns_more a{
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
    padding: 1rem 3rem;
}
.circle-bg{
    background: #a8a8a8;
    opacity: 0.8;
    width: 25px;
    height: 25px;
    line-height: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 870px) {
.columns_wrap{
    padding: 5vh 0;
}
.columns_title{
    font-size: 1.8rem;
    margin-left: unset;
    align-items: center;
}
.columns_item{
    width: 44vw;
}
.columns_more{
    margin-top: 3rem;
}
}

/*----------------------------------*/
/* archive column
/*----------------------------------*/
.archive_column_wrap{
    width: 100%;
    margin-bottom: 20vh;
}
.archive_column_head{
    width: 100%;
    height: 40vh;
    background-size: cover;
    background-position: center;
}
.archive_column_wrap h1{
    margin: 10vh 10vw 15vh;
    font-size: 1.7rem;
    text-align: center;
    line-height: 1.6;
}
.archive_column_inner{
    display: flex;
    flex-direction: column;
    margin: 0 10vw;
    gap: 15vh;
}
.archive_column_container{
    display: flex;
    flex-direction: row;
    gap: 2rem;
}
.archive_column_item{
    display: flex;
    flex-direction: column;  
    gap: 1rem;
    width: 80%;
}
.archive_column_item li a{
    display: flex;
    flex-direction: row;
    gap: 2rem;
}
.archive_column_item_img{
    width: 30%;
    height: 25vh;
}
.archive_column_item_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.archive_columns_right{
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 1rem;
}
.archive_columns_item_head{
    display: flex;
    align-items: center;
    gap: 2rem;
}
.archive_columns_item_title{
    line-height: 1.6;
    font-size: 1.3rem;
}
.archive_column_archives{
    width: 20%;
    display: flex;
    flex-direction: column;
}
.archive_column_archives h3{
    font-size: 1.3rem;
    border-bottom: 1px solid #FFFFFF;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}
.archive_column_archives ul{
    display: flex;
    flex-direction: column;
    gap: 1rem; 
    margin-bottom: 2rem;
}
.archive_column_pagenavi{
    display: flex;
    gap: 2rem;
}
.archive_column_pageleft{
    width: 80%;
}
.wp-pagenavi{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
}
.wp-pagenavi .pages{
    display: block;
    padding: 0.5rem 1rem;
}
.wp-pagenavi .page{
    width: 2rem;
    height: 2rem;
    background: rgba(255,255,255,0.5);;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.wp-pagenavi .current{
    width: 2rem;
    height: 2rem;
    background: rgba(255,255,255);
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.archive_column_pageright{
    width: 20%;
}
@media screen and (max-width: 870px) {
.archive_column_inner{
    margin: 0 5vw;
}
.archive_column_container{
    flex-direction: column;
}
.archive_column_wrap h1{
    margin: 10vh 10vw;
}
.archive_column_container{
    gap: 10vh;
}
.archive_column_item{
    width: 100%;
}
.archive_column_item li a{
    flex-direction: column;
    gap: 1rem;
}
.archive_column_item_img{
    width: 100%;
}
.archive_columns_right{
    width: 100%;
    padding: unset;
    gap: 1rem;
}
.archive_column_archives{
    width: 100%;
}
.archive_column_pagenavi{
    flex-direction: column;
}
.archive_column_pageleft{
    width: 100%;
}
}
 
/*----------------------------------*/
/* single column
/*----------------------------------*/   
.column_title{
    font-size: 1.3rem;
    line-height: 1.6;
    border-bottom: 1px solid #FFFFFF;
    padding-bottom: 1rem;
}
.column_detail_head{
    display: flex;
    align-items: center;
    gap: 2rem;
}
.column_detail{
    line-height: 2;
}
.column_detail img{
    max-width: 100%;
    max-height: 50vh;
    margin: 1rem 0;
}
@media screen and (max-width: 870px) {
.column_detail img{
    width: 100%;
    height: unset;
}
}

/*----------------------------------*/
/* single_menu
/*----------------------------------*/
.single_menu_wrap{
    width: 100%;
    margin-bottom: 20vh;
}
.single_menu_head{
    width: 100%;
    height: 40vh;
    background-size: cover;
    background-position: center;
}
.single_menu_wrap h1{
    margin: 10vh 0 15vh;
    font-size: 2rem;
    text-align: center;
    line-height: 1.6;
}
.single_menu_inner{
    display: flex;
    flex-direction: column;
    margin: 0 5vw;
    gap: 5vh;
}
.single_menu_inner h2{
    font-size: 1.3rem;
    border-top: 1px solid rgba(255,255,255,0.5);
    border-bottom: 1px solid rgba(255,255,255,0.5);;
    text-align: center;
    padding: 1rem;
}
.single_food_wrap{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5vh 2%;
}
.single_food_inner{
    display: flex;
    flex-direction: column;
    width: 32%;
    gap: 1rem;
    background: #27272A;
    padding: 1rem;
}
.single_food_item{
    display: flex;
    flex-direction: column;
    line-height: 1.6;
    width: 100%;
    flex-grow: 1;
    gap: 2rem;
}
.single_food_image{
    width: 100%;
}
.single_food_image img{
    width: 100%;
}
.single_food_contents{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.single_food_title{
    font-size: 1.3rem;
    font-weight: bold;
}
.single_food_txt_wrap{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.single_food_price{
    border-top: 1px solid #FFFFFF;
    padding-top: 1rem;
    border-bottom: 1px solid #FFFFFF;
    padding-bottom: 1rem;
    text-align: right;
}
.single_food_price_wrap{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
}
.single_food_txt.topline{
    border-top: 1px solid #FFFFFF;
    padding-top: 1rem;
}
.single_food_txt_title{
    background: #838080;
    color: #FFFFFF;
    text-align: center;
    padding: 0.3rem;
}
.single_food_price_item{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 0.7rem;
}
.single_food_price_s{
    background: #838080;
    padding: 0.3rem 1rem;
    text-align: left;
}
.single_food_link_wrap{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.single_food_link_url{
    display: block;
    width: 100%;
    background: #5c060c;
    padding: 1rem;
    text-align: center;
}
.single_food_time span{
    background: #AC9D2C;
    padding: 0.3rem 1rem;
    border-radius: 8px;
}
.single_food_price_title{
    display: flex;
    flex-direction: row;
    position: relative;
}
.single_food_price_next{
    display: none;
}
.single_food_price_value{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    text-align: right;
}
.single_food_price_text{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.m_box::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 10px;
  height: 10px;
  border-top: solid 2px #FFFFFF;
  border-right: solid 2px #FFFFFF;
  transform: translateY(-50%) rotate(135deg);
}
.single_food_price_title.open .m_box::after {
    transform: translateY(-50%) rotate(315deg);
}

.single_course_wrap{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5vh 2%;
}
.single_course_inner{
    display: flex;
    flex-direction: column;
    width: 32%;
    gap: 1rem;
    background: #27272A;
    padding: 1rem;
}
.single_course_item{
    display: flex;
    flex-direction: column;
    line-height: 1.6;
    width: 100%;
    flex-grow: 1;
    gap: 2rem;
}
.single_course_image{
    width: 100%;
}
.single_course_image img{
    width: 100%;
}
.single_course_contents{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.single_course_title{
    font-size: 1.3rem;
    font-weight: bold;
}
.single_course_subtitle{
    margin-top: -0.5rem;
}
.single_course_price{
    border-top: 1px solid #FFFFFF;
    padding-top: 1rem;
    border-bottom: 1px solid #FFFFFF;
    padding-bottom: 1rem;
    text-align: right;
}
.single_course_txt_wrap{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.single_course_txt_title{
    background: #838080;
    color: #FFFFFF;
    text-align: center;
    padding: 0.3rem;
}
.single_course_link_wrap{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.single_course_link_url{
    display: block;
    width: 100%;
    background: #5c060c;
    padding: 1rem;
    text-align: center;
}
.single_course_time span{
    background: #AC9D2C;
    padding: 0.3rem 1rem;
    border-radius: 8px;
}
.single_course_price_title{
    display: flex;
    flex-direction: row;
    position: relative;
}
.single_course_price_next{
    display: none;
}
.single_course_price_value{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.single_course_price_text{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.single_book_wrap{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5vh 2%;
}
.single_book_item{
    width: 23.5%;
}
.single_book_img{
    width: 100%;
}
.banner_wrap{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.banner_item{
    width: 100%;
}
.banner_wrap img{
    width: 100%;
}
@media screen and (max-width: 870px) {
.single_menu_wrap h1{
    margin: 10vh 0;
}
.single_food_inner{
    width: 100%;
}
.single_course_inner{
    width: 100%;
}
.single_book_wrap{
    gap: 2vh 2%
}
.single_book_item{
    width: 48.5%;
}
}

/*----------------------------------*/
/* footer
/*----------------------------------*/
footer{
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 1vh;
}
.footer_wrap{
    display: flex;
    flex-direction: column;
    padding: 10vh 5vw;
    gap: 1rem;
}
.footer_wrap h3{
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
}
.footer_wrap h4{
    font-size: 1.3rem;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 1rem;
    margin-top: 1rem;
}   
.footer_map_area{
    width: 100%;
}
.footer_map_area.col2{
    display: flex;
    flex-direction: row;
    gap: 1rem;
}
.footer_map_google{
    width: 100%;
}
.footer_map_area.col2 .footer_map_google{
    width: 60%;
    flex-grow: 1;
}
.footer_map_area.col2 .footer_map_floor{
    width: 40%;
}
.footer_map_area.col2 .footer_map_floor img{
    width: 100%;
}
.footer_map_google iframe{
    width: 100%;
    height: 60vh;
}
.footer_map_area.col2 .footer_map_google iframe{
    width: 100%;
    height: 100%;
}
.footer_info_area{
    display: flex;
    flex-direction: row;
    line-height: 1.6;
    gap: 2rem;
}
.footer_info_left{
    width: 50%;
    display: flex;
    flex-direction: column;
}
.footer_info_right{
    width: 50%;
    display: flex;
    flex-direction: column;
}
.footer_info_item{
    display: flex;
    flex-direction: row;
    gap: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}
.footer_info_item dt{
    width: 23%;
    padding: 1rem 0.7rem;
}
.footer_info_item dd{
    width: 77%;
    padding: 1rem 0.7rem;
}
.open_item{
    display: flex;
    flex-direction: row;
}
.pay_dd{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.logo_links{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.footer_logo{
    width: 15vw;
}
.copyrights{
    font-size: 0.7rem;
    text-align: center;
}
.footer_links_wrap{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content:space-between;
    flex-wrap: wrap;
    font-size: 0.8rem;
    gap: 2vw;
}
.footer_links{
    display: flex;
    flex-direction: column;
}
.footer_links h3{
    font-size: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #707070;
}
.footer_links li{
    margin-bottom: 1rem;
}
.snsicons{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
}
.footer_sp_wrap{
    display: none;
}
.footer_fixed{
    display: none;
}
.map_route{
    border-radius: 20px;
    border: 1px solid;
    padding: 0.2rem 1rem;
    margin-top: 10px;
    display: inline-block;
    background: #FFF;
    color: #000;
    font-size: 0.9rem;
}
@media screen and (max-width: 870px) {
footer{
    padding-bottom: 100px;
}
.footer_wrap{
    padding: 5vh 5vw;
    gap: 2vh;
}
.footer_map_area.col2{
    flex-direction: column;
}
.footer_map_area.col2 .footer_map_google{
    width: 100%;
}
.footer_map_area.col2 .footer_map_google iframe{
    height: 40vh;
}
.footer_map_area.col2 .footer_map_floor{
    width: 100%;
}
.footer_info_area{
    flex-direction: column;
    gap: 0.5rem;
}
.footer_info_left{
    width: 100%;
}
.footer_info_right{
    width: 100%;
}
.footer_info_item dt{
    padding: 1rem 0;
}
.footer_info_item dd{
    padding: 1rem 0;
}
.footer_fixed{
    width: 100%;
    display: block;
    position: fixed;
    bottom: 0;
    z-index: 10;
}
.footer_cta{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    gap: 1px;
}
.footer_cta_item{
    height: 100%;
    flex-grow: 1;
}
.footer_cta_item a{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #AC9D2C;
    color: #FFFFFF;
    padding: 1rem 0;
}
.footer_cta_subtxt{
    font-size: 0.7rem;
}
.footer_cta_linktxt{
    font-size: 1.1rem;
    margin-top: 0.2rem;
}
.footer_cta_item a.cta_tel{
    background: #FFFFFF;
    color: #000000;    
}
.footer_cta_item a.cta_web{
    background: #5c060c;
    color: #FFFFFF;    
}
.footer_cta_item a.cta_web.lunch{
    background: #cc9f00;
    color: #FFFFFF;    
}
.footer_info_item dt{
    width: 30%;
}
.footer_info_item dd{
    width: 70%;
}
}

/*----------------------------------*/
/* archive google_review
/*----------------------------------*/
.archive_review_wrap{
    width: 100%;
    margin-bottom: 20vh;
}
.archive_review_head{
    width: 100%;
    height: 40vh;
    background-size: cover;
    background-position: center;
}
.archive_review_wrap h1{
    margin: 10vh 10vw 15vh;
    font-size: 1.7rem;
    text-align: center;
    line-height: 1.6;
}
.archive_review_inner{
    display: flex;
    flex-direction: column;
    margin: 0 10vw;
    gap: 15vh;
}
.archive_review_container{
    display: flex;
    flex-direction: row;
    gap: 2rem;
}
.archive_review_item{
    display: flex;
    flex-direction: column;  
    gap: 1rem;
    width: 80%;
}
.archive_review_archives{
    width: 20%;
    display: flex;
    flex-direction: column;
}
.archive_review_archives h3{
    font-size: 1.3rem;
    border-bottom: 1px solid #FFFFFF;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}
.archive_review_archives ul{
    display: flex;
    flex-direction: column;
    gap: 1rem; 
    margin-bottom: 2rem;
}
.archive_review_pagenavi{
    display: flex;
    gap: 2rem;
}
.archive_review_pageleft{
    width: 80%;
}
.archive_review_pageright{
    width: 20%;
}
.review_box{
    width: 100%;
    display: flex;
    flex-direction: column;
    background: rgba(0,0,0,0.5);
    padding: 2rem;
    gap: 1rem;
    line-height: 1.6;
}
@media screen and (max-width: 870px) {
.archive_review_wrap h1{
    margin: 10vh 10vw;
}
.archive_review_inner{
    margin: 0 5vw;
}
.archive_review_container{
    flex-direction: column;
}
.archive_review_item{
    width: 100%;
}
.archive_review_archives{
    width: 100%;
}
.archive_review_archives ul{
    flex-direction: row;
    flex-wrap: wrap;
}
.archive_review_pagenavi{
    flex-direction: column;
}
.archive_review_pageleft{
    width: 100%;
}

}</pre></body></html>