@charset "UTF-8";

* {
	box-sizing: border-box;
}

html,
body {
	width: 100%;
	font-family: 'Hiragino Sans W3', 'ヒラギノ角ゴシック W3', 'Noto Sans JP', sans-serif;
	font-size: 17px;
	font-weight: 300;
	font-feature-settings: "palt";
	letter-spacing: 0.05em;
	color: #54585b;
}

.lang-ja {
	font-family: 'Hiragino Sans W3', 'ヒラギノ角ゴシック W3', 'Noto Sans JP', sans-serif;
}

h2,
h3,
strong,
b,
h2.lang-ja,
h2 span.lang-ja {
	font-family: 'Hiragino Sans W5', 'ヒラギノ角ゴシック W5', 'Noto Sans JP', sans-serif;
	font-weight: 500;
}


.lang-en {
	font-family: 'Agenda-Light', 'Agenda Light', 'Arial', sans-serif;
}

h2.lang-en,
h2 span.lang-en {
	font-family: 'Agenda-Medium', 'Agenda Medium', 'Arial-Bold', 'Arial Bold', 'Hiragino Sans W5', 'ヒラギノ角ゴシック W5', 'Noto Sans JP', sans-serif;
	font-weight: 500;
}

p {
	line-height: 1.6;
}

@media (min-width: 751px) {
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
}


/* ******************************************
	Animation
****************************************** */

.fadeIn {
	transform: translate3d(0, 10px, 0);
	transition: 1s;
	opacity: 0;
	overflow: hidden;
}

.fadeIn img {
	transform: scale(1.2);
}

.fadeIn.animated {
	transform: translate3d(0, 0, 0);
	opacity: 1;
}

.fadeIn.animated img {
	transform: scale(1.0);
}




/* ******************************************
	Page Transition
****************************************** */
body::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(236, 236, 235);
	pointer-events: none;
	-webkit-transition: opacity .8s ease;
	-ms-transition: opacity .8s ease;
	-moz-transition: opacity .8s ease;
	transition: opacity .8s ease;
	opacity: 0;
	z-index: 9999;
}

body.fadeout::after {
	opacity: 1;
}

#page {
	position: relative;
	margin: 0;
	padding: 0;
}


/* ******************************************
	Font settings
****************************************** */
.font-12 {
	font-size: 12px;
}

.font-13 {
	font-size: 13px;
}

.font-15 {
	font-size: 15px;
}

.font-17 {
	font-size: 17px;
}

.font-21 {
	font-size: 21px;
}

.font-24 {
	font-size: 24px;
}

.font-28 {
	font-size: 28px;
}

.font-48 {
	font-size: 48px;
}

/* ******************************************
	Width par setting
****************************************** */
.w10 {
	width: 10%;
}

.w20 {
	width: 20%;
}

.w30 {
	width: 30%;
}

.w40 {
	width: 40%;
}

.w50 {
	width: 50%;
}

.w60 {
	width: 60%;
}

.w70 {
	width: 70%;
}

.w80 {
	width: 80%;
}

.w90 {
	width: 90%;
}

.w100 {
	width: 100%;
}

/* ******************************************
	Max width setting
****************************************** */
.max_w768 {
	max-width: 768px;
	margin-left: auto;
	margin-right: auto;
}

