@charset "utf-8";

/*====================================================================================

		basic layout

====================================================================================*/

body {
	/*font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;*/
	color: #333;
	font-family: 'Noto Serif JP', serif;
	font-weight: 400;
	font-size: 16px;
	font-feature-settings: "palt";
	line-height: 2.0;
	position: relative;
}

body * {
	box-sizing: border-box;
}

#page_top {
	clear: both;
	margin: 0;
	text-align: right;
}

img {
	vertical-align: top;
}

a {
	/*color: #c66;*/
	color: #333;
	border: none;
	text-decoration: none;
	transition: all .3s;
}

a:hover {
	filter: brightness(110%);
}

em {
	background-color: #FBE5E5;
	font-style: normal;
	font-weight: 500;
}

.pc_none {
	display: none;
}

.sp_none {
	display: inline;
}

img.sp {
	display: none;
}

span.mr1em {
	margin-right: 1em;
}


p#page_top {
	position: fixed;
	right: 0;
	bottom: 40px;
	z-index: 100;
	transform: rotate(90deg);
}

p#page_top a {
	display: block;
	color: #94B1BF;
	font-size: 12px;
	line-height: 1.0;
	cursor: pointer;
}



/* Scroll アニメーション設定 */
#pc_page_top {
	position: fixed;
	right: 0;
	bottom: 40px;
	z-index: 100;
}

#pc_page_top .page_top_inner p {
	font-size: 12px;
	font-weight: 700;
	text-align: end;
	transform: rotate(90deg);
}

#pc_page_top .page_top_inner p a {
	color: #94B1BF;
}

#pc_page_top .arrow {
	width: 2px;
	height: 100px;
	margin: 0 auto 20px;
	background-color: #fff;
	position: relative;
	left: -1px;
	overflow: hidden;
}

#pc_page_top .arrow::before {
	content: '';
	width: 2px;
	height: 50px;
	margin: 0 auto 50px;
	background-color: #95B1BF;
	position: absolute;
	top: 0;
	left: 0;
	animation: arrow_page_top 2.5s ease 0s infinite normal;
}

@keyframes arrow_page_top {
	0% {
		transform: translate3d(0, 150px, 0);
	}
	
	60% {
		transform: translate3d(0, 0, 0);
	}
	
	100% {
		transform: translate3d(0, 0, 0);
	}
}

p#page_top a:hover {
	
}

#sp_float_btn {
	display: none;
}


/*---------- if IE ----------*/
@media all and (-ms-high-contrast:none) {
	*::-ms-backdrop, main ,footer {
		display: block;
	}
	
	*::-ms-backdrop, a:hover {
		opacity: 0.8;
	}
}


@media screen and (max-width: 768px){
	body {
		font-weight: 500;
		line-height: 1.8;
	}
	.sp_none {
		display: none;
	}
	
	.pc_none {
		display: inline;
	}
	
	img {
		max-width: 100%;
		width: auto;
	}
	
	img.pc {
		display: none;
	}
	
	img.sp {
		display: inline;
	}
	
	span.mr1em {
		margin-right: 0;
	}
	
	/*
	p#page_top {
		right: -10px;
		bottom: 10px;
	}
	
	p#page_top a {
		font-size: 10px;
	}
	*/
	
	p#page_top {
		display: none;
	}
	
	#pc_page_top {
		display: none;
	}
	
	
	#sp_float_btn {
		width: 100%;
		height: 60px;
		display: flex;
		justify-content: space-between;
		position: fixed;
		bottom: 0;
	}
	
	#sp_float_btn p.tel {
		width: calc(100% - 60px);
	}
	
	#sp_float_btn p.tel a {
		height: 100%;
		padding: 0 0 0 5vw;
		/*background-color: rgba(83,68,45, 0.9);
		background-color: rgba(149,177,191, 0.9);*/
		background: url("../img/icon_tel.svg") 15% 52% / 5vw auto no-repeat rgba(149,177,191, 0.9);
		display: flex;
		justify-content: center;
		align-items: center;
		color: #fff;
		font-size: 5vw;
	}
	
	#sp_float_btn p.page_top {
		width: 60px;
	}
	
	#sp_float_btn p.page_top a {
		width: 100%;
		height: 100%;
		/*background-color: rgba(117,105,87, 0.9);
		background-color: rgba(213,224,229, 0.9);*/
		background: url("../img/icon_arrow_02.svg") center center / 5vw auto no-repeat rgba(213,224,229, 0.9);
		display: flex;
		justify-content: center;
		align-items: center;
		cursor: pointer;
	}
	
	#sp_float_btn p.page_top a img {
		width: 30px;
	}
}



