@charset 'UTF-8';

/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

	共通css

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */

/* ================================================================================

	Google Fonts FOUT対策

================================================================================ */

1

html {
	opacity: 0;
	transition-property: opacity;
	transition-duration: 0.3s;
	transition-timing-function: ease-in;
	transition-delay: 0s;
}
html.wf-active {
	opacity: 1;
}





/* ================================================================================

	サイトスタイル

================================================================================ */
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

*:before,
*:after {
	 -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	position: relative;
	color: #2a2b2b;
	background-color: #ffc2dd;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7;
	word-wrap: break-word;
	/* 明朝 */ font-family: 'Noto Serif JP','游明朝',YuMincho,'ヒラギノ明朝 ProN W2','Hiragino Mincho ProN','HG明朝B',serif;
	/* ゴシック */ font-family: 'Zen Maru Gothic', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', YuGothic, 'ヒラギノ角ゴ ProN W3', Hiragino Kaku Gothic ProN, Arial, 'メイリオ', Meiryo, sans-serif;
}

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	body {
		-moz-text-size-adjust: none;
		-ms-text-size-adjust: none;
		-webkit-text-size-adjust: none;
		text-size-adjust: none;
	}
}

/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	body {
		-moz-text-size-adjust: none;
		-ms-text-size-adjust: none;
		-webkit-text-size-adjust: 100%;
		text-size-adjust: 100%;
	}
}


#wrapper {
	position: relative;
	max-width: none;
	/* max-width: 1920px; 固定幅レイアウト時 */
	width: 100%;
	margin: 0 auto;
	min-height: 100vh;
	display: block;
	overflow: hidden;
}

h1{
	margin: 0;
	font-weight: 300;
}
h2, h3, h4 {
	margin: 0;
	font-weight: 700;
}

img {
	vertical-align: bottom;
	image-rendering: -webkit-optimize-contrast;
}
/* Safariハック */
_:lang(x)+_:-webkit-full-screen-document, img {
	image-rendering: auto;
}

li,dt,dd {
	vertical-align: top;
}

iframe {
	vertical-align: bottom;
}


/* リンク：透過アクション付 */
a {
	color: #2a2b2b;
	opacity: 1;
	transition-property: opacity,color,background-color,filter;
	transition-duration: 0.3s;
	transition-timing-function: ease-in-out;
	transition-delay: 0s;
}
a:hover {
	opacity: 0.6;
}





/* ================================================================================

	404.php

================================================================================ */

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	.not-found {
		position: relative;
		width: 1000px;
		margin: 0 auto;
	}
}





/* ================================================================================

	display:none

================================================================================ */

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	/* SP改行消し */
	.br-pc {
		display: none;
	}
	/* SPコンテンツ消し */
	.pc_none {
		display: none;
	}

}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

	/* PC改行消し */
	.br-sp {
		display: none;
	}
	/* PCコンテンツ消し */
	.sp_none {
		display: none;
	}

}





/* ================================================================================

	pointer-events: none;

================================================================================ */

/* FAX */
.fax_num {
	pointer-events: none;
}


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	.pointer-events {
		pointer-events: none;
	}

}





/* ================================================================================

	フロート回り込み解除 clearfix

================================================================================ */

.clearfix:after {
	display: block;
	clear: both;
	height: 0px;
	line-height: 0px;
	visibility: hidden;
	content: "";
	overflow: hidden;
	float: none;
}
.clearfix {
	display: block; /* for IE8 */
}





/* ================================================================================

	エディター共通設定

================================================================================ */

p + * {
	margin-top: 0.8em;
}
p:not(:first-child) {
	margin-top: 0.8em;
}

strong,b {
	font-weight: 700;
}
big {
	font-size: larger;
}
small {
	font-size: smaller;
}
em {
	font-style: italic;
}

.ready a {
	pointer-events: none;
}


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	body {
		font-size: 3.5vw;
	}

	/* youtube siteorigin */
	.youtube-player {
		width: 100%;
		height: 36.5vw;
		margin-top: 4vw;
	}

	/* エディターで画像の下に隙間ができるの解除 */
	img + br {
		display: none;
	}
}





/* ================================================================================

	ヘッダー

================================================================================ */