.max_w900 {
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.max_w940 {
	max-width: 940px;
	margin-left: auto;
	margin-right: auto;
}

.max_w1024 {
	max-width: 1024px;
	margin-left: auto;
	margin-right: auto;
}

/* ******************************************
	Margin setting
****************************************** */
.mar_t30 {
	margin-top: 30px !important;
}

.mar_b30 {
	margin-bottom: 30px !important;
}

.mar_tb30 {
	margin-top: 30px !important;
	margin-bottom: 30px !important;
}

.mar_t30b70 {
	margin-top: 30px !important;
	margin-bottom: 70px !important;
}

/* ******************************************
	Padding setting
****************************************** */
.pad_a15 {
	padding: 15px !important;
}

.pad_a20 {
	padding: 20px !important;
}

.pad_a30 {
	padding: 30px !important;
}

.pad_t0 {
	padding-top: 0 !important;
}

.pad_t15 {
	padding-top: 15px !important;
}

.pad_t30 {
	padding-top: 30px !important;
}

.pad_b0 {
	padding-bottom: 0 !important;
}

.pad_b15 {
	padding-bottom: 15px !important;
}

.pad_b30 {
	padding-bottom: 30px !important;
}

.pad_tb15 {
	padding-top: 15px !important;
	padding-bottom: 15px !important;
}

.pad_tb30 {
	padding-top: 30px !important;
	padding-bottom: 30px !important;
}

.pad_lr15 {
	padding-left: 15px !important;
	padding-right: 15px !important;
}

.pad_lr20 {
	padding-left: 20px !important;
	padding-right: 20px !important;
}

.pad_lr30 {
	padding-left: 30px !important;
	padding-right: 30px !important;
}

.pad_l30 {
	padding-left: 30px !important;
}

.pad_r30 {
	padding-right: 30px !important;
}

/* ******************************************
	BG Color settings
****************************************** */
.bgc_bk {
	background-color: rgb(0, 0, 0);
}

.bgc_dg {
	background-color: rgb(84, 88, 90);
}

.bgc_lg {
	background-color: rgb(236, 236, 235);
}

.bgc_wh {
	background-color: rgb(255, 255, 255);
}

.bgc_db {
	background-color: rgb(0, 20, 80);
}

/* ******************************************
	Border settings
****************************************** */
.bd-t-gr {
	border-top: 1px solid #999;
}

.bd-b-gr {
	border-bottom: 1px solid #999;
}

.bdc_bk {
	border: 1px solid rgb(0, 0, 0);
}

.bdc_dg {
	border: 1px solid rgb(84, 88, 90);
}

.bdc_lg {
	border: 1px solid rgb(236, 236, 235);
}

.bdc_wh {
	border: 1px solid rgb(255, 255, 255);
}

.bdc_db {
	border: 1px solid rgb(0, 20, 80);
}

/* ******************************************
	Button settings
****************************************** */
a,
input[type="submit"],
input[type="button"] {
	transition: .3s;
}

a:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
	transition: .3s;
}

.btn {
	display: inline-block;
	min-width: 150px;
	margin: 30px 0 0;
	padding: .625rem 1rem;
	font-size: 15px;
	line-height: 1.5;
	text-align: center;
}

.btn.mt0 {
	margin: 0;
}

.btn-center {
	display: flex;
	justify-content: center;
}

@media screen and (max-width: 425px) {
	.btn {
		min-width: 135px;
	}
}

.btn_bg_gr-wh,
.btn_bg_gr-tp {
	border: 1px solid #54585b;
	background-color: #54585b;
	color: #fff;
}

.btn_bg_gr-wh:hover {
	background-color: #fff;
	color: #54585b;
}

.btn_bg_gr-tp:hover {
	background-color: transparent;
	color: #54585b;
}

.btn_bg_wh-gr,
.btn_bg_wh-tp {
	border: 1px solid #54585b;
	background-color: #fff;
	color: #54585b;
}

.btn_bg_wh-gr:hover {
	background-color: #54585b;
	color: #fff;
}

.btn_bg_wh-tp:hover {
	background-color: transparent;
	color: #fff;
}

.btn_bw_tp-wh {
	border: 1px solid #fff;
	background-color: transparent;
	color: #fff;
}

.btn_bw_tp-wh:hover {
	background-color: #fff;
	color: #54585b;
}

.btn_bw_wh-tp {
	border: 1px solid #fff;
	background-color: #fff;
	color: #54585b;
}

.btn_bw_wh-tp:hover {
	background-color: transparent;
	color: #fff;
}

.btn_bg_tp-gr {
	border: 1px solid #54585b;
	background-color: transparent;
	color: #54585b;
}

.btn_bg_tp-gr:hover {
	background-color: #54585b;
	color: #fff;
}

.btn_bg_tp-wh {
	border: 1px solid #54585b;
	background-color: transparent;
	color: #54585b;
}

.btn_bg_tp-wh:hover {
	background-color: #fff;
	color: #54585b;
}


/* ******************************************
	Header
****************************************** */
#site_header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 0;
	transition: .5s;
	z-index: 999;
}

#site_header.hide {
	top: -132px;
	transition: .5s;
}

#site_header_top {
	width: 100%;
	height: 32px;
	padding: 9px;
	font-size: 12px;
	color: rgb(236, 236, 235);
}

#site_header_top .container {
	display: flex;
	justify-content: flex-end;
}

#header_top_tel {}

