@import url(//fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@500;800&display=swap);
@import url(//fonts.googleapis.com/css2?family=M+PLUS+2:wght@100..900&display=swap);
/* ------------------------------
 リセット
------------------------------ */
* {
	border:0;
	margin:0;
	outline:0;
	padding:0;
		-webkit-box-sizing:border-box;
		-moz-box-sizing:border-box;
		-ms-box-sizing:border-box;
		-o-box-sizing:border-box;
		box-sizing:border-box;
	font:inherit;
	font-family:inherit;
	font-size:100%;
	font-style:inherit;
	font-weight:inherit;
	text-decoration:none;
	vertical-align:baseline;
}
html {font-size:62.5%; width:100%; height:100%;}
body {
	font-size:10px;
	line-height:1;
	position:relative;
	text-align:center;
	-webkit-text-size-adjust:100%;
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing:grayscale;
	width:100%;
  	box-sizing: border-box;
}
article, aside, dialog, figure, picture, footer, header, main, menu, nav, section {display:block;}
audio, canvas, video {display:inline-block;}
hr {display:block;}
ol, ul {list-style:none;}
blockquote, q {quotes:none;}
blockquote:before, blockquote:after, q:before, q:after {content:''; content:none;}
input, select {vertical-align:middle;}
table {border-collapse:collapse; border-spacing:0; empty-cells:show;}
/* ------------------------------
	サイト全体
------------------------------ */
html, body {
	margin: 0 auto;
	color: #333;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.75;
	word-wrap: break-word;
	-webkit-text-size-adjust: 100%;
	background:#00b0ec;
	font-family: "M PLUS 2", sans-serif;
  	font-weight: 500;
}
body a {
	color: #333;
}
strong {
	font-weight: 800;
}
.tac { text-align: center !important; }
.tar { text-align: right !important; }
.container sup {
	font-size: 14px;
    vertical-align: top;
}
/* PC用限定CSS */
@media print, screen and (min-width: 768px) {
	.sp { display: none !important;}
}
/* スマホ用限定CSS */
@media screen and (max-width: 767px) {
	html, body {
		font-size: 15px;
	}
	img {
		max-width: 100%;
	}
	.pc { display: none !important;}
	.container sup {
		font-size: 12px;
	}
}
/* ------------------------------
 ヘッダー・目次
------------------------------ */
#header {
	position: fixed;
	top: 0;
	left: 0;
	padding: 40px;
	z-index: 3;
	text-align: left;
}
.logo {
	width: 194px;
}
.logo img {
	width: 100%;
}
#navigation a {
	display: inline-block;
	margin-bottom: 7px;
	padding: 3px 6px 5px;
	border-radius: 4px;
	line-height: 1.25;
}
#navigation > ul > li {
	position: relative;
	padding-left: 25px;
}
#navigation > ul > li::before {
	content: "";
	position: absolute;
	display: block;
	width: 18px;
	height: 18px;
	background: url("../images/icon_arrow.svg") no-repeat center center;
	background-size: cover;
	left: 0;
	top: 6px;
}
#navigation > ul > li > a {
  	font-weight: 800;
	font-size: 17px;
}

