@charset "UTF-8";

/* for Win */
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;700;800&display=swap');

html {
	font-family: 'ヒラギノ丸ゴ ProN','Hiragino Maru Gothic ProN','M PLUS Rounded 1c', sans-serif;
	font-weight: 600;
	background-color: #ffe113;
	color: #333333;
	font-size: 22px;
}

a {
	color: #fff;
	transition: 0.3s;
}

img {
	width: 100%;
	height: auto;
}

@media all and (max-width: 799px) {
	html {
		font-size: calc(100vw / 75);
	}
	body{
		font-size: 3rem;
	}
}


/*
// parts
//////////////////////////////////////////////////////////////////////*/

.columns {
	display: flex;
	flex-wrap: nowrap;
}

.link a {
	display: flex;
	align-items: center;
	background-color: #946bbe;
}

.link a * {
	flex-shrink: 0;
}
.link a .text {
	text-align: center;
	flex-grow: 1;
}


.link a .arrow img {
	position: relative;
	left: 0;
	transition: 0.3s;
}

.link a .arrow.is-rotate img {
	transform: rotate(180deg);
	top: -5px;
}

.link a:hover .arrow img {
	left: 5px;
}

.button {
	filter: drop-shadow(7px 7px 7px rgba(0, 0, 0, 0.1));
	transition: 0.3s;
}

.button:hover {
	filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.4));
}

.note {
	line-height: 1.5;
	font-weight: 400;
}

.mark {
	color: #ef5ba0;
}

@media all and (max-width: 799px) {
	.forPC {
		display: none !important;
	}

	.columns {
		flex-direction: column;
	}

	.col__item {
		width: 100%;
	}

	.section+.section {
		margin-top: 10rem;
	}

	.link {
		width: 100%;
		margin: 5rem auto 0 auto;
	}
	.link a {
		width: 52rem;
		min-height: 11rem;
		border-radius: 1rem;
		padding: 0 3rem;
		margin-left: auto;
		margin-right: auto;
	}
	.link a .icon img {
		width: 3.6rem;
	}
	.link a .text{
		font-size: 2.6rem;
		line-height: 1.5;
	}
	.link a .arrow {
		width: 2.1rem;
	}
	.note {
		font-size: 2.3rem;
		margin-top: 1.5rem;
	}
}

@media all and (min-width: 800px) {
	.forSP {
		display: none !important;
	}

	.section+.section {
		margin-top: 100px;
	}

	.link {
		width: 430px;
		margin: 50px auto 0 auto;
	}
	.link a {
		min-height: 90px;
		border-radius: 10px;
		padding: 0 30px;
	}
	.link a .icon img {
		width: 30px;
	}
	.link a .arrow {
		width: 15px;
	}
	.note {
		font-size: 15px;
		margin-top: 15px;
	}
}

/*
// .sectionHeading
//////////////////////////////////////////////////////////////////////*/
.sectionHeading .heading {
	width: 660px;
	margin: 0 auto 40px auto;
}

@media all and (max-width: 799px) {
	.sectionHeading .heading {
		width: calc(100% + 3rem);
		margin: 0 -1.5rem 3rem -1.5rem;
	}
}

/*
// header
//////////////////////////////////////////////////////////////////////*/
.wrap {
	width: 1100px;
	margin: auto;
}

@media all and (max-width: 799px) {
	.wrap {
		width: 100%;
		padding: 0 3.5rem;
	}
}


/*
// header
//////////////////////////////////////////////////////////////////////*/
header .logo {
	position: fixed;
	top: 60px;
	left: 60px;
	width: 220px;
	z-index: 100;
}

header .hero {
	position: fixed;
}

header .bg {
	background-image: url('/assets/images/header_bg01.jpg');
	background-size: cover;
	position: relative;
	border-radius: 20px;
}

header .bg img {
	display: block;
}

header .btn-shopping {
	position: fixed;
	z-index: 50;
}

header .btn-hbg {
	position: fixed;
	z-index: 250;
}

header .btn-hbg .icon.on {
	display: none;
}

header .btn-hbg.is-open .icon.on {
	display: block;
}

header .btn-hbg.is-open .icon.off {
	display: none;
}

header .hbg-content {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 200;
	background-color: #ffe113;
}