#header_top_tel img {
	width: auto;
	height: 12px;
}

#header_top_address {
	margin: 0 0 0 20px;
}

#header_top_address img {
	width: auto;
	height: 12px;
}

#header_top_address span.pc {
	display: inline;
}

#header_top_address span.sp {
	display: none;
}


#site_header_contents {
	width: 100%;
	height: 90px;
	padding: 0px 0;
	background-image: linear-gradient(0deg, rgba(84, 88, 90, .075), rgba(21, 22, 23, .9));
	background-image: linear-gradient(180deg, #000000a6, #0000 110%);
	transition: .5s;
}

#site_header_contents .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}

#site_header_title {
	height: 70px;
}

#site_header_title img {
	width: auto;
	height: 100%;
}


@media screen and (max-width:1023px) {
	#site_header.hide {
		top: -97px;
	}

	#site_header_contents {
		background-color: rgb(84, 88, 90);
		background-image: none;
		height: 65px;
		border-top: 1px solid #fff;
	}

	#site_header_title {
		height: 45px;
	}
}

@media screen and (max-width: 600px) {
	#header_top_address span.pc {
		display: none;
	}

	#header_top_address span.sp {
		display: inline;
	}
}


/* ******************************************
	Navigation
****************************************** */
#site_header_navi {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	height: 100%;
}

#site_header_navi_top {
	display: flex;
	justify-content: flex-end;
	width: 100%;
	font-size: 13px;
	font-weight: 500;
	line-height: 12px;
}

#site_header_navi_top>ul {
	display: flex;
	justify-content: flex-end;
	margin: 10px 0 0 0;
}

#site_header_navi_top>ul>li {
	position: relative;
	margin: 0 0 0 10px;
}

/* #site_header_navi_top>ul>li:last-of-type {
	margin: 0 0 0 20px;
} */

#site_header_navi_top>ul>li>a {
	display: inline-block;
	height: 26px;
	padding: 7px 10px;
	color: #fff;
}

#site_header_navi_top>ul>li>a:hover {
	text-decoration: underline;
}

/* #site_header_navi_top>ul>li:last-of-type>a {
	position: relative;
	padding: 7px 40px 7px 30px;
	color: #fff;
	border-left: 1px solid #fff;
	transition: all .3s;
}

#site_header_navi_top>ul>li:last-of-type>a::after {
	content: '';
	display: block;
	width: 7px;
	height: 7px;
	border-top: 1px solid #fff;
	border-left: 1px solid #fff;
	transform: rotate(-135deg);
	position: absolute;
	right: 10px;
	top: calc(50% - 5px);
}

#site_header_navi_top>ul>li:last-of-type>a:hover {
	text-decoration: none;
} */

#site_header_navi_top>ul>li>.sub-menu {
	display: none !important;
}


@media screen and (max-width:1023px) {
	#site_header_navi {
		display: none;
	}
}


#site_header_navi_main {
	width: 100%;
}

#site_header_navi_main>ul {
	display: flex;
	justify-content: flex-end;
	margin: 0 0 5px 0;
	font-size: 15px;
	font-weight: 500;
	line-height: 15px;
}

#site_header_navi_main>ul>li {
	position: relative;
	margin: 0 0 0 10px;
}

#site_header_navi_main>ul>li>a {
	display: inline-block;
	height: 36px;
	padding: 10px;
	color: #fff;
}

#site_header_navi_main>ul>li>a:hover {
	text-decoration: underline;
	background-color: rgba(0, 0, 0, .1);
}


/* ******************************************
	Section Link
****************************************** */
#section_link,
#inpage_link {
	width: 100%;
	background-color: rgb(84, 88, 90);
}

#section_link .container ul,
#section_link_fx .container ul,
#inpage_link .container ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

#section_link .container ul li,
#section_link_fx .container ul li,
#inpage_link .container ul li {
	position: relative;
	margin: 0 5px;
}

#inpage_link .container ul li {
	margin: 0 20px;
}

#section_link .container ul li.current a,
#section_link_fx .container ul li.current a {
	text-decoration: underline;
}

#section_link .container ul li a,
#section_link_fx .container ul li a,
#inpage_link .container ul li a {
	display: block;
	padding: 10px 5px;
	color: #fff;
	font-size: 14px;
	line-height: 14px;
	font-weight: 300;
	text-align: center;
}

