@charset "UTF-8";
/* =============================================================
mixin
============================================================= */
/* =============================================================
colors
============================================================= */
/* =============================================================
common - 全体に共通するスタイル
============================================================= */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;700&family=Source+Sans+3:wght@300;700&display=swap");
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}
body {
  font-size: 16px;
  color: #454545;
  font-family: "Source Sans 3", "Noto Sans JP", "Hiragino Sans", sans-serif;
  line-height: 1.6875;
}

img {
  width: 100%;
}

.inner {
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: content-box;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 20px;
  }
}

.section-title {
  font-size: 28px;
  padding-bottom: 20px;
  text-align: center;
  position: relative;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 20px;
    padding-bottom: 12px;
  }
}
.section-title::after {
  position: absolute;
  content: "";
  width: 80px;
  height: 3px;
  background: #64B5F6;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .section-title::after {
    width: 60px;
    height: 2px;
  }
}

.is-yellow::after {
  background: #FFC700;
}

.is-white {
  color: #fff;
}

/* =============================================================
header
============================================================= */
.header {
  background: #64B5F6;
  height: 80px;
  position: fixed;
  width: 100%;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16);
  z-index: 100;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .header {
    height: 60px;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  height: inherit;
  width: 100%;
  padding: 0 40px;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .header-inner {
    padding: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .header-inner {
    padding: 0 20px;
  }
}

.header-logo-text {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .header-logo-text {
    font-size: 12px;
  }
}

.header-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}
@media screen and (max-width: 1000px) {
  .header-nav {
    display: none;
  }
}
.header-nav li:not(:first-child) {
  margin-left: 40px;
}
.header-nav li a {
  color: #fff;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease 0s;
  font-size: 14px;
}
.header-nav li a:hover::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #FF80AB;
}
.header-nav li a.is-active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #3EA1D1;
}