/* PC設定
------------------------------------------- */
@media (min-width: 768px) {

	header.bs_header {
		position: relative;
		background-color: #fff;
	}


	/* ロゴ
	----------------------------------------------- */
	.h_logo {
		width: 275px;
		margin: 40px auto 0;
	}
	.h_logo img {
		width: 100%;
	}
	
	
	/* お問い合わせ
	----------------------------------------------- */
	.h_btn {
		position: absolute;
		top: 17px;
		left: 50%;
		margin-left: -600px;
	}
	.h_btn ul li {
		width: 133px;
		float: left;
	}
	.h_btn ul li img {
		width: 100%;
	}
	
	.h_btn ul li.line_btn {
		margin-right: 25px;
	}
	
	.h_tel {
		position: absolute;
		top: 1.2vw;
		left: 4.3vw;
		color: #ffffff;
		text-align: center;
		z-index: 1;
	}
	.h_tel p:first-of-type {
		font-size: 1.291vw;
		font-weight: 700;
		margin-bottom: -1.2vw;
	}
	.h_tel a {
		font-size: 1.817vw;
		font-weight: 900;
		margin-left: -3vw;
		color: #fff;
		pointer-events: none;
		display: block;
	}
	.h_tel a span {
		font-size: 2.84vw;
		margin-left: 0.5vw;
	}
	.h_tel p:last-of-type {
		font-size: 1.291vw;
		font-weight: 500;
		margin-top: -0.8vw;
	}
	.h_tel p + * {
		margin-top: 0;
	}


	/* H1
	-----------.------------------------------------ */
	.sp_h1 {
		display: none;
	}
	.pc_h1 {
		position: absolute;
		top: 15px;
		right: 15px;
		text-align: right;
		z-index: 1;
	}
	.pc_h1 h1 {
		font-size: 13px;
		line-height: 1;
		color: inherit;
	}


	/* グローバルナビゲーション
	----------------------------------------------- */
	.navi_pc {
		margin-top: 83px;
		padding-bottom: 23px;
	}
	.navi_pc > ul {
		font-size: 0;
		text-align: center;
	}
	.navi_pc > ul > li {
		position: relative;
		display: inline-block;
		vertical-align: top;
		font-size: 20px;
		font-weight: 500;
		margin: 0 25px;
	}
	.navi_pc > ul > li a {
		color: #323232;
		display: block;
	}
	
	.navi_pc > ul > li:first-of-type {
		margin-top: -96px;
		position: relative;
		margin-right: 57px;
	}
	.navi_pc > ul > li:first-of-type a img {
		width: 253px;
		position: relative;
	}
	.navi_pc > ul > li:first-of-type:before {
		content: '';
		background-color: #ffffff;
		width: 184px;
		height: 184px;
		border-radius: 230px;
		top: -34px;
		left: 34px;
		position: absolute;
	}
	
	.navi_pc > ul > li a:before {
		content: '';
		position: absolute;
		height: 51px;
		top: -52px;
		left: 50%;
	}
	.navi_pc > ul > li:nth-of-type(2) a:before {
		background: url(../img/nav01.png) center top / contain no-repeat;
		width: 53px;
		margin-left: -26.5px;
	}
	.navi_pc > ul > li:nth-of-type(3) a:before {
		background: url(../img/nav02.png) center top / contain no-repeat;
		width: 46px;
		margin-left: -23px;
	}
	.navi_pc > ul > li:nth-of-type(4) a:before {
		background: url(../img/nav03.png) center top / contain no-repeat;
		width: 44px;
		margin-left: -22px;
	}
	.navi_pc > ul > li:nth-of-type(5) a:before {
		background: url(../img/nav04.png) center top / contain no-repeat;
		width: 43px;
		margin-left: -21.5px;
	}
	.navi_pc > ul > li:nth-of-type(6) a:before {
		background: url(../img/nav05.png) center top / contain no-repeat;
		width: 55px;
		margin-left: -27.5px;
	}
	.navi_pc > ul > li:last-of-type a:before {
		background: url(../img/nav06.png) center top / contain no-repeat;
		width: 25px;
		margin-left: -12.5px;
	}


}