#inpage_link .container ul li a {
	padding: 10px 20px;
	font-size: 17px;
}

#section_link .container ul li a:hover,
#section_link_fx .container ul li a:hover,
#inpage_link .container ul li a:hover {
	text-decoration: underline;
}

#section_link .container ul li a span,
#section_link_fx .container ul li a span {
	display: block;
	font-size: 12px;
}

#section_link .container ul li ul.sub-menu li {
	margin: 0;
}

@media screen and (max-width:1024px) {
	#section_link_fx {
		display: none !important;
	}
}

@media screen and (max-width:768px) {
	#section_link {
		display: none !important;
	}

	#inpage_link .container {
		width: 100%;
		max-width: 100%;
		padding: 0;
	}

	#inpage_link .container ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}

	#inpage_link .container ul li {
		width: 100%;
		margin: 0;
	}

	#inpage_link .container ul li a {
		padding: 20px;
		border-bottom: 1px solid rgb(236, 236, 235);
	}
}


#site_header_contents.sl_fixed {
	background-color: rgba(84, 88, 90, .9);
	transition: .5s;
}


/* ******************************************
	Section Link Fixed
****************************************** */
#section_link_fx {
	display: block;
	position: fixed;
	top: -132px;
	left: 0;
	width: 100%;
	opacity: 0;
	transition: .5s;
}

.section_link_sub_title {
	display: none;
}

@media screen and (max-width:1023px) {
	#section_link_fx {
		top: -97px;
	}

	#section_link_fx .container {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	#section_link_fx .container div {
		min-width: 50px;
	}

	.section_link_sub_title {
		display: block;
		color: #fff;
	}
}

#section_link_fx.sl_fixed {
	position: fixed;
	top: -65px;
	left: 0;
	border-top: 1px solid rgb(236, 236, 235);
	background-color: rgba(84, 88, 90, .9);
	opacity: 1;
	z-index: 20;
	transition: .5s;
}

#section_link_fx.hactive {
	top: 122px;
	transition: .5s;
}

@media screen and (max-width:1023px) {
	#section_link_fx.hactive {
		top: 97px;
	}
}


/* ******************************************
	Section Link SP Setting
****************************************** */
.menu {
	list-style: none;
	position: absolute;
	width: 100%;
	max-width: 300px;
	height: auto;
	top: 0;
	right: 0;
	margin-top: 50px;
	padding: 0;
	clear: both;
	background: var(--background-navbar);
	transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
	transform: scale(1, 0);
	transform-origin: top;
	background-color: rgba(84, 88, 90, .9);
}

.menu-btn:checked~.menu {
	transform: scale(1, 1);
	transform-origin: top;
	transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.menu li {
	border-top: 1px solid rgb(236, 236, 235);
	width: 100%;
	padding: 0;
	margin: 0 !important;
	opacity: 0;
	transition: 0.5s;
}


.menu-btn:checked~.menu a,
.menu-btn:checked~.menu li {
	opacity: 1;
	transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}

.menu-btn {
	display: none;
}

@media screen and (max-width:1023px) {
	.menu-icon {
		display: inline-block;
		position: relative;
		cursor: pointer;
		padding: 14px 12px 14px 18px;
		-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	}

	.navicon {
		background: #fff;
		display: block;
		height: 2px;
		width: 20px;
		position: relative;
		transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
	}

	.navicon:before,
	.navicon:after {
		content: "";
		display: block;
		height: 2px;
		position: absolute;
		background: #fff;
		transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
	}

	.navicon:before {
		top: 9px;
		width: 20px;
	}

	.navicon:after {
		bottom: 9px;
		left: -6px;
		width: 26px;
	}

	.menu-btn:checked~.menu-icon .navicon:before {
		left: -6px;
		width: 26px;
		transform: rotate(-45deg);
	}

	.menu-btn:checked~.menu-icon .navicon:after {
		transform: rotate(45deg);
	}

	.menu-btn:checked~.menu-icon:not(.steps) .navicon:before {
		top: 0;
	}

	.menu-btn:checked~.menu-icon:not(.steps) .navicon:after {
		bottom: 0;
	}

	.menu-btn:checked~.menu-icon .navicon {
		background: rgba(0, 0, 0, 0);
		transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
	}
}


@keyframes liin {
	0% {
		display: none;
	}

	1% {
		display: block;
		opacity: 0;
	}

	100% {
		display: block;
		opacity: 1;
	}
}

@keyframes liout {
	0% {
		display: block;
		opacity: 1;
	}

	99% {
		display: block;
		opacity: 0;
	}

	100% {
		display: none;
	}
}

.language__list>ul,
#site_header_navi_main ul li .sub-menu,
#section_link ul li .sub-menu,
#section_link_fx ul li .sub-menu {
	position: absolute;
	top: 36px;
	left: 0;
	transition: all .3s;
	min-width: 100%;
	box-shadow: 0px 0px 3px #999;
	display: none;
	animation: liout .3s ease-in 0s forwards;
	z-index: 999;
}

