@CHARSET "UTF-8";
/*
Belle Style
*/


/* = common setting
-------------------------------------------------------------- */ 

:root {
  --blue: #008FC4;
  --menu01: #6DC5B4;
  --menu02: #5FBADB;
  --menu03: #70A2F0;
  --menu04: #A093E8;
  --menu05: #95A6BA; 
  --menu06: #E6A0CB;
  --bk: #2B2B2B;
  --border: #CAD6DD;
	--header_height: 7rem;
}
@media screen and (min-width: 1024px){
  :root {
		--header_height: 96px;
	}
}

*{
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
html{
	font-size: 62.5%;
	scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body {
	margin: 0;
	font-size: 1.4rem;
	font-weight: 400;
	font-family: "Noto Sans JP", sans-serif;
	color: var(--bk);
	line-height: 1.7;
	letter-spacing: 1px;
  background: #EFF6F8;
}

.font_mincho{
	font-family: "Zen Old Mincho", serif;
}


/* =layouts
-------------------------------------------------------------- */

body,
#page{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
#site_footer{
  margin-top: auto;
}

table{
/*	width: 100%;*/
	min-width: 100%;
	border-collapse: collapse;
  border-spacing: 0;
}
table th{
	padding: 1rem;
	text-align: left;
  width: 30%;
	font-weight: 400;
}
table td{
	padding: 1rem;
}

.txt_right{
	text-align: right;
}

h1,h2,h3,h4,h5,h6{
	margin: 0;
	font-weight: 500;
}
ul,dl,dt,dd{
	margin: 0;
	padding: 0;
	font-weight: 400;
}
li{
	list-style-type: none;
	margin: 0;
	padding: 0;
}
p{
	margin: 0;
}
.pc_only{
	display: none;
}

.wrapper{
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}
.short_wrap{
  max-width: 960px;
}
.hidden{
	overflow: hidden;
}

/* Clearing floats */
.clear:after{
	clear: both;
}
.clear:before,
.clear:after{
	display: table;
	content: "";
}

.txt_right{
	text-align: right;
}
.txt_vertical{
	writing-mode: vertical-rl;
}
.txt_small{
	font-size: 70%;
}
.txt_large{
	font-size: 150%;
}

.underline{
	background: linear-gradient(to bottom , rgba(255,255,255,0) 50%, #ffff00 51%);
	font-weight: 500;
}



/* =link
-------------------------------------------------------------- */


a{
	outline: none;
	color: var(--bk);
	text-decoration: none;
	transition: .3s;
}
*:focus {
  outline: none;
}

.link_none{
  pointer-events: none !important;
  cursor: default !important;
  opacity: .3;
}

input[type="submit"]{
	outline: 0;
	box-shadow: none;
	cursor: pointer;
}
label{
	cursor: pointer;
}

button{
  border: 0;
  outline: 0;
  transition: .3s;
}


.sns_links{
	display: flex;
	justify-content: center;
}
.sns_links li{
	margin: 0 .5rem;
}
.btn_sns{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 5rem;
	height: 5rem;
	border-radius: 50%;
}
.sns_icon{
	fill: #fff;
	width: 2.5rem;
	height: 2.5rem;
	object-fit: contain;
}
.icon_stroke{
	fill: none;
	stroke: #fff;
}
.sns_line{
	background: #06c755;
}
.sns_instagram{
	background: linear-gradient(135deg,#741AFA,#FF30C4,#FF5D21,#FFD735);
}
.sns_youtube{
	background: #ff0000;
}
.sns_facebook{
	background: #1877f2;
}
.sns_x{
	background: #000;
}



/* =media
-------------------------------------------------------------- */

img,
svg{
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
	transition: .3s;
}
iframe{
	max-width: 100%;
}
.img_clip{
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: #ccc;
}
.img_clip img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 1s;
}

.wp-block-embed-youtube .wp-block-embed__wrapper,
.youtube_wrap{
	margin-right: auto;
	margin-left: auto;
}
.wp-block-embed-youtube .wp-block-embed__wrapper iframe,
.youtube_wrap iframe{
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
}




/* =tub
-------------------------------------------------------------- */

summary{
	cursor: pointer;
}
summary::marker{
  content: none;
}
summary::-webkit-details-marker{
  display: none;
}

.accordion_btn{
	position: relative;
}
.accordion_body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.tab_wrap{
	display: flex;
	justify-content: space-between;
	border-bottom: var(--blue) solid 2px;
	margin-bottom: 3rem;
}
.tab_item{
	border: var(--blue) solid 2px;
	border-top-left-radius: 1rem;
	border-top-right-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--blue);
	font-weight: 500;
	align-self: stretch;
	padding: 1rem;
	width: 48%;
	margin-bottom: -2px;
	font-size: 1.2rem;
	line-height: 1.5;
	cursor: pointer;
}
.tab_item.active{
	background: var(--blue);
	color: #fff;
}
.tab_panel{
	display: none;
}
.tab_panel.active{
	display: block;
}


.icon_plus{
	width: 1.5rem;
	height: 1px;
	background: var(--blue);
	position: relative;
	margin: 0 0 0 auto;
}
.icon_plus::before{
	content: '';
	position: absolute;
	width: 1.5rem;
	height: 1px;
	background: var(--blue);
	top: 0;
	left: 0;
	rotate: 90deg;
	transition: .3s;
}
.accordion_btn .icon_plus{
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
}
.accordion_btn.is-open .icon_plus::before{
  rotate: none;
}




/* =modal
-------------------------------------------------------------- */


.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
}
.modal.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}
.modal__content{
  position: relative;
  z-index: 1;
  width: min(90%,1200px);
  max-height: 90vh;
  margin: 5vh auto;
  padding: 3rem 5%;
  background: #fff;
}
.modal__close{
  position: absolute;
  top: -1rem;
  right: -1rem;
  cursor: pointer;
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: #fff;
  border-radius: 50%;
  background: var(--bk);
  z-index: 999;
}
body.is-modal-open {
  overflow: hidden;
}
#modal_policy__inner h2{
  background: var(--blue);
  padding: 1rem;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 500;
  color: #fff;
}
#modal_policy__inner h3{
  margin: 3rem 0 1rem;
  font-size: 1.6rem;
  font-weight: 500;
}
#modal_policy__txt{
  overflow-y: auto;
  height: calc(80vh - 5rem);
  padding: 1rem 5% 3rem;
}