header .hbg-content .inner {
	border-radius: 20px;
	width: 100%;
	background-color: #fff;
}

header .hbg-content .inner .wrap {
	position: relative;
	width: auto;
	max-width: 1100px;
}

header .hbg-content .inner .wrap .columns {
	max-width: 940px;
	margin-inline: auto;
	justify-content: space-between;
	align-items: center;
}

header .hbg-content .inner .wrap .link {
	margin: 0 auto;
}

header .hbg-content .inner .wrap .link a {
	border: 5px solid #ef5ba0;
	color: #333;
	background-color: #fff;
}
header .hbg-content .inner .wrap .link:nth-child(2) a {
	border-color: #946bbe;
}
header .hbg-content .inner .wrap .menu ul {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 10px;
}
header .hbg-content .inner .wrap .menu ul li {
	font-weight: 600;
}
header .hbg-content .inner .wrap .menu ul li a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 80px;
	color: #4d4d4d;
	font-size: 16px;
	border-radius: 10px;
	border: 5px solid #20c688;
	background: #fff;
	filter: drop-shadow(7px 7px 7px rgba(0, 0, 0, 0.1));
	transition: 0.3s;
}
header .hbg-content .inner .wrap .menu ul li a:hover {
}
header .hbg-content .inner .wrap .menu ul li a em {
	color: #20c688;
	font-size: 18px;
	font-style: normal;
}




@media all and (max-width: 799px) {
	header .logo {
		top: 2rem;
		left: 3.5rem;
		width: 23rem;
		z-index: 250;
	}

	header .bg {
		margin: 15rem 3.5rem;
		width: calc(100% - 7rem);
		padding: 1.5rem;
		margin-bottom: 20px;
	}

	header .bg img {
		width: 100%;
	}

	header .btn-shopping,
	header .btn-hbg {
		height: 10rem;
		width: 10rem;
	}

	header .btn-shopping {
		top: 2.5rem;
		right: 15rem;
	}

	header .btn-hbg {
		top: 2.5rem;
		right: 3.5rem;
	}
	header .hbg-content {
		padding: 15rem 3.5rem 7rem;
	}
	header .hbg-content .inner .wrap {
		padding: 7.5rem;
	}
	header .hbg-content .inner .wrap .link a {
		border-width: 0.5rem;
	}
	header .hbg-content .inner .wrap .link:nth-child(2) {
		margin-top: 3.5rem;
	}
	header .hbg-content .inner .wrap .menu {
		margin-top: 5rem;
	}
	header .hbg-content .inner .wrap .menu ul{
		flex-direction: column;
		margin-bottom: -7rem;
	}
	header .hbg-content .inner .wrap .menu ul li {
		margin-bottom: 1.5rem;
	}
	header .hbg-content .inner .wrap .menu ul li a {
		width: 52rem;
		min-height: 11rem;
		margin-inline: auto;
		font-size: 2.2rem;
		border-width: 0.5rem;
		border-radius: 1rem;
	}
	header .hbg-content .inner .wrap .menu ul li a em {
	font-size: 2.8rem;
}
}

@media all and (min-width: 800px) {
	header .logo {
		top: 60px;
		left: 60px;
		width: 220px;
	}

	header .bg {
		margin: 40px;
		width: calc(100% - 80px);
		height: 800px;
		min-width: 1180px;
	}

	header .bg img {
		height: 36vw;
		max-height: 700px;
		margin: -30px 0 -100px;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		margin: auto;
		width: auto;
	}

	header .btn-shopping {
		top: 60px;
		right: 180px;
	}

	header .btn-hbg {
		top: 60px;
		right: 60px;
	}
	header .hbg-content {
		padding: 40px;
	}
	header .hbg-content .inner .wrap {
		padding: 100px 15px;
	}
	header .hbg-content .inner .wrap .link {
		width: 370px;
		height: 80px;
	}
	header .hbg-content .inner .wrap .link:nth-child(2) {
		margin-top: 40px;
	}

	header .hbg-content .inner .wrap .menu {
		margin-top: 35px;
	}
	/*	header .hbg-content .inner .wrap .menu ul li {
		margin-bottom: 20px;
		font-size: 20px;
	}
	header .hbg-content .inner .wrap .menu ul li:nth-of-type(3n-2) {
		width: 35%;
		margin-right: 2em;
	}
	header .hbg-content .inner .wrap .menu ul li:nth-of-type(3n-1) {
		flex-grow: 1;
	}*/
}

