@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%;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, main {
	display: block;
}

body{ margin:0px; padding:0px;color:#4d4d4d;overflow:hidden;}
p{ margin:0px; padding:0px}
a{color:#4d4d4d;}

img{
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	image-rendering: -webkit-optimize-contrast;
}
*a:hover{
	text-decoration: none;
}
a img{
	transition : all 0.5s ease 0s;
}
a img:hover{
	opacity: 0.6;
}

/* ----------------------------------------------------------------------
 電話番号リンク禁止
---------------------------------------------------------------------- */
@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;
		color: inherit;
	}
}

/* ----------------------------------------------------------------------
inner
---------------------------------------------------------------------- */
@media only screen and (min-width: 1200px) {
	.inner{
		width: 1200px;
	}
}
.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;
}

/* ----------------------------------------------------------------------
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 ;
	}
	.font18-22px{
		font-size: 22px ;
	}
	.font20-22px{
		font-size: 22px ;
	}
	.font20-25px{
		font-size: 25px ;
	}
	.font20-30px{
		font-size: 30px ;
	}
	.font22-25px{
		font-size: 25px ;
	}
	.font22-30px{
		font-size: 30px ;
	}
	.font25-30px{
		font-size: 30px ;
	}
	.font28-32px{
		font-size: 32px ;
	}
	.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 ;
	}
	.font18-22px{
		font-size: 18px ;
	}
	.font20-22px{
		font-size: 20px ;
	}
	.font20-25px{
		font-size: 20px ;
	}
	.font22-25px{
		font-size: 22px ;
	}
	.font20-30px{
		font-size: 20px ;
	}
	.font22-30px{
		font-size: 22px ;
	}
	.font25-30px{
		font-size: 25px ;
	}
	.font28-32px{
		font-size: 28px ;
	}
	.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;
}

/* ----------------------------------------------------------------------
文字詰め
---------------------------------------------------------------------- */
.palt {
	font-feature-settings: "palt";
}