/* =slide base
-------------------------------------------------------------- */

.swiper img{
	width: 100%;
}
.swiper-wrapper{
	transition-timing-function:linear; 
}
.swiper-button-next,
.swiper-button-prev{
	color: #fff;
	width: 4rem;
	height: 4rem;
	background: var(--grad);
	border-radius: 50%;
	top: auto;
	bottom: 0;
}
.swiper-button-prev{
	left: 5%;
}
.swiper-button-next{
	right: 5%;
}
.swiper-button-next:after, .swiper-button-prev:after{
	font-size: 1rem;
}
.swiper-pagination-bullet{
	background: #fff;
	border: var(--purpul) solid 1px;
	opacity: 1;
}
.swiper-pagination-bullet-active{
	background: var(--grad);
}
.swiper-slide{
	align-self: stretch;
	height: auto;
}




/* =breadcrumb
-------------------------------------------------------------- */

.breadcrumb_wrap{
	overflow: hidden;
	margin: .5rem auto 5rem;
	white-space: nowrap;
	text-align: right;
}
.breadcrumb{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	font-size: 1rem;
}
.breadcrumb li::after{
	content: '';
	border-top: #999 solid 1px;
	border-right: #999 solid 1px;
	width: .5rem;
	height: .5rem;
	display: inline-block;
	rotate: 45deg;
	margin-right: .5rem;
}
.breadcrumb li:last-child{
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	max-width: 15rem;
}
.breadcrumb li:last-child::after{
	content: none;
}




/* =site basic
-------------------------------------------------------------- */

#page{
  padding-top: var(--header_height);
}
.btn_link{
	background: var(--blue);
	color: #fff;
	display: block;
	padding: 1rem;
	width: 100%;
	max-width: 300px;
	margin: 0 auto;
	text-align: center;
  position: relative;
  transition: .3s;
  border-radius: 50px;
}

.bg_white{
  background: #fff;
}
.hidden{
  overflow: hidden;
}
.section{
	padding: 4rem 0;
}
.section_title{
  margin-bottom: 3rem;
}
.section_title .font_mincho{
  font-size: 4.8rem;
  color: var(--blue);
  opacity: .6;
  line-height: 1.2;
}
.section_title_jp{
  font-weight: 500;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
}
.section_title_jp::before{
  content: '';
  width: 1.5rem;
  height: 1.5rem;
  background: url('../img/belle/icon/star_blue.svg') no-repeat center center / contain;
  margin-right: .5rem;
  display: inline-block;
}
.section_title__center{
  text-align: center;
}
.section_title__center .section_title_jp{
  justify-content: center;
}

.icon_line{
  width: 3rem;
  height: 3rem;
  background: url('../img/belle/icon/line.svg') no-repeat center center / contain;
  display: inline-block;
  margin: 0 auto .5rem;
  transition: .3s;
}
.icon_tel{
  width: 2rem;
  height: 2rem;
  background: url('../img/belle/icon/tel.svg') no-repeat center center / contain;
  display: inline-block;
  margin-right: .5rem;
  margin-top: -1rem;
}
.icon_instagram{
  width: 2rem;
  height: 2rem;
  background: url('../img/belle/icon/instagram.svg') no-repeat center center / contain;
  display: inline-block;
  transition: .3s;
}
.icon_blank{
  width: 1rem;
  height: 1rem;
  background: url('../img/belle/icon/blank.svg') no-repeat center center / contain;
  display: inline-block;
  margin-left: .5rem;
}

.reservation_box a{
  background: #fff;
  height: 100%;
  padding: 1.5rem .5rem;
  color: var(--blue);
  font-size: 1.2rem;
  display: block;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.tel_txt__wrap{
  display: flex;
  align-items: center;
  justify-content: center;
}
.tel_txt .font_mincho{
  font-size: 2rem;
  line-height: 1.2;
}
.tel_holiday{
  display: block;
  color: var(--bk);
  font-size: 1rem;
}



.bell_schedule{
  font-size: 1.2rem;
}
.bell_schedule table{
  table-layout: fixed;
}
.bell_schedule .schedule-table__row{
  border-bottom: var(--border) solid 1px;
}
.bell_schedule th{
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
}
.schedule-table__header--time,
.schedule-table__cell--time{
  width: 8rem;
}
.bell_schedule tbody th{
  color: var(--blue);
}
.bell_schedule tbody td{
  color: var(--blue);
  opacity: .4;
  text-align: center;
  font-size: 1.4rem;
}
.schedule-table__time-range{
  display: block;
  font-family: "Zen Old Mincho", serif;
}
.schedule-table__note{
  margin-top: 1rem;
  text-align: center;
}
.schedule-table__note span{
  color: var(--blue);
}

.links_list li{
  margin-bottom: .5rem;
}
.links_list a{
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  font-size: 1.2rem;
}
.links_list a .icon_instagram{
  width: 1.5rem;
  height: 1.5rem;
  margin-right: .5rem;
}

.page_container{
  padding-bottom: 8rem;
}
#breadcrumb{
  font-size: 1.2rem;
  padding: 1rem 0 5rem;
}
#breadcrumb ul{
  display: flex;
}
#breadcrumb li:last-child{
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	max-width: 15rem;
  opacity: .6;
}
#breadcrumb ul li:not(:last-child)::after{
  content: '>';
  margin: 0 .5rem;
}
#breadcrumb a:hover{
  opacity: .6;
}

