@charset "utf-8";
/* CSS Document */

/*==========
変数
==========*/
:root {
	--main_color: #3c74cd;
	--sub_color1: #284d8a;
	--bg_color: #fff;
	--bg_color2: #f0f2ff;
	--drawer_bg_color: #e3e3e3;
	--font_color1: #222424;
	--font_color2: #abadad;
	--border_color1: #d4d4d4;
	--section_btn_color: #284d8a;
	--a_color: #258bf5;
	--a_hover_color: #d170b1;
	--pager_color: #b9c3d2;
	--footer_color: #e3e3e3;
	--font-en: "Poppins", sans-serif;
}


/*==========
共通
==========*/
html {
	font-size: 62.5%;
}

body {
	font-family: 'Noto Sans JP', "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1;
	color: var(--font_color1);
	font-feature-settings: "palt"1;
	letter-spacing: 0;
	-webkit-text-size-adjust: 100%;
	background-color: var(--bg_color);
	position: relative;
	overflow-x: hidden;
	margin: 0;
	overflow-wrap: break-word;
}

a {
	color: var(--a_color);
	text-decoration: none;
	transition: .3s;
}

a:hover {
	transition: .3s;
	color: var(--a_hover_color);
}

body {
	animation: fade .3s;
}

@keyframes fade {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

img {
	height: auto;
}

.wrap {
	padding: 60px 0;
}

.container {
	width: 92%;
	margin: 0 auto;
}

@media (min-width: 768px) {
	body {
		font-size: 1.7rem;
		line-height: 1.67;
	}

	.container {
		width: 900px;
	}
}



/*==========
ヘッダー
==========*/
.site_header {
	width: 100%;
	position: fixed;
	top: 0;
	z-index: 9999;
}

.site_header.shadow {
	background-color: rgba(255, 255, 255, 0.9);
}

.site_header .container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	height: 60px;
	width: 96%;
}

.site_header_logo {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
}

.site_header_logo img {
	width: 42px;
	filter: drop-shadow(0px 0px 2px rgba(255, 255, 255, 1.0));
}

.site_header_logo h1 {
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--font_color1);
	text-shadow: 0px 0px 4px rgba(255, 255, 255, 0.9), 0px 0px 4px rgba(255, 255, 255, 0.9), 0px 0px 4px rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
	.site_header {
		width: 100%;
	}

	.site_header .container {
		height: 66px;
		width: 900px;
		justify-content: space-between;
	}

	.site_header_logo {
		margin-right: 60px;
		gap: 15px;
	}

	.site_header_logo img {
		width: 54px;
	}

	.site_header_logo h1 {
		font-size: 2.2rem;
		transform: translateY(-2px);
	}

}


/*==========
セクションタイトル
==========*/
.section_title {
	margin-bottom: 36px;
	line-height: 1;
}

.section_title .en {
	font-family: var(--font-en);
	font-size: 6.6rem;
	font-weight: 700;
	color: var(--font_color2);
	letter-spacing: -3px;
	padding: 0 36px 0 3px;
	inline-size: fit-content;
	border-bottom: solid 3px var(--main_color);
}

.section_title .jp {
	font-size: 1.6rem;
	font-weight: 700;
	padding: 6px 0 0 6px;
}

@media (min-width: 768px) {
	.section_title {
		margin-bottom: 54px;
	}

	.section_title .en {
		font-size: 7.8rem;
		padding: 0 54px 0 3px;
	}

	.section_title .jp {
		font-size: 1.9rem;
		padding: 9px 0 0 9px;
	}

}


/*==========
セクションリンク
==========*/
.section_link {
	width: 90%;
	height: 66px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--section_btn_color);
	margin-inline: auto;
}

.section_link:hover {
	background-color: var(--sub_color1);
}

.section_link span {
	font-family: var(--font-en);
	font-size: 2.4rem;
	font-weight: 600;
	letter-spacing: -0.3px;
	color: #FFF;
	position: relative;
}

.section_link span::after {
	content: '';
	display: inline-block;
	border-style: solid;
	border-width: 4px 0 4px 6px;
	border-color: transparent transparent transparent #fff;
	display: inline-block;
	width: 0;
	height: 0;
	position: absolute;
	top: 50%;
	right: -15px;
	transform: translateY(-50%);
}

@media (min-width: 768px) {
	.section_link {
		width: 390px;
		height: 72px;
		border-radius: 36px;
	}

	.section_link:hover {
		background-color: var(--a_hover_color);
	}
}



/*==========
ページネーション
==========*/
.pager {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 9px;
	margin-bottom: 60px;
}

