/* HTML初期化 */
body {
	line-height: 1;
	margin: 0;
	padding: 0;
	zoom: 1
}


h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
	font-weight: normal;
	font-style: normal;
}

p,
dl,
dt,
dd,
em,
form,
address,
ul,
li {
	margin: 0;
	padding: 0;
	font-style: normal;
}

/* HTML5用 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

fieldset {
	border: 0;
	margin: 0;
	padding: 0;
}

hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #cccccc;
	margin: 1em 0;
	padding: 0;
}

ul {
	list-style: none;
	padding: 0;
	margin: 0;
	border: 0;
}

li {
	padding: 0;
	margin: 0;
}

input,
select {
	vertical-align: middle;
}

input{
	-webkit-appearance: none;
}

/* tableタグ*/
th,
td {
	padding: 0;
}

caption {
	text-align: left;
}


/* リンク設定 */
a {
	outline: 0;
	border: 0;
	transition: all 0.3s ease;
}

@media screen and (max-width: 799px) {
	a {
		transition: none !important;
	}
}

@media screen and (min-width: 800px) {
	a[href^="tel:"] {
		pointer-events: none;
	}
}

a img {
	border: 0;
}

img {
	border: 0;
	max-width: 100%;
	-webkit-backface-visibility: hidden;
}

html {
	-webkit-text-size-adjust: none;
	zoom: 1;
}

body,
html {
	min-height: 100%;
}


/*============================================
基本CSS
===========================================*/
html {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	font-size: 100px;
	-webkit-font-smoothing: antialiased;
}

@media print,
screen and (min-width:1366px) and (max-width:1439px) {
	html {
		-ms-text-size-adjust: 100%;
		-webkit-text-size-adjust: 100%;
		font-size: 100px;
	}
}

@media print,
screen and (min-width:1280px) and (max-width:1365px) {
	html {
		-ms-text-size-adjust: 100%;
		-webkit-text-size-adjust: 100%;
		font-size: 100px;
	}
}

@media print,
screen and (min-width:461px) and (max-width:1279px) {
	html {
		-ms-text-size-adjust: 95%;
		-webkit-text-size-adjust: 95%;
		font-size: 95px;
	}
}

@media print,
screen and (min-width:1120px) and (max-width:1199px) {
	html {
		-ms-text-size-adjust: 90%;
		-webkit-text-size-adjust: 90%;
		font-size: 90px;
	}
}

@media print,
screen and (min-width:461px) and (max-width:1119px) {
	html {
		-ms-text-size-adjust: 85%;
		-webkit-text-size-adjust: 85%;
		font-size: 85px;
	}
}

@media screen and (max-width: 599px) {
	html {
		-ms-text-size-adjust: 100%;
		-webkit-text-size-adjust: 100%;
		font-size: 100px;
	}
}

@media screen and (max-width: 350px) {
	html {
		-ms-text-size-adjust: 85%;
		-webkit-text-size-adjust: 85%;
		font-size: 85px;
	}
}

body {
	font-family: 'Roboto', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", 'ヒラギノ角ゴシック', 'Hiragino Sans', 'メイリオ', Meiryo, sans-serif;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
	min-width: 900px;
	position: relative;
	font-size: .11rem;
	letter-spacing: .06em;
}

body.hidden {
	overflow: hidden;
}

@media screen and (max-width:599px) {
	body {
		min-width: 100%;
		overflow-x: hidden;
	}
}

@media screen and (min-width:600px) {
	.pc_only {
		display: block !important;
	}

	.sp_only {
		display: none !important;
	}
}

@media screen and (max-width:599px) {
	.pc_only {
		display: none;
	}

	.sp_only {
		display: block;
	}
}

main {
	position: relative;
	overflow: hidden;
}

/* インナーボックス */
.in1200 {
	max-width: 12rem;
	margin: auto;
	padding-left: 0.2rem;
	padding-right: 0.2rem;
	position: relative;
}

