/*----------------------------------------*/
/* 基本 */
/*----------------------------------------*/

.lower-page {
	overflow: hidden;
	padding: 160px 0 190px 0;
}
@media (max-width: 991px) {
	.lower-page {
		padding: 60px 0 120px 0;
	}
}

/*----------------------------------------*/
/* .tab-wrap */
/*----------------------------------------*/

.lower-page .tab-wrap ul {
	display: flex;
	margin: 0 -2.5px;
}
.lower-page .tab-wrap ul li {
	width: 50%;
	padding: 0 2.5px;
}
.lower-page .tab-wrap ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 55px;
	font-size: 20px;
	font-weight: 900;
	background-color: var(--yellow);
	border-radius: 20px 20px 0 0;
}
.lower-page .tab-wrap ul li:nth-child(2) a {
	background-color: var(--lightblue);
}

@media (min-width: 768px) {
	.lower-page .tab-wrap ul li a:hover {
		padding-top: 10px;
	}
}
@media (max-width: 991px) {
	.lower-index-page .tab-wrap,
	.lower-page .tab-wrap ul li {
		display: none;
	}
	.lower-page .tab-wrap .container {
		max-width: 100% !important;
		padding: 0 !important;
	}
	.lower-page .tab-wrap ul li.current {
		display: block;
		width: 100%;
	}
	.lower-page .tab-wrap ul li.current a {
		font-size: 18px;
		border-radius: 0;
		padding: 30px 20px;
	}
}

/*----------------------------------------*/
/* .local-nav */
/*----------------------------------------*/

.lower-page .local-nav {
	background-color: var(--yellow);
}
.lower-page.lightblue-page .local-nav {
	background-color: var(--lightblue);
}
.lower-page .local-nav ul {
	display: flex;
	justify-content: center;
	margin: 0 -30px;
}
.lower-page .local-nav ul li {
	padding: 0 30px;
}
.lower-page .local-nav ul li a {
	position: relative;
	display: block;
	font-weight: 500;
	padding: 30px 30px 30px 0
}
.lower-page .local-nav ul li a::before {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-60%);
	transition: 0.3s;
}
.lower-page .local-nav ul li a:hover::before {
	transform: translateY(-30%);
}
.lower-page .local-nav ul li a::after {
	position: absolute;
	left: 0;
	bottom: 0;
	content: "";
	width: 0;
	height: 6px;
	opacity: 0;
	transition: width 0.3s ease-out, opacity 0.3s ease-out;
}
.lower-page .local-nav ul li a:hover::after {
	width: 100%;
	opacity: 1;
	transition: width 0.3s ease-out, opacity 0.3s ease-out;
}
.lower-page .local-nav ul li.current a::before,
.lower-page .local-nav ul li.current a:hover::before {
	transform: translateY(-30%);
}
.lower-page .local-nav ul li.current a::after,
.lower-page .local-nav ul li.current ah:hover::after {
	width: 100%;
	opacity: 1;
}

/* 資料ダウンロード */
.lower-page .local-nav ul li:nth-child(3) a {
	background-repeat: no-repeat;
	background-position: right bottom 32.5px;
	padding-right: 40px;
}
.lower-page .local-nav ul li:nth-child(3) a::before {
	right: 0;
	transform: translateY(-80%);
}
.lower-page .local-nav ul li:nth-child(3) a:hover::before {
	transform: translateY(-60%);
}
@media (max-width: 991px) {
	.lower-page .local-nav {
		display: none;
	}
}

/*----------------------------------------*/
/* .index-mv */
/*----------------------------------------*/

.lower-page .index-mv {
	background-repeat: repeat-x;
	background-position: center bottom 20px;
	padding: 40px 0 15px 0;
}
.lower-page .index-mv .inner {
	position: relative;
}
.lower-page .index-mv .sub-title {
	position: absolute;
	left: 0;
	top: 10px;
	font-size: min(1.5vw,17px);
	font-weight: 700;
}
.lower-page .index-mv .title {
	font-size: 100%;
	margin: 0 -50px 0 0;
}
@media (max-width: 991px) {
	.lower-page .index-mv {
		padding: 0;
	}
	.lower-page .index-mv .container {
		max-width: 100% !important;
		padding: 0 !important;
	}
	.lower-page .index-mv .sub-title {
		left: 6vw;
		top: 8.5vw;
		font-size: 3.5vw;
		font-weight: 700;
	}
  .lower-page .index-mv .title {
    margin: 0;
  }
	.lower-page .index-mv .title img {
		width: 100%;
	}
}
@media (max-width: 767px) {
	.lower-page .index-mv {
		background-position: center bottom 12px;
		background-size: 8px;
	}
}