.pager .page-numbers {
	font-family: var(--font-en);
	font-size: 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 54px;
	width: 54px;
	background-color: var(--pager_color);
	color: var(--font_color1);
}

.pager .page-numbers svg {
	fill: var(--font_color1);
	width: 15px;
}

.pager .page-numbers.prev svg {
	transform: rotate(-90deg);
}

.pager .page-numbers.next svg {
	transform: rotate(90deg);
}

.pager .current,
.pager a:active,
.pager a:hover {
	color: #FFF;
	background-color: var(--sub_color1);
}

.pager a:active svg,
.pager a:hover svg {
	fill: #FFF;
}

@media (min-width: 768px) {
	.pager .page-numbers {}

	.pager .page-numbers svg {
		width: 18px;
	}
}



/*==========
フッター
==========*/
.site_footer {
	padding: 54px 0 12px;
	background: #4b4b4b;
}

.site_footer_link {
	inline-size: fit-content;
	margin-inline: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 18px;
}

.site_footer_link li {
	width: calc((100% - 18px)/2);
}

.site_footer_link li:nth-child(odd) {
	text-align: right;
}

.site_footer_link li a {
	font-family: var(--font-en);
	font-weight: 600;
	color: #FFF;
}

.site_footer_copyright {
	text-align: center;
	color: #FFF;
	font-size: 1.35rem;
	margin-top: 48px;
}

@media (min-width: 768px) {
	.site_footer {
		padding: 72px 0;
	}

	.site_footer_copyright {
		font-size: 1.4rem;
	}
}



/*==========
404ページ
==========*/
.not_page {
	padding: 60px 0px;
}

.not_page_text {
	margin-bottom: 36px;
}

.not_page_link {
	width: 72%;
	height: 66px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 9px;
	border: solid 1px #8b8b8b;
	color: #000;
	margin-inline: auto;
}

.not_page_link span {
	font-weight: 600;
}

.not_page_link svg {
	width: 15px;
	height: 15px;
	fill: #000;
}

.not_page_link:hover {
	background-color: #838383;
}

.not_page_link:hover span {
	color: #FFF;
}

.not_page_link:hover svg {
	fill: #FFF;
}

@media (min-width: 768px) {
	.not_page_text {
		text-align: center;
		margin-bottom: 72px;
	}

	.not_page_link {
		width: 420px;
		height: 78px;
	}
}




/*==========
アニメーション
==========*/
.fadeUp {
	animation-name: fadeUpAnime;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes fadeUpAnime {
	from {
		opacity: 0;
		transform: translateY(100px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.fadeUpTrigger {
	opacity: 0;
}




/*==========
ハンバーガーメニュー
==========*/
.open_btn {
	position: fixed;
	z-index: 9999;
	top: 0px;
	right: 0px;
	cursor: pointer;
	width: 60px;
	height: 60px;
}

.open_btn span {
	display: inline-block;
	transition: all .4s;
	position: absolute;
	right: calc((60px - 60%)/2);
	height: 1px;
	background-color: #000;
	border-radius: 3px;
	width: 84%;
}

.open_btn span:nth-of-type(1) {
	top: 24px;
}

.open_btn span:nth-of-type(2) {
	top: 30px;
}

/* .open_btn span:nth-of-type(3) {
	top: 38px;
} */

.open_btn.active span:nth-of-type(1) {
	top: 20px;
	transform: translateY(9px) rotate(-45deg);
	width: 87%;
	background-color: #000;
}

/* .open_btn.active span:nth-of-type(2) {
	opacity: 0;
} */

.open_btn.active span:nth-of-type(2) {
	top: 32px;
	transform: translateY(-3px) rotate(45deg);
	width: 87%;
	background-color: #000;
}

@media (min-width: 768px) {
	.open_btn {
		display: none;
	}

	/* .open_btn {
		right: calc((100vw - 94vw)/2);
	}

	.open_btn:hover {
		background-color: var(--main_color);
	}

	.open_btn:hover span {
		background-color: #FFF;
	}

	.open_btn.active:hover span:nth-of-type(1) {
		background-color: #FFF;
	}

	.open_btn.active:hover span:nth-of-type(3) {
		background-color: #FFF; */
}



/*==========
ドロワー
==========*/
#drawer_menu {
	position: fixed;
	z-index: 999;
	top: 0;
	right: -120%;
	width: 100%;
	height: 100vh;
	background: var(--drawer_bg_color);
	transition: all 0.4s;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
}

/*アクティブクラスがついたら位置を0に*/
#drawer_menu.panelactive {
	right: 0;
}

/*ナビゲーションの縦スクロール*/
#drawer_menu.panelactive #drawer_menu-list {
	/*ナビの数が増えた場合縦スクロール*/
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100vh;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#drawer_menu .drawer_link {
	z-index: 999;
	width: 76%;
	margin: 0 auto;
}

#drawer_menu .drawer_link li {
	list-style: none;
	margin-bottom: 30px;
}

