@charset "UTF-8";
/*@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@100;300;400;500;700;800;900&family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap");*/

/*@import url("https://fonts.googleapis.com/css2?family=BIZ+UDPGothic:wght@400;700&family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap");*/

@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Noto+Sans+JP:wght@100..900&display=swap");

body {
	background: url("../img/bg03.webp") repeat;
	color: #000;
	font-style: normal;
	font-size: 100%;
	font-family: "Noto Sans JP", sans-serif;

	font-optical-sizing: auto;
	scroll-behavior: smooth;
	scroll-padding-top: 150px;
}

.flow-root {
	display: flow-root;
	clear: both;
}

/*///////// slick slider /////////*/

section#slide {
	width: 96%;
	max-width: 1920px;
	margin: 0 auto;
}

.sliderArea {
	max-width: 100%;

/*background-color: #333333;*/
	margin: 0 auto;
	padding: 3rem 0 0;
}

img.w300 {
	max-width: 200px;
}

.slick-slide {
	margin: 0 5px;
}

.slick-slide img {
	width: 100%;
	height: auto;
}

.slick-prev,
.slick-next {
	z-index: 1;
}

.slick-prev:before,
.slick-next:before {
	color: #000;
}

.slick-slide {
	opacity: .2;
	transition: all ease-in-out .3s;
}

.slick-active {
	opacity: 1;
}

.slick-current {
	opacity: 1;
}

.thumb {
	margin: 20px 0 0;
}

.thumb .slick-slide {
	cursor: pointer;
}

.thumb .slick-slide:hover {
	opacity: .7;
}

/* /////////// IMAGE ZOOM /////////// */
@-webkit-keyframes zoomInImage {
	from {
		transform: scale3d(1, 1, 1);
	}

	to {
		transform: scale3d(1.1, 1.1, 1.1);
	}
}

@keyframes zoomInImage {
	from {
		transform: scale3d(1, 1, 1);
	}

	to {
		transform: scale3d(1.1, 1.1, 1.1);
	}
}

.zoomInImage {
	animation-name: zoomInImage;

	-webkit-animation-name: zoomInImage;
}

@-webkit-keyframes zoomOutImage {
	from {
		transform: scale3d(1.1, 1.1, 1.1);
	}

	to {
		transform: scale3d(1, 1, 1);
	}
}

@keyframes zoomOutImage {
	from {
		transform: scale3d(1.1, 1.1, 1.1);
	}

	to {
		transform: scale3d(1, 1, 1);
	}
}

.zoomOutImage {
	animation-name: zoomOutImage;

	-webkit-animation-name: zoomOutImage;
}

/*///////////////////////////////////*/

.inner {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}

.flexBox_01 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
}

.flexBox_02 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.flexBox_03 {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-evenly;
}

.flexBox_ .gridBox {
	display: grid;

	column-gap: 10px;
	grid-template-columns: repeat(4, 1fr);
}

.columnBox_01 {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: space-evenly;
	align-content: center;
	margin-top: 3rem;
}

.gridBox {
	display: grid;

	gap: 1rem;
	grid-template-columns: repeat(2, 1fr);
}

/*//////////////////// clearfix ⇒display: flow-root //////////////////*/
/*.clearfix:after {
    clear: both;
    content: " ";
    display: block;
    height: 0;
    visibility: hidden;
}

.clearfix {
    display: block;
    zoom: 100%;
}*/

.clr {
	clear: both;
}

/* header
--------------------------------------------------------------*/
header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100px;
	background-color: #fde201;
	transition: transform .5s;
}

header.js_hide {
	transform: translateY(-100%);
}

nav.gnav {
	position: absolute;
	top: 25%;
	width: 100%;
}

header ul {
	display: flex;
	justify-content: space-evenly;
	list-style-type: none;
	width: 80%;
	margin: 10px auto;
	color: #000;
	font-weight: bold;
	font-size: 1.4rem;
}

