@charset "UTF-8";
/* CSS Document */

@font-face {
  font-family: "YuGothic M";
  src: local("Yu Gothic Medium");
}

/* =================================
 reset
================================= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font-weight:normal;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, main {
	display: block;
}

body{ margin:0px; padding:0px;color:#000;}
p{ margin:0px; padding:0px}
a{color:#333;}

img{
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	image-rendering: -webkit-optimize-contrast;
}
*a:hover{
	text-decoration: none;
}


/* 電話番号リンク禁止
---------------------------------------------------- */
@media (min-width: 751px) {
	a[href*="tel:"] {
	pointer-events: none;
	cursor: default;
	text-decoration: none;
	}
}
@media (max-width: 750px){
	a[href*="tel:"]{
		text-decoration: none;
	}
}

/* ----------------------------------------------------------------------
 inner
---------------------------------------------------------------------- */
.innerOrigin{
	width:calc(100% - 30px);
	max-width:1200px;
	margin-left: auto;
	margin-right: auto;
}
.inner960{
	max-width:960px;
	width:calc(100% - 30px);
	margin-left: auto;
	margin-right: auto;
}
.inner768{
	max-width:768px;
	width:calc(100% - 30px);
	margin-left: auto;
	margin-right: auto;
}

/* ----------------------------------------------------------------------
 角丸
---------------------------------------------------------------------- */
.radius10{
	border-radius: 10px;		/* CSS3草案 */
	-webkit-border-radius: 10px;	/* Safari,Google Chrome用 */
	-moz-border-radius: 10px;	/* Firefox用 */
}
.radius15{
	border-radius: 15px;		/* CSS3草案 */
	-webkit-border-radius: 15px;	/* Safari,Google Chrome用 */
	-moz-border-radius: 15px;	/* Firefox用 */
}
.radius20{
	border-radius: 20px;		/* CSS3草案 */
	-webkit-border-radius: 20px;	/* Safari,Google Chrome用 */
	-moz-border-radius: 20px;	/* Firefox用 */
}

/* ----------------------------------------------------------------------
 flexbox
---------------------------------------------------------------------- */
.flexOrigin{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: stretch;    /*全ての要素の高さを揃える*/
}
.space-between{
	justify-content: space-between; /*均等に間隔をあける*/
}
.flex-start{
	justify-content: flex-start;/*要素を左寄せ*/
}
.flex-wrap{
	flex-wrap: wrap; /*flex繰り返し*/
}
.row-reverse{
	flex-direction:row-reverse;	/*flex逆順*/
}
@media screen and (max-width:767px)  {
	.flex-block{
		display: block; /*スマホ時フレックス解除*/
	}
}

@media print, screen and (min-width:768px)  {
	.flexBox02{
		width:48%;
	}
	.flexBox03{
		width:30%;
	}
	.flexBox04{
		width:23%;
	}
}
@media screen and (max-width:767px)  {
	.flexBox02{
		width:100%;
		margin-bottom: 20px;
	}
	.flexBox03{
		width:100%;
		margin-bottom: 20px;
	}
	.flexBox02:last-child,.flexBox03:last-child{
		margin-bottom: 0;
	}
	.flexBox04{
		width:48%;
		margin-bottom: 20px;
	}
	.flexBox04:nth-child(3),.flexBox04:nth-child(4){
		margin-bottom: 0;
	}
}

/* ----------------------------------------------------------------------
 float
---------------------------------------------------------------------- */
.left,.leftPc{
	float:left;
}
.right,.rightPc{
	float:right;
}

@media screen and (max-width:750px)  {
	.leftPc,.rightPc{
		width:100%;
	}
}

/*クリアフィックス*/
.clearfix:after{
  content:"";
  display:block;
  clear:both;
}

/* ----------------------------------------------------------------------
 タブレット以上のみ表示
---------------------------------------------------------------------- */

@media screen and (max-width: 767px) {
	.pc_only{
	display:none !important;
	}
}

/* ----------------------------------------------------------------------
 スマホ以下のみ表示
---------------------------------------------------------------------- */
@media screen and (min-width: 768px),print {
	.sp_only{
	display:none !important;
	}
}

/* ----------------------------------------------------------------------
 フォント（%）
---------------------------------------------------------------------- */
.font50 {
	font-size: 50% ;
}
.font60 {
	font-size: 60% ;
}
.font70 {
	font-size: 70% ;
}
.font80 {
	font-size: 80% ;
}
.font90 {
	font-size: 90% ;
}
.font100 {
	font-size: 100% ;
}
.font110 {
	font-size: 110% ;
}
.font120 {
	font-size: 120% ;
}
.font130 {
	font-size: 130% ;
}
.font150 {
	font-size: 150% ;
}
.font180 {
	font-size: 180% ;
}
.font200 {
	font-size: 200% ;
}
.font230 {
	font-size: 230% ;
}
.font250 {
	font-size: 250% ;
}

