@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    @media screen and (max-width: 768px) {
        font-size: 43.75%;
    }
    @media screen and (min-width: 769px) and (max-width: 960px) {
        font-size: 50%;
    }
    @media screen and (min-width: 961px) {
        font-size: 62.5%;
    }
}
body {
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
    font-weight: normal;
    font-style: normal;
}
h2 {
    font-size: 5rem;
}
h3 {
    font-size: 2rem;
}
li {
    list-style-type: none;
}
@media screen and (min-width: 769px) {
    .min-none-769 {
        display: none;   
    }
}
#main_box {
    position: relative;
}
.main_left-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}  
@media screen and (max-width: 768px) {
    .main_left-inner {
        margin-top: 10px;
    }
}
.main_left-line {
    width: 2px;
    height: 40px;
    background-color: #624a02;
}
@media screen and (max-width: 1000px) {
    .main_left-line {
        height: 20px;
    }
}
.main_left p {
    color: #624a02;
    font-weight: bold;
    font-size: 1.3rem;
}
#main_box header {
    width: 100%;
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}
#main_box header img {
    width:  70px;
    margin-left: 20px;
}
@media screen and (max-width: 768px) {
    #main_box header img {
        width:  50px;
    }
}
#main_box header nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.8rem;
    list-style-type: none;
    font-weight: bold;
}
@media screen and (max-width: 768px) {
    #main_box header nav ul {
        background-color: pink;
    }
}
#main_box header nav ul li:not(:last-child) {
    margin-right: 30px;
}
#main_box header nav ul li:last-child {
    padding: 20px;
    background-color: #fa346c;
}
@media screen and (max-width: 768px) {
    #main_box header nav ul li {
        display: inline-block;
        width: 100%;
        margin-right: 0 !important;
        margin-bottom: 0 !important;
        padding: 0 !important;
    }
}
#main_box header nav ul li a{
    color: #010101;
    text-decoration: none;
}
@media screen and (max-width: 768px) {
    #main_box header nav ul li a {
        display: inline-block;
        width: 100%;
        padding: 40px;
        color: #624a02;
    }
} 
#main_box header nav ul li.contact_btn a{
    color:  #fff;
}
#main {
    position: relative;
    background-image: url(../img/mv_bg.jpg);
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
#main .txt {
    width: 50%;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    display: flex;
}
@media screen and (max-width: 1500px) {
    #main {
        text-align: center;
    }
    #main .txt {
        width: 100%;
        display: block;
    }
    #main .txt .thin-brackets {
        margin-bottom: 50px;
    }
    #main .right {
        margin: 0 auto;
    }
}
#main p.thin-brackets {
    position: relative;
    line-height: 1.4;
    padding:0.7em;
    display: inline-block;
    font-size: 5rem;
    color: #ff6f61;
}
#main p.thin-brackets .emphasis_dot {
    color: #ff6f61;
    -webkit-text-emphasis: filled;
    text-emphasis: filled;
}
#main p.thin-brackets:before, #main p.thin-brackets:after { 
    content:'';
    width: 50px;
    height: 50px;
    position: absolute;
    display: inline-block;
}