/*
// nav
//////////////////////////////////////////////////////////////////////*/
/*
nav {
	margin-top: -90px;
	position: relative;
}

nav ul {
	background-color: #946bbe;
	border-radius: 50px;
	width: 100%;
	height: 100px;
	display: flex;
	justify-content: center;
	box-shadow: 0 7px 7px 0 rgba(0, 0, 0, 0.1);
}

nav ul li {
	width: 170px;
	height: 100%;
}

nav ul li a {
	display: block;
	text-align: center;
	font-size: 17px;
	font-weight: 500;
	height: 100%;
	padding-top: 12px;
}

nav ul li a img {
	width: auto;
	display: block;
	margin: 0 auto 7px;
}

nav ul li a:hover {
	color: #ffe113;
}

@media all and (max-width: 799px) {
	nav {
		display: none;
	}
}
*/

/*
// #tisArea
//////////////////////////////////////////////////////////////////////*/

#tisArea {
	margin-top: 50px;
	margin-bottom: 50px;
}

#tisArea a {
	background-color: #fff;
	display:block;
	padding: 20px 30px;
	border-radius: 10px;
	color: #20C688;
	filter: drop-shadow(7px 7px 7px rgba(0, 0, 0, 0.1));
	font-size: 30px;
	font-weight: 800;
	position: relative;
		transition: 0.3s;
}

#tisArea a::after {
	content: "";
	background-image: url("../images/icon_arrow01.png");
	background-size: cover;
	width: 15px;
	height: 25px;
	display: inline-block;
    top: 0;
    bottom: 0;
    right: 30px;
    position: absolute;
    margin: auto;
	transition: 0.3s;

}
#tisArea a.kg {
	color: #fa8d00;	
	}
#tisArea a.as {
	margin-top: 30px;
	color: #8ebe06;	
	}

#tisArea figure {
	display: flex;
	align-items: center;
}

#tisArea figure img {
	width: 147px;	
	margin-right: 30px;
}

#tisArea a:hover::after{
	right: 25px;
}


#tisArea a:hover{
	filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.4));
}

@media all and (max-width: 799px) {
	#tisArea {
		margin-bottom: 20px;
		margin-top: 0;
	}
	
	#tisArea a {
	font-size: 16px;
    padding: 20px 40px 20px 30px;
	}
	
	#tisArea a.as {
	margin-top: 20px;
	}
	
	#tisArea figure img {
    width: 100px;
    margin-right: 15px;
}
	

#tisArea a::after {
    right: 15px;
	}
	
#tisArea a:hover::after{
	right: 10px;
}	
	
}


/*
// #about
//////////////////////////////////////////////////////////////////////*/
#about {
	padding-bottom: 80px;
}
#about .sectionHeading {
	margin-bottom: 36px;
}
#about .sectionHeading .lead {
	margin-bottom: 10px;
	line-height: 2.1;
}
#about .sectionHeading .age {
	width: fit-content;
	padding: 10px 20px;
	color: #946bbe;
	font-size: 18px;
	border-radius: 30px;
	background: #fff;
}
#about .sectionContent .product {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px 70px;
}
#about .sectionContent .product .card {
	border-radius: 20px;
	background: #fff;
	filter: drop-shadow(7px 7px 7px rgba(0, 0, 0, 0.1));
}
#about .sectionContent .product .card .head {
	position: relative;
	padding: 15px 50px 15px 30px;
	color: #fff;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.4;
	border-radius: 20px 20px 0 0;
	background-color: #946bbe;
}
#about .sectionContent .product .card .head::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
	display: block;
	width: 25px;
	height: 16px;
	background: url(../images/icon_arrow02.png) no-repeat 0 0 / 100% auto;
	transform: translateY(-50%);
}
#about .sectionContent .product .card .head .ja {
	font-size: 30px;
}
#about .sectionContent .product .card .columns {
	display: flex;
	gap: 30px;
	padding: 30px;
}
#about .sectionContent .product .card .columns figure {
	width: 150px;
	flex-shrink: 0;
}
#about .sectionContent .product .card .columns p {
	color: #333;
	font-size: 18px;
	font-weight: 500;
	line-height: 2.1;
}
#about .sectionContent .product .card-w {
	grid-column: 1 / -1;
}
#about .sectionContent .product .card-w  .columns figure {
	width: 200px;
}
#about .sectionContent .product .card-w  .columns p {
	font-size: 20px;
}
#about .sectionContent .product .card-w  .columns .view a {
	color: #20c688;
	font-weight: 800;
}
#about .sectionContent .product .card-w  .columns .view a::after {
	content: "";
	display: inline-block;
	width: 15px;
	height: 25px;
	margin-left: 18px;
	vertical-align: text-bottom;
	background: url(../images/icon_arrow01.png) no-repeat 0 0 / 100% auto;
	transition: 0.3s;
}