.header-button {
  display: flex;
  margin-left: 40px;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .header-button {
    margin-left: auto;
    margin-right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .header-button {
    margin-left: auto;
    margin-right: 30px;
    display: none;
  }
}

.offer-button {
  display: inline-block;
  padding: 10px 35px 10px 25px;
  border-radius: 30px;
  background: #FF80AB;
  color: #fff;
  position: relative;
  font-weight: 700;
}
.offer-button:hover {
  background: #fff;
  color: #FF80AB;
  border: 2px solid #FF80AB;
  transition: all 0.3s 0s ease;
}
.offer-button::after {
  content: "\f054";
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .offer-button {
    padding: 8px 40px 8px 30px;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .offer-button {
    padding: 5px 30px 5px 20px;
    font-size: 14px;
  }
}

.drawer-icon {
  position: fixed;
  right: 16px;
  z-index: 300;
}
.drawer-icon.is-active {
  transform: translateX(-200px);
}
.drawer-icon.is-active .drawer-icon__bar1 {
  transform: rotate(-45deg);
  background: #fff;
  top: 8px;
}
.drawer-icon.is-active .drawer-icon__bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon__bar3 {
  transform: rotate(45deg);
  background: #fff;
  top: 8px;
}
@media screen and (min-width: 1000px) {
  .drawer-icon {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .drawer-icon {
    top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .drawer-icon {
    top: 20px;
  }
}

.drawer-icon__bars {
  width: 22px;
  height: 20px;
  display: block;
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
  position: absolute;
  height: 1px;
  width: 22px;
  background: #fff;
  top: 0;
  left: 0;
}

.drawer-icon__bar1 {
  top: 0;
}

.drawer-icon__bar2 {
  top: 8px;
}

.drawer-icon__bar3 {
  top: 16px;
}

.drawer-content {
  width: 200px;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  background: #64B5F6;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  z-index: 299;
  transform: translateX(105%);
}
.drawer-content.is-active {
  transform: translateX(0);
}
.drawer-content.is-close {
  transform: translateX(300px);
}

.drawer-content__item {
  border-bottom: 1px dotted #fff;
}
.drawer-content__item a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 18px 20px;
  position: relative;
}
.drawer-content__item a::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 11px;
  background: url(../img/arrow-b@2x.png) no-repeat center center/contain;
}

.drawer-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 298;
  display: none;
}
.drawer-background.is-active {
  display: block;
}
.drawer-background.is-close {
  display: none;
}

/* =============================================================
top
============================================================= */
.top {
  margin-top: 80px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top {
    margin-top: 60px;
  }
}
.top::before {
  content: "";
  position: absolute;
  background: url(../img/Ellipse\ 27.png) no-repeat center center/contain;
  top: 5%;
  left: 30%;
  width: 33.1%;
  height: 40%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top::before {
    display: none;
  }
}
.top::after {
  content: "";
  position: absolute;
  background: url(../img/Ellipse\ 31\ \(2\).png) no-repeat center center/contain;
  bottom: 0;
  left: -20px;
  width: 100px;
  height: 100px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top::after {
    display: none;
  }
}

.top-content {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .top-content {
    flex-flow: column;
    flex-direction: column-reverse;
  }
}

.top-left {
  width: 41%;
  padding: 0 0 0 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-left {
    width: 100%;
    padding: 30px 20px;
  }
  .top-left::after {
    content: "";
    position: absolute;
    background: url(../img/Ellipse\ 32\ \(2\).png) no-repeat center center/contain;
    top: 10%;
    right: 0;
    width: 120px;
    height: 40%;
    z-index: -1;
  }
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .top-left {
    padding: 0 0 0 20px;
  }
}

.top-sub-message {
  font-size: 20px;
  padding-bottom: 2px;
  position: relative;
  font-weight: 700;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .top-sub-message {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .top-sub-message {
    font-size: 16px;
  }
}
.top-sub-message span {
  font-size: 28px;
  color: #FF80AB;
  margin-right: 5px;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .top-sub-message span {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .top-sub-message span {
    font-size: 22px;
  }
}
.top-sub-message::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #454545;
  bottom: 0;
  left: 0;
  border-radius: 20px;
}

.top-main-message {
  margin-top: 60px;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .top-main-message {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .top-main-message {
    margin-top: 28px;
  }
}

.top-main-message1 {
  font-size: 45px;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .top-main-message1 {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .top-main-message1 {
    font-size: 20px;
  }
}
.top-main-message1 span {
  font-size: 52px;
  padding: 10px 20px;
  background: #64B5F6;
  border-radius: 20px;
  color: #fff;
  margin-right: 10px;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .top-main-message1 span {
    font-size: 34px;
    padding: 7px 15px;
    margin-right: 6px;
  }
}
@media screen and (max-width: 767px) {
  .top-main-message1 span {
    font-size: 28px;
    padding: 7px 20px;
    font-weight: 700;
  }
}

.top-main-message2 {
  font-size: 45px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .top-main-message2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .top-main-message2 {
    font-size: 20px;
    margin-top: 15px;
  }
}
.top-main-message2 span {
  font-size: 52px;
  padding: 10px 20px;
  background: #FF80AB;
  border-radius: 20px;
  color: #fff;
  margin-right: 10px;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .top-main-message2 span {
    font-size: 36px;
    padding: 7px 15px;
    margin-right: 6px;
  }
}
@media screen and (max-width: 767px) {
  .top-main-message2 span {
    font-size: 28px;
    padding: 7px 20px;
  }
}

.top-feature {
  margin-top: 60px;
  width: 90%;
  margin-right: auto;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .top-feature {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .top-feature {
    width: 100%;
    margin-top: 28px;
  }
}

.top-right {
  width: 59%;
}
@media screen and (max-width: 767px) {
  .top-right {
    width: 100%;
  }
}

/* =============================================================
intro
============================================================= */
.intro {
  background: #64B5F6;
  position: relative;
  margin-bottom: calc(10vw + 10px);
  padding: 80px 0 30px;
}
@media screen and (max-width: 767px) {
  .intro {
    padding: 40px 0 20px;
  }
}
.intro::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 0;
  height: 0;
  border-width: 10vw 50vw 0 50vw;
  border-style: solid;
  border-color: #64B5F6 transparent transparent transparent;
}
.intro::before {
  content: "";
  position: absolute;
  background: url(../img/Ellipse\ 31\ \(1\).png) no-repeat center center/contain;
  top: 30%;
  right: 0;
  width: 12%;
  height: 0;
  padding-bottom: 40%;
}

.intro-bg {
  position: relative;
}
.intro-bg::before {
  content: "";
  position: absolute;
  background: url(../img/Ellipse\ 30.png) no-repeat center center/contain;
  top: -10%;
  left: 0;
  width: 20%;
  height: 0;
  padding-bottom: 30%;
}
@media screen and (max-width: 767px) {
  .intro-bg::before {
    display: none;
  }
}
.intro-bg::after {
  content: "";
  position: absolute;
  background: url(../img/Ellipse\ 31\ \(3\).png) no-repeat center center/contain;
  bottom: 5%;
  left: 0;
  width: 8%;
  height: 0;
  padding-bottom: 20%;
}

.intro-question {
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro-circle {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}
.intro-circle + .intro-circle {
  margin-left: 12px;
}
@media screen and (max-width: 767px) {
  .intro-circle {
    width: 5px;
    height: 5px;
  }
  .intro-circle + .intro-circle {
    margin-left: 10px;
  }
}

.intro-question-text {
  padding: 0 12px;
  color: #fff;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .intro-question-text {
    font-size: 16px;
    padding: 0 10px;
  }
}

.intro-text {
  margin-top: 50px;
  text-align: center;
  font-size: 20px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .intro-text {
    font-size: 14px;
    line-height: 2;
    margin-top: 25px;
  }
}

.intro-text2-big {
  font-size: 28px;
}
@media screen and (max-width: 767px) {
  .intro-text2-big {
    font-size: 18px;
  }
}

.intro-text2-big-pink {
  font-size: 28px;
  padding-bottom: 1px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .intro-text2-big-pink {
    font-size: 18px;
  }
}
.intro-text2-big-pink::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #FF80AB;
  bottom: 0;
  left: 0;
}

.intro-box-items {
  max-width: 800px;
  width: 100%;
  margin: 50px auto 0;
}
@media screen and (max-width: 767px) {
  .intro-box-items {
    margin: 30px auto 0;
  }
}

.intro-box-item + .intro-box-item {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .intro-box-item + .intro-box-item {
    margin-top: 25px;
  }
}

.intro-box-title {
  height: 50px;
  line-height: 50px;
  color: #fff;
  background: #FF80AB;
  padding-left: 50px;
  position: relative;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .intro-box-title {
    height: auto;
    line-height: 1.5;
    padding: 10px 10px 10px 40px;
    font-size: 14px;
  }
}
.intro-box-title::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/clarity_note-line.png) no-repeat center center/contain;
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 767px) {
  .intro-box-title::before {
    left: 10px;
  }
}

.intro-box-text {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #fff;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .intro-box-text {
    display: block;
  }
}