#drawer_menu .drawer_link li a {
	font-family: var(--font-en);
	font-size: 3rem;
	font-weight: 600;
	color: var(--font_color1);
	display: inline-block;
}



/*==========
PCヘッダーメニュー
==========*/
#pc_menu {
	display: none;
}

@media (min-width: 768px) {
	#pc_menu {
		display: block;
	}

	.header_link {
		display: flex;
		flex-wrap: wrap;
		gap: 18px;
		height: 100%;
		align-items: center;
	}

	.header_link li a {
		font-family: var(--font-en);
		font-size: 1.8rem;
		color: var(--font_color1);
	}

	.header_link li a:hover {
		color: var(--a_hover_color);
	}

	.header_link li {
		position: relative;
		padding-right: 18px;
	}

	.header_link li:not(:last-child):after {
		content: "";
		width: 1px;
		height: 24px;
		background-color: #c9c9c9;
		position: absolute;
		right: 0;
		top: 3px;
	}
}










/*==========
フォーム
==========*/
input:not([type="radio"],
	[type="checkbox"],
	[type="submit"],
	[type="submit"],
	[type="file"]),
select,
textarea {
	width: 100%;
	height: calc(1.6rem + 42px);
	padding: 0 6px;
	font-size: 1.6rem;
	line-height: 1.5;
	color: var(--font_color1);
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid var(--border_color1);
}

select {
	height: 60px;
}

textarea {
	height: auto;
	max-width: 720px;
	padding: 6px;
}

input[type="submit"] {
	display: block;
	width: 90%;
	height: 66px;
	text-align: center;
	background-color: var(--main_color);
	margin: 0 auto;
	font-size: 1.6rem;
	font-weight: 600;
	color: #FFF;
	letter-spacing: 1px;
}

@media (min-width: 768px) {

	input:not([type="radio"],
		[type="checkbox"],
		[type="submit"],
		[type="file"]),
	select {
		width: 100%;
		max-width: 600px;
		height: calc(1.6rem + 36px);
	}

	input[type="submit"] {
		max-width: 480px;
		height: 72px;
		font-size: 1.8rem;
	}

	input[type="submit"]:hover {
		background-color: var(--a_hover_color);
		cursor: pointer;
	}

	textarea {
		height: auto;
		min-height: 30vh;
		max-width: 780px;
	}
}


/*==========
スライダーのためのcss
==========*/
.slider {
	margin: 0 auto;
}

.slider img {
	width: 100%;
	height: auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.slider .slick-slide {
	margin: 0 6px;
}

/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
	position: absolute;
	top: 42%;
	cursor: pointer;
	outline: none;
	border-top: 3px solid #666;
	border-right: 3px solid #666;
	height: 15px;
	width: 15px;
	z-index: 99;
}

.slick-prev {
	/*戻る矢印の位置と形状*/
	left: 1.5%;
	transform: rotate(-135deg);
}

.slick-next {
	/*次へ矢印の位置と形状*/
	right: 1.5%;
	transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/
.slick-dots {
	bottom: -30px !important;
}

.slick-dots li button:before {
	font-size: 10px !important;
}

.slick-dots li.slick-active button:before {
	color: var(--main_color) !important;
}



/*==========
margin
==========*/
.mt12 {
	margin-top: 12px;
}

.mt36 {
	margin-top: 36px;
}

.mt48 {
	margin-top: 48px;
}

.mt60 {
	margin-top: 60px;
}

.mt72 {
	margin-top: 72px;
}

.mb36 {
	margin-bottom: 36px;
}

.mb48 {
	margin-bottom: 48px;
}

.mb60 {
	margin-bottom: 60px;
}

.mb72 {
	margin-bottom: 72px;
}

@media (min-width: 768px) {
	.mt12 {
		margin-top: 24px;
	}

	.mt36 {
		margin-top: 72px;
	}

	.mt48 {
		margin-top: 96px;
	}

	.mt60 {
		margin-top: 120px;
	}

	.mt72 {
		margin-top: 144px;
	}

	.mb36 {
		margin-bottom: 72px;
	}

	.mb48 {
		margin-bottom: 96px;
	}

	.mb60 {
		margin-bottom: 120px;
	}

	.mb72 {
		margin-bottom: 144px;
	}
}
