@charset "utf-8";
/* CSS Document */
html {
  scroll-behavior: smooth;
}
body {
    font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴシック", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 16px;
    line-height: normal;
    color:#333;
    scroll-behavior: smooth;
    scroll-padding-top: 130px;
}
a{
    color:#333;
    text-decoration: none;
}
a:hover{
    opacity: .7;
}

.cta_buttons {
  background: url(/img/btn_bg.png) no-repeat #333 center;
  padding:60px 0 40px;
}
.cta_buttons ul li{
  text-align: center;
}
.cta_buttons ul li a {
  display: inline-block;
}
.cta_buttons ul li:nth-of-type(2) a{
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  text-decoration-line: underline;
  display: inline-block;
  padding: 0 0 25px 0;
}
.cta_buttons ul li.entry a{
  position: relative;
}
.cta_buttons ul li.entry a::before {
  content: "＼ 7月1日（水）よりサービス開始！／";
  color: #fff;
  position: absolute;
  top: -15px;
  font-weight: bold;
  font-size: 16px;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 100%;
}
.pc {
    display: block;
}
.sp {
    display: none;
}

/*------------------------------
fadeUp
------------------------------*/
.fadeUpOnScroll {
  opacity: 0; 
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fadeUpOnScroll.on {
  opacity: 1;
  transform: translateY(0);
}

.fadeUpContainer.on .fadeUpOnScroll:nth-child(1) { transition-delay: 0s; }
.fadeUpContainer.on .fadeUpOnScroll:nth-child(2) { transition-delay: 0.2s; }
.fadeUpContainer.on .fadeUpOnScroll:nth-child(3) { transition-delay: 0.4s; }
.fadeUpContainer.on .fadeUpOnScroll:nth-child(4) { transition-delay: 0.6s; }
.fadeUpContainer.on .fadeUpOnScroll:nth-child(5) { transition-delay: 0.8s; }

/*-------------------------------------------------
header
-------------------------------------------------*/
.site_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  background-color: #fff;
  padding-left: min(8vw, 150px);
}

/*.site_header.scrolled {
  background-color: #fff;
}*/

.header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 20px 0 0;
}
.header_inner .btn img {
  max-width: 260px;
  width: 100%;
}

.logo {
  display: flex;
  justify-content: left;
  margin-right: auto;
}
.logo img{
  max-height: 100%;
  display: block;
}

.global_menu ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}
.global_menu li {
  border-right: 1px solid #ccc;
  padding: 0 25px;
}
.global_menu li:last-child {
  border-right: none;
}
.global_menu li a {
  color: #333;
  font-weight: 700;
  font-size: 16px;
  transition: color 0.3s ease;
}


.global_menu li a:hover {
  color: #662F7A; 
}
/* 共通 */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 18px;
  cursor: pointer;
  z-index: 1101; /* メニューより前に */
}

.hamburger span {
  height: 2px;
  background-color: #333;
  display: block;
  border-radius: 1px;
  transition: all 0.3s ease;
}

/* ハンバーガー開いたときの × マーク */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
  width: 100%;
}
/*.btn_lesson{
  border-radius: 80px;
  background: linear-gradient(90deg, #079F6C 0%, #008B5C 100%);
  box-shadow: 0 0 6px 0 rgba(255, 255, 255, 0.50) inset, 1px 1px 2px 0 rgba(0, 0, 0, 0.25);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  height: 50px;
  padding: 0 40px 0 30px;
  position: relative;
}
.btn_lesson::after{
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  background: url('/assets/img/arrow_white.png') no-repeat;
  width: 12px;
  height: 14px;
  transform: translateY(-50%) translateX(-50%);
}*/


/*-------------------------------------------------
footer
-------------------------------------------------*/
.footer {
  padding: 85px 20px 40px;
  position: relative;
  text-align: center;
  background: #fff;
}

