@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;600&display=swap');

/*================================
目次
================================

■FSの設定打消し
■PC版とSP版での表示切替設定（見出しや改行などPCとSPの表示を分けたい場合に使用）

1.全体
2.共通フォーマット（ボタンデザインなど）
3.メインビジュアル
4.アイテム SP版ベース/メディアクエリPC
5.インタビュー

ex:パンくずリスト
ex.フェードインエフェクト

*/

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
■FSの設定打消し
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.fs-l-main *{
	min-width: initial;
    min-width: auto;
    min-height: initial;
    min-height: auto;
}

/*メインエリアの横幅制限解除ここから*/
.fs-l-pageMain {
	max-width: 100%;
}

.fs-l-main{
	max-width: 100%;
	padding:0;
	margin:0;
}
/*メインエリアの横幅制限解除ここまで*/


.fs-c-breadcrumb{
	padding-top:80px;
}
@media screen and (max-width:768px) {
	.fs-c-breadcrumb{
		padding-top:80px;
	}
}

/* 「現在登録されている商品はありません。」を非表示 */
.fs-c-noResultMessage { display: none }

/* 文字サイズ調整 */
/*.fs-l-main{
	font-size:1.4em;
}*/

/* パンくずリスト位置調整 */
.fs-c-breadcrumb{
	display: none;
}

