@charset "UTF-8";

/* * * * * * * * * * * * * * * * * *
 top.css
* * * * * * * * * * * * * * * * * */


h1 {
	width: 100%;
}

h2 {
	font-size: 21px;
	font-weight: bold;
}

#top {
	background-color: #1E2B70;
	font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
}

#mv_area .catch {
	color: #FFF;
	padding: 10px;
	font-weight: 400;
	font-size: 14px;
}

@media screen and (max-width:768px) {
	#mv_area .catch {
		font-size: 12px;
	}
}

#mv_area h1 img {
	width: 100%;
	height: auto;
}

#main {
	width: 100%;
	display: flex;
	justify-content: center;
	background-image: url(../img/top/bg.jpg);
	background-size: contain;
}

@media screen and (max-width:768px) {
	#main {
		background-image: url(../img/top/bg_sp.jpg);
	}
}

#main .main-inner {
	width: 100%;
	max-width: 1200px;
	margin-top: -140px;
	margin-right: 5%;
	margin-left: 5%;
	margin-bottom: 120px;
	background-color: #fff;
	position: relative;
	z-index: 50;
	border-radius: 20px;
	padding: 40px 60px;
	flex-basis: 100%;
}

@media screen and (max-width:768px) {
	#main .main-inner {
		width: 74%;
		margin-top: -80px;
		padding: 20px;
		margin-bottom: 80px;
	}
}

#main .inner-flex {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 100px;
}

#main .inner-flex:last-child {
	margin-bottom: 40px;
}

@media screen and (max-width:1000px) {
	#main .inner-flex {
		display: contents;
	}
}


/**リード文**/
#main .read-text {
	font-size: 1.8vw;
	line-height: 2.4;
	color: #1E2B70;
	font-weight: 500;
	flex-basis: 50%;
	margin-left: 32px;
}

@media screen and (max-width: 1000px) {
	#main .read-text {
		margin-left: 0;
	}
}

@media screen and (max-width:768px) {
	#main .read-text {
		font-size: 16px;
		line-height: 2.4;
		margin-top: 32px;
	}
}

/* 最大文字サイズを設定 (例: 画面幅が1200px以上になったら24pxを上限とする) */
@media screen and (min-width: 1200px) {
	.read-text {
		font-size: 24px !important;
		/* 最大文字サイズ */
	}
}

/* 最小文字サイズを設定 (例: 画面幅が600px以下になったら16pxを下限とする) */
@media screen and (max-width: 900px) {
	.read-text {
		font-size: 16px !important;
		/* 最小文字サイズ */
	}
}

/**プレゼント応募**/

#main .present-area {
	flex-basis: 50%;
	text-align: center;
}

#main .present-area .h2-img {
	width: 100%;
	height: auto;
	max-width: 500px;
	margin-top: -80px;
}

@media screen and (max-width: 1000px) {
	#main .present-area .h2-img {
		margin-top: 60px;
	}
}

#main .present-area .quo {
	display: flex;
	margin-bottom: 24px;
}

@media screen and (max-width: 600px) {
	#main .present-area .quo {
		display: block;
		margin-bottom: 60px;
	}
}

#main .present-area .quo img {
	/* max-width: 200px; */
	width: 12vw;
	height: fit-content;
}

@media screen and (max-width: 1000px) {
	#main .present-area .quo img {
		max-width: 250px;
		width: 100%;
		height: auto;
	}
}

#main .present-area .quo .quo-text {
	font-weight: 500;
	text-align: left;
}

#main .present-area .quo .quo-text h3 {
	font-size: 18px;
	font-weight: 700;
	color: #E95A45;
	margin-bottom: 16px;
}

#main .present-area .quo .quo-text p {
	font-size: 16px;
	line-height: 1.8;
}

/**ボタン**/

/* 最大文字サイズを設定 (例: 画面幅が1200px以上になったら24pxを上限とする) */
@media screen and (min-width: 1200px) {
	#main .btn-area a {
		font-size: 24px !important;
		/* 最大文字サイズ */
	}
}

/* 最小文字サイズを設定 (例: 画面幅が600px以下になったら16pxを下限とする) */
@media screen and (max-width: 900px) {
	#main .btn-area a {
		font-size: 18px !important;
		/* 最小文字サイズ */
	}
}

#main .btn-area {
	text-align: center;
}