header ul li {
	flex-grow: 1;
	text-align: center;
}

header ul li + li {
	border-left: 1px dotted #363636;
}

/* menu-btn
--------------------------------------------------------------*/

div.menu-btn {
	display: none;
	position: fixed;
	top: 25px;
	right: 20px;
	z-index: 1;
	width: 100px;
	height: 50px;
	font-size: 20px;
	line-height: 50px;
	text-align: center;
	cursor: pointer;
}

div.menu-btn span {
	color: #000;
}

div.menu-btn span:after {
	content: attr(data-txt-menu);
}

/* 開閉用ボタンがクリックされた時のスタイル */
nav.open .menu-btn span:after {
	content: attr(data-txt-close);
}

nav.menu {
	display: table;
	visibility: hidden;
	opacity: 0;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 999;
	width: 80%;
	height: 100%;
	background: #ffec4d;
	transition: all .5s;

	-webkit-transition: all .5s;
}

nav.menu ul {
	display: table-cell;
	vertical-align: middle;
}

nav.menu li {
	list-style-type: none;
	width: 300px;
	height: 80px;
	margin: 0 auto;
	line-height: 80px;
	text-align: center;
}

nav.menu li a {
	display: block;
	color: #000;
	font-weight: bolder;
	font-size: 24px;
}

nav.menu li a:hover {
	color: #999;
}

/* 開閉用ボタンがクリックされた時のスタイル */
.open .menu {
	visibility: visible;
	opacity: 1;
	cursor: url(../images/cross.svg), auto;
	transition: all .5s;

	-webkit-transition: all .5s;
}

/* branding img
--------------------------------------------------------------*/

.bg_box {
	align-items: center;
	width: 100%;
	margin: 4rem 0 3rem;
	background-image: url(../img/image_top.avif);
	background-position: center;
	background-size: cover;

	aspect-ratio: 16 / 9;
}

h1.bg_title {
	position: absolute;
	top: 0;
	left: 0;
	font-size: xx-small;
	text-align: center;
}

div.date p {
	padding: 2rem;
	border: 1rem solid #fff;
	border-radius: 1rem;
	box-shadow: 0 0 10px 5px rgba(0, 0, 0, .1);
	background-color: #fde201;
	font-weight: bold;
	font-size: clamp(.75rem, -.132rem + 4.41vw, 2.625rem);
	text-align: center;
}

div.date p span {
	font-size: clamp(.75rem, -.132rem + 4.41vw, 2.625rem);
	vertical-align: sub;
}

/* modaal
**************************************************************/

.modaal-container {
	border-radius: 10px !important;
}

.modaal-content-container {
	text-align: center;
}

.modaal-content-container h4 {
	width: 80%;
	margin: 0 auto 3rem;
	padding-bottom: 1.6rem;
	border-bottom: 1px solid #26a0bf;
	font-weight: lighter;
	font-size: 1.3rem;
}

.modaal-content-container p {
	padding-bottom: 1rem;
}

.modaal-content-container table {
	width: 50%;
	margin: 0 auto;
}

/* main_contents
--------------------------------------------------------------*/

a {
	color: inherit;
	text-decoration: none;
}

main a {
	color: #26a0bf;
}

a:hover {
	opacity: .7;
}

ul {
	list-style-position: inside;
	margin-bottom: 2rem;
}

li {
	padding-left: 1em;
	text-indent: -1em;
}

.att {
	padding-left: 1em;
	text-indent: -1em;
}

.fadein {
	opacity: 0;
	transform: translate(0, 50px);
	transition: all 1s;
}

.fadein.active {
	opacity: 1;
	transform: translate(0, 0);
}

article {
	padding: 0 0 5rem;
	transition: all 1s ease;
}

article h4,
section h4 {
	margin: 2rem 0;
	font-weight: lighter;
	font-size: 1.4rem;
}

article figure.copy {
	width: fit-content;
	margin: 0 auto;
}