@media all and (min-width: 800px) {

#about .sectionContent .product a.card:hover{
	filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.4));
}
#about .sectionContent .product .card-w  .columns .view a:hover::after{
	margin-left: 25px;
}

}
@media all and (max-width: 799px) {

#about {
	padding-bottom: 50px;
}
#about .sectionHeading .age {
	padding: 10px 20px;
	font-size: 14px;
}
#about .sectionContent .product {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
#about .sectionContent .product .card {
	border-radius: 10px;
}
#about .sectionContent .product .card .head::before {
	right: 15px;
	width: 20px;
	height: 12px;
}
#about .sectionContent .product .card .head {
	padding: 10px 40px 10px 20px;
	font-size: 16px;
	border-radius: 10px 10px 0 0;
}
#about .sectionContent .product .card .head .ja {
	font-size: 22px;
}
#about .sectionContent .product .card .columns {
	flex-direction: column;
	gap: 20px;
	padding: 20px;
}
#about .sectionContent .product .card .columns figure {
	margin-inline: auto;
}
#about .sectionContent .product .card .columns p {
	font-size: 16px;
	line-height: 1.8;
}
#about .sectionContent .product .card-w  .columns .view a::after {
	width: 12px;
	height: 20px;
	margin-left: 10px;
}

}

/*
// #phonicsArea / #readingArea
//////////////////////////////////////////////////////////////////////*/
#phonicsArea {
	padding-block: 80px;
	background-color: #ffca13;
}
#readingArea {
	padding-block: 80px;
}
.categoryTitle {
	position: relative;
	max-width: 1070px;
	margin: 0 auto 80px;
	border-radius: 20px;
	background: #fff;
}
.categoryTitle .head {
	position: relative;
	padding: 10px 30px 20px;
	color: #fff;
	font-weight: 800;
	line-height: 1.4;
	text-align: center;
	border-radius: 20px 20px 0 0;
	background-color: #946bbe;
}
.categoryTitle .head .ja {
	font-size: 50px;
	font-weight: 800;
}
.categoryTitle .head .en {
	width: fit-content;
	margin-inline: auto;
	padding: 5px 50px;
	font-size: 30px;
	font-weight: 800;
	border-radius: 50px;
	background: #8057ab;
}
.categoryTitle .columns {
	padding: 40px 40px 40px min(32%, 350px);
}
.categoryTitle .columns p {
	position: relative;
	z-index: 2;
	font-size: 30px;
	line-height: 2;
}
.categoryTitle .columns figure {
	position: absolute;
	left: 0;
	bottom: 10px;
	width: min(30%, 310px);
}
#readingArea .categoryTitle .columns figure {
	width: min(34%, 360px);
	bottom: 80px;
}
@media all and (max-width: 799px) {

#phonicsArea,
#readingArea {
	padding-block: 50px;
}
.categoryTitle {
	margin-bottom: 50px;
	border-radius: 10px;
}
.categoryTitle .head {
	padding: 10px 20px 20px;
	border-radius: 10px 10px 0 0;
}
.categoryTitle .head .ja {
	font-size: 24px;
}
.categoryTitle .head .en {
	padding: 5px 20px;
	font-size: 16px;
}
.categoryTitle .columns {
	padding: 20px;
}
.categoryTitle .columns p {
	font-size: 16px;
	line-height: 1.8;
}
.categoryTitle .columns figure {
	position: relative;
	left: auto;
	bottom: auto;
	width: 70%;
	margin: 0 auto 20px;
}
#readingArea .categoryTitle .columns figure {
	width: 70%;
	bottom: auto;
	margin: 0 auto 20px;
}

}

