@charset "UTF-8";

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

	/* color */
	--blk: 98, 95, 95;
	--wht: 255, 255, 255;
	--brw: 188, 130, 87;
	--lightBlue: 220, 241, 244;
	--mainColor: 193, 174, 137;
	--periodColor: 98, 95, 95;
	--textColor: 112, 112, 112;
}

/* reset add
----------------------------------- */
body,h1, h2, h3, h4, h5, h6 {
	font-size: 16px;
	font-weight: normal;
}

ul {
	list-style: none;
}

a:hover {
	opacity: 0.8;
}

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

a[href^="tel"] {
	color: #000;
	text-decoration: none;
}

/*
	#reset
------------------------------ */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

p:not(:last-of-type) {
	word-wrap: break-word;
}

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

fieldset, img {
	border: 0;
}

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

ol, ul {
	list-style: none;
}

caption, th {
	text-align: left;
}

a {
	text-decoration: none;
	transition: all 0.5s ease 0s;
}
a:hover {
	opacity: 0.7;
}

area {
	border: none;
	outline: none;
}

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


/* common
----------------------------------- */
html {
	scroll-behavior: smooth;
	font-size: 62.5%;
}

body {
	background: #FAF6EC;
	line-height: 1.5;
	color: #000;
	font-family: var(--notoSeJP);
	font-feature-settings: "palt"1;
	letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {}

.w890 {
	max-width: 890px;
	margin: 0 auto;
}

.w950 {
	max-width: 950px;
	margin: 0 auto;
}

.note {
	font-size: min(1.4rem, 1.025vw);
	padding-left: 1em;
	text-indent: -1em;
}
.note::before {
	content: '※';
}

@media screen and (max-width: 768px) {
	.note {
		font-size: min(1.2rem, 3.2vw);
	}
}

/* ----------------------------------------------------
	toggle
---------------------------------------------------- */
.toggle {
	display: none;
	transition: opacity .3s;
}

.toggle.is-hide {
	opacity: 0;
	pointer-events: none;
}

@media screen and (max-width: 768px) {
	.toggle {
		width: 50px;
		height: 45px;
		display: block;
		padding: 9px;
		position: fixed;
		top: 10px;
		right: 0;
		z-index: 100;
	}

	.toggle__inner {
		width: 100%;
		height: 100%;
		position: relative;
		cursor: pointer;
	}

	.toggle__inner--item {
		background: rgba( 0, 0, 0, 0.4);
		width: 100%;
		height: 2px;
		display: block;
		position: absolute;
		left: 50%;
		transition: all 0.6s;
	}

	.toggle__inner--item:nth-child(1) {
		top: 2px;
		transform: translateX(-50%);
	}

	.toggle__inner--item:nth-child(2) {
		top: 50%;
		transform: translate(-50%, -50%);
	}

	.toggle__inner--item:nth-child(3) {
		bottom: 2px;
		transform: translateX(-50%);
	}

	/* is-open */
	.is-open .toggle__inner--item {
		background: #E7E3CF;
		transform-origin: 0 0;
	}

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

	.is-open .toggle__inner--item:nth-child(2) {
		opacity: 0;
		visibility: hidden;
	}

	.is-open .toggle__inner--item:nth-child(3) {
		top: 50%;
		bottom: auto;
		transform: rotate(-45deg) translate(-50%, -50%);
	}
}

/* ---------------------------------------------------
	gnav
---------------------------------------------------- */
.gnav {
	background: #fff;
	border-top: 6px solid #9E8B56;
	border-bottom: 6px solid #9E8B56;
	padding: 22px 0;
	position: sticky;
	top: 0;
	z-index: 99;
}

.gnav__list {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.gnav__list::after {
	content: '';
	background: url(../img/itemA.webp) no-repeat;
	background-size: 100%;
	display: block;
	width: 64px;
	height: 64px;
	position: absolute;
	bottom: -50px;
	right: 40px;
}

.gnav__list .nav-logoA {
	width: 90px;
}

.gnav__list .nav-logoB {
	width: 123px;
}

.gnav__list .nav-logoC {
	width: 153px;
}

.gnav__list .nav-logoD {
	width: 94px;
}

.gnav__list .nav-logoE {
	width: 83px;
}

.gnav__list p {
	color: #C7373B;
	font-size: min(2.5rem, 1.83vw);
	font-weight: 600;
}

.gnav__list--item:not(:last-of-type) {
	margin-right: 2.5em;
}

.gnav__list--item a {
	color: #4472A1;
	text-decoration: none;
}

.under .gnav__list--item a {
	color: #4472A1;
}

.under .gnav__list--item a:hover,
.under .gnav__list--item a.active {
	opacity: 1;
}

body.sub-page .gnav {
	background: #4472A1;
}

body.sub-page .gnav__list {
	color: #fff;
}

body.sub-page .gnav__list--item a {
	color: #fff;
}


@media screen and (max-width: 1280px) {
	.gnav {
		height: 7.813vw;
	}
}

@media screen and (max-width: 768px) {
	.gnav {
		border: none;
		background: #C7373B;
		width: 100%;
		height: 100%;
		overflow: auto;
		position: fixed;
		top: 0;
		right: 0;
		transform: translateX(100%);
		transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	.gnav__list {
		padding: 50px 1em 0;
		height: 100%;
		font-size: min(2.1rem, 5.6vw);
		display: block;
	}

	.gnav__list::after {
		display: none;
	}


	.gnav__list--item {
		margin: 0 auto;
		padding: 15px 0;
		text-align: center;
	}

	.gnav__list--item:not(:last-of-type) {
		margin: 0 auto;
	}

	.gnav__list--item a {
		line-height: 1.5;
		color: #E7E3CF;
	}

	.gnav__list p {
		color: #E7E3CF;
		font-size: min(3rem, 8vw);
		font-weight: 600;
	}

	.overlay {
		background: #4472A1;
		width: 100vw;
		height: 100vh;
		opacity: 0;
		visibility: hidden;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 98;
		content: "";
	}

	.under .gnav__list--item a,
	.under .gnav__list--item a:hover,
	.under .gnav__list--item a.active {
		color: rgb(var(--wht));
	}

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

	.is-open .gnav {
		z-index: 99;
		transform: translateX(0);
	}

	.is-open .overlay {
		opacity: 1;
		visibility: visible;
		cursor: pointer;
	}
}


/* スライド
---------------------------------------- */
.slide {
	position: relative;
}

.slide img {
	width: 100%;
	display: block;
}

/* 前・次ボタン */
.slide-arrow {
	width: 50px;
	height: 50px;
	padding: 0;
	border: none;
	background: none;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	cursor: pointer;
}

.slide-arrow img {
	width: 100%;
	display: block;
}

.slide-prev {
	left: -25px;
}

.slide-next {
	right: -25px;
}

/* ドット */
.slide .slick-dots {
	display: flex;
	gap: 8px;
	justify-content: flex-end;
	position: absolute;
	right: 0;
	bottom: -20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.slide .slick-dots li {
	width: 10px;
	height: 10px;
	margin: 0;
}

.slide .slick-dots button {
	width: 10px;
	height: 10px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: #838484;
	font-size: 0;
	cursor: pointer;
}

.slide .slick-dots .slick-active button {
	background: #000;
}

.slick-dots li button:before {
	display: none;
}

@media screen and (max-width: 768px) {
	.slide-arrow {
		width: 20px;
	}
	.slide-prev {
		left: -5px;
	}
	.slide-next {
		right: -5px;
	}
	.slide .slick-dots {
		gap: 6px;
		right: 10px;
		bottom: -14px;
	}
	.slide .slick-dots li {
		width: 7px;
		height: 7px;
		margin: 0;
	}
	.slide .slick-dots button {
		width: 7px;
		height: 7px;
	}

}

/* アコーディオン
---------------------------------------- */
.accordion_one {
	margin: 0 auto;
}

.accordion_one .accordion_header {
	background-color: #C7373B;
	color: #E7E3CF;
	font-size: min(2rem, 1.464vw);
	font-weight: 600;
	padding: 10px 11%;
	text-align: center;
	position: relative;
	z-index: +1;
	cursor: pointer;
	transition-duration: 0.2s;
	margin-top: 30px;
	position: relative;
}
.accordion_one .accordion_header::after {
	content: '';
	background: url(../img/arrow-accordion.svg) no-repeat;
	background-size: 100%;
	display: block;
	width: 35px;
	height: 25px;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translate(-50%, -50%);
	transition: transform 0.3s ease;
}
.accordion_one .accordion_header:hover {
	opacity: .8;
}
.accordion_one .accordion_header.open::after {
	transform: translate(-50%, -50%) rotate(180deg);
}

.accordion_one .accordion_inner {
	display: none;
	padding: 30px 8% 40px;
	background: #FFDADB;
	box-sizing: border-box;
}

.accordion_one .accordion_inner.typeB {
	padding: 30px 5% 40px;
}

.accordion_one .accordion_inner.typeC {
	padding: 30px 3% 40px;
}

.accordion_one .accordion_inner .txt_a_ac ul {
	display: flex;
	align-items: baseline;
	margin-bottom: 5px;
}

.accordion_one .accordion_inner .txt_a_ac ul li {
	font-size: min(2rem, 1.464vw);
	line-height: 35px;
}
.accordion_one .accordion_inner .txt_a_ac ul li:first-child {
	width: 110px;
	color: #C7373B;
	font-weight: 600;
}
.accordion_one .accordion_inner .txt_a_ac ul li:last-child {
	font-weight: 400;
}

.accordion_one .accordion_inner .txt_a_ac ul li span,
.accordion_one .accordion_inner .txt_a_ac .txt span {
	color: #C7373B;
}

.accordion_one .accordion_inner .txt_a_ac .txt {
	text-align: center;
	font-size: min(2rem, 1.464vw);
	font-weight: 400;
	line-height: 35px;
}

.contents .course.typeB .accordion_one {
	max-width: 800px;
	margin-top: 59px;
}

.contents .course.typeB .accordion_one .accordion_inner {
	background: #fff;
}

@media screen and (max-width: 767px) {
	.accordion_one {
		width: 90%;
		margin-top: 40px;
	}
	.accordion_one .accordion_header {
		font-size: min(2rem, 5.333vw);
		padding: 10px 0;
		margin-top: 0;
	}
	.accordion_one .accordion_header::after {
		width: 20px;
		height: 15px;
		top: 50%;
		right: 0;
	}
	.accordion_one .accordion_inner {
		padding: 23px 25px 25px;
	}
	.accordion_one .accordion_inner.typeB {
		padding: 23px 25px 25px;
	}
	.accordion_one .accordion_inner.typeC {
		padding: 23px 20px 25px;
	}
	.accordion_one .accordion_inner .txt_a_ac ul {
		display: flex;
		align-items: baseline;
		margin-bottom: 5px;
	}
	.accordion_one .accordion_inner .txt_a_ac ul li {
		font-size: min(1.5rem, 4vw);
		line-height: 20px;
	}
	.accordion_one .accordion_inner .txt_a_ac ul li:first-child {
		width: 27%;
		color: #C7373B;
		font-weight: 600;
	}
	.accordion_one .accordion_inner .txt_a_ac ul li:last-child {
		width: 73%;
		font-weight: 400;
	}
	.accordion_one .accordion_inner .txt_a_ac .txt {
		font-size: min(1.5rem, 4vw);
		line-height: 30px;
	}
	.contents .course.typeB .accordion_one {
		width: 98%;
		margin-top: 40px;
	}
}

/* ----------------------------------------------------
	pagetop
---------------------------------------------------- */
#pageTop a {
	background: rgba(var(--mainColor), 0.8);
	width: 64px;
	height: 64px;
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	right: 0.5em;
	bottom: 0.5em;
	z-index: 10;
	transform: rotate(-180deg);
}

#pageTop a svg {
	width: 20px;
	height: auto;
}

/* ----------------------------------------------------
fadeIn
---------------------------------------------------- */
/*
透明度が変化
------------------------------ */
.fadeBlock {
opacity: 0;
transition: all 1.5s;
}

.fadeBlock.fadeIn {
opacity: 1;
}

.title_fadeIn {
animation-name: fadeInAnime;
animation-duration: 3s;
animation-fill-mode: forwards;
opacity: 0;
}
@keyframes fadeInAnime{
from {
	opacity: 0;
}

to {
	opacity: 1;
}
}


/*
下から
------------------------------ */
.fadeBottom {
transform: translateY(100px);
}

.fadeBottom.fadeIn {
transform: translateY(0);
}

/*
上から
------------------------------ */
.fadeTop {
transform: translateY(-100px);
}

.fadeTop.fadeIn {
transform: translateY(0);
}


/*
右から
------------------------------ */
.fadeRight {
transform: translateX(100px);
}

.fadeRight.fadeIn {
transform: translateX(0);
}

/*
左から
------------------------------ */
.fadeLeft {
transform: translateX(-100px);
}

.fadeLeft.fadeIn {
transform: translateX(0);
}

/* ----------------------------------------------------
object
---------------------------------------------------- */
.object {
animation: korokoro 2.5s linear 0s infinite;
}

@keyframes korokoro {
10% {
	-webkit-transform: rotate(-10deg);
}

20% {
	-webkit-transform: rotate(8deg);
}

30% {
	-webkit-transform: rotate(-5deg);
}

40% {
	-webkit-transform: rotate(4deg);
}

50% {
	-webkit-transform: rotate(-3deg);
}

60% {
	-webkit-transform: rotate(2deg);
}

70% {
	-webkit-transform: rotate(-1deg);
}

80% {
	-webkit-transform: rotate(1deg);
}

90% {
	-webkit-transform: rotate(-1deg);
}

100% {
	-webkit-transform: rotate(0deg);
}
}