#main p.thin-brackets:before {
border-left: solid 3px #ff6f61;
border-top: solid 3px #ff6f61;
top:0;
left: 0;
}
#main p.thin-brackets:after {
    border-right: solid  3px #ff6f61;
    border-bottom: solid 3px #ff6f61;
    bottom:0;
    right: 0;
}
#main h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
    background-color: #ff6f61;
    padding: 5px 15px;
}
#main .right {
    width: 60%;
}
@media screen and (max-width: 1000px) {
    #main .right {
        width: 80%;
    }
}
#main .right p {
    font-size: 1.7rem;
}
.main_box_flex {
    display: flex;
}
.main_box-left {
    position: relative;
    width: 50%;
}
.main_box-left-txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.main_box-left-txt h1 {  
    position: relative;
    font-size: 6rem;
    line-height: 130px;
}
.main_box-left-txt h1::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-bottom: 10px solid #ff6f61;
}
.main_box-left-txt h1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
    border-bottom: 10px solid #34495e;
}
.main_box-left-txt p {
    margin-top: 30px;
    font-size: 2.8rem;
    font-weight: bold;
    color: #624a02;
}
.main_box-left-pink {
    color: #ff6f61;
}
.main_box-left-navy {
    color: #34495e;
}
.main_box-right {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url(../img/mv.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.main_box-right .main_box-right-txt {
    width: 70%;
    padding: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 30px 0 10px 0;
    text-align: center;
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, .2);
}
@media screen and (max-width: 1000px) {
    .main_box-right .main_box-right-txt {
        width: 80%;
        padding: 10%;
    }
}
.main_box-right .main_box-right-txt .combo {
    margin-bottom: 30px;
}
.main_box-right .main_box-right-txt .combo p {
    font-size: 3rem;
    font-weight: bold;
}
.main_box-right .main_box-right-txt .combo p span.combo-free {
    margin-left: 10px;
    padding: 10px;
    background-color: #fc7f24;
    color: #fff;
}
.main_box-right .main_box-right-txt .combo .combo-explain {
    margin-top: 15px;
    font-size: 1.3rem;
    font-weight: bold;
}
.main_box-right .main_box-right-txt .combo_js {
    justify-content: center;
    font-size: 4rem;
    font-weight: bold;
}
.main_box-right .main_box-right-txt .combo_js .combo_js_design {
    color: #ff6f61;
}
.main_box-right .main_box-right-txt .combo_js .combo_js_coding {
    color: #34495e;
}
/* Schoolの特徴 */
.features_flex {
    width: 100%;
    display: flex;
}
.features_flex .features_left {
    position: relative;
    width: 50%;
    height: 100vh;
    text-align: center;
}
.features_left_box {
    text-align: center;
}
@media screen and (max-width: 1000px) {
    .features_left_box.sp {
        margin: 150px 0;
    }
}
@media screen and (min-width: 1001px) {
    .features_left_box {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
    }
}
.features_flex .features_left h2 {
    margin-bottom: 50px;
}
@media screen and (min-width: 1001px) {
    .features_nav li.active a {
        color: #ff6f61; /* ピンク系など目立つ色に */
        font-weight: bold;
    }
}
.features_right {
    position: relative;
    width: 100%;
    height: 100vh;
    text-align: center;
}
.features_right_box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
@media screen and (max-width: 1000px) {
    .features_right_box {
        width: 90%;
    }
}
.school-features {
    position: relative;
    color: #ff6f61;
}
.school-features h2 {
    position: relative;
    margin-bottom: 50px;
    display: inline-block;
}
.school-features h2::after {
    position: absolute;
    content: "Features";
    top: -35px;
    right: 2px;
    font-size: 50px;
    transform: rotate(-10deg);
    font-family: "Allura", cursive;
    font-weight: 400;
    font-style: normal;
}
.features_left ul li {
    list-style-type: none;
}
.features_left ul li:not(:last-child) {
    margin-bottom: 15px;
}
.features_left ul li a {
    font-size: 2rem;
    font-weight: bold;
    color: #010101;
}
@media screen and (max-width: 1000px) {
    .features_left ul li a {
        text-decoration: none;
    }
}
.features_right h3 {
    margin-bottom: 15px;
    color: #ff6f61;
    border-bottom: 2px solid #ff6f61;
    text-align: left;
}
@media screen and (max-width: 1000px) {
    .features_right h3 {
        font-size: 2.5rem;
    }
}
.features_right p {
    text-align: left;
    font-size: 1.6rem;
}
.features_right_box img {
    width: 50%;
    margin-bottom: 50px;
}
@media screen and (max-width: 1000px) {
    .features_right_box img {
        width: initial;
    }
}
/* schoolの特徴-固定 */
.spacer{
    width: 100%;
    height: 50vh;
}
@media screen and (max-width: 1000px) {
    .features_left.slider__wrap-left {
        position: initial !important;
    }
    .spacer{
        display: none;
    }
}
.slider__wrapper{
    width: 100%;
    height: 100%;
    display: flex;
}
@media screen and (max-width: 1000px) {
    .slider__wrapper {
        display: block;
    }
}
.slider__wrap-left,.slider__wrap-right{
    width: 50%;
    height: fit-content;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 1000px) {
    .slider__wrap-left,.slider__wrap-right {
        width: 100%;
         margin: 0 auto;
    }
    .slider__wrap-right.pc {
        display: none;
    }
}
@media screen and (min-width: 1001px) {
    .slider__wrap-right.sp {
        display: none;
    }
}
.ball{
    width: 100px;
    height: 100px;
    border-radius: 50%;
}
.slider__wrap-right .border {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
}
.slider__wrap-right .img-box{
    margin: 0 auto;
}
.slider__wrap-right .img-box:first-child{
    padding-top: 0;
}
.slider__wrap-right .img-box:last-child{
    padding-bottom: 0;
}
/* 料金について */
.Price_section___HTU7 {
    width: 100%;
    display: flex;
    font-size: 20px;
}
@media screen and (max-width: 1000px) {
    .Price_section___HTU7 {
        display: block;
        height: initial;
    }
}
.Price_flexLeft__LaAuL {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 100vh;
    color: #ff6f61;;
}
@media screen and (max-width: 1000px) {
    .Price_flexLeft__LaAuL {
        width: 100%;
        height: initial !important;
    }
}
.Price_flexLeft__LaAuL h2 {
    position: relative;
}
@media screen and (min-width: 1001px) {
    .Price_flexLeft__LaAuL h2 {
        margin-bottom: 0;
    }
}
.Price_flexLeft__LaAuL h2:after {
    position: absolute;
    content: "price";
    top: -35px;
    right: 2px;
    font-size: 50px;
    transform: rotate(-10deg);
    font-family: "Allura", cursive;
    font-weight: 400;
    font-style: normal;
}
.Price_flexLeft__LaAuL p {
    color: #ff6f61;
    font-weight: 700;
    border-bottom: 1px solid #ff6f61;
}
@media screen and (max-width: 1000px) {
    .Price_flexLeft__LaAuL p {
        margin-bottom: 50px;
    }
}
.Price_flexRight__6pUDx {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    height: 100vh;
    padding: 5%;
}
@media screen and (max-width: 1000px) {
    .Price_flexRight__6pUDx {
        width: 100%;
        height: initial;
    }
}
.Price_heading__gKVPj span {
    color: #fff;
    background-color: #34495e;
    padding: 5px;
}
.Price_priceText__yOyjm {
    border-bottom: 1px solid #000;
    margin-top: 20px;
}
.Price_priceText__yOyjm strong {
    padding: 0 0 10px 20px;
    font-size: 40px;
    color: #ff6f61;
}
@media screen and (max-width: 1000px) {
    .Price_priceText__yOyjm strong {
        font-size: 3.5rem;
    }
    .Price_priceText__yOyjm .tax {
        font-size: 2rem;
    }
}
.Price_caution__pMrmk {
    font-size: 12px;
    margin: 10px 0 40px 0;
}
.Price_squareHeading__bGxKL {
    position: relative;
    padding: .3em 0 .2em 1em;
    color: #ff6f61;
    margin-top: 40px;
}
.Price_squareHeading__bGxKL p a {
    color: #010101;
}
@media screen and (max-width: 1000px) {
    .Price_squareHeading__bGxKL {
        font-size: 3rem;
    }
}
.Price_squareHeading__bGxKL:before {
    position: absolute;
    top: 0;
    left: .3em;
    transform: rotate(55deg);
    height: 11px;
    width: 12px;
    background: #ff6f61;
    content: "";
}
.Price_squareHeading__bGxKL span {
    border-bottom: 3px solid #ff6f61;
}
.Price_squareHeading__bGxKL:after {
    position: absolute;
    transform: rotate(15deg);
    top: .6em;
    left: 0;
    height: 8px;
    width: 8px;
    background: #ff6f61;
    content: "";
}
.Price_squareHeading__bGxKL+p {
    margin-top: 20px;
}
.Price_squareHeading__bGxKL+ul {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    column-gap: 15px;
    row-gap: 10px;
    background-color: #ff6f61;
    padding: 20px 40px;
    border-radius: 20px 0 20px 0;
}
.Price_squareHeading__bGxKL+ul li {
    list-style: none;
    color: #fff;
}
.Price_squareHeading__bGxKL+ul li:before {
    content: "■";
    margin-right: 10px;
}
/* よくあるご質問 */
.Question_section__Xc22m {
    width: 100%;
    display: flex;
    font-size: 20px;
}
@media screen and (max-width: 1000px) {
    .Question_section__Xc22m {
        display: block;
        margin: 150px 0;
    }
}
.Question_flexLeft__n_CUw {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 100vh;
    color: #ff6f61;
}
@media screen and (max-width: 1000px) {
    .Question_flexLeft__n_CUw {
        width: 100%;
        height: initial;
    }
}
.Question_flexLeft__n_CUw h2 {
    position: relative;
    margin-bottom: 50px;
}
.Question_flexLeft__n_CUw h2:after {
    position: absolute;
    content: "question";
    top: -50px;
    right: -10px;
    font-size: 50px;
    transform: rotate(-10deg);
    font-family: "Allura", cursive;
    font-weight: 400;
    font-style: normal;
}
.Question_flexRight__zvJ4Z {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    height: 100vh;
    padding: 5%;
}
@media screen and (max-width: 1000px) {
    .Question_flexRight__zvJ4Z {
        width: 100%;
        height: initial;
    }
}
.Question_squareHeading__MmDvB {
    position: relative;
    padding: .3em 0 .2em 1em;
    color: #ff6f61;
    margin-top: 40px;
}
.Question_squareHeading__MmDvB:before {
    position: absolute;
    top: 0;
    left: .3em;
    transform: rotate(55deg);
    height: 11px;
    width: 12px;
    background: #ff6f61;
    content: "";
}
.Question_squareHeading__MmDvB span {
    border-bottom: 3px solid #ff6f61;
}
@media screen and (max-width: 1000px) {
    .Question_squareHeading__MmDvB span {
        font-size:  3rem;
    }
}
.Question_squareHeading__MmDvB:after {
    position: absolute;
    transform: rotate(15deg);
    top: .6em;
    left: 0;
    height: 8px;
    width: 8px;
    background: #ff6f61;
    content: "";
}
.Question_squareHeading__MmDvB+p {
    margin-top: 10px;
    padding-left: 20px;
    font-size: 18px;
}

/* フッター */


/* スクロールフェードイン(下から上) */
.fadeIn_up {
    opacity: 0;
    transform: translate(-50%, 0);
    transition: 2s;
  }
  .fadeIn_up.is-show {
    transform: translate(-50%, -50%);
    opacity: 1;
  }

  /* ハンバーガーボタン */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 200;
  }
  .hamburger span {
    display: block;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
  }
  
  /* メニュー */
  .nav-menu {
    display: flex;
  }
  @media screen and (max-width: 768px) {
    .hamburger {
      display: flex;
      position: absolute;
      top: 20px;
      right: 20px;
    }
  
    .nav-menu {
      display: none;
      position: absolute;
      top: 0;
      right: 0;
      background-color: #fff;
      width: 100%;
      text-align: center;
    }
  
    .nav-menu.active {
      display: block;
    }
  
    .nav-menu ul {
      flex-direction: column;
    }
  
    .nav-menu li {
      margin-bottom: 15px;
    }
  }
  