/* ----------------------------------------------------------------------
 フォント（px）
---------------------------------------------------------------------- */
.font12px{
	font-size: 12px ;
}
.font14px{
	font-size: 14px ;
}
.font16px{
	font-size: 16px ;
}
.font18px{
	font-size: 18px ;
}
.font20px{
	font-size: 20px ;
}
.font25px{
	font-size: 25px ;
}
.font30px{
	font-size: 30px ;
}
.font35px{
	font-size: 35px ;
}
.font40px{
	font-size: 40px ;
}
.font45px{
	font-size: 45px ;
}
@media screen and (min-width: 768px) {
	.font12-14px{
		font-size: 14px ;
	}
	.font14-16px{
		font-size: 16px ;
	}
	.font15-20px{
		font-size: 20px ;
	}
	.font15-18px{
		font-size: 18px ;
	}
	.font16-18px{
		font-size: 18px ;
	}
	.font16-20px{
		font-size: 20px ;
	}
	.font18-20px{
		font-size: 20px ;
	}
	.font18-25px{
		font-size: 25px ;
	}
	.font20-22px{
		font-size: 22px ;
	}
	.font20-25px{
		font-size: 25px ;
	}
	.font20-30px{
		font-size: 30px ;
	}
	.font22-30px{
		font-size: 30px ;
	}
	.font25-30px{
		font-size: 30px ;
	}
	.font28-32px{
		font-size: 32px ;
	}
	.font25-35px{
		font-size: 35px ;
	}
	.font30-35px{
		font-size: 35px ;
	}
	.font30-40px{
		font-size: 40px ;
	}
}
@media screen and (max-width: 767px) {
	.font12-14px{
		font-size: 12px ;
	}
	.font14-16px{
		font-size: 14px ;
	}
	.font15-20px{
		font-size: 15px ;
	}
	.font15-18px{
		font-size: 15px ;
	}
	.font16-18px{
		font-size: 16px ;
	}
	.font16-20px{
		font-size: 16px ;
	}
	.font18-20px{
		font-size: 18px ;
	}
	.font18-25px{
		font-size: 18px ;
	}
	.font20-22px{
		font-size: 20px ;
	}
	.font20-25px{
		font-size: 20px ;
	}
	.font20-30px{
		font-size: 20px ;
	}
	.font22-30px{
		font-size: 22px ;
	}
	.font25-30px{
		font-size: 25px ;
	}
	.font28-32px{
		font-size: 28px ;
	}
	.font25-35px{
		font-size: 25px ;
	}
	.font30-35px{
		font-size: 30px ;
	}
	.font30-40px{
		font-size: 30px ;
	}
}

/* ----------------------------------------------------------------------
 フォントファミリー
---------------------------------------------------------------------- */

.yu_font{
	font-family:"游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif !important;
}
.yugo_font{
	font-family: "游ゴシック体", YuGothic, "YuGothic M", sans-serif;
}

/* ----------------------------------------------------------------------
 Adobe Font
---------------------------------------------------------------------- */

