@charset "utf-8";
@import url("reset.css");
@import url("util.css");

html {
	font-size: 62.5%;
}

body {
	background: #fefefe;
	/*フォント*/
	font-family: "メイリオ", "Meiryo", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
	font-size: 1.6rem;
	color: #221815;
}

a {
	color: #221815;
	text-decoration: none;
}

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

li {
	list-style: none;
}

img {
	vertical-align: bottom;
}

.relative {
	position: relative;
}

.spb {
	display: none;
}

.fwb {
	font-weight: bold;
}

#container {
	position: relative;
	min-height: 100vh;
}

/* ヘッダーここから */

#header {
	padding-top: 30px;
}

.ttl1 {
	margin-bottom: 30px;
	font-size: 3.2rem;
	font-weight: bold;
	text-align: center;
}

.gnav {
	position: relative;
	/* margin-bottom: 35px; */
	border-bottom: 2px solid #e5e5e5;
}

.gnavul {
	display: flex;
	/*justify-content: space-between;*/
	justify-content: center;
	max-width: 1200px;
	margin: 0 auto;
}

.gnavul > li {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
	padding: 4px 0 33px;
	margin-bottom: -2px;
	/* ↓アイテムが増えたら削除↓ */
	max-width: 160px;
}

.gnavul > li:hover {
	cursor: pointer;
}

.gnavul > li:first-child::before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 1px;
	height: calc( 100% - 24px );
	background-color: #e5e5e5;
	border-right: 1px solid #e5e5e5;
}

.gnavul > li::after {
	content: "";
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	width: 1px;
	height: calc( 100% - 24px );
	background-color: #e5e5e5;
	border-right: 1px solid #e5e5e5;
}

.gnavul > li.select {
	background: linear-gradient(to top, #e5e5e5 , #e5e5e5 2px, #fff 2px, #fff 18px, #ffe4d4);

}

/* hover */

.gnavul > li:hover > .tabmini {
	display: block;
}

.tabmini {
	display: none;
	position: absolute;
	bottom: 2px;
	left: 50%;
	width: 300px;
	background-color: #f6f6f6;
	border: 2px solid #e5e5e5;
	transform: translate(-50%, 100%);
	z-index: 100;
}

.tabmini::before {
	content: "";
	display: block;
	position: absolute;
	top: -23px;
	left: 50%;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 9px 0 9px;
	border-color: #dcae7e transparent transparent transparent;
	transform: translateX(-50%);
}

.tabmini > li {
	padding: 12px 16px;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.4;
}

.tabmini > li:not(:last-child) {
	border-bottom: 2px solid #e5e5e5;
}

/* hover */

.tabmini > li:hover {
	color: #dcae7e;
}

.course {
	width: 100%;
	background-color: #fefefe;
}

.course.fixed {
	position: fixed;
	top: 0;
	border-bottom: 2px solid #e5e5e5;
	z-index: 100;
}

.coursettl1 {
	position: relative;
	padding-left: 16px;
	margin-bottom: 10px;
	font-size: 2rem;
	font-weight: bold;
}

.coursettl1::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: .4em;
	height: .4em;
	border-radius: .4em;
	background-color: #dcae7e;
	transform: translateY(-50%);
}

.courseul {
	max-width: 1200px;
	margin: 0 auto;
	padding: 35px 0 30px;
	transition: padding .3s;
}

.course.fixed .courseul {
	padding: 20px 0 15px;
}

.courseul > li {
	display: none;
}

.courseul > li.selectcourse {
	display: block;
}

.courseminiul {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	/* margin-bottom: 30px; */
}

.courseminiul li {
	display: flex;
	width: 11%;
	padding: 0px 5px;
	border-right: 2px solid #e5e5e5;
	justify-content: center;
	align-items: center;
	font-size: 1.6rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
	margin-bottom: 15px;
}

.courseminiul li:last-child {
	border-right: none;
}

.courseminiul li span {
	text-decoration: underline;
}

.courseminiul li:hover {
	color: #dcae7e;
	cursor: pointer;
}

.courseminiul li:hover span {
	text-decoration: none;
}

.courseminiul li.selectcoursemini {
	color: #dcae7e;
}

.courseminiul li.selectcoursemini span {
	text-decoration: none;
}

/* ヘッダーここまで */

/* コンテンツここから */

#main {
	padding-bottom: 60px;
	min-height: 930px;
}

#mainIn {
	margin: 0 auto;
	margin-bottom: 60px;
}

