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

/*googlefonts*/

/*Adobefonts*/
@import url("https://use.typekit.net/jme5pcg.css");
/*
font-family: "goudy-old-style", serif;
font-weight: 400;
font-style: normal;
*/

/*カスタム変数*/
/*カラー用*/
:root {
  --color-beige:#c5beb2 ;
}

:root {
  --color01:var(--color-beige) ;
}


/*================================
目次
================================

■FSの設定打消し
■PC版とSP版での表示切替設定（見出しや改行などPCとSPの表示を分けたい場合に使用）

1.全体
2.共通フォーマット（ボタンデザインなど）
3.メインビジュアル
4.イントロダクション
5.アイテム
6.プロフィール
7.フッター

*/

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
■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;
	background-color: #fff;
}
@media screen and (max-width:768px) {
	.fs-c-breadcrumb{
		padding-top:80px;
	}
}

/* 「現在登録されている商品はありません。」を非表示 */
.fs-c-noResultMessage { display: none }

/* 文字サイズ調整 */
.fs-l-main{
	font-size:1.1em;
}

/*共通フッターのマージン調整*/
.footer-sp{
	margin-top: 0 !important;
}

/*自動生成商品エリアのマージンゼロ/余白が発生するため*/
.fs-c-productList{
	margin:0;
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
■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: #e6e4e3;
}

/*全体の設定/フォントなど*/
.js-main{
	text-align: center;
	/*font-size:1.3rem;*/
	line-height: 2;
	letter-spacing: 0.07em;
	font-family: 'goudy-old-style' , 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', '游明朝','Yu Mincho', '游明朝体', 'YuMincho','ＭＳ Ｐ明朝', 'MS PMincho', serif;
	font-weight: 400;
	color:#000;
}
@media screen and (max-width:768px) {
	.js-main{
		padding-top:0;
	}
}

/*リンクの設定*/
.js-main a{
	text-decoration:none;
	color:#222;
}
.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;
	}
}

