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

@import url('https://fonts.googleapis.com/css2?family=Amiri:wght@400;700&family=Noto+Sans+JP:wght@400;700&display=swap');

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

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

1.全体
2.共通フォーマット（ボタンデザインなど）
3.メインビジュアル
4.タイトル下テキスト
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: #e1f8fb;
}

/*全体の設定/フォントなど*/
.js-main{
	text-align: center;
	/*font-size:1.3rem;*/
	line-height: 1.5;
	letter-spacing: 0.07em;
	font-family:'Noto Sans JP','Helvetica Neue', Arial,'Hiragino Kaku Gothic ProN','Hiragino Sans', Meiryo, sans-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:100%;
	max-width:980px;
	margin:auto;
}


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

/*ボタン*/
.btn01 {
  display: inline-block;
  padding: 0.5em 1em;
  color: #fff;
  /*border-radius: 25px;*/
  background-color: #000;
  border: none;
  cursor: pointer;
  margin: 0.8em 5px;
}

.btn02 {
  display: inline-block;
  padding: 0.15em 3em 0em;
  color: #fff;
  /*border-radius: 25px;*/
  background-color: #2ca9bf;
  border: none;
  cursor: pointer;
  margin-top:  1em;
}
@media screen and (max-width: 768px){
	.btn01{
		 padding: 0.1em 3em;
	}
	.btn02{
		 padding: 0.15em 3em 0em;
	}
}

/*フォント*/
/*Amiri*/
.font-01{
	font-family: 'Amiri', serif;
}



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

.main-visual{
	width:100%;
	padding:50px 20px;
	
	/*background-color: #f8f5f0;*/
	line-height: 0;
}
.main-visual img {
	width:100%;
	/*max-width: 980px;*/
}

h1{
	margin:0;
	line-height: 0;
}

