@charset 'UTF-8';

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

	共通css

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

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

	Google Fonts FOUT対策

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

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

p,li,a,h4,h3,h2,h1.a,span.text_trasc,.btn_submit input {
	transform: rotate(0.05deg);
}
span.text_trasc{
	display: inline-block;
}



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

	サイトスタイル

================================================================================ */
* {
	-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: #505050;
	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: 'M PLUS 1p','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;
	}

	/* Elementor：フレックスアイテムを単一行に配置 */
	.elementor-row {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
	}


/* ホバーの動き */

/*丸がボタンに変形する*/

.btntransform{
    /*丸の基点とするためrelativeを指定*/
	position: relative;
    /*ボタンの形状*/	
    display: inline-block;
    color: #333;
    text-decoration: none;
    outline: none;
}

/* 丸が動く */
.btntransform::before{
	content:'';
    /*絶対配置で丸の位置を決める*/
	position:absolute;
	top: 0.3px;
	left:0;
	z-index: -1;
    /*丸の形状*/
	width:40.3px;
	height: 25.5px;
	border-radius: 100px;
    /*アニメーションの指定*/
    transition:.3s ease-out;
}
.navi_pc .nav_top .btntransform::before {
	width:40.3px;
	height: 41px;
  }


/*hoverした際の形状*/
.btntransform:hover{
	color: #ffffff !important;
	opacity: 1;
	z-index: 1;
}
.btntransform:hover::before,
.navi_pc .nav_top .btntransform:hover::before {
	width: 100%;
	background-color: #FDAB4C;
}

/* ボタンにカーソルを表示 */
.but_cursor_on{
	cursor: pointer;
  }

}

/* 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: #ff0000;
	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: 1.5em;
}
p:not(:first-child) {
	margin-top: 1.5em;
}

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


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


	/* ロゴ
	----------------------------------------------- */
	.h_logo {
		
	}


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


	/* グローバルナビゲーション
	----------------------------------------------- */
	.navi_pc {
		position: absolute;
		top: 27px;
		left: 50%;
		margin-left: -398px;
	}
	.navi_pc > ul {
		font-size: 0;
		text-align: center;
	}
	.navi_pc > ul > li {
		position: relative;
		display: inline-block;
		vertical-align: middle;
		font-size: 16px;
		line-height: 1.1;
	}
	.navi_pc > ul > li:not(:first-child) {
		margin-left: 1em;
	}
	.navi_pc > ul > li:first-child {
		margin-right: 2.5em;
	}
	/* .navi_pc > ul > li:not(:first-child)::before {
		position: absolute;
		content: "";
		display: block;
		background-color: #000000;
		width: 1px;
		height: 16px;
		top: 0.1em;
		left: -1em;
	}
	.navi_pc > ul > li > button {
		background: transparent;
		border: none;
		outline: none;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		margin: 0;
		padding: 0;
		font-size: 100%;
		vertical-align: baseline;
		text-decoration: none;
		font-family: 'M PLUS 1p','Noto Sans JP',-apple-system, BlinkMacSystemFont, 'Helvetica Neue', YuGothic, 'ヒラギノ角ゴ ProN W3', Hiragino Kaku Gothic ProN, Arial, 'メイリオ', Meiryo, sans-serif;
	} */
	.navi_pc > ul > li > a,
	.navi_pc > ul > li > button {
		display: block;
		font-size: 16px;
		line-height: 1.1;
	}
	.navi_pc > ul > li.pc_logo > a img{
		width: 200px;
	}


	/* ボタン装飾設定
	----------------------------------------------- */
	.navi_pc .nav_top a,
	.navi_pc .nav_top button{
		width: 200px;
		height: 45px;
		background: #fdef4c;
		border: 2px solid #505050;
		border-radius: 100px;
		color: #505050;
		padding: 11px 0 0;
		display: inline-grid;
	}

	/* ドロップメニュー
	----------------------------------------------- 
	#dropmenu > ul > li > ul {
		list-style: none;
		position: absolute;
		z-index: 99999;
		top: 100%;
		left: -4px;
		margin:0;
		padding: 0;
		overflow: hidden;
		transition: 0.3s ease-in-out;
	}
	#dropmenu > ul > li > ul > li {
		overflow: hidden;
		font-size: 15px;
		width: 15em;
		height: 0;
		border-bottom: 1px solid #cccccc;
		transition: 0.3s ease-in-out;
		opacity: 0;
	}
	#dropmenu > ul > li:hover > ul {
		overflow: visible;
		padding-top: 10px;
	}
	#dropmenu > ul > li:hover > ul > li {
		overflow: visible;
		opacity: 1;
		height: 100%;
	}
	#dropmenu > ul > li > ul > li > a {
		display: block;
		background-color: #888888;
		color: #ffffff;
		padding: 0.8em 1em;
		text-align: left;
		font-weight: 700;
		border-bottom: none;
	}
	#dropmenu > ul > li > ul > li > a:hover {
		opacity: 1;
		background-color: #aaaaaa;
	}*/

}



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

	header.bs_header {
		position: relative;
	}


	/* ロゴ
	----------------------------------------------- */
	.h_logo {
		position: absolute;
		z-index: 1;
	}
	.h_logo a {
		display: block;
		width: 47vw;
		margin: 4vw 0 0 3vw;
		font-size: 0;
	}
	.h_logo a img{
		width: 100%;
	}


	/* H1
	----------------------------------------------- */
	.pc_h1 {
		display: none;
	}
	.sp_h1 {
		position: relative;
		background-color: #cccccc;
		padding: 2vw;
	}
	.sp_h1 h1 {
		font-size: 3.2vw;
		line-height: 1.3;
	}


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

}





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

	フッター

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