.footer_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1380px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.footer_menu_top{
  width: 100%;
}
.footer_menu_top ul {
  display: flex;
  align-items:flex-start;
  justify-content: space-between; 
}
.footer_menu_top .footer_logo{
  margin-right: 15px;
  text-align: left;
}
.footer_menu_top .footer_menu_topR{
  display:flex;
  gap:60px;
}
.footer_menu_top .footer_menu_topR .footer_nav{
  text-align: left;
}
.footer_menu_top .footer_menu_topR .footer_nav a{
  display:inline-block;
  margin: 0 0 15px;
  position: relative;
}
.footer_menu_top .footer_menu_topR .footer_nav a::after{
  content: "";
  position: absolute;
  right: -25px;
  top: 50%;
  background: url('/assets/img/arrow_black.png') no-repeat;
  width: 13px;
  height: 13px;
  transform: translateY(-50%) translateX(-50%);
}

.footer_menu_top .footer_menu_topR .footer_cta a{
  margin: 0 0 15px;
  display: block;
}
.footer_menu_center {
  width: 100%;
  border-bottom: 1px solid #ccc;
  padding: 0 0 50px;
  margin: 0 0 25px;
  text-align: left;
}
.footer_menu_center > p {
  font-weight: 700;
  margin:0 0 10px;
}
.footer_menu_center ul{
  display:flex;
  flex-wrap:wrap;
  gap:10px 50px;
}
.footer_menu_center ul  li:nth-child(8)::after{
  content:"";
  flex-basis:100%;
}
.footer_menu_center ul li a,
.footer_menu_btm ul li a{
  position: relative;
}
.footer_menu_center ul li a::after,
.footer_menu_btm ul li a::after{
  content: "";
  position: absolute;
  right: -23px;
  top: 50%;
  background: url('/assets/img/icon_external_link.png') no-repeat;
  width: 12px;
  height: 12px;
  transform: translateY(-50%) translateX(-50%);
}

.footer_menu_btm{
  width: 100%;
  display:flex;
  align-items:center;
}
.footer_menu_btm ul {
  display:flex;
  flex-wrap:wrap;
  gap:10px 50px;
}
.footer_menu_btm ul .rules{
  margin-right:-20px;
}
.footer_menu_btm ul .rules a::after{
  display: none;
}
.footer_menu_btm .copyright {
  font-size:16px;
  margin-left:auto;
}

/* トップに戻るボタン */
/*.btn_pagetop {
  position: absolute;
  bottom: 50px; 
  left: 50%;
  transform: translateX(-50%);
  width: 120px; 
  height: 120px; 
  background-color: #000;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease; 
}
.btn_pagetop:hover {
  transform: translateX(-50%) scale(1.2); 
}
.btn_pagetop a {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-weight: bold;
  font-size: 18px; 
  user-select: none;
}*/
.link_blank {
  margin-left: 6px; 
}
.top-text {
  line-height: 1;
  margin: -30px 0 5px;
}

.arrow {
  width: 25px;
  height: 25px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(135deg);
  margin-top: 6px;
}

.side_buttons {
  position: fixed;
  right: 0;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

/*------------------------------
共通
------------------------------*/
.page{
    background-color: #F8F8FA;
}


/*------------------------------
page_title
------------------------------*/
.page_title{
    width: 100%;
    height: 100%;
    margin: 80px auto 0;
}
.page_title img{
    width: 100%;
    height: auto;
}

/* .title01 */
.title01{
    color: #662F7A;
    text-align: center;
    font-style: normal;
    font-weight: 700;
    font-size: 42px;
    margin: 10px 0 45px;
}
.title01 span{
    display: block;
    font-size: 32px;
    line-height: 1.6;
}

/*------------------------------
topic_path
------------------------------*/

.topic_path {
    margin: 0 auto;
}
.topic_path ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 80%;
    max-width: 1000px;
    margin: 20px auto 0;
    font-size: 16px;
}
.topic_path ol li {
    position: relative;
}
.topic_path ol li + li {
    margin: 0 0 0 25px;
}
.topic_path ol li:not(:first-child)::before {
    position: absolute;
    content: "";
    width: 6px;
    height: 9px;
    background: url("/assets/img/arrow_gray.png") no-repeat center center;
    background-size: contain;
    top: 8px;
    left: -15px;
}
.topic_path a{
    color: #662F7A;
}

/*------------------------------
.row
------------------------------*/
.row{
    width: 100%;
    padding: 60px 0;
}

