@charset "UTF-8";
/*----------
基本設定
----------*/
html {
  font-size: 62.5%;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #333333;
  scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0;
}

/*文字系*/
p {
  font-size: 2rem;
  font-weight: 600;
  font-size: 2rem;
  line-height: 2;
  letter-spacing: 1px;
  line-break: strict;
}
p span {
  color: #ff6b46;
}

h1 {
  font-size: 5rem;
  margin: 0;
}

h2 {
  font-size: 2.6rem;
  margin: 0;
}

h3 {
  font-size: 2.8rem;
  margin: 0;
}

h4 {
  font-size: 2.4rem;
  margin: 0;
}

h5 {
  font-size: 2rem;
  margin: 0;
}

h6 {
  font-size: 1.8rem;
  margin: 0;
}

small {
  font-size: 1.2rem;
}

strong {
  font-weight: bold;
  font-size: 1.8rem;
}

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

.underline-y {
  font-weight: bold;
  position: relative;
}
.underline-y::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 50%;
  background-color: #fff27d;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: -1;
}

/*文字系ここまで*/
/*----------
レイアウト系
----------*/
/*コンテンツ幅*/
.content {
  margin: 0 auto;
  width: 100%;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
}

.mw-960 {
  max-width: 960px;
}

.mw-768 {
  max-width: 768px;
}

.mw-670 {
  max-width: 670px;
}

.mw-490 {
  max-width: 490px;
  min-width: 490px;
}

.bg-white {
  background-color: #fffbf6;
}

.bg-pink {
  background-color: #ffced6;
}

.bg-orange {
  background-color: #fff1e3;
  position: relative;
}
.bg-orange::before {
  content: "";
  display: block;
  background: url(../img/main-back.png);
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  bottom: 0;
  left: 0;
  position: fixed;
  z-index: 0;
}

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

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

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

@media screen and (max-width: 768px) {
  .content.mw-490 {
    width: 100vw;
    max-width: 100vw;
    min-width: 100vw;
  }
  .only-sp-br {
    display: inline-block !important;
  }
  .only-pc-br {
    display: none !important;
  }
  .only-pc {
    display: none !important;
  }
  .only-sp {
    display: block !important;
  }
}
/*コンテンツ幅ここまで*/
/*Flexレイアウト*/
.content-flex {
  display: flex;
  flex-wrap: nowrap;
}
.content-flex .flex-inner:last-child {
  margin-right: 0;
}
.content-flex .flex-2w {
  width: 48%;
  margin-right: 4%;
  margin-bottom: 10px;
}
.content-flex .flex-2w:nth-child(2n) {
  margin-right: 0%;
}
.content-flex .flex-3w {
  width: 32%;
  margin-right: 2%;
  margin-bottom: 10px;
}
.content-flex .flex-3w:nth-child(3n) {
  margin-right: 0%;
}

