@charset "utf-8";
/**********
* 共通
***********/
h2 {
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 30px;
}

h3 {
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 30px;
}

.sp-none {
	display: none;
}

/**********
* ヘッダー
***********/
header {
	width: 100%;
	position: relative;
	overflow: hidden;
}

header .logo {
	display: flex;
	align-items: center;
	transition: all 0.4s ease-out;
	width: 50%;
	height: 52px;
	margin: 0 0 0 3%;
}

header .logo:hover {
	opacity: 0.8;
}

/* ナビゲーションメニュー */
#g-nav {
	position: fixed;
	z-index: -1;
	width: 92%;
	max-height: 380px;
	background: #fff;
	transition: all 0.6s;
	opacity: 0;
	top: 10%;
	left: 50%;
	transform: translate(-50%, 0);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
	padding: 20px 20px 11px;
	display: flex;
	align-items: center;
	text-align: left;
}

#g-nav.panelactive {
	opacity: 1;
	z-index: 999;
}

#g-nav .wrap {
	width: 100%;
	margin: auto;
	display: flex;
	align-items: center;
    text-align: left;
}

#g-nav .wrap ul {
	width: 100%;
}

#g-nav li {
	list-style: none;
	text-align: left;
}

#g-nav .wrap ul li a {
	transition: all 0.2s ease-out;
}

#g-nav li a {
	color: #333;
	text-decoration: none;
	padding: 10px;
	display: block;
	letter-spacing: 0.1em;
	font-weight: bold;
	border-bottom: 1px solid #f0f0f0;
}

#g-nav li:last-child a {
	border-bottom: none;
}

#g-nav li a:hover, 
#g-nav .wrap ul li a:hover {
	color: #aaa79e;
}

/* ナビゲーション用ボタン */
.openbtn {
	position: fixed;
	z-index: 9999; /*ボタンを最前面に*/
	top: 3px;
	right: 10px;
	cursor: pointer;
	width: 50px;
	height: 50px;
}

.openbtn span {
	display: inline-block;
	transition: all 0.4s;
	position: absolute;
	left: 14px;
	height: 3px;
	border-radius: 2px;
	background-color: #666;
	width: 45%;
}

.openbtn span:nth-of-type(1) {
	top: 15px;
}

.openbtn span:nth-of-type(2) {
	top: 23px;
}

.openbtn span:nth-of-type(3) {
	top: 31px;
}

.openbtn.panelactive span:nth-of-type(1) {
	top: 18px;
	left: 18px;
	transform: translateY(6px) rotate(-45deg);
	width: 30%;
}

.openbtn.panelactive span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.panelactive span:nth-of-type(3) {
	top: 30px;
	left: 18px;
	transform: translateY(-6px) rotate(45deg);
	width: 30%;
}

/**********
* トップ
***********/
.header-logo {
	position: absolute;
	top: 50%;
	left: 5%;
	transform: translate(5%, -50%);
	z-index: 2;
	width: 50%;
}

/**
* splide　カスタマイズ用
**/
.my-splide {
	margin: auto 10px;
}

.my-splide-arrow svg {
	fill: #07abd5 !important;
	width: 2em !important;
	height: 2em !important;
}

.my-pagination-prev {
	left: -30px !important;
}

.my-pagination-next {
	right: -30px !important;
}