/*------------------------------
.price
------------------------------*/
.price {
    background: url(/img/price_bg.png) no-repeat;
    background-size: cover;
    padding: 100px 0;
}
.price .price_inner{
    max-width: 744px;
    width: 100%;
    margin: 0 auto 60px;
    border: 1px solid #662F7A;
    background: #FFF;
    box-shadow: 2px 2px 8px 0 rgba(51, 51, 51, 0.30);
    padding: 30px;
    text-align: center;
}
.price .general_fee{
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}
.price .general_fee p{
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px;
}
.price .general_fee p span{
    color: #662F7A;
    font-family: Roboto;
    font-size: 58px;
    font-weight: 700;
  margin: 0 5px 0 0;
}

.price .general_fee p:nth-of-type(2){
    font-size: 16px;
    margin: 0 0 20px;
}
.price .purple_bg {
    background: #F0EBF2;
    padding: 25px 0;
    margin: 0 0 30px;
}
.price .purple_bg p{
    font-size: 18px;
    font-weight: 700;
    margin:0 0 5px ;
}
.price .purple_bg p:nth-of-type(2){
    font-size: 14px;
    font-weight: 500;
    margin:0;
}
.price .purple_bg p span{
    font-family: Roboto;
    font-size: 42px;
    font-weight: 700;
    display: inline-block;
    margin: 0 5px 0 0;
}
.price .purple_bg p span.code{
  font-size: 14px;
}
.price .purple_bg p a{
  font-size: 12px;
  font-weight: normal;
  color: #662F7A;
  text-decoration: underline;
}
.price table{
    text-align: left;
    margin:0 0 40px;
}
.price table th{
    font-size: 18px;
    font-weight: 700;
    border-bottom: 1px solid #CCC;
    padding:10px;
}
.price table td{
    border-bottom: 1px solid #CCC;
    padding:10px;
}
.price table td p{
    font-size: 18px;
    font-weight: 500;
}
.price table td p span{
    font-size: 12px;
}
.price .price_btn p{
    color: #662F7A;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    padding: 0 0 25px;
    background: url("/img/price_btn_bg.png") no-repeat center bottom;
}
.price .price_btn a:nth-of-type(2){
    font-size: 18px;
    text-decoration-line: underline;
    display: block;
    padding: 25px 0;
}
.price .price_btn img{
  width: fit-content;
  margin: 0 auto;
}
.price_btn_c{
    display: block;
    width: fit-content;
    margin: 0 auto;
}
.price .note{
  text-align: left;
  font-size: 12px;
}
/*------------------------------
.faq_list
------------------------------*/
.faq_list{
    display: block;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}
.faq_list dt{
    position: relative;
    width: 100%;
    margin-top: 20px;
    padding: 15px 30px;
    cursor: pointer;
    transition: border-radius 0.3s;
    background: #FFF;
    box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.10);
}
.faq_list dt.active {
}
.faq_list dt::after{
    content: "＋";
    position: absolute;
    top: 50%;
    font-size: 30px;
    right: 10px;
    transform: translateY(-50%) translateX(-50%);
    font-weight: 700;
    color: #D9D9D9;
}
.faq_list dt.active::after {
    content: "－";
}

.faq_list dt h3{
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
}
.faq_list dt h3 span{
    color: #662F7A;
    text-align: center;
    font-family: Roboto;
    font-size: 40px;
    font-weight: 800;
    margin: 0 15px 0 0;
}
.faq_list dd{
    display: none;
    padding: 5px 0 20px 30px;
    background: #FFF;
    box-shadow: 3px 5px 6px 0 rgba(0, 0, 0, 0.10);
    position: relative;
}
.faq_list dd p{
  font-size: 16px;
  font-weight: 500;
  line-height: 180%;
  position: relative;
  padding: 0 40px 0 45px;
}
.faq_list dd p span {
  color: #B397BD;
  text-align: center;
  font-family: Roboto;
  font-size: 40px;
  font-weight: 800;
  position: absolute;
  left: 0;
  top: 0;
}
.faq_list dd a {
  color: #662F7A;
  text-decoration: underline;
}
.faq_list dd a.detail_link  {
    text-align: right;  
    width: 100%;  
    display: block;
  }

