@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;
	--notosanJP: "Noto Sans JP", sans-serif;
	--shipporimincho: "Shippori Mincho", serif;
	--cormorantgaramond: "Cormorant Garamond", 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) {
	margin-bottom: 1em;
	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: rgb(var(--wht));
	line-height: 1.5;
	color: #000;
	font-family: var(--shipporimincho);
	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;
}

.rel {
	position: relative;
}

.note {
	font-family: var(--notosanJP);
	font-size: min(1.1rem, 0.805vw);
}
.note::before {
	content: '※';
}

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


/* バーガーメニュー
---------------------------------------- */



/* アコーディオン
---------------------------------------- */
.accordion-btn {
	background: #333131;
	display: flex;
	width: 246px;
	height: 60px;
	padding: 10px 10px 10px 30px;
	align-items: center;
	gap: 42px;
	color: #fff;
	font-family: var(--shipporimincho);
	font-size: min(1.6rem, 1.171vw);
	font-weight: 700;
	position: relative;
	border: none;
	cursor: pointer;
}

/* 閉じている時：＋ */
.accordion-btn::after {
	content: "＋";
	font-size: 2rem;
	font-weight: 400;
	margin-left: 22px;
}

.accordion-btn.typeB::after {
	margin-left: 37px;
}

/* 開いている時：− */
.accordion-btn.is-open::after {
	content: "−";
}

.accordion-content {
	height: 0;
	overflow: hidden;
	max-width: 1098px;
	margin: 50px auto 0;
	transition: height .45s ease;
}

.accordion-content__inner {
	border: 1px solid #333131;
	background: #EDEBEB;
	padding: 30px 43px;
}

.benefit-list {
	counter-reset: number;
}

.benefit-list__item {
	counter-increment: number;
	position: relative;
	padding-left: 30px;
	font-size: min(1.6rem, 1.171vw);
	font-weight: 600;
	line-height: 26px;
}

.benefit-list__item::before {
	content: counter(number, decimal-leading-zero) ".";
	color: #B19552;
	position: absolute;
	left: 0;
	top: 0;
}

.benefit-list__item .benefit-label {
	color: #B19552;
}

.benefit-list__item .benefit-list__mark {
	color: #B9B9B9;
}

.course-menu {
	font-size: min(1.6rem, 1.171vw);
	font-weight: 600;
	line-height: 26px;
}

.course-menu__item::before,
.course-menu-grid__item::before {
	content: '●';
	color: #B19552;
}

.course-menu-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 0;
	max-width: 730px;
}

.course-menu-grid__item {
	position: relative;
	font-size: min(1.6rem, 1.171vw);
	font-weight: 600;
	line-height: 26px;
	text-indent: -1em;
	margin-left: 1em;
}

.accordion-note {
	font-size: min(1.6rem, 1.171vw);
	font-weight: 600;
	line-height: 27px;
	margin-top: 15px;
}

.accordion-note::before {
	content: '※';
}

.accordion-note a {
	color: #B19552;
	text-decoration: underline;
}

@media screen and (max-width: 767px) {
	.accordion-btn {
		font-size: min(1.6rem, 4.267vw);
		margin: 0 auto;
	}
	.accordion-content__inner {
		padding: 15px;
		margin: 0 20px;
	}
	.benefit-list__item {
		padding-left: 25px;
		font-size: min(1.3rem, 3.467vw);
	}
	.accordion-note {
		font-size: min(1.2rem, 3.2vw);
		line-height: 20px;
		text-indent: -1em;
		margin-left: 1em;
	}
	.course-menu {
		font-size: min(1.3rem, 3.467vw);
	}
	.course-menu-grid {
		display: block;
	}
	.course-menu-grid__item {
		font-size: min(1.3rem, 3.467vw);
		line-height: 26px;
		text-indent: -1em;
		margin-left: 1em;
	}

}


/* ----------------------------------------------------
	pagetop
---------------------------------------------------- */
#pageTop a {
	background: rgba(230, 168, 167, 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);
}
}