@charset "UTF-8";

/*----------------------------------------------------
 Reset
----------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

ul[class], ol[class] {
  padding: 0;
}

body, h1, h2, h3, h4, p, ul[class], ol[class], li, figure, figcaption, blockquote, dl, dd {
  margin: 0;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
}

ul[class], ol[class] {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

/*----------------------------------------------------
  Component
----------------------------------------------------*/
/* clearfix */
.clearfix {
  clear: both;
  zoom: 1;
}

.clearfix:after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/* rollover */
.rollover {
  animation: horizontalY 1s ease-in-out infinite alternate;
          transition: all 1s;
  -webkit-transition: all 1s;
}

.rollover:hover {
  animation: horizontalY 0.5s ease-in-out infinite alternate;
          transition: all 0.5s;
  -webkit-transition: all 0.5s;
  filter: alpha(opacity=70);
  opacity: 0.7;
}

/* innerlink */
.innerlink {
  display: block;
  height: 1px;
  position: relative;
  top: -60px;
}

/* pc/sp */
.pc {
  display: none;
}

.pc-i {
  display: none;
}

.sp {
  display: block;
}

.sp-i {
  display: inline;
}

@media (min-width: 768px) {
  .pc {
    display: block;
  }
  .pc-i {
    display: inline;
  }
  .sp,
  .sp-i {
    display: none;
  }
}

/*----------------------------------------------------
 header
----------------------------------------------------*/
.header {
  background: rgba(255, 255, 255, .8);
  position: fixed;
  width: 100%;
  z-index: 99;
}
.header-in {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  width: 87.23%;
}
.header-logo {
  padding: 10px 0;
  width: min(423px, 55.07vw);
}
@media (min-width: 768px) {
  .header-in {
    width: min(1855px, 96.61vw);
  }
  .header-logo {
    padding: 15px 0;
    width: min(1025px, 53.38vw);
  }
}

/*----------------------------------------------------
 gmenu toggle
----------------------------------------------------*/
.gmenu-toggle-wrap {
  padding-top: 6px;
  padding-right: 1.5em;
  text-align: right;
}
.gmenu-toggle {
  cursor: pointer;
  display: inline-block;
  height: 40px;
  position: relative;
  width: min(52px, 6.77vw);
}
.gmenu-toggle span {
  background: #0092d8;
  border-radius: 3px;
  display: block;
  height: 2px;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  left: 8px;
  transition: .2s;
  width: min(52px, 6.77vw);
}
.gmenu-toggle span::before,
.gmenu-toggle span::after{
  background: #0092d8;
  border-radius: 3px;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  transition: .3s;
  width: min(52px, 6.77vw);
}
.gmenu-toggle span::before{
    margin-top: -10px;
}
.gmenu-toggle span::after{
    margin-top: 8px;
}

/* open */
.gmenu-open .gmenu-toggle span {
    background: transparent;
}

.gmenu-open .gmenu-toggle span::before,
.gmenu-open .gmenu-toggle span::after{
    background: #0092d8;
    margin-top: 0;
}