article figure.copy img {
	width: 45dvw;
}

section {
	margin-bottom: 3rem;
}

h1.secondTitle {
	margin-bottom: 3rem;
	padding-top: 100px;
}

h1.secondTitle img {
	width: 100%;
	max-width: 1920px;
}

img.blockCentor {
	object-fit: scale-down;
}

ul#imgSet {
	display: grid;
	justify-content: center;
	list-style: none !important;
	padding-left: 0;

	gap: 20px;
	grid-template-columns: repeat(auto-fit, 134px);
}

section h2 {
	margin-bottom: 2rem;
	padding-bottom: 2px;
	border-bottom: solid 1px #555;
	border-image: linear-gradient(to right, #555 0%, #fff 100%) 1;
	font-weight: bold;
	font-size: clamp(1.25rem, .779rem + 2.35vw, 2.25rem);
}

section h2 span {
	opacity: .7;
	margin-right: .8rem;
	color: #5b5b5b;
	font-size: clamp(35px, 3vw, 50px) !important;
	vertical-align: bottom;
}

section h3 {
	line-height: 4rem;
}

section h3.photowalk {
	float: right;
	width: fit-content;
	margin-bottom: 2rem;
	padding: .5rem;
	border-radius: 8px;
	background-color: #2d9bd7;
	color: #fff;
	font-size: clamp(1rem, .765rem + 1.18vw, 1.5rem);
}

section h3.photowalk a {
	color: #fff;
}

div.pastBox {
	display: flow-root;
	margin-bottom: 2rem;
	padding: 1rem;
	border-left: 13px solid #0058a8;
	box-shadow: 0 0 3px 0 rgba(0, 0, 0, .15);
	background: #fff;
}

p {
	margin-bottom: 1.4rem;
}

p.title01 {
	position: relative;
	max-width: 50%;
	margin: 0 0 2rem;
	padding-bottom: .6rem;
	font-weight: bold;

/*border-bottom: dotted .5px #7b7b7b;*/
	font-size: 1.4rem;
}

p.title01_s {
	position: relative;
	max-width: 50%;
	margin: 0 0 1rem;
	padding-bottom: .6rem;
	font-weight: bold;
	font-size: 1.4rem;
}

p.title02 {
	position: relative;
	max-width: 50%;
	margin: 0 0 1rem;
	padding-bottom: .6rem;
	font-size: 2rem;
	text-align: center;
}

p.title03 {
	position: relative;
	max-width: 50%;
	margin: 0 auto 2rem;
	padding: .6rem;
	border: 1px solid #000;
	border-radius: 6px;
	font-weight: bolder;
	font-size: clamp(1.25rem, .779rem + 2.35vw, 2.25rem);
	text-align: center;
}

p.title01::after,
p.title02::after,
p.title01_s::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 7px;
	background: -webkit-repeating-linear-gradient(-45deg,
	#6ad1c8,
	#6ad1c8 2px,
	#706565 2px,
	#fff 4px);
	background: repeating-linear-gradient(-45deg,
	#6ad1c8,
	#6ad1c8 2px,
	#fff 2px,
	#fff 4px);
	content: "";
}

p.title04 {
	color: red;
	font-weight: bolder;
}

p.title05 {
	position: relative;
	font-weight: bolder;
	font-size: clamp(1rem, .765rem + 1.18vw, 1.5rem);
}

p.title05 span {
	font-size: clamp(.75rem, .574rem + .88vw, 1.125rem);
}

p.date {
	font-weight: bolder;
	font-size: clamp(.75rem, .397rem + 1.76vw, 1.5rem);
}

p.date span {
	padding-bottom: 3px;
	vertical-align: bottom;
}

div.map {
	position: relative;
	width: 100%;

/* 16:9のアスペクト比 */
	height: 0;
	padding-top: 56.25%;
}

div.map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

p.mapTitle {
	margin-bottom: 0;
	background-color: #fde201;
	font-size: clamp(.75rem, .397rem + 1.76vw, 1.5rem);
	line-height: 4rem;
	text-align: center;
}

.centor {
	text-align: center;
}

figcaption {
	margin-top: 3rem;
	font-size: clamp(.75rem, .632rem + .59vw, 1rem);
}

figure.frame {
	display: inline-block;
	position: relative;
	margin: 0 auto;

	rotate: 7deg;
}

figure.frame img {
	max-width: 200px;
}

figure.frame:after {
	position: absolute;
	top: auto;
	right: 5px;
	bottom: 20px;
	left: auto;
	z-index: -1;
	transform: rotate(3deg);
	width: 85%;
	height: 20%;
	box-shadow: 0 15px 10px rgba(0, 0, 0, .5);
	content: "";
}

div.pastBox a {
	font-size: clamp(1rem, .882rem + .59vw, 1.25rem);
}

div.pastBox span {
	margin-right: .4rem;
	font-size: 2rem;
	vertical-align: middle;
}

ul.referenceMk {
	list-style-type: none;
}

ol {
	list-style-type: decimal;
	list-style-position: inside;
	margin-bottom: 2rem;
}

p.grayBox {
	width: fit-content;
	margin: 0 auto;
	padding: .8rem;
	border-radius: 10px;
	background-color: #ddd;
	color: #000;
	font-weight: bold;
	font-size: clamp(.875rem, .757rem + .59vw, 1.125rem);
	line-height: 3rem;
	text-align: center;
}

table.course {
	width: 100%;
	margin: 0 auto 3rem;
	padding: 0;
	border: 1px solid #f90;
	color: #000;
	table-layout: auto;
	border-collapse: collapse;
}

table.course tr {
	padding: .35rem;
	border: 1px solid #bbb;
}

table.course thead {
	border-bottom: 5px solid #f90;
}

table.course th,
table.course td {
	padding: 1rem;
	border-right: 1px solid #bbb;
	text-align: center;
	white-space: nowrap;
}

/*/table.course th:last-child, table.course td:last-child {
    border: none;
}*/

tbody.course th {
	color: #f90;
}

p.finishLine_sphone {
	display: none;
}

.c_name {
	font-size: 1.4rem;
}

/*//////////////////// table .inn ////////////////////*/

table.inn {
	width: 100%;
	margin: 0 auto 2rem;
	padding: 0;
	border-collapse: collapse;
}

table.inn tr {
	border-bottom: 2px solid #fff;
	background-color: #fff;
}

table.inn tr:nth-child(even) {
	background-color: #eee;
}

table.inn th,
table.inn td {
	padding: .35rem 1rem;
	text-align: center;
}

table.inn thead th {
	padding: .8rem;
}

table.inn thead tr {
	background-color: #f90;
	color: #000;
}

.phone {
	font-size: 1rem;
}

div.application_01,
div.application_02,
div.application_03 {
	margin-bottom: 2rem;
}

div.application_01 p,
div.application_02 p,
div.application_03 p {
	width: 80%;
	margin: 0 auto 2rem;
}

div.application_01 a {
	display: inline-block;
	position: relative;
	padding: 1rem 4rem;
	border: 6px solid #fff;
	border-radius: .5rem;
	box-shadow: 0 0 4px rgb(81 81 81 / 77%);
	background-color: #ff8400;
	color: #fff;
	font-weight: 700;
	font-size: clamp(1rem, .397rem + 1.76vw, 1.5rem);
	line-height: 1.5;
	letter-spacing: .1em;
	text-decoration: none;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	transition: all .3s;

	user-select: none;
}

div.application_02 a {
	display: inline-block;
	position: relative;
	padding: 1rem 4rem;
	border: 6px solid #fff;
	border-radius: .5rem;
	border-radius: .5rem;
	box-shadow: 0 0 4px rgb(81 81 81 / 77%);
	background-color: #fde201;
	color: #000;
	font-weight: 700;
	font-size: clamp(1rem, .397rem + 1.76vw, 1.5rem);
	line-height: 1.5;
	letter-spacing: .1em;
	text-decoration: none;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	transition: all .3s;

	user-select: none;
}

div.application_03 a {
	display: inline-block;
	position: relative;
	padding: 1rem 4rem;
	border: 6px solid #fff;
	border-radius: .5rem;
	border-radius: .5rem;
	box-shadow: 0 0 4px rgb(81 81 81 / 77%);
	background-color: #00439d;
	color: #fff;
	font-weight: 700;
	font-size: clamp(1rem, .397rem + 1.76vw, 1.5rem);
	line-height: 1.5;
	letter-spacing: .1em;
	text-decoration: none;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	transition: all .3s;

	user-select: none;
}

div.application_01 a:hover,
div.application_02 a:hover,
div.application_03 a:hover {
	text-decoration: underline;
}

@media screen and (max-width: 768px) {
	table.course {
		width: 100%;
		margin-bottom: 0;
		border: 0;
	}

	table.course th {
		display: block;
		margin-bottom: .6rem;
		padding-bottom: .6rem;
		border-right: none;
		border-bottom: 5px solid #ff9901;
	}

	table.course thead {
		position: absolute;
		width: 1px;
		height: 1px;
		margin: -1px;
		padding: 0;
		overflow: hidden;
		border: none;

		clip: rect(0 0 0 0);
	}

	table.course tr {
		display: block;
		margin-bottom: 2rem;
	}

	table.course td {
		display: block;
		position: relative;
		padding: .6rem;
		border-right: none;
		border-bottom: 1px solid #bbb;
		text-align: right;
	}

	table.course td::before {
		position: absolute;
		left: 10px;
		font-weight: bold;
		content: attr(data-label);
	}

	table.course td:last-child {
		border-bottom: 0;
	}

	table.course td.finishLine {
		display: none;
	}

	p.finishLine_sphone {
		display: block;
		text-align: end;
	}

	p.finishLine_sphone span {
		vertical-align: bottom;
	}

	/*//////////////////// table .inn ////////////////////*/

	table.inn {
		width: 100%;
		border: 0;
	}

	table.inn th {
		display: block;
		border-right: none;
		background-color: #f90;
	}

	table.inn thead {
		position: absolute;
		width: 1px;
		height: 1px;
		margin: -1px;
		padding: 0;
		overflow: hidden;
		border: none;

		clip: rect(0 0 0 0);
	}

	table.inn tr {
		display: block;
		margin-bottom: .625rem;
		border: 1px solid #f90;
	}

	table.inn td {
		display: block;
		position: relative;
		padding: .7rem;
		border-right: none;
		border-bottom: 1px dotted #bbb;
		font-size: 1rem;
		text-align: right;
	}

	table.inn td::before {
		position: absolute;
		left: 10px;
		color: #000;
		font-weight: bold;
		content: attr(data-label);
	}

	table.inn td:last-child {
		border-bottom: 0;
	}

	table.inn tbody th {
		padding: .5rem;
		color: #fff;
	}

	table.inn tr:nth-child(even) {
		background-color: #fff;
	}
}

section.pamphlet figcaption {
	display: block;
	align-items: center;
	width: 50%;
	height: 8dvh;
	padding-top: 22px;
	background: url(../img/marker.png) no-repeat;
	background-position: center;
	background-size: 100% 100%;
	color: #fff;
	text-align: center;
}

section.pamphlet figcaption a {
	color: inherit;
	font-weight: bolder;
}

/* footter
--------------------------------------------------------------*/

footer {
	padding: 5rem 0 1rem;
	background-color: #273d6d;
	color: #fff;
	text-align: center;
}

/* aside
--------------------------------------------------------------*/

footer aside {
	width: 80%;
	margin: 5rem auto 0;
}

footer aside figure img {
	max-width: 100%;
}

/* aside end
--------------------------------------------------------------*/
footer section {
	margin-bottom: 1rem;
}

footer div.f_title {
	position: relative;

/*--border-color: #ffffff;*/
	margin-bottom: 3rem;
	padding: 0 0 1rem;
}

/*footer div.f_title::after,
footer div.f_title::before {
	position: absolute;
	bottom: 0;
	width: .75rem;
	height: 100%;
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
	content: "";
}

footer div.f_title::before {
	left: 0;
	border-left: 1px solid var(--border-color);
}

footer div.f_title::after {
	right: 0;
	border-right: 1px solid var(--border-color);
}*/

footer div.f_title h2 {
	margin: 0;
	border: none;
	color: #fff;
	font-weight: bold;
	line-height: 3rem;
}

footer div.f_title h2 span {
	opacity: 1;
	margin: 0;
	color: #fff;
	font-size: clamp(2rem, 1.529rem + 2.35vw, 3.1rem) !important;
}

footer a {
	display: block;
	width: fit-content;
	margin: 0 auto;
	color: #cfcfcf;
}

footer address {
	margin-top: 3rem;
	color: #cfcfcf;
	font-style: normal;
	font-size: .8rem;
}

#copyright {
	opacity: 1;
	padding: .8rem 0 0;
	font-style: italic;
	font-size: .7rem;
	text-align: center;
}

/* Media query ********************************************************************/
@media screen and (max-width: 1200px) {
	#header ul {
		width: 60%;
	}
}