/*共通フッターのマージン調整*/
.footer-sp{
	margin-top: 0 !important;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
■PC版とSP版での表示切替設定（見出しや改行などPCとSPの表示を分けたい場合に使用）
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*例：brタグにclassを追加
PCのみで改行→pc <br class="pc">
SPのみで改行→sp <br class="sp">
※両方共通の改行の場合は<br>のみでOK

他、PCとSPで表示を分けたい部分にも使用可能
*/

@media screen and (min-width: 768px){   
  .pc { display:block; }
  .sp { display:none; }
}
@media screen and (max-width: 768px){   
  .pc { display:none; }
  .sp { display:block; }
}



/*================================
1.全体
================================*/

body{
/*背景色*/
	background-color: #fff;
}

/*全体の設定/フォントなど*/
.js-main{
	text-align: center;
	/*font-size:1.3rem;*/
	line-height: 1.75;
	letter-spacing: 0.07em;
	font-family:'Noto Serif JP',"游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight: 400;
}
@media screen and (max-width:768px) {
	.js-main{
		padding-top:0;
	}
}

/*リンクの設定*/
.js-main a{
	text-decoration:none;
	color:black;
}
.js-main a:hover,a:hover img{
	opacity:0.6;
    -moz-opacity:0.6;
    filter:alpha(opacity = 60);
}


/*widthなどの適応範囲をborder基準に変更*/
.js-main *, .js-main *:before, .js-main *:after{
	-webkit-box-sizing: border-box; /* Webkit */
	-moz-box-sizing: border-box; /* Firefox */
	box-sizing: border-box; /* 標準 */
}


/*SP版画像サイズ制御*/
@media screen and (max-width:768px) {
    /*　画面サイズが768px以下の時はここを読み込む　*/
	.js-main img{
	width:100%;
	height: auto;
	}
}

/*PC900px、SP100%*/
.js-container{
	width:980px;
	margin:auto;
}
@media screen and (max-width: 768px){   
	.js-container{
		width:100%;
	}
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
2.共通フォーマット（ボタンデザインなど）
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*ボタン*/
.btn01 {
  display: inline-block;
  padding: 0.7em 5em;
  color: #000;
  font-size:0.8em;
  /*border-radius: 25px;*/
  background-color: transparent;
  border: solid 1px #000;
  cursor: pointer;
  margin: 1.5em auto 0;
}
/*黒色*/
.btn_color01{
	background-color: #000;
	color:#fff;
}
/*小さいver*/
.btn-small{
	font-size:0.8em;
	padding: 0.5em 3em;
	margin-top:1em;
}
@media screen and (max-width: 768px){
	.btn01{
		 /*padding: 0.1em 3em;*/
	}
	.btn-small{
		 padding: 0.1em 2em;
	}
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
3.メインビジュアル
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-visual{
	margin:auto;
	width:100%;
	background-color: #fff;
	text-align: center;
	
	/*要素上下左右中央寄せ*/
	display: flex;
  	justify-content: center;
  	align-items: center;
	min-height: 100vh;
}
.main-visual .title-logo img{
	margin:auto;
	width:157px;
}
.main-visual .title-text_box{
	margin-top:70px;
}
.main-visual .title-text01{
	font-size:24px;
}
.main-visual .title-text02{
	font-size:14px;
	padding-top:1em;
	padding-bottom:1.5em;
	border-bottom:solid 1px #000;
}
.main-visual .title-text03{
	font-size:14px;
	padding-top:1.5em;
}
/*SP*/
@media screen and (max-width: 768px){
	.main-visual .title-logo img{
		width:30%;
	}
	.main-visual .title-text_box{
		margin-top:3em;
	}
	.main-visual .title-text01{
		font-size:1.1em;
	}
	.main-visual .title-text02{
		font-size:0.6em;
	}
	.main-visual .title-text03{
		font-size:0.6em;
	}
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
4.アイテム SP版ベース/メディアクエリPC
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-item_box{
	padding:10%;
}
.main-item_box .img-box img{
	width:100%;
}
.main-item_box .text-box{
	margin-top:1em;
}
.main-item_box .text-box_01{
	margin:auto;
	width:70%;
	border-bottom:solid 1px #000;
}
.main-item_box .text-box_01 .number{
	font-size: 1.8em;
}
.main-item_box .text-box_02{
	padding-top:1em;
	font-size: 0.7em;
}
.main-item_box .text-box_03{
	padding-top:0.4em;
	font-size: 1.2em;
	font-weight: 600;
}
/*PC*/
@media screen and (min-width: 768px){
	.main-item_box{
		padding:34px 0;
	}
	.main-item_box .img-box{
		width:50%;
	}
	.main-item_box .text-box{
		width:50%;
		
		/*上下中央配置*/
		display: flex;
  		justify-content: center;
  		align-items: center;
	}
	
	/*PC　配置*/
	.main-item_box .inner-box{
		/*フレックスボックスの設定*/
		display: -webkit-flex;
    	display: flex;
    	-webkit-flex-wrap: wrap;
    	flex-wrap: wrap;
		/*フレックスボックスの要素を中央寄せ*/
		justify-content: center;
		
		width:850px;
		margin:auto;
	}
	/*PC　配置 左画像*/
	.left .img-box{
		order: 1;
	}
	.left .text-box{
		order: 2;
		
	}
	/*PC　配置 右画像*/
	.right .img-box{
		order: 2;
	}
	.right .text-box{
		order: 1;
	}
	
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
5.インタビュー
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-interview{
	margin:120px auto 50px;
}
.main-interview .int-t{
	font-size:30px;
}
.main-interview .int-under-t{
	margin-top:1.5em;
	font-size:12px;
}

.int_innner-box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を中央寄せ*/
	justify-content: center;
	
	margin-top:1em;
	padding:3%;
}
.int_child{
	margin-right:30px;
	margin-bottom:50px;
	width:calc(50% - 30px / 2);
}
.int_child:nth-child(2n) {
	margin-right:0;
}
.int_child img{
	width:100%;
}
.int_text{
	padding-top:0.5em;
	text-align: left;
	font-size:0.5em;
	line-height: 1.3;
}
/*SP*/
@media screen and (max-width: 768px){
	.main-interview{
		margin:7em auto 2em;
	}
	.main-interview .int-t{
		font-size:1.4em;
	}
	.main-interview .int-under-t{
		font-size:0.6em;
	}
	.int_child{
		margin-right:3%;
		margin-bottom:3em;
		width:calc(50% - 3% / 2);
	}	
}



/*----------------------------------------
 ex:パンくずリスト　
----------------------------------------*/
.breadcrumb_box {
	width:100%;
	/*margin-top: 60px;*/
	font-size: 0.5em;
	text-align: center;
	/*border-top:black 1px dotted;*/
	background-color: white;
}
.breadcrumb_box .container{
	padding-top:15px;
	padding-bottom:15px;
}

@media (max-width: 768px) {
	.breadcrumb_box{
		margin-top: 0px;
		font-size: 0.5em;
	}
	.breadcrumb_box .container{
		padding-top:15px;
		padding-bottom:15px;
	}
}

.breadcrumb {
	padding-left:0;
	margin-left:0;
}

.breadcrumb li{
	display:inline;/*横に並ぶように*/
	list-style: none;
	/*font-weight: bold;*//*太字*/
}

.breadcrumb li:after {/* >を表示*/
	content: '>';
	padding: 0 3px;
	color: #555;
}

.breadcrumb li:last-child:after {
	content: '';
}

.breadcrumb li a {
	text-decoration: none;
	color: #000000;/*色*/
}

.breadcrumb li a:hover {
	text-decoration: underline;
}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ex.フェードインエフェクト
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.fadein-top {
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}



/*下から*/
.fadein {
	opacity : 0;
	transform: translateY(50px);
	transition: all 1s;
	-moz-transform: translateY(50px);
	-webkit-transform: translateY(50px);
	-o-transform: translateY(50px);
	-ms-transform: translateY(50px);
}