/* ----------------------------------------------------------------------
Adobe Font
---------------------------------------------------------------------- */
.zenR_font{
	font-family: "zen-maru-gothic", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.zenR_font{
	font-family: "zen-maru-gothic", sans-serif;
	font-weight: 500;
	font-style: normal;
}
.zenM_font{
	font-family: "zen-maru-gothic", sans-serif;
	font-weight: 700;
	font-style: normal;
}
.zenB_font{
	font-family: "zen-maru-gothic", sans-serif;
	font-weight: 900;
	font-style: normal;
}
.kopicR_font{
	font-family: "kopik", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.kopicB_font{
	font-family: "kopik", 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;
}
.pink{
	color:#f88379;
}

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

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

/* ----------------------------------------------------------------------
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;
	}
	.kaigyouSp {
		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;
}
.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;
}

/* ----------------------------------------------------------------------
 ページ内リンク
---------------------------------------------------------------------- */
@media screen and (min-width: 1201px){
	.scroll_point {
	 scroll-margin-top: 0;
	}
}
@media screen and (max-width: 1200px){
	 .scroll_point {
	 scroll-margin-top: 0;
	}
}

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



/* ----------------------------------------------------------------------
 ヘッダー
---------------------------------------------------------------------- */
/*ヘッダー全体*/
.header-bar-fixed{
	box-shadow:none;
}
.header-bar-inner{
	max-width:1920px;
	width:100%;
	margin-left:auto;
	margin-right:auto;
}
/*ロゴ（h1）*/
.logo-image{
	position:absolute;
	top: 0;
    left: 0;
	z-index:100;
	justify-content:center;
}
.logo{
	width:150px;
	height:195px;
	max-width: 150px;
    max-height: 195px;
	background:#fff;
	border-radius:0 0 30px 0;
}
.logo-image a{
	display:block;
	width:100px;
}
.logo a img{
	display:block;
	width:100%;
}
@media screen and (max-width: 1200px){
	.logo-image{
		align-items:center;
	}
	.logo{
		width:85px;
		height:110px;
		max-width: 85px;
		max-height: 110px;
		margin-left:0;
		border-radius: 0 0 20px 0;
	}
	.logo-image a{
		width:56px;
		height:76px;
	}
	.logo a img{
		min-height:76px;
	}
}
@media screen and (max-width: 768px){
	.logo {
		border-radius: 0 0 15px 0;
	}
}

/* ----------------------------------------------------------------------
 グローバルメニュー
---------------------------------------------------------------------- */
@media screen and (min-width: 1201px),print{
	.global-nav{
		margin-right: 140px;
	}
	.global-nav > ul > li > a{
		padding: 0 15px;
	}
}
.global-nav  ul  li  a{
	font-family: "zen-maru-gothic", sans-serif;
	font-weight: 700;
	font-style: normal;
}
.global-nav{
	font-size:13px;
}
@media screen and (max-width: 1200px){
	.header-bar,.global-nav-button{
		border:none;
	}
	.header-bar-fixed .global-nav{
		z-index:100;
	}
	.global-nav a, .global-nav a:hover{
		background:#fff;
		color:#4d4d4d !important;
	}
}

/*ぶら下がり*/
@media screen and (min-width: 1201px),print{
	.global-nav .sub-menu a{
		background:#fff;
		color:#4d4d4d;
		border:2px solid #fff;
		box-sizing:border-box;
	}
	.global-nav .sub-menu a::before{
		font-family: "Font Awesome 5 Free";
		font-weight: 900;
		content: "\f0da";
		margin-right:0.2em;
		color:#f88379;
	}
	.global-nav .sub-menu a:hover{
		background:#f88379;
	}
	.global-nav .sub-menu a:hover::before{
		color:#fff;
	}
	.global-nav .sub-menu li{
		border-bottom:1px #ccc dashed;
	}
	.global-nav .sub-menu li:last-child{
		border-bottom:none;
	}
	.global-nav .sub-menu li:first-child a{
		border-radius:10px 10px 0 0;
	}
	.global-nav .sub-menu li:last-child a{
		border-radius:0 0 10px 10px;
	}
}
@media screen and (max-width: 1200px){
	.global-nav .sub-menu a{
		background:#fafafa;
	}
	.global-nav .sub-menu a:hover{
		background:#f2f2f2;
	}
	.global-nav .menu-item-has-children > a span::before{
		color: #4d4d4d;
	}
}

/*お問い合わせボタン*/
a.headMail{
	position:absolute;
	display:flex;
	align-items:center;
	justify-content:center;
	width:120px;
	height:100px;
	background:#f88379;
	top:0;
	right:0;
	z-index:100;
	border-radius:0 0 0 30px;
	transition : all 0.5s ease 0s;
}
a.headMail:hover{
	background:#ccc;
}
a.headMail img{
	display:block;
	width:35px;
	margin:0 auto 5px;
}
a.headMail p{
	font-size:12px;
	line-height:1.5em;
}
@media screen and (max-width: 1200px){
	.headMailBox{
		display:flex;
		align-items:center;
		justify-content:center;
	}
	a.headMail{
		top:8px;
		right:65px;
		width:150px;
		height:40px;
		border-radius:20px;
	}
	a.headMail img{
		width:20px;
		margin-right:5px;
		margin-bottom:0;
	}
}

/* ----------------------------------------------------------------------
 メインビジュアル
---------------------------------------------------------------------- */
.mv{
	position:relative;
	width:calc(100% - 100px);
	max-width:1920px;
	margin:30px auto 0;
	border-radius:30px;
	overflow:hidden;
}
.mv img.bg_mv{
	display:block;
	width:100%;
	height:calc(100svh - 160px);
	object-fit:cover;
}
@media screen and (max-width: 1200px){
	.mv{
		width:93%;
		border-radius:20px;
	}
	.mv img.bg_mv{
		object-position:33% center;
		height:calc(100svh - 125px);
	}
}
@media screen and (max-width: 767px){
	.mv{
		margin:20px auto 0;
		border-radius:15px;
	}
	.mv img.bg_mv{
		height:calc(100svh - 85px);
	}
}
.mvTxt{
	position:absolute;
	width:600px;
	padding:50px 60px;
	background:#fff;
	bottom:0;
	right:0;
	border-radius:30px 0 0 0;
	box-sizing:border-box;
}
.mvTxt p.kopicR_font{
	font-size:65px;
	line-height:1.1em;
	margin-bottom:0.4em;
}
.mvTxt h2{
	font-size:35px;
	line-height:1.2em;
}
@media screen and (max-width: 960px){
	.mvTxt{
		width:450px;
		padding:40px;
	}
	.mvTxt p.kopicR_font{
		font-size:50px;
	}
	.mvTxt h2{
		font-size:28px;
	}
}
@media screen and (max-width: 767px){
	.mvTxt{
		width:315px;
		padding:35px 25px;
	}
	.mvTxt p.kopicR_font{
		font-size:35px;
	}
	.mvTxt h2{
		font-size:22px;
	}
}
@media screen and (max-width: 480px){
	.mvTxt{
		width:300px;
		padding:25px 20px;
	}
	.mvTxt p.kopicR_font{
		font-size:30px;
	}
	.mvTxt h2{
		font-size:22px;
	}
}

/* ----------------------------------------------------------------------
 signage
---------------------------------------------------------------------- */
.signage{
	background:#fff;
	height:300px;
}
.signage-content{
	height:300px;
	-webkit-animation:none;
    -moz-animation: none;
    -ms-animation: none;
    -o-animation: none;
	animation: none;
    animation-fill-mode: none;
}
.signage-content-inner{
	position:relative;
	width:calc(100% - 100px);
	max-width:1920px;
	height:300px;
	margin:30px auto 0;
	border-radius:30px;
	overflow:hidden;
}
.signage-content-inner img.bg_signage{
	display:block;
	width:100%;
	height:100%;
	object-fit:cover;
}
.signageTxt{
	position:absolute;
	background:#fff;
	bottom:0;
	right:0;
	text-align:right;
	justify-content:end;
	display:flex;
	align-items:center;
	width:330px;
	height:150px;
	border-radius:30px 0 0 0;
}
.signageTit{
	width:calc(100% - 35px);
	border-right:5px #f88379 solid;
	padding-right:15px;
}
.signageTit h1,.signageTit p{
	color:#4d4d4d;
	line-height:1em;
}
.signageTit h1{
	font-size:14px;
}
.signageTit p{
	font-size:45px;
	margin-bottom:10px;
}
.signageTit p:first-letter{
	color:#f88379;
}
@media screen and (max-width: 1200px){
	.signage-content-inner{
		width: 93%;
		border-radius: 20px;
	}
	.signageTxt{
		width:280px;
		height:130px;
		border-radius:20px 0 0 0;
	}
	.signageTit p{
		font-size:38px;
		margin-bottom:5px;
	}
}
@media screen and (max-width: 767px){
	.signage,
	.signage-content,
	.signage-content-inner{
		height:250px;
	}
	.signage-content-inner{
		border-radius: 15px;
	}
	.signageTxt{
		width:200px;
		height:100px;
		border-radius:15px 0 0 0;
	}
	.signageTit h1{
		font-size:12px;
	}
	.signageTit p{
		font-size:30px;
		margin-bottom:5px;
	}
}

/* ----------------------------------------------------------------------
 パンくずリスト
---------------------------------------------------------------------- */
.breadcrumb-wrapper{
	position:relative;
}
.breadcrumb li span{
	font-family: "zen-maru-gothic", sans-serif;
	font-weight: 700;
	font-style: normal;
	letter-spacing:0.02em;
}

/* ----------------------------------------------------------------------
 共通
---------------------------------------------------------------------- */
/*タイトル*/
.tit {
	position:relative;
	padding-bottom:35px;
	margin-bottom:60px;
}
.tit p{
	font-size:45px;
	line-height:1em;
	margin-bottom:0.4em;
}
.tit p:first-letter{
	color:#f88379;
}
.tit::after{
	position:absolute;
	content:url(images/ico_tit.png);
	bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.titLeft::after{
	left: 0;
	transform: translateX(0);
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
}
@media screen and (max-width: 767px){
	.tit {
		margin-bottom:45px;
	}
	.tit p{
		font-size:30px;
	}
}

/*デフォルトレイアウト*/
body.page-template-default .flex_layout{
	display:block;
}

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


/* ----------------------------------------------------------------------
 トップページ
---------------------------------------------------------------------- */
/*ごあいさつ*/
.greeting{
	padding:80px 0;
}
@media screen and (max-width: 767px){
	.greeting{
		padding:60px 0;
	}
}
.greetingWrap{
	display:flex;
	justify-content:space-between;
	align-items:center;
}
.greetingTxt,
.greetingImg{
	width:50%;
}
.greetingImg{
	height:800px;
	overflow:hidden;
}
.greetingImg img{
	display:block;
	width:100%;
	object-fit:cover;
	height:100%;
}
.greetingTxtInner{
	max-width: 600px;
    width: calc(100% - 20px);
    padding: 0;
    box-sizing: border-box;
}
.greetingTxtInner h3{
	margin-bottom:1em;
}
.greetingWrap:first-child{
	margin-bottom:60px;
}
@media screen and (min-width: 1001px),print{
	.greetingWrap:first-child .greetingTxtInner{
		margin-left: auto;
		padding-right:40px;
	}
	.greetingWrap:last-child .greetingTxtInner{
		margin-right: auto;
		padding-left:40px;
	}
	.greetingWrap:first-child .greetingImg{
		border-radius:30px 0 0 30px;
	}
	.greetingWrap:last-child .greetingImg{
		border-radius:0 30px 30px 0;
	}
}
@media screen and (max-width: 1000px){
	.greetingWrap{
		display:block;
	}
	.greetingTxt{
		width:100%;
		margin-bottom:40px;
	}
	.greetingTxtInner{
		max-width: 100%;
		width: calc(100% - 30px);
		margin:0 auto;
	}
	.greetingImg{
		width:calc(100% - 30px);
		height:400px;
	}
	.greetingWrap:first-child .greetingImg{
		border-radius:30px 0 0 0;
		margin-left:auto;
	}
	.greetingWrap:last-child .greetingImg{
		border-radius:0 30px 0 0;
		margin-right:auto;
	}
}

/*お知らせ*/
.topNews{
	padding:80px 0; 
	background:url(images/bg_cloth.jpg);
}
@media screen and (max-width: 767px){
	.topNews{
		padding:60px 0; 
	}
}
.topNewsInner{
	display:flex;
	justify-content:space-between;
	align-items:start;
}
.topNewsTit{
	width:250px;
}
a.newsLink{
	display:inline-block;
	border-bottom:1px #998675 dashed;
	padding-bottom:0.3em;
	transition : all 0.5s ease 0s;
}
a.newsLink:hover{
	color:#ccc;
}
.topNewsList{
	width:calc(100% - 250px);
}
.topNewsList ul{
	border-top:1px #998675 solid;
}
.topNewsList ul li{
	padding:20px 15px;
	border-bottom:1px #998675 solid;
}
.topNewsList ul li a{
	position:relative;
	display:flex;
	justify-content:space-between;
	align-items:stretch;
}
.topNewsList ul li a::after{
	position:absolute;
	font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
	color:#f88379;
	right:10px;
	top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	transition : all 0.5s ease 0s;
}
.topNewsList ul li a:hover::after{
	right:5px;
}
.topNewsList ul li span{
	display:block;
}
.topNewsList ul li span.newsTime{
	width:130px;
}
.topNewsList ul li span.newsTitle{
	width:calc(100% - 130px);
	padding-right:2em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	box-sizing:border-box;
}
@media screen and (max-width: 767px){
	.topNewsInner{
		display:block;
	}
	.topNewsTit{
		margin-bottom:20px;
	}
	.topNewsTit,.topNewsList{
		width:100%;
	}
}

/*ブログ*/
.thumbnailInner{
	position:relative;
}
.topBlogTxt{
	position:relative;
	padding:15px;
	background:#fff;
	box-sizing:border-box;
}
.topBlogTxt::after{
	content:"";
	width:100%;
	height:5px;
	background:#f88379;
	border-radius:5px;
	position:absolute;
	bottom:0;
	left:0;
}
.article03 {
	background:#fff;
}
.article03-thumbnail img{
	border-radius:15px 15px 0 0 ;
}
@media only screen and (max-width: 991px){
	.top-blog{
		max-width:768px;
		margin-left:auto;
		margin-right:auto;
	}
	.article03 {
		width: calc((100% - 15px) / 2);
	}
	.article03:nth-of-type(2n){
		margin-right: 0;
	}
	.article03:nth-of-type(3n){
		margin-right: 10px;
	}
}
.article03 a{
	position:relative;
	padding-top:20px;
}
.topCategoryName{
	color:#e8546b;
	background:#fff;
	line-height:1;
	position:absolute;
	display:inline-block;
	bottom:0;
	left:0;
	padding:2px 15px;
	box-sizing:border-box;
	z-index:2;
	border-radius:0 10px 0 0;
}
p.topBlogTit {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-height:1.8em;
	height:4em;
}
.topBlog .article03-meta{
	text-align:right;
}

/* ----------------------------------------------------------------------
 フォルテについて
---------------------------------------------------------------------- */
.aboutContent img.imgCenter{
	width:100%;
	object-fit:cover;
	height:400px;
	border-radius:30px;
}
.aboutTxt{
	position:relative;
	top:-80px;
	width:calc(100% - 100px);
	margin:0 auto;
	background:#fff;
	border:3px #4d4d4d solid;
	padding:30px 25px;
	box-sizing:border-box;
	border-radius:30px;
	z-index:2;
}
.aboutTxt h3{
	margin-bottom:1em;
}
@media screen and (max-width: 767px){
	.aboutContent img.imgCenter{
		height:250px;
		border-radius:20px;
	}
	.aboutTxt{
		top:-50px;
		width:calc(100% - 20px);
		padding:25px 15px;
		border-radius:20px;
	}
}

/*フォルテ天満橋が選ばれる8つの理由*/
.reasonBox{
	margin-bottom:60px;
}
.reasonTit{
	display:flex;
	justify-content:space-between;
	align-items:center;
	border-bottom:1px #4d4d4d solid;
	padding-bottom:15px;
	margin-bottom:40px;
}
.reasonNo{
	width:100px;
	text-align:center;
	border-right:1px #4d4d4d solid;
}
.reasonNo small{
	display:block;
	font-size:13px;
}
.reasonNo small:first-letter{
	color:#f88379;
}
.reasonNo strong{
	display:block;
	font-size:50px;
	font-weight:500;
	margin-top: -5px;
}
.reasonTit h3{
	width:calc(100% - 100px);
	padding-left:0.5em;
	box-sizing:border-box;
}
@media screen and (max-width: 767px){
	.reasonNo{
		width:70px;
	}
	.reasonNo strong{
		font-size:40px;
	}
	.reasonTit h3{
		width:calc(100% - 70px);
		padding-left:0.7em;
	}
}
.reasonImg{
	width:150px;
}
.reasonTxt{
	width:calc(100% - 190px);
}
@media screen and (max-width: 767px){
	.reasonDetail{
		display:block;
	}
	.reasonImg{
		width:200px;
		margin:0 auto 30px;
	}
	.reasonTxt{
		width:100%;
	}
}

/*施設内案内*/
.facilityBox{
	width:calc((100% - 40px) / 2);
	margin-bottom:50px;
}
@media screen and (max-width: 767px){
	.facilityBox{
		width:100%;
		max-width:580px;
		margin-left:auto;
		margin-right:auto;
	}
}
.facilityImg{
	position:relative;
}
.facilityImg h4{
	position:absolute;
	left:0;
	bottom:20%;
	color:#fff;
	background:rgba(0,0,0,0.7);
	width:230px;
	padding:12px 10px 10px 10px;
	box-sizing:border-box;
	border-radius:0 10px 10px 0;
}
/*施設スライダー*/
.facility .swiper-wrapper{
	justify-content:space-between;
}
.facility .slider-thumbnail .swiper-slide {
  opacity: .5;
  transition: opacity .5s;
  width: calc((100% - 12px) / 4);
}
.facility .slider-thumbnail .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.facility .slider-thum {
  max-width: 768px;
  width: 100%;
}
.facility .swiper-slide img {
  height: auto;
  width: 100%;
}
.facility .slider-thum .swiper-slide{
	overflow:hidden;
	border-radius:0;
}
.facility .slider-thumbnail .swiper-slide{
	overflow:hidden;
	border-radius:0;
}
.facilityImg img{
	border-radius:15px;
}
.swiper-thum img{
	border-radius:10px;
}
.facility .swiper-slide p{
	display:none;
}
.facility .swiper-slide-active p{
	display:block;
}
.facility .swiper-button-next,.facility  .swiper-button-prev{
	color:#fff;
	width:15px;
}

/* ----------------------------------------------------------------------
 パートナー企業紹介
---------------------------------------------------------------------- */
.partnerBox{
	padding:80px 0;
}
.partnerBox:nth-child(odd){
	background:#fafafa;
}
.partnerBoxInner{
	display:flex;
	justify-content:space-between;
	align-items:stretch;
	margin-bottom:20px;
}
.partnerImg{
	width:300px;
}
.partnerTxt{
	width:calc(100% - 340px);
}
.partnerTxtBox{
	margin-bottom:15px;
}
.partnerTxtBox h4{
	border-bottom:1px #f88379 solid;
	margin-bottom:5px;
}
.partnerTxtBox h4 span{
	display:inline-block;
	background:#f88379;
	border-radius:0 10px 0 0;
	padding:5px 10px 7px;
	box-sizing:border-box;
	width:150px;
	text-align:center;
}
@media screen and (max-width: 767px){
	.partnerBoxInner{
		display:block;
	}
	.partnerImg{
		width:100%;
		max-width:400px;
		margin:0 auto 30px;
	}
	.partnerTxt{
		width:100%;
	}
}

/* ----------------------------------------------------------------------
 就労継続支援A型・就労継続支援B型
---------------------------------------------------------------------- */
.desc{
	position:relative;
	padding-bottom:80px;
	z-index:3;
}
@media screen and (max-width: 767px){
	.desc{
		padding:60px 0;
	}
}
.desc .inner960{
	position:relative;
	z-index:3;
}
.desc::before{
	content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    border-top: 20vw solid #fff;
    border-left: 100vw solid transparent;
    z-index: 2;
}
.desc::after{
	content: '';
    position: absolute;
	width:100%;
	height:20vw;
	background:url(images/bg_cloth.jpg);
    bottom: 0;
    left: 0;
    z-index: 1;
}

/*募集概要*/
table.descTb{
	width:100%;
	border-top:1px #4d4d4d solid;
}
table.descTb th,
table.descTb td{
	padding:20px 15px;
	box-sizing:border-box;
	border-bottom:1px #4d4d4d solid;
}
table.descTb th{
	width:220px;
	text-align:left;
}
table.descTb th::before{
	font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0da";
    margin-right: 0.2em;
    color: #f88379;
}
table.descTb td ul li{
	list-style:disc;
	list-style-position:inside;
	padding-left:1.3em;
	text-indent:-1.3em;
}
@media screen and (max-width: 767px){
	table.descTb,table.descTb tbody,table.descTb tr,
	table.descTb th,table.descTb td{
		display:block;
		width:100%;
	}
	table.descTb th{
		background:#fafafa;
	}
}


/* ----------------------------------------------------------------------
 在宅ワーク
---------------------------------------------------------------------- */
/*イントロダクション*/
.workIntro img{
	object-fit:cover;
	height:400px;
}
@media screen and (max-width: 840px){
	.workIntro img{
		height:250px;
	}
}

/*ワーク*/
.workWork{
	background:#f2f2f2;
	padding:80px 0;
}
@media screen and (max-width: 767px){
	.workWork{
		padding:60px 0;
	}
}
.workWrap{
	display:flex;
	justify-content:space-between;
	align-items:stretch;
	flex-wrap:wrap;
}
.workBox{
	width:calc((100% - 45px) / 4);
}
.workBox img.imgCenter{
	max-width:120px;
}
@media screen and (max-width: 840px){
	.workBox{
		width:calc((100% - 20px) / 2);
	}
}
@media screen and (max-width: 480px){
	.workBox img.imgCenter{
		max-width:80px;
	}
}

/*ステップ*/
.teleworkStep{
	position:relative;
	padding-bottom:80px;
}
@media screen and (max-width: 767px){
	.teleworkStep{
		padding-bottom:60px;
	}
}
.teleworkStep .innerOrigin{
	position:relative;
	z-index:3;
}
.teleworkStep::before{
	content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    border-top: 20vw solid #fff;
    border-left: 100vw solid transparent;
    z-index: 2;
}
.teleworkStep::after{
	content: '';
    position: absolute;
	width:100%;
	height:20vw;
	background:url(images/bg_cloth.jpg);
    bottom: 0;
    left: 0;
    z-index: 1;
}
.teleworkStepTit{
	display:flex;
	justify-content:space-between;
	align-items:stretch;
	margin-bottom:50px;
}
.teleworkStepTitTit{
	width:400px;
}
.teleworkStepTitTxt{
	width:calc(100% - 400px);
}
@media screen and (max-width: 840px){
	.teleworkStepTit{
		display:block;
		margin-bottom:40px;
	}
	.teleworkStepTitTit{
		margin-bottom:15px;
	}
	.teleworkStepTitTxt{
		width:100%;
	}
}
.teleworkStepBox{
	background:#fff;
	border:2px #4d4d4d solid;
	border-radius:20px;
	box-sizing:border-box;
	padding:30px 25px;
	width:calc((100% - 40px) / 3);
}
.teleworkStepBox img.imgCenter{
	max-width:200px;
}
@media screen and (max-width: 1080px){
	.teleworkStepBox{
		width:100%;
		max-width:600px;
		margin:0 auto 30px;
	}
}

/*スケジュール（ワーク共通）*/
.schedule{
	background:url(images/bg_cloth.jpg);
	padding-bottom:80px;
}
@media screen and (max-width: 767px){
	.schedule{
		padding-bottom:60px;
	}
}
/*swiper*/
.scheList{
	padding-bottom: 35px !important;
	padding-left:30px;
	padding-right:30px;
}
.scheList .swiper-wrapper{
    align-items: stretch;
}
.scheList,.scheList .scheList__item{
    position:relative;
	overflow-x:hidden;
	overflow-y:visible;
}
.scheList .scheList__item{
    background:#fff;
	border:2px #4d4d4d solid;
	border-radius:15px;
	overflow:hidden;
	box-sizing:border-box;
}
.scheList .scheList__item img.img100{
	object-fit:cover;
	height:180px;
}
.scheList .swiper-slide{
    height: auto !important;
}
.scheListtxt{
	padding:20px 15px 30px;
	box-sizing:border-box;
}
.scheHour{
	background:#f88379;
	padding:3px 10px 5px;
	box-sizing:border-box;
	border-radius:100px;
}
@media screen and (max-width: 540px){
	.scheList .scheList__item img.img100{
		height:130px;
	}
}
.scheList .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 0;
}
.scheList .swiper-pagination-bullet{
	width:10px;
	height:10px;
	background:#f88379;
}
.scheList .swiper-button-next,.scheList .swiper-button-prev{
	color:#a67c52 !important;
	width:15px;
}
.scheList .swiper-button-next{
	right:12px;
}
.scheList .swiper-button-prev{
	left:12px;
}

/* -------------------
 * ---------------------------------------------------
 ご利用までの流れ
---------------------------------------------------------------------- */
.tou{
	position:relative;
	padding-bottom:80px;
}
@media screen and (max-width: 767px){
	.tou{
		padding-bottom:60px;
	}
}
.tou::after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	border-bottom: 20vw solid #f2f2f2;
	border-left: 100vw solid transparent;
	z-index: 1;
}
.tou .innerOrigin{
	position:relative;
	z-index:2;
}
.touContent{
	display:flex;
	justify-content:space-between;
	align-items:stretch;
}
.touTit{
	width:400px;
}
.touTxt{
	width:calc(100% - 400px);
}
.touTxt ul li{
	border-bottom:1px #4d4d4d dashed;
	padding-bottom:5px;
	margin-bottom:5px;
}
@media screen and (max-width: 960px){
	.touContent{
		display:block;
	}
	.touTit,.touTxt{
		width:100%;
	}
	.touTit{
		margin-bottom:20px;
	}
}
.flow{
	background:#f2f2f2;
	padding-bottom:80px;
}
.flowBox{
	background:#fff;
	border:2px #4d4d4d solid;
	border-radius:30px;
	padding:30px 25px;
	box-sizing:border-box;
	display:flex;
	justify-content:space-between;
	align-items:center;
	margin-bottom:40px;
}
.flowBox:last-child{
	margin-bottom:0;
}
.flowImg{
	width:200px;
}
.flowTxt{
	width:calc(100% - 240px);
}
.flowTxt h3{
	border-bottom:2px #8c6239 solid;
	padding-bottom:0.4em;
	margin-bottom:0.4em;
}
@media screen and (max-width: 767px){
	.flowBox{
		display:block;
	}
	.flowImg{
		margin:0 auto 20px;
	}
	.flowTxt{
		width:100%;
	}
	.flowTxt p.kopicR_font,
	.flowTxt h3{
		text-align:center;
	}
}

/* ----------------------------------------------------------------------
 よくあるご質問
---------------------------------------------------------------------- */
.faqDL{
	width:100%;
	border-bottom: 3px #e8546b solid;
	border-image: linear-gradient(90deg, rgba(166,124,82,1) 0%, rgba(248,131,121,1) 100%);
	border-image-slice: 1;
	margin-bottom:10px;
}

.faqDL dt {
	padding:0 30px 30px 35px;
	text-indent: -35px;
	box-sizing: border-box;
	font-family: "zen-maru-gothic", sans-serif;
	font-weight: 500;
	font-style: normal;
	position: relative;
}
.faqDL dd {
	padding:0 30px 25px 36px;
	text-indent: -36px;
	box-sizing: border-box;
	font-family: 'NotoSansJP-Medium';
	line-height:2.0em;
	display: none;
}
dl.faqDL dt::before{
	margin-right: 10px;
	position: relative;
	top: 27px;
	content: url(images/ico_faq_q.png);
}
dl.faqDL dd::before {
	margin-right: 7px;
	position: relative;
	top: 5px;
	content: url(images/ico_faq_a.png);
}
dl.faqDL dt span::before,
dl.faqDL dt span::after {
	content: '';
	display: block;
	width: 15px;
	height: 2px;
	border-radius: 5px;
	background: #f88379;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
}
dl.faqDL dt span::after {
	background: #e8546b;
	transform: translateY(-50%) rotate(90deg);
	transition: 0.5s;
}
dl.faqDL dt.open span::after {
	transform: rotate(0);
	transition: 0.5s;
}

@media screen and (min-width:640px){
	p.okotae{
		padding:0 5px;
		display:inline-block;
		background:#e8546b;
		line-height:1.5em;
	}
	p.okotae br{
		display:none;
	}
	p.okotae span{
		padding:0;
	}
}
@media screen and (max-width:767px){
	dl.faqDL dt::before{
		top: 25px;
	}
}
@media screen and (max-width:639px){
	p.okotae span{
		padding:0 5px;
		background:#e8546b;
		line-height:1.5em;
	}
	p.okotae span:first-child{
		margin-bottom:5px;
	}
}
a.btnFaq{
	display:inline-block;
	margin-top:15px;
	text-indent:0;
	font-size:90%;
	color:#f88379;
	border-bottom:1px #f88379 dashed;
}
a.btnFaq::after{
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f101";
	margin-left:0.5em;
}

/* ----------------------------------------------------------------------
 アクセス
---------------------------------------------------------------------- */

/*イントロダクション*/
.accessIntro{
	display:flex;
	justify-content:space-between;
	align-items:center;
	margin-bottom:80px;
	width:100%;
	max-width:1920px;
	margin-left:auto;
	margin-right:auto;
}
.accessIntroTxt,
.accessIntroImg{
	width:50%;
}
.accessIntroImg {
	height:800px;
}
.accessIntroImg img{
	display:block;
	width:100%;
	object-fit:cover;
	height:100%;
	border-radius:30px 0 0 30px;
}
.accessIntroTxtInner{
	max-width: 600px;
	width: calc(100% - 20px);
	margin-left: auto;
	padding: 0 40px 0 0;
	box-sizing: border-box;
}
@media screen and (max-width:960px){
	.accessIntro{
		display:block;
	}
	.accessIntroTxt,
	.accessIntroImg{
		width:100%;
	}
	.accessIntroTxt{
		margin-bottom:40px;
	}
	.accessIntroImg {
		height:400px;
	}
	.accessIntroImg img{
		border-radius:30px 30px 0 0;
	}
	.accessIntroTxtInner{
		max-width: 100%;
		width: calc(100% - 30px);
		margin-right:auto;
		padding-right:0;
	}
}
@media screen and (max-width:767px){
	.accessIntro{
		margin-bottom:60px;
	}
}
@media screen and (max-width:600px){
	.accessIntroImg {
		height:300px;
	}
}

/*アクセスマップ*/
.accessMap h3{
	background:#fff;
	border:3px #f88379 solid;
	border-radius:100px;
	padding:5px 20px 7px;
	box-sizing:border-box;
}
.accessMapBox ul{
	width:100%;
	max-width:768px;
	margin:0 auto;
}
.accessMapBox ul li{
	display:flex;
	align-items:center;
	justify-content:space-between;
	border-bottom:1px #4d4d4d dashed;
	padding-bottom:10px;
	margin-bottom:10px;
}
.accessMapBox ul li h4{
	width:200px;
}
.accessMapBox ul li h4::before{
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f239";
	margin-right:0.5em;
	color:#f88379;
}
.accessMapBox ul li p{
	width:calc(100% - 200px);
	border-left:1px #4d4d4d solid;
	padding:0 1em;
}
@media screen and (max-width:767px){
	.accessMapBox ul li{
		display:block;
		padding-top:5px;
	}
	.accessMapBox ul li h4{
		margin-bottom:0.3em;
	}
	.accessMapBox ul li p{
		width:100%;
		border-left:none;
		padding:0;
	}
}

/*周辺環境*/
.surroundingsTxt{
	display:flex;
	justify-content:space-between;
}
.surroundingsTxt ul{
	width:48%;
}
.surroundingsTxt ul li{
	border-bottom:1px #4d4d4d dashed;
	padding-bottom:8px;
	padding-left:1em;
	text-indent:-1em;
	margin-bottom:8px;
}
.surroundingsTxt ul li::before{
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f0da";
	margin-right:0.5em;
	color:#f88379;
}
@media screen and (max-width:767px){
	.surroundingsTxt{
		display:block;
	}
	.surroundingsTxt ul{
		width:100%;
	}
}

/*スライダー*/
.surroundings .swiper-wrapper{
	justify-content:space-between;
}
.surroundings .slider-thumbnail .swiper-slide {
  opacity: .5;
  transition: opacity .5s;
  width: calc((100% - 12px) / 4);
}
.surroundings .slider-thumbnail .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.surroundings .slider-thum {
  max-width: 768px;
  width: 100%;
}
.surroundings .swiper-slide img {
  height: auto;
  width: 100%;
}
.slider-thum .swiper-slide{
	border-radius:20px;
	overflow:hidden;
}
.slider-thumbnail .swiper-slide{
	border-radius:10px;
	overflow:hidden;
}
.surroundings .swiper-button-next,.surroundings  .swiper-button-prev{
	color:#fff;
	width:15px;
}

/* ----------------------------------------------------------------------
 お問い合わせ
---------------------------------------------------------------------- */
.wpcf7{
	border:none;
	background:#fff;
	margin:0;
}
.wpcf7 form{
	margin:0;
}
.wpcf7 .contact input, .wpcf7 .contact textarea{
	border:2px #f88379 solid;
	background:#fafafa;
	font-size:20px;
	padding:15px;
	border-radius:10px;
	font-family: "zen-maru-gothic", sans-serif;
    font-weight: 500;
    font-style: normal;
}
.wpcf7 .contact input::placeholder, .wpcf7 .contact textarea::placeholder{
	color:#b3b3b3;
}
.wpcf7 .contact .wpcf7-list-item-label{
	font-size:20px;
	font-family: "zen-maru-gothic", sans-serif;
    font-weight: 500;
    font-style: normal;
}
.wpcf7 .contact .wpcf7-list-item{
	margin-bottom:0.5em;
}
.contactBox{
	margin-bottom:40px;
}
.contactBox h3{
	margin-bottom:0.5em;
}
.contactBox h3 span{
	font-family: "kopik", sans-serif;
	font-weight: 700;
	font-style: normal;
	color:#F88379;
	display:inline-block;
	margin:0 0 0 0.5em;
	font-size:80%;
}
.contactBox h3.hissu::after{
	content:"必須";
	font-size:70%;
	color:#fff;
	background:#F88379;
	padding:1px 15px 3px;
	border-radius:100px;
}
.wpcf7 .contact input.wpcf7-submit{
	background:#f88379;
	height:60px;
	transition : all 0.5s ease 0s;
}
.wpcf7 .contact input.wpcf7-submit:hover{
	background:#b3b3b3;
}
@media screen and (min-width:768px){
	.wpcf7 .contact .wpcf7-list-item{
		display:inline-block;
	}
}


/* ----------------------------------------------------------------------
 会社概要
---------------------------------------------------------------------- */
table.companyTb{
	width:100%;
}
table.companyTb th,
table.companyTb td{
	border-bottom-style:solid;
	border-bottom-width:1px;
	padding:25px 10px;
	text-align:left;
	box-sizing:border-box;
}
table.companyTb th{
	border-bottom-color:#F88379;
	width:10em;
}
table.companyTb td{
	border-bottom-color:#4d4d4d;
}
@media screen and (max-width: 767px){
	table.companyTb{
		border-top:3px #4d4d4d solid;
	}
	table.companyTb,table.companyTb tbody,table.companyTb tr,
	table.companyTb th,table.companyTb td{
		display:block;
	}
	table.companyTb th{
		width:100%;
		background:#fafafa;
		border-bottom-style:dashed;
	}
	table.companyTb td{
		border-bottom-width:3px;
	}
}

/* ----------------------------------------------------------------------
 プライバシーポリシー
---------------------------------------------------------------------- */
.privacyBox{
	margin-bottom:80px;
}
@media screen and (max-width: 767px){
	.privacyBox{
		margin-bottom:55px;
	}
}
.privacyBox h3{
	position:relative;
	border-bottom:1px dashed #4D4D4D;
	padding-bottom:10px;
	margin-bottom:40px;
}
.privacyBox h3::after{
	position:absolute;
	content:"";
	width:100%;
	height:3px;
	background:#F88379;
	bottom:-8px;
	left:0;
}
.privacyBox h3 strong,
.privacyBox h3 span{
	font-weight:700;
	display:inline-block;
}
.privacyBox h3 strong{
	margin-right:0.3em;
}
.privacyBox h3 span{
	color:#F88379;
}
.privacyBox h3 span:first-letter{
	color:#4d4d4d;
}
ul.circle li{
	margin-bottom:0.5em;
	padding-left:1.3em;
	text-indent:-1.3em;
}
ul.circle li::before{
	content:"●";
	color:#F88379;
	position:relative;
	margin-right:0.3em;
}
.privacyBox h4{
	display:inline-block;
	background:#F88379;
	padding:0 0.5em;
}


/* ----------------------------------------------------------------------
 フッター
---------------------------------------------------------------------- */

/*くまイラスト*/
@media screen and (max-width: 767px){
	.footerImg img.imgCenter{
		max-width:150px;
	}
}

/*フッター全体*/
@media only screen and (max-width: 767px) {
    .footer {
        margin-top: 100px;
    }
}

/*フッターコンテンツ*/
.footerContents{
	border-top:5px #f88379 solid;
	border-bottom:5px #f88379 solid;
	padding:40px 0;
	background:url(images/bg_cloth.jpg) repeat;
}
.footerContents .innerOrigin{
	display:flex;
	align-items:stretch;
	justify-content:space-between;
	flex-wrap:wrap;
}
.footerBox{
	width:calc((100% - 40px) /2);
	display:flex;
	align-items:stretch;
	justify-content:space-between;
}
.footLogo{
	width:115px;
}
.footLogo img{
	display:block;
	width:100%;
}
.footInfo{
	width:calc(100% - 135px);
	padding-top:1em;
}
p.footTel::before{
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f095";
	margin-right:0.2em;
	font-size:75%;
}
ul.footSns{
	display:flex;
	justify-content:start;
	align-items:center;
	list-style:none;
}
ul.footSns li{
	width:20px;
	margin-right:0.8em;
	/*margin-bottom:1em;*/
}
ul.footSns li img{
	display:block;
	width:100%;
}

.footerSitemap{
	width:48%;
}
.footerSitemap ul li{
	margin-bottom:1em;
}
.footerSitemap ul li::before{
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f0da";
	margin-right:0.2em;
	color:#f88379;
}
.footerSitemap ul li a{
	color:#4d4d4d;
	transition : all 0.5s ease 0s;
	letter-spacing:0.02em;
}
.footerSitemap ul li a:hover{
	color:#ccc;
}
@media only screen and (max-width: 960px) {
	.footerContents .innerOrigin{
		display:block;
	}
	.footerBox{
		width:100%;
		max-width:480px;
		margin-left:auto;
		margin-right:auto;
	}
	.footerBox:first-child{
		margin-bottom:2em;
		display:block;
	}
	.footLogo{
		width:100px;
		margin-left:auto;
		margin-right:auto;
	}
	.footInfo{
		width:100%;
		text-align:center;
	}
}

/*コピーライト*/
.footer-bar01,.copyright{
	background:#fff;
}
.copyright a{
	color:#4d4d4d;
	font-family: "zen-maru-gothic", sans-serif;
	font-weight: 700;
	font-style: normal;
}
@media only screen and (max-width: 767px) {
	.copyright a{
		font-size:10px;
	}
}

/*page top ボタン*/
.pagetop{
	bottom:15px;
}
.pagetop a{
	background:#f88379;
	border-radius:50%;
	text-align:center;
}
.pagetop a:before{
	bottom: 18px;
}
.pagetop a:after{
	content:"TOP";
	position: absolute;
    bottom: 14px;
    left: 0;
    right: 0;
	display: inline-block;
    height: 1em;
	font-size: 12px;
	line-height:0.1em;
	font-family: "zen-maru-gothic", sans-serif;
	font-weight: 700;
	font-style: normal;
}
@media only screen and (max-width: 767px) {
	.pagetop a:before{
		bottom: 16px;
	}
	.pagetop a:after{
		bottom: 9px;
	}
}

/* ----------------------------------------------------------------------
 Cloudflare Turnstile
---------------------------------------------------------------------- */
/*「Cloudflare Turnstile」ウィジェットを中央揃えにする*/
div.cf-turnstile {
    display: flex !important;
    justify-content: center !important;
}