.intro-box-text-left {
  width: 35%;
}
@media screen and (max-width: 767px) {
  .intro-box-text-left {
    width: 100%;
  }
}

.intro-box-text-right {
  width: 62%;
  margin-left: 3%;
}
@media screen and (max-width: 767px) {
  .intro-box-text-right {
    width: 100%;
    margin-left: 0;
    margin-top: 15px;
  }
}
.intro-box-text-right span {
  color: #64B5F6;
  font-weight: 700;
}

.intro-bottom-text {
  margin-top: 45px;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .intro-bottom-text {
    margin-top: 30px;
  }
}

.intro-bottom-text1 {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .intro-bottom-text1 {
    font-size: 14px;
  }
}

.arrow-bottoms {
  margin-top: 15px;
}

.arrow-bottom {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 15px 0 15px;
  border-color: #ffffff transparent transparent transparent;
  margin: 0 auto;
}
.arrow-bottom + .arrow-bottom {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .arrow-bottom {
    border-width: 10px 10px 0 10px;
  }
}

.intro-bottom-text2 {
  margin-top: 15px;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .intro-bottom-text2 {
    font-size: 14px;
  }
}
.intro-bottom-text2 span {
  font-size: 28px;
  margin-right: 5px;
  padding-bottom: 2px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .intro-bottom-text2 span {
    font-size: 18px;
  }
}
.intro-bottom-text2 span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #FFC700;
  bottom: 0;
  left: 0;
  border-radius: 20px;
}

/* =============================================================
merit
============================================================= */
.merit {
  padding: 40px 0 80px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .merit {
    padding: 30px 0 40px;
  }
  .merit::after {
    content: "";
    position: absolute;
    background: url(../img/Polygon\ 8\ \(1\).png) no-repeat;
    background-size: cover;
    top: 20%;
    left: 0;
    width: 100%;
    height: 900px;
    z-index: -1;
  }
}

.merit-card-items {
  max-width: 1200px;
  width: 100%;
  margin: 80px auto 0;
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 767px) {
  .merit-card-items {
    display: block;
    margin: 40px auto 0;
  }
}