.dinR_font{
	font-family: "din-2014", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.dinB_font{
	font-family: "din-2014", sans-serif;
	font-weight: 700;
	font-style: normal;
}

/* ----------------------------------------------------------------------
行間調整
---------------------------------------------------------------------- */
.lh10{
	line-height:1.0em;
}
.lh12{
	line-height:1.2em;
}
.lh15{
	line-height:1.5em;
}
.lh18{
	line-height:1.8em;
}
.lh20{
	line-height:2em;
}
.lh24{
	line-height:2.4em;
}

/* ----------------------------------------------------------------------
 文字揃え
---------------------------------------------------------------------- */
.txtCenter{
	text-align:center;
}
.txtLeft{
	text-align:left;
}
.txtRight{
	text-align:right;
}
.txtJustify{
	text-align:justify;
}


.txtCenterPc{
	text-align:center;
}
@media screen and (max-width: 767px) {
	.txtCenterPc{
		text-align:left;
	}
}

/* ----------------------------------------------------------------------
 文字色
---------------------------------------------------------------------- */
.white{
	color:#fff;
}
.blk{
	color:#333;
}
.gray{
	color:#b3b3b3;
}
.green{
	color:#cf930f;
}
.gold{
	color:#cf930f;
}
.pink{
	color:#ff7754;
}

/* ----------------------------------------------------------------------
 文字スタイル（ウエイト）
---------------------------------------------------------------------- */
.bold{
	font-weight: bold;
}
.normal{
	font-weight: normal;
}

/* ----------------------------------------------------------------------
文字間
---------------------------------------------------------------------- */
.ls01{
	letter-spacing: 0.1em;
}
.ls02{
	letter-spacing: 0.2em;
}
.ls04{
	letter-spacing: 0.4em;
}

/* ----------------------------------------------------------------------
 PC・スマホ・タブレットのみ改行
---------------------------------------------------------------------- */

@media print, screen and (min-width: 768px) {
	.kaigyouTab {
		display: none;
	}
	.kaigyouSp {
		display: none;
	}
}
@media screen and (max-width: 767px) and (min-width : 641px){
	.kaigyouPc {
		display: none;
	}
}
@media screen and (max-width: 640px){
	.kaigyouPc {
		display: none;
	}
}
@media screen and (min-width: 480px),print{
	.kaigyouSpMini {
		display: none;
	}
}

/* ----------------------------------------------------------------------
 マーカーアニメーション
---------------------------------------------------------------------- */ 

.marker-animation.active{
    background-position: -100% .5em;
}
.marker-animation {
	background-repeat: repeat-x;
	background-size: 200% .8em;
	background-position: 0 .5em;
	transition: all 2s ease;
	font-weight:bold;
}
.marker-animation01{/*黄色*/
    background-image: -webkit-linear-gradient(left, transparent 50%, rgb(255,255,0) 50%);
    background-image: -moz-linear-gradient(left, transparent 50%, rgb(255,255,0) 50%);
    background-image: -ms-linear-gradient(left, transparent 50%, rgb(255,255,0) 50%);
    background-image: -o-linear-gradient(left, transparent 50%, rgb(255,255,0) 50%);
    background-image: linear-gradient(left, transparent 50%, rgb(255,255,0) 50%);
}

/* ----------------------------------------------------------------------
 margin・padding
---------------------------------------------------------------------- */
/*margin top*/
.mt00 {
    margin-top: 0px;
  }
  .mt05 {
    margin-top: 5px;
  }
  .mt10 {
    margin-top: 10px;
  }
  .mt15 {
    margin-top: 15px;
  }
  .mt20 {
    margin-top: 20px;
  }
  .mt25 {
    margin-top: 25px;
  }
  .mt30 {
    margin-top: 30px;
  }
  .mt35 {
    margin-top: 35px;
  }
  .mt40 {
    margin-top: 40px;
  }
  .mt45 {
    margin-top: 45px;
  }
  .mt50 {
    margin-top: 50px;
  }
  .mt80 {
    margin-top: 80px;
  }
  .mt100 {
    margin-top: 100px;
  }
  /*margin bottom*/
  .mb00 {
    margin-bottom: 0px !important;
  }
  .mb05 {
    margin-bottom: 5px;
  }
  .mb10 {
    margin-bottom: 10px;
  }
  .mb15 {
    margin-bottom: 15px;
  }
  .mb20 {
    margin-bottom: 20px;
  }
  .mb25 {
    margin-bottom: 25px;
  }
  .mb30 {
    margin-bottom: 30px;
  }
  .mb35 {
    margin-bottom: 35px;
  }
  .mb40 {
    margin-bottom: 40px;
  }
  .mb45 {
    margin-bottom: 45px;
  }
  .mb50 {
    margin-bottom: 50px;
  }
  .mb80 {
    margin-bottom: 80px;
  }
  .mb100 {
    margin-bottom: 100px;
  }
  /*margin left*/
  .ml05{
      margin-left: 5px;
  }
  .ml10 {
    margin-left: 10px;
  }
  .ml15 {
    margin-left: 15px;
  }
  /*margin right*/
  .mr30 {
    margin-right: 30px;
  }
  /*padding top*/
  .pt05 {
    padding-top: 5px;
  }
  .pt10 {
    padding-top: 10px;
  }
  .pt15 {
    padding-top: 15px;
  }
  .pt20 {
    padding-top: 20px;
  }
  .pt25 {
    padding-top: 25px;
  }
  .pt30 {
    padding-top: 30px;
  }
  .pt35 {
    padding-top: 35px;
  }
  .pt40 {
    padding-top: 40px;
  }
  .pt45 {
    padding-top: 45px;
  }
  .pt50 {
    padding-top: 50px;
  }
  .pt80 {
    padding-top: 80px;
  }
  .pt100 {
    padding-top: 100px;
  }
  /*padding bottom*/
  .pb05 {
    padding-bottom: 5px;
  }
  .pb10 {
    padding-bottom: 10px;
  }
  .pb15 {
    padding-bottom: 15px;
  }
  .pb20 {
    padding-bottom: 20px;
  }
  .pb25 {
    padding-bottom: 25px;
  }
  .pb30 {
    padding-bottom: 30px;
  }
  .pb35 {
    padding-bottom: 35px;
  }
  .pb40 {
    padding-bottom: 40px;
  }
  .pb45 {
    padding-bottom: 45px;
  }
  .pb50 {
    padding-bottom: 50px;
  }
  .pb80 {
    padding-bottom: 80px;
  }
  .pb100 {
    padding-bottom: 100px;
  }
  .pd10{
      padding: 10px;
  }
  .pd15{
      padding: 15px;
  }
  .pd20{
      padding: 20px;
  }
  .pd25{
      padding: 25px;
  }
  .pd30{
      padding: 30px;
  }
  
  /* ----------------------------------------------------------------------
   画像
  ---------------------------------------------------------------------- */
  img.img100{
      width:100%;
      display:block;
  }
  img.imgCenter{
      max-width: 100%;
      display:block;
      margin-left:auto;
      margin-right:auto;
  }
  img.imgLeft{
      max-width: 100%;
      display:block;
      margin-right:auto;
  }
  img.imgRight{
      max-width: 100%;
      display:block;
      margin-left:auto;
  }
  
/* ----------------------------------------------------------------------
背景色
---------------------------------------------------------------------- */
.bgWhite{
	background:#fff;
}
.bgGray{
	background:#EBEBEB;
}
.bgPink{
	background:#cb2c50;
}
.bgGold{
	background:#baa059;
}

/* ----------------------------------------------------------------------
 ボタン
---------------------------------------------------------------------- */
.btn250{ /*ボタンW250*/
	max-width:250px;
}
.btn300{ /*ボタンW300*/
	max-width:300px;
}
.btn480{ /*ボタンW300*/
	max-width:480px;
}
.btn100w{ /*ボタンW100%*/
	max-width:100%;
}


/* ----------------------------------------------------------------------
 ページ内リンク
---------------------------------------------------------------------- */
@media screen and (min-width: 1201px){
	a.scroll_point {
	 height: 1px;
	 margin-top: -160px;
	 padding-top: 160px;
	 display: block;
	}
}
@media screen and (max-width: 1200px){
	 a.scroll_point {
	 height: 1px;
	 display: block;
	 margin-top: -60px;
	 padding-top: 60px;
	}
}

/* ----------------------------------------------------------------------
 スクロールフェード
---------------------------------------------------------------------- */
.fade {
	opacity: 0;
	transform: translateY(50px);
}
.fade01 {
	transition: opacity 1.5s, transform 1s;	
}
.fade02 {
	transition: opacity 2.0s, transform 1.5s;	
}
.fade03 {
	transition: opacity 2.5s, transform 2.0s;	
}
.fade04 {
	transition: opacity 3.0s, transform 2.5s;	
}
.fade.active {
	opacity: 1;
	transform: translateY(0px);
}


/* ----------------------------------------------------------------------
 Youtube 埋め込み
---------------------------------------------------------------------- */
.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}