/*Flexレイアウトここまで*/
/*メインエリア*/
main {
  display: flex;
  position: relative;
  align-items: flex-start;
}
main .menu {
  width: calc((100% - 490px) / 2);
}
main .content {
  width: 33%;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
main .main-cv-area {
  width: 33%;
}

/*メインエリアここまで*/
/*固定部分*/
.menu {
  height: 100vh;
  left: 0;
  top: 0;
  position: sticky;
}
.menu .menu-box {
  width: 100%;
  max-width: 256px;
  position: relative;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
  background-color: white;
  border: 2px #ff6b46 solid;
  border-radius: 8px;
  padding: 30px 40px 30px 60px;
}
.menu .menu-box::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/menu-icon01.png);
  width: 77px;
  height: 65px;
  z-index: 10;
  right: -24px;
  top: 16px;
}
.menu .menu-box::after {
  content: "";
  position: absolute;
  background: url(../img/menu-icon02.png);
  width: 61px;
  height: 65px;
  z-index: 10;
  left: -35px;
  bottom: 15px;
}
.menu .menu-box ul {
  list-style-type: none;
  margin: 0;
  display: block;
  width: 100%;
  padding-left: 0;
}
.menu .menu-box ul li a {
  text-decoration: none;
  color: #cd9284;
  transition: 0.3s;
  font-size: 2.2rem;
  line-height: 2.2;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  position: relative;
}
.menu .menu-box ul li a:hover {
  color: #9d503c;
}
.menu .menu-box ul li a.click-link {
  color: #9d503c;
  position: relative;
}
.menu .menu-box ul li a.click-link::before {
  content: "●";
  display: block;
  color: #ff6b46;
  position: absolute;
  left: -1.5em;
  top: 50%;
  font-size: 0.8em;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.main-cv-area {
  height: 100vh;
  right: 0;
  top: 0;
  position: sticky;
}
.main-cv-area .main-cv-box {
  position: relative;
  top: 10%;
}
.main-cv-area .main-cv-box h3 {
  font-weight: bold;
  font-size: 2.4rem;
  color: #ff6b46;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  margin-bottom: 30px;
}
.main-cv-area .main-cv-box img {
  max-width: 232px;
  margin: 0 auto 30px;
}

@media screen and (max-width: 1414px) {
  .main-cv-area .main-cv-box h3 {
    font-size: 1.8rem;
  }
  .main-cv-area .main-cv-box .cv-btn {
    font-size: 1.8rem;
    padding: 10px 10px 10px 30px;
    max-width: 180px;
  }
  .menu .menu-box {
    padding: 10px 10px 10px 35px;
  }
  .menu .menu-box::before, .menu .menu-box::after {
    content: none;
  }
  .menu .menu-box ul li a {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 960px) {
  .main-cv-area {
    display: none;
  }
  .menu {
    display: none;
  }
}
/*固定部分ココまで*/
/*メインビジュアル*/
.main-vs {
  position: relative;
  padding: 30px;
}
.main-vs .swiper {
  display: block;
  margin: 0 auto;
}
.main-vs h1 {
  position: absolute;
  padding: 5px 10px;
  color: #ff6b46;
  bottom: 30px;
  z-index: 1;
  display: inline;
}
.main-vs h1 span {
  background: linear-gradient(transparent 0%, #fffbf6 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline-block;
  margin-bottom: 10px;
  padding: 0px 10px 0px 0px;
  line-height: 1.2;
}
.main-vs::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../img/back-01.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1414px) {
  .main-vs h1 {
    font-size: 3.6rem;
  }
}
/*メインビジュアルここまで*/
/*イントロダクション*/
.introduction {
  padding: 0 24px;
  position: relative;
}
.introduction h2 {
  color: #29bec3;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.5;
  display: block;
  border-radius: 50px;
  text-align: center;
  padding: 10px 0px;
}
.introduction::before {
  content: "";
  display: block;
  position: absolute;
  width: 322px;
  height: 463px;
  background: url(../img/back-02.png);
  background-size: cover;
  background-repeat: no-repeat;
  bottom: 0;
  right: 0;
}

@media screen and (max-width: 768px) {
  .introduction h2 {
    font-size: 2.4rem;
    padding: 0 0;
  }
}
/*イントロダクション*/
/*コースここから*/
.ttl-area-icon {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.4rem;
  color: #ff6b46;
  text-align: center;
  font-weight: bold;
  position: relative;
  margin-bottom: 10px;
}
.ttl-area-icon::before {
  content: "";
  display: block;
  background-image: url(../img/ttl-before.png);
  width: 23px;
  height: 58px;
  position: absolute;
  left: 14px;
  bottom: 0;
}
.ttl-area-icon::after {
  content: "";
  display: block;
  background-image: url(../img/ttl-after.png);
  width: 23px;
  height: 58px;
  position: absolute;
  right: 14px;
  bottom: 0;
}

.ttl-area {
  background-color: #ff6b46;
  color: white;
  padding: 10px 20px;
}
.ttl-area h2 {
  font-size: 3.6rem;
  line-height: 1.2;
}
.ttl-area h2 span {
  font-size: 2.4rem;
}
.ttl-area p {
  line-height: 1.2;
}

@media screen and (max-width: 768px) {
  .ttl-area-icon {
    font-size: 1.9rem;
  }
}
.course {
  padding: 0 10px 60px;
}
.course .course-p {
  padding: 20px 0 115px;
  margin: 0 0;
  position: relative;
}
.course .course-p::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -20px;
  right: 10px;
  width: 145px;
  height: 175px;
  background: url(../img/annai_illust.png);
}
.course .course-flow .course-icon {
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.course .course-flow .standard {
  color: white;
  font-weight: bold;
  background-color: #29bec3;
  border-radius: 30px;
  padding: 0px 15px;
  font-size: 1.4rem;
  margin-bottom: 5px;
  display: block;
}
.course .course-flow .safety {
  color: white;
  font-weight: bold;
  background-color: #ff6b46;
  border-radius: 30px;
  padding: 2px 15px;
  font-size: 1.4rem;
  display: block;
}
.course .course-flow-box01 {
  border: solid 1px #9d503c;
  border-radius: 8px;
  color: #9d503c;
  margin-bottom: 20px;
  padding: 0px 13px 13px 13px;
  position: relative;
}
.course .course-flow-box01::after {
  content: "";
  display: block;
  background-color: #9d503c;
  width: 1px;
  height: 21px;
  bottom: -21px;
  margin: 0 auto;
  position: absolute;
  left: 50%;
}
.course .course-flow-box01:last-child::after {
  display: none;
}
.course .course-flow-box01 h3 {
  color: #9d503c;
  border-bottom: solid 1px #9d503c;
  font-size: 2.4rem;
  position: relative;
  padding: 13px 10px;
}
.course .course-flow-box01 p {
  font-size: 1.6rem;
  margin-bottom: 0;
}
.course .course-flow-box01.box-standard {
  border: solid 1px #ff6b46;
  color: #ff6b46;
}
.course .course-flow-box01.box-standard h3 {
  border-bottom: #ff6b46 solid 1px;
  color: #ff6b46;
}
.course .course-box {
  border: solid 3px #ff6b46;
  border-radius: 0px 10px 10px 10px;
  background-color: white;
  position: relative;
  padding: 10px;
  margin-bottom: 20px;
}
.course .course-box .safety-icon {
  position: absolute;
  background-color: #ff6b46;
  color: white;
  font-size: 2rem;
  font-weight: 500;
  border-radius: 10px 10px 0 0;
  padding: 0px 23px;
  bottom: 100%;
  left: -3px;
}
.course .course-box h3 {
  font-size: 3.3rem;
  line-height: 1.2;
}
.course .course-box h3 small {
  font-size: 2rem;
}
.course .course-box ul {
  padding: 15px 0;
  letter-spacing: 1px;
  margin: 0;
}
.course .course-box ul li {
  list-style: none;
  font-size: 1.6rem;
  font-weight: bold;
  position: relative;
}
.course .course-box ul li::before {
  content: "●";
  color: #29bec3;
  display: inline-block;
  margin-right: 3px;
}
.course .course-box .link-safety {
  color: #ff6b46;
  text-decoration: none;
  font-size: 1.6rem;
  transition: 0.3s;
  font-weight: bold;
}
.course .course-box .link-safety:hover {
  opacity: 0.7;
}
.course .course-box .course-link {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  display: block;
  margin: 0 auto;
  max-width: 9em;
  position: relative;
  transition: 0.3s;
  padding-right: 30px;
}
.course .course-box .course-link:hover {
  opacity: 0.5;
}
.course .course-box .course-link.orange {
  color: #ff6b46;
}
.course .course-box .course-link.orange::after {
  position: absolute;
  content: "";
  display: block;
  background-image: url(../img/link-open-orange.png);
  width: 24px;
  height: 24px;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.course .course-box .course-link.blue {
  color: #29bec3;
}
.course .course-box .course-link.blue::after {
  position: absolute;
  content: "";
  display: block;
  background-image: url(../img/link-open-blue.png);
  width: 24px;
  height: 24px;
  right: 0px;
  top: 50%;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.course .course-box.regular-box {
  border: solid 3px #29bec3;
  border-radius: 10px 10px 10px 10px;
}
.course .course-box .course-price {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.course .course-box .course-price .price {
  font-size: 5.9rem;
  font-weight: bold;
  line-height: 0.4;
  padding: 20px 0;
  letter-spacing: 4px;
}
.course .course-box .course-price .price span {
  font-size: 2.7rem;
}
.course .course-box .course-price .price-safety {
  color: white;
  background-color: #ff6b46;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  display: inline-block;
  border-radius: 50px;
  padding: 4px 20px;
  line-height: 1.2;
  margin-right: 10px;
  letter-spacing: 2px;
}
.course .cv-btn {
  margin-top: 40px;
  max-width: 380px;
}

@media screen and (max-width: 768px) {
  .course .course-box h3 {
    font-size: 2.8rem;
  }
  .course .course-box .course-price .price {
    font-size: 5rem;
    letter-spacing: 3px;
  }
  .course .course-box .course-price .price-safety {
    font-size: 1.6rem;
    padding: 4px 10px;
  }
  .course .course-flow .course-icon {
    display: inline;
    position: relative;
  }
  .course .course-flow .course-icon .safety {
    display: inline-block;
  }
  .course .course-p {
    font-size: 1.8rem;
    line-height: 1.6;
    padding: 0 10px 130px;
  }
}
/*コースここまで*/
/*セーフティ特典のご紹介*/
.safety-point {
  background-image: url(../img/en-haikei.png);
  background-position: top center;
  background-size: cover;
  padding: 80px 20px;
  position: relative;
  z-index: 2;
  margin-bottom: -65px;
}
.safety-point h2 {
  color: white;
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}
.safety-point .safety-point-box {
  padding: 15px;
  border-radius: 10px;
  background-color: white;
  margin-bottom: 20px;
}
.safety-point .safety-point-box h3 {
  display: block;
  font-size: 2.2rem;
  text-align: center;
  color: white;
  background-color: #29bec3;
  padding: 5px 0;
}
.safety-point .safety-point-box p {
  line-height: 1.6;
  margin: 10px 0px;
  font-size: 1.6rem;
  letter-spacing: 0.5px;
}

@media screen and (max-width: 768px) {
  .safety-point {
    padding: 60px 20px;
  }
  .safety-point h2 {
    font-size: 2.4rem;
  }
}
/*セーフティ特典ここまで*/
/*クレアールがおすすめの３つの理由*/
.osusume {
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
  padding: 70px 20px;
}
.osusume h2 {
  font-size: 2.8rem;
  font-weight: bold;
  color: #ff6b46;
  text-align: center;
  line-height: 1.2;
  padding: 50px 0;
}
.osusume .osusume-point {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
  font-family: "Zen Maru Gothic", sans-serif;
  padding: 30px 20px 25px;
  margin-bottom: 70px;
  position: relative;
}
.osusume .osusume-point:last-child {
  margin-bottom: 0;
}
.osusume .osusume-point .osusume_number {
  color: #29bec3;
  font-size: 6.4rem;
  font-weight: bold;
  font-family: "Zen Maru Gothic", sans-serif;
  position: absolute;
  top: -50px;
}
.osusume .osusume-point h3 {
  font-size: 2.2rem;
  text-align: center;
}
.osusume .osusume-point img {
  display: block;
  max-width: 265px;
  margin: 20px auto;
}
.osusume .osusume-point p {
  font-size: 1.6rem;
  margin: 0 0 0 0;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .osusume h2 {
    font-size: 2rem;
    line-height: 1.4;
  }
  .osusume .osusume-point {
    margin-bottom: 50px;
  }
  .osusume .osusume-point h3 {
    font-size: 1.8rem;
  }
}
/*クレアールがおすすめの３つの理由ここまで*/
/*書籍紹介*/
.shoseki {
  background-color: #29bec3;
  padding: 25px 25px 10px;
  font-family: "Zen Maru Gothic", sans-serif;
}
.shoseki .shoseki-inner {
  background-color: white;
  border-radius: 220px 220px 10px 10px;
  display: block;
  margin: 0 auto;
  padding: 80px 35px 40px;
}
.shoseki .shoseki-inner h2 {
  text-align: center;
  font-size: 2.8rem;
  border-bottom: 2px #29bec3 solid;
  padding-bottom: 20px;
}
.shoseki .shoseki-inner img {
  max-width: 142px;
  margin: 40px auto;
}
.shoseki .shoseki-inner p {
  font-size: 1.6rem;
}
.shoseki .shoseki-inner .align-center {
  text-align: center;
}
.shoseki .shoseki-inner .cv-btn-comment {
  color: #ff6b46;
  font-size: 2.4rem;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding: 0 20px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.shoseki .shoseki-inner .cv-btn-comment::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/ttl-before.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 20px;
  height: 30px;
  left: 0;
  bottom: 0;
}
.shoseki .shoseki-inner .cv-btn-comment::after {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/ttl-after.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 20px;
  height: 30px;
  right: 0;
  bottom: 0;
}

@media screen and (max-width: 768px) {
  .shoseki .shoseki-inner {
    padding: 80px 15px 40px;
  }
  .shoseki .shoseki-inner h2 {
    font-size: 2.2rem;
  }
  .shoseki .shoseki-inner img {
    margin: 25px auto;
  }
}
/*書籍紹介ここまで*/
/*CVボタン*/
.cv-btn {
  position: relative;
  background-color: #ff6b46;
  color: white;
  border: solid 2px #ff6b46;
  text-decoration: none;
  font-size: 3.6rem;
  font-weight: bold;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 1.2;
  padding: 5px 20px 10px 30px;
  border-radius: 50px;
  display: block;
  max-width: 342px;
  margin: 0 auto;
  transition: 0.3s;
  box-shadow: 0 4px 2px rgba(141, 61, 7, 0.2);
  bottom: 0;
}
.cv-btn::after {
  content: "";
  display: block;
  position: absolute;
  right: 30px;
  background: url(../img/white-arrow.png);
  width: 8px;
  height: 13px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.cv-btn:hover {
  color: #ff6b46;
  background-color: white;
  bottom: -2px;
  box-shadow: none;
}
.cv-btn:hover::after {
  background: url(../img/or-arrow.png);
}

@media screen and (max-width: 768px) {
  .cv-btn {
    font-size: 2.4rem;
    padding: 10px 40px 10px 10px;
    text-align: center;
  }
}
/*footer*/
footer {
  background-color: #29bec3;
}
footer a {
  color: white;
  text-decoration: none;
  font-size: 2rem;
  text-align: center;
  display: block;
  font-weight: bold;
  padding: 0px 0 7px;
}

/*footer*/
/*フェードイン*/
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*フェードインここまで*/
/*追従CVエリア*/
.float-btn {
  position: fixed;
  bottom: 5px;
  right: 5px;
  transition: 0.5s;
  z-index: 100;
}

.float-btn-link {
  position: relative;
  display: block;
}

.anim-box.poyopoyo {
  animation: poyopoyo 6s ease-out infinite;
  opacity: 1;
}

@keyframes poyopoyo {
  0%, 2.5%, 7.5%, 12.5% {
    transform: scale(1);
  }
  5%, 10% {
    transform: scale(0.95);
  }
  15% {
    transform: scale(1);
  }
}
/*フッターまでスクロールしたら消す*/
.is-hidden {
  visibility: hidden;
  opacity: 0;
}

@media screen and (min-width: 768px) {
  .float-btn {
    display: none;
  }
}
/*追従CVエリア*//*# sourceMappingURL=style.css.map */