/* 横スクロール */
.area{
    overflow: hidden;
  }
  .wrap{
    display: flex;
  }
  .item{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    font-weight: bold;
  }

/* ページの先頭へ戻る */
#pagetop {
    position: fixed;
    right: 20px;
    bottom: 30px;
    z-index: 5500;
    display: block;
    width: 42px;
    height: 42px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #ffffff;
    border-radius: 4px;
    opacity: 0;
    transition: 0.5s;
}

#footer_fixed {
    opacity: 0;
}

#pagetop.visible,
#footer_fixed.visible {
    opacity: 1;
    pointer-events: auto;
}
@media screen and (max-width: 768px) {
    .footer__link {
        display: none;
    }
}
.footer__link ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px; /* 任意で調整 */
  list-style: none;
  padding: 0;
  margin-top: 100px;
}
.footer__link li {
  display: inline;
}
footer .footer__link ul li a {
    color: #010101;
    text-decoration: none;
    font-size: 1.8rem;
}
.footer__link .divider {
  color: #888; /* 色を調整 */
  pointer-events: none; /* クリックできないように */
}

footer #copyright {
    padding: 30px 0;
    text-align: center;
    font-size: 1.5rem;
}
#pagetop span {
    position: absolute;
    top: 16px;
    left: 11px;
    display: block;
    width: 18px;
    height: 18px;
    content: "";
    border-top: 3px solid #ffffff;
    border-right: 3px solid #ffffff;
    transform: rotate(315deg);
}
  