.page_header{
  position: relative;
  margin-bottom: 5rem;
  z-index: 5;
  text-align: center;
}
.page_title__en{
  color: var(--blue);
}
.page_title{
  font-size: 2.4rem;
  font-weight: 500;
}
.page_title__back{
  font-size: 6rem;
  position: absolute;
  top: 40%;
  left: 50%;
  translate: -50% -50%;
  white-space: nowrap;
  z-index: -1;
  color: #fff;
  line-height: 1;
}



/* =header
-------------------------------------------------------------- */

#site_header{
  padding: 0 1rem;
  height: var(--header_height);
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
}
#header_logo{
  display: block;
  width: 15rem;
  margin: 0;
  position: relative;
  z-index: 9999;
}
#header_nav__btn{
	position: fixed;
	top: 1rem;
	right: 1rem;
	width: 5rem;
	height: 5rem;
	text-align: center;
	z-index: 9999;
  cursor: pointer;
  background: var(--blue);
  border-radius: .5rem;
}
#header_nav__btn .border_wrap{
  position: absolute;
	left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
	width: 50%;
  max-width: 30px;
}
#header_nav__btn .border{
	width: 100%;
	height: 2px;
	background: #fff;
  display: block;
  margin-bottom: 5px;
  transition: all .4s;
	box-sizing: border-box;
}
#header_nav__btn .border:last-child{
  margin: 0;
}
/*
.nav_active #header_nav__btn{
  background: #fff;
}
.nav_active #header_nav__btn .border{
  background: var(--blue);
}*/
.nav_active #header_nav__btn .border:nth-of-type(1) {
	transform: translateY(7px) rotate(-45deg);
}
.nav_active #header_nav__btn .border:nth-of-type(2) {
	opacity: 0;
}
.nav_active #header_nav__btn .border:nth-of-type(3) {
	transform: translateY(-7px) rotate(45deg);
}

#header_nav__inner{
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, #EFF6F8 50%, #9DD3E3);
	z-index: 999;
	position: fixed;
	top: 0;
	left: 0;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
  padding: var(--header_height) 5% 5rem;
}
.nav_active #header_nav__inner{
	opacity: 1;
	visibility: visible;
}
.main_navigation{
	position: relative;
}
.nav_link{
	display: block;
	padding: 1.5rem 0;
	position: relative;
  color: var(--blue);
  font-size: 1.6rem;
}
.nav_jp{
  font-weight: 500;
}
.nav_link .font_mincho{
  font-size: 90%;
  margin-left: 1rem;
}

#menu_nav{
  display: none;
}
.nav_menu__sub{
  margin: 1rem 0;
}
.nav_menu__parent{
  padding: .5rem 0;
  border-bottom: var(--blue) solid 1px;
  display: block;
  position: relative;
  margin-bottom: 1rem;
}
.nav_menu__child{
  font-size: 1.2rem;
  display: flex;
  flex-wrap: wrap;
}
.nav_menu__child li{
  width: 50%;
  padding-right: 1rem;
}
.nav_menu__child li a{
  display: flex;
  align-items: center;
  padding: .5rem 0;
  line-height: 1.5;
}
.nav_arrow{
  width: 1rem;
  height: 1rem;
  background: url('../img/belle/icon/arrow_gray.svg') no-repeat center center / contain;
  margin-right: 1rem;
  transition: .3s;
}
.nav_menu__parent .arrow_blue{
  position: absolute;
  top: 50%;
  right: 1rem;
  background: url('../img/belle/icon/arrow_blue.svg') no-repeat center center / contain;
  margin: 0;
  translate: 0 -50%;
  width: 1.5rem;
  height: 1.5rem;
}

.header_reservation{
  display: flex;
  justify-content: space-between;
}
.header_reservation{
  margin: 3rem 0;
}
.header_reservation .reservation_tel{
  flex: 1;
}
.header_reservation .reservation_line{
  width: 10rem;
  margin-left: 1rem;
}
.header_reservation .reservation_box a{
  border-radius: .5rem;
}

#header_links{
  margin-top: 4rem;
  position: relative;
  z-index: 10;
}

.nav_menu__child li a:hover .nav_arrow{
  translate: .5rem 0;
}
.nav_menu__parent:hover .arrow_blue{
  right: .5rem;
}
.header_reservation .reservation_line:hover i{
  translate: 0 -3px;
}
.reservation_insta:hover i{
  translate: 0 -3px;
}

#pc__header_rsv{
  display: none;
}




/* =footer
-------------------------------------------------------------- */

.rsv_cta{
  background: var(--blue);
  position: relative;
}
.rsv_cta::before{
  content: '';
  background: url('../img/belle/photo02.jpg') no-repeat center center / cover;
  width: 100%;
  height: 100%;
  opacity: .4;
  position: absolute;
  top: 0;
  left: 0;
}
.rsv_cta .wrapper{
  position: relative;
  z-index: 5;
}
.rsv_cta__head{
  color: #fff;
  margin-bottom: 3rem;
  text-align: center;
}
.rsv_cta .section_title .font_mincho{
  color: #fff;
}
.rsv_cta .section_title_jp::before{
  background: url('../img/belle/icon/star_white.svg') no-repeat center center / contain;
}
.rsv_cta .reservation_box{
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}
.rsv_cta .reservation_box li{
  margin-bottom: 1rem;
}
.rsv_cta .reservation_box a{
  height: 12rem;
}
.rsv_cta .reservation_box h3{
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.rsv_cta .reservation_box .icon_line{
  width: 4rem;
  height: 4rem;
}
.link_policy{
  margin-top: 2rem;
  text-align: center;
}
.link_policy button{
  text-decoration: underline;
  color: #fff;
  background: none;
  border: 0;
  font-size: 1.4rem;
  cursor: pointer;
}
.link_policy button:hover{
  text-decoration: none;
}

#footer_schedule{
  margin-bottom: 5rem;
}
.footer_logo{
  width: 70%;
  max-width: 34rem;
  display: block;
}
#footer_info p{
  margin: 2rem 0;
}
#footer_map p{
  margin: .5rem 0;
  font-size: 1.2rem;
}
#footer_map p span{
  color: var(--blue);
  font-weight: 500;
}
.map_wrap{
  margin: 0 -5%;
}
.map_wrap iframe{
  width: 100%;
  height: 25rem;
  vertical-align: bottom;
}