#navigation > ul > li > ul > li > a {
	font-size: 14px;
}
#navigation > ul > li > ul > li > ul > li > a {
	font-size: 14px;
}
#navigation > ul > li > ul > li > ul > li > a::before {
  	content: '';
	display: inline-block;
	margin-right: 5px;
	width: 8px;
	height: 1px;
	background: #333;
	vertical-align: 4px;
}
/* PC用限定CSS */
@media print, screen and (min-width: 1601px) {
	.header-area .logo {
		margin-bottom: 100px;
	}
	#section1 .logo {
		display: none;
	}
	#navigation a.active {
		color: #fff;
		background: #00b0ec;
		font-weight: bold;
	}
	#navigation > ul > li > ul > li > ul > li > a.active::before {
		background: #fff;
	}
}
/* スマホ用限定CSS */
@media screen and (max-width: 1600px) {
	#header {
		position: fixed;
		top: 0;
		left: 0;
		width: calc(100% - 20px);
		margin: 10px;
		height: 50px;
		z-index: 999;
		padding: 0;
		border-radius: 10px 10px 0 0;          /* 見た目上白が丸い */
		box-sizing: border-box;
		padding-top: env(safe-area-inset-top);
	}
	
	#navigation {
		visibility: hidden;
		opacity: 0;
		overflow-y: auto;
		position: fixed;
		top: 0;
		left: 0;
		width: calc(100% - 20px);
		height: calc(100% - 20px);
		background-color: #fff;
		padding: 120px 5% 150px;
		margin: 10px;
		border-radius: 10px;
		transition: .3s ease-in-out;
	}
	#navigation a {
		margin-bottom: 0;
	}
	#navigation.is-open {
		visibility: visible;
		opacity: 1;
	}
	.logo {
		width: 160px;
		margin: auto;
	}
	.header-area .logo {
		display: none;
	}
	#section1 .logo {
		display: block;
		position: absolute;
		left: 18px;
		top: 18px;
		width: 120px;
	}
	#navigation > ul {
		border-top: dashed 1px #bababa;
	}
	#navigation > ul > li {
		padding: 20px 0;
		border-bottom: dashed 1px #bababa;
	}
	#navigation > ul > li::before {
		top: 26px;
	}
	#navigation > ul > li a {
		display: block;
	}
	#navigation > ul > li > a {
		padding-left: 25px;
	}
	#navigation > ul > li > ul > li > a {
		font-size: 15px;
		padding: 15px 0 0 25px;
	}
	#navigation > ul > li > ul > li > ul > li > a {
		font-size: 15px;
		padding: 15px 0 0 25px;
	}
	#navigation > ul > li .pc { 
		display: none;
	}
}
/* ハンバーガーメニュー */
#hamburger {
	display: none;
}
@media screen and (max-width: 1600px) {
	#hamburger {
		display: grid;
		position: fixed;
		top: 0;
    	right: 0;
		width: 60px;
		height: 60px;
		z-index: 999;
		border-radius: 0 0 0 10px;
		background: none;
		cursor: pointer;
		background: #00b0ec;
		justify-content: center;
    	align-content: center;
	}
	.menu-icon {
		position: relative;
		display: block;
		width: 28px;
		height: 2px;
		background: #fff;
		margin-top: 17px;
		transition: 0.3s;
	}
	/* 上下の線を疑似要素で作る */
	.menu-icon::before,
	.menu-icon::after {
		content: "";
		position: absolute;
		width: 28px;
		height: 2px;
		background: #fff;
		left: 0;
		transition: 0.3s;
	}
	.menu-icon::before {
		top: -7px;
	}
	.menu-icon::after {
		top: 7px;
	}
	/* 開いたとき */
	#hamburger.is-open .menu-icon {
		background: transparent;
	}
	#hamburger.is-open .menu-icon::before {
		top: 0;
		transform: rotate(45deg);
	}
	#hamburger.is-open .menu-icon::after {
		top: 0;
		transform: rotate(-45deg);
	}
	.menu-text {
		color: #fff;
		font-size: 9px;
		display: block;
		margin-top: 10px;
	}
}
/* ------------------------------
 見出し
------------------------------ */
h1 {
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 38px;
	color: #00a5ed;
	text-align: center;
	letter-spacing: 0.75rem;
	margin: 0 auto 50px;
	font-weight: bold;
}
h2 {
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 26px;
	color: #00a5ed;
	letter-spacing: 0.5rem;
	margin: 0 auto 40px;
	font-weight: bold;
	line-height: 1.55;
}
.lead {
	font-size: 17px;
	letter-spacing: 0.08rem;
	line-height: 2.5;
	font-weight: 500;
}
.f21 {
	font-size: 17px;
	line-height: 2;
}
.f20 {
	font-size: 16px;
}
.f19 {
	font-size: 16px;
}
.f18 {
	font-size: 15px;
}
.f16 {
	font-size: 14px;
}
small {
	font-size: 13px;
}
/*  PC用限定CSS */
@media print, screen and (min-width: 1601px) and (min-height: 800px)  {
	h1 {
		font-size: 45px;
	}
	h2 {
		font-size: 42px;
	}
	.lead {
		font-size: 21px;
	}
	.f21 {
		font-size: 21px;
	}
	.f20 {
		font-size: 20px;
	}
	.f19 {
		font-size: 19px;
	}
	.f18 {
		font-size: 18px;
	}
	.f16 {
		font-size: 16px;
	}
	small {
		font-size: 14px;
	}
}
@media screen and (min-width: 768px) and (max-width: 1040px) {
	.lead br {
		display: none;
	}
}
/* ----------------
 SP用限定CSS
----------------- */
@media screen and (max-width: 767px) {
	h1 {
		font-size: 26px;
		letter-spacing: 0.4rem;
		margin: 0 auto 30px;
		line-height: 1.5;
	}
	h2 {
		font-size: 28px;
		margin: 0 auto 10px;
		text-align: center;
		letter-spacing: 0.2rem;
	}
	.lead {
		font-size: 15px;
		text-align: center;
		letter-spacing: 0;
		line-height: 2;
	}
	.f21 {
		font-size: 16px;
	}
	.f20 {
		font-size: 16px;
	}
	.f19 {
		font-size: 15px;
	}
	.f18 {
		font-size: 15px;
	}
}
/* ------------------------------
 マージン
------------------------------ */
.mb0 { margin-bottom: 0 !important; }
.mb5 { margin-bottom: 5px !important; }
.mb10 { margin-bottom: 10px !important; }
.mb15 { margin-bottom: 15px !important; }
.mb20 { margin-bottom: 20px !important; }
.mb25 { margin-bottom: 25px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb35 { margin-bottom: 35px !important; }
.mb40 { margin-bottom: 40px !important; }
.mb50 { margin-bottom: 50px !important; }
.mb60 { margin-bottom: 60px !important; }
.mb70 { margin-bottom: 70px !important; }
.mb80 { margin-bottom: 80px !important; }
.mb90 { margin-bottom: 90px !important; }
.mb100 { margin-bottom: 100px !important; }
.mt45 { margin-top: 45px !important; }
/*  SP用限定CSS */
@media screen and (max-width: 767px) {
	.mb15 { margin-bottom: 10px !important; }
	.mb20 { margin-bottom: 15px !important; }
	.mb25 { margin-bottom: 15px !important; }
	.mb30 { margin-bottom: 20px !important; }
	.mb35 { margin-bottom: 20px !important; }
	.mb40 { margin-bottom: 25px !important; }
	.mb50 { margin-bottom: 30px !important; }
	.mb60 { margin-bottom: 40px !important; }
	.mb70 { margin-bottom: 40px !important; }
	.mb80 { margin-bottom: 50px !important; }
	.mb90 { margin-bottom: 50px !important; }
	.mb100 { margin-bottom: 60px !important; }
	.mt45 { margin-top: 20px !important; }
}
/* ------------------------------
 コンテンツ
------------------------------ */
.container {
	height: calc(100dvh - 20px);
	overflow-y: scroll;
	background-color: #fff;
	border-radius: 10px;
	margin: 10px;
	box-sizing: border-box;
	text-align: left;
}
.container img {
	max-width: 100%;
	vertical-align: middle;
}
.snap-child {
	box-sizing: border-box;
	position: relative;
}
/*  PC用限定CSS */
@media print, screen and (min-width: 768px) {
	.container {
		scroll-behavior:smooth;
		scroll-snap-type:y mandatory;
	}
	.snap-child {
		min-height: calc(100dvh - 20px);
		scroll-snap-align: start;
		scroll-snap-stop: always;
		opacity: 0;
  		transition: opacity 1.2s ease;
	}
	.snap-child.is-show{
		opacity: 1;
	}
	.snap-child .inBlock{
		opacity: 0;
		transform: translateY(40px);
		transition: opacity 1.2s ease, transform 1.2s ease;
	}
	.snap-child.is-show .inBlock{
		opacity: 1;
		transform: translateY(0);
	}
	.inBlock {
		display: flex;
		justify-content: space-between;
		max-width: 1240px;
		width: 100%;
		margin: 0 auto;
		padding: 120px 40px;
		flex-wrap: wrap;
		height: 100%;
		align-items: center;
	}
	.inBlock .imageBox {
		width: 50%;
		max-width: 628px;
		position: relative;
	}
	.inBlock .textBox {
		width: 50%;
		max-width: 580px;
  		height: auto;
		padding-bottom: 150px;
		position: relative;
	}
	#section1 img {
		max-height: 70vh;
		height: auto;
		margin: auto;
	}
	#section4 .inBlock,
	#section5 .inBlock {
		padding: 120px 40px;
	}
	#section4 .inBlock .imageBox,
	#section5 .inBlock .imageBox {
		position: sticky;
		top: 120px;
		align-self: flex-start;
	}
	#section5 .number .pc {
		display: none !important;
	}
}
@media print, screen and (min-width: 1601px) {
	.inBlock {
		padding: 0;
	}
	#section4 .inBlock,
	#section5 .inBlock {
		padding: 120px 0;
	}
	#section5 .number .pc {
		display: block !important;
	}
}
@media (hover: none) {
  .container {
    scroll-snap-type: none !important;
  }
}
/*  SP用限定CSS */
@media screen and (max-width: 767px) {
	.container {
		min-height: calc(100dvh - 20px);
		height: calc(100dvh - 20px);
		margin: 10px;
		border-radius: 10px;
		background-color: #fff;
		box-sizing: border-box;
		overflow-y: auto;
	}
	.snap-child .inBlock {
		padding: 70px 5% 0px;
	}
	.inBlock .imageBox.sp {
		width: 78%;
  		margin: auto;
	}
}
/* ------------------------------
 各コンテンツ
------------------------------ */
#section1,
#section2,
#section3 {
	display: grid;
	align-items: center;
}
#section1 .inBlock {
    align-content: center;
}
#section2 .textBox {
	position: relative;
}
#section2 .deco01 {
	position: absolute;
	width: 86px;
	top: 0;
	right: 10px;
}
#section2 img,
#section3 img,
#section4 img,
#section5 img {
	width: 100%;
}
#section2 .deco02 {
	position: absolute;
	width: 210px;
	bottom: 0;
  	left: -130px;
}
#section3 .deco03 {
	position: absolute;
	width: 94px;
	bottom: 0;
	left: 50px;
}
#section3 .deco04 {
	position: absolute;
	width: 57px;
	top: -44px;
	right: 35px;
}
#section4 .deco05 {
	position: absolute;
	width: 109px;
	bottom: 0;
	left: 8px;
}
#section4 .deco06 {
	position: absolute;
	width: 100px;
	top: 30px;
	right: -25px;
}
#section5 .deco07 {
	position: absolute;
	width: 85px;
	bottom: 0;
	left: 40px;
}
#section5 .deco08 {
	position: absolute;
	width: 96px;
	top: 0;
	right: -20px;
}
.deco09 {
	position: absolute;
	width: 56px;
	top: -44px;
	right: 20%;
}
.deco11,
.deco12 {
	display: none;
}
#section5.snap-child {
	min-height: auto;
}

