@charset "utf-8";
/* CSS Document */
html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 1.25;
	letter-spacing: 0.05em;
	font-size: 16px;
	color: #333333;
	color: #15264F;
}

header {
	width: 100%;
	position:fixed;/*固定する*/
    top: 0px;/*ブラウザの上からの距離はゼロ*/
	z-index: 999;
    overflow: hidden;
}

nav {}

section {
	display: block;
	padding-top: 75px;
	padding-bottom: 75px;
	width: 100%;
}

main {
	max-width: 1220px;
	width: 96%;
	margin: 0 auto;
}

.pc-only {
		display: block !important
}
	
.sp-only {
		display: none !important;
	}


@media only screen and (min-width : 641px) and (max-width : 1008px) {
  /*tablet用のcssを記述*/

	.pc-only {
			display: none !important
	}
		.sp-only {
		display:  none !important;
	}
}
@media screen and (max-width:640px) {
  /*スマホ用のcssを記述*/
	.pc-only {
			display: none !important
	}
	.sp-only {
		display: block !important
	}
}


/*--------------
font 要素
--------------*/
h1 {
	text-align: center;
	font-size: 36px;
	font-weight: 700;
}

h2 {
	color: #0074C8;
	font-size: 2em;
	text-align: center;
	margin-bottom: 43px;
	font-weight: 700;
	letter-spacing: 0.1em;
  position: relative;
  padding: 1.5rem;
  text-align: center;
}
h2:before {
  position: absolute;
  bottom: -10px;
  left: calc(50% - 30px);
  width: 60px;
  height: 5px;
  content: '';
  border-radius: 3px;
  background: #15264F;
}

.roboto {
	font-family: 'Roboto', sans-serif;
	font-size: 1.2em
}



@media only screen and (min-width : 641px) and (max-width : 1008px) {
  /*tablet用のcssを記述*/
}
@media screen and (max-width:640px) {
  /*スマホ用のcssを記述*/
	h2 {
		font-size: 1.6em
	}
}

/*--------------
header 要素
--------------*/
.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: 0px 0px 3px 0 #333333;
	height: 60px;
	z-index: 9999;
	background-color: #fff;
}
.header_inner {
	width: 96%;
	margin: 0 auto;
}

h1.logo {
	width: 143px;
	margin-left: 10px;
}
h1.logo.__header {
}
h1 img {
	object-fit: contain
}


@media only screen and (min-width : 641px) and (max-width : 1008px) {
  /*tablet用のcssを記述*/
}
@media screen and (max-width:640px) {
  /*スマホ用のcssを記述*/
}


/*--------------
nav 要素
--------------*/
.nav_inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
    width: 100%;


}
.nav-wrapper {
	width: calc(100% - 362px);
}

.sp-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
    margin-right: 2%;
}

.sp-nav-title-area {
	display: none
}
.sp-nav-list-wrap {
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
}

.sp-nav-list {
	font-weight: 700;
	font-size: 14px;
    padding:0;
	width: fit-content;
}

.bl-btn.__saiyou {
    background-color: #15264F;
    width: 121px;
    margin: 0;
    padding: 0;
    text-align: center;
    border-radius: 4px;
}
.__saiyou p.b-btn-txt {
    padding: 0.5em 1em;
}
.sp-nav .bl-btn p::after {
	display: none;
}
.sp-nav-list:first-child {
	display: none;
}
.sp-nav-list:last-child {
	display: none;
}
.bl-btn.__saiyou span {
	display: none
}




