@charset "UTF-8";
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 62.5%;
}

img {
  width: 100%;
}

body {
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.1em;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 750px) {
  body {
    font-size: 1.4rem;
  }
}

.bold {
  font-weight: bold;
}

a {
  word-break: break-all;
}

.container {
  max-width: 920px;
  width: 90%;
  margin: 0 auto;
}

.container.wide {
  max-width: 1100px;
}

.container.narrow {
  max-width: 750px;
}

/* =====  表示非表示 ===== */
.only-pc {
  display: block;
}

@media screen and (max-width: 1025px) {
  .only-pc {
    display: none;
  }
}

.until-tab {
  display: block;
}

@media screen and (max-width: 750px) {
  .until-tab {
    display: none;
  }
}

.until-tab-s {
  display: block;
}

@media screen and (max-width: 768px) {
  .until-tab-s {
    display: none;
  }
}

.under-tab-s {
  display: none;
}

@media screen and (max-width: 768px) {
  .under-tab-s {
    display: block;
  }
}

.is-sp {
  display: none;
}

@media screen and (max-width: 750px) {
  .is-sp {
    display: block;
  }
}

/* =====  セクションタイトル ===== */
.section-ttl {
  display: block;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 768px) {
  .section-ttl {
    margin-bottom: 30px;
  }
}

.section-ttl__main-txt {
  width: 100%;
  text-align: center;
  color: #474847;
  font-size: 3.6rem;
  font-weight: bold;
  display: inline-block;
}

@media screen and (max-width: 750px) {
  .section-ttl__main-txt {
    font-size: 2.4rem;
  }
}

.section-ttl .tag {
  color: #0F6B38;
  letter-spacing: 0.1em;
  padding-bottom: 5px;
  font-size: 2rem;
  font-weight: 900;
  border-bottom: 5px solid #f0f4f2;
  display: inline-block;
  margin-bottom: 20px;
}

.section-ttl .tag.white {
  border-bottom: 5px solid #fff;
}

.section-ttl .tag.blue {
  color: #062E75;
}

.section-ttl .sub-ttl {
  font-size: 1.8rem;
  margin-top: 30px;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 1025px) {
  .section-ttl .sub-ttl {
    margin-top: 20px;
  }
}

@media screen and (max-width: 750px) {
  .section-ttl .sub-ttl {
    font-size: 1.6rem;
  }
}

/* =====  上下余白 ===== */
.goals,
.features,
.curriculum,
.reasons,
.voices,
.faq,
.concept,
#features,
#curriculum-goal,
#how-to-proceed,
#faq {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media screen and (max-width: 1025px) {
  .goals,
  .features,
  .curriculum,
  .reasons,
  .voices,
  .faq,
  .concept,
  #features,
  #curriculum-goal,
  #how-to-proceed,
  #faq {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 750px) {
  .goals,
  .features,
  .curriculum,
  .reasons,
  .voices,
  .faq,
  .concept,
  #features,
  #curriculum-goal,
  #how-to-proceed,
  #faq {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

#learning-curriculum {
  padding-bottom: 100px;
}

@media screen and (max-width: 750px) {
  #learning-curriculum {
    padding-bottom: 80px;
  }
}

#learning-curriculum {
  padding-top: 50px;
}

/* ===== ボタン ===== */
.btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  font-weight: bold;
  padding: 20px 30px;
  line-height: 1.75;
}

.btn.round {
  border-radius: 100px;
}

.btn:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

@media screen and (max-width: 750px) {
  .btn {
    font-size: 13px;
    padding: 20px 30px;
  }
}

.btn::after {
  position: absolute;
  top: 55%;
  right: 20px;
  width: 7px;
  height: 7px;
  margin-top: -7px;
  content: "";
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.btn.yellow {
  background-color: #FFBD00;
}

.btn.yellow::after {
  border-top: solid 2px #474847;
  border-right: solid 2px #474847;
}

.btn.black {
  background-color: #474847;
  color: #fff;
}

.btn.black::after {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}

.btn.orange {
  background-color: #EF9635;
  color: #fff;
  border: 2px solid #ef9635;
}

.btn.orange::after {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}

.btn.orange:hover {
  background-color: #fff;
  color: #ef9635;
}

.btn.orange:hover::after {
  border-top: solid 2px #EF9635;
  border-right: solid 2px #EF9635;
}

.btn.orange-border {
  color: #EF9635;
  border: 2px solid #ef9635;
}

.btn.orange-border::after {
  border-top: solid 2px #EF9635;
  border-right: solid 2px #EF9635;
}

.btn.orange-border:hover {
  background-color: #EF9635;
  color: #fff;
}

.btn.orange-border:hover::after {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}

.btn.red {
  background-color: #ED7973;
  color: #fff;
  border: 2px solid #ED7973;
}

.btn.red::after {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}

.btn.red:hover {
  background-color: #fff;
  color: #ED7973;
}

.btn.red:hover::after {
  border-top: solid 2px #ED7973;
  border-right: solid 2px #ED7973;
}

.txt-btn {
  position: relative;
  text-align: center;
}

@media screen and (max-width: 750px) {
  .txt-btn {
    font-size: 1.4rem;
  }
}

.txt-btn a {
  text-decoration: underline;
  display: inline-block;
  padding-right: 5px;
}

.txt-btn:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0.7;
}

