@charset "utf-8";
/* ==========================================================
	file：base
	01.import
	02.基本スタイル
	03.headerスタイル
	04.footerスタイル
========================================================== */
/* ==========================================================
	01.import
========================================================== */
@import url("https://use.fontawesome.com/releases/v5.3.1/css/all.css");
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:wght@400;700&display=swap&subset=japanese');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
/* ==========================================================
	02.基本スタイル
========================================================== */
html {
	overflow-x: hidden;
}
body {
	position: relative;
	background-color: #6fb5c7;
	min-height: 100vh;
	color: #442501;
	overflow-x: hidden;
	font-family: 'Noto Sans JP', 'YuGothic', 'Yu Gothic', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'メイリオ', 'Meiryo', 'ＭＳ ゴシック', sans-serif;
	font-weight: 400;
	line-height: 1.6;
}
body::before {
	content: '';
	position: fixed;
	display: block;
	background: url('../images/bg_pc.webp') no-repeat left center / cover;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
}
p {
	line-height: 2;
}
a {
	transition: color 0.5s;
}
a:hover {
	text-decoration: none;
}
.roboto-n {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
}
.roboto-b {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
}

/* ==========================================================
	03.headerスタイル
========================================================== */
.header {
	position: relative;
	top: 0;
	left: 0;
	align-items: center;
	color: #fff;
	height: 100vh;
	width: 100%;
	justify-content: space-between;
}
.header svg path {
	fill: #fffcd1;
}

.site-title {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 60px;
	z-index: 3;
}
.site-title svg {
	width: 345px;
	height: 50px;
}

.nav-wrapper {
	height: 100vh;
	left: 0;
	position: fixed;
	top: 0;
	transform: translateX(100%);
	transition: transform .3s;
	width: 100vw;
	opacity: 0;
	z-index: 2;
}
.header-nav {
	width: 100%;
	height: 100%;
	background-color: #6fb5c7;
	background-image: url('../images/bg_pc.webp');
  background-position: right;
  background-size: auto 100%;
	z-index: 2;
}
.nav-list {
	background: rgba(255, 255, 255, 0.8);
	border-radius: 20px;
	list-style-type: none;
	padding-left: 0;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 70vw;
	transform: translate(-50%,-65%);
	text-align: center;
}
.nav-item a {
	color: #442501;
	font-weight: bold;
	display: block;
	position: relative;
	padding: 25px 10px 20px;
	border-bottom: #442501 dotted 2px;
	transition: color .3s;
}
.nav-item:last-of-type a {
	border-bottom: 0;
}
.nav-item a::after {
	content: '';
	display: block;
	background-color: #442501;
	position: absolute;
	height: 5px;
	width: calc(100% - 2rem);
	bottom: -3px;
	left: 1rem;
	transform: scale(0, 1);
	transition: all .3s;
}
.nav-item.current a::after,
.nav-item a:hover::after {
	transform: scale(1, 1);
}

.nav-link.disabled {
	color: #6fb5c7;
}

/* 以下、ハンバーガーボタン */
.burger-btn {
	display: block;
	position: fixed;
	width: 44px;
	height: 44px;
	right: 10px;
	top: 5px;
	z-index: 3;
	border: none;
}
.bar{
	width: 38px;
	height: 2px;
	display: block;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	background-color: #442501;
}
.bar_top{
	top: 10px;
}
.bar_mid{
	top: 50%;
	transform: translate(-50%,-50%);
}
.bar_bottom{
	bottom: 10px;
}

/* メニューオープン時 */
.nav-wrapper.slide-in {
	opacity: 1;
	transform: translateX(0);
}
.burger-btn.close .bar_top{
	transform: translate(-50%,12px) rotate(45deg);
	transition: transform .3s;
}
.burger-btn.close .bar_mid{
	opacity: 0;
	transition: opacity .3s;
}
.burger-btn.close .bar_bottom{
	transform: translate(-50%,-10px) rotate(-45deg);
	transition: transform .3s;
}

/* メインビジュアル */
.header-main {
	padding: 100px 0 120px;
}
.header-main svg path {
	fill: #fffad1;
}
.header-logo {
	width: 100%;
	display: block;
}
.header-logo svg#logo-icon {
	display: block;
	width: 100px;
	margin: 0 auto 40px;
	animation: rotate 2s linear infinite;
}
@keyframes rotate {
	0%   { transform: rotateY(0deg); }
	20%  { transform: rotateY(0deg); }
	50%  { transform: rotateY(180deg); }
	80%  { transform: rotateY(0deg); }
	100% { transform: rotateY(0deg); }
}
.header-logo svg#logo-text {
	display: block;
	width: 90%;
	height: auto;
	margin: 0 auto;
}

.header-main figure {
	width: 90%;
	margin: 50px auto 0;
}

/* ==========================================================
	04.footerスタイル
========================================================== */
.footer {
	position: relative;
	width: 100%;
}
.pagetop {
	position: fixed;
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	bottom: 30px;
	right: -60px;
	width: 60px;
	height: 60px;
	line-height: 1;
	text-align: center;
	padding-top: 3px;
	z-index: 1;
	transition: background-color .3s;
}
.pagetop:hover {
	background-color: rgba(206, 174, 137, 0.3);
}
.pagetop a {
	color: #442501;
}
.pagetop:hover a {
	color: #9c7344;
}
.pagetop i {
	font-size: 40px;
}
.pagetop span {
	display: block;
	font-size: 12px;
	margin-top: -10px;
}
.copy {
	background-color: #442501;
	color: #fff;
	font-size: 0.75rem;
	text-align: center;
	padding: 10px 0;
}



@media (max-width: 470px) {
	/* 画面幅 470px以下 */
/* ==========================================================
	04.footerスタイル
========================================================== */
	.site-title svg {
		width: 300px;
		height: 44px;
	}
}

@media (min-width: 768px) {
	/* 画面幅 768px以上 */
/* ==========================================================
	02.基本スタイル
========================================================== */
	body {
		line-height: 1.8;
	}
	body::before {
		background-position: center;
	}
	/* ==========================================================
		03.headerスタイル
	========================================================== */
	.header {
		min-height: 780px;
	}
	.site-title,
	.burger-btn {
		display: none;
	}

	.header-logo svg#logo-icon {
		width: 145px;
	}
	.header-logo svg#logo-text {
		width: 475px;
	}

	.nav-wrapper {
		position: absolute;
		height: 100px;
		width: 670px;
		margin: 0 auto;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
	}
	.header-nav {
		position: absolute;
		background: #fff;
		border-radius: 10px 10px 0 0;
		bottom: auto;
		left: 50%;
		transform: translateX(-50%);
	}
	.nav-list {
		width: 100%;
	}
	.nav-item {
		display: inline-block;
	}
	.nav-item a {
		border-bottom: none;
		padding: 30px 30px 10px;
	}

}