/*====================================

	----------------------------------
		Color
	----------------------------------

	Main     : #e71a0f
  Accent   : #790000

	----------------------------------
    Font
	----------------------------------

  Noto Sans JP         : Regular,Medium,Bold
  Helvetica            : Regular,Bold

	----------------------------------
    Structure
  ----------------------------------

  0. General
    0.1 Color
    0.2 Font
    0.3 Block
    0.4 Component
    0.5 Behavior
    0.6 Modal
  1. Header
  2. Main View
  3. Section
    3.1 Lead
    3.2 Value
    3.3 Performance
    3.4 Voice
    3.5 Flow
    3.6 Fee
    3.7 Q&A
    3.8 Gift
    3.9 Form
  4. Footer

  ----------------------------------
    Change Log
  ----------------------------------

	-2020/04/06 Coding start

====================================*/
/*====================================

	0. General

====================================*/
/*====================================
  0.1 Color
====================================*/
/*====================================
  0.2 Font
====================================*/
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-Regular.otf") format("opentype");
  font-weight: 400;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-Medium.otf") format("opentype");
  font-weight: 500;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-Bold.otf") format("opentype");
  font-weight: 700;
}
@font-face {
  font-family: "Helvetica";
  src: url("../fonts/Helvetica.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Helvetica";
  src: url("../fonts/Helvetica.ttf") format("truetype");
  font-weight: 700;
}
html {
  font-family: "Noto Sans JP", Helvetica, sans-serif;
  color: #111;
}

/*====================================
  0.3 Block
====================================*/
* {
  box-sizing: border-box;
}

.row {
  margin: 0;
}

.container {
  margin: 0 auto;
  padding: 80px 0 144px;
}

.container-fruid {
  width: 100%;
  padding: 80px 0 144px;
}

.section {
  position: relative;
}
.section::before {
  content: "";
  position: absolute;
  height: 80px;
  width: 100%;
  background: url(../images/back-wave01.svg);
  top: -80px;
  left: 0;
}

.section:nth-of-type(even) {
  background: #F8F6F2;
}
.section:nth-of-type(even)::before {
  background: url(../images/back-wave02.svg);
}

/* SP */
@media screen and (max-width: 520px) {
  .col-12 {
    padding: 0;
  }
  .container {
    width: 100%;
    padding: 40px 15px 64px;
  }
  .full-container {
    padding: 80px 0;
  }
  .section::before {
    height: 26px;
    top: -24px;
  }
}
/*====================================
  0.4 Component
====================================*/
.scroll-top-btn {
  cursor: pointer;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  width: 60px;
  height: 60px;
  position: fixed;
  bottom: 0;
  right: 0;
  text-align: center;
  line-height: 60px;
  font-size: 32px;
  z-index: 100;
}

.floating-btn {
  display: none !important;
}

.cv-btn {
  background: linear-gradient(135deg, #F24728, #F76B0E);
  color: #fff !important;
  padding: 14px 28px;
  border-radius: 80px;
  letter-spacing: 2px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}
.cv-btn:hover {
  opacity: 0.7;
}

.heading-wrap {
  width: 100%;
  text-align: center;
}

.heading {
  line-height: 1.2;
  margin: 0 auto;
  display: inline-block;
  text-align: left;
  font-size: 40px;
}
.heading > .english {
  font-size: 0.6em;
  color: #F24728;
}
.heading > .supervision {
  font-size: 0.8em;
}

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

.sp-none {
  display: inline-block !important;
}

/* SP */
@media screen and (max-width: 520px) {
  .floating-btn {
    display: inline-block !important;
    text-align: center;
    position: fixed;
    border-radius: 0;
    height: 60px;
    width: calc(100vw - 60px);
    left: 0;
    bottom: 0;
    padding: 0;
    line-height: 60px;
    z-index: 100;
    font-size: 14px;
  }
  .floating-btn:hover {
    opacity: 1;
  }
  .sp-show {
    display: inline-block !important;
  }
  .sp-none {
    display: none !important;
  }
  .heading {
    line-height: 1.2;
    margin: 0 auto;
    display: inline-block;
    text-align: left;
    font-size: 24px;
  }
  .heading > .english {
    font-size: 0.6em;
    color: #F24728;
  }
  .heading > .supervision {
    font-size: 0.8em;
  }
}
/*====================================
  0.5 Behavior
====================================*/
html {
  counter-reset: service curriculum 0;
}

.animate__animated {
  animation-delay: 0.2s;
}

.animate__delay-05s {
  animation-delay: 0.5s;
}

.animate__delay-1s {
  animation-delay: 1s;
}

.animate__delay-15s {
  animation-delay: 1.5s;
}

.animate__delay-2s {
  animation-delay: 2s;
}

/* SP */
@media screen and (max-width: 520px) {
  .animate__delay-05s, .animate__delay-1s, .animate__delay-15s, .animate__delay-20s {
    animation-delay: 0.2s;
  }
}
/*====================================
  0.6 Modal
====================================*/
.modal-back {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 500;
  background: rgba(0, 0, 0, 0.6);
}

.modal {
  background: #efefef;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50vw;
  height: auto;
  z-index: 999;
  background: #fafafa;
  border-radius: 10px;
}
.modal__head {
  position: relative;
  left: -16px;
  padding: 24px 0;
  color: #F24728;
  text-align: center;
  font-size: 24px;
}
.modal__head > i {
  margin-right: 8px;
}
.modal__body {
  padding: 32px;
  background: #efefef;
  height: 100%;
  border-radius: 0 0 10px 10px;
}
.modal__body > p {
  font-weight: bold;
  margin-top: 32px;
  font-size: 18px;
}
.modal__body > p:nth-of-type(1) {
  margin-top: 0;
}

/* SP */
@media screen and (max-width: 520px) {
  .modal {
    width: 85vw;
  }
  .modal__head {
    padding: 16px 0;
    left: 0;
    font-size: 18px;
  }
  .modal__head > i {
    margin-right: 4px;
  }
  .modal__body {
    padding: 24px 16px;
  }
  .modal__body > p {
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.4;
  }
}
/*====================================

	1. Header

====================================*/
header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  height: 80px;
  width: 100%;
  z-index: 100;
  box-shadow: 0 3px 12px rgba(62, 62, 62, 0.16);
}

.header-inner {
  height: 100%;
  margin: 0 auto;
  width: 1280px;
  display: flex;
  align-items: center;
}

.header-logo {
  height: 60px;
}

.menu-trigger {
  display: none;
}

.header-nav {
  margin-left: auto;
  height: 100%;
}

.header-menu {
  height: 100%;
  display: flex;
  align-items: center;
}
.header-menu__item {
  margin-right: 32px;
  font-size: 15px;
  font-weight: bold;
}
.header-menu__item:last-child {
  margin-right: 0;
}
.header-menu__link {
  position: relative;
  color: inherit;
  text-decoration: none;
}
.header-menu__link::after {
  content: "";
  height: 3px;
  width: 0;
  background: #092141;
  position: absolute;
  bottom: -8px;
  left: 0;
  transition: 0.3s;
}
.header-menu__item:not(:last-child) .header-menu__link:hover::after {
  width: 100%;
}

/* SP */
@media screen and (max-width: 520px) {
  .menu-trigger,
  .menu-trigger span {
    z-index: 9999;
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
  }
  .menu-trigger {
    position: relative;
    width: 32px;
    height: 24px;
    background: none;
    border: none;
    appearance: none;
    cursor: pointer;
  }
  .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #383838;
    border-radius: 4px;
  }
  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  .menu-trigger span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
    left: initial;
    right: 0;
    width: 70%;
  }
  .menu-trigger.active span:nth-of-type(1) {
    transform: translateY(11.2px) rotate(-315deg);
  }
  .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-11.2px) rotate(315deg);
    width: 100%;
  }
  header {
    width: 100%;
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    height: 64px;
  }
  .header-inner {
    width: 100%;
    justify-content: space-between;
    padding: 0 24px;
  }
  .header-logo {
    width: 190px;
    height: auto;
  }
  .header-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    z-index: 100;
  }
  .header-menu {
    flex-flow: column;
    align-items: center;
    justify-content: center;
  }
  .header-menu__item {
    color: #092141;
    margin-top: 32px;
    font-size: 18px;
    font-weight: 500;
    margin-right: 0;
  }
  .header-menu__item:last-child {
    display: none;
  }
  .header-menu__link::after {
    display: none;
  }
}
/*====================================

	2. Main View

====================================*/
.mv {
  margin-top: 80px;
  position: relative;
  background: url(../images/mv.png);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  height: calc(100vh - 80px);
}
.mv__inner {
  height: 100%;
  width: 1280px;
  margin: 0 auto;
  position: relative;
}
.mv__scroll-text {
  position: relative;
  position: absolute;
  color: #fff;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  bottom: 20%;
  right: 16px;
  letter-spacing: 4px;
  font-size: 12px;
}
.mv__scroll-text::before {
  content: "";
  position: absolute;
  top: -190px;
  left: 50%;
  transform: translateX(-50%);
  height: 180px;
  width: 1.4px;
  background: #fff;
  animation-name: scrollText;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-out;
}
.mv__contents {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.mv__letter {
  margin-top: 24px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-size: 36px;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  color: #fff;
}
.mv__letter > span {
  font-size: 1.5em;
}
.mv__cv-btn {
  margin-top: 32px;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
  padding: 18px 48px;
  font-size: 24px;
}

@keyframes scrollText {
  0% {
    height: 0;
  }
  50% {
    height: 180px;
  }
  90% {
    height: 180px;
  }
  100% {
    opacity: 0;
  }
}
/* SP */
@media screen and (max-width: 520px) {
  .mv {
    margin-top: 64px;
    height: 520px;
    background: url(../images/sp-mv.png);
    background-position: center;
    background-size: cover;
  }
  .mv__inner {
    width: 100%;
    padding: 0 15px;
  }
  .mv__scroll-text {
    top: 80px;
    right: 8px;
    font-size: 10px;
    bottom: initial;
    transform: translateY(50%);
  }
  .mv__logo {
    display: none;
  }
  .mv__contents {
    width: 90%;
    position: absolute;
    top: initial;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
  }
  .mv__letter {
    line-height: 1.8;
    letter-spacing: 1px;
    font-size: 22px;
  }
  .mv__letter > span {
    font-size: 1.5em;
  }
  .mv__cv-btn {
    text-align: center;
    margin-top: 24px;
    border: 1px solid #fff;
    padding: 18px 0;
    width: 100%;
    font-size: 18px;
  }
}
/*====================================

	3. Section

====================================*/
/*====================================
  3.1 Lead
====================================*/
.lead {
  background: url(../images/back.png);
  background-size: contain;
  background-repeat: repeat;
  animation-name: slideBack;
  animation-duration: 400s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.lead > .container {
  position: relative;
}
.lead__icon {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 290px;
}
.lead__heading-wrap {
  text-align: center;
}
.lead__heading {
  display: inline-block;
  position: relative;
  z-index: 1;
  text-align: center;
  top: 10px;
  font-size: 40px;
}
.lead__heading > .dot-text {
  text-emphasis: filled dot #111;
}
.lead__under-line {
  position: relative;
  margin: 0 auto;
  width: 0%;
  bottom: 8px;
  left: 0;
  height: 24px;
  background: #F76B0E;
  opacity: 0.8;
  z-index: 0;
  transition: 1s;
}
.lead__under-line.isActive {
  width: 500px;
}
.lead__text-box {
  width: 540px;
  margin: 40px auto 0;
}
.lead__accent-text {
  line-height: 1.6;
  font-weight: bold;
  font-size: 22px;
}
.lead__accent-text > span {
  color: #F24728;
  font-size: 28px;
}
.lead__text {
  width: 95%;
  margin: 8px auto 0;
  line-height: 2;
  font-size: 18px;
  text-align: justify;
}

@keyframes slideBack {
  100% {
    background-position: -10000px 10000px;
  }
}
/* SP */
@media screen and (max-width: 520px) {
  .lead__text-box {
    width: 100%;
    margin: 24px auto 0;
  }
  .lead__heading {
    top: 0px;
    font-size: 24px;
  }
  .lead__under-line {
    bottom: 4px;
    height: 10px;
  }
  .lead__under-line.isActive {
    width: 300px;
  }
  .lead__accent-text {
    font-size: 14px;
  }
  .lead__accent-text > span {
    font-size: 18px;
  }
  .lead__text {
    font-size: 14px;
  }
  .lead__icon {
    height: 90px;
  }
}
/*====================================
  3.2 Value
====================================*/
.container-fluid.value-first {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.container.value-second {
  padding-top: 0;
}

.value-first .value__heading {
  width: 1140px;
  display: block !important;
  margin: 120px auto 0;
}

.value__heading {
  font-size: 32px;
  margin-top: 120px;
  z-index: 1;
}
.value__heading > .number {
  color: #F76B0E;
  opacity: 0.5;
  position: relative;
  font-size: 2em;
  margin-right: -24px;
  z-index: -1;
}
.value__heading > .number::before {
  content: "#";
  left: -16px;
  top: -8px;
  position: absolute;
  font-size: 0.8em;
  transform: skewX(-16deg);
}
.value__heading > .tax {
  font-size: 0.7em;
}
.value__cards {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.value-encount {
  margin-top: 40px;
  display: flex;
  align-items: center;
}
.value-encount__text-wrap {
  border-radius: 0 46px 46px 0;
  padding: 56px 80px;
  width: 50vw;
  background: #fff;
}
.value-encount__text {
  width: 450px;
  margin-left: auto;
}
.value-encount__text p {
  font-weight: 500;
  line-height: 2;
  font-size: 18px;
  margin-top: 32px;
}
.value-encount__text p:first-of-type {
  margin-top: 0;
}
.value-encount__accent-text {
  font-weight: bold;
  font-size: 24px !important;
  display: inline-block;
  background: linear-gradient(transparent 60%, #F4AB7A 0%);
}
.value-encount__img {
  width: 50%;
  position: relative;
  left: -20px;
}

.value-card {
  margin-top: 40px;
  width: 520px;
}
.value-card__img {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  width: 100%;
}
.value-card__text {
  line-height: 1.8;
  margin-top: 8px;
  font-size: 18px;
  font-weight: 500;
}

.value-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 80px;
}
.value-section__img {
  width: 400px;
}
@media screen and (max-width: 520px) {
  .value-section__img {
    margin-top: 20px;
  }
}
.value-section__text-box * {
  line-height: 2.4;
  font-weight: 500;
  font-size: 20px;
}
.value-section__sub-title {
  position: relative;
  font-weight: bold;
  padding-left: 88px;
  color: #164F9A;
}
.value-section__sub-title:before {
  content: "";
  position: absolute;
  width: 80px;
  left: 0;
  top: 55%;
  height: 3px;
  transform: translateY(-50%);
  background: #164F9A;
}
.value-section__text {
  text-align: justify;
  font-size: 18px;
}

/* SP */
@media screen and (max-width: 520px) {
  .value__heading-sp {
    margin-top: 56px;
    display: flex !important;
    align-items: center;
  }
  .value__heading-sp > .number {
    color: #F76B0E;
    font-weight: bold;
    position: relative;
    font-size: 2em;
    margin-right: 8px;
  }
  .value__heading-sp > .number::before {
    content: "#";
    left: -12px;
    top: -8px;
    position: absolute;
    font-size: 0.8em;
    transform: skewX(-16deg);
  }
  .value__heading-sp h3 {
    line-height: 1.3;
  }
  .value__heading-sp h3 > .tax {
    font-size: 0.7em;
  }
  .container-fluid.value-first {
    padding: 0 15px;
  }
  .container.value-second {
    padding-top: 0;
  }
  .value-first .value__heading {
    display: none !important;
  }
  .value-encount {
    flex-flow: column;
    margin-top: 40px;
    display: flex;
    align-items: center;
  }
  .value-encount__text-wrap {
    position: relative;
    left: -15px;
    padding: 40px 24px 40px 15px;
    width: 100%;
    background: #fff;
  }
  .value-encount__text {
    width: 100%;
    margin-left: auto;
  }
  .value-encount__text p {
    font-size: 14px;
    margin-top: 24px;
  }
  .value-encount__text p:first-of-type {
    margin-top: 0;
  }
  .value-encount__accent-text {
    font-size: 18px !important;
    display: inline-block;
    background: linear-gradient(transparent 60%, #F4AB7A 0%);
  }
  .value-encount__img {
    margin-top: -32px;
    width: 100vw;
    left: 0;
  }
  .value-card {
    margin-top: 24px;
  }
  .value-card__text {
    font-size: 14px;
    font-weight: normal;
  }
  .value-section {
    margin-top: 0px;
  }
  .value-section__text-box {
    margin-top: 24px;
  }
  .value-section__text-box * {
    line-height: 1.8;
    font-weight: normal;
    font-size: 16px;
  }
  .value-section__sub-title {
    position: relative;
    font-weight: bold;
    padding-left: 88px;
    color: #164F9A;
  }
  .value-section__sub-title:before {
    content: "";
    position: absolute;
    width: 80px;
    left: 0;
    top: 55%;
    height: 3px;
    transform: translateY(-50%);
    background: #164F9A;
  }
  .value-section__text {
    text-align: justify;
    font-size: 14px;
  }
  .value-section.revers {
    flex-direction: column-reverse;
  }
}
/*====================================
  3.3 Performance
====================================*/
.performance {
  padding-bottom: 144px;
}

.performance > .container {
  padding-bottom: 0;
}

.performance__decorate {
  position: relative;
  margin-top: 96px;
  z-index: 0;
  left: -40px;
  top: 16px;
  color: #F76B0E;
  opacity: 0.4;
  font-size: 80px;
  font-weight: bold;
}
.performance__sub-heading {
  position: relative;
  z-index: 1;
  font-size: 28px;
}
.performance__media {
  margin-right: 32px;
  background: url(../images/media.png);
  background-repeat: repeat-x;
  background-size: contain;
  height: 90px;
  width: 100%;
  margin-top: 48px;
  background-position: 0 0;
  animation-name: slideMedia;
  animation-duration: 400s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes slideMedia {
  100% {
    background-position: -10000px 0;
  }
}
.performance-card {
  margin-top: 56px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 4px;
}
.performance-card__img {
  width: 100%;
}
.performance-card__text {
  line-height: 1.6;
  padding: 16px 16px 32px;
  text-align: justify;
  background: #fafafa;
  font-weight: 500;
  height: 220px;
}

.performance-card.supervision {
  display: flex;
}

.supervision__img {
  width: 435px;
  height: 100%;
  border-radius: 4px 0 0 4px;
}
.supervision__name {
  line-height: 1.3;
  text-align: left;
  font-size: 32px;
}
.supervision__name > span {
  font-size: 0.5em;
}
.supervision__text-box {
  padding: 16px 24px;
  background: #FAFAFA;
  border-radius: 0 4px 4px 0;
  width: 100%;
}
.supervision__text {
  margin-top: 18px;
  line-height: 1.8;
  text-align: justify;
}

/* SP */
@media screen and (max-width: 520px) {
  .performance__decorate {
    margin-top: 56px;
    left: -10px;
    font-size: 44px;
  }
  .performance__sub-heading {
    font-size: 20px;
  }
  .performance__media {
    background-size: cover;
    height: 64px;
    margin-top: 32px;
  }
  .performance-card.supervision {
    flex-direction: column;
  }
  .supervision__img {
    width: 100%;
  }
  .supervision__name {
    font-size: 20px;
  }
  .supervision__name > span {
    font-size: 12px;
  }
  .supervision__text-box {
    padding: 16px 24px;
    background: #FAFAFA;
    border-radius: 0 4px 4px 0;
    width: 100%;
  }
  .supervision__text {
    font-size: 14px;
  }
  .performance-card {
    margin-top: 40px;
  }
  .performance-card__img {
    width: 100%;
  }
  .performance-card__text {
    line-height: 1.8;
    font-size: 14px;
    height: auto;
  }
}
/*====================================
  3.4 Voice
====================================*/
.voice-wrap {
  margin-top: 64px;
}

.voice {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px !important;
  border-radius: 4px;
  width: 730px;
  height: 450px;
  display: flex !important;
  margin: 0 40px;
}
.voice__img {
  border-radius: 4px 0 0 4px;
  height: 100%;
  width: 285px;
  object-fit: cover;
  object-position: center;
}
.voice__text-box {
  text-align: justify;
  position: relative;
  font-weight: 500;
  padding: 24px 24px 40px;
  border-radius: 0 4px 4px 0;
  height: 100%;
  background: #fafafa;
  line-height: 1.6;
}
.voice__name {
  position: absolute;
  right: 24px;
  bottom: 16px;
  font-weight: bold;
}

.slick-list {
  padding: 16px 50px !important;
}

.slick-dots {
  bottom: -40px !important;
}

/* SP */
@media screen and (max-width: 520px) {
  .voice-wrap {
    margin-top: 40px;
  }
  .voice {
    width: 350px;
    height: 800px;
    display: flex !important;
    flex-direction: column;
  }
  .voice__img {
    border-radius: 0 4px 4px 0;
    object-fit: cover;
    object-position: top;
    height: 260px;
    width: 100%;
  }
  .voice__text-box {
    line-height: 1.8;
    height: 600px;
    font-size: 14px;
  }
  .voice__name {
    position: absolute;
    right: 24px;
    bottom: 16px;
    font-weight: bold;
  }
}
/*====================================
  3.5 Flow
====================================*/
.flow__arrow {
  width: 100%;
  margin-top: 96px;
}

.flow-cards {
  display: flex;
  justify-content: space-between;
}

.flow-card {
  border-radius: 10px;
  padding: 32px 24px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  width: 255px;
}
.flow-card__title {
  font-size: 20px;
}
.flow-card__text {
  font-size: 15px;
  font-weight: normal;
  line-height: 1.8;
  margin-top: 24px;
}

/* SP */
@media screen and (max-width: 520px) {
  .flow__sp-wrap {
    display: flex;
    justify-content: flex-start;
    margin-top: 40px;
  }
  .flow__sp-arrow {
    margin-right: 8px;
  }
  .flow-cards {
    justify-content: flex-start;
    flex-direction: column;
  }
  .flow-card {
    margin-top: 16px;
    padding: 24px;
    width: 100%;
  }
  .flow-card:first-of-type {
    margin-top: 0px;
  }
  .flow-card__title {
    margin-top: 8px;
    font-size: 16px;
  }
  .flow-card__text {
    font-size: 14px;
    margin-top: 16px;
  }
  .flow-card__step {
    font-weight: bold;
    color: #F76B0E;
    font-size: 12px;
  }
  .flow-card__step > span {
    font-size: 1.5em;
  }
}
/*====================================
  3.6 Fee
====================================*/
.fee__lead {
  text-align: center;
  position: relative;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.6;
  margin-top: 64px;
}
.fee__lead > span {
  font-size: 0.6em;
}
.fee__lead:after {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2.5px;
  background: #111;
}
.fee__sub-lead {
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 56px;
  font-weight: 500;
}
.fee__important-text {
  margin-top: 16px;
  font-weight: 500;
  font-size: 18px;
}

.fee-card {
  margin-top: 64px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.fee-card__head {
  padding: 4px 0 16px;
  background: #F76B0E;
}
.fee-card__unlimited {
  background: #164F9A;
}
.fee-card__title {
  text-align: center;
  color: #fff;
  font-size: 32px;
  font-weight: 500;
}
.fee-card__title > span {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.7em;
}
.fee-card__text-box {
  padding: 40px 32px;
  background: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fee-card__price-box {
  display: inline-block;
}
.fee-card__price-supplement {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 4px;
}
.fee-card__price-supplement > span {
  color: #F83333;
}
.fee-card__price {
  position: relative;
  font-size: 56px;
  font-weight: bold;
}
.fee-card__price > span {
  font-size: 0.7em;
}
.fee-card__price-tax {
  font-size: 20px;
  text-align: right;
  font-weight: bold;
  margin-top: 16px;
}
.fee-card__price-entrance {
  font-size: 18px;
  margin-top: 32px;
  font-weight: bold;
}
.fee-card__arrow {
  margin: 32px 0 24px;
}
.fee-card__price-box:nth-of-type(2) .fee-card__price-supplement {
  font-size: 32px;
}
.fee-card__price-box:nth-of-type(2) .fee-card__price {
  font-size: 80px;
}
.fee-card__border {
  position: relative;
  width: 100%;
  height: 3px;
  background: #F76B0E;
  border: none;
  margin-top: 56px;
}
.fee-card__border::after {
  content: "Included Service";
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #F76B0E;
  background: #fff;
  font-weight: bold;
  padding: 8px 24px;
  font-size: 18px;
}
.fee-card__service-list {
  margin-top: 48px;
  width: 100%;
}
.fee-card__service-list-item {
  width: 100%;
  font-size: 15px;
  padding-left: 32px;
  text-align: left;
  font-weight: 500;
  margin-top: 32px;
  position: relative;
  list-style: none;
}
.fee-card__service-list-item:first-of-type {
  margin-top: 0;
}
.fee-card__service-list-item::before {
  content: "";
  position: absolute;
  background: url(../images/list.svg);
  background-size: contain;
  top: 50%;
  left: 0;
  height: 24px;
  width: 24px;
  transform: translateY(-50%);
}
.fee-card__service-list-item > span {
  color: #F83333;
}
.fee-card__cv-btn {
  font-size: 20px;
  font-weight: 500;
  margin-top: 40px;
  width: 100%;
  padding: 24px 0;
}

.fee-card-wrap:nth-of-type(2) .fee-card__border {
  background: #164F9A;
}
.fee-card-wrap:nth-of-type(2) .fee-card__border::after {
  color: #164F9A;
}

/* SP */
@media screen and (max-width: 520px) {
  .fee__lead {
    font-size: 18px;
    margin-top: 40px;
  }
  .fee__lead > span {
    font-size: 0.6em;
  }
  .fee__lead:after {
    bottom: -16px;
    height: 2px;
  }
  .fee__sub-lead {
    font-size: 12px;
    margin-top: 32px;
  }
  .fee__important-text {
    font-size: 15px;
    line-height: 1.4;
  }
  .fee-card {
    margin-top: 40px;
  }
  .fee-card__text-box {
    padding: 40px 16px;
  }
  .fee-card__title {
    font-size: 20px;
  }
  .fee-card__price-supplement {
    font-size: 18px;
  }
  .fee-card__price {
    position: relative;
    font-size: 48px;
    font-weight: bold;
  }
  .fee-card__price > span {
    font-size: 0.7em;
  }
  .fee-card__price-tax {
    font-size: 18px;
    margin-top: 8px;
  }
  .fee-card__price-box:nth-of-type(2) .fee-card__price-supplement {
    font-size: 20px;
  }
  .fee-card__price-box:nth-of-type(2) .fee-card__price {
    font-size: 56px;
  }
  .fee-card__border::after {
    padding: 8px;
    font-size: 15px;
  }
  .fee-card__service-list-item {
    line-height: 1.4;
  }
  .fee-card__cv-btn {
    font-size: 15px;
    padding: 16px 0;
  }
}
/*====================================
  3.7 Q&A
====================================*/
.qa-box {
  margin-top: 64px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 10px;
}
.qa-box__inner {
  padding: 24px 40px;
  display: flex;
  align-items: center;
}
.qa-box__inner.align-top {
  align-items: center !important;
}
.qa-box__line {
  margin: 0 auto;
  width: 90%;
  border-bottom: 1px solid #EAEAEA;
}
.qa-box__icon {
  text-align: center;
  font-size: 40px;
  color: #164F9A;
  font-weight: bold;
  width: 8%;
}
.qa-box__text {
  font-weight: bold;
  width: 92%;
  line-height: 1.8;
  text-align: left;
}
.qa-box__inner:nth-of-type(2) {
  align-items: flex-start;
}
.qa-box__inner:nth-of-type(2) .qa-box__icon {
  color: #F76B0E;
}
.qa-box__inner:nth-of-type(2) .qa-box__text {
  font-weight: normal;
}

/* SP */
@media screen and (max-width: 520px) {
  .qa-box {
    margin-top: 40px;
  }
  .qa-box__inner {
    align-items: flex-start;
    padding: 24px 24px 24px 8px;
  }
  .qa-box__inner.align-top {
    align-items: center;
  }
  .qa-box__icon {
    font-size: 32px;
    width: 15%;
  }
  .qa-box__text {
    width: 85%;
    font-size: 14px;
  }
}
/*====================================
  3.8 Gift
====================================*/
.gift .container {
  padding: 96px 0;
}
.gift__sub-heading {
  text-align: center;
  font-weight: bold;
  font-size: 24px;
}
.gift__heading {
  margin-top: 8px;
  font-size: 32px;
  text-align: center;
  line-height: 1.8;
}
.gift__heading > span {
  color: #D11B1B;
}

.gift-box-wrap {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.gift-box {
  text-align: center;
}
.gift-box__img {
  height: 350px;
}
.gift-box__text {
  position: relative;
  font-size: 22px;
  font-weight: 500;
  margin-top: 16px;
  z-index: 1;
}
.gift-box__under-line {
  position: relative;
  margin: 0 auto;
  top: -6px;
  left: 0;
  width: 240px;
  height: 12px;
  background: #F76B0E;
  opacity: 0.6;
  z-index: 0;
}

.gift-box:nth-of-type(1) {
  margin-right: 120px;
}

/* SP */
@media screen and (max-width: 520px) {
  .gift .container {
    padding: 48px 0;
  }
  .gift__sub-heading {
    font-size: 14px;
  }
  .gift__heading {
    font-size: 20px;
    line-height: 1.4;
  }
  .gift-box {
    text-align: center;
  }
  .gift-box__img {
    height: 140px;
  }
  .gift-box__text {
    font-size: 14px;
  }
  .gift-box__under-line {
    width: 100%;
    top: -3px;
    height: 6px;
  }
  .gift-box:nth-of-type(1) {
    margin-right: 16px;
  }
}
/*====================================
  3.9 Form
====================================*/
.form-top {
  position: relative;
  width: 100%;
  padding: 24px 0;
  background: #164F9A;
  text-align: center;
  color: #fff;
  font-weight: 500;
  font-size: 22px;
}
.form-top:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -28px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 35px 0 35px;
  border-color: #164F9A transparent transparent transparent;
}

.form {
  background: #F8F6F2;
  text-align: center;
}
.form__line-text {
  font-size: 20px;
  font-weight: bold;
  line-height: 2;
  margin-top: 48px;
}
.form__line-cta {
  margin-top: 32px;
  width: 600px;
  cursor: pointer;
}

form {
  margin-top: 56px;
}

.form-box {
  width: 920px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin: 0 auto;
}
.form-box__head {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #EAEAEA;
}
.form-box__head > * {
  font-size: 22px;
  font-weight: 500;
  padding: 16px;
}
.form-box__head-left {
  background: #F76B0E;
  color: #fff;
}
.form-box__head-right {
  width: 100%;
  background: #fff;
}
.form-box__body {
  background: #fff;
  padding: 48px 56px;
}
.form-box__body-lead {
  font-size: 20px;
  font-weight: 500;
}
.form-box__body-lead:last-of-type {
  margin-top: 48px;
}
.form-box__body-label {
  font-weight: 500;
  margin-top: 40px;
}
.form-box__body-label > span {
  background: #F24728;
  color: #fff;
  padding: 2px 12px;
  border-radius: 3px;
  margin-right: 8px;
}
.form-box__body-note {
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.6;
}
.form-box__body-label.name {
  margin-top: 0;
}
.form-box__body-input-wrap {
  display: flex;
}
.form-box__body-input {
  margin-top: 24px;
  padding: 8px;
  font-size: 16px;
  width: 100%;
  border: 1px solid #707070;
  background: #fff;
  border-radius: 3px;
}
.form-box__body-input:hover {
  cursor: pointer;
}
.form-box__body-input.date {
  width: 100%;
}
.form-box .date01, .form-box .date02, .form-box .date03 {
  width: 50%;
}
.form-box__body-input.time {
  -webkit-appearance: none;
  width: 100%;
  margin-left: 24px;
}
.form-box .time01, .form-box .time02, .form-box .time03 {
  width: 40%;
}
.form-box__cv-btn-wrap {
  position: relative;
  width: 100%;
  border: none;
  text-align: center;
  margin-top: 80px;
}
.form-box__cv-btn {
  cursor: pointer;
  border: none;
  width: 60%;
  padding: 16px 0;
  font-size: 20px;
  font-weight: bold;
}

.form-box.second {
  margin-top: 56px;
}

.ajax-loader {
  display: block !important;
}

/* SP */
@media screen and (max-width: 520px) {
  .form-top {
    padding: 16px 0;
    font-size: 14px;
  }
  .form-top:after {
    bottom: -16px;
    border-width: 20px 25px 0 25px;
  }
  .form-box {
    width: 100%;
  }
  .form__line-text {
    font-size: 16px;
    font-weight: bold;
    line-height: 2;
    margin-top: 40px;
  }
  .form__line-cta {
    margin-top: 32px;
    width: 100%;
  }
  form {
    margin-top: 40px;
  }
  .form-box__head > * {
    font-size: 14px;
    font-weight: 500;
    padding: 16px 8px;
  }
  .form-box__body {
    background: #fff;
    padding: 32px 16px;
  }
  .form-box__body-lead {
    font-size: 13px;
  }
  .form-box__body-lead:last-of-type {
    margin-top: 32px;
  }
  .form-box__body-label {
    margin-top: 32px;
    font-size: 14px;
  }
  .form-box__body-label > span {
    font-size: 12px;
  }
  .form-box__body-note {
    font-size: 12px;
  }
  .form-box__body-input {
    margin-top: 16px;
    font-size: 14px;
  }
  .form-box__body-input.date {
    width: 100%;
  }
  .form-box .date01, .form-box .date02, .form-box .date03 {
    width: 60%;
  }
  .form-box__body-input.time {
    width: 100%;
    margin-left: 0;
  }
  .form-box .time01, .form-box .time02, .form-box .time03 {
    width: 40%;
    margin-left: 8px;
  }
  .form-box__cv-btn-wrap {
    margin-top: 64px;
  }
  .form-box__cv-btn-wrap::before {
    top: -24px;
    font-size: 15px;
  }
  .form-box__cv-btn {
    padding: 16px 0;
    font-size: 15px;
    width: 100%;
  }
  .form-box:nth-of-type(2) {
    margin-top: 40px;
  }
}
/*====================================

	4. Footer

====================================*/
footer {
  background: #111;
  height: 60px;
}
footer > p {
  text-align: center;
  line-height: 60px;
  color: #fff;
  font-size: 12px;
}

/* SP */
@media screen and (max-width: 520px) {
  footer {
    height: 50px;
  }
  footer > p {
    line-height: 50px;
    font-size: 12px;
  }
}
/*====================================

	5. Famous

====================================*/
.famous .container {
  text-align: center;
}
.famous__lead {
  margin-top: 12px;
}
.famous__lead:first-of-type {
  margin-top: 48px;
}

.famous-list {
  margin-top: 64px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.famous-list-item {
  width: 30%;
}
.famous-list-item__img {
  width: 100%;
}
.famous-list-item__head {
  font-size: 20px;
  line-height: 1.5;
  margin: 24px 0;
}
.famous-list-item__head.two-line {
  margin: 16px 0;
  font-size: 20px;
  line-height: 1.5;
}
.famous-list-item__text {
  line-height: 1.7;
  font-size: 14px;
}

/* SP */
@media screen and (max-width: 520px) {
  .famous__head {
    width: 100%;
  }
  .famous__lead {
    font-size: 14px;
    line-height: 1.7;
  }
  .famous__lead:first-of-type {
    margin-top: 32px;
  }
  .famous-list {
    justify-content: center;
    margin-top: 0;
  }
  .famous-list:last-of-type {
    margin-top: 0;
  }
  .famous-list-item {
    width: 100%;
    margin-top: 32px;
  }
  .famous-list-item__img {
    width: 90%;
  }
  .famous-list-item__head {
    font-size: 16px;
    line-height: 1.5;
    margin: 12px 0;
  }
  .famous-list-item__head.two-line {
    margin: 12px 0;
    font-size: 16px;
    line-height: 1.5;
  }
  .famous-list-item__text {
    line-height: 1.7;
    font-size: 14px;
  }
}
/*====================================

	6. Instructor

====================================*/
.instructor .container-fluid {
  padding: 80px 0 144px;
}

.instructor-slide-wrap {
  position: relative;
}

.instructor-slide-back {
  position: relative;
  top: 50%;
  left: 50%;
}

#instructorSlide {
  background: url(../images/back-logo.svg);
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 40px;
}

#instructorSlide img {
  margin-right: 40px;
}

/* SP */
@media screen and (max-width: 520px) {
  .instructor .container-fluid {
    padding: 56px 0 96px;
  }
  #instructorSlide {
    margin-top: 32px;
    background: url(../images/back-logo.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  #instructorSlide img {
    margin-right: 24px;
  }
}
.wpcf7-spinner {
  display: block;
}

@media screen and (min-width: 521px) {
  .ta-right {
    text-align: right;
  }
}

@media screen and (min-width: 1201px) {
  .mt {
    margin-top: -150px;
  }
  .mt .value-section__sub-title {
    margin-top: 80px;
  }
}

@media screen and (min-width: 1201px) {
  .container.value-second {
    padding-top: 120px;
  }
}