.merit-card-item {
  width: calc(33% - 50px);
  padding: 50px 30px 30px;
  border: 2px solid #f5f5f5;
  border-radius: 10px;
  background: #fff;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .merit-card-item {
    width: 100%;
  }
  .merit-card-item + .merit-card-item {
    margin-top: 30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .merit-card-item {
    padding: 30px 15px 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1050px) {
  .merit-card-item {
    width: calc(33% - 13.3333333333px);
  }
}

.merit-card-item-img {
  width: 160px;
  margin: 0 auto;
}

.merit-card-item-title {
  color: #64B5F6;
  font-weight: 700;
  text-align: center;
  margin-top: 20px;
}

.merit-card-item-text {
  margin-top: 20px;
}

.merit-card-items-foundation {
  width: 100%;
  height: 350px;
  background: #64B5F6;
  z-index: -1;
  margin-top: -270px;
}
@media screen and (max-width: 767px) {
  .merit-card-items-foundation {
    display: none;
  }
}

/* =============================================================
course
============================================================= */
.course {
  background: #64B5F6;
  position: relative;
  margin-bottom: calc(10vw + 10px);
  padding: 80px 0 30px;
}
@media screen and (max-width: 767px) {
  .course {
    padding: 60px 0 25px;
  }
}
.course::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 0;
  height: 0;
  border-width: 10vw 50vw 0 50vw;
  border-style: solid;
  border-color: #64B5F6 transparent transparent transparent;
}
.course::before {
  content: "";
  position: absolute;
  background: url(../img/Ellipse\ 32\ \(1\).png) no-repeat center center/contain;
  top: -18%;
  right: 0;
  width: 8%;
  height: 0;
  padding-bottom: 20%;
  z-index: -1;
}

.course-bg {
  position: relative;
}
.course-bg::before {
  content: "";
  position: absolute;
  background: url(../img/Ellipse\ 30\ \(1\).png) no-repeat center center/contain;
  top: -10%;
  left: 0;
  width: 20%;
  height: 0;
  padding-bottom: 25%;
  z-index: 0;
}

.course-content {
  display: flex;
  max-width: 1200px;
  width: 100%;
  margin: 80px auto 0;
}
@media screen and (max-width: 767px) {
  .course-content {
    display: block;
    margin: 40px auto 0;
  }
}

.course-left {
  width: 45.8%;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .course-left {
    width: 100%;
  }
}

.course-right {
  width: 52.2%;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .course-right {
    width: 100%;
    margin-top: 35px;
  }
}

.course-right-title {
  color: #fff;
  padding-left: 18px;
  position: relative;
  border-left: 3px solid #fff;
}
@media screen and (max-width: 767px) {
  .course-right-title {
    padding-left: 10px;
  }
}

.course-right-maintitle {
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
}
@media screen and (max-width: 1000px) {
  .course-right-maintitle {
    font-size: 19px;
  }
}
@media screen and (max-width: 767px) {
  .course-right-maintitle {
    font-size: 18px;
  }
}

.course-right-subtitle {
  font-size: 12px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .course-right-subtitle {
    font-size: 10px;
  }
}

.course-right-text {
  margin-top: 45px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .course-right-text {
    margin-top: 20px;
    font-size: 14px;
  }
}
.course-right-text span {
  font-size: 20px;
  color: #FFC700;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .course-right-text span {
    font-size: 18px;
  }
}

/* =============================================================
achievement
============================================================= */
.achievement {
  padding: 40px 0 80px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .achievement {
    padding: 40px 0 40px;
  }
  .achievement::before {
    position: absolute;
    content: "";
    top: 60%;
    left: 0;
    background: url(../img/Ellipse\ 27\ \(3\).png) no-repeat center center/contain;
    width: 90%;
    height: 0;
    padding-bottom: 80%;
    z-index: -1;
  }
  .achievement::after {
    position: absolute;
    content: "";
    top: 25%;
    right: 0;
    background: url(../img/Ellipse\ 32\ \(1\).png) no-repeat center center/contain;
    width: 20%;
    height: 0;
    padding-bottom: 40%;
    z-index: 1;
  }
}

.achievement-title {
  width: 424px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .achievement-title {
    width: 60%;
    height: 0;
  }
}

.achievement-items {
  max-width: 1200px;
  width: 100%;
  margin: 120px auto 0;
  text-align: center;
}