.txt-btn::after {
  position: absolute;
  right: -20px;
  width: 7px;
  height: 7px;
  margin-top: 9px;
  content: "";
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-top: solid 2px #474847;
  border-right: solid 2px #474847;
}

.txt-btn.under-line {
  text-decoration: underline;
}

.text-link-btn {
  text-decoration: underline;
}

.text-link-btn:hover {
  opacity: 0.8;
}

.fixed-btn {
  width: 75px;
  position: fixed;
  right: 50px;
  bottom: 50px;
  z-index: 100;
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 20px rgba(15, 107, 56, 0.13);
          box-shadow: 0px 0px 20px rgba(15, 107, 56, 0.13);
}

@media screen and (max-width: 1025px) {
  .fixed-btn {
    width: 40px;
    right: 15px;
    bottom: 15px;
  }
}

/* ===== Header ===== */
.header {
  text-align: center;
  margin: 0 auto;
  width: 100%;
  z-index: 999;
  color: #474847;
  position: relative;
  width: 100%;
  display: block;
  height: 90px;
  background-color: #fff;
  position: fixed;
}

@media screen and (max-width: 1025px) {
  .header {
    background-color: transparent;
  }
}

.header-container {
  padding: 20px;
  position: fixed;
  max-width: 1440px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1025px) {
  .header-container {
    padding: 0;
    background-color: #fff;
  }
}

@media screen and (max-width: 750px) {
  .header-container {
    height: 68px;
  }
}

.header .logo-craft-college img {
  max-width: 200px;
}

.header .logo-craft-college img:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0.7;
}

@media screen and (max-width: 1025px) {
  .header .logo-craft-college img {
    margin-left: 15px;
    width: 100px;
  }
}

.header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  font-weight: bold;
}

@media screen and (max-width: 1025px) {
  .header nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    top: 50%;
    left: 50%;
    bottom: 0;
    height: 100%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 200000;
    position: fixed;
    width: 100%;
    margin-top: 66px;
  }
}

.header nav .global-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header nav .global-menu__lists {
  margin-right: 20px;
}

.header nav .global-menu__lists:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0.7;
}

@media screen and (max-width: 1025px) {
  .header nav .global-menu__lists {
    margin-right: 0;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 1025px) {
  .header nav .global-menu__lists:last-child {
    margin-bottom: 0px;
  }
}

@media screen and (max-width: 1025px) {
  .header nav .global-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 80px 0 50px;
    background: #fff;
  }
}

@media screen and (max-width: 1025px) {
  .header nav .global-menu .btn {
    display: none;
  }
}

.header nav .global-menu .yellow {
  margin-right: 10px;
}

.header-cv-btn {
  display: none;
}

@media screen and (max-width: 1025px) {
  .header-cv-btn {
    margin-right: 65px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.btn-sp {
  font-size: 12px;
  width: 90px;
  text-align: center;
  padding: 15px 0;
  display: block;
  font-weight: bold;
  line-height: 1.5;
}

.btn-sp:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0.7;
}

.btn-sp.yellow {
  background-color: #FFBD00;
}

.btn-sp.black {
  color: #fff;
  background-color: #474847;
}

.btn-sp.orange {
  color: #fff;
  background-color: #EF9635;
  border: 1px solid #ef9635;
}

.btn-sp.orange:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  color: #EF9635;
  background-color: #fff;
}

.btn-sp.red {
  color: #fff;
  background-color: #ED7973;
  border: 1px solid #ED7973;
}

.btn-sp.red:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  color: #ED7973;
  background-color: #fff;
}

