@charset "UTF-8";

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	width: 100%;
	height: 100%;
	font-size: 62.5%;
	scroll-behavior: smooth;
}

body {
	background-color: #fff;
	color: #000000;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.5;
	width: 100%;
	height: 100%;
	position: relative;
	-webkit-text-size-adjust: 100%;
	min-width: 320px;
	display: flex;
	flex-direction: column;
}

a {
	text-decoration: none;
	color: #464646;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	cursor: pointer;
}

a,
button {
	transition: all .6s ease 0s;
}

p a,
label a {
	color: #014BB1;
}

a:hover,
button:hover {
	opacity: .7;
}

strong,
em {
	font-style: normal;
	font-weight: 300
}

ul,
li {
	list-style: none;
	word-wrap: break-word;
}

p {
	text-align: justify;
	word-wrap: break-word;
}

img {
	max-width: 100%;
}

.ib {
	display: inline-block;
}

.tc {
	text-align: center !important;
}

.tr {
	text-align: right !important;
}

.tl {
	text-align: left !important;
}

.bold {
	font-weight: bold !important;
}

.mb5 {
	margin-bottom: 5px;
}

.mb10 {
	margin-bottom: 10px;
}

.mb15 {
	margin-bottom: 15px;
}

.mb20 {
	margin-bottom: 20px;
}

.mb25 {
	margin-bottom: 25px;
}

.mb30 {
	margin-bottom: 30px;
}

.mb35 {
	margin-bottom: 35px;
}

.mb40 {
	margin-bottom: 40px;
}

.mb45 {
	margin-bottom: 45px;
}

.mb50 {
	margin-bottom: 50px;
}

.mb55 {
	margin-bottom: 55px;
}

.mb60 {
	margin-bottom: 60px;
}

.mb70 {
	margin-bottom: 70px;
}

.mb80 {
	margin-bottom: 80px;
}

.txt_color_orange {
	color: #FF7F3E;
}

@media screen and (min-width: 801px) {
	.smt {
		display: none !important;
	}
}

@media screen and (max-width: 800px) {
	.pc {
		display: none !important
	}
}

/* ===========================
 layout
=========================== */
.inr {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	padding: 0 5vw;
}

@media (min-width: 800px) {

	.inr {
		padding: 0 20px;
	}

}

/* ===========================
 header
=========================== */
.header {
	background-color: #fff;
	font-size: min(3vw, 1.4rem);
	text-align: center;
	padding: 5px 0;
}

@media (min-width: 800px) {

	.header {
		background-color: #fff;
		font-size: 1.6rem;
		padding: 4px 0;
	}

}

/* ===========================
 footer
=========================== */
.footer {
	background-color: #F3F1EA;
	padding: 35px 0 30px;
	font-size: 1.5rem;
}

.footer_prefecture {
	display: inline-block;
	font-size: 1.6rem;
	padding: 0.5em 1.2em;
	border: 1px solid #1B1311;
	border-radius: 3px;
	flex-shrink: 0;
}

.footer_head {
	margin-bottom: 19px;
	text-align: center;
}

.footer_head p {
	text-align: center;
}

.footer_logo a {
	display: block;
	max-width: 345px;
	margin: 10px auto;
}

@media (min-width: 800px) {

	.footer {
		padding: 35px 0 40px;
	}

	.footer_head {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 10px;
	}

	.footer_logo {
		display: flex;
		align-items: center;
		gap: 10px;
	}

	.footer_logo a {
		margin: 0;
	}

}

/* ===========================
 course
=========================== */
.course li {
	margin-bottom: 55px;
}

.course_ttl {
	color: #3991C1;
	font-size: min(2.5vw, 2.3rem);
	letter-spacing: 0;
	font-weight: 600;
	background-color: #FFEF02;
	padding: 0.3em .9em;
	margin-bottom: 20px;
	position: relative;
}

.course_ttl span {
	font-weight: 800;
}