/* PC設定
------------------------------------------- */
@media (min-width: 768px) {
	footer.bs_footer {
		position: relative;
		background-color: #45A8E6;
	}

	.f_wrap {
		position: relative;
		padding: 36px 0 45px;
		width: 607px;
		margin: 0 auto;
	}


	/* ロゴ
	------------------------------------------- */
	.f_logo {
		text-align: center;
	}
	.f_logo a{
		width: 200px;
		display: inline-block;
	}
	.f_logo a img{
		width: 100%;
	}


	/* フッターリンク
	------------------------------------------- */
	.f_navi {

	}
	.f_navi > ul {
		justify-content: space-between;
		display: flex;
		flex-direction: row;
		padding-bottom: 25px;
		margin: 35px 0px 26px;
		font-size: 0;
	}
	.f_navi > ul > li {
		position: relative;
		display: inline-block;
		vertical-align: top;
		font-size: 13px;
		line-height: 1.1;
		letter-spacing: 0.1em;
	}

	.f_navi > ul > li >  button{
		color: #fff;
		background: transparent;
		border: none;
		opacity: 1;
		transition-property: opacity,color,background-color,filter;
		transition-duration: 0.3s;
		transition-timing-function: ease-in-out;
		transition-delay: 0s;
		padding: 0;
		margin-top: -2px;
	  }

	.f_navi > ul > li >  button:hover{
		opacity: 0.6;
	  }
	/* .f_navi > ul > li:not(:first-child) {
		margin-left: 2em;
	}
	.f_navi > ul > li:not(:first-child)::before {
		position: absolute;
		content: "";
		display: block;
		background-color: #000000;
		width: 1px;
		height: 16px;
		top: 0.1em;
		left: -1em;
	} */

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


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


	/* コピーライト */
	.f_copy {
		position: relative;
		height: 0;
	}
	.f_copy p {
		position: absolute;
		font-size: 10px;
		top: -117px;
		right: 0;
		color: #fff;
		letter-spacing: 0.1em;
	}

}



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

	.f_wrap {
		position: relative;
		background-color: #45A8E6;
		padding: 16vw 8vw 43vw;
	}


	/* ロゴ
	------------------------------------------- */
	.f_logo {
		text-align: center;
	}
	.f_logo a{
		width: 46vw;
		display: inline-block;
	}
	.f_logo a 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;
		color: #fff;
	}

	.f_navi > ul > li >  button{
		color: #fff;
		background: transparent;
		border: none;
		opacity: 1;
		transition-property: opacity,color,background-color,filter;
		transition-duration: 0.3s;
		transition-timing-function: ease-in-out;
		transition-delay: 0s;
	  }

	.f_navi > ul > li >  button:hover{
		opacity: 0.6;
	  }

	/* SP用フッターリンク type02 ※ボタンタイプ
	------------------------------------------- */
	/*
	.f_navi > ul {
		margin-top: 4vw;
		overflow: auto;
	}
	.f_navi > ul > li {
		float: left;
		width: 50%;
	}
	.f_navi > ul > li:nth-of-type(2n-1) {
		width: 50%;
		padding-right: 1px;
	}
	.f_navi > ul > li > a {
		background-color: #000000;
		color: #ffffff ;
		display: block;
		font-size: 3.5vw;
		font-weight: 700;
		text-decoration: none;
		padding:3vw 0;
		margin-bottom: 1px;
		text-align: center;
	}
	.f_navi > ul > li > a:hover {
		background-color: #222222;
	}
	*/
	/* ボタンが奇数の場合
	.f_navi > ul > li:first-child {
		width: 100%;
	}
	.f_navi > ul > li:nth-of-type(2n) {
		width: 50%;
		padding-right: 1px;
	}
	.f_navi > ul > li:nth-of-type(2n-1) {
		width: 50%;
		padding-right: 0;
	}
	*/


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


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

}





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

	ページトップボタン

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