/* SP設定
------------------------------------------- */
@media (max-width: 767px) {

	header.bs_header {
		position: relative;
	}


	/* ロゴ
	----------------------------------------------- */
	.h_logo {
		position: absolute;
		z-index: 1;
		width: 35vw;
		bottom: 4.4vw;
		left: 50%;
		border-radius: 22vw;
		margin-left: -17.5vw;
	}
	.h_logo img {
		width: 100%;
	}
	.h_logo a {
		position: relative;
	}
	.h_logo a:before {
		content: '';
		position: absolute;
		width: 46vw;
		height: 26vw;
		top: -16vw;
		left: -5.3vw;
		background-color: #ffffff;
		display: block;
		z-index: -1;
		border-radius: 40vw 40vw 0 0;
	}


	/* H1
	----------------------------------------------- */
	.pc_h1 {
		display: none;
	}
	.sp_h1 {
		position: relative;
		background: #f794c6;
		padding: 4vw 2vw 2vw;
	}
	.sp_h1 h1 {
		font-size: 3.2vw;
		line-height: 1.3;
		color: #fff;
		text-align: center;
	}
	
	
	.h_tel {
		background: #f794c6;
		color: #ffffff;
		text-align: center;
		padding: 0 2vw 4vw;
	}
	.h_tel p:first-of-type {
		font-size: 4vw;
		font-weight: 700;
		margin-bottom: -4vw;
	}
	.h_tel a {
		font-size: 5vw;
		font-weight: 900;
		margin: 0 0 0 -6vw;
		color: #ffffff;
	}
	.h_tel a span {
		font-size: 10vw;
		margin-left: 1.5vw;
	}
	.h_tel p:last-of-type {
		font-size: 4vw;
		font-weight: 500;
		margin-top: -2vw;
	}
	.h_tel p + * {
		margin-top: 0;
	}


	/* グローバルナビゲーション
	------------------------------------------- */
	.navi_pc {
		display: none;
	}

}





/* ================================================================================

	フッター

================================================================================ */

/* PC設定
------------------------------------------- */
@media (min-width: 768px) {
	footer.bs_footer {
		position: relative;
	}
	
	#cotnact_b {
		position: fixed;
		top: 90px;
		right: 20px;
		z-index: 1;
	}
	#cotnact_b img {
		width: 133px;
	}
	#cotnact_b ul li:last-of-type {
		margin-top: 20px;
	}

	.f_wrap {
		position: relative;
		background-color: #f794c6;
		padding: 60px 0;
	}


	/* ロゴ
	------------------------------------------- */
	.f_logo {
		width: 250px;
		margin: 0 auto;
	}
	.f_logo img {
		width: 100%;
	}
	
	
	/* お問い合わせ
	------------------------------------------- */
	.f_tel {
		color: #ffffff;
		text-align: center;
		margin-top: 31px;
	}
	.f_tel p:first-of-type {
		font-size: 20.98px;
		font-weight: 700;
		margin-bottom: -17px;
	}
	.f_tel a {
		font-size: 29.54px;
		font-weight: 900;
		margin: -17px 0 0 -45px;
		color: #ffffff;
		pointer-events: none;
	}
	.f_tel a span {
		font-size: 46.15px;
		margin-left: 5px;
	}
	.f_tel p:last-of-type {
		font-size: 20.98px;
		font-weight: 500;
		margin-top: -14px;
	}
	.f_tel p + * {
		margin-top: 0;
	}


	/* フッターリンク
	------------------------------------------- */
	.f_navi {
		margin-top: 25px;
	}
	.f_navi > ul {
		font-size: 0;
		text-align: center;
	}
	.f_navi > ul > li {
		position: relative;
		display: inline-block;
		vertical-align: top;
		font-size: 18px;
	}
	.f_navi > ul > li:not(:first-child) {
		margin-left: 1em;
	}
	.f_navi > ul > li:not(:first-child)::before {
		position: absolute;
		content: "";
		display: block;
		background-color: #ffffff;
		width: 1px;
		height: 16px;
		top: 8.5px;
		left: -0.5em;
	}

	.f_navi > ul > li a {
		color: #ffffff;
	}


	/* シェアボタン */
	footer .addtoany_shortcode > div {
		display: none;
	}


	/* コピーライト */
	.f_copy {
		margin-top: 40px;
	}
	.f_copy p {
		font-size: 14px;
		font-weight: 500;
		text-align: center;
		color: #ffffff;
	}

}