/*
// #howtouse
//////////////////////////////////////////////////////////////////////*/

#howtouse .columns .col__item:first-child {
	z-index: 1;
}

#howtouse .columns .col__item:last-of-type {
	flex-grow: 1;
}

#howtouse .columns .col__item .youtube {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	width: 100%;
	box-shadow: 0 7px 7px 0 rgba(0, 0, 0, 0.1);
}

#howtouse .columns .col__item .youtube iframe {
	width: 100%;
	height: 100%;
	position: absolute;
}

@media all and (max-width: 799px) {
	#howtouse .columns .col__item .youtube {
		border-radius: 2rem;
		border: 2rem solid #fff;
	}
}

@media all and (min-width: 800px) {
	#howtouse {
		margin-top: 80px;
	}

	#howtouse .columns .col__item:first-child {
		width: 428px;
		margin-right: -20px;
	}

	#howtouse .columns .col__item .youtube {
		border-radius: 20px;
		border: 20px solid #fff;
	}
}


/*
// #feature
//////////////////////////////////////////////////////////////////////*/
#feature .point {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#feature .book {
	margin-top: -30px;
}

#feature .book img {
	display: block;
}


@media all and (max-width: 799px) {
	#feature .sectionHeading,
	#feature .sectionContent{
		padding: 0 3.5rem;
	}
	#feature .sectionHeading .heading{
		width: 100%;
		margin: 0 0 3rem 0;
	}
	#feature .sectionHeading .lead {
		margin-bottom: 5rem;
		line-height: 2;
	}
	#feature .point {
		flex-direction: column;
		margin-bottom: 3rem
	}
	#feature .point img {
		width: 100%;
		margin-bottom: 5rem;
	}
	#feature .book,
	#feature .table{
		width: calc(100% + 7rem);
		margin: 0 -3.5rem;
	}
	#feature .table {
		margin-top: 6rem;
	}
}

@media all and (min-width: 800px) {
	#feature .sectionHeading .lead {
		margin-bottom: 50px;
		text-align: center;
	}
	#feature .point {
		padding: 10px 16px 0 16px;
	}
	#feature .point img {
		width: 500px;
		margin-bottom: 50px;
	}
	#feature .book img {
		width: 832px;
	}
	#feature .book img:nth-child(1) {
		margin-left: 80px;
	}
	#feature .book img:nth-child(2) {
		margin-left: auto;
		margin-right: 80px;
	}
	#feature .table {
		margin-top: 60px;
		padding: 0 15px;
	}
}




/*
// #funvideo
//////////////////////////////////////////////////////////////////////*/
#funvideo .col__item.main {
	flex-grow: 1;
}
@media all and (max-width: 799px) {
	#funvideo .sectionHeading,
	#funvideo .sectionContent{
		padding: 0 3.5rem;
	}
	#funvideo .col__item p {
		line-height: 2;
	}
	#funvideo .col__item p br{
		display: none;
	}
	#funvideo .col__item .images{
		width: calc(100% + 7rem);
		margin: 3.5rem -3.5rem;
	}
}

@media all and (min-width: 800px) {
	#funvideo .columns {
		margin-top: -60px;
		align-items: flex-end;
	}
	#funvideo .col__item p {
		text-align: center;
		line-height: 46px;
	}

}



/*
// #what
//////////////////////////////////////////////////////////////////////*/

#what .box {
	display: none;
	background-color: #fff;
	border-radius: 10px;
}
#what .box h3 img {
	width: auto;
}
#what .box .block03 .desc p span {
	background-color: rgba(255, 213, 37, 0.5);
}