/*------------------ clearfix layout ---------------------*/
.clearfix::after {
	content: "";
	display: block;
	clear: both;
}
/*
*:after {
	content: "";
	display:block;
	clear:both;
}
*/


/*------------------ loading layout ---------------------*/
.loading {
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,1.0);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 20000;
	display: flex;
	justify-content: center;
	align-items: center;
}

.loading img {
	width: 240px;
	fill: #fff;
}

@media screen and (max-width: 768px){
	.loading img {
		width: 40%;
	}
}


/*------------------ fadein layout ---------------------*/
.fadein {
	opacity : 0;
	transform: translateY(10px);
	transition: all 1s;
}


/*===============================================================

		form parts layout

===============================================================*/

form input[type="text"] {
	padding: 8px 10px;
	border: solid 1px #ddd;
	font-size: 16px;
}

form select {
	padding: 8px 10px;
	border: solid 1px #ddd;
	font-size: 16px;
}

form input::placeholder {
	color: #666;
}

form input[type="checkbox"] {
	margin-right: 10px;
}

form label:not(:last-of-type) {
	margin-right: 30px;
}

form textarea {
	padding: 8px 10px;
	border: solid 1px #ddd;
	font-size: 16px;
}

form input[type="submit"] {
	width: 224px;
	margin: 0 auto;
	padding: 10px 0;
	background: url("../img/icon_arrow01.png") right 20px center / auto no-repeat #fff;
	border: solid 2px #FF8228;
	border-radius: 30px;
	display: block;
	color: #FF8228;
	font-size: 14px;
	font-weight: bold;
	transition: all .3s;
}

form input[type="submit"]:hover {
	background: url("../img/icon_arrow02.png") right 20px center / auto no-repeat #FF8228;
	color: #fff;
}


/*---------- if IE ----------*/
@media all and (-ms-high-contrast:none) {
	*::-ms-backdrop, form input[type="submit"] {
		padding: 12px 0 8px;
	}
}


@media screen and (max-width: 768px){
	form input[type="text"] {
		-webkit-appearance: none;
		border-radius: 0;
	}
	
	form label:not(:last-of-type) {
		margin: 0 0 10px;
		display: inline-block;
	}
	
	form textarea {
		-webkit-appearance: none;
		border-radius: 0;
	}
	
	form input[type="submit"] {
		width: 60%;
		background: url("../img/icon_arrow01.png") right 15px center / auto no-repeat #fff;
	}
}



/*====================================================================================

		header layout

====================================================================================*/

header {
	position: relative;
}

header .wrapper {
	width: 100%;
	height: 110px;
	padding: 0 30px;
	background-color: rgba(255,255,255,0.9);
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	top: 0;
	z-index: 10000;
	transition: all 0.3s ease;
}

#home header .wrapper {
	background-color: rgba(0,0,0, 0.25);
}

header .wrapper.thin {
	height: 70px;
}

header .logo {
	width: 110px;
	line-height: 1.0;
}

header .logo img {
	fill: #fff;
}

header .logo a {
	display: block;
}

header .logo a:hover {
	transform: scale(1.05, 1.05);
}

header .goto {
	width: 20%;
	max-width: 280px;
	line-height: 1.0;
}

header .goto img {
	width: 100%;
	transition: all 0.3s ease;
}

header .thin .goto img {
	transform: scale(0.8, 0.8);
}


/*---------- if IE ----------*/
@media all and (-ms-high-contrast:none) {
	*::-ms-backdrop, {
		
	}
}


@media screen and (max-width: 1150px){
	header .goto {
		width: 15%;
	}
}


