﻿html:not(.responsive) {
	min-width: 1000px; /* viewport */
}

/*=============================================
 * body
 *=============================================*/

body {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	line-height: 30px;
	background: #fff;
	min-width: inherit;
	min-height: inherit;
	max-height: 100%;
	color: #454545;
	font-weight: 400;
}
@media screen and (max-width: 767px) {
	body {
		font-size: 14px;
		line-height: 28px;
	}
}
a:hover {
	text-decoration: none;
}

/*=============================================
 * fonts - DON'T EDIT
 *=============================================*/

.fnt-mincho {
	font-family:
		"游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "メイリオ", Meiryo,
		"ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.fnt-meiryo {
	font-family:
		"メイリオ", Meiryo, "ヒラギノ角ゴシックPro", "ＭＳ ゴシック", "Hiragino Kaku Gothic Pro", Osaka,
		"ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.fnt-gothic {
	font-family:
		"游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", Osaka,
		"ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.fnt-cor {
	font-family: "Cormorant", serif;
}

/*=============================================
 * <main>
 *=============================================*/

main {
	clear: both;
	width: 100%;
	position: relative;
	// overflow: hidden;
}

#head-top {
	position: relative;
	overflow: hidden;
}
/*=============================================
 * <header>
 *=============================================*/

header {
	width: 100%;
	z-index: 100;
	overflow: hidden;
	background: #fff;
	position: sticky;
	top: 0;
}

header .inner {
	position: relative;
	box-sizing: border-box;
	padding: 20px 30px 20px 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .logo {
	width: 440px;
	height: auto;
	transition: all 0.3s ease;
}

header .logo img {
	width: 100%;
	height: auto;
}

header .link ul {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0 35px;
}
header .link ul li a {
	font-weight: 500;
}
header .link ul li a:hover {
	opacity: 0.7;
}
header .link ul .btn-line {
	width: 240px;
}
header .link ul .btn-line img {
	width: 100%;
	height: auto;
}
.menu-hambuger {
	display: none;
}

@media screen and (max-width: 1024px) {
	header .logo {
		width: 325px;
	}
}
@media screen and (max-width: 900px) {
	header .logo {
		width: 280px;
	}
	header .link ul .btn-line {
		width: 200px;
	}
	header .inner {
		padding: 20px 15px 20px 15px;
	}
}

.sp {
	display: none;
}

@media only screen and (max-width: 767px) {
	.btn-fixed {
		position: fixed;
		left: 45px;
		bottom: 5px;
		right: 45px;
	}
	.btn-fixed img {
		width: 100%;
		height: auto;
	}
	
	#keyvisual {
		z-index: 0;
	}
	.error404 footer {
		margin-top: 10px;
	}
	.sp {
		display: block;
	}
	.pc {
		display: none;
	}

	main {
		padding-top: 0;
	}

	.ham-open header {
		position: fixed;
		z-index: 2;
		background: rgb(255 255 255 / 50%);
	}

	header .logo {
		width: 260px;
	}

	header .inner {
		padding: 20px !important;
		height: auto;
		width: 100%;
		box-sizing: border-box;
		display: block;
	}

	/* .fixed-nav header .inner,
	header.page-child .inner {
		padding: 5px 20px 5px 20px !important;
	} */

	.ham-open header .inner {
		height: 100vh;
	}

	.menu-hambuger {
		position: absolute;
		top: 25px;
		right: 12px;
		width: 50px;
		height: 50px;
		cursor: pointer;
		z-index: 99999;
	}

	.menu-hambuger span {
		position: absolute;
		left: 0;
		width: 30px;
		height: 2px;
		background-color: #df6f70;
		border-radius: 4px;
		left: 10px;
		transition: all 0.4s ease;
	}

	.fixed-nav .menu-hambuger,
	header.page-child .menu-hambuger {
		position: fixed;
	}
	.menu-hambuger,
	.menu-hambuger span {
		display: inline-block;
	}
	.menu-hambuger span:nth-of-type(1) {
		top: 15px;
	}
	.menu-hambuger span:nth-of-type(2) {
		top: 24px;
	}
	.menu-hambuger span:nth-of-type(3) {
		bottom: 15px;
	}

	.ham-open .menu-hambuger {
		position: fixed;
		top: 85px;
		right: 25px;
	}
	.ham-open .menu-hambuger span:nth-of-type(1) {
		top: 23px;
		transform: rotate(45deg);
		background: #fff;
	}
	.ham-open .menu-hambuger span:nth-of-type(2) {
		bottom: 25px;
		transform: rotate(-45deg);
		background: #fff;
	}

	header .link {
		background: #ea9899;
		position: fixed;
		width: 90%;
		padding-bottom: 15%;
		z-index: 99;
		overflow: auto;
		top: 80px;
		bottom: 80px;
		right: 5%;
		opacity: 0;
		z-index: -1;
		visibility: hidden;
		border-radius: 20px;
	}

	.ham-open header .link {
		opacity: 1;
		z-index: 99;
		visibility: visible;
	}
	.ham-open .logo-img {
		opacity: 0.2;
	}
	header .link ul {
		flex-wrap: wrap;
		padding: 95px 25px 120px;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}

	header .link ul li {
		width: 100%;
		box-sizing: border-box;
		padding: 15px 0 !important;
		border-right: none;
		margin: 0;
		text-align: center;
	}

	header .link ul li a {
		display: block;
		font-size: 20px;
		color: #fff;
		padding: 0;
	}
	.overlay {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: rgb(231 212 206 / 90%);
		opacity: 0;
		visibility: hidden;
	}
	.ham-open .overlay {
		opacity: 1;
		visibility: visible;
	}
}