.content {
	max-width: 1200px;
	margin: 0 auto;
}

.contentmini {
	display: none;
	margin-bottom: 60px;
	border: 2px solid #dcae7e;
}

.contentmini.selectcont {
	display: block;
}

.innerttl11 {
	padding: 16px 20px;
	background-color: #dcae7e;
	background-repeat: no-repeat;
	background-position: 20px center;
	color: #ffffff;
	font-size: 2.2rem;
	font-weight: bold;
}

.innerttl21 {
	padding: 16px 20px;
	background-color: #cc0000;
	background-repeat: no-repeat;
	background-position: 20px center;
	color: #ffffff;
	font-size: 2.2rem;
	font-weight: bold;
}

.innerul {
	display: flex;
	flex-wrap: wrap;
	padding: 0 46px;
}

.innerul:first-child {
	padding-top: 60px;
}

.innerul > li {
	width: calc( ( 100% - 90px ) / 4 );
	margin-right: 30px;
	margin-bottom: 60px;
}

.innerul > li:nth-child(4n) {
	margin-right: 0px;
}

.kigen {
	margin-bottom: 10px;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
}

.kigen div:nth-child(2) {
	display: inline-block;
	position: relative;
	writing-mode: vertical-rl;
}

.inimg {
	display: flex;
	margin-bottom: 30px;
}

.inimg a {
	display: flex;
	align-items: center;
}

.inimg img {
	width: 100%;
	border: 1px solid #e5e5e5;
}

.intxt {
	margin-bottom: 20px;
}

.intxt01 {
	margin-bottom: 8px;
	font-weight: bold;
	text-align: center;
}

.intxt02 {
	margin-bottom: 20px;
	text-align: center;
	line-height: 1.5;
}

/* 注意書き */
.intxt02 span {
	color: #f00;
	font-weight: bold;
}

.innerttl {
	text-align: center;
	font-size: 2.4rem;
	font-weight: bold;
}

.btn_area {
	text-align: center;
}

.button {
	display: inline-block;
	text-align: center;
	text-decoration: none;
	outline: none;
	padding: 10px 25px;
	position: relative;
	z-index: 2;
	background-color: #333;
	border: 2px solid #333;
	color: #fff;	
}
.button::before,
.button::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
	left: 0;
	width: 100%;
	height: 50%;
	background-color: #333;	
}
.button,
.button::before,
.button::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.button:hover {
	background-color: #fff;
	border-color: #dcae7e;
	color: #dcae7e;
}
.button::before {
	top: 0;
}
.button::after {
	bottom: 0;
}
.button:hover::before,
.button:hover::after {
	height: 0;
	background-color: #dcae7e;
}




.tooltip {
	position: relative;
	display: inline-block;
	width: 100%;
}

.tooltip span {
	margin:0;
	padding:0;
}

.descri {
	display: none;
	position: absolute;
	width: 370px;
	padding: 14px;
	font-size: 1.2rem;
	color: #221815;
	font-weight: normal; 
	border: solid 1px #e5e5e5;
	border-radius: 5px;
	background: #ffffff;
	text-align: left;
	z-index: 99999;
}

.descri:before {
	content: "";
	position: absolute;
	top: -30px;
	left: 20px;
	border: 15px solid transparent;
	border-top: 15px solid #e5e5e5;
	transform: rotateZ(180deg);
}

.descri:after {
	content: "";
	position: absolute;
	top: -29px;
	left: 20px;
	border: 15px solid transparent;
	border-top: 15px solid #ffffff;
	transform: rotateZ(180deg);
}

.tooltip:hover .descri {
	display: inline-block;
	top: 60px;
	left: 0px;
}



.descri .num {
	margin-bottom: 14px;
}

.descri .num:last-child {
	margin-bottom: 0px;

}

.descri .numttl {
	padding-left: 5px;
	border-bottom: 1px solid #e5e5e5;
	font-weight: 600;
}

.descri .numdtl {
	margin-top: 5px;
	padding-left: 10px;
}




/* コンテンツここまで */


/* Copyrightここから */
#copy {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 50px;
	background: #dcae7e;
}

#copyIn {
	max-width: 1200px;
	margin: 0 auto;
	font-size: 1.2rem;
	line-height: 50px;
	text-align: center;
}
/* Copyrightここまで */


@media screen and (max-width: 1169px) {
}

@media screen and (max-width: 767px) {
}

