@charset "utf-8";
/* ==========================================================

common.css

============================================================ */


/* -----------------------------------------------------------

◆◆◆BASE◆◆◆

 -------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700|Montserrat:400,700&display=swap&subset=japanese');

*{font-family:'Montserrat',"Arial",'Noto Sans JP', "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;}

@media (-ms-high-contrast: none) {
	*{font-family:'Montserrat',"Arial",'Noto Sans JP',  "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;}
}

html{
    -moz-text-size-adjust:100%;
    -webkit-text-size-adjust:100%;
    -ms-text-size-adjust:100%;
}

body{
	color:#000;
	font-weight: 400;
	font-feature-settings: "palt";
}


@media print, screen and (min-width:768px){ /* 表示領域が768px以上の場合に適用するスタイル */
/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

  PC

  _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_*/	
	
/* ------------------------------------------------------------

  common

  ------------------------------------------------------------ */

	body{
		font-size: 15px;
		font-size: 1.5rem;/*-15px-*/
		line-height: 1.8;
		min-width: 1200px;
	}

	.pc_br{display: block;}

	/* レイアウト
	--------------------------------------------------------*/
	#logo{
		position: absolute;
		left: 20px;
		top: 20px;
		width: 220px;
	}
	
	#logo img{width: 100%;}
	
	.inner01{
		width: 1000px;
		margin: 0 auto;
		padding: 100px 0 ;
	}

	/* 見出し
	--------------------------------------------------------*/
	.heading01{
		font-size: 5rem;
		letter-spacing: 1rem;
		text-align: center;
		margin-bottom: 80px;
		line-height: 1;
		position: relative;
	}
	
	.heading01::before,.heading01::after{
		content: '';
		width: 3px;
		height: 0;
		background: #000;
		display: inline-block;
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto;
		transform: rotate(15deg);
		transition: all 1.2s ease-out;
	}
	
	.heading01::before{left: 300px;}
	.heading01::after{right: 300px;}
	
	.heading01.isActive::after,.heading01.isActive::before{height: 65px;}

	
	/* Table
	--------------------------------------------------------*/
	.block_type01{
		width: 100%;
		text-align: center;
	}
	
	.block_type01 dt{
		margin-bottom: 15px;
		font-weight: bold;
	}
	
	.block_type01 dd{margin-bottom: 60px;}
	
	.block_type01 dd a{
		color: #000;
		text-decoration: underline;
	}
	
	.block_type01 dd:hover{text-decoration: none;}

	/*　Footer
	--------------------------------------------------------*/
	#footer{
		background: #000;
		padding: 5px;
		text-align: center;
		color: #fff;
		font-size: 1.3rem;
	}

}


@media only screen and (max-width:767px){ /* 表示領域が767px以下の場合に適用するスタイル */
/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

スマートフォン（iPhone,Android)

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_*/

/* ------------------------------------------------------------

common

------------------------------------------------------------ */

	body{
		font-size: 15px;
		font-size: 1.5rem;/*-15px-*/
		line-height: 1.8;
		font-feature-settings: "palt";
	}

	.sp_br{display: block;}
	

	
	/*　レイアウト
	--------------------------------------------------------*/
	#wrap_all{
		overflow: hidden;
		min-width: 320px;
	}

	#logo{
		position: absolute;
		right: 20px;
		top: 20px;
		width: 40vw;
	}
	
	#logo img{width: 100%;}
	
	.inner01{
		padding: 40px 20px;
	}

	/* 見出し
	--------------------------------------------------------*/
	.heading01{
		font-size:3rem;
		letter-spacing: 1.5rem;
		text-align: center;
		margin-bottom: 40px;
		line-height: 1;
		position: relative;
	}
	
	.heading01::before,.heading01::after{
		content: '';
		width: 2px;
		height: 0;
		background: #000;
		display: inline-block;
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto;
		transform: rotate(15deg);
		transition: all 1s ease-out;
	}
	
	.heading01::before{left: 2vw;}
	.heading01::after{right: 2vw;}
	
	.heading01.isActive::after,.heading01.isActive::before{height: 45px;}

	/* Table
	--------------------------------------------------------*/
	.block_type01{
		width: 100%;
		text-align: center;
	}
	
	.block_type01 dt{
		margin-bottom: 15px;
		font-weight: bold;
	}
	
	.block_type01 dd{margin-bottom: 60px;}
	
	.block_type01 dd a{
		color: #000;
		text-decoration: underline;
	}

	/*　Footer
	--------------------------------------------------------*/
	#footer{
		background: #000;
		padding: 5px;
		text-align: center;
		color: #fff;
		font-size: 1.3rem;
	}


}

@media only screen and (max-width:321px){ 
	.heading01::before{left: 0vw;}
	.heading01::after{right: 0vw;}
}