/*----------------------------------------*/
/* .section */
/*----------------------------------------*/

.lower-page .section {
	font-size: 18px;
	font-weight: 500;
	line-height: 2;
	padding-top: 100px;
}
.lower-page .section-title {
	text-align: center;
	margin-bottom: 70px;
}
.lower-page .section-title dl dt {
	font-family: var(--en);
	font-style: italic;
	font-size: 160%;
	font-weight: 300;
	line-height: 1.4;
	letter-spacing: -0.02em;
	color: var(--blue);
	margin-bottom: 10px;
}
.lower-page .section-title dl dd .title {
	font-size: 220%;
	color: var(--blue);
	margin: 0;
}
@media (max-width: 991px) {
	.lower-page .section {
		font-size: 16px;
		padding-top: 60px;
	}
	.lower-page .section-title {
		margin-bottom: 50px;
	}
}
@media (max-width: 767px) {
	.lower-page .section {
		font-size: 15px;
		padding-top: 25px;
	}
	.lower-page .section-title {
		margin-bottom: 15px;
	}
	.lower-page .section-title dl dt {
		font-size: 20px;
		margin-bottom: 3px;
	}
	.lower-page .section-title dl dd .title {
		font-size: 18px;
	}
}

/*----------------------------------------*/
/* .about */
/*----------------------------------------*/

.lower-page .about .section-title {
	position: relative;
}
.lower-page .about .section-title .sub-title {
	font-size: 26px;
	margin: 10px 0 20px 0;
}
.lower-page .about .section-title p {
	margin: 0;
}
.lower-page .about-list ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -25px;
}
.lower-page .about-list ul li {
	width: 50%;
	padding: 0 25px;
	margin-bottom: 30px;
}
.lower-page .about-list ul li dl dt {
	border-radius: 15px;
	overflow: hidden;
}
.lower-page .about-list ul li dl dd {
	margin-top: 10px;
}
.lower-page .section .maru {
	position: relative;
	font-size: 95%;
	line-height: 1.4;
	padding-left: 20px;
	margin-bottom: 5px;
}
.lower-page .section .maru::before {
	position: absolute;
	left: 0;
	top: 0.5em;
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: var(--blue);
}
.lower-page .section .border-title {
	font-size: 90%;
	border-bottom: 1px solid #DEDEDE;
	padding-bottom: 10px;
	margin: 60px 0 30px 0;
}
@media (min-width: 768px) {
	.lower-page .about .border-title + ul.none li {
		display: inline-block;
		margin-right: 4em;
	}
}
@media (min-width: 992px) {
	.lower-page .about {
		padding: 120px 0 220px 0;
	}
	.lower-page .about .section-title .illust-01 {
		position: absolute;
		left: calc(50% + 385px);
		bottom: 0;
	}
}
@media (max-width: 991px) {
	.lower-page .about {
		padding-bottom: 100px;
	}
	.lower-page .about .section-title .illust-01 {
		position: absolute;
		right: -17px;
		bottom: -140px;
		width: 110px;
	}
	.lower-page .about-list ul {
		margin: 0 -15px;
	}
	.lower-page .about-list ul li {
		padding: 0 15px;
		margin-bottom: 10px;
	}
}
@media (max-width: 767px) {
	.lower-page .about {
		padding-bottom: 50px;
	}
	.lower-page .about .section-title {
		margin-bottom: 35px;
	}
	.lower-page .about .section-title .sub-title {
		font-size: 16px;
		margin: 20px -10px 10px -10px;
	}
	.lower-page .about .section-title p {
		line-height: 1.6;
	}
	.lower-page .about-list ul li {
		width: 100%;
	}
	.lower-page .section .border-title {
		font-size: 16px;
		margin: 30px 0 10px 0;
	}
}