/* ----------------------------------------------------------------------
 デフォルトCSSの解除
---------------------------------------------------------------------- */
.head_logo{
	position:relative;
}
.logo-image{
	position:absolute;
	display:block;
}
.header-bar-inner{
	display:block;
}
@media screen and (min-width: 1201px),print {
	/*ヘッダー部分*/
	.header-bar{
		height:155px;
		background:rgba(255,255,255,0.8);
	}
	.header-bar-fixed ~ .signage{
		margin-top:160px;
	}
	/*ロゴ*/
	.logo-image{
		top:10px;
	}
	.logo{
		width:400px;
		max-width:400px;
		height:55px;
		left:15px;
	}
	/*グローバルメニュー */
	.global-nav{
		text-align:center;
		margin-left:auto;
		margin-right:auto;
		float:none;
		height:55px;
	}
	.global-nav ul.menu {
		display:inline-block;
	}
	.global-nav > ul > li{
		font-weight: bold;
	}
	.global-nav  ul  li a{
		font-family:'NotoSansJP-Medium';
		font-size:16px;
		letter-spacing:0.1em;
	}
	.global-nav > ul > li > a{
		line-height:55px;
		padding: 0 25px;
	}
	.global-nav .sub-menu a{
		background:#000;/*サブメニュー背景色*/
		width:220px;
	}
	.global-nav .sub-menu .current-menu-item > a{
		color:#fff;
	}
	.global-nav .sub-menu a:hover{
		background:#333;
	}
	/*キービジュアル*/
	.header-bar-fixed ~ .top-slider-wrapper{
		margin-top:155px;
	}
}

@media screen and (max-width: 1200px) {
	/*ヘッダー部分*/
	.header-bar{
		background:rgba(255,255,255,0.8);
		border-bottom:none;
		box-shadow:none;
	}
	/*ロゴ*/
	.logo{
		top:10px;
		width:260px;
        margin-left: 10px;
	}
	.logo img{
		display:block;
		width:100%;
	}
	/*グローバルナビ*/
	.global-nav-button{
		border-left:none;
		cursor:pointer;
	}
	.global-nav-button::before{
		color:#333;/*ハンバーガーアイコン色*/
	}
	.global-nav a {
		font-size: 14px;
		font-weight:bold;
		background:#000;/*グローバルナビ背景色*/
	}
	.global-nav a:hover{
		background:#4d4d4d;/*グローバルナビホバー時背景色*/
	}	
	.global-nav .sub-menu a{
		background:#333;/*サブメニュー背景色*/
	}
}

/* ----------------------------------------------------------------------
 ヘッダー
---------------------------------------------------------------------- */
.head_top{
	position:relative;
}
@media screen and (min-width: 1201px),print {
	.head_top{
		max-width:1920px;
		width:100%;
		height:100px;
		margin:0 auto;
	}
}

/* ----------------------------------------------------------------------
ヘッダーインフォメーション
---------------------------------------------------------------------- */
.headTel{
	margin-right:15px;
}
.headTelTxt,
.headReserve{
	display:flex;
	align-items: center; 
}
.head_infoBox img{
	width:35px;
	margin-right:10px;
	display:block;
}
.headTelTxt p{
	line-height:1;
}
.headTelNo{
	font-size:45px;
}
a.headReserve{
	background:#ff7754;
	border-radius:0 0 0 30px;
	height:100%;
	padding:0 15px;
}
@media screen and (min-width: 1201px) ,print{
	.head_info{
		float:right;
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		align-items: center; 
		justify-content:space-between;
		height:100px;
	}
}
@media screen and (max-width: 1200px) {
	.head_info{
		display:none;
	}
}

/* ----------------------------------------------------------------------
ヘッダーSNS LOGO
---------------------------------------------------------------------- */
.headSns{
	position:absolute;
	right:15px;
	top:15px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: stretch; 
	justify-content:space-between;
}
.headSns a{
	display:block;
	width:25px;
	text-align:center;
}
.headSns a i.awf{
	text-align:center;
	font-size:1.5em;
	transition : all 0.5s ease 0s;
	color:#cf930f;
}
.headSns a:hover i.awf{
	color:#333;
}
@media only screen and (min-width: 1201px){
	.headSns{
		display:none;
	}
}
@media only screen and (max-width: 1200px){
	.headSns{
		right:60px;
	}
}