.in1000 {
	max-width: 10rem;
	margin: auto;
	padding-left: 0.2rem;
	padding-right: 0.2rem;
	position: relative;
	height: 100%;
}

.in800 {
	max-width: 8rem;
	margin: auto;
	padding-left: 0.2rem;
	padding-right: 0.2rem;
	position: relative;
}

/* flaxbox */
.flex_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

/* ページの先頭に戻る */
#page_top {
	position: fixed;
	bottom: 10px;
	right: 10px;
	width: .5rem;
	height: .5rem;
	cursor: pointer;
	background-image: url(../img/common/back_top_icon.png);
	background-size: cover;
	display: none;
	z-index: 10;
}

@media screen and (max-width:599px) {
	#page_top {
		width: .4rem;
		height: .4rem;
		opacity: .7;
	}
}

/*=============================
スマホメニュー
=============================*/
/* 開閉ボタン */
#SPnaviBtn {
	position: absolute;
	top: 0;
	right: 0;
	width: 0.6rem;
	height: 0.6rem;
	border-radius: 4px;
	text-align: center;
	display: block;
	z-index: 10;
}

.menu-trigger,
.menu-trigger span {
	display: inline-block;
	transition: all .2s;
	box-sizing: border-box;
}

#SPmenuBars {
	position: absolute;
	left: 50%;
	width: 50%;
	height: 100%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.menu-trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #000;
}

header.scrolled .menu-trigger span {
	background-color: #0075b2;
}

.menu-trigger span:nth-of-type(1) {
	top: 33%;
}

.menu-trigger span:nth-of-type(2) {
	top: 50%;
}

.menu-trigger span:nth-of-type(3) {
	bottom: 33%;
}

.menu-trigger.active span:nth-of-type(1) {
	-webkit-transform: rotate(-45deg);
	transform: translateY(0) rotate(-45deg);
	top: 50%;
}

.menu-trigger.active span:nth-of-type(2) {
	opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
	-webkit-transform: translateY(0) rotate(45deg);
	transform: translateY(0) rotate(45deg);
	bottom: 50%;
}

@media screen and (max-width: 350px) {
	.menu-trigger.active span:nth-of-type(3) {
		-webkit-transform: translateY(0) rotate(45deg);
		transform: translateY(0) rotate(45deg);
		bottom: 45%;
	}
}



/*======================
アニメーション
======================*/
.fade {
	opacity: 0;
	transform: translate(0, 40px);
	transition: all 1.4s ease;
}

.fade_02 {
	opacity: 0;
	top: 40px;
	transition: all 1.4s ease;
}

.fade.scrollin {
	opacity: 1;
	transform: translate(0, 0);
}

.fade_02.scrollin {
	opacity: 1;
	top: 0;
}

/*======================
モーダル
======================*/
.modal {
	display: none;
	height: 100vh;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 100;
}

.modal__bg {
	background: rgba(255, 255, 255, 0.8);
	height: 100vh;
	position: absolute;
	width: 100%;
}

.modal__content {
	background: #fff;
	left: 50%;
	padding: .4rem;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 60%;
	overflow: scroll;
	overflow-x: hidden;
	max-height: 80vh;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width:599px) {
	.modal__content {
		padding: .2rem;
		width: 100%;
		max-height: 100vh;
		box-sizing: border-box;
	}
}

/*=======================
ヘッダー
======================*/
header {
	position: relative;
	padding: .2rem;
}

@media screen and (max-width:599px) {
	header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		box-sizing: border-box;
		padding: .16rem;
		z-index: 10;
		background-color: rgba(255, 255, 255, 0.8);
		box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
		height: 0.60rem;
		padding: 0 0.20rem;
	}
}

header h1 {
	width: 2rem;
}

@media screen and (max-width: 1000px) {
	header h1 {
		width: 1.8rem;
		position: absolute;
		top: 50%;
		left: 0.15rem;
		transform: translateY(-50%);
	}
}