/* PC設定
------------------------------------------- */
@media (min-width: 768px) {
	#page_top {
		position: fixed;
		z-index: 9996;
		bottom: 80px;
		right: 50%;
		margin-right: -522px;
		opacity: 1;
		/* transition-property: opacity,bottom;
		transition-duration: 0.3s;
		transition-timing-function: ease-in-out;
		transition-delay: 0s; */
	}
	/* スクロールして出現後 
	#page_top.page_top_scroll {
		bottom: 133px;
		opacity: 1;
	}*/

	#page_top a {
		position: relative;
		display: block;
		background: #fdef4c;
		border-radius: 100px;
		border: solid 2px #505050;
		width: 40px;
		height: 40px;
		text-indent: -9999px;
	}
	#page_top a::before {
		position: absolute;
		content: '';
		top: 6px;
		left: 7px;
		border-right: 11px solid transparent;
		border-bottom: 19px solid #3FB9F0;
		border-left: 11px solid transparent;
	}


	/* ーーーーー追尾ナビーーーーー */
	.footer_fixed {
		position: fixed;
		bottom: 0;
		width: 100%;
		height: 60px;
		padding: 14px 0 0;
		border: 2px solid #ccc;
		background: #fff;
		z-index: 1;
		opacity: 0;
		transition-property: opacity,color,filter;
		transition-duration: 0.3s;
		transition-timing-function: ease-in-out;
		transition-delay: 0s;
	}
	
	.footer_fixed ul {
		position: relative;
		width: 1000px;
		text-align: center;
		font-size: 0;
		left: 50%;
		margin-left: -592px;
	}
	.footer_fixed ul li {
		font-size: 16px;
		display: inline-block;
		vertical-align: top;
	}

	/* 無料相談 */
	.footer_fixed ul li.f_nav_01 {
		padding: 0;
	}
	.footer_fixed ul li.f_nav_01 a {
		width: 288px;
		height: 30px;
		background: #fdef4c;
		display: inline-block;
		color: #505050;
		border: 2px solid #505050;
		border-radius: 100px;
		line-height: 1.5;
	}

	/* 矢印の形状 */
	.footer_fixed ul li.f_nav_01 a span{
		position: relative;
		font-size: 15px;
	}
	/* .footer_fixed ul li.f_nav_01 a span::after{
		position: absolute;
		content: '';
		top: 9.1px;
		right: -41px;
		width: 12px;
		height: 12px;
		border-top: 2px solid #505050;
		border-right: 2px solid #505050;
		transform: rotate(45deg);
	}
	.footer_fixed ul li.f_nav_01 a span::before{
		position: absolute;
		content: '';
		top: 0.1px;
		right: -51px;
		width: 29px;
		height: 29px;
		background-color: #ffffff;
		border-radius: 100px;
		border: solid 2px #505050;
	} */



	/* 資料請求・サンプル */
	.footer_fixed ul li.f_nav_02 {
		margin-left: 10px;
	}
	.footer_fixed ul li.f_nav_02 a,
	.footer_fixed ul li.f_nav_02 button {
		background: #fdef4c;
		display: inline-block;
		color: #505050;
		border: 2px solid #505050;
		border-radius: 100px;
		line-height: 1.6;
	}
	.footer_fixed ul li.f_nav_02 a,
	.footer_fixed ul li.f_nav_02 button {
		width: 167px;
		height: 30px;
	}
	.footer_fixed ul li.f_nav_02 button {
		padding: 0;
		font-size: 16px;
	}


	/* 電話番号 */
	.footer_fixed ul li.f_tel{
		position: relative;
		text-align: left;
		margin-left: 27px;
		margin-top: -13px;
	}
	.footer_fixed ul li.f_tel::before{
		position: absolute;
		content: "";
		background: url(../img/wooman_bottom.png) no-repeat center top / 100% auto;
		width: 95px;
		height: 83px;
		top: -24px;
		right: -142px;
	}
	.footer_fixed ul li.f_tel span.f_tel_info{
		font-size: 10px;
		letter-spacing: 0.1em;
	}
	.footer_fixed ul li.f_tel a{
		font-size: 18.5px;
		color: #EA8B1E;
		font-weight: 500;
		pointer-events: none;
		letter-spacing: 0.04em;
		margin-top: -6px;
		display: block;
	}
	.footer_fixed ul li.f_tel a span{
		font-size: 16px;
	}
	.navi_scroll {
		opacity: 1;
	}

}