/* ----------------------------------------------------------------------
メインビジュアル
---------------------------------------------------------------------- */
.mv{
	position:relative;
}
.mvInner{
	position:relative;
	width:calc(100% - 80px);
	margin-left:auto;
}


.snsBar{
	position:absolute;
	background:#fff;
	width:80px;
	bottom:0;
	left:0;
}
.snsBarInner{
	position:relative;
	width:100%;
	height:100%;
}
.snsBarInner h2{
	writing-mode: vertical-rl;
	margin-left: auto;
	margin-right: auto;
}
.snsMvIco{
	position:absolute;
	bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.snsMvIco a{
	display:block;
	text-align:center;
	margin-bottom:10px;
}
.snsMvIco a i{
	font-size:20px;
	color:#cf930f;
}
@media screen and (min-width: 1201px), print {
    .snsBar {
        height: calc(100vh - 155px);
    }
}
@media screen and (max-width: 1200px){
	.mvInner{
		width:calc(100% - 50px);
	}
	.snsBar{
		height: calc(100svh - 100px);
		width:50px;
	}
	.snsBarInner h2.font18px{
		font-size:14px;
	}
	.snsMvIco{
		display:none;
	}
}
@media screen and (max-width: 460px){
	.mvInner{
		width:calc(100% - 35px);
	}
	.snsBar{
		width:35px;
	}
	.snsBarInner h2.font18px{
		font-size:12px;
	}
}

/*スライダー*/
/*------- splide -------*/
.slide-media,
.thumb-media {
	position: relative;
	overflow: hidden;
	width:100%;
	height:calc(100svh - 155px);
	margin-left:auto;
	margin-right:auto;
}
@media only screen and (max-width: 1200px) {
	.slide-media,
	.thumb-media {
		height:calc(100svh - 55px);
	}
}
.slide-media img,
.thumb-media img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.splide {
	z-index: 0;
}
/* 前へ / 次へボタン */
.splide__arrow--prev,
.splide__arrow--next {
	display: grid;
	place-content: center;
	width: 6.4rem;
	height: 6.4rem;
	cursor: pointer;
	transition: var(--transition);
	background-color: var(--color-theme-darken);
	border-radius: 50%;
}
.splide__arrow--prev::after,
.splide__arrow--next::after {
	width: 1.2rem;
	height: 1.2rem;
	content: "";
	border: solid var(--color-gray);
	border-width: 3px 3px 0 0;
}
.splide__arrow--prev::after {
	margin-left: 0.4rem;
	transform: rotate(-135deg);
}
.splide__arrow--next::after {
	margin-right: 0.4rem;
	transform: rotate(45deg);
}
.splide__arrow:disabled {
	pointer-events: none;
	opacity: 0;
}
.splide__arrow:focus-visible {
	outline: 3px solid rgba(180, 233, 0, 0.8);
	outline-offset: 3px;
	z-index: 1;
	transition: none;
}
.splide__pagination {
	font-size: 0;
}
.splide__pagination__page:focus-visible {
	outline: 3px solid rgba(180, 233, 0, 0.8);
	outline-offset: 3px;
	z-index: 1;
	transition: none;
}
.splide__slide:focus-visible {
	outline: 3px solid rgba(180, 233, 0, 0.8);
	outline-offset: 3px;
	z-index: 1;
	transition: none;
}
.splide-wrapper {
	position: relative;
}
.splide__arrow>svg {
	display: none;
}
.mv01 .l-inner {
	padding-bottom: 0;
}
.mv01 .splide-fade .splide__slide {
	pointer-events: none;
}
.mv01 .splide__track--fade .splide__slide.is-active {
	pointer-events: auto;
}
.mv01 .splide__pagination {
	position: absolute;
	z-index: 10;
	top: 0;
	bottom: 0;
	left: 2.0rem;
	height: max-content;
	margin: auto;
	display: flex;
	flex-direction: column;
}
@media only screen and (max-width: 1200px) {
	.mv01 .splide__pagination {
		left: 1.0rem;
	}
}
.mv01 .splide__pagination__page {
	display: block;
	width: 4px;
	height: 2.5rem;
	cursor: pointer;
	transition: 0.8s var(--easing);
	background-color: rgba(255, 255, 255, 0.4);
	border:0;
	padding:0;
}
.mv01 .splide__pagination>li:not(:first-child) {
	margin-top: 0.8rem;
}
.mv01 .splide__pagination__page.is-active {
	background-color: #b4e900;
}
.mv01 .slide-media img {
	transition: 5s 1s ease-out;
}
.mv01 .slide-title {
	font-size: 4rem;
	font-weight: normal;
	line-height: 1.6;
	position: absolute;
	right: 8rem;
	bottom: 15%;
	margin-left: 16rem;
	text-align: right;
	color: #fff;
}
.mv01 .splide__slide[class*=-active] .slide-media img {
	transition-delay: 0s;
	transform: scale(1.05);
}
.mv01 .splide__slide[class*=-active] .slide-title {
	animation: mv01-fadeIn 2s 0.5s var(--easing) both;
}
@keyframes mv01-fadeIn {
	0% {
		transform: scale(0.5);
		opacity: 0;
		filter: blur(300px);
	}
	100% {
		transform: scale(1);
		opacity: 1;
		filter: blur(0);
	}
}

/*メインビジュアル　テキスト*/
.slide{
	position:relative;
}
.mvH2{
	position:absolute;
	top:60px;
	right:100px;
	z-index:1;
	width:216px;
}
.mvH2 h2{
	font-size:40px;
	writing-mode: vertical-rl;
	text-shadow: 3px 3px 4px #333;
	line-height:1.8;
	font-feature-settings: "pkna";
}
@media only screen and (max-width: 1200px) and (min-width: 961px) {
	.mvH2{
		right:50px;
	}
}
@media only screen and (max-width: 960px) and (min-width: 768px) {
	.mvH2{
		width:189px;
		right:50px;
	}
	.mvH2 h2{
		font-size:35px;
	}
}
@media only screen and (max-width: 767px) and (min-width: 481px) {
	.mvH2{
		width:162px;
		right:35px;
	}
	.mvH2 h2{
		font-size:30px;
	}
}
@media only screen and (max-width: 480px){
	.mvH2{
		width:135px;
		right:25px;
	}
	.mvH2 h2{
		font-size:25px;
	}
}

/* ----------------------------------------------------------------------
signage
---------------------------------------------------------------------- */
.signage{
	background:#fff;
	height:300px;
}
img.signageImg{
	display:block;
	object-fit:cover;
	width:calc(100% - 80px);
	height: 300px;
	margin-left:auto;
	border-radius:0 0 0 30px;
}
@media only screen and (max-width: 1200px) {
    .signage {
        height: 250px;
    }
	img.signageImg{
		 height: 250px;
	}
}
.signage-content{
	position:relative;
	animation:none;
}
.signageTxt{
	position:absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-webkit-animation: fadeIn 1s ease 1.0s;
    -moz-animation: fadeIn 1s ease 1.0s;
    -ms-animation: fadeIn 1s ease 1.0s;
    -o-animation: fadeIn 1s ease 1.0s;
    animation: fadeIn 1s ease 1.0s;
    animation-fill-mode: both;
	max-width:1200px;
	width:calc(100% - 40px);
}
.signageTxtInner{
	text-align:right;
}
.signageTxtInner p{
	font-size:50px;
	line-height:1.5em;
}
@media only screen and (max-width: 767px) {
	img.signageImg{
		width:calc(100% - 60px);
	}
	.signageTxtInner p{
		font-size:40px;
	}
}
@media only screen and (max-width: 480px) {
	img.signageImg{
		width:calc(100% - 30px);
	}
	.signageTxtInner p{
		font-size:30px;
	}
}

/* ----------------------------------------------------------------------
パンくずリスト
---------------------------------------------------------------------- */
.breadcrumb-wrapper{
	position:relative;
}


/* ----------------------------------------------------------------------
共通コンテンツ
---------------------------------------------------------------------- */
.contents{
	margin-bottom:80px;
}
@media only screen and (max-width: 767px) {
	.contents{
		margin-bottom:50px;
	}
}

/*共通ボタン*/
.btn01{
	position:relative;
	display:inline-block;
	width:100%;
	max-width:300px;
	padding:20px 5px 22px;
	border:2px #333 solid;
	border-radius:100px;
	background:#fff;
	text-decoration:none;
	transition : all 0.5s ease 0s;
	box-sizing:border-box;
}
.btn01::after{
	position: absolute;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f138";
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transition: all 0.5s ease 0s;
	color:#ff7754;
}
.btn01:hover{
	background:#f2f2f2;
}
.btn01:hover::after{
	right:5px;
}

/* ----------------------------------------------------------------------
共通見出し
---------------------------------------------------------------------- */
.tit{
	position:relative;
	padding-top:40px;
}
.tit h3.titH3{
	position:relative;
	font-size:45px;
	font-feature-settings: "palt";
	z-index:2;
}
p.titP{
	position:absolute;
	top:0;
	font-size:80px;
	line-height:1;
	color:#f2f2f2;
}
.titL p.titP{
	left:0;
}
.titC p.titP{
	left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
	.tit{
		padding-top:30px;
	}
	.tit h3.titH3{
		font-size:30px;
	}
	p.titP{
		font-size:60px;
	}
}

/* ----------------------------------------------------------------------
ページ内容
---------------------------------------------------------------------- */

/*about*/
.about{
	position:relative;
	padding-bottom:50px;
}
.about .flexOrigin{
	position:relative;
	align-items:center;
	z-index:2;
}
img.bgAbout{
	position:absolute;
	display:block;
	width:100%;
	left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	bottom:50px;
}
.aboutTxt,.aboutImg{
	width:50%;
}
.aboutImg img{
	object-fit:cover;
	width:100%;
	height:850px;
}
@media only screen and (min-width: 961px) {
	.aboutTxtInner{
		max-width: 600px;
        width: calc(100% - 20px);
        margin-right: auto;
        padding: 0 0 0 40px;
        box-sizing: border-box;
	}
}
@media only screen and (max-width: 960px) {
	.about .flexOrigin{
		display:block;
	}
	.aboutTxt{
		width:calc(100% - 30px);
		margin:0 auto 0;
	}
	.aboutImg{
		width:100%;
		margin-bottom:40px;
	}
	.aboutImg img{
		height:400px;
	}
}

/*menu*/
.treat{
	position:relative;
	background:#cf930f;
	padding-bottom:80px;
	overflow:hidden;
}
.treat .innerOrigin{
	position:relative;
	z-index:2;
}
.triangleBottom{
	position:relative;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 100px 50vw 0 50vw;
	border-color: #fff transparent transparent transparent;
	z-index:2;
}
@media only screen and (max-width: 767px) {
	.triangleBottom{
		border-width: 50px 50vw 0 50vw;
	}
}
img.bgMenu{
	position:absolute;
	display:block;
	width:1920px;
	left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	top:0;
}
.menuTit h3{
	font-size:45px;
}
@media only screen and (max-width: 767px) {
	.menuTit h3{
		font-size:30px;
	}
}
.menuWrap{
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
}
.menuBox{
	background:#fff;
	width:calc((100% - 30px) / 2);
	padding:25px 25px 35px;
	box-sizing:border-box;
	margin-right:30px;
	margin-bottom:40px;
}
.menuBox:last-child{
	margin-bottom:0;
}
@media only screen and (min-width: 768px) {
	.menuBox:nth-child(even),
	.menuBox:last-child{
		margin-right:0;
	}
}
.menuName{
	position:relative;
	padding-top:40px;
}
.menuName h4,
.menuName p{
	position:relative;
	z-index:2;
	left:15px;
}
.menuName span{
	position:absolute;
	display:inline-block;
	font-size:80px;
	color:#f2f2f2;
	top:0;
	left:0;
	transform   : skewX(-20deg);  
}
@media only screen and (max-width: 767px) {
	.menuWrap{
		display:block;
	}
	.menuBox{
		width:100%;
	}
}

/*スタッフ紹介*/
.staff{
	position:relative;
	padding-bottom:80px;
}
@media only screen and (max-width: 767px) {
	.staff{
		position:relative;
		padding-bottom:50px;
	}
}
.staff::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    border-bottom: 15vw solid #f2f2f2;
    border-left: 100vw solid transparent;
    z-index: -1;
}
.staffBox{
	width:calc((100% - 100px) / 3);
	max-width:280px;
}
.staffName{
	padding:10px 0 15px 10px;
	border-left:5px #cf930f solid;
}
.staffLicense span{
	display:inline-block;
	background:#cf930f;
	border:2px #cf930f solid; 
	box-sizing:border-box;
	border-radius:5px 5px 0 0;
	padding:3px 10px;
}
.staffLicenseBox{
	border:2px #cf930f solid; 
	background:#f2f2f2;
	border-radius:0 5px 5px 5px;
	padding:10px 10px 15px;
}
.staffLicenseBox li:before{
	content:"・";
}
.staffLicenseBox li{
	padding-left:1em;
	text-indent:-1em;
	border-bottom:1px #ccc solid;
}
@media only screen and (max-width: 767px) {
	.staff .flexOrigin{
		display:block;
	}
	.staffBox{
		width:100%;
		max-width:400px;
		margin:0 auto 50px;
	}
}