@media screen and (max-width:1008px) {
  /*スマホ用のcssを記述*/

/* 
ハンバーガーメニューが開いた時の中のデザイン
=================================== */
.sp-nav-title-area {
    width: 100%;
    text-align: center;
    margin-top: 55px;
    margin-bottom: 35px;
}

.logo.__nav {
	margin: 35px auto 0;
	width: 60%;
}
.sp-nav-ttl {
	color: #0074C8;
	font-weight: 700;
}

.sp-nav-list-wrap {
	max-width: 250px;
	width: 85%;
	margin: 0 auto;
    display: flex;
    flex-flow: column;
}

.sp-nav-list {
	border-bottom: 2px dotted #707070;
	font-weight: 700;
	font-size: 16px;
    padding: 0.8em 0 0.8em 0.5em;
    width: 100%;
}

.sp-nav-list a {
	color: #15264F;
}
	
	
.bl-btn.__saiyou {
    background-color: #15264F;
    width: fit-content;
	margin: 35px auto 0 auto;
    border-radius: 50vh;
    padding: 0.5em 2em;
}

.sp-nav-list:first-child {
	display: block;
}
.sp-nav-list:last-child {
	display: block;
}
.bl-btn.__saiyou span {
	display: contents
}
.sp-nav-title-area {
	display: block
}



/* 
hamburger(ハンバーガーアイコン)
=================================== */
.hamburger {
  position: absolute;
  right: 20px;
  top: 14px;
  width: 44px;
  height: 40px;
  cursor: pointer;
  z-index: 300;
}

.hamburger__line {
  position: absolute;
  width: 44px;
  height: 4px;
  right: 0;
  background-color: #000;
  transition: all 0.5s;
}

.hamburger__line--1 {
  top: 0px;
}

.hamburger__line--2 {
  top: 14px;
}

.hamburger__line--3 {
  top: 28px;
}

/*ハンバーガーがクリックされたら*/
.open .hamburger__line--1 {
  transform: rotate(-45deg);
  top: 8px;
}

.open .hamburger__line--2 {
  opacity: 0;
}

.open .hamburger__line--3 {
  transform: rotate(45deg);
  top: 8px;
}

/* 
sp-nav(ナビ)
=================================== */
.sp-nav {
  position: fixed;
  right: -100%; /*ハンバーガーがクリックされる前はWindow右側に隠す*/
  top: 0;
  width: 70%; /* 出てくるスライドメニューの幅 */
  height: 100vh;
  background-color: #fff;
  transition: all 0.5s;
  z-index: 200;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
    display: block;
	margin: 0;
}

/*ハンバーガーがクリックされたら右からスライド*/
.open .sp-nav {
  right: 0;
}


/* 
black-bg(ハンバーガーメニュー解除用bg)
=================================== */
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 100;
}

/*ハンバーガーメニューが開いたら表示*/
.open .black-bg {
  opacity: 0.3;
  visibility: visible;
}

}

@media only screen and (min-width : 641px) and (max-width : 1008px) {
  /*tablet用のcssを記述*/
}
@media screen and (max-width:640px) {
  /*スマホ用のcssを記述*/
	
	.hamburger {
		width: 37px;
	}
	.hamburger__line {
		height: 3px;
	}
}

/*--------------
kv 要素
--------------*/

.kv {
	height: auto;
	padding-bottom: 150px;
	padding-top: 0px;
	margin-top: 160px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

.kv-txt-area {
	width: 50%;
	text-align: left;
}

.kv-txt-area h1{
	font-size: 2.2em;
	line-height: 1.7em;
	text-align: left;
}

.kv-txt-area h3 {
	color: #ED8531;
	font-weight: 700;
	margin:40px 0 50px 0;
}

.kv-btn-area {
	background-color: #15264F;
	padding:1em 1.5em;
	width: fit-content;
}
.kv-btn::after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
    margin-left: 22px;
	content: "\f0d7";
	color: #fff;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}


.kv-btn-area a {
	color: #fff;
}

.kv-info-area {
	background-color: #E6EF62;
	padding: 0.5em 2em;
	width: fit-content;
	border-radius: 100vh;
	text-align: center;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 50%);
	z-index: 1;
}
p.kv-info {
	font-weight: 700
}


.kv-img-wrap {
	width: 50%;
}
.kv-img-area {
	background: url("../img/kv.png") no-repeat center left;
	background-size: 100%;
	width: 100%;
	padding-top:74.44%;
}