@media screen and (max-width: 768px) {
body{
    scroll-padding-top: 100px;
}

/*-------------------------------------------------
header
-------------------------------------------------*/
.site_header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 65px;
    z-index: 1000;
    background-color: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    padding: 0;
    min-width: 100%;
}
 .hamburger_wrapper{
    order: 3;
    height: 100%;
    display: grid;
    place-items: center;
    padding: 0 15px;
}
.hamburger {
    display: flex;
}

.hamburger span {
    background-color: #7E308D;
}
.hamburger span:nth-of-type(2) {
    width: 80%;
    margin: 0 0 0 auto;
}
.hamburger span:nth-of-type(3) {
    width: 55%;
    margin: 0 0 0 auto;
}

.btn {
    order: 2;
    margin: 0 0 0 10px;
}

header .btn a{
    display: block;
}
header .btn a img{
    width:100%;
    max-height: 100%;
    display: block;
}
.btn a img{
    height: auto;
}
.logo {
    order: 1;
}

.header_inner {
    padding: 0 0 0 10px;
    background: #fff;
    min-width: 100%;
}
/* メニューの右スライド設定 */
.global_menu{
    position: fixed;
    top: 55px;
    right: -100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: right 0.3s ease, opacity 0.3s ease;
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    margin: 0;
    background: #FAFAFA;
    padding: 0 0 40px 0;
}

/* activeクラスで画面内にスライドイン */
.global_menu.active {
    right: 0;
    top: 65px;
    opacity: 0.9; 
    pointer-events: auto; /*クリックできるように */
}
.global_menu ul {
    flex-direction: column;
    gap: 10px;
    padding: 0 20px;
    margin: 60px 0 0;
    height: 100%;
    width: 80%;
}
.global_menu li {
    border:none;
    padding: 0 0 20px;
}
.global_menu li a {
    font-size: 14px;
    width: 100%;
    display: block;
    position: relative;
}
.global_menu li a::after {
    content: "";
    position: absolute;
    background: url( "/assets/img/arrow_black.png") no-repeat right;
    top: 50%;
    width: 13px;
    height: 13px;
    transition: transform 0.3s ease;
    transform: translateY(-50%) translateX(-50%);
    padding: 0 25px;
}
.menu_copy{
    color: #fff;
    position: absolute;
    bottom: 10%;
    right: 20px;
    font-size: 10px;
}
.monitor_lesson{
    font-size: 16px;
    height: 55px;
    padding: 5px 40px 0 20px;
    width: 100%;
}
.monitor_lesson span{
    font-size: 10px;
}
.monitor_lesson::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 40%;
    background: url('/assets/img/arrow.png') no-repeat right;
    background-size: auto;
    background-size: 70%;
}

/*-------------------------------------------------
button
-------------------------------------------------*/

.pc {
    display: none
}
.sp {
    display: block;
}
.cta_buttons {
    background: url(/img/btn_bg_sp.png) no-repeat center;
    padding: 40px 20px;
    background-size: cover;
}
.cta_buttons ul li a {
  max-width: 340px;
}
.cta_buttons ul li:nth-of-type(2) a {
  font-size: 14px;
  padding: 0 0 30px;
}

/*-------------------------------------------------
footer
-------------------------------------------------*/
.footer {
    padding: 60px 30px 80px;
}
.footer_inner {
    display:block;
    max-width: 100%;
    width: 100%;
    min-width: 100%;
}
.footer_menu_top ul {
    display: block;
}
.footer_menu_top .footer_logo {
    width: 100%;
    text-align: center;
    margin: 0 0 20px;
}
.footer_menu_top .footer_logo img{
    width: auto;
}
.footer_menu_top .footer_menu_topR {
    display: block;
}
.footer_menu_top .footer_menu_topR .footer_nav {
    text-align: center;
}
.footer_menu_top .footer_menu_topR .footer_nav a{
  display:inline-block;
}

.footer_menu_top .footer_menu_topR .footer_cta{
    margin: 40px auto;
    max-width: 350px;
}
.footer_menu_top .footer_menu_topR .footer_cta a img{
    width: 100%;
    margin: 0 auto;
}

