﻿/*
-------------------------------------------------------

	font

-------------------------------------------------------
*/
@font-face {
	font-family: 'apr';
	src: url('../font/ACaslonPro-Regular.otf') format('otf');
}

@font-face {
	font-family: 'api';
	src: url('../font/ACaslonPro-Italic.otf') format('otf');
}

@font-face {
	font-family: 'aps';
	src: url('../font/ACaslonPro-Semibold.otf') format('otf');
}

@font-face {
	font-family: 'apb';
	src: url('../font/ACaslonPro-Bold.otf') format('otf');
}

/*
-------------------------------------------------------

	template layout

-------------------------------------------------------
*/
#body.active {
	position: fixed;
	width: 100%;
}

#wrapper {
	position: relative;
	max-width: 2000px;
	margin: 0 auto;
}

#container {
	margin-top: 80px;
}

.inner {
	position: relative;
	width: 1000px;
	margin: 0 auto;
}

.pcnone {
	display: none;
}

.spnone {
	display: inline-block;
}

/*
-------------------------------------------------------

	header

-------------------------------------------------------
*/
#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	min-width: 1200px;
	height: 80px;
	border-bottom: 1px solid #eee;
	background: rgba(255, 255, 255, 0.95);
	z-index: 5;
}

#header h1 img {
	width: 280px;
}

#header .flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 17px 30px;
	max-width: 2000px;
	margin: 0 auto;
}


/*
-------------------------------------------------------

	footer

-------------------------------------------------------
*/
address {
	min-width: 1200px;
	padding: 30px 0;
	text-align: center;
	background: #1f1f1f;
	font-style: normal;
	font-weight: 700;
	font-size: 12px;
	color: #fff;
}

/*
-------------------------------------------------------

	リンクタイプ設定

-------------------------------------------------------
*/
.link_type_01 {
	position: relative;
	display: block;
	padding: 17px 20px 17px 30px;
	border: 1px solid #0070bb;
	border-radius: 60px;
	background: url('../img/icon_link_type_01_off.png') no-repeat right 20px center #fff;
	font-weight: 700;
	font-size: 14px;
	color: #1f1f1f;
	transition: .2s;
}
.link_type_01.is-green {
	border-color: #199e91;
	background-image: url('../img/icon_link_type_01_g_off.png');
}

.link_type_01:hover {
	background: url('../img/icon_link_type_01_on.png') no-repeat right 20px center #0070bb;
	color: #fff;
}
.link_type_01.is-green:hover {
	background: url('../img/icon_link_type_01_g_on.png') no-repeat right 20px center #199e91;
}

/*
-------------------------------------------------------

	ヘッドライン設定

-------------------------------------------------------
*/
h2 {
	margin-bottom: 20px;
	line-height: 1.6;
	font-size: 20px;
	font-weight: 700;
}



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

		font

	-------------------------------------------------------
	*/
	@font-face {
		font-family: 'apr';
		src: url('../font/ACaslonPro-Regular.otf') format('otf');
	}

	@font-face {
		font-family: 'api';
		src: url('../font/ACaslonPro-Italic.otf') format('otf');
	}

	@font-face {
		font-family: 'aps';
		src: url('../font/ACaslonPro-Semibold.otf') format('otf');
	}

	@font-face {
		font-family: 'apb';
		src: url('../font/ACaslonPro-Bold.otf') format('otf');
	}

	/*
	-------------------------------------------------------

		template layout

	-------------------------------------------------------
	*/
	#wrapper {
		position: relative;
		max-width: 640px;
	}

	#container {
		margin-top: 100px;
	}

	.inner {
		position: relative;
		width: 100%;
		max-width: 640px;
		margin: 0 auto;
	}

	.pcnone {
		display: inline-block;
	}

	.spnone {
		display: none;
	}

	/*
	-------------------------------------------------------

		header

	-------------------------------------------------------
	*/
	#header {
		position: fixed;
		top: 0;
		left: 0;
		width: 640px;
		height: 100px;
		background: rgba(255, 255, 255, 0.95);
		box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
		z-index: 5;
	}

	#header h1 img {
		width: 280px;
	}

	#header .flex {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 27px 30px;
		max-width: 2000px;
		margin: 0 auto;
	}


	/*
	-------------------------------------------------------

		footer

	-------------------------------------------------------
	*/
	#footer{
		margin-bottom: -30px;
	}
	address {
		min-width: 100%;
		padding: 30px 0 30px;
		text-align: center;
		background: #1f1f1f;
		font-style: normal;
		font-size: 18px;
		color: #fff;
	}


	/*
	-------------------------------------------------------

		リンクタイプ設定

	-------------------------------------------------------
	*/
	.link_type_01 {
		position: relative;
		display: block;
		margin: 0 auto;
		padding: 28px 30px;
		border: 2px solid #0070bb;
		border-radius: 60px;
		background: url('../img/icon_link_type_01_sp_off.png') no-repeat right 30px center #fff;
		font-weight: 700;
		font-size: 24px;
		color: #1f1f1f;
		transition: .2s;
	}
	.link_type_01.is-green {
		border-color: #199e91;
		background: url('../img/icon_link_type_01_g_sp_off.png') no-repeat right 30px center #fff;
	}
	/*
	-------------------------------------------------------

		ヘッドライン設定

	-------------------------------------------------------
	*/
	h2 {
		margin-bottom: 30px;
		line-height: 1.6;
		font-size: 32px;
		font-weight: 700;
	}

}