@media only screen and (min-width : 641px) and (max-width : 1008px) {
  /*tablet用のcssを記述*/
}
@media screen and (max-width:640px) {
  /*スマホ用のcssを記述*/
	.kv {
		margin-top: 96px;
	}
	
	.kv-txt-area {
		width: 100%;
		text-align: left;
		position: relative;
	}
	
	.kv-txt-area h1 {
		font-size: 24px;
		line-height: 1.3em;
		text-align: left;
	}
	
	.kv-txt-area h3 {
		margin-bottom: 280px;
		margin-top: 20px
	}
	
	.kv-img-wrap {
		width: 100%;
		position: absolute;
		top: 43%;
		left:50%;
		transform: translate(-50%, -50%)
	}
	
	.kv-img-area {
		background-size: 100%;
		width: 90%;
		margin: 0 auto;
    	padding-top: 64.44%;
		
	}
	
	.kv-btn-area {
		margin: 0 auto;
	}
	
	.kv-info-area{
		width: 90%
	}
	
}

/*--------------
solution 要素
--------------*/

/*== 解決できること 上部 ==*/
.problem {
	background-color: #CDE4F5;
	box-shadow: 0 0 0 100vmax  #CDE4F5;
	clip-path: inset(0 -100vmax)
}

.pbl-box-area {
	position: relative;
	margin-top: 100px;
}

.pbl-bg-img01 {
	position: absolute;
	background: url("../img/bg01.png") no-repeat center center / contain;
	width: 404px;
	padding-top: 245px;
	top: 0;
	right: 0;
}

.pbl-bg-img02 {
	position: absolute;
	background: url("../img/bg02.png") no-repeat center center / contain;
	width: 411px;
	padding-top: 302px;
	bottom: 0;
	left: 0;
}

.pbl-box {
	width: 568px;
	height: auto;
	background-color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	border-radius: 10px;
	padding: 40px 0 30px;
}

.pbl-no-area {
	background-color: #E6EF62;
	border-radius: 0 50vh 50vh 0;
	width: 200px;
	font-size: 22px;
	font-weight: 700;
	padding: 0.2em 0 0.2em 0.8em;
}

.pbl-no-area span {	
	font-family: 'Roboto', sans-serif;
	font-size: 2.2em;
}

.__box01 {
	margin-bottom: 58px
}
.__box02 {
	margin:0 auto 58px auto;
}
.__box03 {
	margin-left:auto;
}

ul.check-area {
	margin-right: 1em;
	width: calc(100% - 250px)
}

ul.check-area li {
	font-weight: 700;
}
ul.check-area li ~ li {
	margin-top: 1.2em;
}

.check-area-txt::before {
	content: "";
  display: inline-block;
	background-image: url("../img/check.png");
	width: 23px;
	height: 23px; 
	background-size: contain;
  vertical-align: middle;
　　margin-right:10px;
	transform: translate(-8px, 0)
}

.bl-btn {
	background-color: #0074C8;
	border-radius: 50vh;
	padding: 1em 2em;
	margin: 0 auto;
	font-weight: 700;
	margin-top:  70px;
}
.bl-btn p::after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
    margin-left: 22px;
	content: "\f0d7";
	color: #fff;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.bl-btn a {
	color: #fff
}