@media all and (max-width: 799px) {
	#what  .sectionHeading,
	#what  .sectionContent{
		padding: 0 3.5rem;
	}
	#what .sectionContent>p {
		line-height: 2;
	}
	#what .box {
		padding: 8rem 3.5rem;
		font-size: 2.8rem;
		line-height: 5.2rem;
		font-weight: 500;
		margin: 9rem -3.5rem 0;
		width: calc(100% + 7rem);
	}
	#what .box .block{
		margin-bottom: 9rem;
	}
	#what .box .block .heading {
		margin-bottom: 5rem;
		text-align: center;
	}
	#what .box .block01 .heading{
		height: 4.6rem;
	}
	#what .box .block01 .heading img {
		height: 100%;
	}
	#what .box .block01 .columns img {
		margin: 8.5rem;
		width: calc(100% - 17rem);
	}
	#what .box .block02 .heading{
		height: 12.3rem;
	}
	#what .box .block02 .heading img {
		height: 100%;
	}
	#what .box .block02 .columns img {
		margin-top: 3.5rem;
	}
	#what .box .block03 .heading img {
		width: 100%;
	}
	#what .box .block03 .desc img {
		margin-top: 5rem;
	}
	#what .box .block04{
		margin-bottom: 0;
	}
	#what .box .block04 .heading img {
		width: 100%;
	}
	#what .box .block04 .dialogue img {
		margin: 3.5rem auto;
	}
	#what .box .block04 .desc + .desc {
		margin-top: 3.5rem;
	}
}

@media all and (min-width: 800px) {
	#what .wrap {
		background-image: url('/assets/images/bg_phonics01.png');
		background-position: top center;
		background-size: 100%;
		background-repeat: no-repeat;
	}
	#what .sectionContent {
		margin-top: 60px;
	}
	#what .sectionContent>p {
		text-align: center;
		line-height: 46px;
	}
	#what .link a .arrow {
		width: 25px;
	}
	#what .link a:hover .arrow img {
		left: 0;
	}
	#what .box {
		margin-top: 40px;
		padding: 65px;
	}
	#what .box .block {
		margin-bottom: 70px;
	}
	#what .box .heading {
		margin-bottom: 45px;
	}
	#what .box h3 {
		text-align: center;
	}
	#what .box .block {
		font-weight: 500;
		font-size: 18px;
		line-height: 38px;
	}
	#what .box .columns {
		justify-content: space-between;
	}
	#what .box .col__item {
		width: 450px;
	}
	#what .box .desc {
		width: 680px;
		margin: auto;
	}
	#what .box .desc p {
		display: block;
		width: 680px;
		margin: 0 auto auto;
	}
	#what .box .block01 .col__item img {
		display: block;
		width: auto;
		margin: 35px auto auto;
	}
	#what .box .block02 .col__item img {
		display: block;
		width: auto;
		margin: 0 auto auto;
	}
	#what .box .block03 .desc p {
		margin-bottom: 40px;
	}
	#what .box .block04 .heading+.desc,
	#what .box .block04 .desc+img {
		margin-bottom: 40px;
	}
	#what .box .block04 .desc+.desc {
		margin-top: 40px;
	}
	#what .box .block04 {
		margin-bottom: 0;
	}
}



/*
// #series
//////////////////////////////////////////////////////////////////////*/
#series .desc {
}

@media all and (max-width: 799px) {
	#series  .sectionHeading,
	#series  .sectionContent{
		padding: 0 3.5rem;
	}
	#series .sectionContent>p {
		line-height: 2;
	}
	#series .desc {
		font-size: 2.9rem;
		line-height: 2;
	}
	#series .desc+.desc {
		margin-top: 4rem;
	}
}

@media all and (min-width: 800px) {
	#series .desc {
		font-size: 18px;
		line-height: 38px;
		font-weight: 500;
	}
	#series .desc+.desc {
		margin-top: 40px;
	}
	#series .col__item.main {
		flex-grow: 1;
		margin-right: 40px;
		margin-left: 80px;
	}
	#series .col__item.sub {
		width: 330px;
		flex-shrink: 0;
		margin-right: 15px;
	}
}


/*
// #study
//////////////////////////////////////////////////////////////////////*/
/*
@media all and (max-width: 799px) {
	#study .columns .col__item:first-of-type p {
		line-height: 6rem;
	}
		#study .columns .col__item:first-of-type p br {display: none;
	}
	#study .col__item{
		padding: 0 3.5rem;
	}
}
@media all and (min-width: 800px) {
	#study .columns .col__item:first-of-type {
		flex-grow: 1;
		margin-left: 80px;
		margin-right: 30px;
	}
	#study .columns .col__item:first-of-type p {
		line-height: 46px;
	}
	#study .columns .col__item:last-of-type {
		width: 420px;
		flex-shrink: 0;
	}
}
	*/

