@charset "UTF-8";

:root {
	/* font */
	--gothic: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	--mincho: "Hiragino Mincho Pro", "游明朝", "Yu Mincho", YuMincho, serif;

	/* color */
	--blk: 0, 0, 0;
	--wht: 255, 255, 255;
	--gra: 90, 90, 90;
	--gre: 118, 186, 159;
	--blue: 25, 119, 179;
	--light-gre: 207, 234, 208;
	--btnColor: 25, 119, 179;
}

/* ----------------------------------------------------
	基本設定
---------------------------------------------------- */
html {
	scroll-behavior: smooth;
	scroll-padding-top: 11vw;
}

@media screen and (max-width: 768px) {
	html {
		scroll-padding-top: 10vw;
	}
}

/*
	reset
------------------------------ */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	list-style: none;
}

p {
	word-wrap: break-word;
}

p:not(:last-of-type) {
	margin-bottom: 1em;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

fieldset,
img {
	border: 0;
}

address,
b,
caption,
cite,
code,
dfn,
em,
i,
strong,
th,
var {
	font-style: normal;
	font-weight: normal;
}

caption,
th {
	text-align: left;
}

a {
	text-decoration: underline;
	transition: all 0.5s ease 0s;
}

a:hover {
	text-decoration: none;
	opacity: 0.7;
}

area {
	border: none;
	outline: none;
}

img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

/*
	表示設定
------------------------------ */
body {
	background: var(--wht);
	line-height: 1.8;
}

.container {
	margin: 0 auto;
	padding: 0 50px;
	max-width: 940px;
	width: 100%;
}

@media screen and (max-width: 768px) {
	.container {
		padding: 0 4.8vw;
	}
}

/*
	font
------------------------------ */
body {
	color: var(--gra);
	font-family: var(--gothic);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
	body {
		font-size: 3.73333vw;
	}
}

/*
	SP,PC表示切り替え
------------------------------ */
.pc {
	display: block;
}

.sp {
	display: none;
}

@media screen and (max-width: 768px) {
	.pc {
		display: none;
	}

	.sp {
		display: block;
	}
}

/*
	list
------------------------------ */
ul.list li {
	text-indent: 0;
	display: flex;
}

/* note */
ul.note li {
	font-size: 14px;
}

ul.note li::before {
	content: "※";
}

@media screen and (max-width: 768px) {
	ul.note li {
		font-size: 2.93333vw;
	}
}

/*
	linkBtn
------------------------------ */
.linkBtn a {
	background: rgb(var(--btnColor));
	/* height: 50px; */
	color: rgb(var(--wht));
	font-size: 17px;
	text-decoration: none;
	border: solid 1px rgb(var(--btnColor));
	border-radius: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.linkBtn a:hover {
	background: rgb(var(--wht));
	color: rgb(var(--btnColor));
	opacity: 1;
}

.linkBtn a svg {
	width: 12px;
	fill: none;
	stroke: rgb(var(--wht));
	stroke-miterlimit: 10;
	stroke-width: .85px;
	position: absolute;
	top: 50%;
	right: 1em;
	transform: translateY(-50%);
}

.linkBtn a:hover svg {
	stroke: rgb(var(--btnColor));
}

@media screen and (max-width: 768px) {
	.linkBtn a {
		height: 16vw;
		font-size: 4vw;
		border-radius: 60px;
	}

	.linkBtn a svg {
		width: 3.2vw;
	}
}

/*
	.movie
------------------------------ */
.movie {
	width: 100%;
	aspect-ratio: 16 / 9;
}

.movie iframe {
	width: 100%;
	height: 100%;
}

/* ---------------------------------------------------
	mainNav
---------------------------------------------------- */
.top .mainNav {
	display: none;
}

.mainNav {
	background: rgba(var(--blk), 0.5);
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
}

.mainNav__list {
	height: 7vw;
	display: flex;
	justify-content: center;
	align-items: center;
}

.mainNav__item {
	/* margin: 0 2em; */
	margin: 0 1.25em;
}

.mainNav__item a {
	display: block;
	position: relative;
}

.mainNav__item a svg {
	width: auto;
	height: 1.9636vw;
}

.mainNav__item a svg .cls-1 {
	fill: #a3c9e1;
	stroke-width: 0px;
	transition: all 0.5s ease 0s;
}

.mainNav__item a:hover {
	opacity: 1;
}

.mainNav__item.active a::before,
.mainNav__item a:hover::before {
	background: #e97341;
	width: 100%;
	height: 1px;
	position: absolute;
	bottom: -0.25em;
	left: 0;
	content: "";
}

.mainNav__item.active a svg .cls-1,
.mainNav__item a:hover svg .cls-1 {
	fill: #e97341;
}

@media screen and (max-width: 768px) {
	.top .mainNav {
		display: block;
	}

	.mainNav {
		background: rgba(var(--blue));
		width: 100%;
		height: 100%;
		color: #fff;
		text-align: center;
		overflow: auto;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 999;
		transform: translateX(100%);
		transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	.mainNav__list {
		padding-top: 16vw;
		height: 100%;
		display: block;
	}

	.mainNav__item {
		margin: 0;
	}

	.mainNav__item:first-of-type {
		border-top: solid 1px rgba(var(--wht));
	}

	.mainNav__item a {
		padding: 4.8vw 0;
		color: #fff;
		text-decoration: none;
		border-bottom: solid 1px rgba(var(--wht));
		display: block;
		transition: opacity 0.6s ease;
	}

	.mainNav__item a svg {
		height: 4.8vw;
		vertical-align: middle;
	}

	.mainNav__item a svg .cls-1,
	.mainNav__item.active a svg .cls-1 {
		fill: rgba(var(--wht));
	}

	.mainNav__item.active a::before,
	.mainNav__item a:hover::before {
		display: none;
	}

	/* is-open */
	.is-open {
		overflow: hidden;
	}

	.is-open .mainNav {
		z-index: 999;
		transform: translateX(0);
	}
}

/*
	toggle
------------------------------ */
.toggle {
	display: none;
}

@media screen and (max-width: 768px) {
	.toggle {
		display: block;
		position: fixed;
		top: 4vw;
		right: 4vw;
		z-index: 1000;
	}

	.toggle__inner {
		position: relative;
		width: 48px;
		height: 28px;
		cursor: pointer;
	}

	.toggle__inner span {
		background: #5299c6;
		width: 100%;
		height: 2px;
		display: block;
		position: absolute;
		left: 0;
		transition: transform 0.6s ease-in-out, top 0.5s ease, bottom 0.5s ease;
	}

	.toggle__inner span:nth-child(1) {
		top: 2px;
	}

	.toggle__inner span:nth-child(2) {
		top: 50%;
		transform: translatey(-50%);
	}

	.toggle__inner span:nth-child(3) {
		bottom: 2px;
	}

	/* is-open */
	.is-open .toggle__inner span {
		background: #fff;
	}

	.is-open .toggle__inner span:nth-child(1) {
		top: 50%;
		transform: rotate(45deg) translatey(-50%);
	}

	.is-open .toggle__inner span:nth-child(2) {
		width: 0;
	}

	.is-open .toggle__inner span:nth-child(3) {
		top: 50%;
		transform: rotate(-45deg) translatey(-50%);
	}
}

/* ---------------------------------------------------
	copy
---------------------------------------------------- */
.agcopy {
	background: #000;
	padding: 1em 0;
	color: rgb(var(--wht));
	font-size: 14px;
	text-align: center;
}

.agcopy__logo {
	margin: 0.7em auto 0.8em;
	max-width: 147px;
}

.agcopy .sp {
	display: none;
}

@media screen and (max-width: 768px) {
	.agcopy {
		font-size: 3.2vw;
	}

	.agcopy .sp {
		display: block;
	}
}

/* ----------------------------------------------------
	banner
---------------------------------------------------- */
.linkBanner {
	margin-bottom: 85px;
}

.linkBanner__inner {
	max-width: 600px;
	margin: 0 auto;
	display: flex;
	gap: 0;
}

.linkBanner__inner--left,
.linkBanner__inner--right {
	width: 50%;
}

.linkBanner__inner--left img {
	width: 100%;
}

.linkBanner__inner--right {
	background: #003a38;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.linkBanner__inner--right p {
	text-align: center;
}

.linkBanner__logo {
	max-width: 240px;
	margin-bottom: 25px;
}

@media screen and (max-width: 1100px) {
	.linkBanner {
		margin-bottom: 7.72727vw;
	}
}

@media screen and (max-width: 768px) {
	.linkBanner__inner {
		display: block;
		max-width: 80%;
	}

	.linkBanner__inner--left,
	.linkBanner__inner--right {
		width: 100%;
	}

	.linkBanner__logo {
		max-width: 60%;
		padding: 3vw 0 1vw;
		margin: 0 auto;
	}

	.linkBanner__inner--right {
		display: block;
		padding: 0 0 3vw;
	}
}


/* ----------------------------------------------------
	mov
---------------------------------------------------- */
.mov {
	margin-bottom: 85px;
}

.mov__list {
	display: flex;
	justify-content: center;
}

.mov__list--item {
	text-align: center;
}

.mov__list--item:not(:last-of-type):nth-child(odd) {
	margin-right: 2%;
}

.mov__list--item.pamphlet img {
	width: auto;
	max-height: 1130px;
	height: 23.1vw;
}

.mov__list--item .movie {
	width: 100%;
	max-height: 1130px;
	height: 23.1vw;
	vertical-align: bottom;
}

.mov__list--item .caption {
	margin-top: 0.5em;
}

@media screen and (max-width: 1100px) {
	.mov {
		margin-bottom: 7.72727vw;
	}
}

@media screen and (max-width: 768px) {
	.mov__list {
		display: block;
	}

	.mov__list--item {
		width: 100%;
	}

	.mov__list--item:nth-child(odd) {
		margin-right: 0;
	}

	.mov__list--item:not(:last-of-type) {
		margin-bottom: 2em;
	}

	.mov__list--item.pamphlet img {
		width: 60%;
		height: auto;
	}

	.mov__list--item .movie {
		min-height: 100%;
		height: 100%;
		vertical-align: bottom;
	}

	.topFooter .mov {
		padding: 0 4.85vw;
	}
}

/* ----------------------------------------------------
	pagetop
---------------------------------------------------- */
.pageTop a {
	background: rgba(var(--blk), 0.75);
	width: 60px;
	height: 60px;
	border-radius: 4px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	right: 2em;
	bottom: 2em;
	z-index: 10;
}

.pageTop a:hover {
	background: rgba(var(--blk), 1);
	opacity: 1;
}

.pageTop a svg {
	fill: rgb(var(--wht));
	width: 16px;
	height: auto;
}

@media screen and (max-width: 768px) {
	.pageTop a {
		bottom: 1em;
	}
}