#site-header .btn-burger {
  cursor: pointer;
  position: absolute;
  width: 25px;
  height: 50px;
  height: 15px;
  right: 20px;
  top: 27px;
}

#site-header .icon,
#site-header .icon::before,
#site-header .icon::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 25px;
  background-color: #474847;
  display: block;
  content: "";
  cursor: pointer;
  margin: auto;
}

#site-header .icon::before {
  top: 16px;
}

#site-header .icon::after {
  top: -15px;
}

#site-header .nav-toggle {
  display: none;
}

#site-header .nav-toggle:checked ~ .btn-burger .icon {
  background: transparent;
}

#site-header .nav-toggle:checked ~ .btn-burger .icon:before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 0;
}

#site-header .nav-toggle:checked ~ .btn-burger .icon:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 0;
}

#site-header .icon,
#site-header .icon:before,
#site-header .icon:after {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

@media screen and (max-width: 1025px) {
  #site-header nav {
    display: none;
  }
}

#site-header .nav-toggle:checked ~ nav {
  display: block;
}

@media screen and (min-width: 1025px) {
  #site-header .btn-burger,
  #site-header .nav-toggle {
    display: none;
  }
}

.other-lists {
  position: relative;
  margin-right: 20px;
}

.other-lists label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1025px) {
  .other-lists {
    margin-right: 0;
    margin-bottom: 30px;
  }
}

.other-lists .dropdown {
  display: none;
  position: absolute;
  top: 35px;
  left: 0;
  z-index: 3;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 20px rgba(15, 107, 56, 0.1);
          box-shadow: 0px 0px 20px rgba(15, 107, 56, 0.1);
  width: 220px;
  padding: 15px;
}

@media screen and (max-width: 1025px) {
  .other-lists .dropdown {
    padding: 10px;
    width: 160px;
    font-size: 10px;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

@media screen and (max-width: 1025px) {
  .other-lists .dropdown.green {
    background-color: #f4f7f5;
  }
}

@media screen and (max-width: 1025px) {
  .other-lists .dropdown.blue {
    background-color: #e9ecf2;
  }
}

.other-lists .dropdown p {
  text-align: center;
}

.other-lists input[type="checkbox"] {
  display: none;
}

.other-lists label[for="menu"]::before {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}

.other-lists #menu:checked + .dropdown {
  display: block;
}

.other-lists a {
  line-height: 1.75;
}

.other-lists a:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0.7;
}

.other-lists .link-icon {
  width: 15px;
  margin-left: 5px;
  padding-bottom: 5px;
}

@media screen and (max-width: 1025px) {
  .other-lists .link-icon {
    width: 12px;
  }
}

.other-lists .link-icon img {
  vertical-align: middle;
}

