@charset 'utf-8';

/* ヘッダー */
.header {
  font-weight: bold;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .05);
}

.header_wrap {
  align-items: center;
  justify-content: space-between;
  width: 96%;
  max-width: 1296px;
  height: 100%;
  margin-right: auto;
  margin-left: auto;
}

.header_title {
  line-height: 1.2;
}

.header_title h1 {
  font-size: 3.4rem;
  display: block;
  color: #34c1a3;
}

.header_title span {
  font-size: 1rem;
  display: block;
  color: #222;
}

/* グローバルナビ */
.gNav {
  font-size: 1.4rem;
  align-items: center;
}

.gNav_list {
  align-items: center;
}

.gNav_list li {
  transition: .3s;
}

.gNav_list li:hover {
  transition: .3s;
  color: #34c1a3;
}

.gNav_list a {
  display: inline-block;
  padding: 1.5rem 2.4rem;
}

.login > a {
  padding: 1rem 4rem;
}

.login_button {
  font-size: inherit;
  border: none;
  box-shadow: 0 5px 0 #29a78c;
}

.login_button:hover {
  transition: .2s;
  transform: translateY(5px);
  box-shadow: none;
}

.login_button::after {
  margin-left: .5em;
  content: url(../img/login.svg);
}

/* メインビジュアル */
.mv {
  width: 100%;
  height: 100%;
  padding-top: 80px;
  background-image: url(../img/mv_back01.jpg), url(../img/mv_back02.jpg);
  background-repeat: no-repeat, no-repeat;
  background-position: top 0 right 0, left 0 bottom 0;
  background-size: 60% auto, 18% auto;
}

.mv_wrap {
  font-weight: bold;
  /* align-items: center; */
  justify-content: space-between;
  margin-top: 8rem;
}

.mv_textarea {
  width: 50%;
  margin-top: 80px;
}

.mv_subtext p {
  font-weight: bold;
  margin-right: 1em;
}

.mv_subtext p::before {
  margin-right: .5em;
  content: url(../img/mv_check.svg);
}

.mv_title {
  font-size: clamp(2.8rem, 4vw, 4.5rem);
  line-height: 1.5;
  margin-top: 1.5rem;
}

.mv_text {
  font-size: 2.2rem;
  margin-top: 1.5rem;
}

.mv_buttonarea {
  margin-top: 3rem;
}

.mv_buttonwrap {
  text-align: center;
}

.mv_buttonwrap span {
  font-weight: normal;
  position: relative;
  display: block;
  color: #ec6e1f;
}

.mv_buttonwrap span::before {
  position: absolute;
  top: 50%;
  left: 24%;
  display: inline-block;
  width: 18px;
  height: 1.2px;
  content: '';
  transform: rotate(60deg);
  background-color: #ec6e1f;
}

.mv_buttonwrap span::after {
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 18px;
  height: 1.2px;
  content: '';
  transform: rotate(-60deg);
  background-color: #ec6e1f;
}

.mv_button {
  border: none;
  background-color: #ec6e1f;
  box-shadow: 0 5px 0 #c75d1a;
}

.mv_button:hover {
  transition: .2s;
  transform: translateY(5px);
  box-shadow: none;
}

.mv_image {
  width: 50%;
}

/* サービス */
.service {
  padding: 8rem;
  background-color: #faf7f3;
  background-image: url(../img/service_back01.jpg), url(../img/service_back02.jpg);
  background-repeat: no-repeat, no-repeat;
  background-position: top 0 right 0, left 0 bottom 0;
  background-size: 100%;
}

.service_title,
.service_text {
  text-align: center;
}

.service_title span {
  font-size: 2.4rem;
  font-weight: bold;
  color: #34c1a3;
}

.service_title span::before {
  margin-right: .5em;
  content: url(../img/ashirai01.svg);
}

.service_title span::after {
  margin-left: .5em;
  content: url(../img/ashirai02.svg);
}

.service_text {
  margin-top: 1em;
}

.service_container {
  align-items: center;
  justify-content: space-between;
  height: 100%;
  margin-top: 4rem;
}

.service_image,
.service_point {
  width: 48%;
}

.point_area {
  position: relative;
  counter-increment: section;
}

.point_area::before {
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  font-style: italic;
  position: absolute;
  top: 50%;
  content: counter(section, decimal-leading-zero);
  transform: translateY(-50%);
  color: #34c1a3;
}