#access{
  padding-bottom: 0;
}

#site_footer{
  padding: 3rem 0;
}
#site_footer .footer_logo{
  display: none;
}

#footer_sitemap{
  margin-bottom: 3rem;
  display: flex;
  flex-wrap: wrap;
}
#footer_sitemap li{
  width: 50%;
}
#footer_sitemap li a{
  display: block;
  padding: .5rem 0;
  color: var(--blue);
  font-weight: 500;
}
#footer_copy{
  font-size: 1rem;
  margin-top: 3rem;
}




/* =TOP
-------------------------------------------------------------- */

.bg_grad{
  background: linear-gradient(to bottom, #65C3AF,#2298CE,#9DD3E3 70%,#EFF6F8);
}
#belle_main{
  position: relative;
  margin-bottom: 5rem;
}
#belle_main__img .img_clip{
  aspect-ratio: 5 / 4;
}
#belle_main__catch{
  padding: 2rem 5%;
  color: #fff;
}
#belle_main__catch h1{
  font-size: 8vw;
  margin-bottom: 1rem;
}
#belle_main__scroll{
  font-size: 1rem;
  position: absolute;
  right: 1rem;
  bottom: -8rem;
  color: #fff;
  width: 10rem;
  rotate: 90deg;
  transform-origin: top right;
}
#belle_main__scroll::before{
  content: '';
  background: #fff;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -.5rem;
  right: 0;
}

#about{
  position: relative;
}
#about::after{
  content: '';
  position: absolute;
  background: url('../img/belle/logo_white.svg') no-repeat center center / contain;
  width: 30rem;
  height: 30rem;
  bottom: -3rem;
  left: -10rem;
}
#about_photo{
  display: flex;
  margin-right: -8%;
}
.about_photo__box{
  width: 50%;
  padding: 0 .5rem;
}
.about_photo__box:last-child{
  margin-top: 5rem;
}
#about_txt{
  color: #fff;
  margin-top: 5rem;
}
#about_txt .section_title .font_mincho{
  color: #fff;
}
#about_txt .section_title_jp::before{
  background: url('../img/belle/icon/star_white.svg') no-repeat center center / contain;
}
#about_txt p{
  margin-bottom: 2rem;
  font-size: 1.6rem;
  line-height: 2;
}

.menu_nav__btn{
  background: #fff;
  display: flex;
  align-items: center;
  padding: 1rem;
}
.menu_nav__img{
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  margin: 0 1rem 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu_nav__img img{
  width: 5rem;
  height: 5rem;
  object-fit: contain;
}
.menu_nav__txt{
  flex: 1;
}
.menu_nav__btn h3{
  font-size: 1.6rem;
  padding: .5rem 3rem .5rem 0;
  margin-bottom: 1rem;
  position: relative;
  font-weight: 500;
}
.menu_nav__btn h3 .arrow{
  width: 2.5rem;
  height: 2.5rem;
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
}
.menu_nav__btn h3 .arrow::after{
  content: '';
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background: url('../img/belle/icon/arrow_white.svg') no-repeat center center / contain;
}
.menu_nav__list{
  font-size: 1.2rem;
  display: flex;
  flex-wrap: wrap;
} 
.menu_nav__list li{
  display: inline-flex;
  align-items: center;
  margin-right: 2rem;
}
.menu_nav__list li::before{
  content: '';
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  margin-right: .5rem;
}

.menu01{
  border-top: var(--menu01) solid .5rem;
}
.menu01 .menu_nav__img{
  background: #6DC5B415;
}
.menu01 h3{
  border-bottom: var(--menu01) dotted 1px;
}
.menu01 h3 .arrow{
  background: var(--menu01);
}
.menu01 .menu_nav__list li::before{
  background: #6CC6B450;
}

.menu02{
  border-top: var(--menu02) solid .5rem;
}
.menu02 .menu_nav__img{
  background: #5FBADB15;
}
.menu02 h3{
  border-bottom: var(--menu02) dotted 1px;
}
.menu02 h3 .arrow{
  background: var(--menu02);
}
.menu02 .menu_nav__list li::before{
  background: #5FBADB50;
}

.menu03{
  border-top: var(--menu03) solid .5rem;
}
.menu03 .menu_nav__img{
  background: #70A2F015;
}
.menu03 h3{
  border-bottom: var(--menu03) dotted 1px;
}
.menu03 h3 .arrow{
  background: var(--menu03);
}
.menu03 .menu_nav__list li::before{
  background: #70A2F050;
}

.menu04{
  border-top: var(--menu04) solid .5rem;
}
.menu04 .menu_nav__img{
  background: #A093E815;
}
.menu04 h3{
  border-bottom: var(--menu04) dotted 1px;
}
.menu04 h3 .arrow{
  background: var(--menu04);
}
.menu04 .menu_nav__list li::before{
  background: #A093E850;
}

.menu05{
  border-top: var(--menu05) solid .5rem;
}
.menu05 .menu_nav__img{
  background: #95A6BA15;
}
.menu05 h3{
  border-bottom: var(--menu05) dotted 1px;
}
.menu05 h3 .arrow{
  background: var(--menu05);
}
.menu05 .menu_nav__list li::before{
  background: #95A6BA50;
}

.menu06{
  border-top: var(--menu06) solid .5rem;
}
.menu06 .menu_nav__img{
  background: #E6A0CB15;
}
.menu06 h3{
  border-bottom: var(--menu06) dotted 1px;
}
.menu06 h3 .arrow{
  background: var(--menu06);
}
.menu06 .menu_nav__list li::before{
  background: #E6A0CB50;
}

#top_photo{
  width: 100%;
  height: 25rem;
  position: relative;
  background: var(--blue);
}
#top_photo::before{
  content: '';
  background: url('../img/belle/photo01.jpg') no-repeat center center / cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#instagram{
  background: linear-gradient(to bottom,#EFF6F8,#9DD3E3);
}
#instagram_header .insta_txt{
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
#instagram_data{
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
#instagram_data figure{
  width: 6rem;
  margin: 0 1rem 0 0;
}
#instagram_data__inner{
  flex: 1;
}
#instagram_data__inner .font_mincho{
  border-bottom: var(--border) solid 1px;
  padding-bottom: .5rem;
  margin-bottom: .5rem;
}
#instagram_data__inner .insta_tag{
  font-size: 1.2rem;
  color: var(--blue);
}
#instagram .btn_link{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
}
.btn_link .icon_instagram{
  filter: brightness(0) invert(1);
  margin-right: .5rem;
}