/*== 解決できること 下部 ==*/
.solution {
	background-color: #E6EF62;
    background: linear-gradient(to right, #fff 0%, #fff 70%, #E6EF62 70%,  #E6EF62 100%);
	box-shadow: 95vh 0 0 0 #E6EF62;
}

.sol-box {
	margin-bottom: 100px;
}
.sol-no-ttl {
	background-color: #0074C8;
	border-radius: 0 50vh 50vh 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: fit-content;
	padding: 8px 5em 8px 1em;
    box-shadow: -434px 0 0 0 #0074C8;
}

.sol-no {
	font-size: 74px;
	font-family: 'Roboto', sans-serif;
	color: #FFE600;
	font-weight: 700;
}

.sol-ttl-area {
	margin-left: 1em;
}

.sol-sub-ttl {
	font-size: 14px;
}

.sol-ttl {
	font-size: 25px;
	font-weight: 700
}

.sol-ttl-area {
	color: #fff;
}

.sol-area {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 95%;
	margin-left: 5%;
	margin-top: 60px
}

.sol-img-area {
	width: 50%;
	text-align: center
}


.sol-img-area img {
	object-fit: contain;
	width: 80%;
}

.sol-txt-area {
	width: 50%
}

.sol-area-ttl {
	font-size: 25px;
	font-weight: 700;
	margin-bottom: 30px;
	border-bottom: 3px solid #ED8531;
	padding-bottom: 30px;
}



@media only screen and (min-width : 641px) and (max-width : 1008px) {
  /*tablet用のcssを記述*/
	

	/*== 解決できること 上部 ==*/
	.problem {
		
	}
	
	.pbl-box-area {
		padding-bottom: 200px
	}
	.pbl-bg-img01 {
		width: 31%;
		padding-top: 19%;
		top: 227px;
	}
	.pbl-bg-img02 {
		width: 49%;
		padding-top: 36%;
	}

	/*== 解決できること 下部 ==*/
	.solution {
		background-color: #E6EF62;
		background: linear-gradient(to right, #fff 0%, #fff 20%, #E6EF62 20%,  #E6EF62 100%);
		box-shadow: 40vh 0 0 0 #E6EF62;
	}
	.sol-img-area {
		width: 40%
	}
	.sol-img-area img {
		object-fit: contain;
		width: 95%;
	}
	.sol-txt-area {
		width: 60%
	}
}
@media screen and (max-width:640px) {
  /*スマホ用のcssを記述*/
	

	/*== 解決できること 上部 ==*/
	
	.pbl-box {
		width: 95%;
		display: flex;
		flex-flow: column;
		border-radius: 10px;
		padding: 0px 0 40px;
	}
	
	.pbl-box-area {
		padding-bottom: 270px
	}
	
	.__box01 {
		margin:0 auto 58px auto;
	}
	.__box02 {
		margin:0 auto 58px auto;
	}
	.__box03 {
		margin:0 auto;
	}

	.pbl-bg-img01 {
		display: none
	}
	.pbl-bg-img02 {
		width: 319px;
		padding-top: 235px;
		bottom: 0;
		left: 50%;
		transform: translate(-50%,0)
	}
	.pbl-no-area {
    	border-radius: 0 0vh 20px 20px;
	    margin-bottom: 55px;
	}
	ul.check-area {
    width: fit-content;
		margin: 0 auto;;
	}

	ul.check-area li {
		font-weight: 700;
	}
	ul.check-area li ~ li {
		margin-top: 1.2em;
	}
	.check-area-txt {
		font-size: 14px;
	}
	.pbl-box {
		margin-top: 50px;
	}


	/*== 解決できること 下部 ==*/
	.solution {
		background-color: #E6EF62;
		background: linear-gradient(to right, #fff 0%, #fff 20%, #E6EF62 20%,  #E6EF62 100%);
		box-shadow: 50px 0 0 0 #E6EF62;
	}
	
	.sol-no-ttl {
    box-shadow: -100px 0 0 0 #0074C8;
	}
	
	.sol-sub-ttl {
		font-size: 14px;
	}
	.sol-ttl {
		font-size: 20px;
	}
	
	.sol-area {
		flex-flow: column;
		margin: 30px auto 0;
	}
	
	.sol-img-area {
		width: 100%
	}
	
	.sol-txt-area {
		width: 100%
	}
	.sol-area-ttl {
		font-size: 20px;
	}
	.sol-area-txt {
		font-size: 14px;
	}
	
	
	
}

/*--------------
Contact area 要素
--------------*/

.contact {
	background-color: #0074C8;
	box-shadow: 0 0 0 100vmax  #0074C8;
	clip-path: inset(0 -100vmax)
}

.contact-info-area {
	background-color: #fff;
	border-radius: 35px;
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding: 3em 0;
}

.info-area-left {
	max-width:345px;
	width: 50%;
	text-align: center;
}

.info-area-left h1 {
	margin: 0 auto;
}

.info-left-txt {
	width: 345px;
	text-align: left;
	padding: 1em 1.7em;
	font-size: 14px;
	border-top: 2px dotted #707070;
	border-bottom: 2px dotted #707070;
	margin-top: 15px;
}


.info-area-right {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	width: 50%;
}

.cntact-btn {
	width: 48%;
	border-radius: 15px;
	text-align: center;
	font-size: 14px;
	padding: 1em;
}

.__form {
	color: #fff;
	background-color: #0074C8;
}

.__form i {
	font-size: 40px;
	margin: 0.5em 0 0.7em;
}

.contact-btn-bgwt {
	background-color: #fff;
	border-radius: 50vh;
	padding: 1em;
	font-weight: 700;
	margin-bottom: 14px
}

.contact-btn-bgwt a {
	color: #15264F
}

.__tel {
	border: 7px solid #0074C8;
    margin-left: 5%;
}

.__tel i {
	font-size: 40px;
	margin: 0.5em 0 0.7em;
}
.contact-btn-no {
	font-size: 27px;
	font-weight: 700;
	margin-bottom:8px;
	margin-top: 5px;
}


.contact-btn-txt {
}


@media only screen and (min-width : 641px) and (max-width : 1008px) {
  /*tablet用のcssを記述*/
	
	.contact-info-area {
		flex-flow: column;
	}
	
	.info-area-right {
		width: 80%;
		margin-top: 50px
	}
	
}
@media screen and (max-width:640px) {
  /*スマホ用のcssを記述*/
	
	.contact .header_logo {
		max-width: 300px;
		width: 75%
	}
	.contact-info-area {
		flex-flow: column;
	}

	.info-area-left {
		max-width:345px;
		width: 90%;
		margin: 0 auto;
		text-align: center;
	}
	

	.info-left-txt {
		max-width: 345px;
		width: 90%;
		margin: 15px auto 0;
	}

	.info-area-right {
		width: 80%;
		margin-top: 50px;
		flex-flow: column;
	}
	.cntact-btn {
		max-width: 320px;
		width: 90%;
		border-radius: 15px;
		text-align: center;
		font-size: 14px;
		padding: 1em;
	}
	
	.__form {
		margin: 0 auto 30px auto;
		
	}
	
	.__tel {
		margin: 0 auto;
	}
}

/*--------------
system 要素
--------------*/

.sys-txt {
	max-width: 600px;
	width: 100%;
	margin: 0 auto;
}

.sys-img {
	max-width:894px;
	margin: 0 auto;
}

.sys-img img {
	object-fit: contain;
}



@media only screen and (min-width : 641px) and (max-width : 1008px) {
  /*tablet用のcssを記述*/
}
@media screen and (max-width:640px) {
  /*スマホ用のcssを記述*/
}

/*--------------
function 要素
--------------*/
section .function {
}
.function {
	background-color: #E6EF62;
	width: 95%;
	margin: 0 auto;
	border-radius: 20px;
	margin-bottom: 200px;
	padding-bottom: 20px;
}

.function-wrap {
    margin-top: 93px;
}

.fun-box-list {
	display: flex;
	justify-content: space-evenly;
	align-items: baseline;
	flex-wrap: wrap;
}

.fun-box {
	width: 23%;
	border-radius: 15px;
	background-color: #fff;
	text-align: center;
	position: relative;
	margin-bottom: 105px;
	padding: 3em 1em 1em;
}

.fun-box i {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%, -80%);
	font-size: 40px;
}

.sys-ttl {
	font-size: 18px;
	color: #0074C8;
	font-weight: 700;
	margin-bottom: 1em;
}
.sys-txt-area {
	margin-bottom: 60px;
}
.sys-txt {
	font-size: 14px;
    max-width: 600px;
    width: 80%;
}

.sys-add-txt {
	text-align: center;
	font-size: 14px;
}

@media only screen and (min-width : 641px) and (max-width : 1008px) {
  /*tablet用のcssを記述*/
	.fun-box {
		width: 45%
	}
}
@media screen and (max-width:640px) {
  /*スマホ用のcssを記述*/
	.fun-box {
		width: 45%
	}
}

/*--------------
plan 要素
--------------*/
.plan {
	background-color: #CDE4F5;
	border-radius: 50px 0 0px 50px;
	margin-left: 5%;
	box-shadow: 500px 0 0 0  #CDE4F5;
}


.plan-area {
	background-color: #fff;
	max-width: 800px;
	width: 95%;
	margin: 0 auto;
	padding-bottom: 2%;
	box-shadow: 0 3px 6px rgba(0,0,0,.1);
	margin-bottom: 100px;
}

.plan-ttl-area {
	background-color: #0074C8;
	color: #fff;
	text-align: center;
	font-size: 18px;
	font-weight: 700;
	padding: 0.5em 0;
}

.plan-ttl {
	padding: 0.7em auto;
}

.plan-price-area {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 68px 0 50px;
}

.plan-mon {
	width: 50%;
	position: relative;
	text-align: center;
}

.plan-yer {
	width: 50%;
	text-align: center;
}

.blk-icon {
	background-color: #15264F;
	border-radius: 50vh;
	padding: 0.2em 1.5em;
	width: fit-content;
	font-size: 18px;
	color: #fff;
	font-weight: 700;
	margin: 0 auto 30px;
}

.plan-yer .blk-icon {
	color: #FFE600;
}

.plan-mon::after {
	content: "";
	position: absolute;
	background-color: #707070;
	width: 1px;
	height: 100%;
	right: 0%;
	top:0;
	transform: translate(0, 0);
}

.price-txt {
	font-weight: 700;
	font-size: 34px
}

.price-txt span {
	font-size: 0.5em
}

.plan-options-area {
	background-color: #E6EF62;
	border-radius: 21px;
    margin: 0 3% 3%;
    padding: 4% 2% 1%;
}

.plan-options-wrap {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	flex-wrap: wrap;
}
.plan-options {
	width: 32%;
	font-weight: 700;
	margin-bottom: 4% 
}

.plan-options::before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f058";
	color: #0074C8;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
	width: 23px;
}

.price-item-area {
	background-color: #fff;
	max-width: 800px;
	width: 95%;
	margin: 0 auto;
	position: relative;
	padding: 100px 0 50px;
}

.price-item-ttl {
	position: absolute;
	border: 2px solid #15264F;
	top:-22px;
	left: 50%;
	transform: translate(-50%, 0);
	width: fit-content;
	padding: 0.5em 2em;
	background-color: #fff;
	border-radius: 50vh;
	font-weight: 700;
}

.price-item-wrap {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	text-align: center;
	font-weight: 700;
}

.price-persona {
	position: relative;
}
.price-personal::after {
	content: "";
	position: absolute;
	border-left: 2px dotted #707070;
	width: 2px;
    height: 173px;
    right: 50%;
    top: 86px;
    transform: translate(50%, 0);
}


.icon-for-og {
	background-color: #ED8531;
	border-radius: 50vh;
	color: #fff;
	width:  216px;
	height: auto;
	padding: 0.3em;
	margin-bottom: 50px;
}

.price-item-txt {
	margin-bottom: 10px;
}


.bl-btn.__plan {
	background-color: #15264F;
	width: fit-content;
}

@media only screen and (min-width : 641px) and (max-width : 1008px) {
  /*tablet用のcssを記述*/
	
	.plan-options {
		width: 45%
	}
}
@media screen and (max-width:640px) {
  /*スマホ用のcssを記述*/
	.plan {
    	box-shadow: 59px 0 0 0 #CDE4F5;
		margin: 0;
	}
	.plan-area {
	    margin: 0 1% 100px auto;
    padding-bottom: 4%;
	}
	.plan-price-area {
		flex-flow: column;
		margin: 50px auto 50px;
    	max-width: 310px;
		width: 90%;
	}
	.plan-mon, 	.plan-yer {
		display: flex;
		justify-content: space-around;
		align-items: center;
		width: 100%
	}
	.plan-mon {
		margin-bottom: 30px;
	}
	.plan-mon::after {
		display: none;
		width: 100%
	}
	.blk-icon {
		margin: 6px auto 0;
    width: 123px;
    padding: 0.2em 1em;
	}
	.price-txt-area {
		width: 100%;
	}
	.price-txt  {
		text-align: right;
    padding-right:5%;
	}
	.plan-options-area {
		background-color: #E6EF62;
		border-radius: 21px;
		margin: 0 3% 3%;
		padding: 8% 0% 6%;
	}
	
	.plan-options-wrap {
		flex: none;
		flex-flow: column;
	}
	
	.plan-options {
		text-align: left;
		width: 210px;
	}
	
	/*== 教材システムのみ ==*/
	.price-item-ttl {
		width: 290px;
		padding: 0.5em 1em;
		text-align: center;
	}
	
	.price-item-area {
	    margin: 0 1% 0 auto;
    	padding: 67px 0 50px;
	}
	.price-item-wrap {
		flex-flow: column;
	}
	.price-personal {
		width: 100%;
    	padding-bottom: 105px;
	}
	.icon-for-og {
		margin: 0 auto 35px auto;
	}
	.price-item-area .price-txt {
		text-align: center;
		padding: 0;
	}
	.price-company {
		width: 100%;
	}
	.price-personal::after {
		content: "";
		position: absolute;
		border-bottom: 2px dotted #707070;
		width: 173px;
		height: 2px;
		right: 50%;
		top: 50%;
		transform: translate(50%, 0);
	}
}

/*--------------
about 要素
--------------*/
.about-info {
  max-width:715px;
	width: 90%;
  //padding: 30px;
  box-sizing: border-box;
	margin: 80px auto 0 auto;
}
  
.about-info-inner {
  //padding: 30px;
  box-sizing: border-box;
  background-color: #ffffff;
}
  
.about-info-inner dl {
  overflow: hidden;
  font-size: 14px;
  margin: 0;
}

.about-info-inner dt {
  width:20%;
  float: left;
  clear: left;
  padding: 20px 20px;
  border-bottom: 3px solid #ED8531;
  box-sizing: border-box;
	font-weight: 700
}

.about-info-inner dd {
  width: 80%;
  float: left;
  margin-left: 0em;
  padding: 20px 20px;
  border-bottom: 3px solid #FFB579;
  box-sizing: border-box;
}
  
.about-info-inner dl dt.first_dt {
  border-top: 3px solid #ED8531;
}
.about-info-inner dl dd.first_dd {
  border-top: 3px solid #FFB579;
}




@media only screen and (min-width : 641px) and (max-width : 1008px) {
  /*tablet用のcssを記述*/
}
@media screen and (max-width:640px) {
  /*スマホ用のcssを記述*/
	

	.about-info-inner dt {
	  width:25%;
	  padding: 20px 0px;
	}

	.about-info-inner dd {
	  width: 75%;
	  padding: 20px 0px;
	}

}

/*--------------
form 要素
--------------*/
.form {
	margin-bottom: 100px;
}

.form-wrap {
	margin-top: 80px;
}

@media only screen and (min-width : 641px) and (max-width : 1008px) {
  /*tablet用のcssを記述*/
}
@media screen and (max-width:640px) {
  /*スマホ用のcssを記述*/
}

/*--------------
footer 要素
--------------*/

footer {
	border-top: 20px solid #0074C8;
	margin-bottom: 30px;
	position: relative;
}

footer::before {
	position: absolute;
	content: "";
	top: -30px;
	left: 0;
	border: 10px solid #FFE600;
	width: 100%;
	z-index: -1;
}

h1.logo.__footer {
	margin: 4% auto 0;
}
.copyright {
	margin: 3% auto 0;
	width: fit-content
}
footer small {
	font-size: 10px;
}