@media screen and (max-width: 1100px){
	header .wrapper {
		padding: 0 20px;
	}
	
	header .goto {
		width: 13%;
	}
}

@media screen and (max-width: 1050px){
	header .goto {
		width: 11%;
	}
}


@media screen and (max-width: 768px){
	header .wrapper {
		height: 60px;
		padding: 0 15px;
		justify-content: flex-start;
	}
	
	header .wrapper.thin {
		height: 60px;
	}
	
	header .logo {
		width: auto;
		margin: 0 5% 0 0;
		padding: 0;
	}
	
	header .logo img {
		height: 40px;
	}
	
	header .goto {
		width: auto;
		max-width: 50%;
		line-height: 1.0;
	}
	
	header .goto img {
		width: 100%;
		height: 40px;
	}
	
	header .thin .goto img {
		transform: scale(1, 1);
	}
}



/*===============================================================

		header nav layout

===============================================================*/

header .drawer_button {
	display: none;
}

header .drawer_nav_wrapper {
	width: auto;
}

header ul.drawer_nav {
	margin: 0 0 0 auto;
	display: flex;
	justify-content: flex-end;
	line-height: 1.0;
}

header ul.drawer_nav li {
	/*margin: 0 0 0 60px;*/
	margin: 0 0 0 3.43vw;
	position: relative;
	text-align: center;
}

header ul.drawer_nav li:first-child {
	margin: 0;
}

header ul.drawer_nav li::before {
	content: "";
	width: 1px;
	height: 33px;
	background-color: #333;
	position: absolute;
	/*left: -31px;*/
	left: -1.7vw;
	top: 5px;
	transform: rotate(15deg);
}

header ul.drawer_nav li:first-child::before {
	display: none;
}

#home header ul.drawer_nav li::before {
	background-color: #fff;
}

header ul.drawer_nav li a {
	padding: 0 10px;
	display: block;
	color: #333;
	font-weight: 500;
}

#home header ul.drawer_nav li a {
	color: #fff;
}

header ul.drawer_nav li a:hover {
	filter: brightness(100%);
	transform: scale(1.1, 1.1);
}

header ul.drawer_nav li a span {
	margin: 12px 0 0;
	display: block;
	font-size: 12px;
	font-weight: 400;
}

header .thin ul.drawer_nav li a span {
	margin: 6px 0 0;
}


@media screen and (max-width: 1200px){
	header ul.drawer_nav li {
		margin: 0 0 0 40px;
	}
	
	header ul.drawer_nav li::before {
		left: -20px;
	}
}