.news_box{
  padding: 1.5rem 0;
  border-bottom: var(--border) solid 1px;
  display: block;
}
.news_data{
  font-size: 1.2rem;
}
.news_date{
  color: var(--blue);
  width: 8rem;
  display: inline-block;
}
.cat{
  background: var(--blue);
  color: #fff;
  padding: .1rem 1.5rem;
  border-radius: 50px;
}
.cat_blog{
  background: #008FC415;
  color: var(--blue);
}
.news_box__title{
  margin-top: 1rem;
  line-height: 1.5;
}
.news_box:hover .news_box__title{
  text-decoration: underline;
}






/* =entry base
-------------------------------------------------------------- */

.news_header{
  border-bottom: var(--blue) solid 1px;
  padding-bottom: 1rem;
  margin-bottom: 3rem;
}
.news_header h1{
  font-size: 2rem;
  margin-top: 1rem;
  line-height: 1.5;
}
.entry_content{
	padding-bottom: 5rem;
  line-height: 2;
}
.entry_content h2{
	margin: 4rem 0 2rem;
	font-size: 1.8rem;
	line-height: 1.5;
	padding-left: 1.5rem;
	border-left: var(--bk) solid .4rem;
}
.entry_content h3{
	background: var(--bk);
	padding: 1rem;
	border-radius: .5rem;
	color: #fff;
	font-size: 1.6rem;
	margin: 3rem 0 1rem;
}
.entry_content h4{
	color: var(--bk);
	font-size: 1.6rem;
	margin: 2rem 0;
}
.entry_content p{
	margin: 2rem 0;
}
.entry_content a{
	text-decoration: underline;
	color: var(--blue);
}
.entry_content a:hover{
	text-decoration: none;
}
.entry_content table tr{
	border: 0;
}
.has-text-align-right{
	text-align: right;
}
.has-text-align-center{
	text-align: center;
}
.entry_content table th,
.entry_content table td{
	border: #999 solid 1px;
}

.entry_content ul,
.entry_content ol{
  padding: 2rem 5%;
  margin: 3rem 0;
  background: var(--bg);
}
.entry_content li{
  margin: .5rem 0;
  line-height: 1.5;
  position: relative;
}
.entry_content ul li::before{
  content: '・';
  position: absolute;
  top: 2px;
  left: 0;
}
.entry_content ol{
  counter-reset: number;
}
.entry_content ol li::before{
  counter-increment: number;
  content: counter(number)'.';
  top: 0;
  left: 0;
  position: absolute;
}

.wp-block-image{
	margin-bottom: 2rem;
	margin-top: 2rem;
}
.wp-block-image img{
	overflow: hidden;
}
.wp-block-image figcaption{
	font-size: 1.2rem;
	margin: .5rem 0 0;
	text-align: center;
}
.wp-block-gallery{
	display: flex;
	flex-wrap: wrap;
	gap: 0 !important;
}
.wp-block-gallery .wp-block-image{
	width: 50%;
	padding-right: 1rem;
	margin: .5rem 0;
}
.wp-block-embed{
	margin: 2rem 0;
}






/* =menu
-------------------------------------------------------------- */

.menu_nav>li{
  margin-bottom: 1rem;
}
#menu_nav__wrap .menu_nav__btn{
  border: 0;
  display: block;
  padding: 0;
}
#menu_nav__wrap .menu_nav__title{
  display: flex;
  align-items: center;
  padding: 1rem;
}
#menu_nav__wrap .menu_nav__img{
  background: none;
  width: 40px;
  margin: 0 1rem 0 0;
  height: 40px;
}
#menu_nav__wrap .menu_nav__img img{
  width: 100%;
  height: 100%;
}
#menu_nav__wrap .menu_nav__title h3{
  flex: 1;
  border: 0;
  padding: 0;
  margin: 0;
}
#menu_nav__wrap .menu_nav__txt{
  padding: 1rem 1rem 2rem;
}

#menu_nav__wrap .menu01 .menu_nav__title{
  background: #6DC5B430;
}
#menu_nav__wrap .menu02 .menu_nav__title{
  background: #5FBADB30;
}
#menu_nav__wrap .menu03 .menu_nav__title{
  background: #70A2F030;
}
#menu_nav__wrap .menu04 .menu_nav__title{
  background: #A093E830;
}
#menu_nav__wrap .menu05 .menu_nav__title{
  background: #95A6BA30;
}
#menu_nav__wrap .menu06 .menu_nav__title{
  background: #E6A0CB30;
}