.slick-dots {
	width: 100%;
	margin: auto;
	display: flex;
	justify-content: flex-end;
	z-index: 99;
	position: absolute;
	bottom: 30px;
	right: 20px;
}

.slick-dots li {
	width: 10px;
	height: 10px;
	margin: 0 5px;
}

.slick-dots li button {
	width: 100%;
	height: 100%;
	border: 1px solid #fff;
	background: rgba(0, 0, 0, 0);
	text-indent: -9999px;
	cursor: pointer;
	box-sizing: border-box;
	border-radius: 50%;
}

.slick-dots li.slick-active button {
	background: #fff;
}

.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		-ms-transform: translateY(20px);
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}

@keyframes bg {
	0% {
		background: #fff;
	}

	100% {
		background: #27b2bf;
	}
}

@-webkit-keyframes bg {
	0% {
		background: #fff;
	}

	100% {
		background: #27b2bf;
	}
}

@keyframes op {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-webkit-keyframes op {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

/*=============================================
 * <footer>
 *=============================================*/
footer {
	background: #ffffff;
	padding: 50px 0;
}
footer .row-ft {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
footer .row-ft .logo {
	width: 440px;
}
footer .row-ft .btn-ft {
	width: 330px;
}
footer .row-ft .btn-ft img {
	border: 1px solid #e2e2e2;
	border-radius: 10px;
}
footer img {
	width: 100%;
	height: auto;
}
footer .copy-right {
	font-size: 12px;
	margin-left: 110px;
	margin-top: -25px;
}
@media screen and (max-width: 991px) {
	footer .row-ft .logo {
		width: 320px;
	}
	footer .copy-right {
		margin-left: 80px;
		margin-top: -30px;
	}
}
@media screen and (max-width: 767px) {
	footer {
		padding: 50px 0 25vw;
	}
	footer .row-ft {
		display: block;
	}
	footer .row-ft .logo {
		width: 100%;
		max-width: 320px;
		padding: 0 15px;
		margin: 0 auto 30px;
	}
	footer .row-ft .btn-ft {
		margin: 0 auto;
	}
	footer .copy-right {
		margin-left: 0;
		text-align: center;
		margin-top: 30px;
	}
}
