@charset "utf-8";
/**********
* 共通
***********/
h2 {
	font-size: 36px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 30px;
}

h3 {
	font-size: 25px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 30px;
}

.pc-none {
	display: none;
}

/**********
* ヘッダー
***********/
header {
	width: 100%;
	position: relative;
	overflow: hidden;
}

header .logo {
	transition: all 0.4s ease-out;
}
header .logo:hover {
	opacity: 0.8;
}

/* ナビゲーションメニュー */
nav {
	background: rgba(255, 255, 255, 1);
	position: fixed;
	top: 0;
	width: 100%;
	padding: 12px 8px;
	z-index: 5;
	transition: all 0.2s ease-out;
}

nav.fixed {
	background: rgba(255, 255, 255, 0.8);
}

nav .wrap {
	max-width: 100%;
	width: 1200px;
	margin: auto;
	display: flex;
	align-items: center;
}

nav .wrap ul {
	display: flex;
	justify-content: flex-end;
	width: 600px;
	margin-left: auto;
	text-align: center;
}

nav .wrap ul li {
	flex: 1;
}

nav .wrap ul li a {
	/* padding: 0 30px 0; */
	color: #000;
	transition: all 0.2s ease-out;
}

nav .wrap ul li a:hover {
	color: #aaa79e;
}

/* お問い合わせボタン */
.contact-btn {
	width: 200px;
}

.contact-btn a {
	background: #E48B33;
	color: #fff;
	font-weight: bold;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5px 0;
	text-align: center;
	transition: all 0.2s ease-out;
	border-radius: 10px
}

.contact-btn a:hover {
	background: #aaa79e;
}

/**
* トップ用
**/
.header-logo {
	margin: 0 0 20px 0;
}

/**
* splide　カスタマイズ用
**/
.my-splide {
	margin: auto 30px;
}

.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;
}