.footer_menu_center {
    padding: 0 0 25px;
}
.footer_menu_btm {
    width: 100%;
    display: block;
}
.footer_menu_btm ul li{
    text-align: left;
    width: 100%;
}  
.footer_menu_btm .copyright {
    font-size: 14px;
    margin: 40px 0 0;
}
.foot_buttons.sp{
    position: fixed;
    bottom: 0;
    display: flex;
    z-index: 9999;
}

/*.btn_pagetop {
    bottom: initial;
    top: -60px;
    z-index: 200;
}*/
    
    
/*------------------------------
page_title
------------------------------*/
.page_title{
    margin: 65px auto 0;
}
/* .title01 */
.title01{
    margin: 0 0 25px;
    font-size: 26px;
    line-height: 1.3;
}
.title01 span{
    line-height: 1.6;
    font-size: 20px;
}
   

/*------------------------------
topic_path
------------------------------*/
.topic_path {
    margin: 0 auto;
    padding: 0 20px;
}
.topic_path ol {
    width: 100%;
    margin: 20px auto 0;
    font-size: 14px;
}
.topic_path ol li {
    position: relative;
}
.topic_path ol li + li {
    margin: 0 0 0 20px;
}
.topic_path ol li:not(:first-child)::before {
    position: absolute;
    content: "";
    width: 5px;
    height: 7px;
    background: url("/assets/img/arrow_gray.png") no-repeat center center;
    background-size: contain;
    top: 7px;
    left: -12px;
}

/*------------------------------
.row
------------------------------*/
.row{
    width: 100%;
    padding: 30px 0;
}


 /*------------------------------
.price
------------------------------*/ 
.price {
    background: url(/img/price_bg_sp.png) no-repeat;
    background-size: cover;
    padding: 50px 20px;
  }
.logo_scroll#companies {
  background: url(/img/companies_bg_sp.png) no-repeat center;
  background-size: cover;
  padding: 50px 0;
}
.price .price_inner {
  margin: 0 auto 40px;
  border: 1px solid #662F7A;
  background: #FFF;
  box-shadow: 2px 2px 8px 0 rgba(51, 51, 51, 0.30);
  padding: 20px;
  text-align: center;
}
.price .general_fee p {
  font-size: 16px;
}
.price .general_fee p span {
  font-size: 50px;
}
.price .general_fee p:nth-of-type(2) {
  font-size: 14px;
} 
.price .purple_bg p {
  font-size: 16px;
}
.price .purple_bg p span {
  font-size: 38px;
}
.price .purple_bg p:nth-of-type(2) {
  font-size: 12px;
} 
.price table th {
  font-size: 16px;
  border-bottom: none;
  padding: 10px 0;
  display: block;
}
.price table td {
  padding: 0 0 15px;
  display: block;
} 
.price table td p {
  font-size: 16px;
}
.price table td p span {
  font-size: 11px;
}
.price .price_btn p {
  font-size: 16px;
}
.price .price_btn a:nth-of-type(2) {
  font-size: 14px;
} 
.price .price_btn img {
  width: 100%;
} 

.price .note{
  font-size: 11px;
}

/*------------------------------
.faq_list
------------------------------*/
.faq_list {
    width: 100%;
    margin:0 auto 40px;
}
.faq_list dt{
    padding: 15px 40px 15px 0;
}
.faq_list dt::before {
    font-size: 28px;
}
.faq_list dt::after {
  font-size: 25px;
  right: 0;
}
.faq_list dt h3{
    padding: 0 0 0 50px;
    font-size: 16px;
    position: relative;
  }
.faq_list dt h3 span {
    font-size: 24px;
    position: absolute;
    left: 20px;
    top: 0;
  }
.faq_list dd {
    display: none;
  padding: 5px 0 20px 20px;
}
.faq_list dd p{
    font-size: 14px;
  padding: 0 40px 0 30px;
}
.faq_list dd p span {
  font-size: 24px;
  display: block;
}
.faq_list dd a.detail_link  {
    text-align: right;  
    width: 100%;  
    display: block;
  margin:10px 0 0;
  }
}
