@charset "UTF-8";
/* CSS Document */

::placeholder {
  color: #ccc;
}

html {
	scroll-behavior: smooth;
}

.pc_disp {
	display: block;
}

.sp_disp {
	display: none;
}

body {
	font-family: 'Noto Sans JP', sans-serif;
	min-width: 1100px;
	color: #333333;
	margin: 0 auto;
}

/*CV*/

.cv_link_area {
    max-width: 1100px;
    margin: 100px auto;
    text-align: center;
}

.cv_link_area .campaign {
    width: 60%;
    margin: 0 auto;
}

a.cv_link_area_button {
    display: flex;
    text-align: center;
    align-items: center;
    max-width: 500px;
    border: 3px solid #000;
    padding: 30px;
    color: #000;
    background-size: 20px;
    margin: 20px auto 0;
    background-position: center right 40px;
    background-image: url("../2511LPimg/fv_icon_arrow.png");
    border-radius: 100px;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 600;
    background-repeat: no-repeat;
	transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
}

a.cv_link_area_button:hover {
    color: #ff7c24;
	border:3px solid #ff7c24;	
}

a.cv_link_area_button img {
    width: 40px;
    height: auto;
    margin-right: 10px;
}


/*アコーディオン*/
.toggle {
	display: none;
}
.accordion_area {
    background: #fff;
    border-radius: 20px;
}
.Label {
    padding: 30px;
    display: block;
    color: #ff7c24;
    background: #fff;
    font-family: zen-maru-gothic, sans-serif;
    font-size: 3rem;
    border-radius: 20px;
}
.Label::before{
    content:"";
    width: 12px;
    height: 12px;
    border-top: 2px solid #ff7c24;
    border-right: 2px solid #ff7c24;
    -webkit-transform: rotate(45deg);
    position: absolute;
    top: calc( 50% - 12px );
    right: 40px;
    transform: rotate(135deg);
}
.Label,
.content {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s;
}
.content {		/*本文*/
    height: 0;
    margin-bottom: 20px;
    background: #fff;
    overflow: hidden;
    border-radius: 20px;
}
.toggle:checked + .Label + .content {
    height: auto;
    padding: 30px 50px 50px;
    transition: all .3s;
}
.toggle:checked + .Label::before {
    transform: rotate(-45deg) !important;
}

.label_formarea {
    font-size: 1.5rem!important;
    padding: 17px 0 17px 22px;
    border-radius: 0;
    font-family: 'Noto Sans JP', sans-serif;
    margin-top: 20px;
	color: #fff;
	background: #2b84be;
}

.content_formarea {
    margin-bottom: 0;
	background: #2b84be;
	color: #fff!important;
    border-radius: 0!important;
}

.content_formarea p {
	color: #fff!important;
	opacity: 1!important;
}

.label_formarea::before {
    content:"";
    width: 12px;
    height: 12px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    position: absolute;
    top: calc( 50% - 12px );
    right: 20px;
    transform: rotate(135deg);
}

.toggle:checked + .label_formarea::before {
    transform: rotate(-45deg) !important;
    top: 26px;
}

.toggle:checked + .Label + .content_formarea {
    border-radius: 0;
    height: auto;
    padding: 0px 30px 20px;
    transition: all .3s;
}

/*header*/

header {
    position: fixed;
    width: 100%;
    padding: 28px 40px;
    display: flex;
    justify-content: space-between;
    z-index: 9999;
}

.header_logo {
    width: 180px;
}

a.header_tel {
    width: 340px;
}


/*ファーストビュー*/

section.fv {
    width: 100%;
    height: auto;
    background-image: url("../2511LPimg/fv_right.png"), url("../2511LPimg/fv_left.png");
    background-position: right center, left bottom;
    background-size: contain, 41%;
    background-repeat: no-repeat, no-repeat;
    padding: 80px 0 110px;
    background-color: #ffde58;
    position: relative;
}

.fv_wave {
    position: absolute;
    width: 100%;
    height: 100px;
    bottom: 0;
    left: 0;
}

.fv_wave img {
	width: 100%;
	height: 100%;
}

.fv_inner {
    max-width: 1100px;
    margin: 0 auto;
}

img.campaign {
    margin-bottom: 10px;
    width: 92%;
}

.fv_inner h1 {
    width: 53%;
}

.fv_inner h1 a {
	transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
}

.fv_inner h1 a:hover {
	opacity: 0.5;
}

img.fv_title {
    margin-bottom: 40px;
}

a.request_btn img {
    width: 32px;
    height: auto;
    margin-right: 14px;
}

a.request_btn {
    display: flex;
    width: max-content;
    padding: 26px 96px;
    align-items: center;
    background-color: #fff;
    border-radius: 100px;
    font-size: 2.4rem;
    font-weight: bold;
	border: 2px solid #fff;
    color: #333333;
    background-image: url("../2511LPimg/fv_icon_arrow.png");
    background-position: center right 40px;
    background-repeat: no-repeat;
    background-size: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    letter-spacing: 1px;
	transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
}

a.request_btn:hover {
	color: #fd7a20;
	border: 2px solid #fd7a20;
}

/*お悩み*/

section.trouble {
    background: #fff8f0;
    padding: 20px 0 150px 0;
}

.trouble_inner {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 30px;
    text-align: center;
    position: relative;
}

ul.trouble_list {
    display: flex;
    justify-content: space-between;
}

ul.trouble_list li {
    width: 31%;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
}

ul.trouble_list li h3 {
    font-size: 2rem;
    font-weight: bold;
    line-height: 36px;
}

ul.trouble_list li h3 span {
    font-size: 2rem;
    color: #fd7a20;
}

.trouble_inner h2 {
    width: 50%;
    margin: 0 auto 30px;
}

.trouble_inner h2:after {
    content: "";
    display: block;
    width: 1px;
    border-right: 4px dotted;
    height: 20px;
    margin: 30px auto 0;
}

.trouble_baloon {
    position: absolute;
    width: 200px;
    top: -150px;
    right: 10%;
    margin-left: -100px;
}

.trouble_image {
    width: 80%;
    margin: 0 auto 10px;
}

/*CONCEPT*/

section.concept {
    padding: 150px 0 50px;
}

.concept_inner {
    max-width: 1100px;
    margin: 0 auto;
}

.concept_inner h2 {
    text-align: center;
    width: 90%;
    margin: 0 auto 40px;
}

.concept_inner h2 span {
    width: 50%;
    display: block;
    margin: -270px auto 40px;
}

.concept_detail {
    padding: 60px;
    border-radius: 20px;
    border: 2px dashed #fd7a20;
    margin: 100px 0;
    position: relative;
}

.concept_detail_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.concept_image {
    width: 36%;
    border: 2px solid #fd7a20;
    border-radius: 20px;
    margin-top: -120px;
    background: #fff;
    overflow: hidden;
}

.concept_cap h3 {
    font-size: 3.4rem;
    font-family: zen-maru-gothic, sans-serif;
    margin-bottom: 24px;
}

.concept_cap p {
    font-size: 2rem;
    line-height: 42px;
    font-weight: 500;
}

.concept_number_even {
    position: absolute;
    top: -30px;
    left: 60px;
    width: 140px;
}

.concept_number_odd {
    color: #fd7a20;
    position: absolute;
    right: 60px;
    width: 120px;
    top: -34px;
    font-size: 4rem;
}

.concept_cap {
    width: 58%;
    padding-bottom: 20px;
}

a.more_contents_link {
    display: block;
    text-align: center;
    width: max-content;
    margin: 0 auto 100px;
    border: 3px solid;
    padding: 20px 60px;
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    border-radius: 100px;
    background-image: url(../2511LPimg/fv_icon_arrow.png);
    background-position: center right 22px;
    background-repeat: no-repeat;
    background-size: 20px;
	transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
}

a.more_contents_link:hover {
    color: #fd7a20;
    border: 3px solid #fd7a20;
}

p.concept_title_cap {
    text-align: center;
    font-size: 1.6rem;
    line-height: 30px;
    font-weight: 600;
}

ul.concept_main_images {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 40px auto 20px;
    flex-wrap: wrap;
}

ul.concept_new_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