/*PC1200px、SP100%*/
.js-container{
	width:100%;
	max-width:1200px;
	margin:auto;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
2.共通フォーマット（ボタンデザインなど）
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*ボタン*/
.btn01 a{
	display: block;
  width: 80%;
  max-width:400px; 
  padding: 0.8em 0 0.7em 0;
  font-size: 1.5em;
  position: relative;
  text-align: center;
  text-decoration: none;
  display: block;
  margin: 1em auto;
  color: #000;
  background: #fff;
  line-height: 1;
  /*border-radius: 50px;*/
  transition: all .2s;
	
  border: 1px solid #000;
}
.btn01 a:hover {
	background-color: #000;
	border-color: #000;
	color: #fff;
	opacity:1;
	-moz-opacity:1;
	filter:alpha(opacity = 100);
}

/*ボタン019*/
.button019 a {
	display: block;
    background: #fff;
    /*border-radius: 3px;*/
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
	width:100%;
    max-width: 300px;
    padding: 5px 10px;
    color: #000;
    transition: 0.3s ease-in-out;
	font-size:1em;
    /*font-weight: 500;*/
	border:solid 1px #000;
	letter-spacing: 0.5em;
}
.button019 a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 1rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 1px currentColor;
  border-right: solid 1px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.button019 a:hover {
 	background: #000;
 	color: #FFF;
	opacity:1;
	-moz-opacity:1;
	filter:alpha(opacity = 100);
}
.button019 a:hover:after {
  right: 1.4rem;
}



/*背景色*/
.contents_bgcolor{
	width:100%;
	background-color: #fff;
}

/*共通マージン設定*/
.main-margin{
	margin: 100px 0;
}

/*共通padding設定*/
.main-padding{
	padding: 5em 0;
}


/*見出し*/
.head_d01{
	margin-bottom:4em;
}
.head_d01 .text01{
	display: inline-block;
	background-color: #000;
	color:#fff;
	font-size:0.7em;
	padding: 0.1em 2em;
	margin-bottom:2em;
}
.head_d01 .text02{
	font-size:2em;
	letter-spacing: 0em;
	line-height:1.2;
}


/*フォント*/
/*フォント指定*/
.font-01{ /*明朝系*/
	font-family: 'goudy-old-style' , 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', '游明朝','Yu Mincho', '游明朝体', 'YuMincho','ＭＳ Ｐ明朝', 'MS PMincho', serif;
}
.font-02{ /*ゴシック系*/
	font-family: 'Avenir','Helvetica Neue','Helvetica','Arial', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', sans-serif;
}

.bold{ /*太字*/
	font-weight: bold;
}





/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
3.メインビジュアル
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-visual{
	margin:auto;
	width:100%;
	max-width:1200px;
}

.main-title{
	position: relative;
}
.main-title:before{
	content: "";
	display: block;
 	padding-top:65.0833333%;/*コンテンツの縦横比に応じて変更*/
}
.main-title .title-img01,
.main-title .title-img02,
.main-title .title-img03
{
	position: absolute;
	top:0;
}

.main-title img{
	width:100%;
	height: auto;
}

@media screen and (max-width: 768px){ 
	.main-title:before{
		padding-top:156.25%;/*コンテンツの縦横比に応じて変更*/
	}
}



/*▼時差での表示*/
/*01*/
.fadein_title-img01 {
    animation: fadein_title-img01 1s ease-in 0s 1 normal;
    -webkit-animation: fadein_title-img01 1s ease 0s 1 normal;
}
@keyframes fadein_title-img01 {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadein_title-img01 {
    0% {opacity: 0}
    100% {opacity: 1}
}
/*02*/
.fadein_title-img02 {
    animation: fadein_title-img02 1.5s ease-in 0s 1 normal;
    -webkit-animation: fadein_title-img02 1.5s ease 0s 1 normal;
}
@keyframes fadein_title-img02 {
    0% {opacity: 0}
	20% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadein_title-img02 {
    0% {opacity: 0}
	20% {opacity: 0}
    100% {opacity: 1}
}
/*03*/
.fadein_title-img03 {
    animation: fadein_title-img03 2.5s ease-in 0s 1 normal;
    -webkit-animation: fadein_title-img03 2.5s ease 0s 1 normal;
}
@keyframes fadein_title-img03 {
    0% {opacity: 0}
	30% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadein_title-img03 {
    0% {opacity: 0}
	30% {opacity: 0}
    100% {opacity: 1}
}





/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
4.イントロダクション
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-intro{
	min-height: 90vh;
	width:100%;
}
/*PC*/
@media (min-width: 769px) {
	.main-intro{
		background: no-repeat center/cover url("https://www.joint-space.co.jp/category_common/lialaxpg/lpg_10th/img/intro_back_pc.jpg?timestamp=2308010002") ;
	}
}
/*SP*/
@media (max-width: 768px) {
	.main-intro{
		background: no-repeat center/cover url("https://www.joint-space.co.jp/category_common/lialaxpg/lpg_10th/img/intro_back_sp.jpg?timestamp=2308010002") ;
	}
}

.main-intro_contents{
	background-color: rgba(255,255,255,0.5);
	width:100%;
	min-height: 90vh;
	
	display: flex;
  	justify-content: center;
  	align-items: center;
}
.main-intro_contents-in{
	
}
.main-intro_head{
	width:40%;
	max-width:161px;
	margin-left:auto;
	margin-right:auto;
}
.main-intro_head img{
	width:100%;
}
.main-intro_text01{
	font-size:2em;
	margin-bottom:0.5em;
}
.main-intro_text02{
	font-size:0.8em;
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
5.メニュー
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-menu{
	
}

.heading_text_area{
	margin-bottom:3em;
}
.heading_text_area .heading_text01{
	font-size:1.5em;
	color: var(--color01);
}
.heading_text_area .heading_text02{
	font-size:0.7em;
}

.main-menu_box img{
	width:100%;
}

.main-menu_box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: flex-start;
	
	width:90%;
	max-width:500px;
}
.main-menu_box > div {
	/*列数と間の余白の設定*/
	width: calc( ( 100% - 80px ) / 3 );
	margin-right: 40px;
	margin-bottom:40px;
}
/*右端のマージンをゼロ設定*/
.main-menu_box > div:nth-child( 3n ),
.main-menu_box > div:last-child{
	margin-right: 0;
}
/*SP*/
@media (max-width: 768px) {
	.main-menu_box > div {
		width: calc( ( 100% - 10% ) / 3 );
		margin-right: 5%;
	}
}


.main-menu_item_text{
	margin-top:1em;
}
.main-menu_item_text01,
.main-menu_item_text02{
	line-height:1.2;
}
.main-menu_item_text02{
	margin-top:0.5em;
	color: var(--color01);
}


/*終了イベント用*/
.fin-event{
	opacity: 0.5;
	font-size:0.8em;
	margin-top:5em;
}

.fin-event .main-menu_box > div {
	/*列数と間の余白の設定*/
	width: calc( ( 100% - 60px ) / 4 );
	margin-right: 20px;
	margin-bottom:20px;
}
/*右端のマージンをゼロ設定*/
.fin-event .main-menu_box > div:nth-child( 4n ),
.fin-event .main-menu_box > div:last-child{
	margin-right: 0;
}
/*SP*/
@media (max-width: 768px) {
	.fin-event{
		margin-top:3em;
	}
	.fin-event .heading_text_area{
		margin-bottom:2em;
	}
	.fin-event .main-menu_box > div {
		width: calc( ( 100% - 9% ) / 4 );
		margin-right: 3%;
	}
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
6.contents
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/


.main-contents_box{
	
}


/*共通*/
.main-contents_item01{
	
}
.main-contents_item01 .item01_02{
	font-size:1.4em;
	letter-spacing: 0.25em;
	font-weight:500;
	line-height:1.25;
}
.main-contents_item02 img{
	width:100%;
}

.main-contents_item03{
	background-color: #f9f8f8;
	text-align: justify;
	font-size:0.8em;
}
.main-contents_item03 .item03_head{
	font-size:1.7em;
	margin-bottom:1em;
	line-height: 1.5;
}
.main-contents_item03 .item03_01{
	margin-bottom:3.5em;
}

.main-contents_item03 .pointtext{
	margin-top:1em;
	display: inline-block;
	background-color: indianred;
	color:#fff;
	font-size:0.9em;
	padding: 0.2em 1em;
	line-height: 1.5;
}



/*SP*/
@media (max-width: 768px) {
	.main-contents_box{
		margin-bottom:5em;
	}
	.main-contents_item01{
		margin-bottom:1.5em;
	}
	.main-contents_item01 .item01_01{
		margin: auto auto 1.7em;
		width:20%;
		max-width:70px;
	}
	.main-contents_item01 .item01_02{
		padding-left:1em;
		font-size:1.5em;
	}
	.main-contents_item02{
		margin:auto;
		width:85%;
	}
	.main-contents_item03{
		margin: -10em auto 0;
		width:95%;
		padding:13em 20px 50px;
	}
	.main-contents_item03 .button019{
		font-size:1.3em;
	}
}

/*PC*/
@media (min-width: 769px) {
	.main-contents_box{
		margin:auto auto 150px;
		width:870px;
	}
	.main-contents_item01{
		display: -webkit-flex;
		display: flex;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		/*フレックスボックスの要素を左寄せ*/
		justify-content: flex-start;
		align-items: baseline;
		
		width:550px;
	}
	.main-contents_item01 .item01_02{
		padding-left:50px;
	}
	.main-contents_item02{
		width:314px;
		margin-top:-140px;
	}
	.main-contents_item03{
		width:777px;
	}
	/*テキストが右*/
	.text-right .main-contents_item01{
		margin-left:320px;
		padding: 30px 0px 40px 70px;
	}
	.text-right .main-contents_item02{
		margin-left:0;
	}
	.text-right .main-contents_item03{
		margin: -290px 0 auto 93px;
		padding:80px 80px 80px 300px;
	}
	/*テキストが左*/
	.text-left .main-contents_item01{
		margin-right:320px;
		padding: 30px 70px 40px 30px;
	}
	.text-left .main-contents_item02{
		margin-left:550px;
		margin-right:0;
	}
	.text-left .main-contents_item03{
		margin: -290px 93px auto 0;
		padding:80px 300px 80px 80px;
	}
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
7.フッターイメージ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-footerimg{
	display: flex;
  	justify-content: center;
  	align-items: center;
	min-height: 60vh;
	
	background: 
		url("https://www.joint-space.co.jp/category_common/lialaxpg/lpg_10th/img/left.png") left bottom / 30% no-repeat,
		url("https://www.joint-space.co.jp/category_common/lialaxpg/lpg_10th/img/right.png") right bottom / 30% no-repeat,
		#f5f2ed
		;
	width:100%;
}
/*SP*/
@media (max-width: 769px) {
	.main-footerimg{
		background: 
		url("https://www.joint-space.co.jp/category_common/lialaxpg/lpg_10th/img/left.png") left bottom / 50% no-repeat,
		url("https://www.joint-space.co.jp/category_common/lialaxpg/lpg_10th/img/right.png") right bottom / 50% no-repeat,
		#f5f2ed
		;
	}
}

.main-footerimg_contents{
	
}
.main-footerimg_head{
	width:50%;
	max-width:300px;
	margin: auto;
}


/*その2*/
.main-footerimg02{
	width:100%;
}
/*PC*/
@media (min-width: 769px) {
	.main-footerimg02{
		background: no-repeat center/cover url("https://www.joint-space.co.jp/category_common/lialaxpg/lpg_10th/img/footerimg_back_pc.jpg") ;
		min-height: 80vh;
	}
}
/*SP*/
@media (max-width: 768px) {
	.main-footerimg02{
		background: no-repeat center/cover url("https://www.joint-space.co.jp/category_common/lialaxpg/lpg_10th/img/footerimg_back_sp.jpg") ;
		min-height: 80vh;
	}
}





/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
9.ストック
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-brand{
	
}

.brand_box{
	width:80%;
	max-width:800px;
	margin:auto;
}

@media (min-width: 769px) {
	/*枠：フレックスボックス*/
	.brand_box{
		/*フレックスボックスの設定*/
		display: -webkit-flex;
		display: flex;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		/*フレックスボックスの要素を左寄せ*/
		justify-content: flex-start;
	}
	.brand_box > div {
		/*列数と間の余白の設定*/
		width: calc( ( 100% - 30px ) / 2 );
		margin-right: 30px;
		margin-bottom:30px;
	}
	/*右端のマージンをゼロ設定*/
	.brand_box > div:nth-child( 2n ),
	.brand_box > div:last-child{
		margin-right: 0;
	}
	/*.brand_box > div:nth-last-child(-n+2){
		margin-bottom: 30px;
	}*/
}

/*中身：フレックスボックス*/
.brand_box_item{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: flex-start;
	align-items: center;
	
	background-color: #f5f5f5;
}
.brand_box_item01{
	width:47%;
	line-height: 0;
}
.brand_box_item02{
	width:53%;
}
/*SP*/
@media (max-width: 768px) {
	.brand_box_item{
		margin-bottom:30px;
	}
}




.brand_box_logo{
	height:60px;
	margin-bottom:1em;
}
.brand_box_logo img{
	height:100%;
	width:auto;
}

.brand_box_item01 img{
	width:100%;
}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
10.フッター
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.contents-footer{
	margin:0 auto;
	padding:4em 0;
	background-color: #fff;
}
.contents_brand_top{
	margin:3em auto;
}
.brand_under-text{
	margin-top:1em;
}

/*SP*/
@media (max-width: 768px) {
	.contents_brand_top{
		width:50%;
	}
}

/*タイトル画像部分*/
.footer-title{
	margin:0 auto;
	padding:2em;
}
.vertical-line{ /*線*/
	width:1px;
	height:100px;
	background-color: #222;
	margin:1em auto;
}
.footer-text01{
	font-size:3em;
}
.footer-text02{
	font-size:0.8em;
}
/*SP*/
@media (max-width: 768px) {
	.footer-title img{
		width:50%;
	}
	.vertical-line{ /*線*/
		height:50px;
	}
	.footer-text01{
		font-size:1.5em;
	}
	.footer-text02{
		font-size:0.7em;
	}
}


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


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ex.delighters：スクロールアニメーション
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/


/*animation-ふわっと出現*/
/* 基本のスタイル */
.animation.delighter {
	  transition: all .8s ease-out;
      transform: translateX(0%);
      opacity: 0;
   }
 
/* スタート時のスタイル */
   .animation.delighter.started {
      transform:none;
	  opacity:1;
   }
 
/* エンド時のスタイル */
   .animation.delighter.started.ended {
      
   }



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ex.delighters：イントロスクロールアニメーション
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/


/*animation-intro　-時差でフェード出現*/
/* 基本のスタイル */
.animation-intro.delighter {
	  transition: all 1s 0.7s ease-out;
      opacity: 0;
   }
 
/* スタート時のスタイル */
   .animation-intro.delighter.started {
      transform:none;
	  opacity:1;
   }
 
/* エンド時のスタイル */
   .animation-intro.delighter.started.ended {
      
   }