.point_area + .point_area {
  margin-top: 1.8rem;
}

.point_box {
  width: 95%;
  margin: 0 0 0 auto;
  padding: 1.5em 1.5em 1.5em 2.5em;
  border-radius: 10px;
  /* height: 15rem; */
  background-color: #fff;
}

.point_box h3 {
  font-size: 2rem;
  font-weight: bold;
  display: inline-block;
  background: linear-gradient(transparent 50%, #ffe348 0%);
}

.point_box p {
  margin-top: .5rem;
}

/* プロブレム */
.problem_image {
  position: relative;
  margin-top: 4rem;
}

.problem_image::after {
  position: absolute;
  left: 50%;
  margin-top: 4rem;
  content: url(../img/down_arrow.svg);
  transform: translateX(-50%);
}

.problem_container {
  margin-top: 12rem;
}

.problem_subtitle {
  font-weight: bold;
  position: relative;
  align-items: flex-end;
  justify-content: center;
}

.project_name {
  text-align: center;
}

.project_name p {
  font-size: 5.3rem;
  line-height: 1;
  color: #34c1a3;
}

.project_name span {
  font-size: 1.5rem;
  color: #222;
}

.problem_subtitle > p {
  font-size: 3.7rem;
  line-height: 1;
  display: block;
  margin-left: 1rem;
}

.problem_area {
  justify-content: space-between;
  margin-top: 4rem;
}

.problem_box {
  position: relative;
  width: 32%;
  height: 100%;
  padding: 2em 1.5em 1em 1.5em;
  counter-increment: section;
  text-align: center;
  border: 4px solid #34c1a3;
  border-radius: 10px;
}

.problem_box::before {
  font-family: 'Montserrat', sans-serif;
  font-size: 5rem;
  font-style: italic;
  line-height: 1;
  position: absolute;
  top: -6%;
  left: 50%;
  padding: 0 1rem;
  content: counter(section, decimal-leading-zero);
  transform: translateX(-50%);
  color: #34c1a3;
  background-color: #fff;
}

.problem_boxtitle {
  font-size: 2rem;
  font-weight: bold;
}

.problem_iconarea {
  display: inline-block;
  width: 60%;
  margin-top: 1em;
  border-radius: 50%;
  background-color: #ffe348;
}

.problem_icon {
  position: relative;
  height: 0;
  padding-top: 100%;
}

.problem_icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  transform: translateY(-50%) translateX(-50%);
}

.problem_boxtext {
  margin-top: 1em;
}

.first_box img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 80%;
  transform: translateY(-50%);
}

.second_box {
  margin-top: 2rem;
}

.third_box {
  margin-top: 4rem;
}

/* レコメンド */
.recommend_title h2::before {
  margin-right: .5em;
  content: url(../img/ashirai01.svg);
}

.recommend_title h2::after {
  margin-left: .5em;
  content: url(../img/ashirai02.svg);
}

.recommend_area {
  width: 100%;
  margin-top: 2rem;
}

.recommend_box {
  align-items: center;
}

.right_box {
  justify-content: flex-end;
}

.balloon {
  position: relative;
  display: inline-block;
  margin-left: 1em;
  padding: 1em;
  transform: translateY(20%);
  border-radius: 50px;
  background: #f2f2f2;
}

.balloon_left {
  margin-left: 1em;
}

.balloon_right {
  margin-right: 1em;
}

.balloon_left::after {
  position: absolute;
  top: 10%;
  left: -5px;
  display: inline-block;
  width: 0;
  height: 0;
  content: '';
  transform: rotate(90deg);
  border-width: 10px 0 10px 17.32px;
  border-style: solid;
  border-color: transparent transparent transparent #f2f2f2;
}

.balloon_right::after {
  position: absolute;
  top: 10%;
  right: -5px;
  display: inline-block;
  width: 0;
  height: 0;
  content: '';
  transform: rotate(90deg);
  border-width: 10px 0 10px 17.32px;
  border-style: solid;
  border-color: transparent transparent transparent #f2f2f2;
}

.customer_text {
  font-size: 1.8rem;
  font-weight: bold;
  padding: 0 2em;
}