.gmenu-open .gmenu-toggle span::before{
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.gmenu-open .gmenu-toggle span::after{
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

@media (min-width: 768px) {
  .gmenu-toggle-wrap {
    padding-bottom: 1em;
  }
  .gmenu-toggle {
    width: min(51px, 2.65vw);
  }
  .gmenu-toggle span {
    height: 5px;
    width: min(51px, 2.65vw);
  }
  .gmenu-toggle span::before,
  .gmenu-toggle span::after{
    height: 5px;
    width: min(51px, 2.65vw);
  }
  .gmenu-toggle span::before{
      margin-top: -12px;
  }
}

/*----------------------------------------------------
 gmenu
----------------------------------------------------*/
.gmenu,
.gmenu * {
  -webkit-transition: all .5s;
  transition: all .5s;
}

.gmenu {
  background: rgba(255, 255, 255, .95);
  border: 3px solid #0092d8;
  max-height: 80vh;
  overflow-y: hidden;
  position: fixed;
  top: auto;
  right: -100vw;
  width: 50%;
  z-index: 999;
}

.gmenu-open .gmenu {
  right: 0;
  overflow-y: scroll;
}
.gmenu-in {
    height: 100%;
    margin-bottom: 1rem;
}
.gmenu ul {
    padding: 0 1em;
}
.gmenu li a {
    border-bottom: 1px solid #0092d8;
    color: #0092d8;
    display: block;
    font-size: 1rem;
    padding: 10px 0;
    text-align: center;
    text-decoration: none;
}

/* header */
.gmenu-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  width: 87.23%;
}
.gmenu-logo {
  padding: 10px 0;
  width: min(423px, 55.07vw);
}
@media (min-width: 768px) {
  .gmenu-header {
    width: min(1855px, 96.61vw);
  }
  .gmenu-logo {
    padding: 15px 0;
    width: min(1025px, 53.38vw);
  }
}

@media (min-width: 768px) {
  .gmenu {
    max-width: 300px;
  }
  .gmenu-open .gmenu {
    max-height: 80vh;
    overflow-y: auto;
  }
  .gmenu-in {
    margin-bottom: 3rem;
  }
  .gmenu li a {
    font-size: 1.25rem;
    padding: 1rem 0;
  }
}

/*----------------------------------------------------
 pagetop
----------------------------------------------------*/
.pagetop {
  opacity: 0;
  position: fixed;
  right: 10px;
  bottom: 10px;
          transition: all 0.5s;
  -webkit-transition: all 0.5s;
  width: 60px;
}

.scroll .pagetop {
  opacity: 1;
}
@media (min-width: 768px) {
  .pagetop {
    right: 20px;
    bottom: 20px;
    width: min(145px, 7.55vw);
  }
}


/*----------------------------------------------------
 wrap
----------------------------------------------------*/
.wrap {
  margin-left: auto;
  margin-right: auto;
  max-width: 1920px;
}

/*----------------------------------------------------
 main-visual
----------------------------------------------------*/
.main-visual img {
  width: 100%;
}

/*----------------------------------------------------
 campaign1
----------------------------------------------------*/
.campaign1 {
  position: relative;
}
.campaign1 span,
.campaign1 a,
.campaign1 p {
  position: absolute;
}
.campaign1 p {
  color: #666;
  font-size: min(27px, 3.51vw);
}
.campaign1-val {
  left: 12%;
  top: 44.2%;
  width: 73.56%;
}
.campaign1-val-text {
  left: 12%;
  top: 48.8%;
  width: 73%;
}
.campaign1-pre {
  left: 12%;
  top: 72.8%;
  width: 73.56%;
}
.campaign1-pre-text {
  left: 12%;
  top: 77.2%;
  width: 73%;
}
.campaign1-course {
  left: 6.5%;
  top: 88.5%;
  width: 86.97%;
}

.campaign1-login {
  left: 35.4%;
  top: 93.2%;
  width: 28.38%;
}

.btn.login{
  display: none; /* loginクラス付与で非表示 */
}

.login-text{
  display: none;
  width: 80%;
  color: red!important;
  font-size: min(27px, 3.8vw)!important;
  font-weight: 700!important;
}
.login-text.login{
  display: block; /* loginクラス付与で表示 */
}

.campaign1 .value__login-text{
  left: 12%;
  top: 45.3%;
}

.campaign1 .premium__login-text{
  left: 12%;
  top: 74%;
}

@media (min-width: 768px) {
  .campaign1 p {
    font-size: min(15px, 0.78vw);
    text-align: center;
  }
  .campaign1-val {
    left: 25.5%;
    top: 62.2%;
    width: 17.96%;
  }
  .campaign1-val-text {
    left: 25.6%;
    top: 69.3%;
    width: 19%;
  }
  .campaign1-pre {
    left: 56%;
    top: 62.2%;
    width: 17.96%;
  }
  .campaign1-pre-text {
    left: 55.8%;
    top: 69.3%;
    width: 19%;
  }
  .campaign1-course {
    left: 41.2%;
    top: 79.1%;
    width: 17.96%;
  }
  
  .campaign1-login {
    left: 46%;
    top: 86.8%;
    width: 8.02%;
  }

  .login-text{
    width: 25%;
    font-size: min(20px, 1.2vw)!important;
  }
  .campaign1 .value__login-text{
    left: 22.5%;
    top: 64%;
  }
  .campaign1 .premium__login-text{
    left: 53%;
    top: 64%;
  }
}


/*----------------------------------------------------
 campaign2
----------------------------------------------------*/
.campaign2 {
  position: relative;
}
.campaign2 a {
  position: absolute;
}
.campaign2-detail {
  left: 6.5%;
  top: 93.5%;
  width: 86.97%;
}

@media (min-width: 768px) {
  .campaign2-detail {
    left: 18.7%;
    top: 86.7%;
    width: 17.96%;
  }
}
/*----------------------------------------------------
 campaign3
----------------------------------------------------*/
.campaign3 {
  position: relative;
}
.campaign3 a {
  position: absolute;
}
.campaign3-detail {
  left: 6.5%;
  top: 94.9%;
  width: 86.97%;
}

@media (min-width: 768px) {
  .campaign3-detail {
    left: 51.5%;
    top: 86.7%;
    width: 17.96%;
  }
}

/*----------------------------------------------------
 news
----------------------------------------------------*/
.news{
  margin-left: auto;
  margin-right: auto;
  padding-top: 19.66vw;
  padding-bottom: 21.48vw;
  width: 87.23%;
}
.news-title {
  margin-bottom: 7.81vw;
}
.news-title img {
  margin-left: auto;
  margin-right: auto;
  width: 37.1vw;
}
.news-main > div:nth-child(n+2) {
  margin-top: 7.81vw;
}
.news-course {
  aspect-ratio: 67 / 49;
  width: 100%;
}
.news-course iframe {
  height: 100%;
  width: 100%;
}

@media (min-width: 768px) {
  .news{
    padding-top: min(65px, 3.38vw);
    padding-bottom: min(100px, 5.2vw);
    width: 62.5%;
  }
  .news-title {
    margin-bottom: min(58px, 3.02vw);
  }
  .news-title img {
    width: 23.75%;
  }
  .news-main > div:nth-child(n+2) {
    margin-top: min(37px, 1.92vw);;
  }
  .news-course {
    aspect-ratio: 240 / 131;
  }
}

/*----------------------------------------------------
 apply
----------------------------------------------------*/
.apply {
  position: relative;
  margin-bottom: 20px;
}
.apply span,
.apply a,
.apply p {
  position: absolute;
}
.apply p {
  color: #666;
  font-size: min(27px, 3.51vw);
}
.apply-val {
  left: 12%;
  top: 43.6%;
  width: 73.56%;
}
.apply-val-text {
  left: 12%;
  top: 48.8%;
  width: 73%;
}
.apply-pre {
  left: 12%;
  top: 77.2%;
  width: 73.56%;
}
.apply-pre-text {
  left: 12%;
  top: 82.2%;
  width: 73%;
}
.apply-courseBtn {
  left: 6.5%;
  top: 93.2%;
  width: 86.97%;
}

.apply-login {
  left: 35.4%;
  top: 98.6%;
  width: 28.38%;
}

.apply .value__login-text{
  left: 12%;
  top: 45%;
}

.apply .premium__login-text{
  left: 12%;
  top: 78.5%;
}

@media (min-width: 768px) {
  .apply p {
    font-size: min(15px, 0.78vw);
    text-align: center;
  }
  .apply-val {
    left: 24.6%;
    top: 57.2%;
    width: 17.96%;
  }
  .apply-val-text {
    left: 24.6%;
    top: 66.1%;
    width: 19%;
  }
  .apply-pre {
    left: 56.7%;
    top: 57.2%;
    width: 17.96%;
  }
  .apply-pre-text {
    left: 56.8%;
    top: 66.1%;
    width: 19%;
  }
  .apply-courseBtn {
    left: 40.4%;
    top: 80%;
    width: 17.96%;
  }
  
  .apply-login {
    left: 45.1%;
    top: 91.5%;
    width: 8.02%;
  }
  .apply .value__login-text{
    left: 21.5%;
    top: 59%;
  }
  .apply .premium__login-text{
    left: 53.5%;
    top: 59%;
  }
}

/*----------------------------------------------------
 banner__content(HTML)
----------------------------------------------------*/

.apply-course p,.apply-course span{
  position: static!important;
}

.banner__content{
  width: 100%;
  margin-bottom: 3rem;
}

.apply-wrap{
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.apply-course{
    width: 87%;
    height: fit-content;
    margin: 0 auto;
    padding: 5px;
    background-color: white;
    box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.3);
    transform: skew(-2deg);
}

.course__inner.value{
  border: #0092D8 4px solid;
}

.course__inner.premium{
  border: #FFE101 4px solid;
}

.course__inner.free{
  border: #808080 4px solid;
}

.course__inner.print{
  border: #90A64C 4px solid;
}

.course__type{
  color: white!important;
  font-size: max(1.8rem, 7.8vw)!important; 
  font-weight: 600!important;
  text-align: center;
}

.value .course__type{
  background-color: #0092D8;
}

.premium .course__type{
  background-color: #FFE101;
  color: #333!important;
}

.free .course__type{
  background-color: #808080;
}

.print .course__type{
  background-color: #90A64C;
}

.course__content{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background-color: white;
}

.course__price--strikethrough{
  display: flex;
  align-items: baseline;
  color: #333!important;
  font-size: max(1.3rem, 5vw)!important; 
  font-weight: 600!important;
  text-decoration: line-through red;
}

.course__price--strikethrough .small-txt{
  font-size: max(0.9rem, 3vw)!important; 
}

.course__price--row{
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.course__price--highlight{
  height: fit-content;
  padding: 5px 0;
  border-radius: 3px;
  color: white!important;
  font-size: max(0.9rem, 3vw)!important;
  font-weight: 600;
  letter-spacing: 2px;
  writing-mode: vertical-rl;
}

.value .course__price--highlight{
  background-color: #0092D8;
}

.premium .course__price--highlight{
  background-color: #FFE101;
  color: #333!important;
}

.course__price{
  color: #333!important;
  font-size: max(3rem, 12vw)!important; 
  font-weight: 900!important;
  line-height: 1;
}

.course__price .small-txt{
  font-size: max(2rem, 6vw)!important; 
  font-weight: 600!important;
}

.course__price .ss-txt{
  font-size: max(0.9rem, 3vw)!important; 
}

.course__comment{
  color: #333!important;
  font-size: max(1.3rem, 5vw)!important; 
  font-weight: 600!important;
  text-align: center;
}

.apply-course .btn{
  width: 94%;
}

.apply-course .btn img{
  transform: skew(2deg);
}

.apply-course .login-text{
  padding: 1rem 0;
  width: 100%;
  text-align: center;
}

.apply-course .course__text{
  width: 100%;
  color: #666;
  font-size: 2.86vw;
  text-align: center;
}

.banner__text{
  margin-top: 2rem;
  color: #333;
  font-size: 5vw!important;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
}

.banner__login{
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.banner__login img{
  width: 90%;
}

.banner__course{
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.banner__course img{
  width: 28%;
}

@media (min-width: 768px) {
  .banner__content{
    margin-bottom: 2rem;
  }
  .apply-wrap{
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px 10px;
    padding: 0 18%;
  } 
  .apply-course{
    width: 48%;
    margin: 0;
  }
  .course__type{
    font-size: min(2.875rem, 2.5vw)!important; 
  }
  .course__content{
    padding: 0.3rem;
    gap: 0.2rem;
  }
  .course__price--strikethrough{
    font-size: min(1.7rem, 1.5vw)!important; 
  }
  .course__price--strikethrough .small-txt{
    font-size: min(1rem, 1vw)!important; 
  }
  .course__price--highlight{
    font-size: min(1.1rem, 1vw)!important; 
  }
  .course__price{
    font-size: min(4.5rem, 3.5vw)!important;
  }
  .course__price .small-txt{
    font-size: min(2.5rem, 2.1vw)!important;
  }
  .course__price .ss-txt{
    font-size: min(1.4rem, 1.2vw)!important; 
  }
  .course__comment{
    font-size: min(1.7rem, 1.5vw)!important;
  }
  .apply-course .btn{
    width: 68%;
  }
  .apply-course .login-text{
    padding: 0.5rem 0;
  }
  .apply-course .course__text{
    font-size: min(15px, 0.78vw);
  }
  .banner__text{
    margin-top: 0.5rem;
    font-size: min(20px, 1.2vw)!important;
  }
  .banner__login{
    margin-top: 0.2rem;
  }
  .banner__login img{
    width: 20%;
  }
  .banner__course {
    margin-top: 0.5rem;
  }
  .banner__course img{
    width: 6%;
  }
}

@media (min-width: 1080px) {
  .apply-wrap{
    gap: 1rem;
  } 
  .banner__content{
    margin-bottom: 4rem;
  }
  .apply-course .login-text{
    padding: 1rem 0;
  }
  .banner__text{
    margin-top: 1.5rem;
  }
}

@media (min-width: 1920px) {
  .course__content{
    padding: 1rem;
    gap: 0.5rem;
  }
  .banner__text{
    margin-top: 2.5rem;
  }
  .banner__login{
    margin-top: 1rem;
  }
  .banner__course {
    margin-top: 1.5rem;
  }
}

@media (min-width: 768px) {
  .sp-display{
    display: none;
  }
}

/*----------------------------------------------------
 footer
----------------------------------------------------*/
.footer {
  font-size: 12px;
  padding: 20px;
  text-align: center;
}

@media (min-width: 768px) {
  .footer {
    font-size: 16px;
    padding: 25px;
    text-align: center;
  }
}

/*----------------------------------------------------
 boxacr
----------------------------------------------------*/
.boxacr {
  cursor: pointer;
}
/*----------------------------------------------------
 openBox
----------------------------------------------------*/
.openBox {
  position: fixed;
  width: 100%;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  z-index: 100;
  left: 0;
  top: 0;
}

.openBox.open {
  background: rgba(0, 146, 216, .85);
  opacity: 1;
  visibility: visible;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
  -webkit-animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*----------------------------------------------------
 boxcontent
----------------------------------------------------*/
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.boxcontent {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  max-width: 65%;
  width: 1237px;
  border-radius: 10px;
  padding: 25px 30px;
  text-align: center;
  z-index: 999;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.boxcontent img {
  margin-left: auto;
  margin-right: auto;
  max-height: 85vh;
}

@media all and (max-width: 767px) {
  .boxcontent {
    max-width: 89%;
    padding: 15px;
  }
}

.boxcontent button {
  background: #d33957;
  border-radius: 40px;
  box-shadow: 4px 4px rgba(26, 50, 84, .8);
  margin: 40px auto 0;
  width: 210px;
  height: 40px;
  border: none;
  color: #fff;
  font-size: 20px;
  margin-top: 40px;
  cursor: pointer;
}

@media all and (min-width: 768px) {
  .boxcontent button:hover {
    opacity: .7;
  }
}

@media all and (max-width: 767px) {
  .boxcontent button {
    margin-top: 30px;
  }
}

.boxcontent.show {
  opacity: 1;
  visibility: inherit;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.hidden{
  display: none;
}