/*----------------------------------------*/
/* .features */
/*----------------------------------------*/

.lower-page .features {
	position: relative;
	background-size: cover;
	background-position: center center;
	padding-bottom: 100px;
}
.lower-page .features-list {
	max-width: 860px;
	margin: 0 auto;
}
.lower-page.lightblue-page .features-list {
	max-width: 560px;
}
.lower-page .features-list ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12.5px;
}
.lower-page .features-list ul li {
	width: 33.33%;
	padding: 0 12.5px;
	margin-bottom: 20px;
}
.lower-page.lightblue-page .features-list ul li {
	width: 50%;
}
.lower-page .features-list .wrap {
	display: flex;
	justify-content: center;
	text-align: center;
	aspect-ratio: 1 / 1;
	background-color: #ffffff;
	border-radius: 50%;
	line-height: 1.7;
	padding-top: 25px;
}
.lower-page .features-list .wrap dt {
	margin-bottom: 10px;
}
.lower-page .features-list .wrap dd {
	font-size: 90%;
}
.lower-page .features-list .wrap dd strong {
	font-weight: 500;
	color: var(--blue);
}
@media (min-width: 1200px) {
	.lower-page .features .illust-03 {
		position: absolute;
		bottom: 70px;
		left: calc(50% + 390px);
	}
}
@media (min-width: 992px) {
	.lower-page .features .illust-02 {
		position: absolute;
		top: -50px;
		right: calc(50% + 260px);
	}
	.lower-page .features .book {
		position: absolute;
		top: -100px;
		left: calc(50% + 260px);
		filter: drop-shadow(10px 10px 25px rgba(0,0,0,0.15));
	}
}
@media (max-width: 1199px) {
	.lower-page .features .illust-03 {
		position: absolute;
		bottom: -60px;
		left: auto;
		right: 30px;
	}
}
@media (max-width: 991px) {
	.lower-page .features-list,
  .lower-page.lightblue-page .features-list {
		max-width: 550px;
	}
	.lower-page .features-list ul li {
		width: 50%;
	}
	.lower-page .features .illust-02 {
		position: absolute;
		top: -50px;
		left: 10px;
		width: 190px;
	}
	.lower-page .features .book {
		position: absolute;
		top: -110px;
		right: -15px;
		filter: drop-shadow(10px 10px 25px rgba(0,0,0,0.15));
		width: 200px;
	}
	.lower-page .features .illust-03 {
		position: absolute;
		bottom: -50px;
		left: auto;
		right: 30px;
		width: 170px;
	}
}
@media (max-width: 767px) {
	.lower-page .features {
		padding: 40px 0 60px;
	}
	.lower-page .features .section-title {
		margin: 0 -20px;
	}
	.lower-page .features .section-title .title {
		letter-spacing: -0.01em;
	}
	.lower-page .features-list,
  .lower-page.lightblue-page .features-list {
		max-width: 240px;
	}
	.lower-page .features-list ul li,
  .lower-page.lightblue-page .features-list ul li{
		width: 100%;
		margin-bottom: 10px;
	}
	.lower-page .features-list .wrap {
		padding-top: 15px;
	}
	.lower-page .features-list .wrap dt {
		margin-bottom: 0;
	}
	.lower-page .features-list .wrap dd {
		font-size: 100%;
	}
	.lower-page .features .book {
		width: 150px;
	}
	.lower-page .features .illust-02-wrap {
		max-width: 350px;
		margin: 20px auto 0 auto;
	}
	.lower-page .features .illust-02 {
		position: relative;
		top: auto;
		left: auto;
		margin-left: -15px;
	}
}

/*----------------------------------------*/
/* .howto */
/*----------------------------------------*/