#section5 .inBlock {
	height: auto;
	align-items: flex-start;
}
/*  PC用限定CSS */
@media print, screen and (min-width: 1601px) {
	#section4 .deco06 {
		width: 142px;
		top: 35px;
		right: -40px;
	}
	#section5 .deco08 {
		width: 128px;
		top: 20px;
		right: -35px;
	}
}
/*  SP用限定CSS */
@media screen and (max-width: 767px) {
	#section1 {
		margin-bottom: 20px;
		min-height: calc(100dvh - 20px);
	}
	#section1.snap-child .inBlock {
		padding: 60px 5%;
	}
	#section2.snap-child .inBlock {
		padding: 80px 5% 0;
	}
	#section2 .textBox {
		margin-bottom: 80px;
	}
	#section2 .deco01 {
		width: 60px;
		top: -15px;
    	right: 10px;
	}
	#section2 .deco02 {
		width: 106px;
		bottom: -80px;
    	left: 5px;
	}
	#section3 .deco03 {
		display: none;
	}
	#section3 .deco04 {
		width: 40px;
		top: -29px;
		right: 15px;
	}
	#section4 .deco05 {
		width: 65px;
		top: -70px;
		bottom: inherit;
		left: 6px;
		z-index: 2;
	}
	#section4 .deco06 {
		width: 76px;
		top: 115px;
		right: 10px;
	}
	#section5 .deco07 {
		width: 46px;
		top: -52px;
		left: 10px;
		z-index: 2;
	}
	#section5 .deco08 {
		width: 66px;
		top: 105px;
		right: 15px;
	}
	#section5 .inBlock .textBox {
		margin-bottom: 90px;
	}
	.deco09 {
		width: 46px;
		top: -32px;
		right: 8%;
	}
	.deco11 {
		display: block;
		position: absolute;
		width: 125px;
		bottom: 10px;
		right: 5%;
	}
	.deco12 {
		display: block;
		position: absolute;
		width: 39px;
		bottom: 10px;
		left: 5%;
	}
}
/* ------------------------------
 ボタン
------------------------------ */
.btn-green a {
	width: 100%;
	font-weight: 800;
	color: #1a1a1a;
	vertical-align: middle;
	text-align: center;
	text-decoration: none;
	padding: 20px 40px;
	display: inline-block;
	border-radius: 12px;
	background-color: #c2e880;
	border: solid 2px #000;
	transition: 0.15s ease-in-out;
	overflow: hidden;
	position: relative;
	z-index: 0;
	cursor: pointer;
	border-radius: 12px;
	font-size: 21px;
}
.btn-yellow {
	margin-bottom: 50px;
	position: relative;
}
.btn-yellow a {
	width: 100%;
	font-weight: 800;
	color: #1a1a1a;
	vertical-align: middle;
	text-align: center;
	text-decoration: none;
	padding: 20px 40px;
	display: inline-block;
	border-radius: 12px;
	background-color: #fff352;
	border: solid 2px #000;
	transition: 0.15s ease-in-out;
	overflow: hidden;
	position: relative;
	z-index: 0;
	cursor: pointer;
	border-radius: 12px;
	font-size: 21px;
}
/*  SP用限定CSS */
@media screen and (max-width: 767px) {
	.btn-box {
		width: 49%;
		display: inline-block;
		vertical-align: top;
    	margin-top: 47px;
	}
	#section3 .imageBox {
		width: 49%;
		display: inline-block;
	}
	.btn-green a {
		padding: 10px;
		border: solid 1px #000;
		font-size: 15px;
	}
	.btn-yellow {
		margin-bottom: 20px;
	}
	.btn-yellow a {
		padding: 10px;
		border: solid 1px #000;
		font-size: 15px;
	}
}
/* ------------------------------
 リスト
------------------------------ */
.list ul > li {
	position: relative;
	padding-left: 1em;
	font-size: 16px;
}
.list ul > li::before {
	content: "";
	position: absolute;
	top: 0.7em;
	left: 0;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background-color: #90c86d;
	color: #fff;
	font-family: Arial, sans-serif;
	font-size: 15px;
	line-height: 21px;
	font-weight: bold;
	text-align: center;
}
.number {
	z-index: 1;
	position: relative;
}
.number ol > li {
	position: relative;
	counter-increment: cnt;
	padding-left: 1.5em;
	font-size: 21px;
	font-weight: 800;
}
.number ol > li::before {
	content: counter(cnt);
	position: absolute;
	top: 0.6em;
	left: 0;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: #00b0ec;
	color: #fff;
	font-family: Arial, sans-serif;
	font-size: 15px;
	line-height: 21px;
	font-weight: bold;
	text-align: center;
}
.number-acc ol > li {
	position: relative;
	counter-increment: cnt;
	padding-left: 1.5em;
	font-size: 19px;
	font-weight: 800;
}
.number-acc ol > li::before {
	content: counter(cnt);
	position: absolute;
	top: 0.5em;
	left: 0;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: #000;
	color: #fff;
	font-family: Arial, sans-serif;
	font-size: 14px;
	line-height: 20px;
	font-weight: bold;
	text-align: center;
}
.number-acc .number-text {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.75;
	display: block;
	margin-bottom: 20px;
}
/*  SP用限定CSS */
@media screen and (max-width: 767px) {
	.list ul > li {
		font-size: 15px;
	}
	.number ol > li {
		padding-left: 1.5em;
		font-size: 16px;
	}
	.number ol > li::before {
		top: 0.5em;
		width: 18px;
		height: 18px;
		font-size: 12px;
		line-height: 18px;
	}
	.number-acc ol > li {
		font-size: 15px;
	}
	.number-acc ol > li::before {
		top: 0.4em;
		width: 18px;
		height: 18px;
		font-size: 11px;
		line-height: 18px;
	}
	.number-acc .number-text {
		font-size: 14px;
	}
}
/* ------------------------------
 講師
------------------------------ */
.teacherBox {
	margin-bottom: 20px;
	position: relative;
}
.teacherBox .left {
  	padding: 15px 5%;
	font-size: 18px;
	font-weight: 800;
	background-color:#b3e8a2;
	background-image: repeating-linear-gradient(135deg, transparent, transparent 9px, #caefbe 9px, #caefbe 12px );
	display: flex;
	align-content: center;
	flex-wrap: wrap;
}
.teacherBox.teacher02 .left {
	background-color:#a3e2d1;
	background-image: repeating-linear-gradient(135deg, transparent, transparent 9px, #bfebdf 9px, #bfebdf 12px );
}
.teacherBox .right {
	background: #f0faec;
	padding: 20px 5%;
	font-size: 16px;
}
.teacherBox.teacher02 .right {
	background: #edf9f6;
}
/*  PC用限定CSS */
@media print, screen and (min-width: 768px) {
	.teacherBox {
		display: flex;
		background: #f0faec;
		border-radius: 14px;
	}
	.teacherBox .left {
		width: 235px;
		padding: 30px 22px;
		border-radius: 14px 0 0 14px;
	}
	.teacherBox .right {
		width: 354px;
		padding: 35px 25px;
		font-size: 16px;
		border-radius: 0 14px 14px 0;
	}
}
/*  SP用限定CSS */
@media screen and (max-width: 767px) {
	.teacherBox .left {
		border-radius: 10px 10px 0 0;
		padding: 12px 5%;
		justify-content: center;
		align-items: center;
	}
	.teacherBox .f18 {
		font-size: 18px;
	}
	.teacherBox .right {
		border-radius: 0 0 10px 10px;
		padding: 15px 5%;
	}
}
/* ------------------------------
 スクロール
------------------------------ */
.scroll-down {
	transition: opacity 0.3s ease;
}
/*  PC用限定CSS */
@media print, screen and (min-width: 768px) {
	#scroll-down {
		display: block;
		width: 57px;
		position: fixed;
		left: 25px;
		bottom: 25px;
		z-index: 999;
	}
	#scroll-down img {
		width: 100%;
	}
}
@media print, screen and (min-width: 1601px) {
	#scroll-down {
		width: 114px;
		left: 40px;
    	bottom: 40px;
	}
}
/*  SP用限定CSS */
@media screen and (max-width: 767px) {
	.scroll-down {
		position:fixed;
		width: 84px;
		height: 51px;
		left: 0;
		right: 0;
		bottom: 10px;
		margin: auto;
		z-index: 2;
	}
	.scroll-down img {
		width: 100%;
	}
}
/* ------------------------------
 ページトップ
------------------------------ */
#js-btn-pagetop {
	display: block;
	width: 30px;
	height: 30px;
	background: #00b0ec;
	position: absolute;
	right: 10px;
  	bottom: 10px;
	border-radius: 50%;
	z-index: 2;
	opacity: 0;
  	transition: opacity 0.3s ease;
}
/*  PC用限定CSS */
@media print, screen and (min-width: 1601px) {
	#js-btn-pagetop {
		width: 60px;
		height: 60px;
	}
}
/*  SP用限定CSS */
@media screen and (max-width: 767px) {
	#js-btn-pagetop {
		width: 36px;
		height: 36px;
		position: fixed;
		right: 20px;
  		bottom: 20px;
	}
}
/* ------------------------------
 フッター
------------------------------ */
.footer-copyright {
	background: #e9f3f7;
	padding: 60px 8%;
	text-align: center;
	scroll-snap-align: end;
	position: relative;
}
.footer-copyright .inBlock {
	padding: 0 !important;
}
.footer-copyright-box {
	color: #808080;
	font-weight: normal;
  	font-size: 13px;
}
.footer-copyright-left ul {
	display: flex;
}
.footer-copyright-left ul li {
	margin: 0 15px;
}
/*  PC用限定CSS */
@media print, screen and (min-width: 768px) {
	.footer-copyright-left {
		display: flex;
		align-items: center;
	}
	.footer-copyright-left ul {
		display: flex;
		margin-left: 40px;
	}
}
/*  SP用限定CSS */
@media screen and (max-width: 767px) {
	.footer-copyright {
		padding: 40px 0 ;
	}
	.footer-copyright-box {
		font-size: 10px;
	}
	.footer-copyright-left ul {
		justify-content: center;
		margin: 20px 0;
	}
	.footer-copyright-left ul li {
		font-size: 14px;
	}
}
/* ------------------------------
	アコーディオン
------------------------------ */
.accordion {
	border: solid 2px #000;
	border-radius: 12px;
	margin-bottom: 25px;
}
.accordion .accordion-title {
	background: #fff352;
	color: #1a1a1a;
	width: 100%;
	padding: 20px 60px 20px 20px;
	font-size: 21px;
	text-align: left;
	border-radius: 12px;
	font-weight: 800;
	position: relative;
}
.accordion.accordion-green .accordion-title {
	background: #c2e880;
}
.accordion.is-open .accordion-title {
	border-radius: 12px 12px 0 0;
}
.accordion .accordion-title::before {
	content: "";
	display: block;
	position: absolute;
	right: 20px;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 33px;
	height: 33px;
	border-radius: 50%;
	background: #fff;
}
.accordion .accordion-title span {
	display: block;
	width: 100%;
	position: relative;
}
.accordion .accordion-title span::before {
	content: "";
	display: block;
	position: absolute;
	margin: auto;
	right: -31px;
  	top: 0;
	bottom: 0;
	width: 15px;
	height: 3px;
	background: #000;
	z-index: 1;
}
.accordion .accordion-title span::after {
	content: "";
	display: block;
	position: absolute;
	margin: auto;
	right: -25px;
  	top: 0;
	bottom: 0;
	width: 3px;
	height: 15px;
	line-height: 1.5;
	background: #000;
	z-index: 1;
}
.accordion.is-open .accordion-title span::after {
	content: "";
	background: none;
}