/* =====  banner-area ===== */
.banner-area {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media screen and (max-width: 750px) {
  .banner-area {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.banner-area .container {
  text-align: center;
}

.banner-area .banner {
  max-width: 920px;
  margin: 0 auto;
}

.banner-area .banner:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0.8;
}

/* =====  cta ===== */
.cta {
  padding: 100px 0;
}

@media screen and (max-width: 750px) {
  .cta {
    padding: 50px 0;
  }
}

.cta-container {
  max-width: 1240px;
  margin: 0 auto;
  width: 90%;
}

.cta-container__main {
  background-color: #fff;
  padding: 50px 0px 80px;
  margin-bottom: 10px;
}

@media screen and (max-width: 1025px) {
  .cta-container__main {
    padding: 50px 0;
  }
}

@media screen and (max-width: 750px) {
  .cta-container__main {
    padding: 30px 0px;
  }
}

.cta-container__sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 750px) {
  .cta-container__sub {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.cta .main-contents {
  max-width: 920px;
  margin: 0 auto;
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 50px;
}

@media screen and (max-width: 1025px) {
  .cta .main-contents {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 750px) {
  .cta .main-contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.cta .main-contents .txt {
  width: 60%;
}

@media screen and (max-width: 1025px) {
  .cta .main-contents .txt {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 750px) {
  .cta .main-contents .txt {
    width: 90%;
    margin-bottom: 30px;
  }
}

.cta .main-contents p {
  margin-bottom: 20px;
}

.cta .main-contents p:last-child {
  margin-bottom: 0;
}

.cta .cta-campaign-area {
  max-width: 920px;
  margin: 0 auto;
  width: 90%;
}

.cta .cta-campaign-area .campaign-ttl {
  width: 17%;
  font-size: 2rem;
  height: 212px;
}

@media screen and (max-width: 1025px) {
  .cta .cta-campaign-area .campaign-ttl {
    height: 55px;
    font-size: 1.8rem;
    width: 100%;
  }
}

.cta .cta-campaign-area .campaign-contents {
  width: 83%;
}

.cta .campaign__container {
  border: 1px solid #F1F6FF;
}

.cta-campaign {
  max-width: 920px;
  margin: 0 auto;
  width: 90%;
}

.cta-campaign__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 1025px) {
  .cta-campaign__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.cta-campaign-ttl {
  width: 25%;
  display: block;
  position: relative;
  font-size: 2.4rem;
  height: 170px;
}

@media screen and (max-width: 1025px) {
  .cta-campaign-ttl {
    width: 100%;
    font-size: 1.8rem;
    height: 55px;
  }
}

.cta-campaign-ttl p {
  width: 240px;
  line-height: 1.5;
  font-weight: bold;
  display: block;
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.cta-campaign .campaign-contents {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1025px) {
  .cta-campaign .campaign-contents {
    padding: 15px 0 15px;
  }
}

@media screen and (max-width: 750px) {
  .cta-campaign .campaign-contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.cta-campaign .book-present {
  width: 43%;
}

@media screen and (max-width: 750px) {
  .cta-campaign .book-present {
    width: 90%;
  }
}

.cta-campaign .book-present__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 750px) {
  .cta-campaign .book-present__wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.cta-campaign .book-present figure {
  width: 90px;
  margin-right: 10px;
}

@media screen and (max-width: 750px) {
  .cta-campaign .book-present figure {
    width: 65px;
  }
}

.cta-campaign .book-present__ttl {
  line-height: 1.25;
  font-size: 2.4rem;
  color: #0F6B38;
  margin-bottom: 5px;
  font-weight: bold;
}

@media screen and (max-width: 750px) {
  .cta-campaign .book-present__ttl {
    font-size: 2rem;
  }
}

.cta-campaign .book-present__sub-txt {
  font-size: 1.4rem;
}

@media screen and (max-width: 750px) {
  .cta-campaign .book-present__sub-txt {
    font-size: 1.2rem;
  }
}

.cta-campaign .discount {
  width: 45%;
}

@media screen and (max-width: 750px) {
  .cta-campaign .discount {
    width: 90%;
  }
}

.cta-campaign .discount__wrap {
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 750px) {
  .cta-campaign .discount__wrap {
    margin-bottom: 0;
  }
}

.cta-campaign .discount figure {
  width: 90px;
  margin-right: 10px;
}

@media screen and (max-width: 750px) {
  .cta-campaign .discount figure {
    width: 65px;
  }
}

.cta-campaign .discount__ttl {
  font-size: 2.4rem;
  color: #0F6B38;
  margin-bottom: 5px;
  font-weight: bold;
}

@media screen and (max-width: 750px) {
  .cta-campaign .discount__ttl {
    font-size: 2rem;
  }
}

.cta-campaign .discount__sub-txt {
  font-size: 1.4rem;
}

@media screen and (max-width: 750px) {
  .cta-campaign .discount__sub-txt {
    font-size: 1.2rem;
  }
}

.cta-campaign .discount span {
  font-size: 1rem;
}

.cta-campaign .discount .icon {
  display: inline-block;
  padding: 3px 5px;
  border-radius: 50px;
}

.cta-campaign .discount .icon.normal {
  border: 2px solid #fff;
}

.cta-campaign .discount .icon.red {
  background: #ffe9e7;
}

.cta-campaign .discount .bigger {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fa968c;
}

.cta-campaign .btn {
  padding: 25px 50px;
}

@media screen and (max-width: 750px) {
  .cta-campaign .btn {
    padding: 20px 30px;
  }
}

.cta .sub-contents {
  background-color: #fff;
}

.cta .sub-contents.mail .sub-contents__txt {
  text-align: center;
  -o-object-fit: contain;
     object-fit: contain;
}

.cta .sub-contents.mail .link {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.8rem;
}

@media screen and (max-width: 750px) {
  .cta .sub-contents.mail .link {
    font-size: 1.6rem;
  }
}

.cta .sub-contents__ttl.for-company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  line-height: 1.2;
  margin-right: 20px;
}

.cta .sub-contents__ttl.for-company p {
  font-size: 1.4rem;
  text-align: center;
  color: #fff;
}

.cta .sub-contents__ttl.for-company p span {
  display: block;
  font-size: 1rem;
}

.cta .sub-contents__txt {
  font-size: 1.4rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 10px;
}

@media screen and (max-width: 1025px) {
  .cta .sub-contents__txt {
    font-size: 1.2rem;
  }
}

.cta .sub-contents .icon {
  width: 15px;
  margin-right: 10px;
}

.cta .sub-contents .icon img {
  vertical-align: middle;
}

.cta .sub-contents .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 5px;
}

.cta .sub-contents .link:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0.7;
}

.cta .sub-contents .link p {
  font-weight: bolder;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #474847;
}

.baloon {
  color: #474847;
  display: block;
  position: relative;
  z-index: 2;
  padding: 7px 15px 7px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto -15px;
  background-color: #fff;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  font-size: 1.2rem;
}

.baloon.yellow {
  border: 3px solid #FFBD00;
}

.baloon.orange {
  border: 3px solid #EF9635;
}

.baloon.black {
  border: 3px solid #474847;
}

@media screen and (max-width: 1025px) {
  .baloon {
    font-size: 1rem;
  }
}

/* =====  campaign  ===== */
.key-visual__campaign {
  z-index: 1;
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  .key-visual__campaign {
    width: 95%;
  }
}

.key-visual__campaign .campaign-ttl {
  height: 212px;
}

@media screen and (max-width: 1025px) {
  .key-visual__campaign .campaign-ttl {
    height: 55px;
  }
}

.key-visual__campaign .campaign__container {
  -webkit-box-shadow: 0px 0px 20px rgba(15, 107, 56, 0.13);
          box-shadow: 0px 0px 20px rgba(15, 107, 56, 0.13);
}

.campaign__container {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 1025px) {
  .campaign__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.campaign-ttl {
  width: 21%;
  padding: 0 10px;
  position: relative;
  color: #062E75;
  font-size: 3rem;
  background-color: #F1F6FF;
}

@media screen and (max-width: 1025px) {
  .campaign-ttl {
    width: 100%;
    font-size: 1.8rem;
  }
}

.campaign-ttl p {
  width: 240px;
  line-height: 1.5;
  font-weight: bold;
  display: block;
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.campaign .campaign-contents {
  padding: 25px;
  width: 79%;
}

@media screen and (max-width: 1025px) {
  .campaign .campaign-contents {
    width: 90%;
    padding: 20px 0;
  }
}

@media screen and (max-width: 768px) {
  .campaign .campaign-contents {
    width: 95%;
  }
}

@media screen and (max-width: 750px) {
  .campaign .campaign-contents {
    width: 90%;
    margin: 0 auto;
  }
}

.campaign .campaign-contents__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2.4rem;
  color: #062E75;
  font-weight: bold;
  margin-bottom: 15px;
}

@media screen and (max-width: 750px) {
  .campaign .campaign-contents__ttl {
    font-size: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.campaign .campaign-contents__ttl span {
  font-size: 1.4rem;
  color: #ED7973;
  border: 2px solid #ED7973;
  padding: 5px 15px;
  border-radius: 100px;
  margin-right: 10px;
  line-height: 2;
}

@media screen and (max-width: 750px) {
  .campaign .campaign-contents__ttl span {
    width: 80%;
    text-align: center;
    font-size: 1.2rem;
    padding: 0px;
    margin-right: 0;
  }
}

.campaign .campaign-contents__wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 750px) {
  .campaign .campaign-contents__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.campaign .campaign-contents__wrap__ttl {
  text-align: center;
}

.campaign .campaign-contents__wrap .btn,
.campaign .campaign-contents__wrap .txt-btn {
  width: 48%;
  margin-top: 20px;
}

@media screen and (max-width: 750px) {
  .campaign .campaign-contents__wrap .btn,
  .campaign .campaign-contents__wrap .txt-btn {
    width: 100%;
  }
}

.campaign .book-present {
  width: 49%;
}

@media screen and (max-width: 750px) {
  .campaign .book-present {
    width: 100%;
    margin-bottom: 15px;
  }
  .campaign .book-present:last-child {
    margin-bottom: 0px;
  }
}

.campaign .book-present__wrap {
  position: relative;
}

@media screen and (max-width: 750px) {
  .campaign .book-present__wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 10px;
  }
}

.campaign .book-present .txt {
  background: #F1F6FF;
}

.campaign .book-present .txt.excel {
  background: #F4F7F5;
}

.campaign .book-present figure {
  position: absolute;
  left: 2px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 80px;
}

@media screen and (max-width: 750px) {
  .campaign .book-present figure {
    width: 55px;
    left: 2%;
  }
}

.campaign .book-present__ttl {
  line-height: 1.25;
  font-size: 1.8rem;
  color: #062E75;
  text-align: left;
  font-weight: bold;
  padding: 30px 5px 30px 28%;
}

.campaign .book-present__ttl.excel {
  color: #0F6B38;
}

@media screen and (max-width: 750px) {
  .campaign .book-present__ttl {
    font-size: 1.4rem;
    padding: 10px 0;
    padding-left: 25px;
    text-align: center;
  }
}

.campaign .book-present__sub-txt {
  font-size: 1.4rem;
}

.campaign .btn {
  padding: 25px;
  font-size: 1.8rem;
}

.campaign .btn:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0.7;
}

@media screen and (max-width: 750px) {
  .campaign .btn {
    font-size: 1.6rem;
    padding: 20px 30px;
  }
}

/* =====  price ===== */
.price__container {
  width: 90%;
  margin: 0 auto;
}

.price .table-wrapper {
  overflow-x: scroll;
}

.price .section-ttl {
  margin-bottom: 50px;
}

.price .point-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 30px;
}

.price .point-lists .list-item {
  position: relative;
  margin-right: 10px;
}

.price .point-lists .list-item:last-child {
  margin-right: 0;
}

@media screen and (max-width: 750px) {
  .price .point-lists .list-item {
    margin-right: 3px;
  }
  .price .point-lists .list-item:last-child {
    margin-right: 0;
  }
}

.price .point-lists .txt {
  width: 100%;
  display: inline-block;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 1.8rem;
  line-height: 1.25;
}

@media screen and (max-width: 1025px) {
  .price .point-lists .txt {
    font-size: 1rem;
  }
}

@media screen and (max-width: 750px) {
  .price .point-lists .txt {
    font-size: 0.9rem;
  }
}

.price .point-lists .strong {
  font-weight: bold;
  font-size: 1.8rem;
}

@media screen and (max-width: 1025px) {
  .price .point-lists .strong {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 750px) {
  .price .point-lists .strong {
    font-size: 1.1rem;
  }
}

.price table,
.price td,
.price th {
  margin: 0 auto;
  border-collapse: collapse;
}

.price table {
  white-space: nowrap;
  line-height: 1.5;
}

@media screen and (max-width: 750px) {
  .price table {
    font-size: 1.2rem;
  }
}

.price thead th {
  padding: 20px 0;
  text-align: center;
  vertical-align: middle;
}

@media screen and (max-width: 750px) {
  .price thead th {
    padding: 10px 0;
  }
}

.price thead .craft-college {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
}

@media screen and (max-width: 750px) {
  .price thead .craft-college {
    font-size: 1.8rem;
  }
}

.price td {
  vertical-align: middle;
  padding: 15px;
  font-size: 1.4rem;
  text-align: center;
}

@media screen and (max-width: 750px) {
  .price td {
    padding: 5px;
    font-size: 1.2rem;
  }
}

.price td span {
  -webkit-text-decoration: underline solid #ef9635 3px;
          text-decoration: underline solid #ef9635 3px;
  text-underline-offset: 0.2em;
  font-weight: bold;
  font-size: 2.4rem;
}

@media screen and (max-width: 750px) {
  .price td span {
    font-size: 2rem;
  }
}

.price .learning-skills {
  text-align: left;
}

.price .learning-skills li {
  padding-top: 5px;
}

.price .learning-skills li::before {
  content: "✓";
}

.price .icon {
  width: 35px;
  margin: 0 auto;
  margin-bottom: 5px;
}

@media screen and (max-width: 750px) {
  .price .icon {
    width: 20px;
  }
}

/* =====  reasons ===== */
.reasons .section-ttl__main-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.reasons .section-ttl__main-txt figure {
  display: inline-block;
  width: 190px;
  margin-right: 5px;
}

.reasons .section-ttl__main-txt img {
  vertical-align: baseline;
}

.reasons .section-sub-ttl {
  text-align: center;
  display: block;
  margin-bottom: 20px;
  font-size: 2.4rem;
  font-weight: bold;
}

@media screen and (max-width: 750px) {
  .reasons .section-sub-ttl {
    font-size: 1.8rem;
  }
}

.reasons__contents-box {
  padding: 50px;
  background-color: #fff;
  text-align: center;
  margin-bottom: 50px;
}

.reasons__contents-box:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 750px) {
  .reasons__contents-box {
    padding: 25px;
    text-align: left;
    margin-bottom: 30px;
  }
}

.reasons__contents-ttl {
  font-size: 2.4rem;
  text-align: center;
  font-weight: bold;
  color: #fff;
}

@media screen and (max-width: 750px) {
  .reasons__contents-ttl {
    font-size: 1.6rem;
  }
}

.reasons__contents-txt {
  text-align: left;
  margin-top: 30px;
}

@media screen and (max-width: 750px) {
  .reasons__contents-txt {
    margin-top: 20px;
  }
}

.reasons__contents-txt p {
  margin-bottom: 20px;
}

.reasons__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 50px;
}

@media screen and (max-width: 750px) {
  .reasons__lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 30px;
  }
}

.reasons__lists-item {
  width: 30%;
}

@media screen and (max-width: 750px) {
  .reasons__lists-item {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 50px;
  }
  .reasons__lists-item:last-child {
    margin-bottom: 0;
  }
}

.reasons .term {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 25px;
}

@media screen and (max-width: 750px) {
  .reasons .term {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
}

.reasons .img {
  margin-bottom: 15px;
}

.reasons .ttl {
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

@media screen and (max-width: 750px) {
  .reasons .ttl {
    font-size: 1.6rem;
  }
}

.reasons .btn {
  margin-top: 20px;
}

@media screen and (max-width: 750px) {
  .reasons .btn {
    margin-top: 10px;
  }
}

/* =====  voices ===== */
.voices.green__container {
  max-width: 1200px;
  margin: 0 auto;
}

.voices.green .wrap {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  scroll-snap-align: start;
  white-space: nowrap;
  overflow-x: auto;
  margin: 0 auto;
  padding: 0 30px 40px;
}

@media screen and (max-width: 750px) {
  .voices.green .wrap {
    width: 100%;
    padding: 0 15px 30px;
  }
}

.voices.green .item {
  display: inline-block;
  margin: 0 20px;
  width: 70%;
  white-space: normal;
  overflow: hidden;
  max-width: 750px;
  -webkit-box-shadow: 0px 0px 30px rgba(15, 107, 56, 0.07);
          box-shadow: 0px 0px 30px rgba(15, 107, 56, 0.07);
  height: 430px;
}

@media screen and (max-width: 750px) {
  .voices.green .item {
    width: 90%;
    margin: 0 5px;
    height: 580px;
  }
}

.voices.green .item__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 35px 80px;
}

@media screen and (max-width: 1025px) {
  .voices.green .item__ttl {
    padding: 35px 50px;
  }
}

@media screen and (max-width: 750px) {
  .voices.green .item__ttl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px 30px 10px;
  }
}

.voices.green .item .img {
  margin-right: 30px;
}

@media screen and (max-width: 1025px) {
  .voices.green .item .img {
    width: 180px;
  }
}

@media screen and (max-width: 750px) {
  .voices.green .item .img {
    width: 110px;
    margin-right: 0;
    margin-bottom: 15px;
  }
}

.voices.green .item .txt {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

@media screen and (max-width: 750px) {
  .voices.green .item .txt {
    font-size: 1.8rem;
  }
}

.voices.green .item .info {
  font-size: 1.4rem;
  display: inline-block;
  color: #8c8c8c;
}

@media screen and (max-width: 750px) {
  .voices.green .item .info {
    font-size: 1rem;
  }
}

.voices.green .item .bold {
  font-size: 1.6rem;
  margin-bottom: 10px;
  margin-right: 15px;
}

@media screen and (max-width: 750px) {
  .voices.green .item .bold {
    font-size: 1.2rem;
  }
}

.voices.green .item__massage {
  padding: 30px 80px;
}

@media screen and (max-width: 1025px) {
  .voices.green .item__massage {
    padding: 30px 50px;
  }
}

@media screen and (max-width: 750px) {
  .voices.green .item__massage {
    padding: 20px 30px;
  }
}

/* =====  faq ===== */
.faq .section-ttl {
  margin-bottom: 50px;
}

.faq .icon {
  width: 28px;
  height: 28px;
  position: relative;
  display: inline-block;
  border-radius: 50%;
  margin-right: 15px;
}

.faq .icon.q span {
  color: #fff;
}

.faq .icon.a {
  background-color: #fff;
}

.faq .icon span {
  display: inline-block;
  text-align: center;
  padding-left: 2px;
  font-size: 1.6rem;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (max-width: 750px) {
  .faq .icon span {
    font-size: 1.2rem;
  }
}

.faq .toggle {
  display: none;
}

.faq ul li {
  position: relative;
  margin-bottom: 20px;
  background-color: #fff;
  border-radius: 5px;
}

.faq .title,
.faq .content {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.faq .title {
  padding: 25px 30px;
  display: block;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 750px) {
  .faq .title {
    padding: 25px 15px;
    padding-right: 30px;
  }
}

.faq .title p {
  width: 85%;
}

.faq .content {
  max-height: 0;
  overflow: hidden;
}

.faq .answer-txt {
  padding: 25px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 750px) {
  .faq .answer-txt {
    padding: 25px 15px;
  }
}

.faq .answer-txt p {
  width: 95%;
}

@media screen and (max-width: 750px) {
  .faq .answer-txt p {
    width: 85%;
  }
}

.faq .toggle:checked + .title + .content {
  max-height: 500px;
  -webkit-transition: all 1.5s;
  transition: all 1.5s;
}

.faq .toggle:checked + .title::before {
  -webkit-transform: rotate(90deg) !important;
          transform: rotate(90deg) !important;
}

/* =====  footer ===== */
.footer {
  padding: 20px 0 32px;
  color: #fff;
}

.footer__links-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1.4rem;
  margin-bottom: 100px;
}

@media screen and (max-width: 750px) {
  .footer__links-lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 50px;
    font-size: 1.2rem;
  }
}

.footer__links-lists .lists-item:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0.8;
}

@media screen and (max-width: 750px) {
  .footer__links-lists .lists-item {
    margin-bottom: 20px;
  }
  .footer__links-lists .lists-item:last-child {
    margin-bottom: 0;
  }
}

.footer .copy {
  text-align: center;
  font-size: 1.2rem;
}

@media screen and (max-width: 750px) {
  .footer .copy {
    font-size: 1rem;
  }
}

.footer.blue {
  background-color: #062E75;
  padding-top: 50px;
}

.footer.green {
  background-color: #0F6B38;
}

.footer.ai-blue {
  background-color: #43B2CA;
}

.next-section {
  position: absolute;
  top: -3.5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 454px;
}

@media screen and (max-width: 750px) {
  .next-section {
    top: -1.5%;
    width: 80%;
  }
}

/* ===== Commercial Transactions（特定商取引法に基づく表記） ===== */
/* ===== Privacy Policy（プライバシーポリシー） ===== */
#inquiry-info-session,
#terms-of-use,
#commercial-transactions,
#privacy-policy {
  padding-top: 100px;
  padding-bottom: 80px;
}

@media screen and (max-width: 750px) {
  #inquiry-info-session,
  #terms-of-use,
  #commercial-transactions,
  #privacy-policy {
    padding-top: 100px;
    padding-bottom: 50px;
  }
}

#terms-of-use .ttl,
#commercial-transactions .ttl,
#privacy-policy .ttl {
  margin: 10px 0;
  font-size: 1.8rem;
  font-weight: bold;
}