.lower-page .howto {
	position: relative;
}
.lower-page .howto::before {
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	width: 100%;
	height: 560px;
	background-color: #F2F2F2;
	z-index: -1;
}
.lower-page .howto .video-wrap {
	position: relative;
}
.lower-page .howto .youtube-wrap {
	aspect-ratio: 16 / 9;
	max-width: 760px;
	border-radius: 20px;
	overflow: hidden;
	margin: 0 auto;
}
.lower-page .youtube-wrap iframe {
	width: 100%;
	height: 100%;
}
.lower-page .section .color-title {
	font-size: 145%;
	background-image: url("/img/yellow/title-bg.png");
	background-repeat: no-repeat;
	background-position: left center;
	padding: 10px 20px 10px 90px;
	margin: 150px 0 40px 0;
}
.lower-page .section ul.circle li {
  text-indent: -1.2em;
  padding-left: 1.2em;
}
.lower-page .section ul.circle li::before {
	content: "\25CF";
	margin-right: 0.2em;
}
.lower-page .howto .row-table {
	margin-top: 40px;
}
.lower-page .section .color-table {
	width: 100%;
	line-height: 1.4
}
.lower-page .section .color-table th {
	font-weight: 500;
	border-right: 5px solid #ffffff;
	border-bottom: 5px solid #ffffff;
	padding: 10px 30px;
}
.lower-page .section .color-table td {
	text-align: center;
	background-color: #F2F2F2;
	border-right: 2px solid #ffffff;
	border-bottom: 5px solid #ffffff;
	padding: 10px 10px;
}
.lower-page .section .color-table tr td:last-child {
	border-right: none;
}
.lower-page .section .color-table th .cell {
	display: flex;
	align-items: center;
	min-height: 60px;
}
.lower-page .section .color-table + .small {
	font-size: 90%;
	font-weight: 500;
}
.lower-page .howto .flow ol li {
	position: relative;
	background-color: #F2F2F2;
	padding: 50px;
	margin-top: 75px;
}
.lower-page .howto .flow ol li::after {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -30px;
	content: "";
	width: 85px;
	height: 45px;
	background-color: var(--blue);
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.lower-page .howto .flow ol li:last-child::after {
	content: none;
}
.lower-page .howto .flow .num {
	position: absolute;
	left: 50px;
	top: -70px;
	font-family: var(--en);
	font-size: 120px;
	font-style: italic;
	font-weight: 600;
	line-height: 1;
	color: var(--blue);
}
.lower-page .howto .flow .img-wrap {
	border-radius: 20px;
	overflow: hidden;
	max-width: 640px;
	margin: 0 auto;
}
.lower-page .howto .flow .title {
	font-size: 180%;
	font-weight: 900;
	color: var(--blue);
	margin: 0 0 20px 0;
}
.lower-page .howto .flow .col-txt p + .caution {
  margin-top: -1rem;
}
.lower-page .howto .flow .caution {
    padding-left: 1em;
    position: relative;
}
.lower-page .howto .flow .caution:before {
    content: "・";
    position: absolute;
    left: 0;
    top: -1px;
}

@media (min-width: 1200px) {
	.lower-page .howto .video-wrap .illust-04 {
		position: absolute;
		bottom: 35px;
		left: calc(50% + 390px);
	}
	.lower-page .howto .illust-02 {
		position: absolute;
		left: calc(50% + 315px);
		bottom: -120px;
	}
}
@media (min-width: 992px) {
	.lower-page .howto .row-table {
		position: relative;
		padding-left: 235px;
	}
	.lower-page .howto .row-table .col-img {
		position: absolute;
		left: 0;
		bottom: -50px;
	}
	.lower-page .howto .row-flow {
		display: flex;
		flex-wrap: wrap;
		margin: 0 -25px;
	}
	.lower-page .howto .row-flow .col-txt {
		width: 40%;
		padding: 0 25px;
	}
	.lower-page .howto .row-flow .col-img {
		width: 60%;
		padding: 0 25px;
	}
}
@media (max-width: 1199px) {
	.lower-page .howto .video-wrap .illust-04 {
		display: block;
		margin: 15px -15px -60px auto;
	}
	.lower-page .howto .illust-02 {
		position: absolute;
		right: 50px;
		bottom: -100px;
	}
}
@media (max-width: 991px) {
	.lower-page .howto {
		line-height: 1.6;
	}
	.lower-page .howto .video-wrap .illust-04 {
		display: block;
		width: 170px;
		margin: 15px -15px 0 auto;
	}
	.lower-page .section .color-title {
		margin: 80px 0 30px 0;
	}
	.lower-page .howto .row-table .col-img {
		max-width: 160px;
	}
	.lower-page .howto .illust-02 {
		position: absolute;
		right: 50px;
		bottom: -45px;
		width: 180px;
	}
}
@media (max-width: 767px) {
	.lower-page .howto::before {
		height: 480px
	}
	.lower-page .howto .youtube-wrap {
		border-radius: 15px;
	}
	.lower-page .section .color-title {
		font-size: 17px;
		background-size: 40px;
		padding: 10px 20px 10px 50px;
		margin: 40px 0 20px 0;
	}
	.lower-page .howto .row-table {
		margin-top: 20px;
	}
	.lower-page .section .color-table {
		line-height: 1.4;
	}
	.lower-page .section .color-table th {
		font-size: min(4vw,15px);
		text-align: center;
		border-right: 2px solid #ffffff;
		border-bottom: 2px solid #ffffff;
		padding: 5px 0;
	}
	.lower-page .section .color-table td {
		font-size: min(4vw,15px);
		border-bottom: 2px solid #ffffff;
		padding: 5px 0;
	}
	.lower-page .section .color-table th .cell {
		justify-content: center;
		min-height: 50px;
	}
	.lower-page .section .color-table + .small {
		font-size: 95%;
	}
	.lower-page .howto .color-table th {
		width: 30%;
	}
	.lower-page .howto .flow .num {
		left: 50%;
		transform: translateX(-50%);
		top: -30px;
		font-size: 60px;
	}
	.lower-page .howto .flow ol li {
		padding: 30px 20px 30px 20px;
		margin-top: 55px;
	}
	.lower-page .howto .flow ol li::after {
		bottom: -15px;
		width: 55px;
		height: 25px;
	}
	.lower-page .howto .flow ol li:last-child {
		padding-bottom: 90px;
	}
	.lower-page .howto .flow .title {
		font-size: 24px;
		text-align: center;
		margin-bottom: 15px;
	}
}
@media (max-width: 575px) {
	.lower-page .howto::before {
		aspect-ratio: 1 / 0.95;
		height: auto;
	}
	.lower-page .howto .flow ol li {
		margin: 55px -20px 0 -20px;
	}
	.lower-page .howto .illust-02 {
		right: 20px;
	}
}

/*----------------------------------------*/
/* .faq */
/*----------------------------------------*/

.lower-page .faq .color-title {
	margin-top: 90px;
}
.lower-page .btn-faq {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 265px;
	min-height: 50px;
	border: 1px solid var(--blue);
	color: var(--blue);
	font-size: 15px;
	padding: 10px 30px;
	margin: 0 0 90px auto;
}
.lower-page .btn-faq::after {
	position: absolute;
	right: 30px;
	top: 50%;
	content: "";
	width: 12px;
	height: 12px;
	border-top: 3px solid var(--blue);
	border-right: 3px solid var(--blue);
	transform: translateY(-50%) rotate(45deg);
	transition: 0.3s;
}
@media (min-width: 768px) {
	.lower-page .btn-faq:hover {
		background-color: #F8F8F8;
	}
	.lower-page .btn-faq:hover::after {
		right: 20px;
	}
}
@media (max-width: 767px) {
	.lower-page .faq {
		line-height: 1.7;
	}
	.lower-page .faq .color-title {
		margin-top: 30px;
	}
	.lower-page .btn-faq {
		max-width: 190px;
		min-height: 40px;
		font-size: 13px;
		padding: 5px 10px;
		margin: 30px auto 45px auto;
	}
	.lower-page .btn-faq::after {
		right: 15px;
		width: 8px;
		height: 8px;
		border-top: 2px solid var(--blue);
		border-right: 2px solid var(--blue);
	}
}
.lower-page .faq-list dl + dl {
	margin-top: 25px;
}
.lower-page .faq-list dl dt {
	position: relative;
	font-size: 110%;
	font-weight: 500;
	line-height: 1.5;
	cursor: pointer;
	background-color: #F2F2F2;
	padding: 12px 60px;
}
.lower-page .faq-list dl dt span {
	position: absolute;
	left: 20px;
	top: 12px;
	font-weight: 700;
	color: var(--blue);
}
.lower-page .faq-list dl dt::before {
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	content: "";
	width: 17px;
	height: 3px;
	background-color: var(--blue);
}
.lower-page .faq-list dl dt::after {
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%) rotate(90deg);
	content: "";
	width: 17px;
	height: 3px;
	background-color: var(--blue);
	transition: 0.3s;
}
.lower-page .faq-list dl dt.open::after {
	transform: translateY(-50%);
}
.lower-page .faq-list dl dd {
	font-size: 90%;
	font-weight: 400;
	padding: 25px 0 25px 60px;
}
.lower-page .faq-list dl dd .inner {
	position: relative;
	padding-left: 35px;
}
.lower-page .faq-list dl dd .inner::before {
	position: absolute;
	left: 0;
	top: -0.2em;
	content: "A";
	color: var(--blue);
	font-size: 110%;
	font-weight: 700;
}
.lower-page .faq-list .color-table,
.lower-page .faq-list .color-table + p {
	font-weight: 500;
}
@media (max-width: 767px) {
	.lower-page .faq-list dl + dl {
		margin-top: 12px;
	}
	.lower-page .faq-list dl dt {
		font-size: 15px;
		padding: 12px 45px 12px 40px;
	}
	.lower-page .faq-list dl dt span {
		position: absolute;
		left: 10px;
		top: 10px;
		font-size: 16px;
	}
	.lower-page .faq-list dl dt::before,
	.lower-page .faq-list dl dt::after {
		right: 15px;
	}
	.lower-page .faq-list dl dd {
		font-size: 15px;
		padding: 15px 0 20px 0;
	}
	.lower-page .faq-list dl dd .inner {
		position: relative;
		padding-left: 35px;
	}
	.lower-page .faq-list dl dd .inner::before {
		left: 13px;
		top: -0.12em;
	}
}