/* SP設定
------------------------------------------- */
@media (max-width: 767px) {
	#page_top {
		position: fixed;
		z-index: 9996;
		bottom: 0vw;
		right: 3vw;
		opacity: 0;
		transition-property: opacity,bottom;
		transition-duration: 0.3s;
		transition-timing-function: ease-in-out;
		transition-delay: 0s;
	}
	/* スクロールして出現後 */
	#page_top.page_top_scroll {
		bottom: 149px;
		opacity: 1;
	}

	#page_top a {
		display: block;
		background: url(../img/pagetop.png) center top / contain no-repeat;
		width: 10vw;
		height: 10vw;
		text-indent: -9999px;
	}

	/* ーーーーー追尾ナビーーーーー */
	.footer_fixed {
		position: fixed;
		bottom: 0;
		width: 100%;
		height: 138px;
		padding: 0 0 0;
		border: 2px solid #ccc;
		background: #fff;
		z-index: 1;
		opacity: 0;
		transition-property: opacity,color,filter;
		transition-duration: 0.3s;
		transition-timing-function: ease-in-out;
		transition-delay: 0s;
	}
	
	.footer_fixed ul {
		position: relative;
		width: 100%;
		font-size: 16px;
	}
	.footer_fixed > ul > li:first-of-type,
	.footer_fixed > ul > li:nth-of-type(2),
	.footer_fixed > ul > li:nth-of-type(3){
		background: #fdef4c
	}
	/* 無用相談 */
	.footer_fixed > ul > li:first-of-type{
		height: 75px;
		width: 49.8%;
		float: left;
		border-right: 1px solid;
		padding: 23px 8px;
		text-align: center;
	  }
	  /* 資料 */
	  .footer_fixed > ul > li:nth-of-type(2){
		float: left;
		width: 50%;
		padding: 5px 0;
		border-bottom: 1px solid;
		text-align: center;
	  }
	  /* サンプル */
	  .footer_fixed > ul > li:nth-of-type(3){
		display: inline-block;
		clear: both;
		width: 50%;
		padding: 5px 0;
		text-align: center;
	  }
	  .footer_fixed > ul > li:nth-of-type(3) button{
		background-color: transparent;
		border: none;
		font-size: 16px;
	  }

	  .footer_fixed > ul > li:first-of-type a,
	  .footer_fixed > ul > li:nth-of-type(2) a,
	  .footer_fixed > ul > li:nth-of-type(3) button{
			color: #505050;
	  }

	  /* 電話 */
	  .footer_fixed > ul > li:nth-of-type(4){
		text-align: center;
		clear: both;
	  }
	.footer_fixed ul li.f_tel span.f_tel_info{
		font-size: 11px;
		letter-spacing: 0.1em;
	}

	.footer_fixed ul li.f_tel a{
		font-size: 28px;
		color: #EA8B1E;
		font-weight: bold;
		line-height: 1;
		
	}
	.footer_fixed ul li.f_tel a span{
		font-size: 22px;
	}

	.navi_scroll {
		opacity: 1;
	}

}

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

	モーダル設定

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

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

	.modal-header {
		padding: 40px 23px 0px 0;
		border-bottom: none;
	  }
	  
	/* 全体のサイズ */
	.modal-dialog {
		width: 950px;
		margin: 30px auto;
	  }
	.modal-dialog p{
		margin: 0 !important;
	}
	  /* コンテンツサイズ */
	  .modal-content {
		position: relative;
		background-color: #FFEB6E;
		-webkit-background-clip: padding-box;
		background-clip: padding-box;
		border: none;
		border: none;
		border-radius: 0;
		outline: 0;
		-webkit-box-shadow: 0 3px 9px rgba(0,0,0,.5);
		box-shadow: 0 3px 9px rgba(0,0,0,.5);
	  }
	.mo_box{
		margin: 0 auto;
		text-align: center;
	}
	.mo_box h3{
		font-weight: 500;
		font-size: 20px;
		letter-spacing: 0.05em;
		padding: 45px 0 20px;
		line-height: 1.9;
	}


	/* カタログ枠 */
	.sample_text01{
		width: 656px;
		margin: 60px auto;
	}
	.sample_text01 > a{
		float:left;
	}
	.sample_text01 > ul{
		float:right;
		text-align:left;
	}
	.sample_text01 > ul > li{
		position:relative;
		margin-bottom: 8px;
	}
	.sample_text01 > ul > li:first-of-type{
		font-size: 20px;
		font-weight: 500;
	}
	
	.sample_text01 > ul > li.s_icon_01::before{/* 丸 */
		position: absolute;
		content: "";
		background: #ffffff;
		border-radius: 100px;
		width: 15px;
		height: 15px;
		border: 1px #EA8B1E solid;
		top: 7px;
		left: -23px;
	}
	.sample_text01 > ul > li.s_icon_02::before{/* 四角 */
		position: absolute;
		content: "";
		background: #ffffff;
		border-radius: 3px;
		width: 13px;
		height: 13px;
		border: 1px #EA8B1E solid;
		top: 7px;
		left: -23px;
	}
	.sample_text01 > ul > li.s_border{
		margin-top: 32px;
	}
	.sample_text01 > ul > li.s_border::after{/* ライン */
		position: absolute;
		content: "";
		width: 370px;
		border: 1px #EA8B1E solid;
		top: -17px;
		left: -30px;
		border-top: dashed 1px #707070;
		border-right: 0;
		border-left: 0;
		border-bottom: 0;
	}

	
	/* サンプル画像と資料画像 */
	.sample_in_box{
		padding: 40px 0 83px;
		margin: 0 auto;
	}

	/* カタログ画像サイズ */
	img.katarogu_img{
		width: 243px;
	}
	/* LP画像サイズ */
	img.lp_img{
		width:192px;
		margin-left: 32px;
	}
	/* タイトル */
	.sample_in01 h4{
		background: #ffffff;
		padding: 22px 0 20px 0;
		font-size: 25px;
		font-weight: normal;
	}

	.modal-footer {
		padding: 0 0 110px 0;
		text-align: center;
		border-top: none;
	  }
	/* ロゴ */
	.mo_logo img{
		width: 200px;
	}

	/* 閉じる */
	.close {
		float: right;
		font-weight: normal;
		line-height: 0;
		color: transparent;
		text-shadow: none;
		filter: alpha(opacity=20);
		opacity: 1;
		padding: 0px 30px 20px 0;
	  }
}