#menu_price{
  margin-bottom: 5rem;
}
#menu_price__inner{
  border-top: var(--blue) solid 1px;
  border-bottom: var(--blue) solid 1px;
  padding: 3rem 0;
  margin-bottom: 1rem;
  text-align: center;
}
#menu_price__inner h2{
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--blue);
  font-weight: 500;
}
#menu_price__inner ul{
  display: inline-block;
}
#menu_price__inner li{
  margin: .5rem 0;
  text-align: left;
  display: flex;
  align-items: center;
}
.price_label{
  display: inline-block;
  text-align: center;
  padding: .1rem;
  background: var(--blue);
  color: #fff;
  margin-right: 1rem;
  width: 10rem;
}
#menu_price__inner li .font_mincho{
  font-size: 1.6rem;
  line-height: 1;
}
#menu_price__inner li .font_mincho span{
  font-size: 150%;
}
#menu_price__bottom{
  color: var(--blue);
  font-size: 1.2rem;
  text-align: center;
}

.menu_section{
  margin-bottom: 5rem;
}
.menu_section__title{
  position: relative;
  z-index: 5;
  padding: 1rem 0;
  margin-bottom: 2rem;
}
.menu_section__title::after{
  content: '';
  background: url('../img/belle/logo_white.svg') no-repeat center center / contain;
  width: 20rem;
  height: 20rem;
  position: absolute;
  right: -8rem;
  top: 50%;
  translate: 0 -50%;
  z-index: -1;
}
.menu_section__title .wrapper{
  display: flex;
  align-items: center;
}
.menu_section__title .menu_nav__img{
  background: #ffffff60;
}
.menu_section__title h2{
  color: #fff;
}

#menu01 .menu_section__title{
  background: linear-gradient( to right,#6DC5B4 50%,#6DC5B450);
}
#menu02 .menu_section__title{
  background: linear-gradient( to right,#5FBADB 50%,#5FBADB50);
}
#menu03 .menu_section__title{
  background: linear-gradient( to right,#70A2F0 50%,#70A2F050);
}
#menu04 .menu_section__title{
  background: linear-gradient( to right,#A093E8 50%,#A093E850);
}
#menu05 .menu_section__title{
  background: linear-gradient( to right,#95A6BA 50%,#95A6BA50);
}
#menu06 .menu_section__title{
  background: linear-gradient( to right,#E6A0CB 50%,#E6A0CB50);
}

.menu_intro{
  margin-bottom: 3rem;
}

.menu_block{
  margin-bottom: 2rem;
}
.menu_box{
  background: #fff;
  padding: 2rem 5%;
  margin-bottom: 1rem;
}
.menu_box__title{
  margin-bottom: 2rem;
}
.menu_box__title h3{
  font-size: 1.8rem;
  padding-left: 1.5rem;
  line-height: 1.5;
  font-weight: 500;
}
.menu_box__title p{
  color: var(--menu01);
  font-size: 1.2rem;
  margin-top: .5rem;
}
.price_txt{
  text-align: right;
  margin-top: 1rem;
}
.price_txt span{
  font-size: 120%;
}

.price_list{
  margin-top: 2rem;
}
.price_list li{
  padding: 1rem 0;
  border-bottom: var(--border) dashed 1px;
}
.price_list li:last-child{
  border: 0;
}
.price_list h4{
  font-size: 1.6rem;
}

.price_table{
  margin-top: 2rem;
}
.price_table th,
.price_table td{
 /* font-size: 1.2rem;*/
  text-align: center;
  padding: .5rem;
  vertical-align: middle;
}
.price_table th span{
  font-size: 80%;
}
.price_table tbody tr:not(:last-child){
  border-bottom: var(--border) dashed 1px;
}
.price_table__weman thead td{
  border: #E58DA7 solid 1px;
  background: #E58DA790;
  color: #fff;
}
.price_table__weman thead th{
  background: #E58DA7;
  color: #fff;
  border: #E58DA7 solid 1px;
  width: 40%;
}
.price_table__man thead td{
  border: #70A2F0 solid 1px;
  background: #70A2F090;
  color: #fff;
}
.price_table__man thead th{
  background: #70A2F0;
  color: #fff;
  border: #70A2F0 solid 1px;
  width: 40%;
}
.price_table__05 thead td{
  border: var(--menu05) solid 1px;
  background: #95A6BA90;
  color: #fff;
}
.price_table__05 thead th{
  background: var(--menu05);
  color: #fff;
  border: var(--menu05) solid 1px;
  width: 70%;
}
.price_table tbody th{
  text-align: left;
}
.price_txt .space{
  width: 13.5rem;
  display: inline-block;
  text-align: center;
}
.price_txt .none,
.price_table .none{
  width: 2rem;
  height: 1px;
  background: var(--bk);
  display: inline-block;
}
.table_wrap{
  white-space: nowrap;
  overflow: auto;
}
.attention{
  font-size: 1.2rem;
  margin-top: 1rem;
}
.menu_box__inner ol{
  margin: 1rem 0;
  padding: 0;
}
.menu_box__inner ol li{
  font-weight: 500;
  margin: .2rem 0;
}
.menu_box__inner ol li span{
  color: var(--menu03);
}
#menu01 .menu_box__title h3{
  border-left: var(--menu01) solid .3rem;
}
#menu02 .menu_box__title h3{
  border-left: var(--menu02) solid .3rem;
}
#menu03 .menu_box__title h3{
  border-left: var(--menu03) solid .3rem;
}
#menu04 .menu_box__title h3{
  border-left: var(--menu04) solid .3rem;
}
#menu05 .menu_box__title h3{
  border-left: var(--menu05) solid .3rem;
}
#menu05 .menu_box__title p{
  color: var(--menu05);
}
#menu06 .menu_box__title h3{
  border-left: var(--menu06) solid .3rem;
}