.language__list>ul {
	top: 26px;
}

.language__list:hover>ul,
#site_header_navi_main ul li:hover .sub-menu,
#section_link ul li:hover .sub-menu,
#section_link_fx ul li:hover .sub-menu {
	display: block;
	opacity: 1;
	visibility: visible;
	animation: liin .3s ease-in 0s forwards;
}

.language__list>ul>li,
#site_header_navi_main ul li .sub-menu li,
#section_link ul li .sub-menu li,
#section_link_fx ul li .sub-menu li {
	transition: all .3s;
	position: relative;
	margin: 0;
	background-color: rgb(236, 236, 235);
	transition: 0.3s;
	white-space: nowrap;
}

.language__list>ul>li:not(:first-child)::before,
#site_header_navi_main ul li .sub-menu li:not(:first-child)::before,
#section_link ul li .sub-menu li:not(:first-child)::before,
#section_link_fx ul li .sub-menu li:not(:first-child)::before {
	content: "";
	width: 100%;
	height: 1px;
	background-color: rgba(59, 130, 244, .2);
	position: absolute;
	top: 0;
	left: 0;
}

.language__list ul li:hover,
#site_header_navi_main ul li .sub-menu li:hover,
#section_link ul li .sub-menu li:hover,
#section_link_fx ul li .sub-menu li:hover {
	background-color: rgb(84, 88, 90);
	transition: 0.3s;
}

.language__list>ul>li>a,
#site_header_navi_main ul li .sub-menu li a,
#section_link ul li .sub-menu li a,
#section_link_fx ul li .sub-menu li a {
	display: block;
	height: 40px;
	padding: 14px 0;
	color: rgb(84, 88, 90);
	text-align: center;
	text-decoration: none;
	position: relative;
	line-height: 12px;
}

.language__list>ul>li>a {
	padding: 14px;
}

#site_header_navi_main ul li .sub-menu li a,
#section_link ul li .sub-menu li a,
#section_link_fx ul li .sub-menu li a {
	padding: 14px 20px;
	text-align: left;
}

.language__list>ul>li>a:hover,
#site_header_navi_main ul li .sub-menu li a:hover,
#section_link ul li .sub-menu li a:hover,
#section_link_fx ul li .sub-menu li a:hover {
	color: rgb(236, 236, 235);
}


#site_header_navi_main ul li .sub-menu li.mobile_only {
	display: none;
}





.sub__list {
	position: relative;
}

.sub__list>ul {
	position: absolute;
	top: 36px;
	left: 0;
	visibility: hidden;
	opacity: 0;
	transition: all .3s;
	min-width: 220px;
	box-shadow: 0px 0px 3px #999;
	display: none;
	animation: llout .3s ease-in 0s forwards;
}

.sub__list:hover>ul {
	animation: llin .3s ease-in 0s forwards;
}

.sub__list>ul>li {
	transition: all .3s;
	position: relative;
	background-color: rgb(236, 236, 235);
	transition: 0.3s;
}

.sub__list>ul>li:not(:first-child)::before {
	content: "";
	width: 100%;
	height: 1px;
	background-color: rgba(59, 130, 244, .2);
	position: absolute;
	top: 0;
	left: 0;
}

.sub__list ul li:hover {
	background-color: rgb(84, 88, 90);
	transition: 0.3s;
}

.sub__list>ul>li>a {
	display: block;
	height: 42px;
	padding: 12px 10px;
	color: rgb(84, 88, 90);
	text-align: left;
	text-decoration: none;
	position: relative;
}

.sub__list>ul>li>a:hover {
	color: rgb(236, 236, 235);
}





.language__list.sp {
	position: absolute;
	right: -100px;
	top: 52px;
	height: 26px;
	font-size: 14px;
	padding: 4px 30px 4px 10px;
	border: 1px solid #fff;
}