/* SP設定
------------------------------------------- */
@media (max-width: 767px) {
	.modal-header {
		padding: 2em 0 0 0.9em;
		border-bottom: none;
	  }
	  
	/* 全体のサイズ */
	.modal-dialog {
		width: 90%;
		margin: 30px auto;
	  }
	.modal-dialog p{
		margin: 0 !important;
	}
	  /* コンテンツサイズ */
	  .modal-content {
		position: relative;
		background-color: #FFEB6E;
		-webkit-background-clip: padding-box;
		background-clip: padding-box;
		border: none;
		border: none;
		border-radius: 0;
		outline: 0;
		-webkit-box-shadow: 0 3px 9px rgba(0,0,0,.5);
		box-shadow: 0 3px 9px rgba(0,0,0,.5);
	  }
	.mo_box{
		margin: 0 1em;
		text-align: center;
	}
	.mo_box h2 img{
		width: 100%;
		padding: 10vw 0 0;
	}
	.mo_box h3{
		font-weight: 500;
		font-size: 3.8vw;
		letter-spacing: 0.05em;
		padding: 13vw 0 0;
		line-height: 1.5;
	}

/* リスト部分 */
	.sample_text01 > ul{
		text-align:left;
		margin-left: 10vw;
		margin-top: 3vw;
	}
	.sample_text01 > ul > li{
		position:relative;
		margin-bottom: 2vw;
	}
	.sample_text01 > ul > li:first-of-type{
		font-size: 5vw;
		font-weight: 500;
	}
	
	.sample_text01 > ul > li.s_icon_01::before{/* 丸 */
		position: absolute;
		content: "";
		background: #ffffff;
		border-radius: 100px;
		width: 4vw;
		height: 4vw;
		border: 1px #EA8B1E solid;
		top: 1.2vw;
		left: -6vw;
	}
	.sample_text01 > ul > li.s_icon_02::before{/* 四角 */
		position: absolute;
		content: "";
		background: #ffffff;
		border-radius: 3px;
		width: 3.5vw;
		height: 3.5vw;
		border: 1px #EA8B1E solid;
		top: 1.2vw;
		left: -6vw;
	}
	.sample_text01 > ul > li.s_border{
		margin-top: 9vw;
	}
	.sample_text01 > ul > li.s_border::after{/* ライン */
		position: absolute;
		content: "";
		width: 78vw;
		border: 1px #EA8B1E solid;
		top: -4.5vw;
		left: -7.3vw;
		border-top: dashed 1px #707070;
		border-right: 0;
		border-left: 0;
		border-bottom: 0;
	}

	
	/* サンプル画像と資料画像 */
	.sample_in_box{
		padding: 7vw 0 10vw 0;
	}

	/* LP */
	.sample_in01 img{
		width: 50%;
	}
	.sample_in01 h4{
		padding: 5vw 0 5vw 0;
		margin: 6vw 0 6vw 0;
		background: #fff;
	}

	/* カタログ */
	.sample_in02{
		padding-top: 18vw;
	  }
	.sample_in02 img{
		width: 50%;
	}


	.modal-footer {
		padding: 0 0 10vw 0;
		text-align: center;
		border-top: none;
	  }
	/* ロゴ */
	.mo_logo img{
		width: 50vw;
	}

	/* 閉じる */
	.close {
		float: left;
		font-weight: normal;
		line-height: 0;
		color: transparent;
		text-shadow: none;
		filter: alpha(opacity=20);
		opacity: 1;
		padding: 0px 30px 20px 0;
	  }
}




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

	パンくずリスト

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

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


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

	#breadcrumb > ul {
		max-width: 1120px;
		width: 100%;
		padding: 0 10px;
		margin: 0 auto;
		font-size: 0;
	}
	#breadcrumb > ul > li {
		display: inline-block;
		font-size: 14px;
	}
	#breadcrumb > ul > li a{
		color: #fdef4c;
	}
	#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;
		display: none;
	}

	#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: '>';
	}
}

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

	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;
}





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

	共通スクロールバーデザイン

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