#study .box {
	max-width: 1070px;
	margin-inline: auto;
	padding: 50px 30px;
	border-radius: 20px;
	background: #fff;
}
#study .title {
	max-width: 940px;
	margin: 0 auto 30px;
	padding: 10px;
	color: #fff;
	font-size: 34px;
	font-weight: 800;
	text-align: center;
	border-radius: 50px;
	background: #20c688;
}
#study .list {
	max-width: 940px;
	margin: 0 auto;
}
#study .list dt {
	position: relative;
	padding-left: 52px;
	color: #20c688;
	font-size: 34px;
	font-weight: 800;
}
#study .list dt .num {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	aspect-ratio: 1 / 1;
	color: #fff;
	font-size: 22px;
	vertical-align: top;
	border-radius: 50%;
	background: #20c688;
}
#study .list dd {
	padding-top: 15px;
	font-size: 20px;
}
#study .list dd + dt {
	margin-top: 30px;
}

@media all and (max-width: 799px) {

#study .box {
	padding: 30px 20px;
	border-radius: 10px;
}
#study .title {
	max-width: 940px;
	margin: 0 auto 30px;
	padding: 10px 30px;
	font-size: 22px;
}
#study .list dt {
	padding-top: 2px;
	padding-left: 42px;
	font-size: 22px;
}
#study .list dt .num {
	width: 30px;
	font-size: 16px;
}
#study .list dd {
	font-size: 16px;
	line-height: 1.4;
}


}

/*
// #readers
//////////////////////////////////////////////////////////////////////*/
#readers .sectionContent .lead {
	margin-bottom: 50px;
	font-size: 22px;
	line-height: 2.1;
	text-align: center;
}
#readers .sectionContent .box {
	max-width: 1070px;
	margin-inline: auto;
	padding: 50px 30px;
	border-radius: 20px;
	background: #fff;
}
#readers .sectionContent .box .columns {
	display: flex;
	gap: 50px;
	max-width: 940px;
	margin-inline: auto;
}
#readers .sectionContent .box .columns dl dt {
	margin-bottom: 10px;
	padding: 10px;
	color: #fff;
	font-size: 28px;
	font-weight: 800;
	text-align: center;
	border-radius: 50px;
	background: #20c688;
}
#readers .sectionContent .box .columns dl dd {
	font-size: 20px;
	line-height: 1.8;
}
#readers .sectionContent .box .columns dl dd + dt {
	margin-top: 40px;
}
#readers .sectionContent .box .columns figure {
	width: 338px;
	flex-shrink: 0;
}

@media all and (max-width: 799px) {

#readers .sectionContent .lead {
	margin-bottom: 30px;
	font-size: 16px;
	line-height: 1.8;
	text-align: left;
}
#readers .sectionContent .box {
	padding: 30px 20px;
	border-radius: 10px;
}
#readers .sectionContent .box .columns {
	flex-direction: column;
	gap: 30px;
}
#readers .sectionContent .box .columns dl dt {
	padding: 10px 30px;
	font-size: 20px;
}
#readers .sectionContent .box .columns dl dd {
	font-size: 16px;
	line-height: 1.6;
}
#readers .sectionContent .box .columns dl dd + dt {
	margin-top: 30px;
}
#readers .sectionContent .box .columns figure {
	width: 90%;
	margin-inline: auto;
}



}

/*
// #workbooks
//////////////////////////////////////////////////////////////////////*/
#workbooks .sectionContent .lead {
	margin-bottom: 50px;
	font-size: 22px;
	line-height: 2.1;
	text-align: center;
}
#workbooks .sectionContent .catch {
	margin-bottom: 36px;
	padding: 22px 10px;
	color: #fff;
	font-size: 20px;
	font-weight: 800;
	text-align: center;
	border-radius: 50px;
	background: #20c688;
}
#workbooks .sectionContent .pics {
	max-width: 820px;
	margin-inline: auto;
}
#workbooks .sectionContent .pics figure img {
	box-shadow: 0 7px 7px 0 rgba(0, 0, 0, 0.1);
}
#workbooks .sectionContent .pics figure + figure {
	margin-top: 50px;
}
#workbooks .sectionContent .pics figcaption {
	margin-top: 30px;
	font-size: 18px;
	font-weight: 800;
	text-align: center;
}