@media screen and (max-width: 768px){
	header .drawer_nav_wrapper {
		background-color: transparent;
		display: block;
		transform: none;
	}
	
	header .drawer_button {
		width: 60px;
		height: 60px;
		padding: 0;
		display: block;
		background: #fff;
		border: none;
		letter-spacing: 0.1em;
		cursor: pointer;
		position: fixed;
		right: 0;
		top: 0;
		z-index: 1001;
		text-align: center;
		outline: none;
		/*
		border-radius: 5px;
		right: 5px;
		top: 5px;
		*/
	}
	
	header .drawer_button.active {
		background: #95B1BF;
	}
	
	header .drawer_button.active .drawer_bar {
		width: 25px;
	}
	
	header .drawer_button.active .drawer_bar1 {
		top: 8px;
		transform: rotate(45deg);
	}
	
	header .drawer_button.active .drawer_bar2 {
		opacity: 0;
	}
	
	header .drawer_button.active .drawer_bar3 {
		top: -8px;
		transform: rotate(-45deg);
	}
	
	header .drawer_button.active .drawer_menu_text {
		display: none;
	}
	
	header .drawer_button.active .drawer_close {
		display: block;
	}
	
	header .drawer_bar {
		display: block;
		width: 25px;
		height: 2px;
		margin: 6px auto;
		background: #95B1BF;
		transition: all 0.2s;
		transform-origin: 50% 50%;
		position: relative;
	}
	
	header .drawer_button.active .drawer_bar {
		background: #fff;
	}
	
	header .drawer_text {
		text-align: center;
		font-family: 'Noto Serif JP', serif;
		font-size: 10px;
		font-weight: 500;
		color: #95B1BF;
		letter-spacing: -0.5px;
	}
	
	header .drawer_close {
		letter-spacing: 0.08em;
		display: none;
		color: #fff;
	}
	
	header .drawer_menu_text {
		display: block;
	}
	
	header .drawer_nav_wrapper {
		width: 100%;
		height: auto;
		/*
		width: 100%;
		height: 100%;
		*/
		margin: 0;
		padding: 0;
		box-sizing: border-box;
		transition: all 0.2s;
		/*transform: translate(110%);*/
		transform: translateY(-110%);
		position: fixed;
		top: 0;
		right: 0;
		z-index: 1000;
		/*overflow-y: scroll;
		-webkit-overflow-scrolling: touch;*/
	}
	
	header .drawer_nav_wrapper.open {
		transform: translate(0);
	}
	
	
	header ul.drawer_nav {
		margin: 60px 0 0;
		padding: 0;
		/*margin: 0;
		padding: 60px 0 0;*/
		background: rgba(255,255,255,0.95);
		display: flex;
		flex-wrap: wrap;
	}
	
	header ul.drawer_nav li {
		width: 100%;
		margin: 0;
		line-height: 1.4;
	}
	
	header ul.drawer_nav li::before {
		display: none;
	}
	
	header ul.drawer_nav li a {
		width: auto;
		margin: 0;
		padding: 15px;
		border-radius: 0;
		border: none;
		border-bottom: solid 1px #95B1BF;
		display: block;
		color: #000 !important;
		font-size: 16px;
		font-weight: 600;
	}
	
	header ul.drawer_nav li:first-child a {
		border-top: solid 1px #95B1BF;
	}
	
	header ul.drawer_nav li a:hover {
		text-decoration: none;
		transform: scale(1);
	}
	
	header ul.drawer_nav li a span {
		margin: 0 0 0 20px;
		display: inline-block;
		font-size: 12px;
		font-weight: 400;
		transition: all 0.3s ease;
	}
}



/*===============================================================

		.main_img.lower layout

===============================================================*/

header .main_img.lower {
	height: 450px;
	margin: 110px 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

header .main_img.lower h1 {
	color: #fff;
	font-size: 35px;
	font-weight: 600;
	letter-spacing: 2px;
	/*text-shadow: 1px 1px 5px rgba(255,255,255,0.1),
				 -1px 1px 5px rgba(255,255,255,0.1),
				 1px -1px 5px rgba(255,255,255,0.1),
				 -1px -1px 5px rgba(255,255,255,0.1);*/
	text-shadow: 1px 1px 5px rgba(0,0,0,0.1),
				 -1px 1px 5px rgba(0,0,0,0.1),
				 1px -1px 5px rgba(0,0,0,0.1),
				 -1px -1px 5px rgba(0,0,0,0.1);
}

header .main_img.lower h1 span {
	display: block;
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0;
}


@media screen and (max-width: 768px){
	header .main_img.lower {
		height: 200px;
		margin: 60px 0 0;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	
	header .main_img.lower h1 {
		font-size: 7vw;
		font-weight: 700;
		letter-spacing: 1px;
	}
	
	header .main_img.lower h1 span {
		font-size: 3.2vw;
	}
}





/*====================================================================================

		#contents layout

====================================================================================*/

#contents {
	padding: 150px 0;
}

#home #contents {
	padding: 0;
}

#contents section .inner,
#contents div .inner {
	width: 100%;
	min-width: 1000px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
}

#contents section .inner h2,
#contents div .inner h2 {
	margin: 0 0 80px;
	position: relative;
	text-align: center;
	font-size: 30px;
	font-weight: 600;
	line-height: 1.4;
}

#home #contents section .inner h2,
#home #contents div .inner h2 {
	text-align: left;
}

#contents section .inner h2::after,
#contents div .inner h2::after {
	content: "";
	width: 50px;
	border-top: solid 1px #000;
	position: absolute;
	left: calc(50% - 25px);
	bottom: -30px;
}

#home #contents section .inner h2::after,
#home #contents div .inner h2::after {
	display: none;
}