.achievement-item {
  display: inline-block;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  border: 1px solid #64B5F6;
  position: relative;
  background: #fff;
  z-index: 3;
}
@media screen and (min-width: 1257px) {
  .achievement-item + .achievement-item {
    margin-left: 60px;
  }
}
@media screen and (max-width: 1137px) {
  .achievement-item:last-child {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .achievement-item {
    width: 85%;
    height: 0;
    padding-bottom: 85%;
  }
  .achievement-item + .achievement-item {
    margin-top: 40px;
  }
}
.achievement-item::before {
  position: absolute;
  content: "";
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/クラウン.png) no-repeat center center/contain;
  width: 162px;
  height: 126px;
}
@media screen and (max-width: 767px) {
  .achievement-item::before {
    width: 100px;
    height: 70px;
    top: -40px;
  }
}

.achievement-item-text {
  white-space: nowrap;
  position: absolute;
  display: inline-block;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.achievement-result {
  margin-top: 15px;
}

.achievement-item-text2-big {
  font-size: 60px;
  color: #FF80AB;
  font-weight: 700;
}

.achievement-number {
  font-size: 30px;
  color: #FF80AB;
  font-weight: 700;
}

/* =============================================================
price
============================================================= */
.price {
  padding: 80px 0;
  background: #F5F5F5;
  position: relative;
}
@media screen and (max-width: 767px) {
  .price {
    padding: 60px 0;
  }
}
.price::before {
  content: "";
  position: absolute;
  background: url(../img/Ellipse\ 32\ \(1\).png) no-repeat center center/contain;
  top: -14%;
  right: 0;
  width: 8%;
  height: 40%;
  z-index: 1;
}
.price::after {
  content: "";
  position: absolute;
  background: url(../img/Ellipse\ 29.png) no-repeat center center/contain;
  bottom: -5%;
  right: 0;
  width: 35%;
  height: 0;
  padding-bottom: 40%;
  z-index: 0;
}

.price-inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.price-detail {
  padding-bottom: 80px;
}

.price-detail-text {
  text-align: center;
  font-size: 20px;
  margin-top: 30px;
}

.price-table {
  margin-top: 80px;
  position: relative;
  z-index: 3;
  position: relative;
}
@media screen and (max-width: 767px) {
  .price-table {
    margin-top: 30px;
  }
}
.price-table::before {
  content: "";
  position: absolute;
  background: url(../img/Ellipse\ 29\ \(2\).png) no-repeat center center/contain;
  top: -10%;
  left: -5%;
  width: 100px;
  height: 100px;
  z-index: -1;
}

.price-tabel-title {
  font-size: 24px;
  font-weight: 700;
}

.table {
  margin-top: 30px;
  border-collapse: collapse;
  border: 1px solid #707070;
  background: #FFFFFF;
  width: 100%;
  table-layout: fixed;
}
.table th,
.table td {
  border: 1px solid #454545;
  vertical-align: middle;
  font-size: 24px;
}
@media screen and (max-width: 1000px) {
  .table th,
.table td {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .table th,
.table td {
    font-size: 14px;
  }
}
.table th {
  width: 30%;
  background: #64B5F6;
  color: #fff;
  text-align: center;
}
.table th span {
  font-size: 64px;
  margin: 0 5px;
}
@media screen and (max-width: 1000px) {
  .table th span {
    font-size: 48px;
  }
}
@media screen and (max-width: 767px) {
  .table th span {
    font-size: 22px;
  }
}
.table td {
  width: 70%;
  padding: 0 28px;
  line-height: 2;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .table td {
    padding: 0 15px;
  }
}
.table td span {
  font-size: 64px;
  margin: 0 10px;
}
@media screen and (max-width: 767px) {
  .table td span {
    font-size: 22px;
    margin: 0 5px;
  }
}

.price-table-text {
  margin-top: 20px;
}
@media screen and (max-width: 1000px) {
  .price-table-text {
    margin-top: 14px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .price-table-text {
    font-size: 14px;
  }
}

.price-table-text2 {
  margin-top: 10px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1000px) {
  .price-table-text2 {
    margin-top: 8px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .price-table-text2 {
    margin-top: 5px;
  }
}

/* =============================================================
closing
============================================================= */
.closing {
  padding: 80px 0;
  background: #64B5F6;
}
@media screen and (max-width: 767px) {
  .closing {
    padding: 60px 0;
  }
}

.closing-title {
  width: 460px;
  height: 90px;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .closing-title {
    width: 380px;
  }
}
@media screen and (max-width: 767px) {
  .closing-title {
    width: 70%;
    height: 0;
    padding-bottom: 15%;
  }
}

.closing-text {
  text-align: center;
  color: #fff;
  margin-top: 50px;
}
@media screen and (max-width: 1000px) {
  .closing-text {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .closing-text {
    font-size: 14px;
  }
}

.closing-items {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .closing-items {
    display: block;
    margin-top: 50px;
  }
}

.closing-item {
  width: 33.3%;
  padding: 5px;
  border: 1px solid #48D3C2;
  background: #fff;
  position: relative;
}
.closing-item:nth-child(1) {
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .closing-item:nth-child(1) {
    margin-right: 0;
  }
}
.closing-item:nth-child(2) {
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .closing-item:nth-child(2) {
    margin-left: 0;
    margin-top: 50px;
  }
}
@media screen and (max-width: 1000px) {
  .closing-item {
    width: 44%;
  }
}
@media screen and (max-width: 767px) {
  .closing-item {
    width: 100%;
  }
}

.closing-item-box {
  border: 1px solid #48D3C2;
  padding: 80px 0;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .closing-item-box {
    padding: 60px 15px;
  }
}

.closing-item-main-message {
  color: #64B5F6;
  font-weight: 700;
  font-size: 32px;
}
@media screen and (max-width: 1000px) {
  .closing-item-main-message {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .closing-item-main-message {
    font-size: 20px;
  }
}
.closing-item-main-message span {
  font-size: 40px;
  color: #2D3A61;
  margin-left: 10px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .closing-item-main-message span {
    font-size: 32px;
  }
}
.closing-item-main-message span::after {
  position: absolute;
  content: "";
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 8px;
  background: #FFD233;
  opacity: 0.6;
}

.closing-item-sub-message {
  margin-top: 20px;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .closing-item-sub-message {
    font-size: 14px;
  }
}

.closing-item-title {
  font-size: 20px;
  font-weight: 700;
  padding: 5px 40px;
  background: #2D3A61;
  color: #fff;
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.closing-offer {
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .closing-offer {
    margin-top: 40px;
  }
}

.closing-button-link {
  padding: 18px 80px;
  background: #FF80AB;
  color: #fff;
  border-radius: 10px;
  font-size: 24px;
  font-weight: 700;
  position: relative;
}
.closing-button-link:hover {
  background: #fff;
  color: #FF80AB;
  border: 1px solid #FF80AB;
}
@media screen and (max-width: 1000px) {
  .closing-button-link {
    padding: 12px 60px;
  }
}
@media screen and (max-width: 767px) {
  .closing-button-link {
    padding: 15px 50px;
    font-size: 16px;
  }
}
.closing-button-link::after {
  content: "";
  position: absolute;
  background: url(../img/Vector\ \(15\).png) no-repeat center center/contain;
  width: 12px;
  height: 21px;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .closing-button-link::after {
    width: 8px;
    height: 15px;
    right: 20px;
  }
}

.closing-offer-text {
  display: inline-block;
  margin-top: 20px;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .closing-offer-text {
    margin-top: 14px;
  }
}
@media screen and (max-width: 767px) {
  .closing-offer-text {
    font-size: 14px;
  }
}

/* =============================================================
voice
============================================================= */
.voice {
  background: #f5f5f5;
  position: relative;
  margin-bottom: calc(10vw + 10px);
  padding: 80px 0 30px;
}
@media screen and (max-width: 767px) {
  .voice {
    padding: 60px 0 30px;
  }
}
.voice::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 0;
  height: 0;
  border-width: 10vw 50vw 0 50vw;
  border-style: solid;
  border-color: #f5f5f5 transparent transparent transparent;
}

.swiper-container {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .swiper-container {
    margin-top: 40px;
  }
}

.swiper-content {
  border: 1px solid #f0f0f0;
  padding: 20px;
  background: #fff;
  width: 90%;
  margin: 0 auto;
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 767px) {
  .swiper-content {
    width: 70%;
  }
}

.swiper-user-information {
  display: flex;
  align-items: center;
}

.swiper-user-img {
  width: 100px;
  height: 100px;
}
@media screen and (max-width: 500px) {
  .swiper-user-img {
    width: 50px;
    height: 50px;
  }
}

.swiper-user-detail {
  font-size: 20px;
  margin-left: 20px;
  font-weight: 700;
}
@media screen and (max-width: 500px) {
  .swiper-user-detail {
    font-size: 16px;
    margin-left: 12px;
  }
}

.swiper-content-title {
  margin-top: 20px;
  color: #64B5F6;
  font-weight: 700;
}
@media screen and (max-width: 500px) {
  .swiper-content-title {
    margin-top: 15px;
  }
}

.swiper-content-text {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .swiper-content-text {
    font-size: 14px;
  }
}

.swiper-inner-content {
  background: #fff;
  padding: 20px;
  border: 1px solid #000;
}

.swiper-content-label {
  display: inline-block;
  padding: 10px 10px 10px 30px;
  background: #454545;
  color: #fff;
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 0 0 0 25px;
}

.swiper-button-prev {
  width: 40px;
  height: 40px;
  background: transparent url(../img/Group\ 471.png) no-repeat center center/contain;
  left: 26.7%;
  top: 50%;
  transform: translateY(-50%);
}
.swiper-button-prev::after {
  display: none;
}
@media screen and (min-width: 930px) and (max-width: 1150px) {
  .swiper-button-prev {
    left: 26%;
  }
}
@media screen and (min-width: 768px) and (max-width: 929px) {
  .swiper-button-prev {
    left: 25.3%;
  }
}
@media screen and (max-width: 767px) {
  .swiper-button-prev {
    left: 5%;
  }
}
@media screen and (max-width: 500px) {
  .swiper-button-prev {
    left: 3%;
    width: 30px;
    height: 30px;
  }
}

.swiper-button-next {
  width: 40px;
  height: 40px;
  background: transparent url(../img/Group\ 470.png) no-repeat center center/contain;
  right: 26.7%;
  top: 50%;
  transform: translateY(-50%);
}
.swiper-button-next::after {
  display: none;
}
@media screen and (min-width: 930px) and (max-width: 1150px) {
  .swiper-button-next {
    right: 26%;
  }
}
@media screen and (min-width: 768px) and (max-width: 929px) {
  .swiper-button-next {
    right: 25.3%;
  }
}
@media screen and (max-width: 767px) {
  .swiper-button-next {
    right: 5%;
  }
}
@media screen and (max-width: 500px) {
  .swiper-button-next {
    right: 3%;
    width: 30px;
    height: 30px;
  }
}

.pagination-position {
  bottom: -100px;
}

.pagination-position {
  position: relative;
  margin-top: 30px;
}

/* =============================================================
flow
============================================================= */
.flow {
  padding: 40px 0 80px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .flow {
    padding: 40px 0 20px;
  }
}
.flow::before {
  content: "";
  position: absolute;
  background: url(../img/Ellipse\ 27\ \(1\).png) no-repeat center center/contain;
  top: 0;
  right: 0;
  width: 20%;
  height: 0;
  padding-bottom: 20%;
  z-index: -1;
}

.flow-inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.flow-items {
  margin-top: 80px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .flow-items {
    margin-top: 40px;
  }
}
.flow-items::before {
  content: "";
  position: absolute;
  background: url(../img/Ellipse\ 29\ \(2\).png) no-repeat center center/contain;
  top: -10%;
  left: -10%;
  width: 60px;
  height: 60px;
  z-index: -1;
}

.flow-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .flow-item {
    display: block;
  }
}

.flow-item-title {
  display: flex;
  align-items: flex-end;
}

.flow-item-step {
  color: #64B5F6;
  font-size: 24px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .flow-item-step {
    font-size: 14px;
  }
}
.flow-item-step span {
  font-size: 48px;
}
@media screen and (max-width: 767px) {
  .flow-item-step span {
    font-size: 28px;
  }
}

.flow-item-name {
  margin-left: 25px;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: -4px;
}
@media screen and (max-width: 767px) {
  .flow-item-name {
    font-size: 18px;
    margin-bottom: 0;
    margin-left: 13px;
    margin-bottom: -4px;
  }
}

.flow-item-text {
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .flow-item-text {
    margin-top: 15px;
  }
}

.flow-item-left {
  width: 74.5%;
}
@media screen and (max-width: 767px) {
  .flow-item-left {
    width: 100%;
  }
}

.flow-item-right {
  width: 22.5%;
  margin-left: auto;
}
.flow-item-right img {
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .flow-item-right {
    width: 100%;
    margin-left: 0;
    margin-top: 15px;
  }
}

.flow-item-line {
  width: 100%;
  height: 2px;
  background: #64B5F6;
  margin-bottom: 60px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .flow-item-line {
    margin-bottom: 30px;
  }
}
.flow-item-line:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 19px 0 19px;
  border-color: #64b4f6 transparent transparent transparent;
}
@media screen and (max-width: 767px) {
  .flow-item-line:not(:last-child)::after {
    border-width: 9px 10px 0 10px;
  }
}

/* =============================================================
qa
============================================================= */
.qa {
  padding: 80px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .qa {
    padding: 60px 0;
  }
}
.qa::before {
  content: "";
  position: absolute;
  background: url(../img/Ellipse\ 28.png) no-repeat center center/contain;
  bottom: -15%;
  right: 0;
  width: 30%;
  height: 0;
  padding-bottom: 20%;
  z-index: -1;
}
.qa::after {
  content: "";
  position: absolute;
  background: url(../img/Ellipse\ 27\ \(2\).png) no-repeat center center/contain;
  top: 0;
  left: 0;
  width: 13%;
  height: 0;
  padding-bottom: 40%;
  z-index: 1;
}

.qa__items {
  width: 900px;
  max-width: 100%;
  margin: 80px auto 0;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .qa__items {
    margin: 50px auto 0;
  }
}

.qa__item:not(:first-child) {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .qa__item:not(:first-child) {
    margin-top: 20px;
  }
}

.qa-box {
  border: 2px solid #f5f5f5;
  border-radius: 7px;
}

.qa-box__q {
  color: #454545;
  background: #fff;
  padding: 22px 56px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .qa-box__q {
    font-size: 14px;
    padding: 14px 36px;
  }
}
.qa-box__q::before {
  content: "Q";
  position: absolute;
  color: #64B5F6;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  .qa-box__q::before {
    font-size: 20px;
  }
}

.qa-box__icon {
  width: 36px;
  height: 36px;
  background: #64B5F6;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .qa-box__icon {
    width: 21px;
    height: 21px;
    right: 8px;
  }
}
.qa-box__icon.is-open .qa-box__bar2 {
  display: none;
}

.qa-box__bar1 {
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 20px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}
@media screen and (max-width: 767px) {
  .qa-box__bar1 {
    width: 9px;
    height: 1px;
  }
}

.qa-box__bar2 {
  width: 2px;
  height: 20px;
  background: #fff;
  border-radius: 20px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}
@media screen and (max-width: 767px) {
  .qa-box__bar2 {
    width: 1px;
    height: 9px;
  }
}

.qa-box__a {
  background: #fff;
  color: #454545;
  line-height: 1.5;
  padding: 40px 30px 40px 20px;
  display: none;
  position: relative;
}
@media screen and (max-width: 767px) {
  .qa-box__a {
    padding: 20px 10px 20px 36px;
  }
}
.qa-box__a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #f5f5f5;
}

.qa-box__content {
  position: relative;
  padding-left: 35px;
}
@media screen and (max-width: 767px) {
  .qa-box__content {
    padding-left: 0;
  }
}
.qa-box__content::before {
  content: "A";
  color: #FF80AB;
  position: absolute;
  top: 50%;
  left: -7px;
  transform: translateY(-50%);
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  .qa-box__content::before {
    font-size: 20px;
    left: -22px;
  }
}

/* =============================================================
footer
============================================================= */
.footer {
  padding: 80px 0;
  background: #454545;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 60px 0;
  }
}