#menu_attentions{
  border-bottom: var(--blue) solid 2px;
  padding-bottom: 3rem;
}
#menu_attentions h2{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 500;
  color: var(--blue);
  white-space: nowrap;
}
#menu_attentions h2::before,
#menu_attentions h2::after{
  content: '';
  width: 48%;
  height: 2px;
  display: block;
  background: var(--blue);
}
#menu_attentions h2 span{
  padding: 0 1.5rem;
}
#menu_attentions ul{
  padding: 0 5%;
}
#menu_attentions li{
  margin: .5rem 0;
  padding-left: 2rem;
  position: relative;
}
#menu_attentions li::before{
  content: '※';
  position: absolute;
  top: 0;
  left: 0;
  color: var(--blue);
}


.blue_star{
  color: var(--blue);
}

#menu03 .price_table{
  table-layout: fixed;
}
#menu03_03 .price_table th,
#menu03_04 .price_table th{
  width: 50%;
}

#menu04_01 .price_list{
  border-top: var(--border) dashed 1px;
}


.p-access__payment{
  align-items: center;
  background-color: #e6f4f1;
  border: 2px solid #6cc6b4;
  margin: 3rem auto 0;
  max-width: 960px;
  text-align: center;
}
.p-access__payment-title{
  align-items: center;
  background-color: #6cc6b4;
  color: #fff;
  display: flex;
  font-size: clamp(15px, 1.3889vw, 20px);
  font-weight: 600;
  justify-content: center;
  padding: calc(clamp(1px, 2.4306vw, 35px) * 1) calc(clamp(1px, 2.9167vw, 42px) * 1);
  align-self: stretch;
}
.p-access__payment-img-wrapper{
  align-items: center;
  display: flex;
  flex: 1;
  justify-content: center;
  padding: calc(clamp(1px, 1.3889vw, 20px) * 1) calc(clamp(1px, 2.7778vw, 40px) * 1);
  flex-wrap: wrap;
}
.p-access__payment-img-wrapper p{
  font-size: 1rem;
  margin: 1rem 0 0;
  text-align: center;
  width: 100%;
}


/* =RWD
-------------------------------------------------------------- */

@media screen and (min-width: 768px){
  .p-access__payment{
    display: flex;
    justify-content: space-between;
  }
  .mobile_only{
		display: none;
	}
	.pc_only{
		display: block;
	}
  a[href*="tel:"] {
    pointer-events: none !important;
    cursor: default !important;
    text-decoration: none !important;
  }
  table th{
		padding: 1rem;
	}
	table td{
		padding: 1rem;
	}
	.wp-block-gallery.columns-3 .wp-block-image{
		width: 33.33%;
	}
	.wp-block-gallery.columns-4 .wp-block-image{
		width: 25%;
	}
	.wp-block-gallery.columns-5 .wp-block-image{
		width: 20%;
	}
  .section{
    padding: 6rem 0;
  }
  .section_title .font_mincho{
    font-size: 6rem;
  }
  #breadcrumb li:last-child{
    max-width: 30rem;
  }
  .page_header{
    margin: 3rem auto 8rem;
  }
  .page_title__en{
    font-size: 1.8rem;
  }
  .page_title{
    font-size: 3.6rem;
  }
  .page_title__back{
    font-size: 10rem;
  }
  #header_nav__btn{
    top: 0;
    right: 0;
    width: var(--header_height);
    height: var(--header_height);
    border-radius: 0;
  }
  #pc__header_rsv{
    display: flex;
    z-index: 9999;
  }
  #sp__header_rsv{
    display: none;
  }
  .header_reservation{
    position: fixed;
    top: 1rem;
    right: var(--header_height);
    margin: 0;
  }
  .header_reservation a{
    padding: 0 2rem;
    background: none;
    border-right: var(--border) solid 1px;
  }
  .header_reservation li:last-child a{
    border: 0;
  }
  .header_reservation .reservation_line{
    margin: 0;
  }
  #menu_nav__sp{
    display: none;
  }
  .main_navigation{
    width: 40%;
    padding-top: 2rem;
  }
  .nav_link{
    display: flex;
    flex-direction: column-reverse;
  }
  .nav_link .font_mincho{
    font-size: 3.4rem;
    line-height: 1.2;
    margin: 0;
  }
  .nav_link .nav_jp{
    font-size: 1.4rem;
  }
  #menu_nav .nav_link{
    flex-direction: row-reverse;
    align-items: flex-end;
  }
  #menu_nav .nav_link .nav_jp{
    flex: 1;
    margin-left: 2rem;
  }
  #menu_nav{
    display: block;
    width: 60%;
  }
  #menu_nav .accordion_btn{
    pointer-events: none;
  }
  #menu_nav .accordion_btn .icon_plus{
    display: none;
  }
  #menu_nav .accordion_body{
    max-height: 100%;
  }
  #main_navi__wrap{
    display: flex;
  }
  #header_links{
    margin: -7rem 0 0;
  }
  .rsv_cta{
    padding: 10rem 0 5rem;
  }
  .rsv_cta .reservation_box{
    display: flex;
  }
  .rsv_cta .reservation_box li{
    width: 50%;
    padding: 0 .5rem;
    margin: 0;
  }
  #footer_access__inner{
    display: flex;
    flex-direction: row-reverse;
    margin-bottom: 3rem;
  }
  #footer_schedule{
    width: 50%;
    margin: 0 0 0 3rem;
  }
  #footer_info{
    flex: 1;
  }
  .map_wrap{
    margin: 0;
  }
  .map_wrap iframe{
    height: 30rem;
  }
  #access{
    padding-bottom: 5rem;
  }
  #site_footer{
    padding: 5rem 0;
  }
  #site_footer .footer_logo{
    display: block;
    width: 20rem;
  }
  #footer_sitemap{
    margin: 3rem 0;
  }
  #footer_sitemap li{
    width: auto;
    margin-right: 3rem;
  }
  #footer_sitemap li a{
    display: inline;
    padding: 0;
  }
  #footer_sitemap li a:hover{
    text-decoration: underline;
  }
  #footer_bottom{
    display: flex;
    align-items: flex-end;
  }
  #footer_links li:last-child{
    margin: 0;
  }
  #footer_copy{
    margin: 0 0 0 auto;
  }
  #access .section_title{
    margin-bottom: 5rem;
  }
  #belle_main__img{
    width: 60%;
    margin: 0 0 0 auto;
  }
  #belle_main__catch{
    position: absolute;
    top: 50%;
    left: 5%;
    translate: 0 -50%;
    z-index: 10;
    padding: 0;
  }
  #belle_main__catch h1{
    font-size: 4rem;
  }
  #belle_main__scroll{
    right: auto;
    left: 0;
    transform-origin: bottom left;
    bottom: -6rem;
  }
  #about_inner{
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
  }
  #about_photo{
    width: 50%;
    margin-left: 3rem;
  }
  #about_txt{
    margin: 0;
    flex: 1;
  }
  .menu_nav{
    display: flex;
    flex-wrap: wrap;
  }
  .menu_nav>li{
    width: 33.33%;
    margin: 0;
  }
  .menu_nav__btn{
    padding: 1rem 1rem 3rem;
  }
  .menu_nav__btn{
    display: block;
    height: 100%;
  }
  .menu_nav__img{
    margin: 0 auto 1rem;
  }
  #menu{
    position: relative;
    z-index: 5;
  }
  #top_photo{
    margin-top: -25rem;
    height: 40rem;
  }
  #top_photo::before{
    opacity: .5;
  }
  #news .wrapper{
    display: flex;
  }
  #news .section_title{
    width: 25rem;
  }
  #front_news__list{
    flex: 1;
  }
  #instagram_header{
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
  }
  #instagram_header .insta_txt{
    margin: 0;
    flex: 1;
  }
  #instagram_data{
    width: 30rem;
    margin: 0 0 0 2rem;
  }
  .news_header h1{
    font-size: 2.6rem;
  }
  .menu_box__flex{
    display: flex;
    align-items: flex-end;
  }
  .menu_box__flex p{
    flex: 1;
  }
  .menu_box__flex p.price_txt{
    white-space: nowrap;
    margin: 0 0 0 2rem;
    flex: 0;
  }
  .price_list li{
    display: flex;
  }
  .price_list h4{
    flex: 1;
  }
  #menu01_05 th,
  .price_table__weman thead th,
  .price_table__man thead th{
    width: 50%;
  }
  .price_list__inner{
    flex: 1;
  }
  #menu_price__inner ul{
    display: flex;
    justify-content: center;
  }
  #menu_price__inner ul li{
    margin: 0 2rem;
  }
  .menu_section__title .menu_nav__img{
    margin: 0 2rem 0 0;
  }
  .price_table__man thead th{
    width: 35%;
  }
  #modal_policy__inner h2{
    font-size: 2rem;
  }
  #modal_policy__inner h3{
    font-size: 1.8rem;
  }
}