@media screen and (max-width:599px) {
	header h1 {
		width: 1.7rem;
		padding-top: .02rem;
		margin: 0;
	}
}

header nav {
	position: absolute;
	top: 50%;
	right: .3rem;
	transform: translateY(-50%);
}

@media screen and (max-width: 1000px) {
	header nav {
		position: relative;
		top: inherit;
		right: inherit;
		transform: none;
		max-width: 90%;
		margin: auto;
		margin-bottom: .1rem;
	}
}

@media screen and (max-width:599px) {
	header nav {
		position: absolute;
		top: .6rem;
		right: inherit;
		left: 0;
		width: 100%;
		max-width: 100%;
		background-color: #333;
		margin-bottom: 0;
		box-sizing: border-box;
		padding: .2rem;
	}
}

header ul {
	display: flex;
}

@media screen and (max-width: 1000px) {
	header ul {
		justify-content: space-between;
	}
}

@media screen and (max-width:599px) {
	header ul {
		display: block;
	}
}

header li::before {
	content: "/";
	color: #999;
	display: inline-block;
	padding-left: .14rem;
	padding-right: .14rem;
	font-size: .14rem;
	font-weight: 300;
}

@media screen and (max-width:599px) {
	header li::before {
		content: none;
	}
}

header li:first-child::before,
header li:last-child::before {
	content: none;
}

header li:nth-child(3) {
	display: none;
}

@media screen and (max-width: 1000px) {
	header li {
		padding-left: 0;
		padding-bottom: .1rem;
	}
}

header li a {
	font-size: .14rem;
	color: #222;
	text-decoration: none;
	line-height: 1;
	font-family: 'Montserrat', sans-serif;
}


@media screen and (max-width:599px) {
	header li a {
		font-size: .16rem;
		color: #FFF;
		text-decoration: none;
		line-height: 1;
		line-height: 2.4;
		background-image: url(../img/common/link_arrow_02.png);
		background-position: left center;
		background-repeat: no-repeat;
		background-size: .06rem;
		padding-left: .12rem;
		display: block;
		font-weight: 700;
	}
}

header li.contact_btn {
	padding-left: .2rem;
	position: relative;
}

@media screen and (max-width:599px) {
	header li.contact_btn {
		padding-left: 0;
		position: relative;
		width: 90%;
		margin: auto;
		padding-top: .4rem;
		padding-bottom: .2rem;
	}
}

header li.contact_btn a {
	background-color: #283337;
	padding: .1rem;
	padding-left: .3rem;
	padding-right: .3rem;
	color: #FFF;
	font-weight: 700;
	position: relative;
}

header li.contact_btn a:hover {
	opacity: .7;
}

header li.contact_btn a::after {
	content: "";
	width: .2rem;
	height: 2px;
	background-color: #F7931E;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: -.1rem;
	z-index: 1;
	transition: all 0.3s ease;
}

header li.contact_btn a:hover::after {
	width: .3rem;
	right: -.2rem;
}

@media screen and (max-width:599px) {
	header li.contact_btn {
		padding-top: .1rem;
	}

	header li.contact_btn a {
		border-radius: 0;
		border: 1px solid #FFF;
		background-color: transparent;
		padding: .06rem;
		text-align: center;
		background-image: none;
	}
}

header .header_entry_btn {
	width: 0.60rem;
	height: 0.60rem;
	position: absolute;
	top: 0;
	right: 0.60rem;
	background-color: #000;
}

header .header_entry_btn a {
	display: block;
	height: 100%;
	position: relative;
}

header .header_entry_btn a::before {
	content: "";
	width: 100%;
	height: 0.16rem;
	background-image: url(../img/icon_mail.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 0.14rem;
	left: 0;
	opacity: 0.7;
}

header .header_entry_btn span {
	color: #FFF;
	font-size: 0.11rem;
	font-family: "Cabin", sans-serif;
	position: absolute;
	left: 0;
	bottom: 0.10rem;
	display: block;
	width: 100%;
	text-align: center;
}