.language__list.sp>a::after {
	content: '';
	display: block;
	width: 7px;
	height: 7px;
	border-top: 1px solid #fff;
	border-left: 1px solid #fff;
	transform: rotate(-135deg);
	position: absolute;
	right: 10px;
	top: calc(50% - 5px);
}

.language__list.sp a {
	color: #fff;
}

.language__list.sp>ul>li>a {
	color: rgb(84, 88, 90);
}

.language__list.sp>ul>li>a:hover {
	color: rgb(236, 236, 235);
}

@media screen and (max-width:1023px) {
	.language__list.sp {
		right: 90px;
	}
}


/* ******************************************
	Footer
****************************************** */
#site_footer {
	width: 100%;
	z-index: 1;
}

#site_footer #social {}

#site_footer #social .container {
	padding: 40px 32px 35px;
}

#site_footer #social h2 {
	margin: 0 0 15px;
	text-align: center;
}

#site_footer #social h2 span {
	font-size: 17px;
}

#site_footer #social ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	margin: 0 auto;
}

#site_footer #social ul:after {
    display: block;
    content: "";
    width: 30%;
}

#site_footer #social ul li {
	width: 30%;
	margin: 15px 0;
	font-size: 14px;
}

#site_footer #social ul li a {
	display: flex;
	justify-content: flex-start;
}

#site_footer #social ul li img {
	width: 30px;
	margin: 0 10px;
}

@media screen and (max-width:1280px) {
	#site_footer #social .container {
		padding: 40px 0 35px;
	}
}

@media screen and (max-width:1080px) {
	#site_footer #social ul li {
		width: 46%;
	}
}

@media screen and (max-width:680px) {
	#site_footer #social {
		text-align: center;
	}

	#site_footer #social ul {
		display: inline-block;
		width: auto;
	}

	#site_footer #social ul li {
		width: 100%;
		text-align: left;
	}
}

@media screen and (max-width:480px) {}



#site_footer #Newsletter {
	background-color: rgb(84, 88, 90);
}

#site_footer #Newsletter .container {
	padding: 30px 0;
	text-align: center;
}

#site_footer #Newsletter h2 {
	margin: 0;
	text-align: center;
	color: #fff;
	font-size: 24px;
}




#footer_info {
	font-size: 15px;
}

#footer_info .container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 900px;
	padding: 70px 0 50px;
}

#footer_info .container img {
	max-width: 200px;
	margin: 0 0 20px;
}

#footer_info .container h3 {
	margin: 0 0 10px;
	font-size: 18px;
	font-weight: 500;
}

#footer_info .container p {
	margin: 0 0 15px;
	line-height: 1.6;
}

#footer_info .container p b {
	font-size: 28px;
	line-height: 30px;
}

#footer_info .container ul {}

#footer_info .container ul li {
	margin: 0 0 10px;
}

#footer_info .container ul li a:hover {
	text-decoration: underline;
}

@media screen and (max-width:1023px) {
	#footer_info .container {
		justify-content: center;
	}

	#footer_info .container .footer_address {
		padding-left: 5%;
	}

	#footer_info .container ul {
		display: none;
	}
}

@media screen and (max-width:768px) {}

@media screen and (max-width:600px) {
	#footer_info .container .footer_address {
		width: 100%;
		padding-left: 0;
		padding-top: 30px;
		text-align: center;
	}

	#footer_info .container h3 {
		text-align: center;
	}
}

@media screen and (max-width:480px) {}



#footer_review {}

#footer_review .container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 90%;
	padding: 20px 0;
}

#IWSfrContainer {
	max-width: 300px;
	margin: 0 10px;
}

.IWSfrContainer_horiz .IWSfrLogo {
	display: none;
}

.IWSfrContainer_horiz .IWSfrLogo img {
	height: 60px;
	width: auto;
}

.IWSfrContentContainer .IWSfrOverall img {
	width: auto;
	height: 12px;
	vertical-align: baseline;
}

.IWSfrContentContainer {
	padding: 20px;
}

#footer_app_box {
	width: 300px;
	margin: 0 10px;
	padding: 0;
}

#footer_app_box .app_bnr {
	margin: 0 0 10px;
	text-align: center;
}

#footer_app_box .app_bnr a {
	display: inline-block;
	width: 120px;
	height: auto;
	margin: 0 10px;
}

