@charset "UTF-8";

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

body {
	color: #252525;
	font-family: 'Noto Sans JP', sans-serif;
	background: #fff;
	font-size: 1.4rem;
	line-height: 1.5;
	height: 100%;
	-webkit-text-size-adjust: 100%;
	min-width: 1100px;
}
.wrapper {
	overflow: hidden;
}

@media only screen and (max-width: 768px) {
	body {
		min-width: 0;
	}
}
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;
	}

}


/*font
----------------------------------------*/
.en {
	font-family: 'Oswald', sans-serif;
}

/*header
----------------------------------------*/
.header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	background: #fff;
	z-index: 2000;
}
.header.fixed {
	position: fixed;
	animation-fill-mode: forwards;
	animation-timing-function: linear;
	animation-name: fixed;
	animation-duration: 300ms;
}
.header.fixed .header_inner {
	display: none;
}
.header a {
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
}
.header a:hover {
	opacity: .6;
}
.header_inner {
	height: 80px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.header_logo {
	padding: 20px 0 17px 18px;
}
.header_logo a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 1.1rem;
	font-weight: 500;
	line-height: 1.3;
}
.header_logo a img {
	width: 86px;
	display: block;
	margin-top: -2px;
}
.header_logo a > span {
	width: calc(100% - 86px);
	padding-left: 10px;
	letter-spacing: -.03em;
}
.header_logo a span span {
	display: block;
	font-weight: bold;
	font-size: 2.1rem;
	margin: 2px 0 0 -2px;
	letter-spacing: .05em;
}
.header_description {
	background: #EEE;
	font-size: 1.5rem;
	font-weight: bold;
	padding: 6px 11px;
	letter-spacing: .049em;
	margin: 22px 0 16px 28px;
}
.header_sns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 1px 0 0 auto;
}
.header_sns img {
	display: block;
	margin: 0 auto;
}
.header_sns li {
	width: 22px;
	margin-left: 26px;
}
.header_sns li a {
	display: block;
}
.header_contact {
	width: 165px;
	margin-left: 49px;
}
.header_contact a {
	display: block;
	padding: 18px 10px 20px;
	background: #856D47;
	color: #fff;
	text-align: center;
	font-weight: 500;
	font-size: 1.2rem;
	letter-spacing: .1em;
}
.header_contact a::before {
	content: "";
	display: block;
	width: 19px;
	height: 14px;
	background: url(../img/common/icon_contact.svg) no-repeat;
	margin: 0 auto 10px;
}
.btn_nav {
	display: none;
}
.overlay {
	display: none;
}
@media only screen and (max-width: 768px) {
	.header,
	.header.fixed {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		animation: none;
	}
	.header.fixed .header_inner {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.header a:hover {
		opacity: 1;
	}
	.header_inner {
		height: 50px;
	}
	.header_logo {
		padding: 13px 0 12px 2.5vw;
	}
	.header_logo a {
		font-size: .84rem;
	}
	.header_logo a img {
		width: 68px;
	}
	.header_logo a > span {
		width: calc(100% - 68px);
		padding-left: 8px;
	}
	.header_logo a span span {
		font-size: 1.6rem;
		margin: 0 0 0 -2px;
		margin-top: 1px;
		white-space: nowrap;
	}
	.header_description {
		display: none;
	}
	.header_sns,
	.header_contact {
		display: none;
	}
	.btn_nav {
		position: fixed;
		top: 0;
		right: 0;
		display: block;
		width: 62px;
		height: 50px;
		background: #2A2A2A;
		-webkit-appearance: none;
		appearance: none;
		border: none;
	}
	.btn_nav::before,
	.btn_nav::after {
		content: "";
		display: block;
		width: 20px;
		height: 3px;
		border-radius: 1px;
		background: #fff;
		position: absolute;
		top: 9px;
		left: 33.87%;
		min-height: 2px;
		-webkit-transition: 300ms;
		transition: 300ms;
	}
	.btn_nav::after {
		top: 23px;
	}
	.btn_nav span {
		display: block;
		width: 15px;
		height: 3px;
		position: absolute;
		top: 16px;
		left: 33.87%;
		background: #fff;
		min-height: 2px;
	}
	.btn_nav span::before {
		content: "MENU";
		color: #fff;
		font-size: 1rem;
		width: 20px;
		height: 6px;
		display: block;
		position: absolute;
		top: 13px;
		left: 0;
		text-indent: -.1em;
	}
	.btn_nav.open span::before {
		content: "CLOSE";
		width: 23px;
		height: 6px;
		display: block;
		position: absolute;
		top: 13px;
		left: -1px;
		text-indent: -.15em;
	}
	.btn_nav.open span {
		background: transparent;
	}
	.btn_nav.open::before {
		top: 16px;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.btn_nav.open::after {
		top: 16px;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.overlay {
		display: block;
		width: 0;
		height: 0;
		background-color: rgba(255, 255, 255, .8);
		position: absolute;
		top: 0;
		left: 0;
		z-index: 1000;
		opacity: 0;
		transition: opacity .5s;
	}
	.overlay.open {
		width: 100%;
		height: 100%;
		opacity: 1;
	}
}
@media only screen and (max-width: 375px) {
	.header_logo a {
		font-size: 2.24vw;
	}
	.header_logo a img {
		width: 18.133vw;
	}
	.header_logo a > span {
		width: calc(100% - 18.133vw);
		padding-left: 2.133vw;
	}
	.header_logo a span span {
		font-size: 4.266vw;
	}
}
@keyframes fixed {
	0% {
		transform: translateY(-100%);
	}
	100% {
		transform: translateY(0);
	}
}

/*gnav
----------------------------------------*/
.gnav {
	background: #2A2A2A;
}
.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;
	text-align: center;
}
.gnav > ul > li {
	width: 25%;
}
.gnav > ul > li + li::before {
	content: "";
	width: 1px;
	display: block;
	background: rgba(255,255,255,.12);
	position: absolute;
	top: 10px;
	left: 0;
	bottom: 10px;
}
.gnav > ul > li > a {
	display: block;
	color: #fff;
	font-weight: 500;
	font-size: 1.5rem;
	padding: 24px;
	letter-spacing: .05em;
}
.gnav > ul > li > a:hover {
	opacity: 1;
}
.gnav .gnav_line {
	display: block;
	height: 3px;
	background: #9E9E9E;
	position: absolute;
	left: -25%;
	bottom: 0;
	width: 25%;
	pointer-events: none;
}
.gnav .gnav_line.move {
	-webkit-transition: left 300ms;
	transition: left 300ms;
}
.gnav > ul > li ul {
	position: absolute;
	left: 0;
	right: 0;
	text-align: left;
	z-index: 100;
	display: none;
}
.gnav > ul > li ul li + li {
	border-top: 1px solid #fff;
}
.gnav > ul > li ul a {
	display: block;
	padding: 22px 30px;
	background: rgba(43, 43, 43, .85);
	color: #fff;
	font-weight: bold;
}
.gnav .gnav_sns,
.gnav .gnav_contact {
	display: none;
}
@media only screen and (max-width: 768px) {
	.gnav {
		position: fixed;
		top: 50px;
		right: 0;
		width: 79.125vw;
		height: calc(100vh - 50px);
		overflow: auto;
		transform: translate(100%);
		transition: all .5s;
		background: rgba(42, 42, 42, .95);
		padding-bottom: 30px;
	}
	.gnav.open {
		transform: translate(0);
	}
	.gnav > ul {
		display: block;
	}
	.gnav > ul > li {
		width: auto;
		margin-bottom: 1px;
	}
	.gnav > ul > li + li::before {
		display: none;
	}
	.gnav > ul > li > a {
		font-weight: bold;
		background: rgba(0, 0, 0, .3);
		font-size: 1.3rem;
		padding: 16px 10px;
	}
	.gnav > ul > li > a::after {
		content: "";
		border: 2px solid #707070;
		border-width: 0 2px 2px 0;
		content: "";
		display: block;
		height: 6.5px;
		border-radius: 1px;
		position: absolute;
		right: 24px;
		top: 50%;
		margin-top: -7px;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		width: 6.5px;
	}
	.gnav > ul > li > a.open::after {
		margin-top: -3px;
		-webkit-transform: rotate(-135deg);
		transform: rotate(-135deg);
	}
	.gnav .gnav_line {
		display: none;
	}
	.gnav > ul > li ul {
		position: relative;
		left: auto;
		right: auto;
		margin: 0 5vw;
		text-align: center;
	}
	.gnav > ul > li ul li + li {
		border-top: 1px solid #707070;
	}
	.gnav > ul > li ul a {
		font-size: 1.2rem;
		padding: 14px 5%;
		background: none;
		font-weight: 500;
	}
	.gnav .gnav_sns {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		text-align: center;
		margin: 15px 0 0;
	}
	.gnav .gnav_sns li {
		margin: 0 7px;
	}
	.gnav .gnav_sns a {
		background: none;
	}
	.gnav .gnav_sns a img[src*="facebook"] {
		width: 16px;
	}
	.gnav .gnav_sns a img[src*="twitter"] {
		width: 27px;
	}
	.gnav .gnav_sns a img[src*="line"] {
		width: 25px;
	}
	.gnav .gnav_sns a::after {
		display: none;
	}
	.gnav .gnav_contact {
		display: block;
		margin-top: 15px;
	}
	.gnav .gnav_contact a {
		width: 82.148%;
		font-size: 1.3rem;
		display: block;
		margin: 0 auto;
		background: #856D47;
		color: #fff;
		text-align: center;
		padding: 13px 5% 14px;
	}
	.gnav .gnav_contact a::before {
		content: "";
		display: inline-block;
		width: 17px;
		height: 13px;
		background: url(../img/common/icon_contact.svg) no-repeat left top / 17px auto;
		vertical-align: -2px;
		margin-right: 18px;
	}
}

/* topic_path
----------------------------------------*/
.topic_path {
	background: #4A4A4A;
	color: #fff;
	padding: 6px 20px 8px;
	margin-bottom: 31px;
}
.topic_path ol {
	width: 1000px;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	font-size: 1.2rem;
	letter-spacing: .05em;
}
.topic_path li + li {
	margin-left: 16px;
	padding-left: 22px;
}
.topic_path li + li::before {
	content: "›";
	line-height: 1;
	font-size: 1.7rem;
	font-weight: 900;
	position: absolute;
	left: 0;
	top: -2px;
}
.topic_path li a {
	display: block;
}
.topic_path li a:hover {
	text-decoration: underline;
}
@media only screen and (max-width: 768px) {
	.topic_path {
		padding: 8px 2.5% 5px;
		margin-bottom: 15px;
	}
	.topic_path ol {
		width: auto;
		font-size: 1rem;
	}
	.topic_path li + li {
		margin-left: 11px;
		padding-left: 13px;
	}
	.topic_path li + li::before {
		font-size: 1rem;
		top: 2px;
	}
	.topic_path li a:hover {
		text-decoration: none;
	}
}

/*.container 共通
----------------------------------------*/
main {
	padding-top: 150px;
}
@media only screen and (max-width: 768px) {
	main {
		padding-top: 50px;
		-webkit-transition: transform 500ms;
		transition: transform 500ms;
	}
	main.open,
	main.open ~ .footer {
		transform: translate(-79.125vw);
	}
}

/*pagetop
----------------------------------------*/
.btn_pagetop {
	position: absolute;
	width: 100%;
}
.btn_pagetop a {
	position: absolute;
	bottom: 17px;
	right: 39px;
	width: 75px;
	height: 75px;
	background: #000;
	color: #fff;
	z-index: 1100;
	font-size: 1.2rem;
	line-height: 1.3;
	letter-spacing: .23em;
	padding: 30px 0 0 3px;
	text-align: center;
	display: none;
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
}
.btn_pagetop a::before {
	content: "";
	border: 2px solid #fff;
	border-width: 0 2px 2px 0;
	content: "";
	display: block;
	height: 6.5px;
	position: absolute;
	left: 50%;
	top: 12px;
	margin-left: -4px;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
	width: 6.5px;
}
.btn_pagetop a:hover {
	opacity: .6;
}
@media only screen and (max-width: 736px) {
	.btn_pagetop a {
		bottom: 13px;
		right: 3.75vw;
		width: 45px;
		height: 45px;
		font-size: .75rem;
		padding: 20px 0 0 3px;
	}
	.btn_pagetop a::before {
		border: 1px solid #fff;
		border-width: 0 1px 1px 0;
		height: 4px;
		top: 8px;
		margin-left: -2px;
		width: 4px;
	}
	.btn_pagetop a:hover {
		opacity: 1;
	}
}

/*footer
----------------------------------------*/
.footer {
	background: #1E1E1E;
	padding: 28px 0 0;
	color: #fff;
	-webkit-transition: transform 500ms;
	transition: transform 500ms;
}
.footer a {
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
}
.footer_inner {
	max-width: 1214px;
	margin: 0 auto;
	padding: 0 0 34px;
	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;
}
.footer_nav {
	padding-top: 3px;
	width: calc(100% - 364px);
}
.footer_nav > ul {
	width: 100%;
	border-top: 1px solid rgba(255,255,255,.3);
	padding-top: 18px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}
.footer_nav > ul > li {
	width: 22.352%;
}
.footer_nav > ul > li:nth-child(2) {
	width: 26%;
}
.footer_nav > ul > li > a {
	display: block;
	font-size: 1.3rem;
	font-weight: bold;
	padding: 2px 0 9px 12px;
	letter-spacing: .1em;
	border-bottom: 1px solid rgba(255,255,255,.3);
}
.footer_nav > ul > li > a::before {
	content: "";
	width: 1px;
	display: block;
	background: rgba(255,255,255,.3);
	position: absolute;
	left: 0;
	top: 0;
	bottom: 7px;
}
.footer_nav > ul ul {
	margin: 14px 0 0 15px;
}
.footer_nav > ul ul li + li {
	margin-top: 6px;
}
.footer_nav > ul ul a {
	display: block;
	font-size: 1.2rem;
	line-height: 1.45;
	letter-spacing: .07em;
	padding-left: 12px;
}
.footer_nav > ul ul a span {
	font-size: 1.1rem;
}
.footer_nav > ul ul a::before {
	content: "‣";
	position: absolute;
	left: -9px;
	top: -9px;
	font-weight: 500;
	font-size: 2.2rem;
	color: #BBB;
}
.footer_contact {
	width: 325px;
	background: #fff;
	padding: 19px 20px 21px;
	border-radius: 10px;
	text-align: center;
	color: #252525;
}
.footer_contact h2 {
	font-weight: 900;
	font-size: 1.6rem;
	letter-spacing: .1em;
	margin-bottom: 11px;
}
.footer_contact h2::after {
	content: "";
	width: 31px;
	height: 2px;
	display: block;
	margin: 6px auto 0;
	background: #000;
}
.footer_contact_txt {
	font-size: 1.3rem;
	font-weight: bold;
	margin: 0 0 4px;
	letter-spacing: .1em;
}
.footer_contact_btn {
	width: 255px;
	margin: 9px auto 0;
}
.footer_contact_btn a {
	display: block;
	border-radius: 2px;
	font-size: 1.3rem;
	font-weight: bold;
	background: #856D47;
	padding: 12px 18px 14px 10px;
	color: #fff;
}
.footer_contact_btn a::before {
	content: "";
	width: 17px;
	height: 13px;
	margin-right: 19px;
	display: inline-block;
	vertical-align: -2px;
	background: url(../img/common/icon_contact.svg) no-repeat left top / 17px auto;
}
.footer_contact_number {
	padding-left: 8px;
}
.footer_contact_number a {
	pointer-events: none;
	font-weight: bold;
	font-size: 1.9rem;
	letter-spacing: .05em;
}
.footer_contact_number a span {
	pointer-events: none;
	font-size: 2.7rem;
	letter-spacing: .05em;
}
.copyright {
	display: block;
	background: #000;
	text-align: center;
	color: #fff;
	font-size: 1rem;
	text-align: center;
	padding: 19px 10px 18px;
	letter-spacing: .1em;
}
.footer a:hover {
	opacity: .6;
}
@media only screen and (max-width: 768px) {
	.footer {
		padding: 16px 0 0;
	}
	.footer_inner {
		padding: 0 0 30px;
		display: block;
	}
	.footer_nav {
		padding-top: 0;
		width: auto;
		margin: 0 3.75%;
	}
	.footer_nav > ul {
		padding-top: 0;
		display: block;
	}
	.footer_nav > ul > li,
	.footer_nav > ul > li:nth-child(2) {
		width: auto;
	}
	.footer_nav > ul > li > a {
		font-size: 1.5rem;
		padding: 15px 0 15px 16px;
		letter-spacing: .05em;
	}
	.footer_nav > ul > li > a::after {
		content: "";
		display: block;
		width: 6px;
		height: 6px;
		border: 0;
		border-radius: 1px;
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		-webkit-transform: rotate(135deg);
		transform: rotate(135deg);
		position: absolute;
		top: 50%;
		right: 10px;
		margin-top: -5px;
	}
	.footer_nav > ul > li > a.open::after {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		margin-top: -2px;
	}
	.footer_nav > ul > li > a::before {
		left: 5px;
		top: 5px;
	}
	.footer_nav > ul ul {
		margin: 14px 0 0;
		padding-left: 17px;
		padding-bottom: 20px;
		display: none;
		border-bottom: 1px solid rgba(255,255,255,.3);
	}
	.footer_nav > ul ul li + li {
		margin-top: 6px;
	}
	.footer_nav > ul ul a {
		font-size: 1.2rem;
		padding-top: 8px;
		padding-bottom: 8px;
	}
	.footer_nav > ul ul a::before {
		left: -7px;
		top: 0;
		font-size: 2rem;
	}
	.footer_contact {
		width: 92.5%;
		margin: 30px auto 0;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		padding: 16px 0 14px;
		border-radius: 5px;
	}
	.footer_contact h2 {
		width: 95px;
		font-size: 1.2rem;
		padding-left: 10px;
		text-align: left;
		margin-bottom: 0;
	}
	.footer_contact h2::after {
		display: none;
	}
	.footer_contact_inner {
		width: calc(100% - 105px);
		border-left: 1px solid #000;
	}
	.footer_contact_txt {
		font-size: 1.2rem;
		margin: 0 0 2px;
		padding-top: 3px;
		line-height: 1.2;
	}
	.footer_contact_btn {
		width: 179.5px;
		margin: 9px auto 0;
	}
	.footer_contact_btn a {
		border-radius: 1px;
		font-size: 1.05rem;
		padding: 10px 18px 10px 10px;
	}
	.footer_contact_btn a::before {
		width: 13px;
		height: 10.5px;
		margin-right: 10px;
		vertical-align: -1px;
		background-size: 13px auto;
	}
	.footer_contact_number {
		padding-left: 0;
		line-height: 1.2;
	}
	.footer_contact_number a {
		pointer-events: auto;
		font-size: 1.55rem;
	}
	.footer_contact_number a span {
		font-size: 2.1rem;
	}
	.copyright {
		font-size: .8rem;
		padding: 16px 5% 14px;
	}
	.footer a:hover {
		opacity: 1;
	}
}

/*inview
----------------------------------------*/
.inview {
	opacity: 0;
	transform: translateY(100px);
}
.inview.show {
	animation-fill-mode: forwards;
	animation-duration: 600ms;
	animation-name: movey;
}
@keyframes movey {
	0% {
		opacity: 0;
		transform: translateY(100px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