ul.concept_new_list li {
    width: 24%;
    padding: 30px 0;
    background: #fff8f0;
    text-align: center;
    font-family: zen-maru-gothic, sans-serif;
    font-size: 1.8rem;
    margin: 0.5%;
    border-radius: 8px;
    box-shadow: 1px 1px 0 #fd7a20;
}

ul.concept_new_list li span {
    display: block;
    background: #fd7a20;
    padding: 5px 30px;
    width: max-content;
    letter-spacing: 1px;
    color: #fff;
    font-size: 1.5rem;
    border-radius: 100px;
    margin: 0 auto 15px;
}

ul.concept_new_list li p {
    font-size: 1.8rem;
}

p.concept_new_text {
    text-align: center;
    margin: 30px 0;
    font-size: 1.6rem;
    line-height: 30px;
    font-weight: bold;
}

ul.concept_main_images li {
    width: 48%;
    margin: 0 1% 2% 1%;
}

ul.concept_main_images li {
    border-radius: 10px;
    box-shadow: 8px 8px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid #aaa;
}

/*メリット*/

.merit_inner {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 20px;
    background: #fff3f5;
    text-align: center;
    padding: 100px;
}

.merit_list {
    display: flex;
    justify-content: space-between;
}

.merit_detail {
    width: 45%;
}

.merit_line {
    border-right: 1px dashed #fe7181;
    width: 1px;
}

.merit_inner h3 {
    font-size: 2.6rem;
    margin-bottom: 15px;
	font-family: zen-maru-gothic, sans-serif;
	font-weight: 500;
	font-style: normal;
}

.merit_inner p {
    font-size: 1.6rem;
    line-height: 30px;
}

.merit_inner p span {
    display: block;
    margin-top: 10px;
    font-size: 1.3rem;
}

.merit_inner p span a {
    font-size: 1.3rem;
    color: #fe7181;
    text-decoration: underline;
}

.merit_inner h2 {
    width: 60%;
    margin: -150px auto 50px;
}

.merit_image {
    width: 60%;
    margin: 0 auto 25px;
}

/*パンダネットの強み*/

section.featured {
    padding: 100px 0;
    text-align: center;
    background: #f1f9fc;
}

section.merit {
    margin-bottom: 100px;
}

ul.featured_inner {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: space-between;
}

ul.featured_inner li {
    width: 31%;
    background: #fff;
    padding: 35px;
    border-radius: 15px;
}

.featured_inner h2 {
    margin-bottom: 80px;
    font-family: zen-maru-gothic, sans-serif;
    font-size: 4rem;
    color: #2b84be;
}

.featured_inner h2:after {
    content: "";
    display: block;
    width: 1px;
    margin: 30px auto 0;
    height: 20px;
    border-right: 4px dotted;
}

ul.featured_inner li  h3 {
    font-size: 1.8rem;
    border-bottom: 1px solid #2b84be;
    margin-bottom: 20px;
    color: #2b84be;
    padding-bottom: 18px;
	font-family: zen-maru-gothic, sans-serif;
	font-weight: 500;
	font-style: normal;
}

ul.featured_inner li p {
    line-height: 25px;
    font-size: 1.45rem;
    text-align: left;
}

p.featured_ps {
    text-align: left;
    max-width: 1100px;
    color: #2b84be;
    font-size: 1.4rem;
    margin: 30px auto 0;
}

.featured_inner h2 img {
    width: 50px;
    margin: 0 auto 15px;
}

.featured_illust {
    width: 75%;
    margin: -70px auto 30px;
}

/*遊び方*/

.howto_inner h2 {
    text-align: center;
    display: block;
    font-size: 4rem;
    font-family: zen-maru-gothic, sans-serif;
}

.howto_inner h2 img {
    margin: 0 auto 10px;
    width: 46px;
}

.howto_inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 0;
}

p.howto_cap {
    text-align: center;
    margin: 30px 0 80px;
}

.howto_sp {
    background: #fff8f0;
    border-radius: 20px;
    position: relative;
    padding: 80px;
    text-align: center;
    margin-bottom: 50px;
}

span.howto_icon {
    position: absolute;
    width: 90px;
    left: 50%;
    margin-left: -45px;
    top: -30px;
}

h3.howto_subtitle {
    width: 600px;
    margin: 0 auto 60px;
}

ul.howto_contents li img {
    border: 3px solid #444;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 10px;
}