.acc-content {
	padding: 20px;
}
.accordion h3 {
	font-size: 19px;
	font-weight: 800;
	padding-left: 20px;
	position: relative;
	font-weight: 800;
}
.accordion h3::before {
	content: "";
	position: absolute;
	top: 0.7em;
	left: 0;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background-color: #fff352;
	color: #fff;
	font-family: Arial, sans-serif;
	font-size: 15px;
	line-height: 21px;
	font-weight: bold;
	text-align: center;
}
.accordion .acc-content {
	visibility: hidden;
	height: 0;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
	background: #fff;
	padding: 0;
	will-change: height;
	border-radius: 0 0 15px 15px;
}
.accordion .acc-content .acc-inner {
	padding: 30px 25px;
}
.accordion.is-open .acc-content {
	visibility: visible;
}
/* + -アイコン */

/* PC用限定CSS */
@media print, screen and (min-width: 768px) {
	
}
/* SP用限定CSS */
@media screen and (max-width: 767px) {
	.accordion {
		border: solid 1px #000;
		margin-bottom: 20px;
		position: relative;
	}
	.accordion .accordion-title {
		padding: 15px 50px 15px 15px;
		font-size: 18px;
	}
	.accordion .accordion-title::before {
		right: 14px;
		width: 26px;
		height: 26px;
	}
	.accordion .accordion-title span::before {
		right: -30px;
		width: 13px;
	}
	.accordion .accordion-title span::after {
		right: -25px;
		height: 13px;
	}
	.accordion h3 {
		font-size: 15px;
		padding-left: 20px;
	}
	.accordion .acc-content .acc-inner {
		padding: 20px 15px;
	}

}
@media print, screen and (min-width: 768px) {
	.order1 { order: 1;}
	.order2 { order: 2;}
	.order3 { order: 3;}
}
/* ------------------------------
	リンク
------------------------------ */
/* マウスクリック時 */
*:focus:not(:focus-visible) {
	outline: none;
	text-decoration: none;
}
/* タブ移動時 */
.container *:focus-visible {
	outline: 3px solid #00a5ed;
	outline-offset: 0;
}
/* ----------------
 PC用限定CSS
----------------- */
@media print, screen and (min-width: 768px) {
	a:focus {
		outline:thin dotted;
		outline:5px auto -webkit-focus-ring-color;
		outline-offset:-2px;
		outline: 3px solid #00a5ed;
	}
	button:focus {
		outline:thin dotted;
		outline:5px auto -webkit-focus-ring-color;
		outline-offset:-2px;
		outline: 3px solid #00a5ed;
	}
}

