@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

/* オリジナルのレイアウト
----------------------------------------*/
html {
	font-size: 1rem;
	font-size: 10px;
}

body {
	color: #100909;
	font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;
	background: #fff;
	font-size: 1.4rem;
	line-height: 1.5;
	height: 100%;
	-webkit-text-size-adjust: 100%;
	min-width: 1100px;
}
body.fixed {
	width: 100%;
	height: 100%;
	position: fixed;
}
.wrapper {
	overflow: hidden;
}

@media only screen and (max-width: 768px) {
	body {
		height: 100%;
		min-width: 0;
	}
}
@media only screen and (max-width: 375px) {
	html {
		font-size: 2.6666vw;
	}
}
a {
	text-decoration: none;
	color: inherit;
}


/*表示
----------------------------------------*/
/* PCだけ表示 */
.visible_pc {
	display: block !important;
}
/* SPだけ表示 */
.visible_sp {
	display: none !important;
}

/* PCだけ表示 */
.visible_pc_inline {
	display: inline !important;
}
/* SPだけ表示 */
.visible_sp_inline {
	display: none !important;
}

@media only screen and (max-width: 768px) {
	/* PCだけ表示 */
	.visible_pc {
		display: none !important;
	}
	/* SPだけ表示 */
	.visible_sp {
		display: block !important;
	}

	/* PCだけ表示 */
	.visible_pc_inline {
		display: none !important;
	}
	/* SPだけ表示 */
	.visible_sp_inline {
		display: inline !important;
	}
	/* SPだけ改行 */
	.sp_br {
		display: block;
	}

}

/*画像のfloat
----------------------------------------*/
.img_float_l {
	float: left;
	z-index: 2;
	margin-right: 30px;
	max-width: 30%;
}
.img_float_l + div,
.img_float_r + div {
	overflow: hidden;
}
.img_float_r {
	float: right;
	z-index: 2;
	margin-left: 30px;
	max-width: 30%;
}
@media only screen and (max-width: 768px) {
	.img_float_l {
		margin-right: 0;
		margin-bottom: 15px;
		max-width: 100%;
		float: none;
	}
	.img_float_r {
		margin-left: 0;
		margin-bottom: 15px;
		max-width: 100%;
		float: none;
	}
}