#footer_app_box .app_bnr a img {
	width: 100%;
}

#footer_app_box p {
	font-size: 14px;
	line-height: 1.6;
	text-align: center;
}

@media screen and (max-width:768px) {
	#IWSfrContainer {
		margin: 0 auto 20px;
	}

	#footer_app_box {
		margin: 0 auto;
		padding: 0;
	}
}


#site_footer #copyright {
	text-align: center;
	font-size: 13px;
}

#site_footer #copyright .container {
	padding: 20px 0;
}

#site_footer #copyright .container p {
	line-height: 1.6;
}



/* ******************************************
	Humburger
****************************************** */

@media screen and (max-width:1023px) {
	#el_humburger {
		transition: .5s;
	}

	#el_humburger.hide {
		top: -64px;
		transition: .5s;
	}
}

.el_humburger {
	display: none;
	position: fixed;
	top: 33px;
	right: 0;
	width: 64px;
	height: 64px;
	padding-top: 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding-top: 0px;
	z-index: 99995;
	cursor: pointer;
	pointer-events: auto;
	color: #fff;
	text-align: center;
}

@media screen and (max-width: 1023px) {
	.el_humburger {
		display: block;
		top: 32px;
	}
}

.el_humburger_wrapper {
	margin-top: 22px;
	width: 30px;
	display: inline-block;
}

@media screen and (max-width: 1023px) {
	.el_humburger_wrapper {
		margin-top: 22px;
		width: 28px;
	}
}

.el_humburger_text {
	font-size: 12px;
	letter-spacing: 0.1em;
}

.js_humburgerOpen .el_humburger_text.el_humburger_text__menu {
	display: none;
}

.el_humburger_text.el_humburger_text__close {
	display: none;
}

.js_humburgerOpen .el_humburger_text.el_humburger_text__close {
	display: block;
}

@media screen and (max-width: 1023px) {
	.el_humburger_text {
		font-size: 10px;
		padding-top: 2px;
	}

	.el_humburger_text svg path {
		-webkit-transition: all 200ms cubic-bezier(0.16, 0.52, 0.25, 1);
		-o-transition: all 200ms cubic-bezier(0.16, 0.52, 0.25, 1);
		transition: all 200ms cubic-bezier(0.16, 0.52, 0.25, 1);
		fill: #000;
	}
}

@media screen and (max-width: 1023px) {
	.js_humburgerOpen .el_humburger_text svg path {
		fill: #000;
	}
}

.el_humburger span.el_humburger_bar {
	display: block;
	width: 100%;
	margin: 0 auto 8px;
	height: 2px;
	background: #000;
	-webkit-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.el_humburger span.el_humburger_bar:last-child {
	margin-bottom: 0;
}

.js_humburgerOpen .el_humburger span.el_humburger_bar {
	background: #fff;
}

@media screen and (max-width: 1023px) {
	.el_humburger span.el_humburger_bar {
		left: 0;
		top: 0;
		background: #fff;
	}
}

.js_humburgerOpen .el_humburger span.el_humburger_bar.top {
	-webkit-transform: translateY(9px) rotate(-45deg);
	-ms-transform: translateY(9px) rotate(-45deg);
	transform: translateY(9px) rotate(-45deg);
}

.js_humburgerOpen .el_humburger span.el_humburger_bar.middle {
	opacity: 0;
}

.js_humburgerOpen .el_humburger span.el_humburger_bar.bottom {
	-webkit-transform: translateY(-11px) rotate(45deg);
	-ms-transform: translateY(-11px) rotate(45deg);
	transform: translateY(-11px) rotate(45deg);
}

.el_humburgerButton.el_humburgerButton__close {
	top: 2%;
	right: 2%;
}

.el_humburgerButton__close span.el_humburger_bar {
	display: block;
	width: 35px;
	margin: 0 auto;
	height: 4px;
	background: #fff;
}

.el_humburgerButton__close span.el_humburger_bar.top {
	-webkit-transform: translateY(5px) rotate(-45deg);
	-ms-transform: translateY(5px) rotate(-45deg);
	transform: translateY(5px) rotate(-45deg);
}

.el_humburgerButton__close span.el_humburger_bar.bottom {
	-webkit-transform: translateY(-6px) rotate(45deg);
	-ms-transform: translateY(-6px) rotate(45deg);
	transform: translateY(-6px) rotate(45deg);
}

.navi {
	position: fixed;
	right: 0;
	height: calc(100% - 97px);
	background-color: rgba(242, 242, 242, 0.98);
	width: 320px;
	z-index: 99990;
	padding: 20px 3% 60px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 600ms ease-out;
	-o-transition: all 600ms ease-out;
	transition: all 600ms ease-out;
	transform: translateZ(0) translateX(100%);
	overflow: auto;
}

.js_humburgerOpen .navi {
	transform: translateZ(0) translateX(0);
}

@media screen and (max-width: 1023px) {}

@media screen and (max-width: 450px) {
	.js_humburgerOpen .navi {
		width: 100%;
	}
}

#sp_navi.hide {
	height: 100%;
	transition: all 600ms ease-out;
}