/* プライバシーポリシー・利用規約*/
.mv-privacy,
.mv-riyokiyaku {
  padding-top: 200px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .mv-privacy,
  .mv-riyokiyaku {
    padding-top: 150px;
  }
}
.mv-privacy h1,
.mv-riyokiyaku h1 {
  display: inline-block;
  line-height: 80px;
  color: #ff6f61;
  font-size: 7rem;
  font-weight: 700;
  font-style: normal;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .mv-privacy h1,
  .mv-riyokiyaku h1  {
    line-height: 70px;
  }
}
@media screen and (max-width: 768px) {
  .mv-privacy h1,
  .mv-riyokiyaku h1  {
    line-height: 55px;
  }
}
.mv-privacy h1 span,
.mv-riyokiyaku h1 span {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  display: block;
  color: #ff6f61;
  font-size: 3.7rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.privacy_container,
.riyokiyaku_container {
    width: 90%;
    margin: 0 auto;
    padding: 200px;
  }
  @media screen and (max-width: 768px) {
    .privacy_container,
    .riyokiyaku_container {
      padding: 80px 0;
    }
  }
  @media screen and (min-width: 769px) and (max-width: 1279px) {
    .privacy_container,
    .riyokiyaku_container {
      padding: 200px 0;
    }
  }
  @media screen and (min-width: 1280px) and (max-width: 1554px) {
    .privacy_container,
    .riyokiyaku_container {
      padding: 200px 100px;
    }
  }
  .privacy_container .privacy-box,
  .riyokiyaku_container .riyokiyaku-box {
    margin-bottom: 80px;
  }
  .privacy_container .privacy-box h2,
  .riyokiyaku_container .riyokiyaku-box h2 {
    margin-bottom: 30px;
    border-bottom: 2px solid #ff6f61;
    font-size: 3rem;
    color: #ff6f61;
  }
  .privacy_container p,
  .riyokiyaku_container p {
    font-size: 2rem;
  }
  .privacy_container .privacy-box ul,
  .riyokiyaku_container .riyokiyaku-box ul {
    margin: 30px 0;
  }
  .privacy_container .privacy-box li,
  .riyokiyaku_container .riyokiyaku-box li {
    list-style-type: square;
    list-style-position: inside;
    font-size: 2rem;
  }