/*施設案内*/
.facility{
	padding:30px 80px;
	background:#f2f2f2;
}
@media only screen and (max-width: 767px) {
	.facility{
		padding:15px 60px;
	}
}
.facility p.titP{
	color:#fff;
}
/*slick*/
.slick-img{
	position:relative;
}
.slickName{
	position:absolute;
	left:30px;
	bottom:15px;
}
.thumbnail-img{
	padding:0 5px;
	box-sizing:border-box;
}

/*アクセス*/
img.accessLogo{
	display:block;
	width:85%;
	max-width:460px;
	margin-left:auto;
	margin-right:auto;
	margin-bottom:15px;
}
.accessTel{
	display:flex;
	align-items:center;
	justify-content:center;
}
.accessTel p{
	display:inline-block;
	font-size:45px;
	line-height:1;
}
.accessTel img{
	display:inline-block;
	width:35px;
}
.accessBox h4{
	background:#f2f2f2;
	line-height:1;
	padding:15px 10px 17px 10px;
	box-sizing:border-box;
}
.accessBox h4 span{
	display:inline-block;
	padding-left:10px;
	border-left:5px #cf930f solid;
}
table.timeTable{
	border-top:2px #333 solid;
	border-bottom:2px #333 solid;
}
table.timeTable tbody tr:nth-child(1){
	background:#f2f2f2;
}
table.timeTable tbody tr:nth-child(1) th,
table.timeTable tbody tr:nth-child(1) td,{
	border-bottom:1px #999 dashed;
}
table.timeTable tbody tr:last-child th,
table.timeTable tbody tr:last-child td{
	border-top:1px #999 dashed;
}
table.timeTable tbody tr:nth-child(2) td,
table.timeTable tbody tr:nth-child(3) td{
	color:#cf930f;
}
table.timeTable th{
	width:15em;
}
table.timeTable td{
	text-align:center;
}
table.timeTable th,
table.timeTable td{
	padding:15px 10px;
	vertical-align:middle;
	line-height:1.8em;
}
@media only screen and (max-width: 620px) {
	table.timeTable th,
	table.timeTable td{
		font-size:14px !important;
	}
}

