/* 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;
	position: relative;
}

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;
}

/* 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;
		text-decoration: none;
		color: #333333;
	}
}

@media screen and (max-width: 799px) {
	a[href^="tel:"] {
		pointer-events:auto;
		color: #534741;
		text-decoration: underline;
	}
}

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;
	background-color: #FFF;
}

/*
@media screen and (min-width: 1401px) {
	html {
		-ms-text-size-adjust: 100%;
		-webkit-text-size-adjust: 100%;
		font-size: 100px;
	}
}
*/

@media print,
screen and (min-width:1440px) and (max-width:1599px) {
	html {
		font-size: 100px;
	}
}

@media print, screen and (min-width:1366px) and (max-width:1439px) {
		html {
		font-size: 90px;
	}
}
@media print,
screen and (min-width:1280px) and (max-width:1365px) {
	html {
		font-size: 85px;
	}
}

@media print,
screen and (min-width:461px) and (max-width:1279px) {
	html {
		font-size: 85px;
	}
}

@media screen and (max-width: 599px) {
	html {
		font-size: 100px;
	}
}

@media screen and (max-width: 350px) {
	html {
		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: 1000px;
	position: relative;
	font-size: .11rem;
	letter-spacing: .06em;
}


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

	body.menu_open {
		overflow: hidden;
	}
}

@media screen and (min-width:500px) {
	.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;
}

/* インナーボックス */
.in {
	width: 100%;
	max-width: 10.80rem;
	margin: auto;
	padding-left: 0.4rem;
	padding-right: 0.4rem;
	position: relative;
	box-sizing: border-box;
}

@media screen and (max-width: 599px) {
	.in {
		padding-left: 0.2rem;
		padding-right: 0.2rem;
	}
}

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

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

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

/*=============================
スマホメニュー
=============================*/

/* 開閉ボタン */
#SPnaviBtn {
	position: absolute;
	top: 0.1rem;
	right: 0.10rem;
	width: 0.50rem;
	height: 0.50rem;
	border-radius: 4px;
	text-align: center;
	font-size: 0.55em;
	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: #333;
	transition: all 0.3s ease;
}

.menu-trigger.active span {
	background-color: #333;
}

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

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

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

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

.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%;
	}
}

/*======================
アコーディオン
======================*/
.acc_title {
	cursor: pointer;
}

.acc_contents {
	display: none;
}


/*======================
アニメーション
======================*/
/* ロード時にフェード */
.pl_load {
	opacity: 1;
	animation: pl_fade 3s ease-in-out;
}

@keyframes pl_fade {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

/* パララックスを有効にする */
.pl_true {
	transition: opacity 1.5s, transform 1.5s;
}

/* ふわりと現れる */
.pl_fade {
	opacity: 0;
}

.pl_fade.scrollin,
.scrollin .pl_fade {
	opacity: 1;
}


/* 上・下・右・左から現れる */
.pl_top,
.pl_bottom,
.pl_left,
.pl_right {
	opacity: 0;
}

.pl_top {
	transform: translate(0, -50px);
}

.pl_bottom {
	transform: translate(0, 50px);
}

.pl_left {
	transform: translate(-50px, 0);
}

.pl_right {
	transform: translate(50px, 0);
}

.pl_top.scrollin,
.scrollin .pl_top,
.pl_bottom.scrollin,
.scrollin .pl_bottom,
.pl_left.scrollin,
.scrollin .pl_left,
.pl_right.scrollin,
.scrollin .pl_right {
	opacity: 1;
	transform: translate(0, 0);
}

/* 時差で現れる */
.pl_2n,
.scrollin .pl_2n {
	transition: opacity 1.5s .5s, transform 1.5s .5s;
}

@media screen and (max-width: 599px) {
.pl_2n,
.scrollin .pl_2n {
	transition: opacity 1.5s, transform 1.5s;
}
}

.pl_3n,
.scrollin .pl_3n {
	transition: opacity 1.5s 1s, transform 1.5s 1s;
}

@media screen and (max-width: 599px) {
.pl_3n,
.scrollin .pl_3n {
	transition: opacity 1.5s, transform 1.5s;
}
}

.pl_4n,
.scrollin .pl_4n {
	transition: opacity 1.5s 1.5s, transform 1.5s 1.5s;
}

@media screen and (max-width: 599px) {
.pl_4n,
.scrollin .pl_4n {
	transition: opacity 1.5s, transform 1.5s;
}
}

.pl_5n,
.scrollin .pl_5n {
	transition: opacity 1.5s 2s, transform 1.5s 2s;
}

@media screen and (max-width: 599px) {
.pl_5n,
.scrollin .pl_5n {
	transition: opacity 1.5s, transform 1.5s;
}
}

.pl_6n,
.scrollin .pl_6n {
	transition: opacity 1.5s 2.5s, transform 1.5s 2.5s;
}

@media screen and (max-width: 599px) {
.pl_6n,
.scrollin .pl_6n {
	transition: opacity 1.5s, transform 1.5s;
}
}

/* 回転して現れる */
.pl_roll {
	transform: scale(0) rotateZ(0deg);
}

.pl_roll.scrollin,
.scrollin .pl_roll {
	transform: scale(1) rotateZ(360deg);
}