.main-visual_img{
	position: relative;	
	width:100%;
	max-width:980px;
	height:60vw;
	max-height:600px;
	
	margin:auto;
}
.main-visual_img01{
	position: absolute;
	top:3%;
	left:2%;
	width:100%;
}
.main-visual_img02{
	position: absolute;
	width:100%;
}
.main-visual_img03{
	position: absolute;
	top:5%;
	left:48%;
	width:6%;
}
.main-visual_img04{
	position: absolute;
	top:60%;
	left:35%;
	width:30%;
	filter: drop-shadow(5px 5px 5px #000);
}

/*SP調整*/
@media (max-width: 768px) {
	.main-visual{
		padding:20px 10px;
	}
	.main-visual_img{
		width:100%;
		max-width:1040px;
		height:100vw;
		max-height:1040px;
	}
	.main-visual_img01{
		top:4%;
		left:1%;
		width:100%;
	}
	.main-visual_img03{
		top:4%;
		left:48%;
		width:9%;
	}
	.main-visual_img04{
		top:65%;
		left:28%;
		width:45%;
	}
}



/*ふわふわエフェクト*/
/* 回転するアニメーション */
@keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}
/* このクラスをつけると回転を無限に繰り返します */
.anime-fuwafuwa {
  animation: 4s fuwafuwa infinite;
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
4.タイトル下テキスト
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.main-under{
	margin:auto;
	padding-top:2em;
	padding-bottom:4em;
	text-align: center;
}
@media (max-width: 768px) {
	.main-under img{
		width:70%;
	}
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
5.アイテム
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.contents-item{
	width:100%;
}

/*アイテムエリア*/
.contents-item .item-box{
	padding-bottom:200px;
}
@media (max-width: 768px) {
	.contents-item .item-box{
		padding-bottom:10em;
	}
}

/*見出し*/
.item-t_wrapper{	
	width:100%;
	max-width:1200px;
	height: 61.583333vw;
	max-height:739px;
	position:relative;
	background-size:cover;
	
	margin:auto;
}
@media screen and (max-width: 768px){
	.item-t_wrapper{
		height: 143.22916vw;
	}
}
/*見出し 背景画像変更*/
#item01 .item-t_wrapper{
	background-image: url(https://www.joint-space.co.jp/tieup/haruka_yamazaki/img/item01_01.jpg) ;
}
#item02 .item-t_wrapper{
	background-image: url(https://www.joint-space.co.jp/tieup/haruka_yamazaki/img/item02_01.jpg) ;
}
#item03 .item-t_wrapper{
	background-image: url(https://www.joint-space.co.jp/tieup/haruka_yamazaki/img/item03_01.jpg) ;
}
#item04 .item-t_wrapper{
	background-image: url(https://www.joint-space.co.jp/tieup/haruka_yamazaki/img/item04_01.jpg) ;
}
#item05 .item-t_wrapper{
	background-image: url(https://www.joint-space.co.jp/tieup/haruka_yamazaki/img/item05_01.jpg) ;
}
@media screen and (max-width: 768px){
	#item01 .item-t_wrapper{
		background-image: url(https://www.joint-space.co.jp/tieup/haruka_yamazaki/img/item01_01_sp.jpg) ;
	}
	#item02 .item-t_wrapper{
		background-image: url(https://www.joint-space.co.jp/tieup/haruka_yamazaki/img/item02_01_sp.jpg) ;
	}
	#item03 .item-t_wrapper{
		background-image: url(https://www.joint-space.co.jp/tieup/haruka_yamazaki/img/item03_01_sp.jpg) ;
	}
	#item04 .item-t_wrapper{
		background-image: url(https://www.joint-space.co.jp/tieup/haruka_yamazaki/img/item04_01_sp.jpg) ;
	}
	#item05 .item-t_wrapper{
		background-image: url(https://www.joint-space.co.jp/tieup/haruka_yamazaki/img/item05_01_sp.jpg) ;
	}
}

/*見出し タイトル周り*/
.item-t_text{
	position: absolute;
	right:10%;
	bottom:20%;
}
@media screen and (max-width: 768px){
	.item-t_text{
		width:75%;
		right:5%;
		bottom:8%;
	}
}
/*見出し 左右入れ替え:タイトルが左*/
.text-left .item-t_text{
	right:auto;
	left:10%;
}


/*コラージュエリア*/
.item_img-area01{
	margin:4em auto;
	position:relative;
	
	width:90vw;
	max-width:780px;
	height:133vw;
	max-height:1150px;
}
.item_img-area01 img{
	width:100%;
}
.item_img-area01_01{
	position:absolute;
	width:56.1538%;
	top:0;
	left:0;
}
.item_img-area01_02{
	position:absolute;
	width:48.5897%;
	top:20%;
	right:0;
	z-index: -1;
}
.item_img-area01_03{
	position:absolute;
	width:37.5641%;
	top:58%;
	left:11%;
}
.item_img-area01_04{
	position:absolute;
	width:32.9487%;
	right:15.4%;
	bottom:0;
}
/*コラージュエリア 左右入れ替え:タイトルが右*/
.text-right .item_img-area01_01{
	top:0;
	left:auto;
	right:0;
}
.text-right .item_img-area01_02{
	top:20%;
	right:auto;
	left:0;
}
.text-right .item_img-area01_03{
	top:58%;
	left:auto;
	right:11%;
}
.text-right .item_img-area01_04{
	right:auto;
	left:15.4%;
	bottom:0;
}


/*アイテムリンク*/
.item_link{
	margin: 80px auto 0;
	width:100%;
	max-width: 980px;
}
.item_link_box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: center;
	align-items: center;
	
	width:30%;
	margin:auto;
}
.item_link_box img{
	width:100%;
}
.item_link_box_in-left{
	width:40%;
}
.item_link_box_in-right{
	width:60%;
	
	text-align: left;
}
@media (max-width: 768px) {
	.item_link{
		margin: 3em auto 0;
	}
	.item_link_box{
		width:70%;
	}
}

.link_text01{
	color:#7fd1e0;
	margin-bottom:1.5em;
}
.link_text02 , .link_text03{
	font-size:0.8em;
	line-height: 1.3;
}




/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
6.プロフィール
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.profile{
	
}

.profile_container{
	margin:auto;
	width:300px;
	padding:50px;
	/*background-color: #fef0f1;*/
}
@media (max-width: 768px) {
	.profile_container{
		width:70%;
		padding:10%;
	}
}

.profile_img img{
	border-radius: 50%;
}
@media (max-width: 768px) {
	.profile_img img{
		width:50%;
	}
}
.profile_name_head{
	margin-top:2em;
	font-size:0.5em;
}
.profile_name{
	margin-top:0.25em;
	font-size:1.5em;
}
.profile_name_sub{
	margin-top:-0.2em;
	font-size:0.6em;
}
.profile_text{
	margin-top:1.5em;
	font-size:0.7em;
	text-align: justify;
	line-height:1.8;
}
.profile_link{
	margin-top:1em;
}
.profile_link img{
	width:60%;
}


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

.contents-footer{
	margin:4em auto;
}
.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-bottom:80px;
	/*padding:150px 0 30px;*/
	width:100%;
	
	/*background-color: #fff;*/
}
.footer-title img{
	width:400px;
}
@media (max-width: 768px) {
	.footer-title{
		/*padding:5em 0 2em;*/
	}
	.footer-title img{
		width:70%;
	}
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
9.リンクエリア
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.contents-link{
	padding-top:50px;
	padding-bottom:50px;
	width:100%;
	background-color: #fff;
}

.contents-link_t{
	margin-bottom: 2em;
}
.contents-link_t .t01{
	display: inline-block;
	padding: 0 1em;
	background-color: #242424;
	color:white;
}
.contents-link_t .t02{
	padding-top:0.2em;
	font-size:0.8em;
}


/*リンクエリア：フレックスボックス*/
.contents-link_box{
	/*フレックスボックスの設定*/
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	/*フレックスボックスの要素を左寄せ*/
	justify-content: left;
	
	text-align: left;
	margin-bottom: 2em;
}
.contents-link_box > div {
	/*列数と間の余白の設定*/
	width: calc( ( 100% - 90px ) / 4 );
	margin-right: 30px;
}
/*右端のマージンをゼロ設定*/
.contents-link_box > div:nth-child( 4n ) {
	margin-right: 0;
}
.contents-link_boxitem{
	padding-bottom:30px;
}
.contents-link_boxitem img{
	width:100%;
}
@media (max-width: 768px) {
	.contents-link_box{
		padding:0 4vw;
	}
	.contents-link_box > div {
		/*列数と間の余白の設定*/
		width: calc( ( 100% - 1vw ) / 2 );
		margin-right: 1vw;
	}
	.contents-link_box > div:nth-child( 2n ) {
		margin-right: 0;
	}
}







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