ul.howto_contents {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

ul.howto_contents li {
    width: 42%;
    margin: 0 1%;
}

ul.howto_contents li h4 {
    font-size: 2.2rem;
    font-family: zen-maru-gothic, sans-serif;
    font-weight: bold;
    background: #444;
    border-radius: 100px;
    padding: 8px;
    color: #fff;
}

.howto_pc {
    position: relative;
    background: #e7f2f7;
    border-radius: 20px;
    padding: 80px 80px 60px;
    text-align: center;
}

.howto_sp_app {
    max-width: 500px;
    margin: 50px auto 20px;
}
/*コンテンツ*/

section.contents {
    background-image: url("../2511LPimg/underarrow.png"), url("../2511LPimg/bg_blue.jpg");
    background-repeat: no-repeat, repeat;
    background-size: 250px, 8px;
	background-position: top center, center;
    padding: 100px 0;
    text-align: center;
}

.contents_inner {
    max-width: 1100px;
    margin: 0 auto;
}

ul.contents_list {
}

ul.contents_list li {
    width: 100%;
    padding: 1%;
    margin-bottom: 2%;
    display: flex;
    background: #fff;
    align-items: center;
    border-radius: 18px;
}

.contents_image {
    width: 55%;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.contents_cap {
    background: #fff;
    padding: 0 40px;
    width: 60%;
    border-radius: 0 20px 20px 0;
}

.contents_cap p {
    text-align: left;
    line-height: 26px;
    font-size: 1.5rem;
}

.contents_cap h3 {
    font-size: 3.2rem;
    margin-bottom: 15px;
    color: #2c85c1;
    font-family: zen-maru-gothic, sans-serif;
    font-weight: bold;
    font-style: normal;
}

.contents_cap h3 span {
    display: block;
    background: #2c85c1;
    width: max-content;
    margin: 0 auto 5px;
    padding: 4px 35px;
    color: #fff;
    border-radius: 100px;
}

.contents_inner h2 {
    margin-bottom: 50px;
    font-family: zen-maru-gothic, sans-serif;
    color: #fff;
    line-height: 65px;
    font-size: 4rem;
}

.contents_inner h2 span {
    font-size: 6rem;
    font-weight: bold;
    display: block;
}

.contents_inner h2:after {
    content: "";
    display: block;
    width: 1px;
    margin: 30px auto 0;
    height: 20px;
    border-right: 4px dotted;
}

.contents_inner h2 img {
    margin: 0 auto 20px;
    width: 15%;
}

.beginners {
    border: 2px solid #fff;
    padding: 40px;
    display: flex;
    border-radius: 20px;
    justify-content: space-between;
    align-items: center;
}

.beginners_title {
    color: #fff;
    font-size: 3.4rem;
    font-family: zen-maru-gothic, sans-serif;
    text-align: left;
    margin-bottom: 20px;
    line-height: 44px;
    font-weight: bold;
}

.beginners_title span {
    display: block;
    font-size: 2.2rem;
    margin-bottom: 13px;
    border-left: 2px solid;
    padding-left: 14px;
    line-height: 25px;
}

.beginners_image {
    width: 34%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.beginners_cap {
    width: 61%;
}

p.beginners_text {
    text-align: left;
    font-size: 1.5rem;
    line-height: 30px;
    color: #fff;
}

p.beginners_text span {
    display: block;
    margin-top: 10px;
    line-height: 22px;
}

h2.beginners_more_title {
    text-align: center;
    font-size: 3rem;
    line-height: 38px;
    font-family: zen-maru-gothic, sans-serif;
    font-weight: bold;
    color: #005daa;
}

h2.beginners_more_title img {
    margin: 15px auto 0;
    width: 500px;
}

h2.beginners_more_title span {
    display: block;
    margin: 5px 0 30px;
    font-size: 1.5rem;
    font-weight: normal;
}

p.beginners_more_cap {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
}

.beginners_more_inner a {
    display: block;
    text-align: center;
    width: max-content;
    margin: 30px auto 40px;
    padding: 18px 40px;
    border-radius: 100px;
    color: #333;
    font-size: 2rem;
    background: #fff;
    border: 3px solid;
    font-weight: 600;
	transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
}

.beginners_more_inner a:hover {
    color: #2c85c1;
    border: 3px solid #2c85c1;
}

section.beginners_more {
    background: #edf8fc;
    padding: 100px 0;
}

ul.beginners_images {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 850px;
    margin: 40px auto;
}

ul.beginners_images li {
    width: 48%;
}

/*さらに豊富なコンテンツ*/

.extra_inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 0 0;
}

.extra_inner h2 {
    text-align: center;
    font-size: 4rem;
    font-family: zen-maru-gothic, sans-serif;
    font-weight: 900;
}

.extra_inner h2 span {
    font-size: 6rem;
    color: #fe7181;
}

.pc_disp_ex {
    display: flex;
    justify-content: space-between;
}

.extra_area {
    margin: 50px auto 0;
    display: flex;
    padding: 30px;
    justify-content: space-between;
    border: 3px solid #fe7181;
    background: #fff3f5;
    border-radius: 16px 16px 0 0;
}

p.extra_ps {
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    background: #fe7181;
    padding: 26px 0 30px 0;
    color: #fff;
    border-radius: 0 0 12px 12px;
}

li.extra_contents_title h3 {
    text-align: center;
    font-size: 1.8rem;
    border-radius: 0;
    background: #fe7181;
    color: #fff;
    font-weight: bold;
    padding: 8px;
    font-family: zen-maru-gothic, sans-serif;
}

.extra_box {
    width: 32.5%;
}

ul.extra_contents li {
    margin: 12px 0;
    display: flex;
    padding: 0 10px;
    align-items: center;
}

ul.extra_contents li:first-child {
    display: block;
    width: 100%;
    margin-top: 0;
    padding: 0;
}

.extra_contents_thumb {
    width: 25%;
    background: #eee;
    margin-right: 12px;
    border-radius: 4px;
}

ul.extra_contents li h4 {
    line-height: 22px;
    width: 70%;
}

ul.extra_contents {
    margin-bottom: 4%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 9px 10px rgba(0,0,0,0.075);
}

.contents_about_service {
    border-radius: 20px;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
}

.contents_about_service_logo {
    background: #fff;
    width: 32%;
	display: -webkit-flex;
	-webkit-flex-direction: column;
	-webkit-justify-content: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.contents_about_service_logo img {
    width: 75%;
    margin: 0 auto;
}

p.contents_about_service_cap {
    padding: 50px;
    background: #005daa;
    color: #fff;
    line-height: 28px;
    font-weight: 500;
    width: 68%;
    font-size: 1.4rem;
}



/*ユーザーの声*/

section.usersvoice {
    padding: 100px 0;
    text-align: center;
    border-bottom: 1px solid #e5e5e5;
}

.usersvoice_inner h2 img {
    margin: 0 auto 15px;
    width: 50px;
}

.usersvoice_inner h2 span {
    font-size: 4rem;
    color: #ff7d27;
}

.usersvoice_inner {
    max-width: 1100px;
    margin: 0 auto;
}


ul.usersvoice_list li {
    margin: 50px 0;
    align-items: center;
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 60px;
    border: 1px solid #ff7d27;
    border-radius: 20px;
}

.user_image {
    width: 20%;
    border-radius: 100%;
    background: #eee;
}

.user_cap {
    width: 75%;
    text-align: left;
}

.user_cap h3 {
    color: #ff7d27;
    font-size: 3rem;
    line-height: 48px;
    margin-bottom: 20px;
    font-family: zen-maru-gothic, sans-serif;
    font-weight: 500;
    font-style: normal;
}

.user_cap h3  span {
    display: block;
    background: #ff7d27;
    color: #fff;
    width: max-content;
    padding: 2px 14px;
    line-height: 25px;
    margin-bottom: 15px;
}

.user_cap p {
    font-size: 1.6rem;
    line-height: 34px;
}

ul.usersvoice_list li:before {
    content: "";
    position: absolute;
    top: -2px;
    height: 3px;
    background: #f9f9f9;
    width: 70%;
    margin-left: -35%;
    left: 50%;
}

ul.usersvoice_list li:after {
    content: "";
    position: absolute;
    bottom: -2px;
    height: 4px;
    background: #f9f9f9;
    width: 70%;
    left: 50%;
    margin-left: -35%;
}

.usersvoice_inner h2 {
    margin-bottom: 50px;
    font-family: zen-maru-gothic, sans-serif;
    font-size: 4rem;
}

.usersvoice_inner h2:after {
    content: "";
    display: block;
    width: 1px;
    margin: 30px auto 0;
    height: 20px;
    border-right: 4px dotted #ff7c24;
}

/*コース*/

section.course {
    background: #fff8f0;
    padding: 100px 0;
    text-align: center;
}

ul.usersvoice_list li:last-child {
    margin-bottom: 0;
}

.course_inner h2 {
    margin-bottom: 50px;
    font-family: zen-maru-gothic, sans-serif;
    font-size: 4rem;
}

.course_inner h2:after {
    content: "";
    display: block;
    width: 1px;
    margin: 30px auto 0;
    height: 20px;
    border-right: 4px dotted #ff7c24;
}

.course_area {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 20px;
    position: relative;
}

.course_inner {
    max-width: 1100px;
    margin: 0 auto;
}

.course_inner h2 img {
    margin: 0 auto 12px;
    width: 40px;
}

span.osusume {
    position: absolute;
    left: 50px;
    top: -30px;
    width: 120px;
    color: #fff;
}

.course_area h3 {
    margin-bottom: 30px;
    border-bottom: 1px solid #fceee1;
    color: #ff7c24;
    padding-bottom: 30px;
    font-size: 3rem;
    font-family: zen-maru-gothic, sans-serif;
    font-weight: 500;
    font-style: normal;
}

ul.course_point {
    display: flex;
    justify-content: space-between;
}

ul.course_point li {
    width: 32%;
    text-align: center;
    background: #fff8f0;
    padding: 35px;
    font-size: 2rem;
    border-radius: 15px;
}

span.no_content {
    background: #bbb!important;
}

li.no_content_bg {
    color: #888;
    background: #f5f5f5!important;
}

ul.course_point li span {
    display: block;
    background: #ff7c24;
    color: #fff;
    border-radius: 100px;
    font-size: 1.5rem;
    padding: 8px  38px;
    margin: 0 auto 25px;
    width: max-content;
}

.course_detail p {
    margin-top: 30px;
    line-height: 30px;
    opacity: 0.6;
    font-size: 1.4rem;
}

.course_price {
    width: 50%;
    margin: 0 auto 30px;
}

/*STEP*/

section.step {padding: 100px 0;text-align: center;}

.step_inner {
    max-width: 1100px;
    margin: 0 auto;
}

.step_inner h2 {
    margin-bottom: 50px;
    font-family: zen-maru-gothic, sans-serif;
    font-size: 4rem;
}

.step_inner h2 img {
    width: 40px;
    margin: 0  auto  20px;
}

.step_inner h2:after {
    content: "";
    display: block;
    width: 1px;
    margin: 30px auto 0;
    height: 20px;
    border-right: 4px dotted #2b84be;
}

.step_flow {margin-bottom: 30px;}

.step_ps {
    color: #ff6d7d;
}

.step_inner p {
    border-top: 1px solid #ff6d7d;
    padding: 15px;
    color: #ff6d7d;
    margin-bottom: 10px;
    display: flex;
    border-bottom: 1px solid #ff6d7d;
    font-size: 2.2rem;
    font-weight: bold;
    justify-content: center;
    align-items: center;
}

.step_inner p span {
    width: 24px;
    margin-right: 10px;
}

.plan_cycle h3 {
    font-family: zen-maru-gothic, sans-serif;
    font-size: 3rem;
    margin-bottom: 30px;
    background: #2b84be;
    color: #fff;
    padding: 10px;
}

.plan_cycle_cap {
    font-size: 2rem;
    color: #2b84be;
    margin: 20px auto 0;
    width: 97%;
    border-radius: 7px;
    background: #fff;
    font-family: zen-maru-gothic, sans-serif;
    padding: 10px 0;
}

.plan_cycle_graph {
    padding: 10px 70px;
}

.plan_cycle {
    background: #edf8fc;
    border-radius: 12px;
    max-width: 800px;
    overflow: hidden;
    padding-bottom: 1%;
    margin: 50px auto 0;
}

section.request {
    background: #edf8fc;
    padding: 100px 0;
}

section.request_except_card {
    background: #fff8f0;
    padding: 100px 0;
}

.request_inner {
    max-width: 700px;
    margin: 0 auto;
}

.request_inner_except_card {
    max-width: 700px;
    margin: 0 auto;
}

.request_inner  h2 {
    margin-bottom: 50px;
    text-align: center;
    font-size: 4rem;
    color: #2b84be;
    font-family: zen-maru-gothic, sans-serif;
}

.request_inner_except_card  h2 {
    margin-bottom: 50px;
    text-align: center;
    font-size: 4rem;
    color: black;
    font-family: zen-maru-gothic, sans-serif;
}

input.form_id {
    width: 70%;
}

a.beginer_link {
    font-size: 1.2rem;
    color: #333;
    display: block;
    text-decoration: underline;
}

p.form_caption {
    font-size: 1.25rem;
    opacity: 0.6;
    margin: 8px 0;
    line-height: 21px;
}

p.form_caption_bold {
    font-size: 1.25rem;
    font-weight: bold;
    color: red ;
    opacity: 0.6;
    margin: 8px 0;
    line-height: 21px;
}

p.form_caption a {
    font-size: 1.25rem;
    color: #fe7181;
    text-decoration: underline;
}

a.other_pay {
    display: block;
    text-align: center;
    padding: 20px 40px;
    color: #2b84be;
    border: 1px solid #2b84be;
    background: #fff;
    border-radius: 100px;
    width: max-content;
    margin: 0 auto 40px;
	transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
}

a.other_pay:hover {
	color: #fff;
    background: #2b84be;
}

.request_inner h2 span {
    display: block;
    margin-top: 10px;
    font-size: 2rem;
}

.request_inner_except_card h2 span {
    display: block;
    margin-top: 10px;
    font-size: 2rem;
}

.request_inner h2 img {
    margin: 0 auto 20px;
    width: 50px;
}

.request_inner_except_card h2 img {
    margin: 0 auto 20px;
    width: 50px;
}

.request_inner h2:after {
    content: "";
    display: block;
    width: 1px;
    margin: 30px auto 0;
    height: 20px;
    border-right: 4px dotted;
}

.request_inner_except_card h2:after {
    content: "";
    display: block;
    width: 1px;
    margin: 30px auto 0;
    height: 20px;
    border-right: 4px dotted;
}

/*FORM*/

form dl {
    display: flex;
    padding: 30px 0;
    align-items: center;
    border-bottom: 1px solid #add2ec;
}

form dt {
    width: 30%;
    font-size: 1.6rem;
    font-weight: bold;
}

input.post_search {
    margin-left: 10px;
    background: #000;
    color: #fff;
    padding: 8px 18px;
    border: none;
    font-size: 1.2rem;
    border-radius: 100px;
	transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
}

input.post_search:hover {
	opacity: 0.5;
}

input.form_add_first {
    margin-bottom: 10px;
}

form dd {
    width: 70%;
}

.birthEraSelect {
    margin-bottom: 20px;
    display: inline;
}

form input {
  border: 1px solid #add2ec;
  padding: 14px;
  border-radius: 8px;
  font-size: 1.6rem;
  max-width: 100%;
}

input.id_check {
    font-size: 1.2rem;
    background: #000;
    color: #fff;
    border-radius: 100px;
    padding: 8px 18px;
    margin-left: 10px;
    border: none;
	transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
}

input.id_check:hover {
	opacity: 0.5;
}

.form_id_box {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

span.required {
    background: #ec2f41;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 10px;
    font-size: 1.4rem;
}

dd.form_name {
    display: flex;
}

dd.form_birth {
    display: flex;
}

dd.form_post {
    display: flex;
    align-items: center;
}

input.form_post_box {
    width: 30%;
}

dd.form_course span {
    display: block;
    font-size: 1.6rem;
    margin: 10px 0;
}

dd.form_pay span {
    display: block;
    margin: 10px 0;
    font-size: 1.6rem;
}

dd.form_pay span input {
    margin-right: 8px;
}

dd.form_class select {
    padding: 15px 50px 15px 15px;
    border-radius: 6px;
    margin-bottom: 12px;
    border: 1px solid #add2ec;
    font-size: 1.6rem;
    background-image: url("../2511LPimg/icon_arrow_black.png");
    background-size: 10px;
    background-position: center right 15px;
}

dd.form_gender span {
    font-size: 1.6rem;
    margin-right: 20px;
}

dd.form_gender span input {
    margin-right: 8px;
}

dd.form_mail input {
    width: 70%;
}

dd.form_address input {
    width: 100%;
}

dd.form_birth span {
    display: flex;
    margin-right: 20px;
    font-size: 1.6rem;
    align-items: center;
}

dd.form_birth span select {
    font-size: 1.6rem;
    padding: 15px 50px 15px 15px;
    border-radius: 6px;
    border: 1px solid #add2ec;
    margin-right: 7px;
    background-image: url("../2511LPimg/icon_arrow_black.png");
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: center right 12px;
}

dd.form_course span input {
    margin-right: 8px;
}

.privacy {
    padding: 35px;
    background: #fff;
    margin: 30px 0;
    border-radius: 10px;
    border: 1px solid #add2ec;
    height: 180px;
    overflow: scroll;
	-webkit-overflow-scrolling:auto;
}

.privacy_except_card {
    padding: 35px;
    background: #fff;
    margin: 30px 0;
    border-radius: 10px;
    border: 1px solid lightgray;
    height: 180px;
    overflow: scroll;
}

.privacy p {
    font-size: 1.3rem;
    line-height: 22px;
}

.privacy_except_card p {
    font-size: 1.3rem;
    line-height: 22px;
}

.privacy_title {
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.privacy_check {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 30px;
}

.privacy_check input {
    margin-right: 10px;
}

input.send_btn {
    margin: 0 auto;
    display: block;
    background: #2b84be;
    color: #fff;
    font-size: 2.2rem;
    border-radius: 100px;
    padding: 26px 60px;
    font-weight: 600;
	transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
	border: none;
}

input.send_btn:hover {
	opacity: 0.5;
	transform: scale(1.05);
}

dd.form_pay span img {
    width: 200px;
    margin-top: 10px;
    margin-bottom: 15px;
}

dd.form_name input {
    margin-right: 10px;
    width: 45%;
}

.confirm_inner {
    max-width: 800px;
    margin: 0 auto;
}

section.confirm {
    padding: 200px 0 80px;
    border-bottom: 1px solid;
}

.confirm_inner h1 {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 40px;
    font-family: zen-maru-gothic, sans-serif;
}

p.confirm_text {
    text-align: center;
    line-height: 30px;
    margin-bottom: 60px;
}

table.confirm_contents th {
    padding: 30px;
    border-bottom: 1px solid #fff;
    width: 30%;
    background: #2b84be;
    font-size: 1.4rem;
    color: #fff;
    line-height: 30px;
}

table.confirm_contents td {
    width: 100%;
    background: #edf8fc;
    border-bottom: 1px solid #fff;
    padding: 30px;
    font-size: 1.4rem;
    line-height: 30px;
}

table.confirm_contents {
    width: 100%;
    margin-bottom: 50px;
}

a.back_btn {
    display: block;
    padding: 20px 50px;
    background: #aaa;
    border-radius: 100px;
    text-align: center;
    font-size: 1.6rem;
    color: #fff;
    margin: 30px auto;
    width: max-content;
	transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
}

a.back_btn:hover {
	opacity: 0.6;
	transform: scale(1.1);
}

.thanks_inner {
    max-width: 800px;
    margin: 0 auto;
}

section.thanks {
    padding: 200px 0 80px;
    border-bottom: 1px solid;
}

.thanks_inner h1 {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 40px;
    font-family: zen-maru-gothic, sans-serif;
}

p.thanks_text {
    line-height: 30px;
}

p.thanks_ssl {
    text-align: center;
    margin-bottom: 30px;
}

.thanks_contents {
    border: 1px solid;
    padding: 50px;
}

a.thanks_link {
    text-decoration: underline;
    margin: 30px 0;
    border-left: 3px solid;
    display: block;
    padding-left: 10px;
    color: #fd7a20;
    line-height: 27px;
    font-size: 1.5rem;
    font-weight: bold;
	transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
}

a.thanks_link:hover {
	opacity: 0.5;
}

/*footer*/

.footer_inner {
    max-width: 1100px;
    margin: 0 auto;
	position: relative;
}

.footer_logo {
    width: 160px;
}

footer {
    padding: 50px 0;
}

.footer_contents {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

ul.footer_menu {
    display: flex;
}

ul.footer_menu li a {
    color: #333;
    display: block;
    margin: 0 20px;
    font-size: 1.3rem;
}

ul.footer_menu li {
    border-left: 1px solid;
}

ul.footer_menu li:first-child {
    border-left: none;
}

.footer_inner span {
    text-align: right;
    display: block;
    opacity: 0.5;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    margin-top: 30px;
}

ul.footer_menu li:last-child a {
    margin-right: 0;
}

a.pagetop {
	position: absolute;
	padding: 18px 15px;
	background: #fff;
	border-radius: 100%;
	top: -70px;
	box-shadow: 3px 3px 10px rgba(0,0,0,0.1);
	right: 0;}

a.pagetop img {
    width: 15px;
    height: auto;
}

@media screen and (max-width: 480px) {

/*アコーディオン*/
.toggle {
	display: none;
}
.accordion_area {
    background: #fff;
    border-radius: 20px;
}
.Label {
    padding: 20px;
    display: block;
    color: #ff7c24;
    background: #fff;
    font-family: zen-maru-gothic, sans-serif;
    font-size: 2rem;
    border-radius: 6px;
}
.Label::before{
    content:"";
    width: 8px;
    height: 8px;
    border-top: 2px solid #ff7c24;
    border-right: 2px solid #ff7c24;
    -webkit-transform: rotate(45deg);
    position: absolute;
    top: calc( 50% - 6px );
    right: 25px;
    transform: rotate(135deg);
}
.Label,
.content {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s;
}
.content {		/*本文*/
    height: 0;
    margin-bottom: 20px;
    background: #fff;
    overflow: hidden;
    border-radius: 20px;
}
.toggle:checked + .Label + .content {
    height: auto;
    padding: 10px 5% 30px 5%;
    transition: all .3s;
}
.toggle:checked + .Label::before {
    transform: rotate(-45deg) !important;
}

.pc_disp {
	display: none!important;
}

.sp_disp {
	display: block!important;
}

body {
	font-family: 'Noto Sans JP', sans-serif;
	min-width: 100%;
	color: #333333;
	margin: 0 auto;
}

/*header*/

header {
    position: fixed;
    width: 100%;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    z-index: 9999;
}

.header_logo {
    width: 32%;
}

a.header_tel {
    width: 60%;
}


/*ファーストビュー*/

section.fv {
    width: 100%;
    height: auto;
    background-image: url("../2511LPimg/fv_right.png"), url("../2511LPimg/fv_left.png");
    background-position: bottom right, left bottom 16%;
    background-size: 120%, 0;
    background-repeat: no-repeat, no-repeat;
    padding: 17% 0 80%;
    position: relative;
}

.fv_wave {
    position: absolute;
    width: 100%;
    height: 50px;
    bottom: 0;
    left: 0;
}

.fv_wave img {
	width: 100%;
	height: 100%;
}

.fv_inner {
    max-width: 1100px;
    margin: 0 auto;
}

img.campaign {
    margin-bottom: 10px;
    width: 90%;
    margin-left: 9%;
}

.fv_inner h1 {
    width: 90%;
    margin: 0 auto;
}

img.fv_title {
    margin-bottom: 30px;
}

a.request_btn img {
    width: 30px;
    height: auto;
    margin-right: 9px;
}

a.request_btn {
    display: flex;
    width: 96%;
    position: fixed;
    padding: 16px 0;
    bottom: 10px;
    left: 2%;
    z-index: 999;
    align-items: center;
    background-color: #fff;
    border-radius: 8px;
    font-size: 1.8rem;
    border: 1px solid #333;
    margin: 50px auto 0;
    justify-content: center;
    font-weight: bold;
    color: #333333;
    background-image: url("../2511LPimg/fv_icon_arrow.png");
    background-position: center right 20px;
    background-repeat: no-repeat;
    background-size: 18px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    letter-spacing: 1px;
}

/*お悩み*/

section.trouble {
    background: #fff8f0;
    padding: 0px 0 90px 0;
}

.trouble_inner {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 20px;
    text-align: center;
    position: relative;
}

ul.trouble_list {
    display: block;
    justify-content: space-between;
}

ul.trouble_list li {
    width: 92%;
    background: #fff;
    padding: 15px 10px 15px 20px;
    align-items: center;
    display: flex;
    border-radius: 8px;
    margin: 0 auto 10px;
}

ul.trouble_list li h3 {
    font-size: 1.5rem;
    font-weight: bold;
    width: 60%;
    line-height: 25px;
    text-align: center;
}

ul.trouble_list li h3 span {
    font-size: 1.6rem;
    color: #fd7a20;
}

.trouble_inner h2 {
    width: 68%;
    margin: 0 0 30px 6%;
}

.trouble_baloon {
    position: absolute;
    width: 34%;
    right: 3%;
    top: -110px;
    left: inherit;
    margin-left: -100px;
}

.trouble_image {
    width: 36%;
    margin: 0 auto;
}

.trouble_inner h2:after {
    display: none;
}

/*CONCEPT*/

section.concept {
    padding: 150px 0 30px;
}

.concept_inner {
    max-width: 1100px;
    margin: 0 auto;
}

.concept_inner h2 {
    text-align: center;
    width: 90%;
    margin: 0 auto 20px;
}

.concept_inner h2 span {
    width: 80%;
    display: block;
    margin: -240px auto 30px;
}

.concept_detail {
    padding: 44px 20px 20px;
    border-radius: 10px;
    border: 1px dashed #fd7a20;
    margin: 35px auto;
    position: relative;
    width: 90%;
}

.concept_detail_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.concept_image {
    width: 36%;
    border: 1px solid #fd7a20;
    border-radius: 8px;
    margin-top: -100px;
    background: #fff;
}

.concept_cap h3 {
    font-size: 2rem;
    font-family: zen-maru-gothic, sans-serif;
    margin-bottom: 5px;
}

.concept_cap p {
    font-size: 1.25rem;
    line-height: 21px;
    font-weight: 500;
}

.concept_number_even {
    position: absolute;
    top: -19px;
    left: 5%;
    width: 80px;
}

.concept_number_odd {
    color: #fd7a20;
    position: absolute;
    right: 5%;
    width: 70px;
    top: -18px;
    font-size: 4rem;
}

.concept_cap {
    width: 58%;
    padding-bottom: 5px;
}

ul.concept_new_list li {
    width: 100%;
    padding: 14px;
    font-size: 1.5rem;
    display: flex;
    margin: 4px 0;
    align-items: center;
}

ul.concept_new_list li br {
    display: none;
}

ul.concept_new_list li span {
    margin: 0 3% 0 0;
    font-size: 1.2rem;
    width: 24%;
    letter-spacing: 0;
    text-align: center;
    padding: 7px 0;
    border-radius: 4px;
}

ul.concept_new_list li p {
    width: 72%;
    font-size: 1.4rem;
    text-align: left;
}

ul.concept_new_list {
    width: 94%;
    margin: 0 auto;
}

p.concept_new_text {
    font-size: 1.3rem;
    text-align: left;
    margin: 20px auto;
    line-height: 23px;
    padding: 0 6%;
}

p.concept_title_cap {
    padding: 0 6%;
    font-size: 1.3rem;
    line-height: 23px;
    text-align: left;
}

ul.concept_main_images {
    margin: 20px auto 5px;
    max-width: 95%;
}

ul.concept_main_images li {
    border-radius: 0;
    width: 48%;
}

a.more_contents_link {
    padding: 10px 44px 10px 24px;
    font-size: 1.3rem;
    margin: 0 auto 50px;
    border: 1px solid;
    background-position: center right 14px;
    background-size: 14px;
}

/*豊富なコンテンツ*/

.pc_disp_ex {
    display: none!important;
}
	
.extra_inner {
    padding: 40px 0;
}

.extra_inner h2 {
    font-size: 1.8rem;
}

.extra_inner h2 span {
    font-size: 3rem;
}

.extra_area {
    margin: 15px auto 0;
    padding: 10px 10px 5px;
    width: 95%;
    display: block;
    border-radius: 10px 10px 0 0;
    border: 1px solid #fe7181;
}
	
p.extra_ps {
    width: 95%;
    margin: 0 auto;
    padding: 15px 5%;
    font-size: 1.3rem;
    border-radius: 0 0 8px 8px;
    line-height: 22px;
}

.extra_box {
    width: 100%;
}

li.extra_contents_title h3 {
    font-size: 1.5rem;
    padding: 5px 0;
}

ul.extra_contents li {margin: 6px 0;}

ul.extra_contents li h4 {
    font-size: 1.3rem;
    line-height: 18px;
    width: 79%;
}

.extra_contents_thumb {
    width: 16%;
}

ul.extra_contents {
    border-radius: 5px;
    margin-bottom: 8px;
}
	
/*ベース*/
.toggle_ex {
	display: none;
}
.Label_ex {		/*タイトル*/
	padding: 10px;
	display: block;
	color: #fff;
	border-radius: 5px;
	background: #fe7181;
	font-size: 1.4rem;
	text-align: center;
}
.Label_ex::before{		/*タイトル横の矢印*/
	content:"";
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 3px );
	right: 20px;
	transform: rotate(135deg);
}
.Label_ex_even {
    background: #ff9ea9!important;
}	
ul.extra_contents li:first-child {
    display: flex!important;
    padding: 0 10px!important;
    margin-top: 6px!important;
}
.Label_ex,
.content_ex {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.content_ex {		/*本文*/
	height: 0;
	margin-bottom:10px;
	padding:0 20px;
	overflow: hidden;
}
.toggle_ex:checked + .Label_ex + .content_ex {	/*開閉時*/
	height: auto;
	padding: 7px 0 0;
	transition: all .3s;
}
.toggle_ex:checked + .Label_ex::before {
	transform: rotate(-45deg) !important;
}
	
/*メリット*/

.merit_inner {
    max-width: 100%;
    margin: 0 auto;
    border-radius: 0;
    background: #fff3f5;
    text-align: center;
    padding: 100px 5% 40px;
}

.merit_list {
    display: block;
    justify-content: space-between;
}

.merit_detail {
    width: 95%;
    margin: 0 auto;
}

.merit_line {
    border-right: 1px dashed #fe7181;
    width: 1px;
}

.merit_inner h3 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-family: zen-maru-gothic, sans-serif;
    font-weight: 500;
    font-style: normal;
}

.merit_inner p {
    font-size: 1.25rem;
    line-height: 24px;
    text-align: left;
}

.merit_inner p span {
    display: block;
    margin-top: 10px;
    margin-bottom: 20px;
    line-height: 22px;
    border-bottom: 1px dashed;
    font-size: 1.2rem;
    padding-bottom: 30px;
}

.merit_inner p span a {
    font-size: 1.2rem;
    color: #fe7181;
    text-decoration: underline;
}

.merit_inner h2 {
    width: 100%;
    margin: -130px auto 20px;
}

.merit_image {
    width: 40%;
    border: 2px solid #fff;
    margin: 0 auto 15px;
    border-radius: 100%;
}

/*パンダネットの強み*/


section.featured {
    padding: 40px 0;
    text-align: center;
    background: #f1f9fc;
}

section.merit {
    margin-bottom: 5px;
}

ul.featured_inner {
    display: block;
    max-width: 90%;
    margin: 0 auto;
    justify-content: space-between;
}

ul.featured_inner li {
    width: 100%;
    background: #fff;
    padding: 30px;
    margin-bottom: 15px;
    border-radius: 10px;
}

.featured_inner h2 {
    margin-bottom: 30px;
    font-family: zen-maru-gothic, sans-serif;
    font-size: 2.2rem;
    color: #2b84be;
}

.featured_inner h2:after {
    content: "";
    display: block;
    width: 1px;
    margin: 15px auto 0;
    height: 20px;
    border-right: 3px dotted;
}

ul.featured_inner li  h3 {
    font-size: 1.8rem;
    border-bottom: 1px solid #2b84be;
    margin-bottom: 20px;
    color: #2b84be;
    padding-bottom: 18px;
	font-family: zen-maru-gothic, sans-serif;
	font-weight: 500;
	font-style: normal;
}

ul.featured_inner li p {
    line-height: 22px;
    font-size: 1.25rem;
    text-align: left;
}

p.featured_ps {
    text-align: left;
    max-width: 90%;
    color: #2b84be;
    line-height: 22px;
    font-size: 1.2rem;
    margin: 20px auto 0;
}

.featured_inner h2 img {
    width: 30px;
    margin: 0 auto 8px;
}

.featured_illust {
    width: 55%;
    margin: 0 auto 20px;
}
	
/*遊び方*/
	
.howto_inner {
    max-width: 90%;
    padding: 40px 0;
}

.howto_inner h2 {
    font-size: 2.2rem;
}

.howto_inner h2 img {
    width: 30px;
}

p.howto_cap {
    font-size: 1.25rem;
    margin: 20px auto 50px;
    line-height: 24px;
}

.howto_sp {
    border-radius: 15px;
    padding: 30px 5% 30px;
    margin-bottom: 40px;
}

span.howto_icon {
    width: 68px;
    margin-left: -34px;
}

h3.howto_subtitle {
    width: 75%;
    margin: 30px auto 20px;
}

ul.howto_contents {
    display: block;
}

ul.howto_contents li {
    width: 90%;
    margin: 0 auto 20px;
}

ul.howto_contents li img {
    border: 1px solid;
    border-radius: 8px;
    margin-bottom: 5px;
}

ul.howto_contents li h4 {
    font-size: 1.4rem;
    width: 85%;
    padding: 5px 0;
    margin: 0 auto;
}

.howto_sp_app {
    margin: 20px auto 15px;
}

p.howto_supple {
    font-size: 1.1rem;
}

.howto_pc {
    padding: 30px 5% 5%;
    border-radius: 15px;
}
	
.howto_icon {
    position: absolute;
    display: flex!important;
    justify-content: space-between;
    width: 64%;
    left: 18%;
    top: -22px;
    align-items: center;
}

span.howto_icon_left {
    width: 20%;
    display: block;
}

span.howto_icon_right {
    width: 25%;
    display: block;
}

/*コンテンツ*/

section.contents {
    background-image: url("../2511LPimg/underarrow.png"), url("../2511LPimg/bg_blue.jpg");
    background-repeat: no-repeat, repeat;
    background-size: 150px, 8px;
    padding: 40px 0;
    text-align: center;
}

.contents_inner {
    max-width: 90%;
    margin: 0 auto;
}

ul.contents_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

ul.contents_list li {
    border-radius: 13px;
    width: 100%;
    margin-bottom: 10px;
    display: block;
}

.contents_image {
    width: 100%;
    background: #000;
    border: none;
    border-radius: 10px;
}

.contents_cap {
    background: #fff;
    padding: 15px;
    width: 100%;
    text-align: left;
    border-radius: 0 0 10px 10px;
}

.contents_cap p {
    text-align: left;
    line-height: 21px;
    font-size: 1.25rem;
}

.contents_cap h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #2c85c1;
    text-align: center;
    font-family: zen-maru-gothic, sans-serif;
    font-weight: 500;
    font-style: normal;
}

.contents_cap h3 span {
    display: block;
    background: #2c85c1;
    width: max-content;
    margin: 0 auto 6px;
    padding: 5px 25px;
    color: #fff;
    border-radius: 100px;
}

.contents_inner h2 {
    margin-bottom: 15px;
    font-family: zen-maru-gothic, sans-serif;
    color: #fff;
    font-size: 1.8rem;
    line-height: 30px;
}
	
.contents_inner h2 span {
    font-size: 2.6rem;
}

.contents_inner h2:after {
    content: "";
    display: block;
    width: 1px;
    margin: 15px auto 0;
    height: 20px;
    border-right: 3px dotted;
}

.contents_inner h2 img {
    margin: 0 auto 10px;
    width: 33%;
}

.contents_about_service {
    display: block;
    width: 92%;
    border-radius: 10px;
    margin: 0 auto;
}

.contents_about_service_logo {
    width: 100%;
    padding: 10px 0;
}

p.contents_about_service_cap {
    width: 100%;
    padding: 20px;
    font-size: 1.2rem;
    line-height: 20px;
}

.contents_about_service_logo img {
    width: 50%;
}

/*入門*/

section.beginners_more {
    padding: 40px 0;
}

h2.beginners_more_title {
    font-size: 2.2rem;
    padding: 0 5%;
    line-height: 30px;
}

h2.beginners_more_title span {
    font-size: 1.1rem;
    margin: 5px 0 15px;
}
	
h2.beginners_more_title img {
    width: 80%;
}

p.beginners_more_cap {
    font-size: 1.3rem;
    text-align: left;
    line-height: 22px;
    padding: 0 6%;
}

.beginners_more_inner a {
    font-size: 1.3rem;
    padding: 12px 20px;
    border: 1px solid;
    margin: 15px auto;
}

ul.beginners_images {
    margin: 25px auto;
    max-width: 92%;
}
	
.beginners {
    display: block;
    padding: 8px;
    border-radius: 10px;
}

.beginners_image {
    width: 100%;
    border-radius: 6px;
}

.beginners_cap {
    width: 100%;
    padding: 20px 15px 10px;
}

.beginners_title {
    font-size: 2.2rem;
    text-align: center;
    line-height: 30px;
    margin-bottom: 15px;
}

.beginners_title span {
    font-size: 1.6rem;
    width: max-content;
    margin: 0 auto 10px;
    border: 1px solid;
    border-radius: 100px;
    padding: 3px 25px;
}

p.beginners_text {
    font-size: 1.2rem;
    line-height: 22px;
}

p.beginners_text span {
    font-size: 1.2rem;
}

/*ユーザーの声*/

section.usersvoice {
    padding: 40px 0;
    text-align: center;
    background: #fff;
    border: none;
}

.usersvoice_inner h2 img {
    margin: 0 auto 13px;
    width: 30px;
}

.usersvoice_inner h2 span {
    font-size: 2.2rem;
    color: #ff7d27;
}

.usersvoice_inner {
    max-width: 90%;
    margin: 0 auto;
}


ul.usersvoice_list li {
    margin: 20px 0;
    align-items: center;
    position: relative;
    display: block;
    justify-content: space-between;
    padding: 25px 30px;
    border: 1px solid #ff7d27;
    border-radius: 10px;
}

.user_cap h3 br {
    display: none;
}

ul.usersvoice_list li:nth-child(2) {
    flex-direction: column-reverse;
    display: flex;
    flex-wrap: wrap;
}
	
.user_image {
    width: 25%;
    height: auto;
    margin: 0  auto 14px;
    border-radius: 100%;
    background: #eee;
}

.user_cap {
    width: 100%;
    text-align: left;
}

.user_cap h3 {
    color: #ff7d27;
    font-size: 1.8rem;
    line-height: 30px;
    margin-bottom: 10px;
    font-family: zen-maru-gothic, sans-serif;
    font-weight: 500;
    font-style: normal;
}

.user_cap h3  span {
    display: block;
    background: #ff7d27;
    color: #fff;
    width: max-content;
    padding: 0px 12px;
    line-height: 25px;
    margin: 0 auto 10px;
}

.user_cap p {
    font-size: 1.25rem;
    line-height: 24px;
}

ul.usersvoice_list li:before {
    content: "";
    position: absolute;
    top: -2px;
    height: 3px;
    background: #fff;
    width: 70%;
    margin-left: -35%;
    left: 50%;
}

ul.usersvoice_list li:after {
    content: "";
    position: absolute;
    bottom: -2px;
    height: 4px;
    background: #fff;
    width: 70%;
    left: 50%;
    margin-left: -35%;
}

.usersvoice_inner h2 {
    margin-bottom: 30px;
    font-family: zen-maru-gothic, sans-serif;
    font-size: 2.2rem;
}

.usersvoice_inner h2:after {
    content: "";
    display: block;
    width: 1px;
    margin: 15px auto 0;
    height: 20px;
    border-right: 3px dotted #ff7c24;
}

/*コース*/

section.course {
    background: #fff8f0;
    padding: 40px 0;
    text-align: center;
}

ul.usersvoice_list li:last-child {
    margin-bottom: 0;
}

.course_inner h2 {
    margin-bottom: 30px;
    font-family: zen-maru-gothic, sans-serif;
    font-size: 2.2rem;
}

.course_inner h2:after {
    content: "";
    display: block;
    width: 1px;
    margin: 15px auto 0;
    height: 20px;
    border-right: 3px dotted #ff7c24;
}

.course_area {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    position: relative;
}

.course_inner {
    max-width: 92%;
    margin: 0 auto;
}

.course_inner h2 img {
    margin: 0 auto 10px;
    width: 30px;
}

span.osusume {
    position: absolute;
    left: 20px;
    top: -10px;
    width: 70px;
    color: #fff;
}

.course_area h3 {
    margin-bottom: 20px;
    border-bottom: 1px solid #fceee1;
    padding-bottom: 20px;
    font-size: 2rem;
    font-family: zen-maru-gothic, sans-serif;
    font-weight: 500;
    font-style: normal;
}

ul.course_point {
    display: block;
    justify-content: space-between;
}

ul.course_point li {
    width: 100%;
    text-align: center;
    background: #fff8f0;
    padding: 20px;
    font-size: 1.75rem;
    margin-bottom: 10px;
    border-radius: 15px;
}

ul.course_point li span {
    display: block;
    background: #ff7c24;
    color: #fff;
    border-radius: 100px;
    font-size: 1.35rem;
    padding: 4px  20px;
    margin: 0 auto 10px;
    width: max-content;
}

.course_detail p {
    margin-top: 16px;
    line-height: 19px;
    opacity: 0.6;
    font-size: 1rem;
    text-align: left;
}

.course_price {
    width: 90%;
    margin: 0 auto 20px;
}

/*STEP*/

section.step {padding: 40px 0;text-align: center;}

.step_inner {
    max-width: 90%;
    margin: 0 auto;
}

.step_inner h2 {
    margin-bottom: 30px;
    font-family: zen-maru-gothic, sans-serif;
    font-size: 2.2rem;
}

.step_inner h2 img {
    width: 30px;
    margin: 0  auto  15px;
}

.step_inner h2:after {
    content: "";
    display: block;
    width: 1px;
    margin: 20px auto 0;
    height: 20px;
    border-right: 3px dotted #2b84be;
}

.step_flow {width: 90%;margin: 0 auto 30px;}

.step_inner p {
    border-top: 1px solid #ff6d7d;
    padding: 12px;
    color: #ff6d7d;
    display: flex;
    border-bottom: 1px solid #ff6d7d;
    font-size: 1.6rem;
    font-weight: bold;
    justify-content: center;
    align-items: center;
}

.step_inner p span {
    width: 20px;
    margin-right: 5px;
}

.plan_cycle h3 {
    font-size: 1.8rem;
    margin-bottom: 0;
}

.plan_cycle_graph {
    padding: 5%;
}

.plan_cycle_cap {
    font-size: 1.4rem;
    text-align: center;
    margin: 10px auto 0;
}

.plan_cycle {
    padding-bottom: 2%;
}

section.request {
    background: #edf8fc;
    padding: 40px 0;
}

.request_inner {
    max-width: 92%;
    margin: 0 auto;
}

.request_inner  h2 {
    margin-bottom: 10px;
    text-align: center;
    font-size: 2.2rem;
    color: #2b84be;
    font-family: zen-maru-gothic, sans-serif;
}

.request_inner h2 img {
    margin: 0 auto 15px;
    width: 40px;
}

.request_inner h2:after {
    content: "";
    display: block;
    width: 1px;
    margin: 20px auto 0;
    height: 20px;
    border-right: 3px dotted;
}

/*FORM*/

form dl {
    display: block;
    padding: 20px 0 10px;
    align-items: center;
    border-bottom: none;
}

form dt {
    width: 100%;
    font-size: 1.5rem;
    font-weight: bold;
    color: #358bc4;
    margin-bottom: 20px;
    background: #d8f1fa;
    padding: 8px 14px;
}

input.post_search {
    margin-left: 8px;
    background: #000;
    color: #fff;
    border-radius: 25px;
    padding: 9px 20px;
    width: max-content!important;
    border: none;
    font-size: 1.2rem;
}

input.form_add_first {
    margin-bottom: 10px;
}

form dd {
    width: 100%;
}

form input {
    border: 1px solid #add2ec;
    padding: 12px;
    border-radius: 8px;
    font-size: 1.5rem;
}

span.required {
    background: #ec2f41;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 10px;
    font-size: 1.25rem;
}

dd.form_name {
    display: flex;
    width: 100%;
}

dd.form_birth {
    display: flex;
}

dd.form_post {
    display: flex;
    align-items: center;
}

dd.form_course span {
    display: block;
    font-size: 1.5rem;
    margin: 10px 0;
}

dd.form_post input {
    width: 40%;
}
	
dd.form_pay span {
    display: block;
    margin: 10px 0;
    font-size: 1.5rem;
}

dd.form_pay span input {
    margin-right: 8px;
}

dd.form_class select {
    padding: 12px 50px 12px 15px;
    border-radius: 6px;
    margin-bottom: 12px;
    border: 1px solid #add2ec;
    font-size: 1.5rem;
}

dd.form_gender span {
    font-size: 1.5rem;
    margin-right: 20px;
}

dd.form_gender span input {
    margin-right: 8px;
}

dd.form_mail input {
    width: 100%;
}

dd.form_address input {
    width: 100%;
}

/* dd.form_addresss select {
    padding: 15px 50px 15px 15px;
    border-radius: 6px;
    margin-bottom: 12px;
    border: 1px solid #add2ec;
    font-size: 1.6rem;
    background-image: url("../2511LPimg/icon_arrow_black.png");
    background-size: 10px;
    background-position: center right 15px;
} */

dd.form_birth span {
    display: flex;
    margin-right: 20px;
    font-size: 1.5rem;
    align-items: center;
}

dd.form_birth span select {
    font-size: 1.5rem;
    padding: 10px 50px 10px 15px;
    border-radius: 6px;
    border: 1px solid #add2ec;
    margin-right: 7px;
}

dd.form_course span input {
    margin-right: 8px;
}
	
a.other_pay {
    display: block;
    text-align: center;
    padding: 13px 20px;
    font-size: 1.1rem;
    color: #2b84be;
    border: 1px solid #2b84be;
    background: #fff;
    border-radius: 6px;
    width: max-content;
    margin: 20px auto 20px;
    transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
}

.privacy {
    padding: 15px;
    background: #fff;
    margin: 15px 0;
    border-radius: 8px;
    border: 1px solid #add2ec;
    height: 110px;
}

.privacy_title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.privacy_check {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.privacy_check input {
    margin-right: 8px;
}

input.send_btn {
    margin: 0 auto;
    display: block;
    background: #2b84be;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    width: 100%;
    border-radius: 8px;
    padding: 21px 0;
    font-weight: 600;
}

dd.form_pay span img {
    width: 200px;
    margin-top: 10px;
    margin-bottom: 25px;
}

dd.form_name input {
    margin-right: 10px;
    width: 100%;
}

.label_formarea {
    font-size: 1.5rem!important;
    padding: 17px 0 17px 22px!important;
    border-radius: 0;
    font-family: 'Noto Sans JP', sans-serif;
    margin-top: 20px;
	color: #fff!important;
	background: #2b84be!important;
}

.content_formarea {
    margin-bottom: 0;
	background: #2b84be!important;
	color: #fff!important;
    border-radius: 0!important;
}

.content_formarea p {
	color: #fff!important;
	opacity: 1!important;
}

.label_formarea::before {
    content:"";
    width: 12px;
    height: 12px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    position: absolute;
    top: calc( 50% - 12px );
    right: 20px;
    transform: rotate(135deg);
}

.toggle:checked + .label_formarea::before {
    transform: rotate(-45deg) !important;
    top: 26px;
}

.toggle:checked + .Label + .content_formarea {
    border-radius: 0;
    height: auto;
    padding: 0px 30px 20px;
    transition: all .3s;
}
	

.confirm_inner {
    max-width: 90%;
    margin: 0 auto;
}

section.confirm {
    padding: 120px 0 50px;
    border-bottom: 1px solid;
}

.confirm_inner h1 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
}

p.confirm_text {
    text-align: left;
    line-height: 25px;
    margin-bottom: 30px;
    font-size: 1.3rem;
}

table.confirm_contents th {
    padding: 15px;
    border-bottom: 1px solid #fff;
    width: 30%;
    font-size: 1.3rem;
    line-height: 21px;
}

table.confirm_contents td {
    width: 70%;
    border-bottom: 1px solid #fff;
    padding: 15px;
    font-size: 1.3rem;
    line-height: 21px;
}

table.confirm_contents {
    width: 100%;
    margin-bottom: 30px;
}

a.back_btn {
    display: block;
    padding: 20px 50px;
    background: #aaa;
    border-radius: 8px;
    text-align: center;
    font-size: 1.5rem;
    color: #fff;
    margin: 15px auto 0;
    width: 100%;
}
	
section.thanks {
    padding: 120px 0 40px;
    border-bottom: 1px solid;
}
	
.thanks_inner {
    max-width: 90%;
    margin: 0 auto;
}

.thanks_inner h1 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
}

p.thanks_text {
    line-height: 26px;
    font-size: 1.2rem;
}

p.thanks_ssl {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.thanks_contents {
    border: 1px solid;
    padding: 8%;
}

a.thanks_link {
    text-decoration: underline;
    margin: 20px 0;
    border-left: 3px solid;
    display: block;
    padding-left: 10px;
    color: #fd7a20;
    line-height: 22px;
    font-size: 1.3rem;
    font-weight: bold;
}
	
p.thanks_text br {
    display: none;
}


/*footer*/

.footer_inner {
    max-width: 91%;
    margin: 0 auto;
}

.footer_logo {
    width: 150px;
    margin: 0 auto 20px;
}

footer {
    padding: 40px 0;
}

.footer_contents {
    display: block;
    justify-content: space-between;
    align-items: center;
}

ul.footer_menu {
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    border-bottom: 1px  solid  #ddd;
    padding: 0 0 16px 0;
}

ul.footer_menu li a {
    color: #333;
    display: block;
    margin: 0 20px;
    font-size: 1.3rem;
}

ul.footer_menu li {
    border-left: none;
    margin: 8px 0;
}

ul.footer_menu li:first-child {
    border-left: none;
}

.footer_inner span {
    text-align: center;
    display: block;
    opacity: 0.5;
    font-size: 1rem;
    letter-spacing: 0.5px;
    margin-top: 20px;
    margin-bottom: 60px;
}

ul.footer_menu li:last-child a {
    margin-right: 0;
}
	
a.pagetop {
    position: absolute;
    padding: 18px 15px;
    background: #fff;
    border-radius: 100%;
    top: -50px;
    box-shadow: 3px 3px 10px rgb(0 0 0 / 10%);
    right: 0;
}

.formErrorContent {
    color:red
}


}

.alert_text{
    color: red;
    font-size: 1.6rem;
    text-align: center;
    margin: 30px;
}


.request_except_card form dl {
    display: flex;
    padding: 30px 0;
    align-items: center;
    border-bottom: 1px solid lightgray;
}


.request_except_card form input {
    border: 1px solid lightgray;
    padding: 14px;
    border-radius: 8px;
    font-size: 1.6rem;
}

.request_except_card dd.form_class select {
    padding: 15px 50px 15px 15px;
    border-radius: 6px;
    margin-bottom: 12px;
    border: 1px solid lightgray;
    font-size: 1.6rem;
    background-image: url("../2511LPimg/icon_arrow_black.png");
    background-size: 10px;
    background-position: center right 15px;
}