.customer_text span {
  display: inline-block;
  background: linear-gradient(transparent 70%, #ffe348 0%);
}

/* CTA */
.cta_wrap {
  align-items: center;
  justify-content: space-between;
  padding: 2rem 10rem;
  border-radius: 15px;
  background: linear-gradient(135deg, #f09135, #ec6e1f);
}

.cta_textarea,
.cta_imagearea {
  width: 50%;
}

.cta_textarea {
  color: #fff;
}

.cta_title {
  font-size: 3rem;
  font-weight: bold;
}

.cta_text {
  font-size: 1.4rem;
  margin-top: 1em;
}

.cta_buttonarea {
  margin-top: 4rem;
}

.cta_buttonwrap {
  text-align: center;
}

.cta_buttonwrap span {
  font-weight: normal;
  position: relative;
  display: block;
  color: #fff;
}

.cta_buttonwrap span::before {
  position: absolute;
  top: 50%;
  left: 24%;
  display: inline-block;
  width: 18px;
  height: 1.2px;
  content: '';
  transform: rotate(60deg);
  background-color: #fff;
}

.cta_buttonwrap span::after {
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 18px;
  height: 1.2px;
  content: '';
  transform: rotate(-60deg);
  background-color: #fff;
}

.cta_button:hover {
  transition: .3s;
  color: #34c1a3;
  border: 2px solid #34c1a3;
  background-color: #fff;
}

.cta_button:hover::after {
  margin-left: 1em;
  content: url(../img/cta_greenarrow.svg);
}

.cta_imagearea {
  display: inline-block;
}

.cta_image {
  margin-left: 4rem;
}

/* サポート */
.support {
  padding: 8rem 0;
  background-color: #faf7f3;
}

.support_text {
  margin-top: 4rem;
  text-align: center;
}

.support_area {
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 4rem;
}

.support_box {
  position: relative;
  width: 48%;
  margin-bottom: 4rem;
  counter-increment: section;
  border-radius: 10px;
  background-color: #fff;
}

.support_box::before {
  font-family: 'Montserrat', sans-serif;
  font-size: 5rem;
  font-style: italic;
  line-height: 1;
  position: absolute;
  right: 5%;
  bottom: 3%;
  content: counter(section, decimal-leading-zero);
  color: #fff;
  text-shadow: 1px 0 0 #34c1a3, 0 1px 0 #34c1a3, -1px 0 0 #34c1a3, 0 -1px 0 #34c1a3;
}

.support_box :last-child {
  margin-bottom: 0;
}

.support_boxtitle {
  font-size: 1.8rem;
  font-weight: bold;
  padding: .5em 0;
  text-align: center;
  color: #fff;
  border-radius: 10px 10px 0 0;
  background-color: #34c1a3;
}

.support_container {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 4rem 5rem;
}

.support_image {
  width: 100%;
  border: 1px solid #eaeaea;
}

.support_boxtext {
  margin: 1.5rem 0;
}

/* カリキュラム */
.curriculum {
  padding-bottom: 2rem;
}

.curriculum_text {
  margin-top: 4rem;
  text-align: center;
}

.curriculum_step {
  align-items: center;
  justify-content: space-between;
  width: 80%;
  margin-top: 4rem;
  margin-right: auto;
  margin-left: auto;
}

.step_unit {
  position: relative;
  display: block;
  width: 12rem;
  border: 2px solid #34c1a3;
  border-radius: 50%;
}

.curriculum_arrow {
  width: 0;
  height: 0;
  border-width: 20px 0 20px 15px;
  border-style: solid;
  border-color: transparent transparent transparent #ffe348;
}

.step_inside {
  height: 0;
  padding-top: 100%;
  text-align: center;
}

.step_inside p {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.25;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  transform: translateY(-55%) translateX(-50%);
}

.step_inside span {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-style: italic;
  color: #34c1a3;
}

.step_area {
  margin-top: 9rem;
}

.beginner {
  margin-top: 6rem;
}

.step_titleunit {
  align-items: center;
  margin-right: 1em;
  padding: .7rem 1.5rem;
  color: #fff;
  border-radius: 5px;
  background-color: #34c1a3;
}

.step_titleunit {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  display: inline-block;
}

.step_titleunit span {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: inherit;
  font-style: italic;
  margin-right: .5em;
}

.step_text {
  margin-top: 1em;
}

.step_container {
  margin-top: 3rem;
}

.step_container:last-child {
  margin-top: 7rem;
}

.step_subtitle {
  font-size: 2rem;
  font-weight: bold;
}

.step_imagearea {
  justify-content: space-between;
  margin-top: 1em;
}

.step_image {
  width: 48%;
}

.step_image iframe {
  width: 100%;

  aspect-ratio: 16/9;
}

.step_boxarea {
  justify-content: space-between;
  margin-top: 1em;
}

.step_box {
  position: relative;
  overflow: hidden;
  width: 31%;
  padding: 2em 1em 1.5em;
  border-radius: 10px;
  background-color: #f8f6e9;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .16);
}

.step_box::before {
  position: absolute;
  top: -25px;
  left: -25px;
  width: 6rem;
  height: 6rem;
  content: '';
  border-radius: 50%;
  background: #000;
}

.step_boxtitle {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}

.design {
  color: #d05081;
}

.design::before {
  content: '';
  background: #d05081;
}

.cording {
  color: #4f87d1;
}

.cording::before {
  content: '';
  background: #4f87d1;
}

.practice {
  color: #d9661c;
}

.practice::before {
  content: '';
  background: #d9661c;
}

.step_icon {
  width: 50%;
  height: 10rem;
  margin-right: auto;
  margin-left: auto;
}

.step_icon img {
  height: 100%;

  object-fit: contain;
}

.step_list {
  display: table;
  margin-top: 1em;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
  text-align: left;
  color: #222;
}

.step_list li {
  flex-grow: 1;
}

.step_list li::before {
  content: '・';
}

/* 2個目のCTA */
.second_cta {
  position: relative;
}

.second_cta::after {
  position: absolute;
  z-index: -1;
  top: -35%;
  right: 0;
  content: url(../img/cta_back01.png);
}

/* 受講生の制作物 */
.production {
  position: relative;
  background-image: url(../img/production_back01.png);
  background-repeat: no-repeat, no-repeat;
  background-position: top 80% left 0;
}

.production::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: -5%;
  content: url(../img/production_back02.png);
}

.production_box {
  margin-top: 4rem;
}

.production_subtitle {
  font-size: 2rem;
  font-weight: bold;
  color: #34c1a3;
}

.production_text {
  margin-top: 1rem;
}

.production_imagearea {
  margin-top: 1em;
}

/* 制作実績部分 */
.production_sitearea {
  margin-top: 4rem;
}

.jiseki_list {
  flex-wrap: wrap;
  justify-content: space-between;
}

.jiseki_list li {
  line-height: .7;
  width: 24%;
  margin-bottom: 3rem;
  transition: .2s;
  text-align: center;
}

.jiseki_list span {
  font-size: 1.2rem;
}

.jiseki_list li:hover {
  transition: .2s;
  color: #34c1a3;
}

.scroll {
  width: 100vw;
  margin: 8rem calc(50% - 50vw) 0;
  /* height: 180px; */
  padding: 180px calc(50vw - 50% + 8px);
  animation: scrollmove 80s linear infinite;
  background: url(https://creators-factory.com/wp-content/themes/CF/img/inpage/scroll04.jpg) repeat-x;
}

@keyframes scrollmove {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 3200px 0;
  }
}

/* ご利用の流れ */
.flow_group {
  justify-content: space-between;
  margin-top: 6rem;
}

.flow_box {
  position: relative;
  width: 19%;
  text-align: center;
}

.flow_box::after {
  position: absolute;
  top: 50%;
  left: 100%;
  width: 0;
  height: 0;
  content: '';
  transform: translateY(-50%);
  border-width: 20px 0 20px 15px;
  border-style: solid;
  border-color: transparent transparent transparent #ffe348;
}

.flow_box:last-child::after {
  display: none;
}

.flow_balloon {
  position: relative;
  display: inline-block;
  margin: 1.5em 0;
  padding: .5rem 1.5rem;
  color: #fff;
  border-radius: 8px;
  background: #34c1a3;
}

.flow_balloon:before {
  position: absolute;
  top: 100%;
  left: 50%;
  content: '';
  transform: translateX(-50%);
  border: 15px solid transparent;
  border-top: 15px solid #34c1a3;
}

.flow_balloon h3 {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0;
  padding: 0;
}

.flow_image {
  width: 70%;
  margin-right: auto;
  margin-left: auto;
}

.flow_text {
  font-size: 14px;
  margin-top: 1em;
}

/* 費用 */
.price {
  padding: 8rem 0;
  background-color: #faf7f3;
}

.price_group {
  justify-content: space-between;
  margin-top: 4rem;
}

.price_box {
  width: 46%;
  padding: 2em 2em;
  text-align: center;
  border: 6px solid #b1b1b1;
  border-radius: 10px;
  background-color: #fff;
}

.advance_box {
  border: 6px solid #34c1a3;
}

.plan_name {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  padding: .5em 0;
  color: #2d2d2d;
  border-bottom: 1px solid #eaeaea;
}

.plan_name span {
  font-family: 'Montserrat', sans-serif;
  font-size: initial;
  line-height: 1;
  color: #b1b1b1;
}

.free {
  margin: 4.5rem 0;
}

.free p {
  font-size: 4rem;
  font-weight: bold;
  color: #34c1a3;
}

.plan_list p {
  font-weight: bold;
  line-height: 1;
}

.plan_list p::before {
  margin-right: .5em;
  content: url(../img/price_icon01.svg);
  vertical-align: middle;
}

.advance {
  margin-top: 1em;
}

.monthly,
.plan_listarea {
  margin-top: 2rem;
}

.price_text {
  font-size: 1.4rem;
  margin-top: 2em;
  text-align: left;
}


/* よくある質問 */
.qa {
  padding: 8rem 0;
  background-color: #faf7f3;
  background-image: url(../img/qa_back.jpg);
  background-repeat: no-repeat, no-repeat;
  background-position: top 0 right 0;
  background-size: 100%;
}

.qa_wrap {
  margin-top: 4rem;
}

.qa_text {
  margin-top: 4rem;
  text-align: center;
}

.qa_text a {
  border-bottom: 1px solid #222;
}

.qa_group {
  margin-top: 4rem;
}

.qa_box {
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, .16);
}