.footer-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer-inner {
    display: block;
  }
}

.footer-left {
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .footer-left {
    font-size: 18px;
  }
}

.footer-right {
  margin-left: auto;
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer-right {
    margin-top: 50px;
  }
}

@media screen and (max-width: 767px) {
  .footer-nav-list-item {
    font-size: 14px;
  }
}
.footer-nav-list-item + .footer-nav-list-item {
  margin-top: 28px;
}
@media screen and (max-width: 767px) {
  .footer-nav-list-item + .footer-nav-list-item {
    margin-top: 8px;
  }
}

.footer-nav-list-item-link {
  color: #fff;
}
.footer-nav-list-item-link:hover {
  border-bottom: 2px solid #64B5F6;
}
.footer-nav-list-item-link + .footer-nav-list-item-link {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .footer-nav-list-item-link {
    padding-left: 20px;
    position: relative;
  }
  .footer-nav-list-item-link::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 12px;
    height: 1px;
    background: #FF80AB;
  }
}

.footer-offer-button {
  margin-left: 80px;
}
@media screen and (max-width: 900px) {
  .footer-offer-button {
    margin-left: 40px;
  }
}

@media screen and (max-width: 767px) {
  .footer-offer-button-link {
    padding: 10px 20px;
  }
  .footer-offer-button-link::after {
    content: "";
  }
}