#terms-of-use .content,
#commercial-transactions .content,
#privacy-policy .content {
  padding: 0 0 20px 10px;
  font-size: 1.6rem;
}

@media screen and (max-width: 750px) {
  #terms-of-use .content,
  #commercial-transactions .content,
  #privacy-policy .content {
    padding-left: 0;
  }
}

#terms-of-use ul,
#privacy-policy ul {
  padding: 10px 0;
  list-style: inside;
}

#terms-of-use li,
#privacy-policy li {
  text-indent: -1em;
  padding-left: 1em;
}

@media screen and (max-width: 750px) {
  #terms-of-use li,
  #privacy-policy li {
    text-indent: 0em;
    padding-left: 0;
  }
}

#privacy-policy a {
  font-size: 1.6rem;
  color: #264b8d;
  text-decoration: underline;
}

#terms-of-use .enachment-revision-date,
#commercial-transactions .enachment-revision-date,
#privacy-policy .enachment-revision-date {
  padding: 30px 0;
  font-size: 1.8rem;
}

#inquiry-info-session .btn {
  max-width: 350px;
  margin: 0 auto;
  margin-top: 50px;
}

.slope {
  -webkit-transform: matrix(0.98, 0, -0.18, 1, 0, 0);
          transform: matrix(0.98, 0, -0.18, 1, 0, 0);
  font-weight: bold;
}

.red {
  color: #ED7973;
}
/*# sourceMappingURL=common.css.map */