.question {
  position: relative;
  align-items: center;
  padding: 1em 1.5em;
}

.answer::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  content: '';
  border-bottom: 1px dashed #ebebeb;
}

.question span {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: bold;
  font-style: italic;
  line-height: 1;
  color: #34c1a3;
}

.question_text {
  font-weight: bold;
  margin-left: 1em;
}

.answer {
  position: relative;
  padding: 1em 1.5em;
}

.answer span {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: bold;
  font-style: italic;
  line-height: 1;
  color: #ec6e1f;
}

.answer_text {
  margin-left: 1em;
}

.qa_box + .qa_box {
  margin-top: 3rem;
}

/* フッター */
.footer {
  position: relative;
  width: 100%;
  height: 14rem;
  text-align: center;
  color: #fff;
  background-color: #34c1a3;
}

.sns {
  width: 10%;
  margin-right: auto;
  margin-left: auto;
  padding-top: 2em;
}

.sns_list {
  justify-content: space-between;
}

.sns_list li {
  transition: .2s;
}

.sns_list li:hover {
  transition: .2s;
  transform: scale(1.3);
}

.footer_textarea {
  justify-content: center;
  margin-top: 1em;
  margin-right: auto;
  margin-left: auto;
}

.footer_text {
  font-size: 1.2rem;
  padding: 0 1em;
}