.text-link {
	font-size: 18px;
	font-weight: 700;
	text-align: right;
	margin-top: 10px;
}
.text-link a::after {
	display: inline-block;
	content: "";
	width: 24px;
	height: 24px;
	background: url("../images/icon_arrow_next.svg") no-repeat center center;
	background-size: cover;
	margin-left: 8px;
  	vertical-align: -5px;
}
.text-link.text-link-down a::after {
	display: inline-block;
	content: "";
	width: 24px;
	height: 24px;
	background: url("../images/icon_arrow_down.svg") no-repeat center center;
	background-size: cover;
	margin-left: 8px;
  	vertical-align: -5px;
}
/* SP用限定CSS */
@media screen and (max-width: 767px) {
	.text-link {
		font-size: 15px;
	}
	.text-link a::after {
		width: 20px;
 		height: 20px;
		margin-left: 6px;
	}
}
/* ------------------------------
	タブ
------------------------------ */
.tab-contents {
	width: 100%;
}
.js-tab-change {
	color: #1a1a1a;
	text-decoration: underline;
	cursor: pointer;
}
/* タブメニュー */
.tab-menu {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	min-height: 80px;
	margin-bottom: 50px;
}
.tab-menu::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
	width: calc(100% + 14px);
	height: 2px;
	background-color: #1a1a1a;
}
.tab-menu a.tab-menu-item {
	text-decoration: none;
}
.tab-menu .tab-menu-item{
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	padding: 13px;
	border-top: 2px solid #bababa;
	border-left: 2px solid #bababa;
	border-right: 2px solid #bababa;
	border-bottom: 2px solid #1a1a1a;
	background-color: #fffad2;
	color: #bababa;
	font-size: 21px;
	font-weight: bold;
	border-radius: 12px 12px 0 0;
	text-align: center;
	text-decoration: none;
}
.tab-menu .tab-menu-item::before {
	content: "";
	display: block;
	position: absolute;
	bottom: -2px;
	left: -18px;
	z-index: 1;
	width: 18px;
	height: 2px;
	background-color: #1a1a1a;
}
.tab-menu .tab-menu-item:focus {
	color: #1a1a1a;
	text-decoration: none;
}
.tab-menu .tab-menu-item.is-active {
	border-top: 2px solid #1a1a1a;
	border-left: 2px solid #1a1a1a;
	border-right: 2px solid #1a1a1a;
	background-color: #fff352;
	border-bottom: 2px solid #fff352;
	color: #1a1a1a;
	text-decoration: none;
}
/* タブパネル */
.tab-panel {
	width: 100%;
}
.tab-panel-box {
	display: none;
}
/* is-show */
.tab-panel-box.is-show {
	display: block;
}
/* タブの中身 */
.tab-panel h3 {
	font-size: 30px;
	font-family: "M PLUS Rounded 1c", sans-serif;
	color: #00a5ed;
	text-align: center;
	margin: 0 auto 30px;
	font-weight: bold;
}
.tab-panel .tab-text {
	margin-bottom: 30px;
	position: relative;
	font-size: 15px;
}
.tab-panel .flexBox h4 {
	font-size: 21px;
	padding: 20px 5%;
	font-weight: 800;
	background-color: #fffad2;
	background-image: repeating-linear-gradient(135deg, transparent, transparent 9px, #fffce0 9px, #fffce0 12px );
	display: flex;
	align-content: center;
	justify-content: center;
	flex-wrap: wrap;
	border: solid 3px #fff069;
	border-radius: 12px;
	margin-bottom: 20px;
}
.tab-panel .flexBox h4 .number-circle {
	height: 20px;
	width: 20px;
	border-radius: 50%;
	background: #1a1a1a;
	color: #fff;
	display: grid;
	margin-right: 10px;
	font-size: 10px;
	justify-content: center;
	margin-top: 10px;
}
.tab-panel .tab-after {
	position: relative;
	color: #00a5ed;
	font-size: 18px;
	font-weight: bold;
	text-align: right;
	margin-top: 15px;
}
.tab-panel .tab-after::before {
	display: inline-block;
  	content: "・・・";
	margin-right: 7px;
}
.tab-deco01 {
	position: absolute;
	width: 57px;
	right: 20px;
	top: -40px;
}
.tab-deco02 {
	position: absolute;
	width: 85px;
	left: 35px;
  	bottom: -10px;
}
.tab-deco03 {
	position: absolute;
	width: 70px;
	right: -20px;
  	top: -80px;
}
.tab-deco04 {
	position: absolute;
	width: 80px;
	right: 0;
	top: -110px;
}
.tab-deco05 {
	position: absolute;
	width: 70px;
	right: -26px;
	bottom: -65px;
}
/* タブメニュー 緑 */
.pop-green .tab-menu .tab-menu-item {
	background-color: #edf8d9;
}
.pop-green .tab-menu .tab-menu-item.is-active {
	background-color: #c2e880;
	border-bottom: 2px solid #c2e880;
	text-decoration: none;
}
.pop-green .tab-panel h4 {
	font-size: 21px;
	padding: 20px 5%;
	font-weight: 800;
	background-color: #f1fae2;
	background-image: repeating-linear-gradient(135deg, transparent, transparent 9px, #f5fceb 9px, #f5fceb 12px );
	display: flex;
	align-content: center;
	justify-content: center;
	flex-wrap: wrap;
	border: solid 3px #c6e88b;
	border-radius: 12px;
	margin-bottom: 20px;
}
.pop-green .tab-text {
	margin-bottom: 30px;
}
.pop-green .tab-text h4 {
	padding: 15px;
}
/* ----------------
 PC用限定CSS
----------------- */
@media print, screen and (min-width: 768px) {
	/* タブメニュー */
	.tab-menu-item {
		transition: .15s ease-in-out;
	}
	.col2 .tab-menu-item {
		width: calc((100% - 14px) / 2);
	}
	.col3 .tab-menu-item {
		width: calc((100% - 28px) / 3);
	}
	.col4 .tab-menu-item {
		width: calc((100% - 42px) / 4);
	}
	.col2 .tab-menu .tab-menu-item:nth-child(even):after,
	.col3 .tab-menu .tab-menu-item:nth-child(3n):after,
	.col4 .tab-menu .tab-menu-item:nth-child(4n):after {
		content: "";
		display: block;
		position: absolute;
		bottom: -2px;
		right: -14px;
		z-index: 1;
		width: 14px;
		height: 2px;
		background-color: #1a1a1a;
	}
	.tab-menu-item:hover,
	.tab-menu-item:active {
		border-top: 2px solid #1a1a1a;
		border-left: 2px solid #1a1a1a;
		border-right: 2px solid #1a1a1a;
		color: #1a1a1a;
		background-color: #fff352;
		cursor: pointer;
	}
	/* タブの中身 */
	.tab-panel .flexBox {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.tab-panel .flexBox .tab-text {
		width: 100%;
	}
	/* タブメニュー 緑 */
	.pop-green .tab-menu-item:hover,
	.pop-green .tab-menu-item:active {
		color: #1a1a1a;
		background-color: #c2e880;
		cursor: pointer;
	}
	.pop-green .tab-text {
		display: flex;
		justify-content: space-between;
	}
	.pop-green .tab-text h4 {
		width: 18%;
		padding: 15px;
		margin-bottom: 0;
	}
	.pop-green .tab-text .list {
		width: 79%;
	}
	.tab-hight {
		height: 158px;
	}
}
@media print, screen and (min-width: 1601px) {
	.tab-panel .flexBox .tab-text {
		width: 540px;
	}
	.tab-deco03 {
		width: 92px;
		right: 0;
		top: 10px;
	}
	.tab-deco04 {
		width: 108px;
		right: 0;
		top: -60px;
	}
	.tab-deco05 {
		width: 85px;
		right: 0;
		bottom: 0;
	}
}
/* ----------------
 SP用限定CSS
----------------- */
@media screen and (max-width: 767px) {
	.tab-contents {
		padding: 30px 5%;
	}
	/* タブメニュー */
	.tab-menu {
		gap: 10px;
		min-height: 50px;
		margin-bottom: 30px;
	}
	.tab-menu::after {
		width: calc(100% + 10px);
	}
	.col2 .tab-menu .tab-menu-item {
		width: calc((100% - 20px) / 2);
	}
	.col3 .tab-menu .tab-menu-item {
		width: calc((100% - 20px) / 3);
	}
	.tab-menu .tab-menu-item {
		padding: 15px 0;
		font-size: 13px;
		line-height: 1.25;
	}
	.col2 .tab-menu .tab-menu-item {
		width: calc((100% - 20px) / 2);
	}
	.col3 .tab-menu .tab-menu-item {
		width: calc((100% - 20px) / 3);
	}
	.tab-menu .tab-menu-item::before {
		left: -13px;
    	width: 13px;
	}
	.tab-menu .tab-menu-item:nth-child(even):after {
		content: "";
		display: block;
		position: absolute;
		bottom: -2px;
		right: -11px;
		z-index: 1;
		width: 11px;
		height: 2px;
		background-color: #1a1a1a;
	}
	.tab-menu .tab-menu-item:last-child::after {
		content: "";
		display: block;
		position: absolute;
		bottom: -2px;
		right: -11px;
		z-index: 1;
		width: 11px;
		height: 2px;
		background-color: #1a1a1a;
	}
	/* タブの中身 */
	.tab-panel h3 {
		font-size: 20px;
	}
	.tab-panel .tab-text {
		margin-bottom: 50px;
	}
	.tab-panel .flexBox h4 {
		font-size: 17px;
		padding: 12px 12px 12px 45px;
		margin-bottom: 15px;
		position: relative;
		justify-content: left;
	}
	.tab-panel .flexBox h4 .number-circle {
		position: absolute;
		left: 16px;
    	top: 18px;
		margin: 0;
	}
	.pop-green .tab-text {
		margin-bottom: 60px;
	}
	.pop-green .tab-text h4 {
		font-size: 17px;
		padding: 12px 20px;
		margin-bottom: 15px;
		justify-content: left;
	}
	.tab-deco01 {
		width: 42px;
		right: 15px;
		top: -30px;
	}
	.tab-deco02 {
		width: 60px;
		bottom: -36px;
    	left: 0;
	}
	.tab-deco03 {
		width: 58px;
		right: 14px;
		top: -45px;
	}
	.tab-deco04 {
		width: 55px;
		right: 10px;
		top: auto;
		bottom: -56px;
	}
	.tab-deco05 {
		width: 60px;
		right: 5px;
		bottom: -60px;
	}
}