/*----------------------------------------*/
/* .yellow-page */
/*----------------------------------------*/

.yellow-page .local-nav ul li a::before {
	content: url("/img/yellow/nav-arrow.svg");
}
.yellow-page .local-nav ul li:nth-child(3) a {
	background-image: url("/img/yellow/nav-dl-02.svg");
}
.yellow-page .local-nav ul li:nth-child(3) a::before {
	content: url("/img/yellow/nav-dl-01.svg");
}
.yellow-page .local-nav ul li a::after {
	background-color: #F59006;
}
.yellow-page .index-mv {
	background-color: var(--yellow);
	background-image: url("/img/yellow/mv-bg.png");
}
.yellow-page .features {
	background-image: url("/img/yellow/features-bg.png");
}
.yellow-page .section .color-title {
	background-color: var(--yellow);
}
.yellow-page .section ul.circle li::before {
	color: #FAC720;
}
.yellow-page .section .color-table th {
	background-color: #FDEE99;
}

/*----------------------------------------*/
/* .lightblue-page */
/*----------------------------------------*/

.lightblue-page .local-nav ul li a::before {
	content: url("/img/lightblue/nav-arrow.svg");
}
.lightblue-page .local-nav ul li:nth-child(3) a {
	background-image: url("/img/lightblue/nav-dl-02.svg");
}
.lightblue-page .local-nav ul li:nth-child(3) a::before {
	content: url("/img/lightblue/nav-dl-01.svg");
}
.lightblue-page .local-nav ul li a::after {
	background-color: #1D3489;
}
.lightblue-page .index-mv {
	background-color: var(--lightblue);
	background-image: url("/img/lightblue/mv-bg.png");
}
.lightblue-page .features {
	background-image: url("/img/lightblue/features-bg.png");
}
.lightblue-page .section .color-title {
	background-color: var(--lightblue);
}
.lightblue-page .section ul.circle li::before {
	color: #A7D6FF;
}
.lightblue-page .section .color-table th {
	background-color: #A7D6FF66;
}

