@charset "UTF-8";
/*----------  basic  ----------*/
body {
	background: #F4F6F6;
	color: #505B5B;
	font-family: "YuGothic", "游ゴシック", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Verdana, sans-serif;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.6;
}

/*----------  link  ----------*/
a {
	color: #F08E84;
	-webkit-transition: color .3s ease-in-out;
	transition: color .3s ease-in-out;
}

a:hover {
	color: #ea6457;
}

/*----------  layout  ----------*/
.inr {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
}

/*----------  footer  ----------*/
#scroll_top {
	position: absolute;
	top: -3rem;
	right: 0;
	left: 0;
	width: 6rem;
	margin: 0 auto;
}

#scroll_top a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	top: 0;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 6rem;
	border-radius: 100%;
	background-color: #fff;
	-webkit-box-shadow: 0 2px 0 0 #b7b7b7;
	box-shadow: 0 2px 0 0 #b7b7b7;
	color: #c4c4c4;
	text-decoration: none;
	-webkit-transition: color 0.2s ease-in-out, 0.2s ease-in-out;
	transition: color 0.2s ease-in-out, 0.2s ease-in-out;
}

#scroll_top a:hover {
	color: #9e9e9e;
}

#scroll_top a:active {
	top: 2px;
}

#footer {
	position: relative;
	background-color: #499eac;
}

#footer section .inr {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

#footer_menu {
	padding: 4.4rem 0;
	line-height: 1.4;
}

#footer_menu .menu_lists {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

#footer_menu .menu_lists:not(:first-child) {
	margin-top: 0.8rem;
}

#footer_menu .menu_lists:nth-child(n + 2):not(:last-child) li {
	position: relative;
	margin-right: 1.6rem;
}

#footer_menu .menu_lists:nth-child(n + 2):not(:last-child) li:after {
	position: absolute;
	top: 0;
	right: -0.9rem;
	bottom: 0;
	width: 1px;
	height: calc(100% - 8px);
	margin: auto 0;
	-webkit-transform: rotate(18deg);
	transform: rotate(18deg);
	background-color: #fff;
	content: "";
}

#footer_menu .menu_lists:last-child li:not(:last-child) {
	position: relative;
	margin-right: 1.6rem;
}

#footer_menu .menu_lists:last-child li:not(:last-child):after {
	position: absolute;
	top: 0;
	right: -0.9rem;
	bottom: 0;
	width: 1px;
	height: calc(100% - 8px);
	margin: auto 0;
	-webkit-transform: rotate(18deg);
	transform: rotate(18deg);
	background-color: #fff;
	content: "";
}

#footer_menu a {
	position: relative;
	color: #fff;
	font-size: 1.4rem;
	font-weight: bold;
	text-decoration: none;
}

#footer_menu a::before {
	position: absolute;
	right: 0;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 1px;
	margin: 0 auto;
	background-color: #fff;
	content: "";
	-webkit-transition: width 0.2s ease-in-out;
	transition: width 0.2s ease-in-out;
}

#footer_menu a:hover::before {
	width: calc(100% - 0.8rem);
}

#footer_site_info {
	background-color: #e9f8f8;
}

#footer_site_info a {
	opacity: 1;
	-webkit-transition: opacity 0.4s ease-in-out;
	transition: opacity 0.4s ease-in-out;
}

#footer_site_info a:hover {
	opacity: 0.7;
}

#footer_site_info .info_detail .logo {
	min-height: 0%;
}

#footer_site_info .info_detail .logo img {
	width: 274px;
}

#footer_site_info .info_detail .address {
	min-height: 0%;
	padding-bottom: 0.4rem;
	color: #499eac;
	font-size: 1.2rem;
}

#footer_site_info .info_tel {
	line-height: 1.4;
}

#footer_site_info .info_tel .lead {
	color: #c95853;
	font-weight: bold;
}

#footer_site_info .info_tel .tel {
	margin-top: 1.2rem;
	color: #f08e84;
	font-weight: bold;
}

#footer_site_info .info_tel .tel a {
	text-decoration: none;
}

#footer_site_info .info_tel .num {
	margin-left: 1rem;
	font-size: 2.8rem;
	letter-spacing: 0.28rem;
	line-height: 1;
}

#footer_site_info .info_tel .time {
	margin-top: 1rem;
	color: #499eac;
	font-size: 1.2rem;
}

#footer_site_info .info_logo {
	position: relative;
}

#footer_site_info .info_logo:before {
	position: absolute;
	top: 0;
	left: 0;
	background-color: #499eac;
	content: "";
}

#footer_site_info .info_logo .produced {
	margin-top: 1.4rem;
	color: #499eac;
	font-size: 1.2rem;
	line-height: 1.2;
}

#copyright {
	padding: 1.7rem 2rem;
	background-color: #416790;
	color: #fff;
	font-size: 1.2rem;
	line-height: 1.4;
	text-align: center;
}

/*===========================
=            header            =
===========================*/
#header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
}

body:not(.top) #header {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
}