.footer_text a {
  line-height: 1.5;
  display: inline-block;
}

.footer_text + .footer_text {
  border-left: 1px solid #fff;
}

.footer_text a:hover {
  transition: .3s;
  border-bottom: 1px solid #fff;
}

.footer_copy {
  /* margin-top: 2em; */
  font-size: 1rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  padding-bottom: 1.5em;
  transform: translateX(-50%);
}

.initial_cost {
  width: 280px;
}

/* タブレット｜レスポンシブ */
@media screen and (max-width:1170px) {
  /* ヘッダー */
  .header {
    height: 120px;
  }

  .header_wrap {
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }

  .header_title {
    text-align: center;
  }

  .header_title h1 {
    font-size: 3rem;
  }

  .header_title span {
    font-size: .7rem;
  }

  .gNav {
    font-size: 1.2rem;
  }

  .gNav_list a {
    padding: 1rem 1.5rem;
  }

  /* メインビジュアル */
  .mv {
    padding-top: 12rem;
    background-position: right 0 top 0, left 0 bottom -10%;
    background-size: 70%, 20%;
  }

  .mv_wrap {
    margin-top: 6rem;
  }

  .mv_textarea {
    width: 100%;
  }

  .mv_subtext {
    font-size: 1.4rem;
  }

  .mv_text {
    font-size: 2rem;
  }

  /* サービス */
  .service {
    padding: 8rem 0;
  }

  .point_box h3 {
    font-size: 1.8rem;
    background: linear-gradient(transparent 60%, #ffe348 0%);
  }

  .point_area::before {
    font-size: 3.4rem;
  }

  /* プログラム */
  .problem_title span {
    display: none;
  }

  .problem_box {
    padding: 2em 1em 1em 1em;
  }

  .problem_box::before {
    font-size: 4rem;
  }

  .problem_boxtext {
    font-size: 1.3rem;
  }

  /* レコメンド */
  .customer_icon {
    width: 10rem;
  }

  .customer_text {
    font-size: 1.6rem;
  }

  /* CTA */
  .cta_textarea {
    width: 100%;
    text-align: center;
  }

  .cta_title {
    font-size: 2.4rem;
  }

  .cta_text {
    font-size: 1.2rem;
  }

  .cta_buttonarea {
    justify-content: center;
    margin-top: 2rem;
  }

  .cta_imagearea {
    display: none;
  }

  /* サポート */
  .support {
    padding: 6rem 0;
    background-color: #faf7f3;
  }

  .support_box::before {
    font-size: 4rem;
  }

  /* カリキュラム */
  .step_unit {
    width: 10rem;
  }

  .step_inside p {
    font-size: 2rem;
  }

  .step_inside span {
    font-size: 1.4rem;
  }

  .step_titleunit {
    font-size: 2rem;
    display: inline-block;
  }

  .step_titleunit span {
    font-size: 1.4rem;
  }

  .step_boxtitle {
    font-size: 1.8rem;
  }

  .step_list {
    font-size: 1.2rem;
  }

  .curriculum_arrow {
    border-width: 18px 0 18px 15px;
  }

  /* 2つ目のCTA */
  .second_cta::after {
    position: absolute;
    z-index: -1;
    top: -50%;
    right: 0;
    content: url(../img/cta_back01.png);
  }

  /* ご利用の流れ */
  .flow_group {
    margin-top: 3.2rem;
  }

  .flow_balloon {
    padding: .5rem 1rem;
  }

  .flow_balloon h3 {
    font-size: 1.2rem;
    white-space: nowrap;
  }

  .flow_text {
    font-size: 1.2rem;
    width: 90%;
  }

  /* 費用 */
  .price {
    padding: 6rem 0;
  }

  .free {
    margin: 4.5rem 0;
  }

  .free p {
    font-size: 3.6rem;
  }

  .plan_list {
    font-size: 1.6rem;
  }

  .price_text {
    font-size: 1.2rem;
  }

  .advance_box > .price_text {
    text-align: left;
  }

  /* よくある質問 */
  .qa {
    padding: 6rem 0;
  }

  /* フッター */
  .sns {
    width: 20%;
  }
}


/* スマホ｜レスポンシブ */
@media screen and (max-width:768px) {
  /* ヘッダー */
  .header {
    height: 50px;
  }

  .header_wrap {
    justify-content: center;
    width: 100%;
  }

  .header_title {
    text-align: center;
  }

  .header_title span {
    font-size: .8rem;
  }

  .header_title h1 {
    font-size: 2rem;
  }

  /* ログインボタン */
  .sp_login {
    position: absolute;
    top: 0;
    right: 0;
    width: 5rem;
    height: 100%;
  }

  .sp_login a {
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 0;
    padding: .8em 0;
    text-align: center;
  }

  .login_button {
    font-size: .8rem;
    border-radius: 0;
    box-shadow: none;
  }

  .login_button::after {
    display: block;
    margin-top: .5em;
    margin-left: 0;
  }

  .login_button:hover {
    transform: none;
  }

  /* グローバルナビ */
  .gNav {
    position: fixed;
    z-index: 20;
    top: 5rem;
    right: 0;
    bottom: 0;
    left: 0;
    visibility: hidden;
    flex-direction: column;
    width: 100vw;
    transition: opacity .5s, visibility .5s;
    opacity: 0;
    color: #222;
    background-color: #fff;
  }

  .gNav.show {
    visibility: visible;
    opacity: 1;
  }

  .gNav_list {
    flex-direction: column;
    width: 100%;
    text-align: center;
  }

  .gNav_list li {
    width: 100%;
    border-bottom: 1px dashed #eaeaea;
  }

  .gNav_list a {
    width: 100%;
    padding: 2rem 0;
  }

  /* ハンバーガーメニュー */
  .hamburger_area {
    position: fixed;
    z-index: 20;
    right: 5px;
    bottom: 5px;
    width: 70px;
    border-radius: 50%;
    background-color: #34c1a3;
  }

  .header_hamburger {
    height: 0;
    padding-top: 100%;
  }

  .header_hamburger span {
    font-size: .8em;
    font-weight: initial;
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    margin: 0;
    transform: translateY(-50%);
    text-align: center;
    color: #fff;
  }

  .header_hamburger span::before {
    font-family: 'Material Icons';
    font-size: 30px;
    font-weight: 400;
    font-style: normal;
    line-height: .78;
    display: block;
    content: '\e5d2';
  }

  .hamburger_area.show span::before {
    font-family: 'Material Icons';
    font-size: 30px;
    font-weight: 400;
    font-style: normal;
    line-height: .78;
    display: block;
    content: '\e5cd';
    transition: .5s;
  }

  /* グローバルナビ内のCTAボタン */
  .gNav_buttonarea {
    margin: 1.5em 0;
    text-align: center;
  }

  .gNav_buttonwrap span {
    font-size: 1.4rem;
    font-weight: normal;
    position: relative;
    display: block;
    color: #ec6e1f;
  }

  .gNav_buttonwrap span::before {
    position: absolute;
    top: 50%;
    left: 24%;
    display: inline-block;
    width: 18px;
    height: 1.2px;
    content: '';
    transform: rotate(60deg);
    background-color: #ec6e1f;
  }

  .gNav_buttonwrap span::after {
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 18px;
    height: 1.2px;
    content: '';
    transform: rotate(-60deg);
    background-color: #ec6e1f;
  }

  /* メインビジュアル */
  .mv {
    padding-top: 5rem;
    background-image: url(../img/mv_back01_sp.png), url(../img/mv_back02_sp.png);
    background-repeat: no-repeat, no-repeat;
    background-position: top 0 right 0, left 0 bottom 0;
    background-size: auto, auto;
  }

  .mv_wrap {
    position: relative;
    align-items: baseline;
    flex-direction: column;
    margin-top: 0;
  }

  .mv_title {
    font-size: 2.8rem;
    margin-top: 3rem;
  }

  .mv_text {
    font-size: initial;
  }

  .mv_subtext {
    flex-direction: column;
    margin-top: 2rem;
  }

  .mv_image {
    width: 65%;
    margin-top: -50px;
    margin-left: auto;
  }

  .mv_buttonarea {
    margin-top: 1rem;
    margin-right: auto;
    margin-left: auto;
  }

  /* サービス */
  .service {
    padding: 4rem 0;
  }

  .service_title span {
    font-size: 1.6rem;
  }

  .service_title h2 {
    margin-top: .5em;
  }

  .service_container {
    flex-direction: column;
    margin-top: 2rem;
  }

  .service_image,
  .service_point {
    width: 100%;
  }

  .service_point {
    margin-top: 6rem;
  }

  .point_area::before {
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
  }

  .point_area + .point_area {
    margin-top: 4rem;
  }

  .point_box {
    width: 100%;
    padding: 2em 1.5em 1.5em 1.5em;
    text-align: center;
  }

  /* プロブレム */
  .problem_image {
    margin-top: 4rem;
  }

  .problem_subtitle {
    align-items: center;
  }

  .project_name span {
    font-size: 1rem;
  }

  .project_name p {
    font-size: 3.6rem;
  }

  .problem_subtitle > p {
    font-size: 1.6rem;
    display: block;
  }

  .problem_area {
    align-items: center;
    flex-direction: column;
  }

  .problem_box {
    width: 32rem;
    padding: 2em 1em 2em 1em;
  }

  .problem_boxtitle {
    font-size: 1.8rem;
  }

  .problem_iconarea {
    width: 135px;
  }

  .second_box {
    margin-top: 4rem;
  }

  /* レコメンド */
  .recommend_box + .recommend_box {
    margin-top: 2rem;
  }

  .customer_icon {
    width: 8rem;
  }

  .balloon_left::after {
    top: 10%;
    left: -3px;
    transform: rotate(95deg);
    border-width: 10px 0 10px 17.32px;
  }

  .customer_text {
    font-size: 1.4rem;
    padding: 0 1em;
  }

  /* CTA */
  .cta_wrap {
    position: relative;
    flex-direction: column;
    padding: 2em 1em;
  }

  .cta_title {
    font-size: 2rem;
  }

  .cta_button {
    padding: 1rem 2rem;
  }

  .cta_buttonwrap span::before {
    left: 18%;
  }


  /* サポート */
  .support {
    padding: 4rem 0;
  }

  .support_area {
    flex-direction: column;
  }

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

  .support_box:last-child {
    margin-bottom: 0;
  }

  .support_boxtitle {
    font-size: 1.6rem;
  }

  .support_container {
    padding: 2rem 2rem 3rem 2rem;
  }

  .support_box::before {
    font-size: 3rem;
    right: 3%;
    bottom: 2%;
  }


  /* カリキュラム */
  .curriculum_step {
    width: 100%;
    margin-top: 2rem;
  }

  .step_unit {
    width: 70px;
  }

  .curriculum_arrow {
    border-width: 15px 0 15px 12px;
  }

  .step_inside span {
    font-size: .9rem;
  }

  .step_inside p {
    font-size: 1.4rem;
  }

  .beginner {
    margin-top: 4rem;
  }

  .step_title {
    justify-content: center;
  }

  .step_titleunit {
    font-size: 1.6rem;
    margin-right: 0;
  }

  .step_titleunit:nth-child(2) {
    margin-left: 1em;
  }

  .step_titleunit span {
    font-size: 1rem;
  }

  .step_container {
    margin-top: 2rem;
  }

  .step_subtitle {
    text-align: center;
  }

  .step_imagearea,
  .step_boxarea {
    flex-direction: column;
  }

  .step_image {
    width: 100%;
  }

  .step_image + .step_image {
    margin-top: 2rem;
  }

  .step_container:last-child {
    margin-top: 6rem;
  }

  .step_boxarea {
    align-items: center;
    margin-top: 2rem;
  }

  .step_box {
    width: 30rem;
  }

  .step_box + .step_box {
    margin-top: 2rem;
  }

  .step_boxtitle {
    font-size: 1.8rem;
  }

  .step_area {
    margin-top: 6rem;
  }

  .practice {
    margin-right: auto;
    margin-left: auto;
  }

  /* 2個目のCTA */
  .second_cta::after {
    display: none;
  }

  /* 受講生の制作物 */
  .production_box {
    margin-top: 2rem;
  }

  .production_subtitle {
    font-size: 1.8rem;
    text-align: center;
  }

  .production_text {
    text-align: center;
  }

  .production_sitearea {
    margin-top: 2rem;
  }

  .jiseki_list li {
    width: 48%;
    margin-bottom: 2rem;
  }

  .jiseki_list span {
    font-size: 1rem;
  }

  .scroll {
    margin: 1rem calc(50% - 50vw) 0;
  }

  .production {
    background-image: none;
  }

  .production::after {
    display: none;
  }

  /* ご利用の流れ */
  .flow_group {
    align-items: center;
    flex-direction: column;
    margin-top: 2rem;
  }

  .flow_box {
    position: relative;
    width: 30rem;
    text-align: center;
  }

  .flow_box::after {
    top: 100%;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }

  .flow_box + .flow_box {
    margin-top: 4rem;
  }

  .flow_balloon h3 {
    font-size: 1.8rem;
  }

  .flow_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .flow_image {
    width: 12.5rem;
    margin-right: 0;
    margin-left: 0;
  }

  .flow_text {
    font-size: 1.3rem;
    width: 70%;
    margin-top: 0;
  }


  /* 費用 */
  .price {
    padding: 4rem 0;
  }

  .price_group {
    align-items: center;
    flex-direction: column;
  }

  .price_box {
    width: 30rem;
  }

  .plan_name {
    font-size: 2rem;
  }

  .plan_name span {
    font-size: 1.4rem;
  }

  .free p {
    font-size: 2.6rem;
  }

  .price_text {
    font-size: 1.4rem;
  }

  .advance_box {
    margin-top: 2rem;
  }

  .advance_box > .price_text {
    font-size: 1rem;
  }

  /* よくある質問 */
  .qa {
    padding: 2rem 0;
  }

  .qa_group {
    margin-top: 2rem;
  }

  .question {
    align-items: flex-start;
  }

  .question span {
    font-size: 2.5rem;
  }

  .answer span {
    font-size: 2.5rem;
  }

  /* フッター */
  .footer {
    height: 20rem;
  }

  .sns {
    width: 40%;
  }

  .footer_textarea {
    flex-direction: column;
  }

  .footer_text + .footer_text {
    margin-top: .5em;
    border-left: none;
  }

  .footer_copy {
    white-space: nowrap;
  }
}