@media screen and (min-width: 1024px){
  html{
    font-size: 75%;
		scroll-padding-top: 120px;
  }
  #header_logo{
    width: 20rem;
  }
  .nav_menu__child li{
    width: auto;
    margin-right: 3rem;
  }
  #footer_top{
    display: flex;
    margin-bottom: 5rem;
  }
  #footer_top .footer_logo{
    margin: 0 auto 0 0;
  }
  #footer_sitemap{
    margin: 0;
  }
  .map_wrap iframe{
    height: 45rem;
  }
  .bg_grad{
    background: linear-gradient(to bottom, #65C3AF,#2298CE,#9DD3E3 80%,#EFF6F8);
  }
  .news_box{
    display: flex;
    padding: 2.5rem 0;
  }
  .news_box .news_data{
    width: 20rem;
  }
  .news_box__title{
    margin: 0;
  }
  #instagram_header{
    align-items: flex-end;
  }
  .schedule-table__header--time,
  .schedule-table__cell--time{
    width: 10rem;
  }
  .menu_nav__list li{
    display: flex;
    margin: 0 1rem 0 0;
    min-width: calc(50% - 1rem);
  }
  #menu_price{
    margin: 5rem auto;
  }
  #menu_price__inner{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 0;
  }
  #menu_price__inner h2{
    margin: 0 3rem 0 0;
  }
  .menu_section__title h2{
    font-size: 2.6rem;
  }
  .menu_section__title::after{
    right: 0;
    width: 400px;
    height: 400px;
  }
  .menu_box{
    padding: 3rem 5%;
  }
  .price_table th,
  .price_table td{
    font-size: 1.4rem;
  }
  #menu_attentions{
    text-align: center;
  }
  #menu_attentions ul{
    display: inline-block;
  }
  #menu_attentions ul li{
    text-align: left;
  }
  #belle_main__catch{
    top: 40%;
    width: 40%;
  }
  #belle_main__catch h1{
    font-size: 56px;
    line-height: 1.5;
  }
  #belle_main__catch p{
    font-size: 20px;
  }
  #belle_main__catch__inner{
    max-width: 570px;
    width: 100%;
    margin: 0 0 0 auto;
  }
  .rsv_cta{
    padding: 15rem 0 3rem;
  }
  #menu04_01 .menu_box__flex p.price_txt{
    margin-left: 10rem;
  }
}


@media (hover: hover) {
  .img_opacity:hover img{
  	opacity: .8;
  }
  .hover_up:hover{
  	transform: translateY(-5px);
  	box-shadow: 0 12px 10px -6px rgba(0,0,0,.3);
  }
}