#contents section .inner h3,
#contents div .inner h3 {
	margin: 0 0 40px;
	text-align: center;
	color: #80A2B3;
	font-size: 25px;
	font-weight: 600;
	line-height: 1.4;
}

#contents section .inner h3 span,
#contents div .inner h3 span {
	display: inline-block;
	position: relative;
}

#contents section .inner h3 span::before,
#contents div .inner h3 span::before,
#contents section .inner h3 span::after,
#contents div .inner h3 span::after {
	content: "";
	width: 30px;
	border-top: solid 1px #80A2B3;
	position: absolute;
	top: 20px;
}

#contents section .inner h3 span::before,
#contents div .inner h3 span::before {
	left: -60px;
}

#contents section .inner h3 span::after,
#contents div .inner h3 span::after {
	right: -60px;
}


#home #contents section .inner h3 span::before,
#home #contents div .inner h3 span::before,
#home #contents section .inner h3 span::after,
#home #contents div .inner h3 span::after {
	display: none;
}

/*
#contents section .inner h3 span,
#contents div .inner h3 span {
	padding: 0 30px;
	background-color: #fff;
	display: inline-block;
	position: relative;
	z-index: 2;
}

#contents section .inner h3 span::after,
#contents div .inner h3 span::after {
	content: "";
	width: 120%;
	border-top: solid 1px #80A2B3;
	position: absolute;
	left: 50%;
	top: 20px;
	z-index: 1;
	transform: translateX(-50%);
}

#home #contents section .inner h3 span::after,
#home #contents div .inner h3 span::after {
	display: none;
}
*/


#contents section .inner p:not(:last-of-type),
#contents div .inner p:not(:last-of-type) {
	margin: 0 0 1em;
}

#contents .inner .maker {
	background: linear-gradient(transparent 70%, #EAEFF2 70%);
}


@media screen and (min-width: 1301px){
	#contents section .inner,
	#contents div .inner {
		padding: 0;
	}
}


@media screen and (max-width: 768px){
	#contents {
		padding: 80px 0;
	}
	
	#contents section .inner,
	#contents div .inner {
		width: auto;
		min-width: inherit;
		max-width: inherit;
		margin: 0 20px;
		padding: 0;
	}
	
	#contents section .inner h2,
	#contents div .inner h2 {
		margin: 0 0 60px;
		font-size: 6vw;
		font-weight: 700;
	}
	
	#contents section .inner h2::after,
	#contents div .inner h2::after {
		left: calc(50% - 25px);
		bottom: -20px;
	}
	
	#contents section .inner h3,
	#contents div .inner h3 {
		margin: 0 0 30px;
		overflow: hidden;
		font-size: 5vw;
		font-weight: 700;
	}
	
	#contents section .inner h3 span,
	#contents div .inner h3 span {
		padding: 0 30px;
	}
	
	#contents section .inner h3 span::before,
	#contents div .inner h3 span::before,
	#contents section .inner h3 span::after,
	#contents div .inner h3 span::after {
		width: 20px;
		top: 54%;
	}
	
	#contents section .inner h3 span::before,
	#contents div .inner h3 span::before {
		left: 0;
	}
	
	#contents section .inner h3 span::after,
	#contents div .inner h3 span::after {
		right: 0;
	}
	/*
	#contents section .inner h3 span,
	#contents div .inner h3 span {
		padding: 0 20px;
	}
	
	#contents section .inner h3 span::after,
	#contents div .inner h3 span::after {
		width: 200%;
		top: 50%;
	}
	*/
}


/*===============================================================

		#contents .btn_01 layout

===============================================================*/

#contents section .inner .btn_01 {
	width: 140px;
	margin: 40px 0 0;
	line-height: 1.0;
}

#contents section .inner .btn_01 a {
	padding: 15px 0;
	background: url("../img/icon_arrow_01.svg") right 15px center / auto 14px no-repeat #53442D;
	display: block;
	text-align: center;
	color: #fff;
	font-weight: 500;
}

#contents section .inner .btn_01 a:hover {
	background: url("../img/icon_arrow_01.svg") right 10px center / auto 14px no-repeat #53442D;
}