#header.is-sticky {
	position: fixed;
}

#header.is-sticky:not(.sticky-off) {
	overflow: hidden;
}

#header.sticky-on {
	-webkit-animation: header-in 0.4s ease-in-out;
	animation: header-in 0.4s ease-in-out;
}

#header_wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	z-index: 2;
	position: relative;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	max-width: 1400px;
	height: 100%;
	margin: 0 auto;
}

#header_logo a {
	opacity: 1;
	-webkit-transition: opacity 0.4s ease-in-out;
	transition: opacity 0.4s ease-in-out;
}

#header_logo a:hover {
	opacity: 0.7;
}

#header_logo .mark {
	width: 100%;
	max-width: 274px;
}

#header_gnav_list li {
	font-weight: bold;
}

#header_gnav_list a {
	text-decoration: none;
}

#header_btn_contact {
	width: 180px;
}

#header_btn_contact .button.pink {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

#header_drawer_navi {
	width: 50px;
	background: #499eac;
}

#header_drawer_navi a {
	display: block;
	position: relative;
	height: 100%;
	min-height: 50px;
}

#header_drawer_navi .bar {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 30px;
	height: 3px;
	margin: auto;
	-webkit-transform: translateY(0) rotate(0);
	transform: translateY(0) rotate(0);
	border-radius: 2px;
	background-color: #fff;
	-webkit-transition: -webkit-transform 0.4s ease-in-out;
	transition: -webkit-transform 0.4s ease-in-out;
	transition: transform 0.4s ease-in-out;
	transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}

#header_drawer_navi .bar:nth-child(1) {
	-webkit-transform: translateY(0.8rem) rotate(0);
	transform: translateY(0.8rem) rotate(0);
}

#header_drawer_navi .bar:nth-child(2) {
	-webkit-transform: translateY(-0.8rem) rotate(0);
	transform: translateY(-0.8rem) rotate(0);
}

.is-drawer-open #header_drawer_navi .bar:nth-child(1) {
	-webkit-transform: translateY(0) rotate(45deg);
	transform: translateY(0) rotate(45deg);
}

.is-drawer-open #header_drawer_navi .bar:nth-child(2) {
	-webkit-transform: translateY(0) rotate(-45deg);
	transform: translateY(0) rotate(-45deg);
}

@-webkit-keyframes header-in {
	0% {
		-webkit-transform: translateY(-100px);
		transform: translateY(-100px);
	}
	100% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
	}
}

@keyframes header-in {
	0% {
		-webkit-transform: translateY(-100px);
		transform: translateY(-100px);
	}
	100% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
	}
}

@-webkit-keyframes header-out {
	0% {
		background-color: #499fad;
	}
	100% {
		position: absolute;
		background-color: rgba(73, 159, 173, 0);
	}
}

@keyframes header-out {
	0% {
		background-color: #499fad;
	}
	100% {
		position: absolute;
		background-color: rgba(73, 159, 173, 0);
	}
}

@-webkit-keyframes header-bg-open {
	0% {
		max-height: 100px;
	}
	100% {
		max-height: 300px;
	}
}

@keyframes header-bg-open {
	0% {
		max-height: 100px;
	}
	100% {
		max-height: 300px;
	}
}

/*----------  media query ----------*/