@media screen and (max-width: 960px) {
	nav.gnav {
		display: none;
	}

	div.menu-btn {
		display: block;
	}

	main {
		padding: 0 1rem;
	}

	.vertically h2 {
		margin: 0 1rem 0 0;
	}

	section h2 {
		margin-bottom: 1rem;
	}

	p.title {
		width: 100%;
	}
}

/* Media query ********************************************************************/

@media screen and (max-width: 960px) {
	div.application_01 a,
	div.application_02 a,
	div.application_03 a {
		width: 96%;
		margin: 0 auto 1rem;
	}
}

/* Media query ********************************************************************/

@media screen and (max-width: 768px) {
	header {
		height: 70px;
	}

	div.menu-btn {
		top: 10px;
	}

	div.bg_box {
		margin-bottom: 2rem;
	}

	main {
		padding: 0 !important;
	}

	.inner {
		width: 100%;
		max-width: 90%;
	}

	article {
		padding-bottom: 0;
	}

	h1.secondTitle {
		padding-top: 70px;
	}

	section h2 {
		margin-top: 1rem;
	}

	p.title01 {
		max-width: 100%;
	}

	.table-scroll {
		overflow-x: scroll;
	}

	div.date p {
		padding: 1rem;
		border: .3rem solid #fff;
		border-radius: .5rem;
	}

	article figure.copy img {
		width: 85dvw;
	}

	section#location address {
		margin-bottom: 2rem;
	}

	p.title01 {
		margin-bottom: 1rem;
	}

	p.title01_s {
		position: relative;
		max-width: 96%;
		margin: 0 0 1rem;
		padding-bottom: .6rem;
		font-weight: bold;
		font-size: 1.4rem;
	}

	p.title03 {
		width: fit-content;
		max-width: 100%;
	}

	.gridBox {
		grid-template-columns: repeat(1, 1fr);
	}

	p.grayBox {
		line-height: 2rem !important;
		text-align: start;
	}

	div.pastBox {
		margin-bottom: 0;
		padding: .5rem;
		font-size: clamp(.8rem, .512rem + 1.18vw, 1.25rem);
	}

	div.pastBox a {
		font-size: 1rem;
	}

	footer div.f_title h2 {
		line-height: 2rem;
	}

	section.pam phlet figcaption {
		width: 80dvw;
		margin-top: 1rem;
	}
}

@media screen and (max-width: 600px) {
	p.mapTitle {
		padding: 1rem;
		line-height: 1rem;
		text-align: left;
	}
}