.navi ul {}

.navi ul.section li {
	border-top: 1px solid #ccc;
}

.navi ul.section li.has_submenu,
.navi ul.sub li.has_submenu {
	position: relative;
}

.navi ul.section li.has_submenu::before,
.navi ul.sub li.has_submenu::before {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	height: auto;
	padding: 15px;
	font-size: 17px;
	content: '＋';
}

.navi ul.section li.has_submenu.active::before,
.navi ul.sub li.has_submenu.active::before {
	content: "－";
}

.navi ul.section li a {
	display: block;
	margin: 0;
	padding: 15px 15px 17px;
	font-size: 17px;
}

.navi ul.section li.has_submenu a {
	width: calc(100% - 50px);
}

.navi ul.section li.has_submenu ul.sub-menu,
.navi ul.sub li.has_submenu ul.sub-menu {
	display: none;
}

.navi ul.sub-menu li.mobile_only {
	display: block;
}

.navi ul.section li.has_submenu ul.sub-menu li a {
	display: block;
	width: calc(100% - 20px);
	margin: 0 0 0 20px;
	padding: 15px 15px 17px;
	font-size: 17px;
}

.navi ul.sub {
	border-bottom: 1px solid #ccc;
}

.navi ul.sub li {
	border-top: 1px solid #ccc;
}

.navi ul.sub li a {
	display: block;
	margin: 0 0 0 20px;
	padding: 15px;
	font-size: 15px;
}

.navi ul.sub li.has_submenu a {
	width: calc(100% - 70px);
}

.navi ul.sub li.has_submenu ul.sub-menu {
	margin: 0 0 0 20px;
}

.el_spChildNavOpen {
	position: absolute;
	top: -6px;
	left: 80%;
	z-index: 20;
	-webkit-transition: all 200ms ease-out;
	-o-transition: all 200ms ease-out;
	transition: all 200ms ease-out;
	-webkit-transform-origin: center;
	-ms-transform-origin: center;
	transform-origin: center;
	padding: 10px;
}

.js_openParent.js_fire>.el_spChildNavOpen {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.js_openParent.js_fire>.el_spChildNavOpen>.el_spChildNavOpen_wrapper:after {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
	opacity: 0;
}

.el_spChildNavOpen_wrapper {
	position: relative;
	width: 15px;
	height: 15px;
	-webkit-transition: all 200ms ease-out;
	-o-transition: all 200ms ease-out;
	transition: all 200ms ease-out;
	-webkit-transform-origin: center;
	-ms-transform-origin: center;
	transform-origin: center;
}

.el_spChildNavOpen_wrapper:before {
	content: "";
	width: 100%;
	height: 1px;
	background-color: #111;
	position: absolute;
	top: calc(50% - 1px);
}

.el_spChildNavOpen_wrapper:after {
	content: "";
	width: 1px;
	height: 100%;
	background-color: #111;
	position: absolute;
	left: calc(50% - 1px);
	-webkit-transition: all 200ms ease-out;
	-o-transition: all 200ms ease-out;
	transition: all 200ms ease-out;
}

.nav_child {
	padding-top: 20px;
}

.nav_child_item {
	position: relative;
	font-size: 16px;
	padding-left: 20px;
	margin-bottom: 10px;
}

.nav_child_item>a {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
}

.nav_child_item:last-child {
	margin-bottom: 0px;
}

.js_openSwitch {
	cursor: pointer;
}

.js_openTarget {
	display: none;
}

@media screen and (max-width:600px) {
	.navi {
		width: 100%;
	}
}