@media screen and (max-width: 767px) {
	body {
		font-size: 1.3rem;
	}
	#scroll_top {
		top: -2.5rem;
		width: 5rem;
	}
	#scroll_top a {
		height: 5rem;
	}
	#footer_menu {
		padding: 3.2rem 0 1.6rem;
	}
	#footer_menu .menu_lists {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	#footer_site_info .info_detail {
		padding-top: 4rem;
	}
	#footer_site_info .info_detail .logo {
		text-align: center;
	}
	#footer_site_info .info_detail .logo img {
		max-height: 30px;
		margin: 0 auto;
	}
	#footer_site_info .info_detail .address {
		width: 260px;
		margin: 1rem auto 0;
		font-size: 1rem;
		line-height: 1.5;
	}
	#footer_site_info .info_tel .lead {
		margin-top: 2.4rem;
		font-size: 1.6rem;
		text-align: center;
	}
	#footer_site_info .info_tel .tel {
		text-align: center;
	}
	#footer_site_info .info_tel .time {
		font-size: 1rem;
		text-align: center;
	}
	#footer_site_info .info_logo {
		margin-top: 3.2rem;
		padding-top: 3.2rem;
		padding-bottom: 3rem;
	}
	#footer_site_info .info_logo .logo {
		text-align: center;
	}
	#footer_site_info .info_logo:before {
		right: 0;
		width: calc(100% - 3.2rem);
		height: 1px;
		margin: 0 auto;
	}
	#footer_site_info .info_logo .produced {
		margin-top: 0.4rem;
		font-size: 1rem;
		text-align: center;
	}
	#header {
		z-index: 100;
		position: -webkit-sticky;
		position: sticky;
		top: 0;
		left: 0;
		width: 100%;
		height: auto;
		-webkit-transition: height 0.2s ease-in-out;
		transition: height 0.2s ease-in-out;
	}
	#header_wrap {
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
		min-height: 50px;
		background-color: #fff;
	}
	#header_logo {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		width: calc(100% - 100px);
		padding-left: 0.8rem;
	}
	#header_logo a {
		display: -webkit-inline-box;
		display: -ms-inline-flexbox;
		display: inline-flex;
	}
	#header_logo .mark {
		max-width: 162px;
	}
	#header_gnav {
		z-index: 1;
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		background-color: #fff;
		-webkit-transition: opacity 0.4s ease-in-out, height 0.4s ease-in-out;
		transition: opacity 0.4s ease-in-out, height 0.4s ease-in-out;
	}
	#header_gnav[data-drawer-menu="close"] {
		height: 0;
		opacity: 0;
	}
	#header_gnav[data-drawer-menu="open"] {
		-webkit-overflow-scrolling: touch;
		height: calc(100% - 50px);
		padding-bottom: 100px;
		overflow: auto;
		opacity: 1;
	}
	#header_gnav_list {
		width: 100%;
	}
	#header_gnav_list li {
		border-bottom: 1px solid #c3c3c3;
	}
	#header_gnav_list li:first-child {
		border-top: 1px solid #c3c3c3;
	}
	#header_gnav_list a {
		display: block;
		position: relative;
		padding: 2.2rem 2.4rem;
	}
	#header_gnav_list a:after {
		position: absolute;
		right: 1.6rem;
		margin: auto;
		font-family: "worthpost";
		content: "\e901";
	}
	#header_btn_contact {
		width: 50px;
	}
	#header_btn_contact .worthposticon-mail {
		font-size: 2.1rem;
	}
	#header_btn_contact .label {
		-webkit-transform: scale(0.7);
		transform: scale(0.7);
		-webkit-font-feature-settings: "palt";
		font-feature-settings: "palt";
		font-size: 10px;
		white-space: nowrap;
	}
	#header_btn_contact .button.pink {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		height: 100%;
		-webkit-box-shadow: none;
		box-shadow: none;
	}
	.is-drawer-open #header {
		height: 100vh;
	}
	.is-drawer-open #header_wrap {
		height: 50px;
	}
	.PC {
		display: none !important;
	}
}

@media screen and (min-width: 768px) {
	a[href*="tel:"] {
		color: inherit;
		text-decoration: none;
		cursor: text;
		pointer-events: none;
	}
	#main_content,
	#sec_lp_main {
		min-width: 1240px;
	}
	#footer {
		width: 100%;
		min-width: 1240px;
	}
	#footer_site_info .inr {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		padding: 3rem 0;
	}
	#footer_site_info .info_detail {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		width: 480px;
	}
	#footer_site_info .info_detail .logo {
		margin-top: 2rem;
	}
	#footer_site_info .info_tel {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		width: 240px;
		margin-left: 60px;
	}
	#footer_site_info .info_logo {
		width: 340px;
		margin-left: 80px;
		padding: 1.6rem 0 1.6rem 4rem;
	}
	#footer_site_info .info_logo:before {
		width: 1px;
		height: 100%;
	}
	#header {
		z-index: 100;
		position: absolute;
		top: 0;
		left: 0;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		min-width: 1240px;
	}
	body:not(.top) #header {
		background-color: #499fad;
	}
	body.top #header.is-sticky {
		background-color: #499fad;
	}
	body.top #header.sticky-off {
		-webkit-animation: header-out 0.4s ease-in-out;
		animation: header-out 0.4s ease-in-out;
		-webkit-animation-iteration-count: 1;
		animation-iteration-count: 1;
	}
	#header_wrap {
		min-height: 100px;
		padding: 0 100px;
	}
	#header_wrap:before {
		z-index: -1;
		position: absolute;
		top: 0;
		left: 70px;
		width: 342px;
		height: 280px;
		max-height: 100px;
		background: url("../img/logo_bg.svg") no-repeat top left;
		background-size: 100% auto;
		content: "";
	}
	#header_logo {
		width: 274px;
		height: 100%;
		padding: 2.4rem 0;
	}
	#header_gnav {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
	}
	#header_gnav_list {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	#header_gnav_list li {
		margin-right: 3.2rem;
	}
	#header_gnav_list a {
		position: relative;
		color: #fff;
	}
	#header_gnav_list a::before {
		position: absolute;
		right: 0;
		bottom: -4px;
		left: 0;
		width: 0;
		height: 1px;
		margin: 0 auto;
		background-color: #fff;
		content: "";
		-webkit-transition: width 0.2s ease-in-out;
		transition: width 0.2s ease-in-out;
	}
	#header_gnav_list a:hover::before {
		width: calc(100% - 0.8rem);
	}
	#header_btn_contact .button.pink {
		width: 100%;
		max-width: 180px;
		padding: 0.8rem 2rem;
		border-radius: 20px;
		font-weight: bold;
	}
	.SP {
		display: none !important;
	}
}
/*# sourceMappingURL=basic.css.map */