/* 新構文 ※2022現在 Firefoxのみ
------------------------------------------- */
html {
	scrollbar-color: #c1c1c1 #f1f1f1; /* サム(つまみ)カラー トラックカラー */
	scrollbar-width: thin; /* auto ブラウザ準拠  thin 狭い */
}


/* 旧構文
------------------------------------------- */
/* スクロールバーの幅 */
::-webkit-scrollbar {
	width: 8px;
}

/* スクロールバーのサム(つまみ) */
::-webkit-scrollbar-thumb {
	background-color: #c1c1c1;
}
::-webkit-scrollbar-thumb:hover {
	background-color: #c1c1c1;
}

/* スクロールバーのトラック */
::-webkit-scrollbar-track {
	background-color: #f1f1f1;
}


/* 幅1366px以上ディスプレイ用 スクロールバーの幅
----------------------------------------------- */
@media (min-width: 1366px) {
	html {
		scrollbar-width: auto; /* auto ブラウザ準拠  thin 狭い */
	}
	::-webkit-scrollbar {
		width: 17px;
	}
}





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

	指定クラスのスクロールバーデザイン　.scrollbar

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

/* スクロールバーの設定 */
.scrollbar {
	overflow-y: auto;
}


/* 新構文 ※2022現在 Firefoxのみ
------------------------------------------- */
/* スクロールバーのカラー*/
.scrollbar {
	scrollbar-color: #c1c1c1 #f1f1f1; /* サム(つまみ)カラー トラックカラー */
	scrollbar-width: thin; /* auto ブラウザ準拠  thin 狭い */
}


/* 旧構文
------------------------------------------- */
/* スクロールバーの幅 */
.scrollbar::-webkit-scrollbar {
	width: 8px;
}

/* スクロールバーのサム(つまみ) */
.scrollbar::-webkit-scrollbar-thumb {
	background-color: #c1c1c1;
}
.scrollbar::-webkit-scrollbar-thumb:hover {
	background-color: #c1c1c1;
}

/* スクロールバーのトラック */
.scrollbar::-webkit-scrollbar-track {
	background-color: #f1f1f1;
}





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

	IEハック

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

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