/*Payment*/
.payment{
	background:#f2f2f2;
	padding:80px 0 50px;
}
.paymentBox{
	width:48%;
}
@media only screen and (max-width: 767px) {
	.payment{
		padding:60px 0 40px;
	}
	.payment .flexOrigin{
		display:block;
	}
	.paymentBox{
		width:100%;
		max-width:580px;
		margin-left:auto;
		margin-right:auto;
	}
}
.paymentBox h3{
	position:relative;
	padding-top:25px;
}
.paymentBox h3 span{
	position:relative;
	display:inline-block;
	text-indent:0.5em;
	z-index:2;
}
.paymentBox h3::after{
	position:absolute;
	content:"Payment";
	font-size:50px;
	color:#fff;
	top:0;
	left:0;
}
.paymentBox h4{
	background:#cf930f;
	line-height:45px;
	height:45px;
	padding:0 15px;
}


/*お知らせ*/
.newsTit{
	width:250px;
}
.newsContent{
	width:calc(100% - 250px);
}
@media only screen and (max-width: 767px) {
	.news .flexOrigin{
		display:block;
	}
	.newsTit,.newsContent{
		width:100%;
	}
}
.newsContent ul {
	border-top:1px #ccc solid;
}
.newsContent ul li{
	padding:15px 0;
	border-bottom:1px #ccc solid;
}
.newsTime,.newsTitle{
	display:inline-block;
}
.newsTime{
	margin-right:1.5em;
}