#contents section .inner .btn_01.blue {
	margin: 40px auto 0;
}

#contents section .inner .btn_01.blue a {
	background: url("../img/icon_arrow_01.svg") right 15px center / auto 14px no-repeat #95B1BF;
}

#contents section .inner .btn_01.blue a:hover {
	background: url("../img/icon_arrow_01.svg") right 10px center / auto 14px no-repeat #95B1BF;
}


/*---------- if IE ----------*/
@media all and (-ms-high-contrast:none) {
	*::-ms-backdrop, #contents section .inner .btn_01 a {
		padding: 15px 0 17px;
		background: url("../img/icon_arrow_01.svg") right 5px center / auto 14px no-repeat #53442D;
	}
	
	*::-ms-backdrop, #contents section .inner .btn_01 a:hover {
		background: url("../img/icon_arrow_01.svg") right 0px center / auto 14px no-repeat #53442D;
	}
}


@media screen and (max-width: 768px){
	#contents section .inner .btn_01,
	#contents section .inner .btn_01.blue {
		width: 50%;
		margin: 20px auto 0;
	}
}





/*====================================================================================

		footer layout

====================================================================================*/

footer {
	padding: 60px 0;
	background-color: #95B1BF;
	color: #fff;
}

footer .wrapper {
	width: 100%;
	min-width: 1000px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

footer .wrapper .box {
	display: flex;
	line-height: 1.6;
}

footer .wrapper .box .footer_logo {
	width: 110px;
	margin: 0 20px 0 0;
	line-height: 1.0;
}

footer .wrapper .box .footer_logo img {
	fill: #fff;
}

footer .wrapper .box .footer_logo a {
	display: block;
}

footer .wrapper .box .footer_logo a:hover {
	transform: scale(1.05, 1.05);
}

footer .wrapper .box p.copy {
	margin: 15px 0 0;
	font-size: 13px;
}

footer .wrapper p.tel a {
	padding: 15px 30px;
	border: solid 1px #fff;
	display: block;
	text-align: center;
	color: #fff;
	font-size: 15px;
	line-height: 1.4;
	cursor: default;
}

footer .wrapper p.tel a span {
	padding: 0 0 0 30px;
	background: url("../img/icon_tel.svg") left 55% / 23px auto no-repeat;
	font-size: 30px;
}


@media screen and (min-width: 1301px){
	footer .wrapper {
		padding: 0;
	}
}


/*---------- if IE ----------*/
@media all and (-ms-high-contrast:none) {
	*::-ms-backdrop, footer .wrapper p.tel a span {
		background: url("../img/icon_tel.png") left 55% / 23px auto no-repeat;
	}
}


@media screen and (max-width: 768px){
	footer {
		padding: 30px 0 80px;
	}
	
	footer .wrapper {
		width: auto;
		min-width: inherit;
		max-width: inherit;
		margin: 0 20px;
		padding: 0;
		flex-flow: row wrap;
		justify-content: flex-start;
		align-items: flex-start;
	}
	
	footer .wrapper .box {
		display: block;
		order: 1;
	}
	
	footer .wrapper .box .footer_logo {
		width: auto;
		margin: 0 0 10px;
		text-align: center;
	}
	
	footer .wrapper .box .footer_logo a {
		display: inline;
	}
	
	footer .wrapper .box .footer_logo img {
		width: 30%;
	}
	
	footer .wrapper .box p.address {
		margin: 0 0 20px;
		font-size: 3.7vw;
	}
	
	footer .wrapper .box p.copy {
		margin: 0;
		font-size: 3.2vw;
		text-align: center;
	}
	
	footer .wrapper p.tel {
		width: 100%;
		order: 0;
	}
	
	footer .wrapper p.tel a {
		margin: 0 0 30px;
		padding: 15px 30px;
		border: solid 1px #fff;
		display: block;
		text-align: center;
		color: #fff;
		font-size: 3.7vw;
		line-height: 1.4;
	}
	
	footer .wrapper p.tel a span {
		padding: 0 0 0 6.5vw;
		background: url("../img/icon_tel.svg") left 55% / 4.5vw auto no-repeat;
		font-size: 6vw;
	}
}