/* SP設定
------------------------------------------- */
@media (max-width: 767px) {
	footer.bs_footer {
		position: relative;
	}

	.f_wrap {
		position: relative;
		background-color: #f794c6;
		padding: 12vw 8vw;
		color: #ffffff;
	}


	/* ロゴ
	------------------------------------------- */
	.f_logo {
		width: 45vw;
		margin: 0 auto;
	}
	.f_logo img {
		width: 100%;
	}


	/* SP用フッターリンク type01 ※ボーダー下線のタイプ
	------------------------------------------- */
	.f_navi > ul {
		margin-top: 4vw;
		overflow: auto;
	}
	.f_navi > ul > li {
		float: left;
		width: 48%;
		padding: 2vw 2vw;
		border-bottom: 1px solid;
	}
	.f_navi > ul > li:nth-of-type(2n-1) {
		margin-right: 2%;
	}
	.f_navi > ul > li:nth-of-type(2n) {
		margin-left: 2%;
	}
	.f_navi > ul > li > a {
		display: block;
		font-size: 3.5vw;
		text-decoration: none;
	}
	
	/* お問い合わせ
	------------------------------------------- */
	.f_tel {
		color: #ffffff;
		text-align: center;
		margin-top: 4vw;
	}
	.f_tel p:first-of-type {
		font-size: 4vw;
		font-weight: 700;
		margin-bottom: -4vw;
	}
	.f_tel a {
		font-size: 5vw;
		font-weight: 900;
		margin: 0 0 0 -6vw;
		color: #ffffff;
	}
	.f_tel a span {
		font-size: 10vw;
		margin-left: 1.5vw;
	}
	.f_tel p:last-of-type {
		font-size: 4vw;
		font-weight: 500;
		margin-top: -2vw;
	}
	.f_tel p + * {
		margin-top: 0;
	}


	/* シェアボタン */
	footer .addtoany_shortcode > div {
		text-align: center;
		display: block;
	}


	/* コピーライト */
	.f_copy {
		margin-top: 6vw;
	}
	.f_copy p {
		text-align: center;
	}

}





/* ================================================================================

	ページトップボタン

================================================================================ */

/* PC設定
------------------------------------------- */
@media (min-width: 768px) {
	#page-top {
		position: fixed;
		z-index: 9996;
		right: 10px;
	}
	#page-top a {
		background: url(../img/page-top.png) center top / contain no-repeat;
		width: 40px;
		height: 40px;
		display: block;
		text-indent: -9999px;
	}
	#page-top a:hover {
	}
	
}

/* SP設定
------------------------------------------- */
@media (max-width: 767px) {
	#page-top {
		position: fixed;
		z-index: 9996;
		right: 8px;
	}
	#page-top a {
		background: url(../img/page-top.png) center top / contain no-repeat;
		width: 40px;
		height: 40px;
		display: block;
		text-indent: -9999px;
	}
	#page-top a:hover {
	}
}





/* ================================================================================

	パンくずリスト

================================================================================ */

/* 背景色 */
#breadcrumb {
	background-color: transparent;
}


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	#breadcrumb {
		position: relative;
		max-width: none;
		width: 100%;
		padding: 16px 0;
		z-index: 1;
	}

	#breadcrumb > ul {
		max-width: 1000px;
		width: 100%;
		margin: 0 auto;
		font-size: 0;
	}
	#breadcrumb > ul > li {
		display: inline-block;
		font-size: 14px;
	}
	#breadcrumb > ul > li + li:before {
		padding: 0 0.6em 0 0.7em;
		content: '>';
	}
}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	#breadcrumb {
		position: relative;
		width: 100%;
		padding: 4vw 0;
		z-index: 1;
	}

	#breadcrumb > ul {
		position: relative;
		width: 100%;
		padding: 0 4vw;
		font-size: 0;
	}
	#breadcrumb > ul > li {
		display: inline-block;
		font-size: 3.5vw;
	}
	#breadcrumb > ul > li + li:before {
		padding: 0 0.6em 0 0.7em;
		content: '>';
	}
}





/* ================================================================================

	Wp Lightbox Bank プラグイン

================================================================================ */
#lightGallery-outer {
	background-color: rgba(0,0,0,0.8) !important;
}





/* ================================================================================

	Elementor Lightbox フッター非表示

================================================================================ */
.elementor-slideshow__footer {
	display: none;
}





/* ================================================================================

	Addtoanyボタン

================================================================================ */

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	.addtoany_shortcode {
		margin: 14px -4px 0;
	}
}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	.f_share {
		margin-top: 8vw;
		font-weight: 600;
		text-align: center;
	}
	.addtoany_shortcode {
		margin: 2vw -4px 0;
	}
}


/* 翻訳プラグインバグ対策 */
.addtoany_shortcode font {
	display: none;
}





/* ================================================================================

	IEハック

================================================================================ */

/* IE10以上 */
@media all and (min-width: 768px) and (-ms-high-contrast: none) {
	.elementor-image a {
		display: inline !important;
	}
}