/* ----------------------------------------------------------------------
フッター
---------------------------------------------------------------------- */
.footer{
	margin-top:0;
}

/*フッターバナーエリア*/
.footerBnrFlex{
	flex-wrap:wrap;
}
.footerBnrBox{
	display:flex;
	align-items:bottom;
	width:calc((100% / 2) - 15px);
	margin-bottom:20px;
}
.footerBnrBox a img{
	transition : all 0.5s ease 0s;
}
.footerBnrBox a:hover img{
	opacity:0.7;
}
.footerBnrHokensho{
	background:#ffff00;
	border-radius:20px;
}
@media only screen and (min-width: 768px) {
	.footerBnrHokensho{
		padding:15px 10px;
	}
	img.footerBnrHokenshoSp{
		display:none;
	}
}
@media only screen and (max-width: 767px) {
	.footerBnrFlex {
		display:block;
	}
	.footerBnrBox{
		max-width:460px;
		width:100%;
		margin-left:auto;
		margin-right:auto;
	}
	.footerBnrHokensho{
		padding:10px;
		border-radius:15px;
	}
	img.footerBnrHokenshoPc{
		display:none;
	}
}

/*サイトマップ*/
.footerContent{
	padding:0 0 60px;
}
@media only screen and (max-width: 1200px) {
	.footerContent{
	padding:0 0 150px;
}
}
.footerContent img{
	max-width:400px;
}
ul.footSitemapUl{
	list-style:none;
	text-align:center;
}
ul.footSitemapUl li{
	display:inline-block;
	padding:5px 15px;
}
@media only screen and (max-width: 767px) {
	.footerContent img{
		max-width:280px;
	}
}

/*コピーライト*/
.footer-bar01{
	background: #cf930f;
}
.pagetop a{
	background: #cf930f;
}
.copyright{
	background:none;
}
.copyright small a {
	color:#fff;
}
@media only screen and (max-width: 767px) {
	.copyright{
		background: #cf930f;
	}
}

/* ----------------------------------------------------------------------
 フッター追従バナー
---------------------------------------------------------------------- */
@media screen and (min-width: 1201px) ,print{
	.footer_bnr{
		display:none !important;
	}
}
.footerContentBox{
	position:relative;
}
.footer_bnr{
	z-index:100;
	width:100%;
	padding-top:20px;
	padding-bottom:20px;
	background:#f2f2f2;
	position: fixed;
	bottom: 0;
}
.footer_bnrBox{
	width:calc(100% / 2);
	padding:15px;
	box-sizing:border-box;
	display: flex;
	align-items: center;
	justify-content:center;
	height:50px;
	border-right:2px #fff solid;
}
.footer_bnrBox:last-child{
	border-right:none;
}
.foot_infoIco{
	display:block;
}
.foot_infoTxt{
	margin-left:8px;
	font-weight:bold;
}
@media screen and (min-width: 744px),print{
	.footTelSp{
		display:none;
	}
}
@media screen and (min-width: 744px) and (max-width: 1200px){
	img.foot_infoIco{
		width:40px;
	}
}
@media screen and (min-width: 744px) and (max-width: 850px){
	p.footTelPc{
		font-size:20px !important;
	}
}
@media screen and (max-width: 743px) {
	.footer_bnr{
		padding-top:10px;
		padding-bottom:10px;
	}
	.footer_bnrBox{
		display:block;
		height:auto;
	}
	img.foot_infoIco{
		margin:0 auto 10px;
		width:30px;
	}
	.foot_infoTxt{
		margin-left:0;
	}
	.foot_infoTxt p{
		text-align:center;
	}
	.footTelPc{
		display:none;
	}
}
@media screen and (max-width: 480px){
	.footer_bnrBox{
		padding:0 10px;
	}
	.foot_infoTxt p{
		font-size:12px !important;
		letter-spacing:0;
	}
}

/* ----------------------------------------------------------------------
お知らせ
---------------------------------------------------------------------- */
.article04{
	background:#fff;
}

/* ----------------------------------------------------------------------
reCAPTCHA
---------------------------------------------------------------------- */
.grecaptcha-badge { visibility: hidden; }