@media all and (max-width: 799px) {

#workbooks .sectionContent .lead {
	margin-bottom: 20px;
	font-size: 16px;
	line-height: 1.8;
	text-align: left;
}
#workbooks .sectionContent .catch {
	margin-bottom: 25px;
	padding: 12px 30px;
	font-size: 16px;
}
#workbooks .sectionContent .pics figure + figure {
	margin-top: 30px;
}
#workbooks .sectionContent .pics figcaption {
	margin-top: 15px;
	font-size: 14px;
}

}


/*
// #extension
//////////////////////////////////////////////////////////////////////*/
#extension .sectionContent .lead {
	margin-bottom: 50px;
	font-size: 22px;
	line-height: 2.1;
	text-align: center;
}
#extension .sectionContent .catch {
	margin-bottom: 36px;
	padding: 22px 10px;
	color: #fff;
	font-size: 20px;
	font-weight: 800;
	text-align: center;
	border-radius: 50px;
	background: #20c688;
}
#extension .sectionContent .pics {
	max-width: 820px;
	margin-inline: auto;
}
#extension .sectionContent .pics figure img {
	box-shadow: 0 7px 7px 0 rgba(0, 0, 0, 0.1);
}
#extension .sectionContent .pics figure + figure {
	margin-top: 50px;
}
#extension .sectionContent .pics figcaption {
	margin-top: 30px;
	font-size: 18px;
	font-weight: 800;
	text-align: center;
}

@media all and (max-width: 799px) {

#extension .sectionContent .lead {
	margin-bottom: 20px;
	font-size: 16px;
	line-height: 1.8;
	text-align: left;
}
#extension .sectionContent .catch {
	margin-bottom: 25px;
	padding: 12px 30px;
	font-size: 16px;
}
#extension .sectionContent .pics figure + figure {
	margin-top: 30px;
}
#extension .sectionContent .pics figcaption {
	margin-top: 15px;
	font-size: 14px;
}

}


/*
// #contact
//////////////////////////////////////////////////////////////////////*/
#contact a {
	display: block;
	margin: 40px 80px;
}
@media all and (max-width: 799px) {
	#contact a {
		margin: 4rem 0;
	}
}

@media all and (min-width: 800px) {
	#contact a {
		margin: 40px 80px;
	}
}


/*
// footer
//////////////////////////////////////////////////////////////////////*/


footer .block01 {
	background-color: #fff;
}

footer .block01 .columns {
	justify-content: center;
}
footer .block01 .col__item.main .heading {
	line-height: 1.5;
}

footer .block01 .col__item.main p {
	font-weight: 400;
}

footer .block01 .col__item.sub p {
	font-weight: 400;
}

footer .block01 .col__item.sub p a {
	color: #333;
	text-decoration: underline;
	display: block;
}

footer .block01 .col__item.sub p a:hover {
	text-decoration: none;
}

footer .block01 img {
	width: auto;
	margin: 40px auto 0;
	display: block;
}

footer .block02 {
	text-align: center;
	font-weight: 400;
}
@media all and (max-width: 799px) {
	footer {
		margin-top: -16rem;
	}
	footer .block01 {
		padding: 16rem 3.5rem 4rem 3.5rem;
	}
	footer .block01 img{
		width: 100%;
	}
	footer .block01 .col__item.main {
		margin-bottom: 4rem;
	}
	footer .block01 .col__item.main .heading {
		font-size: 3rem;
	}
	footer .block01 .col__item p {
		font-size: 2.6rem;
		line-height: 1.5;
	}
	footer .block02 {
		padding: 5rem 0;
		font-size: 2.4rem;
	}
}
@media all and (min-width: 800px) {
	footer {
		margin-top: -140px;
	}
	footer .block01 {
		padding-top: 140px;
		padding-bottom: 40px;
	}
	footer .block01 .col__item.main {
		margin-right: 40px;
	}
	footer .block01 .col__item.main .heading {
		font-size: 20px;
	}
	footer .block01 .col__item.main p {
		font-size: 17px;
	}
	footer .block01 .col__item.sub p {
		font-size: 15px;
		line-height: 26px;
	}
	footer .block02 {
		padding: 25px 0;
		font-size: 14px;
	}

}