#main .btn-area a {
	text-decoration: none;
	background-color: #1E2B70;
	padding: 16px 40px;
	color: #fff;
	font-size: 1.8vw;
	font-weight: 600;
	display: block;
	margin: 0 32px;
	position: relative;
	border-radius: 8px;
	transition: all 0.4s ease;
}

#main .closed a{
	background-color: #ccc !important;
	color: #1e1e1e !important;
}

@media screen and (max-width: 768px) {
	#main .btn-area a {
		margin: 0;
		padding: 16px;
		text-align: left;
	}
}

#main .btn-area a:hover {
	background-color: #E95A45;
}

#main .btn-area a::after {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	background-image: url(../img/top/Icon-arrow.png);
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	right: 24px;
	top: 0;
	bottom: 0;
	margin: auto 0;
}

#main .btn-area a span {
	padding: 4px 8px;
	font-size: 16px;
	color: #333;
	background-color: #FEDC00;
	position: absolute;
	top: -20px;
	left: 20px;
	border-radius: 8px;
}

#main .btn-area .note {
	font-size: 16px;
	font-weight: 500;
	margin-top: 8px;
}


/*目次*/
#main .contents {
	padding: 46px;
	background-color: #F5F5F5;
	flex-basis: 45%;
}

#main .contents h2 {
	margin-top: -64px;
}

#main .contents h2 img {
	max-width: 250px;
}

#main .contents ul {
	margin-top: 50px;
}

#main .contents ul li {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 20px;
	color: #1E2B70;
}

#main .contents ul li .name {
	margin-left: 16px;
	margin-top: 8px;
	font-size: 14px;
	font-weight: 500;
	color: #333;
}

@media screen and (max-width: 1000px) {
	#main .contents {
		margin-top: 80px;

	}
}

@media screen and (max-width: 768px) {
	#main .contents {
		padding: 24px;
	}

	#main .contents h2 {
		margin-top: -40px;
	}

	#main .contents h2 img {
		max-width: 160px;
	}

	#main .contents ul {
		margin-top: 40px;
	}

	#main .contents ul li {
		font-size: 16px;
	}

	#main .contents ul li .name {
		font-size: 14px;
	}
}



/**電子書籍**/

/* 最大文字サイズを設定 (例: 画面幅が1200px以上になったら24pxを上限とする) */
@media screen and (min-width: 1200px) {
	#main .e-book h3 {
		font-size: 32px !important;
		/* 最大文字サイズ */
	}
}

/* 最小文字サイズを設定 (例: 画面幅が600px以下になったら16pxを下限とする) */
@media screen and (max-width: 1000px) {
	#main .e-book h3 {
		font-size: 24px !important;
		/* 最小文字サイズ */
	}
}


#main .e-book {
	text-align: center;
	flex-basis: 55%;
	margin-left: 20px;
}

#main .e-book h3 {
	font-size: 2.2vw;
	font-weight: 700;
	color: #1E2B70;
	line-height: 1.2;
}

#main .e-book h3 span {
	position: relative;
}

#main .e-book h3 span::before {
	content: "";
	display: block;
	width: 4px;
	height: 54px;
	background-color: #1E2B70;
	position: absolute;
	left: -30px;
	top: -10px;
	transform: rotate(-30deg);
	border-radius: 4px;
}

#main .e-book h3 span::after {
	content: "";
	display: block;
	width: 4px;
	height: 54px;
	background-color: #1E2B70;
	position: absolute;
	right: -30px;
	top: -10px;
	transform: rotate(30deg);
	border-radius: 4px;
}

#main .e-book img {
	max-width: 250px;
	width: 100%;
	box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.2);
	margin: 20px 0;
}

@media screen and (max-width:1000px) {
	#main .e-book {
		margin-left: 0;
		margin-top: 50px;
		margin-bottom: 32px;
	}
}

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

	#main .e-book h3 span::before {
		top: 4px;
		left: -64px;
	}

	#main .e-book h3 span::after {
		top: 4px;
	}

}


/**PCのみ**/
.pc-only {
	display: block;
}

@media screen and (max-width:1000px) {
	.pc-only {
		display: none;
	}
}

/**スマホのみ**/
.sp-only {
	display: none;
}

@media screen and (max-width:769px) {
	.sp-only {
		display: block;
	}
}


#topcontrol {
	z-index: 100;
}