/*header
----------------------------------------*/
.header {
	min-width: 1100px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
	z-index: 1100;
}
.header_inner {
	width: 1000px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	font-family: 'Noto Sans JP', sans-serif;
}
.header_logo {
	width: 280px;
	margin-right: 20px;
	padding-top: 20px;
}
.header_logo a {
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
}
.header_logo a:hover {
	opacity: .6;
}
.header_snav {
	display: flex;
	justify-content: flex-end;
}
.header_snav,
.gnav_tel {
	position: static;
}
.gnav_contact {
	width: 290px;
	text-align: center;
}
.gnav_contact a {
	display: block;
	height: 59px;
	background: linear-gradient(170deg, #3680d3 0%,#3199b7 100%);
	color: #fff;
	font-size: 1.5rem;
	padding: 18px 10px 0 12px;
	transition: opacity .3s;
}
.gnav_contact a::before {
	content: '';
	display: inline-block;
	width: 25px;
	height: 18px;
	margin-right: 13px;
	vertical-align: -4px;
	background: url(../img/common/icon_contact.svg) no-repeat;
}
.gnav_tel > button {
	width: 211px;
	appearance: none;
	border-radius: 0;
	color: #fff;
	font-family: inherit;
	font-size: 1.5rem;
	border: 0;
	height: 59px;
	padding: 0 12px 0 10px;
	letter-spacing: .08em;
	cursor: pointer;
	background: linear-gradient(170deg, #0eae84 0%,#37c295 100%);
	transition: opacity .3s;
}
.gnav_tel > button::before {
	content: '';
	display: inline-block;
	width: 25px;
	height: 23px;
	margin-right: 15px;
	vertical-align: -6px;
	background: url(../img/common/icon_tel.svg) no-repeat;
}
.btn_nav {
	display: none;
}
@media only screen and (min-width: 769px) {
	.gnav_contact a:hover,
	.gnav_tel button:hover {
		opacity: .6;
	}
}
@media only screen and (max-width: 768px) {
	.header {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		min-width: 0;
		background: #fff;
		height: 24vw;
		z-index: 1100;
	}
	.header_inner {
		width: auto;
		flex: 1;
		height: 12vw;
		padding: 0 0 0 2.933%;
		margin: 0;
		position: static;
	}
	.header_logo {
		width: 41.7333vw;
		margin-right: 0;
		padding-top: 2.6666vw;
	}
	.header_logo a:hover,
	.header_snav li a:hover {
		opacity: 1;
	}
	.gnav_tel > button {
		width: 12vw;
		height: 12vw;
		padding: 0;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.gnav_tel > button::before {
		width: 5.7333vw;
		height: 5.4666vw;
		display: block;
		margin: 0;
	}
	.gnav_tel span {
		display: none;
	}
	.gnav_tel_tokyo > span {
		display: block;
	}
	.gnav_contact {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
	}
	.gnav_contact a {
		padding: 0;
		height: 12vw;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.gnav_contact a::before {
		width: 6.2666vw;
		height: 4.4vw;
		margin: 0 2.6666vw 0 -8.9332vw;
	}
	.btn_nav {
		display: block;
		margin: 1px;
		width: 12vw;
		height: 12vw;
		appearance: none;
		border: 0;
		padding: 0;
		margin: 0;
		border-radius: 0;
		outline: none;
		background: #000;
	}
	.btn_nav::before,
	.btn_nav::after {
		content: "";
		display: block;
		width: 5.3333vw;
		height: .2666vw;
		background: #fff;
		position: absolute;
		top: 4vw;
		left: 3.6vw;
		-webkit-transition: 300ms;
		transition: 300ms;
	}
	.btn_nav::after {
		top: 7.7333vw;
	}
	.btn_nav span {
		display: block;
		width: 5.3333vw;
		height: .2666vw;
		position: absolute;
		top: 5.866vw;
		left: 3.6vw;
		background: #fff;
	}
	.btn_nav.open span {
		background: transparent;
	}
	.btn_nav.open::before {
		top: 5.9vw;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.btn_nav.open::after {
		top: 5.9vw;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
}

/*gnav
----------------------------------------*/
.gnav {
	margin: 7px 0 0;
}
.gnav > ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}
.gnav > ul > li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: static;
}
.gnav > ul > li + li {
	margin-left: 45px;
}
.gnav > ul > li > a {
	font-size: 1.5rem;
	color: #000;
	padding: 14px 0;
	font-family: 'Noto Sans JP', sans-serif;
}
.gnav > ul > li > a::after {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	border-top: 2px solid #c7c7c7;
	border-right: 2px solid #c7c7c7;
	margin-left: 12px;
	vertical-align: 3px;
	transform: scaleY(.8) rotate(135deg);
	transition: border-color .3s;
}
.gnav > ul > li:hover > a,
.gnav > ul > li.current > a {
	color: #009bff;
}
.gnav > ul > li:hover a::after {
	border-color: #009bff;
}
.gnav > ul > li > .gnav_children {
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -500px;
	background: #009bff;
	color: #fff;
	padding: 35px 20px 50px;
	width: 1000px;
	z-index: 1500;
	display: none;
}
.gnav > ul > li > .gnav_children::before,
.gnav_tel_children::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: -9999px;
	right: -9999px;
	background: #009bff;
}
.gnav_children_top {
	font-size: 1.6rem;
	font-feature-settings: "palt";
	letter-spacing: 0;
	font-weight: bold;
	margin-bottom: 25px;
}
.gnav .gnav_children_top a {
	display: inline-block;
	width: auto;
	transition: opacity .3s;
}
.gnav_children ul {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-wrap: wrap;
}
.gnav_children ul li {
	width: 220px;
	margin-right: 20px;
	line-height: 1.2;
	font-size: 1.6rem;
	font-weight: bold;
}
.gnav_children ul li.gnav_children_sm {
	width: 165px;
}
.gnav_children ul li.gnav_children_sm:nth-child(4n+1) {
	margin-right: 0;
}
.gnav_children ul li.gnav_children_sm:nth-child(4n+1) + li {
	margin-left: 240px;
}
.gnav_children ul li.gnav_children_sm:nth-child(n+6) {
	margin-top: -15px;
}
.gnav_children ul li img {
	margin-bottom: 10px;
}
.gnav_children_top a::after {
	content: '';
	display: inline-block;
	width: 14px;
	height: 12px;
	background: url(../img/common/icon_gnav_arrow.svg) no-repeat left top / 100% auto;
	margin-left: 10px;
	vertical-align: 2px;
	transition: transform .3s;
}
.gnav_children ul li a {
	letter-spacing: 0;
}
.gnav > ul ul a {
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
}
.gnav > ul ul a:hover {
	opacity: .6;
}
.gnav a {
	display: block;
	width: 100%;
	letter-spacing: .04em;
	-webkit-transition: color 300ms, background 300ms;
	transition: color 300ms, background 300ms;
}
.gnav > ul > .gnav_tel a::before,
.gnav > ul > .gnav_contact a::before {
	display: none;
}
.gnav > ul > .gnav_tel > button {
	-webkit-appearance: none;
	appearance: none;
	border: none;
	background: #008be5 url(../img/common/icon_tel.svg) no-repeat center 9px / 18px 17px;
	width: 78px;
	min-height: 48px;
	padding: 21px 0 0;
	text-align: center;
	cursor: pointer;
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
}
.gnav > ul > .gnav_contact {
	margin: 0 20px 0 0;
}
.gnav > ul > .gnav_contact a {
	background: #008be5 url(../img/common/icon_contact.svg) no-repeat center 10px / 18px 14px;
	width: 80px;
	min-height: 48px;
	padding: 24px 0 0;
	text-align: center;
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
}
.gnav_contact a img {
	width: 37.5px;
}
.gnav_tel_children {
	position: absolute;
	top: 100%;
	left: 50%;
	margin-top: 58px;
	margin-left: -490px;
	width: 980px;
	background: #009bff;
	z-index: 1100;
	display: flex;
	padding: 35px 0 38px;
	color: #fff;
	visibility: hidden;
}
.gnav_tel_children h2 {
	z-index: 10;
	width: 170px;
	margin-left: 10px;
	font-weight: normal;
	font-size: 1.6rem;
	padding-left: 44px;
	padding-bottom: 2px;
	background: url(../img/common/icon_tel.svg) no-repeat 2px 5px / 29px auto;
}
.gnav_tel_list {
	width: calc(100% - 170px);
	display: flex;
	flex-wrap: wrap;
	position: relative;
	padding-left: 32px;
}
.gnav_tel_list::before {
	content: "";
	width: 1px;
	display: block;
	background: #fff;
	position: absolute;
	top: 5px;
	bottom: 16px;
	left: 2px;
}
.gnav_tel_tokyo {
	width: 100%;
	font-size: 1.8rem;
	line-height: 1.2;
	margin: -4px 0 16px;
}
.gnav_tel_tokyo a {
	font-size: 3.6rem;
}
.gnav_tel_tokyo a span {
	font-size: 1.8rem;
	display: inline-block;
	font-weight: bold;
	margin-right: 10px;
	vertical-align: 3px;
}
.gnav_tel_tokyo > span {
	margin-right: 6px;
	vertical-align: 3px;
}
.gnav_tel_list > ul {
	width: 345px;
}
.gnav_tel_list > ul + ul {
	margin-top: -2px;
}
.gnav_tel_list ul li {
	display: flex;
}
.gnav_tel_list > ul > li > p {
	width: 135px;
	padding-right: 5px;
	text-align: right;
}
.gnav_tel_list > ul > li ul {
	flex: 1;
	margin-top: -7px;
}
.gnav_tel_list > ul > li + li {
	margin-top: 15px;
}
.gnav_tel_list ul li span {
	font-size: 1.6rem;
	display: inline-block;
	font-weight: bold;
}
.gnav_tel_list ul li a span {
	vertical-align: 1px;
	margin-right: 8px;
}
.gnav_tel_list ul + ul li a span {
	width: 3em;
	text-align: right;
}
.gnav_tel_list ul li a {
	font-size: 2.4rem;
	line-height: 1.4;
}
.sp_gnav {
	display: none;
}
@media only screen and (min-width: 769px) {
	.gnav .gnav_children_top a:hover {
		opacity: .6;
	}
	.gnav_children_top a:hover::after {
		transform: translateX(5px);
	}
	.gnav_tel a[href^="tel:"] {
		pointer-events: none;
	}
}
@media only screen and (max-width: 768px) {
	.gnav {
		background: none;
		padding-left: 0;
		border-top: none;
		border-bottom: none;
		margin: 0 0 0 auto;
		height: calc(100% - 12.031vw + 2px);
		position: static;
	}
	.fixed .gnav {
		position: static;
	}
	.gnav > ul {
		padding-top: 1px;
		position: static;
	}
	.gnav > ul > li {
		display: none;
	}
	.gnav > ul > .gnav_contact,
	.gnav > ul > .gnav_tel {
		display: block;
	}
	.gnav > ul > .gnav_contact a:hover,
	.gnav > ul > .gnav_tel button:hover {
		opacity: 1;
	}
	.gnav > ul > li > ul::before,
	.gnav_tel_children::before {
		display: none;
	}
	.gnav > ul > .gnav_tel {
		margin: 0 1px 0 0;
		position: static;
	}
	.gnav > ul > .gnav_tel > button {
		background-position: center 2.656vw;
		background-size: 4.375vw auto;
		width: 17.187vw;
		min-height: 0;
		height: 12.031vw;
		display: block;
		padding: 5.5vw 0 0;
	}
	.gnav > ul > .gnav_tel button img {
		width: 22.727%;
		display: block;
		margin: 0 auto;
	}
	.gnav > ul > .gnav_contact {
		margin: 0;
	}
	.gnav > ul > .gnav_contact a {
		background-position: center 3.125vw;
		background-size: 4.531vw auto;
		width: 17.187vw;
		min-height: 0;
		height: 12.031vw;
		padding: 7.812vw 0 0;
	}
	.gnav_contact a img {
		width: 41.818%;
		display: block;
		margin: 0 auto;
	}
	.gnav_tel_children {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		height: 100vh;
		margin-left: 0;
		width: 100%;
		display: block;
		padding: 0;
		overflow: auto;
		margin-top: 0;
	}
	.gnav_tel_children h2 {
		width: auto;
		margin-left: 0;
		font-size: 1.4rem;
		padding: 50px 0 20px;
		margin: 0 5% 5px;
		text-align: center;
		background: url(../img/common/icon_tel.svg) no-repeat center 20px / 28px auto;
		border-bottom: 1px solid #fff;
	}
	.gnav_tel_list {
		width: auto;
		display: block;
		padding-left: 0;
		margin: 0;
		padding-top: 20px;
	}
	.gnav_tel_list::before {
		display: none;
	}
	.gnav .gnav_tel_list li {
		display: block;
		margin: 0 0 20px;
		text-align: center;
	}
	.gnav .gnav_tel_list li:last-child {
		margin: 0;
	}
	.gnav .gnav_tel_list li p {
		display: inline-block;
		text-align: left;
	}
	.gnav .gnav_tel_list li span {
		display: block;
		text-align: left;
		width: auto;
		margin: 0 auto;
		font-weight: bold;
	}
	.gnav .gnav_tel_list li a {
		width: auto;
		margin: 0 auto;
		padding: 0 0 0 23px;
		background: url(../img/common/icon_tel_02.svg) no-repeat left 6px / 17px auto;
		pointer-events: auto;
	}
	.gnav_tel_tokyo {
		text-align: center;
		margin-bottom: 30px;
	}
	.gnav_tel_list > ul {
		width: auto;
		margin: 0 1rem 0 0;
		display: flex;
		align-items: center;
		flex-direction: column;
	}
	.gnav_tel_list ul + ul {
		margin-top: 15px;
	}
	.gnav_tel_list ul li a span {
		width: 3em;
		margin-right: .8rem;
		text-align: right;
	}
	.gnav_tel_list > ul > li > p {
		width: 13.5rem;
		padding-right: .5rem;
	}
	.gnav_tel_close {
		padding: 20px 0 12px;
		text-align: center;
	}
	.gnav_tel_close button {
		-webkit-appearance: none;
		appearance: none;
		background: #fff;
		font-family: inherit;
		border: none;
		color: #008be5;
		padding: 5px 20px;
		font-size: 1.2rem;
		width: auto;
		align-self: start;
	}
	.sp_gnav {
		position: absolute;
		top: 24vw;
		left: 0;
		right: 0;
		padding-top: 2.1rem;
		height: calc(100vh - 24vw);
		overflow: auto;
		z-index: 1100;
		display: none;
		background: #fff;
	}
	.sp_gnav > ul > li {
		border-bottom: solid 1px #fff;
	}
	.sp_gnav > ul > li ul {
		display: none;
	}
	.sp_gnav > ul > li ul a {
		display: block;
		color: #fff;
		background: #30aeff;
		padding: 14px 5%;
		font-size: 1.2rem;
	}
	.sp_gnav > ul > li li {
		border-top: solid 1px #fff;
	}
	.sp_gnav > ul > li > a {
		display: block;
		color: #000;
		font-weight: normal;
		padding: 4.5px 7%;
		font-size: 2rem;
		letter-spacing: 0;
	}
	.sp_gnav > ul > li a::after {
		border: 1px solid #000;
		border-width: 0 1px 1px 0;
		content: "";
		display: inline-block;
		height: .5rem;
		width: .5rem;
		vertical-align: .5rem;
		margin-left: 1rem;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.sp_gnav > ul > li.gnav_parent > a::after {
		-webkit-transform: rotate(0);
		transform: rotate(0);
		border: none;
		width: 9px;
		height: 1px;
		background: #fff;
		right: 7px;
		margin-top: 0;
	}
	.sp_gnav > ul > li.gnav_parent > a::before {
		content: "";
		display: block;
		position: absolute;
		border: none;
		top: 50%;
		margin-top: -4px;
		width: 1px;
		height: 9px;
		background: #fff;
		right: 11px;
	}
	.sp_gnav > ul > li.gnav_parent.open > a::before {
		display: none;
	}
	.sp_gnav > ul + ul {
		margin-top: 1rem;
	}
	.sp_gnav > ul + ul li + li {
		margin-top: .2rem;
	}
	.sp_gnav > ul + ul li a {
		font-size: 1.2rem;
	}
}

/* topic_path
----------------------------------------*/
.topic_path {
	width: 960px;
	margin: 9px auto;
}
.topic_path ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	font-size: 1.2rem;
	letter-spacing: .06em;
	color: #009bff;
}
.topic_path ul li + li::before {
	content: "＞";
	margin: 0 6px;
	color: #333;
}
.topic_path ul li + li {
	letter-spacing: .12em;
}
.topic_path ul li a {
	color: #333;
}
.topic_path ul li a:hover {
	text-decoration: underline;
}
@media only screen and (max-width: 768px) {
	.topic_path {
		display: none;
	}
}

/*.container 共通
----------------------------------------*/
main {
	padding-top: 127px;
}
@media only screen and (max-width: 768px) {
	main {
		padding-top: 24vw;
	}
}

/*pagetop
----------------------------------------*/
.btn_pagetop a {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 11px;
	height: 51px;
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
	z-index: 1000;
	padding-top: 29px;
	display: none;
}
.btn_pagetop a::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 29px;
	background: url(../img/common/btn_pagetop_arrow.png) no-repeat left top / 100% auto;
}
.btn_pagetop a:hover {
	opacity: .6;
}
@media only screen and (min-width: 768px) {
	.btn_pagetop a:hover::before {
		animation-fill-mode: forwards;
		animation-duration: 600ms;
		animation-name: movey;
	}
}
@media only screen and (max-width: 736px) {
}

/*footer
----------------------------------------*/
.footer {
	background: #000;
	padding: 0 0 36px;
	color: #fff;
}
.footer_sitemap {
	width: 980px;
	margin: 0 auto;
}
.footer a {
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
}
.footer a:hover {
	opacity: .6;
}
.footer_sitemap > ul {
	display: flex;
	flex-wrap: wrap;
}
.footer_logo p a[href^="tel:"] {
	pointer-events: none;
}
.footer_sitemap > ul > li {
	margin-bottom: 45px;
}
.footer_sitemap > ul > li:nth-child(1),
.footer_sitemap > ul > li:nth-child(4) {
	width: 279px;
}
.footer_sitemap > ul > li:nth-child(2) {
	width: 330px;
}
.footer_sitemap > ul > li:nth-child(3) {
	width: 352px;
}
.footer_sitemap > ul > li:nth-child(5) {
	width: 236px;
}
.footer_sitemap > ul > li:nth-child(6) {
	width: 193px;
}
.footer_sitemap > ul > li > a {
	letter-spacing: .025em;
	font-size: 1.8rem;
	font-weight: bold;
}
.footer_sitemap > ul > li ul {
	font-size: 1.6rem;
	margin: 20px 0 17px;
}
.footer_sitemap > ul > li p {
	font-size: 1.8rem;
	font-weight: bold;
}
.footer_sitemap > ul > li p + p {
	margin-top: 20px;
}
.footer_sitemap > ul > li .footer_sitemap_contact {
	margin-top: 47px;
}
.footer_sitemap > ul > li ul li {
	margin-bottom: 6px;
}
.footer_info {
	width: 980px;
	margin: 7px auto 0;
	display: flex;
	align-items: flex-end;
}
.footer_logo p {
	font-size: 1rem;
	line-height: 1.2;
	margin: -1px 0 10px -5px;
	letter-spacing: .025em;
}
.footer_logo a {
	display: block;
}
.footer_logo img:first-child {
	width: 72px;
	display: block;
	margin: 0 auto 19px;
	position: relative;
	left: -15px;
}
.footer_address {
	margin: 0 0 2px 38px;
}
.footer_address > p {
	font-size: 1.6rem;
	margin-top: 13px;
	letter-spacing: .025em;
}
.footer_address > ul {
	margin: 23px 0 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	font-size: 1.6rem;
}
.footer_address > ul li + li {
	margin-left: 28px;
}
.footer_sub {
	margin-left: 95px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.footer_sub li {
	margin-bottom: 9px;
}
.footer_sub ul + ul {
	margin-left: 74px;
}
.footer_trademark {
	background: #f9f9f9;
	border-top: 1px solid #ececec;
	color: #000;
	margin: 0 0 65px;
	padding: 19px 15px;
}
.footer_trademark p {
	color: #000;
	width: 980px;
	font-size: 1.6rem;
	letter-spacing: .05em;
	margin: 0 auto;
}
.footer_trademark p img {
	vertical-align: middle;
	margin-left: 16px;
	width: 200px;
}
.copyright {
	width: 980px;
	text-align: center;
	margin: 37px auto 0;
}
.copyright small {
	font-size: 1.4rem;
	letter-spacing: .04em;
}
@media only screen and (max-width: 768px) {
	.footer {
		padding: 0 5% 20px;
	}
	.footer_sitemap {
		display: none;
	}
	.footer a:hover {
		opacity: 1;
	}
	.footer_info {
		width: auto;
		margin: 0 auto;
		display: block;
	}
	.footer_logo p {
		font-size: 1rem;
		line-height: 1.2;
		margin: 5px 0 10px;
		letter-spacing: .025em;
	}
	.footer_logo img:first-child {
		width: 60px;
		display: block;
		margin: 0 auto 19px;
		position: relative;
		left: -5px;
	}
	.footer_logo img {
		width: 250px;
		display: block;
		margin: 0 auto;
	}
	.footer_logo p a[href^="tel:"] {
		pointer-events: all;
	}
	.footer_address {
		margin-left: 0;
	}
	.footer_address > p {
		line-height: 1.7;
		font-size: 1.4rem;
	}
	.footer_address > ul {
		margin: 28px 0 0;
		-webkit-box-pack: left;
		-ms-flex-pack: left;
		justify-content: left;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		font-size: 1.4rem;
	}
	.footer_address > ul li + li {
		margin-left: 0;
	}
	.footer_address > ul li {
		margin-right: 25px;
		margin-bottom: 15px;
	}
	.footer_sub {
		display: none;
	}
	.footer_trademark {
		margin: 0 -5.551% 35px;
		padding: 8px 5.551%;
	}
	.footer_trademark p {
		width: auto;
		font-size: 1.2rem;
	}
	.copyright {
		width: auto;
		text-align: center;
		margin: 10px auto 0;
	}
	.copyright small {
		font-size: 1.2rem;
	}
}
@media only screen and (max-width: 568px) {
	.footer_trademark p img {
		display: block;
		margin: 0;
	}
}
@keyframes movey {
	0% { top: 0; }
	50% { top: -10px; }
	100% { top: 0; }
}

/* recommended_block
----------------------------------------*/
.recommended_block {
	padding: 88px 0 110px;
}
.recommended_block h2 {
	text-align: center;
	font-weight: normal;
	letter-spacing: .12em;
	margin-bottom: 30px;
}
.recommended_block h2 img {
	display: block;
	width: 340px;
	margin: 0 auto 16px;
}
.recommended_block ul {
	width: 960px;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.recommended_block ul li {
	width: 301px;
	text-align: center;
}
.recommended_block ul li a {
	display: block;
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
}
.recommended_block ul li a:hover {
	opacity: .6;
}
.recommended_block ul li figure {
	overflow: hidden;
}
.recommended_block ul li figure img {
	display: block;
	margin: 0 auto;
	-webkit-transition: transform 300ms;
	transition: transform 300ms;
}
.recommended_block ul li h3 {
	font-size: 1.6rem;
	margin: 15px 0 11px;
	color: #009bff;
	letter-spacing: .03em;
}
.recommended_block ul li p {
	line-height: 1.75;
	letter-spacing: .05em;
}
@media only screen and (min-width: 768px) {
	.recommended_block ul li a:hover figure img {
		transform: scale(1.1);
	}
}
@media only screen and (max-width: 768px) {
	.recommended_block {
		padding: 50px 5% 50px;
	}
	.recommended_block h2 {
		font-size: 1.2rem;
	}
	.recommended_block h2 img {
		display: block;
		width: auto;
		height: 25px;
		margin: 0 auto 10px;
	}
	.recommended_block ul {
		width: auto;
		display: block;
	}
	.recommended_block ul li {
		width: 30.1rem;
		margin: 0 auto 30px;
	}
	.recommended_block ul li a:hover {
		opacity: 1;
	}
	.recommended_block ul li h3 {
		margin: 10px 0 5px;
	}
}