.course_ttl img {
	display: block;
	width: 82px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.course_txt {
	line-height: 1.65;
	margin-bottom: 10px;
}

.course_deco {
	text-align: center;
}


@media (max-width: 799px) {

	.course_img img {
		min-width: 500px;
	}

	.course_ttl {
		font-size: min(4.5vw, 2.3rem);
	}

	.course_ttl img {
		display: block;
		width: 16vw;
		position: absolute;
		right: -3vw;
		top: 50%;
		transform: translateY(-50%);
	}

	.course_overflow {
        overflow-x: scroll;
		position: relative;
		margin-bottom: 10px;
	}

	/* スクロールインジケーターのスタイル */
	.scroll-indicator {
		position: absolute;
		left: 50%;
		top: 50%;
		pointer-events: none;
		/* クリックを無効化 */
		opacity: 0.7;
		transition: opacity 0.3s, visibility 0.3s;
	}

	.scroll-indicator.is-scroll {
		visibility: hidden;
		opacity: 0;
	}

	.scroll-indicator-inr {
		font-size: 12px;
		transform: translate(-50%, -50%);
		background: rgba(0, 0, 0, 0.5);
		color: white;
		padding: 15px 10px;
		border-radius: 5px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		animation: fadeBlink 2s infinite ease-in-out;
	}

	.scroll-indicator-inr img {
		width: 50px;
	}

	/* スクロールヒントの点滅 */
	@keyframes fadeBlink {
		0% {
			opacity: 0.2;
		}

		50% {
			opacity: 1;
		}

		100% {
			opacity: 0.2;
		}
	}
}

@media (min-width: 800px) {

	.course_content {
		display: flex;
		align-items: flex-start;
		gap: 15px;
	}

	.course_img {
		width: 398px;
		margin-bottom: 0;
	}

	.course_txt {
		flex: 1;
		margin-bottom: 0;
	}

	.course_deco {
		align-self: end;
		margin-bottom: 5px;
	}

}

@media (min-width: 500px) {
	.scroll-indicator {
		display: none;
	}
}

.exam_day {
	display: block;
	text-align: center;
	font-size: 2.6rem;
	padding: 1.05em;
	color: #fff;
	background-color: #FF803E;
	font-weight: 600;
	letter-spacing: 0;
	position: relative;
}

.exam_day.exam_day--men::after {
	content: "";
	display: block;
	width: 136px;
	height: 129px;
	background: url(../img/deco_course03.png) no-repeat;
	background-size: contain;
	position: absolute;
	bottom: 0;
	left: 8%;
}

.exam_day.exam_day--women::after {
	content: "";
	display: block;
	width: 143px;
	height: 143px;
	background: url(../img/deco_course06.png) no-repeat;
	background-size: contain;
	position: absolute;
	bottom: 0;
	right: 4%;
}

@media (max-width: 799px) {
	.exam_day {
		font-size: min(6vw,2.6rem);
	}

	.exam_day.exam_day--men::after {
        width: 16vw;
        height: 15vw;
		bottom: 0;
		left: 3%;
	}

	.exam_day.exam_day--women::after {
        width: 15vw;
        height: 15vw;
		bottom: 0;
		right: 1%;
	}
}

@media (min-width: 800px) {
	.exam_day {
		margin: 0 -80px;
	}
}

/* ===========================
 mv
=========================== */
.mv {
	background-color: #F1EAD7;
	text-align: center;
}

.mv_inr {
	max-width: 1060px;
	margin: 0 auto;
}

.mv_inr img {
	width: 100%;
}

@media (min-width: 800px) {
	.mv_inr {
		padding: 0 20px;
	}
}

/* ===========================
 lead
=========================== */
.lead {
	padding: 20px 0 70px;
	line-height: 1.7;
}

@media (min-width: 800px) {
	.lead {
		padding: 25px 0 70px;
	}
}

/* ===========================
 zenki
=========================== */
.zenki {
	padding-bottom: 60px;
	overflow: hidden;
}

.zenki_box {
	margin-bottom: 30px;
}

.zenki_img img {
	width: 100%;
}

.zenki_txt {
	margin-bottom: 20px;
}

.about_disp {
	margin-bottom: 35px;
}


@media (min-width: 800px) {
	.zenki {
		padding-bottom: 120px;
	}

	.zenki_box {
		display: flex;
		gap: 20px;
		margin-bottom: 50px;
	}

	.zenki_img {
		width: 34.2%;
	}

	.zenki_txt {
		flex: 1;
		margin-bottom: 0;
		padding-top: 7px;
	}

	.zenki .course {
		margin-bottom: 70px;
	}

	.course li:first-of-type .course_deco img {
		margin-bottom: -10px;
	}

}

/* ===========================
 kouki
=========================== */
.kouki {
	overflow: hidden;
	padding-bottom: 60px;
}

.kouki .course {
	padding: 30px 0 0;
}

.exam_prep_time {
	text-align: center;
}

.exam_prep_time img {
	width: 100%;
	max-width: 400px;
	margin-bottom: 5px;
}

@media (max-width: 799px) {
	.kouki .course_ttl {
        font-size: min(3.5vw, 2.3rem);
    }
}

@media (min-width: 800px) {

	.kouki {
		padding-bottom: 120px;
	}

	.kouki .course li:first-of-type .course_deco {
		align-self: center;
	}

	.kouki .course li:first-of-type .course_deco img {
		margin-bottom: -25px;
	}

}

/* ===========================
 about
=========================== */
.about {
	overflow: hidden;
}

.about_inr {
	padding: 20px 0 37px;
}

.about_box {
	margin-bottom: 30px;
}

.about_img img {
	width: 100%;
}

.about_txt {
	margin-bottom: 20px;
	line-height: 1.65;
}

.about .course_ttl {
	font-size: min(3.8vw, 2.3rem);
}

@media (min-width: 800px) {

	.about .course_ttl {
        font-size: min(2.5vw, 2rem);
        padding: 0.95em 6.5em 0.95em .9em;
        text-align: center;
        margin-bottom: 30px;
	}

	.about_inr {
		padding: 30px 0 120px;
	}

	.about_box {
		display: flex;
		gap: 20px;
		margin-bottom: 30px;
	}

	.about_img {
		width: 51%;
	}

	.about_txt {
		flex: 1;
		margin-bottom: 0;
	}

}

/* ===========================
 attendance
=========================== */
.attendance_inr {
	padding: 20px 0 50px;
}

.attendance_list {
	font-size: 1.8rem;
	font-weight: bold;
	margin-bottom: 30px;
}

.attendance_list li {
	margin-bottom: 30px;
	line-height: 1.88;
}

.attendance_dl dt {
	color: #ffffff;
	background-color: #DF8085;
	width: 86px;
	height: 33px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	margin-bottom: 10px;
}

.attendance_dl {
	margin-bottom: 40px;
}

.attendance_dl dd {
	margin-bottom: 23px;
}

.attendance_fee {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.attendance_free {
	color: #FF7F3E;
	font-size: 2.8rem;
}

.attendance_btn {
	text-align: center;
	display: block;
}


@media (min-width: 800px) {

	.attendance_inr {
		padding: 25px 0 80px;
	}

	.attendance_list {
		font-size: 1.7rem;
	}

	.attendance_list li {
		margin-bottom: 0px;
	}

	.attendance_box {
		text-align: center;
		padding-left: 7%;
	}

	.attendance_dl {
		max-width: 600px;
		margin: 0 auto 47px;
		display: flex;
		flex-wrap: wrap;
		row-gap: 27px;
		justify-content: space-between;
	}

	.attendance_dl dt {
		margin-bottom: 0;
		margin-top: 3px;
	}

	.attendance_dl dd {
		width: calc(100% - 100px);
		margin-bottom: 0;
		text-align: left;
		margin-top: 0.4em;
	}

	.attendance_fee {
		gap: 10px;
	}
}

/* ===========================
 ttl
=========================== */
.ttl {
	color: #FFFFFF;
	background-color: #3991C1;
	font-size: 2.5rem;
	font-weight: bold;
	text-align: center;
	margin-bottom: 23px;
}

.ttl_inr {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 900px;
	margin: 0 auto;
	padding: 5px 20px;
}

.ttl--deco {
	font-size: min(6vw, 2.5rem);
}

.ttl--deco .ttl_inr {
	justify-content: space-between;
	flex-direction: column;
	gap: 10px;
	padding: 19px 20px 12px;
}

@media (min-width: 800px) {

	.ttl {
		font-size: 2.8rem;
		padding: 10px 0;
	}

	.ttl_inr {
		padding: 4px 20px;
	}

	.ttl--deco .ttl_inr {
		flex-wrap: wrap;
		flex-direction: row;
		padding: 4px 20px;
	}
}

.slash_title {
	font-size: min(4.5vw, 2.5rem);
	font-weight: bold;
	color: #3991C1;
	display: flex;
	justify-content: space-between;
	margin-bottom: 25px;
	padding: 0 3vw;
	text-align: center;
	line-height: 1.36;
}

.slash_title.slash_title--lg {
	font-size: min(6vw, 2.5rem);
}

.slash_title::before,
.slash_title::after {
	content: "";
	width: 4px;
	background-color: #3991C1;
	display: block;
	margin: 1px 0;
}

.slash_title::before {
	transform: rotate(-19deg);
}

.slash_title::after {
	transform: rotate(19deg);
}

@media (min-width: 800px) {

	.slash_title {
		line-height: 1;
		justify-content: center;
		gap: 16px;
		padding: 0;
	}

	.slash_title::before {
		transform: rotate(-25deg);
	}

	.slash_title::after {
		transform: rotate(25deg);
	}
}