@charset "UTF-8";
/* ==========================================================
Name:
    module.css

Description:
    サイトで共通使用する汎用モジュール及びページ固有のスタイルを記述する
    汎用モジュールは、アルファベット降順(A->Z)に記述する
    ページ固有のスタイルは、ディレクトリ名のアルファベット降順(A->Z)、
    ファイル名のアルファベット降順(A->Z)にそれぞれ記述する

Contents:
    module
    page
    utility
========================================================== */
/* ==========================================================
*
*   module
*
========================================================== */
/* ==========================================================
*
*   page
*
========================================================== */
/* ---------------------------------------------
*   hover-opacity
--------------------------------------------- */
.hover-opacity {
  -webkit-transition: opacity 300ms;
  transition: opacity 300ms;
}
.hover-opacity:hover {
  opacity: 0.8;
} /* ---------------------------------------------
*   width-stop
--------------------------------------------- */
.width-stop {
  min-width: 1260px;
}
@media screen and (max-width: 750px) {
  .width-stop {
    min-width: 320px;
  }
}

/* ---------------------------------------------
*   container-contents
--------------------------------------------- */
.container-contents {
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 750px) {
  .container-contents {
    width: auto;
    margin-right: 4%;
    margin-left: 4%;
  }
}

.container-contents-right {
  max-width: 1170px;
  margin-left: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 750px) {
  .container-contents-right {
    width: auto;
    margin-left: 4%;
  }
}
@media screen and (min-width: 1440px) {
  .container-contents-right {
    max-width: none;
    width: 81.25%;
  }
}

.container-contents-left {
  max-width: 1170px;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 750px) {
  .container-contents-left {
    width: auto;
    margin-right: 4%;
  }
}
@media screen and (min-width: 1440px) {
  .container-contents-left {
    max-width: none;
    width: 81.25%;
  }
}

/* ---------------------------------------------
*   keyvisual
--------------------------------------------- */
.keyvisual {
  position: relative;
  height: 100vh;
  margin-bottom: 70px;
}
@media screen and (max-width: 750px) {
  .keyvisual {
    margin-bottom: 40px;
  }
}
@media screen and (orientation: landscape) and (max-width: 750px) {
  .keyvisual {
    height: 160vw;
  }
}

/*  keyvisual-slide
--------------------------------------------- */
.keyvisual-slide {
  position: relative;
  height: 100%;
}
.keyvisual-slide:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.25);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.keyvisual-slide__image {
  background-size: cover;
  height: 100vh;
}
@media screen and (orientation: landscape) and (max-width: 750px) {
  .keyvisual-slide__image {
    height: 160vw;
  }
}
.keyvisual-slide__image--1 {
  background-image: url(../img/img_keyvisual1.jpg);
}
@media screen and (max-width: 750px) {
  .keyvisual-slide__image--1 {
    background-image: url(../img/sp/img_keyvisual1.jpg);
  }
}
.keyvisual-slide__image--2 {
  background-image: url(../img/img_keyvisual2.jpg);
}
@media screen and (max-width: 750px) {
  .keyvisual-slide__image--2 {
    background-image: url(../img/sp/img_keyvisual2.jpg);
  }
}
.keyvisual-slide__image--3 {
  background-image: url(../img/img_keyvisual3.jpg);
}
@media screen and (max-width: 750px) {
  .keyvisual-slide__image--3 {
    background-image: url(../img/sp/img_keyvisual3.jpg);
  }
}

/*  keyvisual-logo
--------------------------------------------- */
.keyvisual-logo {
  position: absolute;
  top: 64.5%;
  left: 50%;
  z-index: 1;
  width: 350px;
}
@media screen and (max-width: 750px) {
  .keyvisual-logo {
    top: 65%;
    width: 70.1333333333vw;
    height: 59.2vw;
  }
}

/*  keyvisual-icon
--------------------------------------------- */
.keyvisual-icon {
  position: absolute;
  bottom: -6px;
  left: 50.5%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 750px) {
  .keyvisual-icon {
    bottom: 0.9333333333vw;
  }
}
.keyvisual-icon__item {
  padding-top: 60px;
}
.keyvisual-icon__item-inner {
  position: absolute;
  top: 0;
  left: 50%;
  width: 20px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 750px) {
  .keyvisual-icon__item-inner {
    width: 15px;
    height: 30px;
    margin-left: -2vw;
    border-radius: 30px;
  }
}
.keyvisual-icon__item-inner:before {
  content: "";
  position: absolute;
  top: 3px;
  left: 50%;
  width: 2px;
  height: 10px;
  background-color: #fff;
  -webkit-animation: sdb 2s infinite;
          animation: sdb 2s infinite;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 750px) {
  .keyvisual-icon__item-inner:before {
    top: 0.6666666667vw;
    width: 2px;
    height: 1.3333333333vw;
    -webkit-animation: sdbSP 2s infinite;
            animation: sdbSP 2s infinite;
  }
}

@-webkit-keyframes sdb {
  0% {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(-50%, 15px);
            transform: translate(-50%, 15px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes sdb {
  0% {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(-50%, 15px);
            transform: translate(-50%, 15px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes sdbSP {
  0% {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(-50%, 7px);
            transform: translate(-50%, 7px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdbSP {
  0% {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(-50%, 7px);
            transform: translate(-50%, 7px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* ---------------------------------------------
*   main-contents
--------------------------------------------- */
/* ---------------------------------------------
*   section
--------------------------------------------- */
.section--about {
  margin-bottom: 293px;
}
@media screen and (max-width: 750px) {
  .section--about {
    margin-bottom: 165px;
  }
}
@media screen and (max-width: 750px) {
  .section--about .section-keyvisual {
    background: url(../img/sp/img_content1.jpg) 50% 50% repeat;
    background-size: 100% auto;
  }
}
.section--curriculum1 {
  position: relative;
}
.section--curriculum1:before {
  content: "";
  position: absolute;
  top: -150px;
  right: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 260px;
  background: url(../img/bg_red.png) 0 0 repeat;
}
@media screen and (max-width: 750px) {
  .section--curriculum1:before {
    top: -20vw;
    height: 33.0666666667vw;
  }
}
@media screen and (max-width: 750px) {
  .section--curriculum1 .section-keyvisual {
    height: 400px;
    background: url(../img/sp/img_content2.jpg) 50% 50% repeat;
    background-size: 100% auto;
  }
}
.section--curriculum1 .section__title {
  text-align: right;
}
@media screen and (max-width: 750px) {
  .section--curriculum1 .section__title-en {
    padding-right: 2.6666666667vw;
  }
}
.section--curriculum2 {
  margin-bottom: 100px;
}
@media screen and (max-width: 750px) {
  .section--curriculum2 {
    margin-bottom: 25.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  .section--curriculum2 .section-keyvisual {
    height: 62vw;
    background: url(../img/sp/img_content3.jpg) 50% 50% repeat;
    background-size: 100% auto;
  }
}
@media screen and (max-width: 750px) {
  .section--curriculum2 .section__title-en {
    margin-left: -1.3333333333vw;
  }
}
.section__title {
  max-width: 960px;
  z-index: 99;
  margin-top: -48px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 750px) {
  .section__title {
    margin-top: -6.4vw;
    margin-right: 9.3333333333%;
    margin-left: 9.3333333333%;
  }
}
.section__title-en {
  display: block;
  line-height: 1;
  color: #e50012;
  font-size: 5.9rem;
  font-family: "Righteous", cursive;
}
@media screen and (max-width: 750px) {
  .section__title-en {
    font-size: 13.9vw;
    letter-spacing: -0.05em;
    margin-bottom: 1.0666666667vw;
  }
}
.section__title-jp {
  display: block;
  line-height: 1;
  color: #e50012;
  font-size: 1.5625rem;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .section__title-jp {
    font-size: 3.3333333333vw;
  }
}
.section__title-caption {
  display: block;
  overflow: hidden;
  width: 303px;
  height: 0;
  padding-top: 57px;
  background: url(../img/logo_kachimeshi_school.png) 0 0 no-repeat;
  background-size: cover;
  margin-top: 17px;
}
@media screen and (max-width: 750px) {
  .section__title-caption {
    width: 49.6721311475%;
    padding-top: 7.6vw;
    margin-top: 2.2666666667vw;
    background-size: 100% auto;
  }
}

/*  section-keyvisual
--------------------------------------------- */
.section-keyvisual {
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  z-index: 1;
  width: 86.1111111111%;
  height: 500px;
  border-radius: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 750px) {
  .section-keyvisual {
    width: auto;
    margin-right: 4%;
    margin-left: 4%;
  }
}
@media screen and (min-width: 1440px) {
  .section-keyvisual {
    height: 34.7222222222vw;
  }
}
@media screen and (max-width: 750px) {
  .section-keyvisual {
    background-size: cover;
    height: 66.6666666667vw;
    border-radius: 2vw;
    margin-right: 4%;
    margin-left: 4%;
    background: transparent;
  }
}
.section-keyvisual .parallax-slider {
  top: 0;
  left: 0;
}

.parallax-mirror {
  z-index: 1 !important;
  border-radius: 15px;
}

/*  section-about
--------------------------------------------- */
.section-about__title {
  text-align: center;
  margin-bottom: 55px;
}
@media screen and (max-width: 750px) {
  .section-about__title {
    margin-bottom: 12vw;
  }
}
.section-about__title-caption {
  position: relative;
  display: inline-block;
  line-height: 1.2;
  color: #e50012;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 5px;
}
@media screen and (max-width: 750px) {
  .section-about__title-caption {
    font-size: 5.3333333333vw;
    margin-bottom: 3.3333333333vw;
  }
}
.section-about__title-caption:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  display: block;
  width: 26px;
  height: 38px;
  background: url(../img/icon_red_left.png) 0 0 no-repeat;
  background-size: 100% auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 750px) {
  .section-about__title-caption:before {
    left: -4vw;
    width: 3.4666666667vw;
    height: 5.0666666667vw;
  }
}
.section-about__title-caption:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  display: block;
  width: 26px;
  height: 38px;
  background: url(../img/icon_red_right.png) 0 0 no-repeat;
  background-size: 100% auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 750px) {
  .section-about__title-caption:after {
    right: -4vw;
    width: 3.4666666667vw;
    height: 5.0666666667vw;
  }
}
.section-about__title-main {
  display: block;
  line-height: 1.2;
  color: #e50012;
  font-size: 3.4375rem;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .section-about__title-main {
    font-size: 10.6666666667vw;
  }
}
.section-about__content {
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 750px) {
  .section-about__content {
    text-align: left;
    margin-bottom: 11.3333333333vw;
  }
}
.section-about__content-text {
  line-height: 2.2;
  color: #333;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .section-about__content-text {
    line-height: 2;
  }
}

/* -- section-about-kachimeshi -- */
.section-about-kachimeshi {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-right: 290px;
  padding-left: 290px;
}
@media screen and (max-width: 750px) {
  .section-about-kachimeshi {
    display: block;
    padding-right: 0;
    padding-left: 0;
  }
}
.section-about-kachimeshi:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 11px;
  display: block;
  width: 255px;
  height: 34px;
  background: url(../img/logo_line.png) 0 0 no-repeat;
  background-size: 100% auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 750px) {
  .section-about-kachimeshi:before {
    top: 0;
    width: 25.3333333333vw;
    height: 10.2666666667vw;
    background: url(../img/sp/logo_line.png) 0 0 no-repeat;
    background-size: 100% auto;
    -webkit-transform: none;
            transform: none;
    background-position: center;
  }
}
.section-about-kachimeshi:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  display: block;
  width: 255px;
  height: 34px;
  background: url(../img/logo_line.png) 0 0 no-repeat;
  background-size: 100% auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 750px) {
  .section-about-kachimeshi:after {
    top: 0;
    width: 25.3333333333vw;
    height: 10.2666666667vw;
    background: url(../img/sp/logo_line.png) 0 0 no-repeat;
    background-size: 100% auto;
    -webkit-transform: none;
            transform: none;
    background-position: center;
  }
}
.section-about-kachimeshi__title {
  display: block;
  overflow: hidden;
  width: 233px;
  height: 0;
  padding-top: 69px;
  background: url(../img/logo_kachimeshi.png) 0 0 no-repeat;
  background-size: 100% auto;
  margin-right: 30px;
}
@media screen and (max-width: 750px) {
  .section-about-kachimeshi__title {
    width: 31.0666666667vw;
    padding-top: 9.2vw;
    margin-right: auto;
    margin-bottom: 8vw;
    margin-left: auto;
  }
}
.section-about-kachimeshi__content {
  width: calc(100% - 233px - 30px);
}
@media screen and (max-width: 750px) {
  .section-about-kachimeshi__content {
    width: auto;
  }
}
.section-about-kachimeshi__content-text {
  letter-spacing: -0.02em;
  color: #e50012;
  font-weight: bold;
}

/*  section-curriculum1
--------------------------------------------- */
.section-curriculum1__title {
  margin-bottom: 60px;
}
@media screen and (max-width: 750px) {
  .section-curriculum1__title {
    margin-right: 4%;
    margin-bottom: 8vw;
  }
}
.section-curriculum1__title-item {
  line-height: 1.3;
  color: #e50012;
  font-weight: bold;
  font-size: 2.5rem;
}
@media screen and (max-width: 750px) {
  .section-curriculum1__title-item {
    line-height: 1.4;
    font-size: 6.6666666667vw;
  }
}

/* -- section-curriculum1-content -- */
.section-curriculum1-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 120px;
}
@media screen and (max-width: 750px) {
  .section-curriculum1-content {
    padding-bottom: 19.3333333333vw;
  }
}
.section-curriculum1-content__image {
  width: 620px;
}
@media screen and (min-width: 1440px) {
  .section-curriculum1-content__image {
    width: 43.0555555556vw;
  }
}
@media screen and (max-width: 750px) {
  .section-curriculum1-content__image {
    width: auto;
  }
}
.section-curriculum1-content__image:nth-child(n+2) {
  margin-top: 30px;
}
@media screen and (min-width: 1440px) {
  .section-curriculum1-content__image img {
    max-width: none;
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .section-curriculum1-content__texts {
    margin-right: 4%;
  }
}
.section-curriculum1-content__texts-item {
  line-height: 1.8;
}
.section-curriculum1-content__texts-item:nth-child(n+2) {
  margin-top: 25px;
}
@media screen and (max-width: 750px) {
  .section-curriculum1-content__texts-item:nth-child(n+2) {
    margin-top: 3.6805555556vw;
  }
}

/* -- section-curriculum1-content-inner -- */
.section-curriculum1-content-inner {
  width: 38.4615384615%;
}
@media screen and (max-width: 750px) {
  .section-curriculum1-content-inner {
    width: auto;
  }
}

/* -- section-curriculum1-image -- */
/* -- curriculum1-icon -- */
.curriculum1-icon {
  position: relative;
}
.curriculum1-icon:after {
  content: "";
  position: absolute;
  top: -270px;
  left: 50%;
  z-index: 0;
  display: block;
  width: 66.2px;
  height: 119.63px;
  background: url(../img/icon_skater_right.png) 50% 50% repeat-x;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-left: -216px;
}
@media screen and (max-width: 750px) {
  .curriculum1-icon:after {
    width: 34px;
    height: 60px;
    left: 0;
    top: -125px;
    background-size: contain;
  }
}

/*  section-curriculum2
--------------------------------------------- */
.section-curriculum2__title {
  text-align: right;
  margin-bottom: 40px;
}
@media screen and (max-width: 750px) {
  .section-curriculum2__title {
    margin-left: 4%;
    margin-bottom: 8vw;
  }
}
.section-curriculum2__title-item {
  color: #e50012;
  font-size: 2.5rem;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .section-curriculum2__title-item {
    font-size: 6.6666666667vw;
  }
}

/* -- section-curriculum2-content-inner -- */
.section-curriculum2-content-inner {
  width: 38.4615384615%;
}
@media screen and (max-width: 750px) {
  .section-curriculum2-content-inner {
    width: auto;
  }
}

/* -- section-curriculum2-image -- */
/* -- section-curriculum2-content -- */
.section-curriculum2-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.section-curriculum2-content__prof {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 50px;
}
@media screen and (max-width: 750px) {
  .section-curriculum2-content__prof {
    margin-left: 4%;
    margin-bottom: 13.3333333333vw;
  }
}
.section-curriculum2-content__prof-main {
  text-align: right;
  width: calc(100% - 215px - 10px);
  margin-right: 10px;
  margin-bottom: -8px;
}
@media screen and (max-width: 750px) {
  .section-curriculum2-content__prof-main {
    width: calc(53.33333% - 2.66667vw);
    margin-right: 2.6666666667vw;
    margin-bottom: -1.3333333333vw;
  }
}
.section-curriculum2-content__prof-main-text {
  line-height: 1.4;
  letter-spacing: -0.06em;
  color: #e50012;
  font-size: 0.875rem;
  margin-bottom: 15px;
}
@media screen and (max-width: 750px) {
  .section-curriculum2-content__prof-main-text {
    letter-spacing: -0.08em;
    font-size: 2.9333333333vw;
    margin-bottom: 1.3333333333vw;
  }
}
.section-curriculum2-content__prof-main-name {
  color: #e50012;
  font-weight: bold;
  font-size: 1.5625rem;
}
@media screen and (max-width: 750px) {
  .section-curriculum2-content__prof-main-name {
    font-size: 5.0666666667vw;
  }
}
.section-curriculum2-content__prof-main-name-small {
  vertical-align: bottom;
  font-size: 1.25rem;
}
@media screen and (max-width: 750px) {
  .section-curriculum2-content__prof-main-name-small {
    font-size: 4.2666666667vw;
  }
}
.section-curriculum2-content__prof-image {
  width: 215px;
}
@media screen and (max-width: 750px) {
  .section-curriculum2-content__prof-image {
    width: 46.6666666667%;
  }
}
.section-curriculum2-content__image {
  position: relative;
  width: 620px;
}
@media screen and (min-width: 1440px) {
  .section-curriculum2-content__image {
    width: 43.0555555556vw;
  }
}
@media screen and (max-width: 750px) {
  .section-curriculum2-content__image {
    width: auto;
  }
}
.section-curriculum2-content__image:nth-child(n+2) {
  margin-top: 30px;
}
@media screen and (max-width: 750px) {
  .section-curriculum2-content__image:nth-child(n+2) {
    margin-top: 9.3333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .section-curriculum2-content__image img {
    max-width: none;
    width: 100%;
  }
}
.section-curriculum2-content__image-note {
  position: absolute;
  top: -22px;
  right: -15px;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: #e50012;
  width: 152px;
  height: 152px;
  border-radius: 50%;
}
@media screen and (max-width: 750px) {
  .section-curriculum2-content__image-note {
    top: -8.2666666667vw;
    right: 0px;
    width: 24vw;
    height: 24vw;
  }
}
.section-curriculum2-content__image-note-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  width: 100%;
  height: 100%;
  text-align: center;
  font-weight: bold;
  font-size: 1.0625rem;
}
@media screen and (max-width: 750px) {
  .section-curriculum2-content__image-note-inner {
    font-size: 2.6666666667vw;
  }
}
@media screen and (max-width: 750px) {
  .section-curriculum2-content__texts {
    margin-left: 4%;
  }
}
.section-curriculum2-content__texts-item {
  line-height: 1.7;
}
.section-curriculum2-content__texts-item:nth-child(n+2) {
  margin-top: 28px;
}
@media screen and (max-width: 750px) {
  .section-curriculum2-content__texts-item:nth-child(n+2) {
    margin-top: 7.3333333333vw;
  }
}

/*  section-interview
--------------------------------------------- */
.section-interview {
  margin-top: 180px;
  margin-bottom: 155px;
}
@media screen and (max-width: 750px) {
  .section-interview {
    margin-top: 38.6666666667vw;
    margin-bottom: 26vw;
  }
}
@media screen and (max-width: 750px) {
  .section-interview__head {
    margin-right: 4%;
  }
}
.section-interview__head-name {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 15px;
}
@media screen and (max-width: 750px) {
  .section-interview__head-name {
    margin-bottom: 6vw;
  }
}
.section-interview__head-name-title {
  line-height: 1;
  padding-bottom: 2px;
  border-bottom: 1px solid #e50012;
  color: #e50012;
  font-style: italic;
  font-size: 2.1875rem;
  font-family: "Righteous", cursive;
  margin-right: 23px;
  margin-bottom: 5px;
}
@media screen and (max-width: 750px) {
  .section-interview__head-name-title {
    padding-bottom: 0.2666666667vw;
    font-size: 6.9333333333vw;
    margin-right: 5.3333333333vw;
    margin-bottom: 0.6666666667vw;
  }
}
.section-interview__head-name-main-caption {
  line-height: 1.2;
  display: block;
  color: #e50012;
  margin-bottom: 3px;
}
@media screen and (max-width: 750px) {
  .section-interview__head-name-main-caption {
    font-size: 3.2vw;
  }
}
.section-interview__head-name-main-item {
  line-height: 1.2;
  display: block;
  color: #e50012;
  font-weight: bold;
  font-size: 2.8125rem;
}
@media screen and (max-width: 750px) {
  .section-interview__head-name-main-item {
    font-size: 8.9333333333vw;
  }
}
.section-interview__head-name-main-item-small {
  color: #e50012;
  font-weight: bold;
  font-size: 1.875rem;
}
@media screen and (max-width: 750px) {
  .section-interview__head-name-main-item-small {
    font-size: 6vw;
  }
}
.section-interview__head-title {
  line-height: 1.6;
  color: #e50012;
  font-weight: bold;
  font-size: 2.1875rem;
  margin-bottom: 60px;
}
@media screen and (max-width: 750px) {
  .section-interview__head-title {
    font-size: 6.9333333333vw;
    margin-bottom: 8vw;
  }
}

.ie .section-interview__head-name-title {
  margin-bottom: 14px;
}

/* -- section-interview-inner -- */
.section-interview-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* -- section-interview-inner-frame -- */
.section-interview-inner-frame--content {
  width: 38.4615384615%;
}
@media screen and (max-width: 750px) {
  .section-interview-inner-frame--content {
    width: auto;
  }
}

/* -- section-interview-content -- */
.section-interview-content__image {
  width: 620px;
}
@media screen and (min-width: 1440px) {
  .section-interview-content__image {
    width: 43.0555555556vw;
  }
}
@media screen and (max-width: 750px) {
  .section-interview-content__image {
    width: auto;
  }
}
.section-interview-content__image:nth-child(n+2) {
  margin-top: 20px;
}
@media screen and (max-width: 750px) {
  .section-interview-content__image:nth-child(n+2) {
    margin-top: 8.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .section-interview-content__image img {
    max-width: none;
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .section-interview-content__texts {
    margin-right: 4%;
  }
}
.section-interview-content__texts-item {
  line-height: 1.7;
}
.section-interview-content__texts-item:nth-child(n+2) {
  margin-top: 25px;
}
@media screen and (max-width: 750px) {
  .section-interview-content__texts-item:nth-child(n+2) {
    margin-top: 7.3333333333vw;
  }
}
.section-interview-content__profile {
  margin-top: 55px;
}
@media screen and (max-width: 750px) {
  .section-interview-content__profile {
    margin-top: 8vw;
    margin-right: 4%;
  }
}
.section-interview-content__profile-title {
  position: relative;
  color: #000;
  font-style: italic;
  font-size: 1.375rem;
  font-family: "Righteous", cursive;
  margin-bottom: 15px;
}
@media screen and (max-width: 750px) {
  .section-interview-content__profile-title {
    margin-bottom: 1.3333333333vw;
  }
}
.section-interview-content__profile-title:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.section-interview-content__profile-title-inner {
  padding-right: 13px;
  background-color: #fff;
}
@media screen and (max-width: 750px) {
  .section-interview-content__profile-title-inner {
    padding-right: 2vw;
    font-size: 5.8666666667vw;
  }
}
.section-interview-content__profile-text {
  line-height: 1.8;
  text-align: justify;
  font-size: 0.875rem;
}

/* ---------------------------------------------
*   product-area
--------------------------------------------- */
.product-area {
  position: relative;
  margin-top: 190px;
}
@media screen and (max-width: 750px) {
  .product-area {
    margin-top: 20vw;
  }
}
.product-area:before {
  content: "";
  position: absolute;
  top: 45px;
  left: 0;
  right: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 235px;
  background-color: #e50012;
  border-radius: 15px;
}
@media screen and (max-width: 750px) {
  .product-area:before {
    top: 6vw;
    height: 102.6666666667vw;
    border-radius: 2vw;
  }
}
.product-area__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 750px) {
  .product-area__list {
    display: block;
    margin-right: 5.7971014493%;
    margin-left: 5.7971014493%;
  }
}
.product-area__list-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 75px;
}
@media screen and (max-width: 750px) {
  .product-area__list-item {
    margin-right: 0;
  }
}
.product-area__list-item--1 {
  width: 423px;
}
@media screen and (max-width: 750px) {
  .product-area__list-item--1 {
    width: auto;
  }
}
.product-area__list-item--1 .product-area__list-image {
  width: 196px;
}
@media screen and (max-width: 750px) {
  .product-area__list-item--1 .product-area__list-image {
    width: 40%;
  }
}
.product-area__list-item--1 .product-area__list-content {
  width: calc(100% - 197px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 750px) {
  .product-area__list-item--1 .product-area__list-content {
    width: 60%;
  }
}
.product-area__list-item--2 {
  width: 400px;
}
@media screen and (max-width: 750px) {
  .product-area__list-item--2 {
    width: auto;
  }
}
.product-area__list-item--2 .product-area__list-image {
  width: 164px;
}
@media screen and (max-width: 750px) {
  .product-area__list-item--2 .product-area__list-image {
    width: 40.5797101449%;
  }
}
.product-area__list-item--2 .product-area__list-content {
  width: calc(100% - 177px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 750px) {
  .product-area__list-item--2 .product-area__list-content {
    width: 59.42029%;
  }
}
.product-area__list-item:last-child {
  margin-right: 0;
}
@media screen and (max-width: 750px) {
  .product-area__list-item:nth-child(n+2) {
    margin-top: 10vw;
  }
}
.product-area__list-image {
  position: relative;
}
.product-area__list-image-text {
  position: absolute;
  top: 20px;
  right: -219px;
  width: 220px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  letter-spacing: -0.03em;
  background-color: #bba00a;
  padding: 8px 0 8px 10px;
  border-radius: 0 20px 20px 0;
  color: #fff;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .product-area__list-image-text {
    top: 3.6vw;
    right: -44.4vw;
    padding: 2.2666666667vw 0 2.2666666667vw 1.3333333333vw;
    width: 44.6666666667vw;
    font-size: 2.9333333333vw;
  }
}
.product-area__list-content {
  padding-top: 85px;
  padding-left: 15px;
  padding-right: 8px;
  color: #fff;
  text-align: justify;
}
@media screen and (max-width: 750px) {
  .product-area__list-content {
    padding-top: 14.6666666667vw;
    padding-right: 4.9180327869%;
    padding-left: 4.9180327869%;
  }
}
.product-area__list-content-title {
  font-weight: bold;
  font-size: 1.125rem;
  margin-bottom: 8px;
}
@media screen and (max-width: 750px) {
  .product-area__list-content-title {
    font-size: 3.3333333333vw;
    margin-bottom: 1.0666666667vw;
  }
}
.product-area__list-content-text {
  font-size: 0.8125rem;
}
@media screen and (max-width: 750px) {
  .product-area__list-content-text {
    font-size: 2.6666666667vw;
  }
}

/* ---------------------------------------------
*   logo-area
--------------------------------------------- */
.logo-area__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 750px) {
  .logo-area__list {
    display: block;
  }
}
.logo-area__list-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  margin-right: 190px;
}
@media screen and (max-width: 750px) {
  .logo-area__list-item {
    display: block;
    margin-right: auto;
    margin-left: auto;
  }
}
.logo-area__list-item:last-child {
  margin-right: 0;
}
@media screen and (max-width: 750px) {
  .logo-area__list-item:last-child {
    margin-right: auto;
  }
}
.logo-area__list-item--1 {
  width: 225px;
}
@media screen and (max-width: 750px) {
  .logo-area__list-item--1 {
    width: 51.7333333333%;
  }
}
.logo-area__list-item--2 {
  width: 299px;
}
@media screen and (max-width: 750px) {
  .logo-area__list-item--2 {
    width: 59.8666666667%;
  }
}
@media screen and (max-width: 750px) {
  .logo-area__list-item:nth-child(n+2) {
    margin-top: 26.6666666667vw;
  }
}
.logo-area__list-item-link {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.logo-area__list-item-link img {
  width: 100%;
}

/* ---------------------------------------------
*   JS
--------------------------------------------- */
.js-fadein {
  position: relative;
  top: 20px;
  opacity: 0;
}

.js-right-fade {
  opacity: 0;
}
.js-right-fade--in {
  opacity: 1;
  -webkit-animation: rightFade 2s ease;
          animation: rightFade 2s ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes rightFade {
  0% {
    -webkit-transform: translateX(30%);
            transform: translateX(30%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes rightFade {
  0% {
    -webkit-transform: translateX(30%);
            transform: translateX(30%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
.js-left-fade {
  opacity: 0;
}
.js-left-fade--in {
  opacity: 1;
  -webkit-animation: leftFade 2s ease;
          animation: leftFade 2s ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes leftFade {
  0% {
    -webkit-transform: translateX(-30%);
            transform: translateX(-30%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes leftFade {
  0% {
    -webkit-transform: translateX(-30%);
            transform: translateX(-30%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
.js-anime {
  opacity: 0;
}
.js-anime.js-anime-on {
  opacity: 1;
  -webkit-animation: kvAnime 2s ease;
          animation: kvAnime 2s ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes kvAnime {
  0% {
    -webkit-transform: translate(-50%, -30%);
            transform: translate(-50%, -30%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 1;
  }
}

@keyframes kvAnime {
  0% {
    -webkit-transform: translate(-50%, -30%);
            transform: translate(-50%, -30%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 1;
  }
}
/* ---------------------------------------------
*   anchor-area
--------------------------------------------- */
.anchor-area {
  border: none;
  margin-top: -140px;
  margin-bottom: 0;
  padding-top: 140px;
}
@media screen and (max-width: 750px) {
  .anchor-area {
    margin-top: -40px;
    padding-top: 40px;
  }
}

/* ==========================================================
*
*   utility
*
========================================================== */
/* ---------------------------------------------
*   margin-top
--------------------------------------------- */
.mgt-pc--0 {
  margin-top: 0 !important;
}

.mgt-pc--5 {
  margin-top: 5px !important;
}

.mgt-pc--10 {
  margin-top: 10px !important;
}

.mgt-pc--15 {
  margin-top: 15px !important;
}

.mgt-pc--20 {
  margin-top: 20px !important;
}

.mgt-pc--25 {
  margin-top: 25px !important;
}

.mgt-pc--30 {
  margin-top: 30px !important;
}

.mgt-pc--35 {
  margin-top: 35px !important;
}

.mgt-pc--40 {
  margin-top: 40px !important;
}

.mgt-pc--45 {
  margin-top: 45px !important;
}

.mgt-pc--50 {
  margin-top: 50px !important;
}

.mgt-pc--55 {
  margin-top: 55px !important;
}

.mgt-pc--60 {
  margin-top: 60px !important;
}

.mgt-pc--65 {
  margin-top: 65px !important;
}

.mgt-pc--70 {
  margin-top: 70px !important;
}

.mgt-pc--75 {
  margin-top: 75px !important;
}

.mgt-pc--80 {
  margin-top: 80px !important;
}

.mgt-pc--85 {
  margin-top: 85px !important;
}

.mgt-pc--90 {
  margin-top: 90px !important;
}

.mgt-pc--95 {
  margin-top: 95px !important;
}

.mgt-pc--100 {
  margin-top: 100px !important;
}

.mgt-pc--105 {
  margin-top: 105px !important;
}

.mgt-pc--110 {
  margin-top: 110px !important;
}

.mgt-pc--115 {
  margin-top: 115px !important;
}

.mgt-pc--120 {
  margin-top: 120px !important;
}

.mgt-pc--125 {
  margin-top: 125px !important;
}

.mgt-pc--130 {
  margin-top: 130px !important;
}

.mgt-pc--135 {
  margin-top: 135px !important;
}

.mgt-pc--140 {
  margin-top: 140px !important;
}

.mgt-pc--145 {
  margin-top: 145px !important;
}

.mgt-pc--150 {
  margin-top: 150px !important;
}

.mgt-pc--155 {
  margin-top: 155px !important;
}

.mgt-pc--160 {
  margin-top: 160px !important;
}

.mgt-pc--165 {
  margin-top: 165px !important;
}

.mgt-pc--170 {
  margin-top: 170px !important;
}

.mgt-pc--175 {
  margin-top: 175px !important;
}

.mgt-pc--180 {
  margin-top: 180px !important;
}

.mgt-pc--185 {
  margin-top: 185px !important;
}

.mgt-pc--190 {
  margin-top: 190px !important;
}

.mgt-pc--195 {
  margin-top: 195px !important;
}

.mgt-pc--200 {
  margin-top: 200px !important;
}

.mgt-pc--205 {
  margin-top: 205px !important;
}

.mgt-pc--210 {
  margin-top: 210px !important;
}

.mgt-pc--215 {
  margin-top: 215px !important;
}

.mgt-pc--220 {
  margin-top: 220px !important;
}

.mgt-pc--225 {
  margin-top: 225px !important;
}

.mgt-pc--230 {
  margin-top: 230px !important;
}

.mgt-pc--235 {
  margin-top: 235px !important;
}

.mgt-pc--240 {
  margin-top: 240px !important;
}

.mgt-pc--245 {
  margin-top: 245px !important;
}

.mgt-pc--250 {
  margin-top: 250px !important;
}

@media screen and (max-width: 750px) {
  .mgt-sp--0 {
    margin-top: 0 !important;
  }
  .mgt-sp--5 {
    margin-top: 0.6666666667vw !important;
  }
  .mgt-sp--10 {
    margin-top: 1.3333333333vw !important;
  }
  .mgt-sp--15 {
    margin-top: 2vw !important;
  }
  .mgt-sp--20 {
    margin-top: 2.6666666667vw !important;
  }
  .mgt-sp--25 {
    margin-top: 3.3333333333vw !important;
  }
  .mgt-sp--30 {
    margin-top: 4vw !important;
  }
  .mgt-sp--35 {
    margin-top: 4.6666666667vw !important;
  }
  .mgt-sp--40 {
    margin-top: 5.3333333333vw !important;
  }
  .mgt-sp--45 {
    margin-top: 6vw !important;
  }
  .mgt-sp--50 {
    margin-top: 6.6666666667vw !important;
  }
  .mgt-sp--55 {
    margin-top: 7.3333333333vw !important;
  }
  .mgt-sp--60 {
    margin-top: 8vw !important;
  }
  .mgt-sp--65 {
    margin-top: 8.6666666667vw !important;
  }
  .mgt-sp--70 {
    margin-top: 9.3333333333vw !important;
  }
  .mgt-sp--75 {
    margin-top: 10vw !important;
  }
  .mgt-sp--80 {
    margin-top: 10.6666666667vw !important;
  }
  .mgt-sp--85 {
    margin-top: 11.3333333333vw !important;
  }
  .mgt-sp--90 {
    margin-top: 12vw !important;
  }
  .mgt-sp--95 {
    margin-top: 12.6666666667vw !important;
  }
  .mgt-sp--100 {
    margin-top: 13.3333333333vw !important;
  }
  .mgt-sp--105 {
    margin-top: 14vw !important;
  }
  .mgt-sp--110 {
    margin-top: 14.6666666667vw !important;
  }
  .mgt-sp--115 {
    margin-top: 15.3333333333vw !important;
  }
  .mgt-sp--120 {
    margin-top: 16vw !important;
  }
  .mgt-sp--125 {
    margin-top: 16.6666666667vw !important;
  }
  .mgt-sp--130 {
    margin-top: 17.3333333333vw !important;
  }
  .mgt-sp--135 {
    margin-top: 18vw !important;
  }
  .mgt-sp--140 {
    margin-top: 18.6666666667vw !important;
  }
  .mgt-sp--145 {
    margin-top: 19.3333333333vw !important;
  }
  .mgt-sp--150 {
    margin-top: 20vw !important;
  }
  .mgt-sp--155 {
    margin-top: 20.6666666667vw !important;
  }
  .mgt-sp--160 {
    margin-top: 21.3333333333vw !important;
  }
  .mgt-sp--165 {
    margin-top: 22vw !important;
  }
  .mgt-sp--170 {
    margin-top: 22.6666666667vw !important;
  }
  .mgt-sp--175 {
    margin-top: 23.3333333333vw !important;
  }
  .mgt-sp--180 {
    margin-top: 24vw !important;
  }
  .mgt-sp--185 {
    margin-top: 24.6666666667vw !important;
  }
  .mgt-sp--190 {
    margin-top: 25.3333333333vw !important;
  }
  .mgt-sp--195 {
    margin-top: 26vw !important;
  }
  .mgt-sp--200 {
    margin-top: 26.6666666667vw !important;
  }
  .mgt-sp--205 {
    margin-top: 27.3333333333vw !important;
  }
  .mgt-sp--210 {
    margin-top: 28vw !important;
  }
  .mgt-sp--215 {
    margin-top: 28.6666666667vw !important;
  }
  .mgt-sp--220 {
    margin-top: 29.3333333333vw !important;
  }
  .mgt-sp--225 {
    margin-top: 30vw !important;
  }
  .mgt-sp--230 {
    margin-top: 30.6666666667vw !important;
  }
  .mgt-sp--235 {
    margin-top: 31.3333333333vw !important;
  }
  .mgt-sp--240 {
    margin-top: 32vw !important;
  }
  .mgt-sp--245 {
    margin-top: 32.6666666667vw !important;
  }
  .mgt-sp--250 {
    margin-top: 33.3333333333vw !important;
  }
}
/* ---------------------------------------------
*   margin-bottom
--------------------------------------------- */
.mgb-pc--0 {
  margin-bottom: 0 !important;
}

.mgb-pc--5 {
  margin-bottom: 5px !important;
}

.mgb-pc--10 {
  margin-bottom: 10px !important;
}

.mgb-pc--15 {
  margin-bottom: 15px !important;
}

.mgb-pc--20 {
  margin-bottom: 20px !important;
}

.mgb-pc--25 {
  margin-bottom: 25px !important;
}

.mgb-pc--30 {
  margin-bottom: 30px !important;
}

.mgb-pc--35 {
  margin-bottom: 35px !important;
}

.mgb-pc--40 {
  margin-bottom: 40px !important;
}

.mgb-pc--45 {
  margin-bottom: 45px !important;
}

.mgb-pc--50 {
  margin-bottom: 50px !important;
}

.mgb-pc--55 {
  margin-bottom: 55px !important;
}

.mgb-pc--60 {
  margin-bottom: 60px !important;
}

.mgb-pc--65 {
  margin-bottom: 65px !important;
}

.mgb-pc--70 {
  margin-bottom: 70px !important;
}

.mgb-pc--75 {
  margin-bottom: 75px !important;
}

.mgb-pc--80 {
  margin-bottom: 80px !important;
}

.mgb-pc--85 {
  margin-bottom: 85px !important;
}

.mgb-pc--90 {
  margin-bottom: 90px !important;
}

.mgb-pc--95 {
  margin-bottom: 95px !important;
}

.mgb-pc--100 {
  margin-bottom: 100px !important;
}

.mgb-pc--105 {
  margin-bottom: 105px !important;
}

.mgb-pc--110 {
  margin-bottom: 110px !important;
}

.mgb-pc--115 {
  margin-bottom: 115px !important;
}

.mgb-pc--120 {
  margin-bottom: 120px !important;
}

.mgb-pc--125 {
  margin-bottom: 125px !important;
}

.mgb-pc--130 {
  margin-bottom: 130px !important;
}

.mgb-pc--135 {
  margin-bottom: 135px !important;
}

.mgb-pc--140 {
  margin-bottom: 140px !important;
}

.mgb-pc--145 {
  margin-bottom: 145px !important;
}

.mgb-pc--150 {
  margin-bottom: 150px !important;
}

.mgb-pc--155 {
  margin-bottom: 155px !important;
}

.mgb-pc--160 {
  margin-bottom: 160px !important;
}

.mgb-pc--165 {
  margin-bottom: 165px !important;
}

.mgb-pc--170 {
  margin-bottom: 170px !important;
}

.mgb-pc--175 {
  margin-bottom: 175px !important;
}

.mgb-pc--180 {
  margin-bottom: 180px !important;
}

.mgb-pc--185 {
  margin-bottom: 185px !important;
}

.mgb-pc--190 {
  margin-bottom: 190px !important;
}

.mgb-pc--195 {
  margin-bottom: 195px !important;
}

.mgb-pc--200 {
  margin-bottom: 200px !important;
}

.mgb-pc--205 {
  margin-bottom: 205px !important;
}

.mgb-pc--210 {
  margin-bottom: 210px !important;
}

.mgb-pc--215 {
  margin-bottom: 215px !important;
}

.mgb-pc--220 {
  margin-bottom: 220px !important;
}

.mgb-pc--225 {
  margin-bottom: 225px !important;
}

.mgb-pc--230 {
  margin-bottom: 230px !important;
}

.mgb-pc--235 {
  margin-bottom: 235px !important;
}

.mgb-pc--240 {
  margin-bottom: 240px !important;
}

.mgb-pc--245 {
  margin-bottom: 245px !important;
}

.mgb-pc--250 {
  margin-bottom: 250px !important;
}

@media screen and (max-width: 750px) {
  .mgb-sp--0 {
    margin-bottom: 0 !important;
  }
  .mgb-sp--5 {
    margin-bottom: 0.6666666667vw !important;
  }
  .mgb-sp--10 {
    margin-bottom: 1.3333333333vw !important;
  }
  .mgb-sp--15 {
    margin-bottom: 2vw !important;
  }
  .mgb-sp--20 {
    margin-bottom: 2.6666666667vw !important;
  }
  .mgb-sp--25 {
    margin-bottom: 3.3333333333vw !important;
  }
  .mgb-sp--30 {
    margin-bottom: 4vw !important;
  }
  .mgb-sp--35 {
    margin-bottom: 4.6666666667vw !important;
  }
  .mgb-sp--40 {
    margin-bottom: 5.3333333333vw !important;
  }
  .mgb-sp--45 {
    margin-bottom: 6vw !important;
  }
  .mgb-sp--50 {
    margin-bottom: 6.6666666667vw !important;
  }
  .mgb-sp--55 {
    margin-bottom: 7.3333333333vw !important;
  }
  .mgb-sp--60 {
    margin-bottom: 8vw !important;
  }
  .mgb-sp--65 {
    margin-bottom: 8.6666666667vw !important;
  }
  .mgb-sp--70 {
    margin-bottom: 9.3333333333vw !important;
  }
  .mgb-sp--75 {
    margin-bottom: 10vw !important;
  }
  .mgb-sp--80 {
    margin-bottom: 10.6666666667vw !important;
  }
  .mgb-sp--85 {
    margin-bottom: 11.3333333333vw !important;
  }
  .mgb-sp--90 {
    margin-bottom: 12vw !important;
  }
  .mgb-sp--95 {
    margin-bottom: 12.6666666667vw !important;
  }
  .mgb-sp--100 {
    margin-bottom: 13.3333333333vw !important;
  }
  .mgb-sp--105 {
    margin-bottom: 14vw !important;
  }
  .mgb-sp--110 {
    margin-bottom: 14.6666666667vw !important;
  }
  .mgb-sp--115 {
    margin-bottom: 15.3333333333vw !important;
  }
  .mgb-sp--120 {
    margin-bottom: 16vw !important;
  }
  .mgb-sp--125 {
    margin-bottom: 16.6666666667vw !important;
  }
  .mgb-sp--130 {
    margin-bottom: 17.3333333333vw !important;
  }
  .mgb-sp--135 {
    margin-bottom: 18vw !important;
  }
  .mgb-sp--140 {
    margin-bottom: 18.6666666667vw !important;
  }
  .mgb-sp--145 {
    margin-bottom: 19.3333333333vw !important;
  }
  .mgb-sp--150 {
    margin-bottom: 20vw !important;
  }
  .mgb-sp--155 {
    margin-bottom: 20.6666666667vw !important;
  }
  .mgb-sp--160 {
    margin-bottom: 21.3333333333vw !important;
  }
  .mgb-sp--165 {
    margin-bottom: 22vw !important;
  }
  .mgb-sp--170 {
    margin-bottom: 22.6666666667vw !important;
  }
  .mgb-sp--175 {
    margin-bottom: 23.3333333333vw !important;
  }
  .mgb-sp--180 {
    margin-bottom: 24vw !important;
  }
  .mgb-sp--185 {
    margin-bottom: 24.6666666667vw !important;
  }
  .mgb-sp--190 {
    margin-bottom: 25.3333333333vw !important;
  }
  .mgb-sp--195 {
    margin-bottom: 26vw !important;
  }
  .mgb-sp--200 {
    margin-bottom: 26.6666666667vw !important;
  }
  .mgb-sp--205 {
    margin-bottom: 27.3333333333vw !important;
  }
  .mgb-sp--210 {
    margin-bottom: 28vw !important;
  }
  .mgb-sp--215 {
    margin-bottom: 28.6666666667vw !important;
  }
  .mgb-sp--220 {
    margin-bottom: 29.3333333333vw !important;
  }
  .mgb-sp--225 {
    margin-bottom: 30vw !important;
  }
  .mgb-sp--230 {
    margin-bottom: 30.6666666667vw !important;
  }
  .mgb-sp--235 {
    margin-bottom: 31.3333333333vw !important;
  }
  .mgb-sp--240 {
    margin-bottom: 32vw !important;
  }
  .mgb-sp--245 {
    margin-bottom: 32.6666666667vw !important;
  }
  .mgb-sp--250 {
    margin-bottom: 33.3333333333vw !important;
  }
}
@media screen and (min-width: 751px) {
  .pc-hide {
    display: none !important;
  }
}
@media screen and (max-width: 750px) {
  .sp-hide {
    display: none !important;
  }
}
@media screen and (min-width: 751px) {
  .header-nav {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media screen and (max-width: 750px) {
  .header-nav {
    display: none;
  }
}
.header-nav .header-sns {
  position: static;
}

.lang {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 27px;
}
@media screen and (max-width: 750px) {
  .lang {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
.lang p {
  font-size: 18px;
  line-height: 1;
}
.lang .toggle {
  position: relative;
  width: 70px;
  height: 29px;
  margin: 0 8px;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
}
.lang .toggle input[type=checkbox] {
  display: none;
}
.lang .toggle:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #626262;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.lang .toggle:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 29px;
  height: 29px;
  display: block;
  border-radius: 50px;
  background: #F20000;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.lang .toggle.checked:before {
  background: #626262;
}
.lang .toggle.checked:after {
  left: 41px;
}

.keyvisual-logo {
  width: 572px;
}
@media screen and (max-width: 750px) {
  .keyvisual-logo {
    width: 92%;
  }
}

@media screen and (max-width: 750px) {
  .section-about__content-text {
    font-size: 16px;
  }
}

@media screen and (max-width: 750px) {
  .section-about-kachimeshi__content-text {
    font-size: 16px;
  }
}

.section--curriculum1:before {
  top: -100px;
}
@media screen and (max-width: 750px) {
  .section--curriculum1:before {
    top: -65px;
    height: 130px;
  }
}
.section--curriculum1.right .section__title {
  text-align: left;
}
.section--curriculum1.right .curriculum1-icon:after {
  background: url("../img/icon_skater_left.png");
  left: initial;
  right: 22.6%;
}
@media screen and (max-width: 750px) {
  .section--curriculum1.right .curriculum1-icon:after {
    right: 15px;
    background-size: contain;
  }
}

.section--curriculum1 .section-keyvisual.key01 {
  background: url(../img/sp/img_content1.jpg);
  background-size: cover;
}

.section--curriculum1 .section-keyvisual.key02 {
  background: url(../img/sp/img_content2.jpg);
  background-size: cover;
}

.section--curriculum1 .section-keyvisual.key03 {
  background: url(../img/sp/img_content3.jpg);
  background-size: cover;
}

.curriculum1-icon:after {
  top: -220px;
  left: 22.6%;
  margin-left: 0;
  -webkit-transform: initial;
          transform: initial;
}
@media screen and (max-width: 750px) {
  .curriculum1-icon:after {
    top: -125px;
    left: 15px;
  }
}

.anchor-area {
  margin-top: -100px;
  padding-top: 100px;
}

.section-keyvisual {
  height: 400px !important;
}
@media screen and (max-width: 750px) {
  .section-keyvisual {
    height: 160px !important;
  }
}

.ttl_big {
  text-align: center;
  font-weight: bold;
  font-size: 40px;
  line-height: 1.35;
  color: #E50012;
}
@media screen and (max-width: 750px) {
  .ttl_big {
    font-size: 25px;
  }
}

.ttl_small {
  font-size: 24px;
  font-weight: bold;
  color: #E50012;
  line-height: 1.35;
  margin-bottom: 20px;
}
@media screen and (max-width: 750px) {
  .ttl_small {
    font-size: 16px;
  }
}

.txt {
  font-size: 16px;
  color: #000000;
  line-height: 1.75;
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  .txt {
    font-size: 16px;
  }
}

.ttl2 {
  -webkit-transform: skewX(-45deg);
          transform: skewX(-45deg);
  width: 640px;
  margin: 0 auto;
  background-color: #E50D12;
}
@media screen and (max-width: 750px) {
  .ttl2 {
    -webkit-transform: skewX(-35deg);
            transform: skewX(-35deg);
    width: 89%;
  }
}
.ttl2 span {
  -webkit-transform: skewX(45deg);
          transform: skewX(45deg);
  display: block;
  text-align: center;
  font-size: 24px;
  color: #ffffff;
  line-height: 1;
  padding: 6px 0;
}
@media screen and (max-width: 750px) {
  .ttl2 span {
    -webkit-transform: skewX(35deg);
            transform: skewX(35deg);
    font-size: 20px;
  }
}

.w940 {
  max-width: 940px;
  margin: 0 auto 320px;
}
@media screen and (max-width: 750px) {
  .w940 {
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-bottom: 165px;
  }
}

.section-curriculum1.sec01 .ttl_big {
  margin-bottom: 90px;
}
@media screen and (max-width: 750px) {
  .section-curriculum1.sec01 .ttl_big {
    margin-bottom: 32px;
  }
}
.section-curriculum1.sec01 .content:nth-child(2) img {
  margin-top: 45px;
  margin-bottom: 44px;
}
@media screen and (max-width: 750px) {
  .section-curriculum1.sec01 .content:nth-child(2) img {
    margin-top: 45px;
    margin-bottom: 45px;
  }
}
.section-curriculum1.sec01 .content:last-child {
  margin-top: 40px;
}
.section-curriculum1.sec01 .content:last-child img {
  margin-top: 85px;
}
@media screen and (max-width: 750px) {
  .section-curriculum1.sec01 .content:last-child img {
    margin-top: 40px;
  }
}
.section-curriculum1.sec01 a {
  display: block;
  max-width: 520px;
  width: 100%;
  margin: 100px auto 0;
  border-radius: 35px;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  background-color: #E50D12;
  position: relative;
  text-align: center;
  padding: 14px 0;
}
@media screen and (max-width: 750px) {
  .section-curriculum1.sec01 a {
    max-width: 100%;
    font-size: 16px;
    padding: 12px 0;
    margin: 50px auto 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.section-curriculum1.sec01 a:before {
  content: "";
  width: calc(100% + 14px);
  height: calc(100% + 14px);
  border: solid 2px #E50D12;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 35px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 750px) {
  .section-curriculum1.sec01 a:before {
    border-radius: 42px;
  }
}
.section-curriculum1.sec02 {
  margin-bottom: 280px;
}
@media screen and (max-width: 750px) {
  .section-curriculum1.sec02 {
    margin-bottom: 160px;
  }
}
.section-curriculum1.sec02 .ttl_big {
  margin-bottom: 70px;
}
@media screen and (max-width: 750px) {
  .section-curriculum1.sec02 .ttl_big {
    margin-bottom: 24px;
  }
}
.section-curriculum1.sec02 .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 95px;
}
@media screen and (max-width: 750px) {
  .section-curriculum1.sec02 .box {
    margin-bottom: 40px;
    display: block;
  }
}
.section-curriculum1.sec02 .box .prof {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
  top: 20px;
}
@media screen and (max-width: 750px) {
  .section-curriculum1.sec02 .box .prof {
    position: static;
    margin-bottom: 24px;
  }
}
.section-curriculum1.sec02 .box .prof img {
  display: block;
  width: 240px;
  margin-right: 15px;
}
@media screen and (max-width: 750px) {
  .section-curriculum1.sec02 .box .prof img {
    width: 150px;
  }
}
.section-curriculum1.sec02 .box .prof_txt {
  color: #E50012;
}
.section-curriculum1.sec02 .box .prof_txt .position {
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 10px;
}
.section-curriculum1.sec02 .box .prof_txt .name {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 25px;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .section-curriculum1.sec02 .box .prof_txt .name {
    font-size: 21px;
  }
}
.section-curriculum1.sec02 .box .prof_txt .name span {
  font-size: 20px;
}
@media screen and (max-width: 750px) {
  .section-curriculum1.sec02 .box .prof_txt .name span {
    font-size: 18px;
  }
}
.section-curriculum1.sec02 .box .txt {
  width: 440px;
}
@media screen and (max-width: 750px) {
  .section-curriculum1.sec02 .box .txt {
    width: 100%;
  }
}
.section-curriculum1.sec02 .ttl2 {
  margin-bottom: 50px;
}
@media screen and (max-width: 750px) {
  .section-curriculum1.sec02 .ttl2 {
    margin-bottom: 32px;
  }
}
.section-curriculum1.sec02 .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 750px) {
  .section-curriculum1.sec02 .list {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .section-curriculum1.sec02 .list:nth-last-child(2) .list_content img {
    width: 120px;
  }
  .section-curriculum1.sec02 .list:last-child .list_content:first-child img {
    width: 84px;
  }
  .section-curriculum1.sec02 .list:last-child .list_content:last-child img {
    width: 51.5px;
  }
  .section-curriculum1.sec02 .list + .list {
    margin-top: 32px;
  }
}
.section-curriculum1.sec02 .list:before {
  content: "";
  width: 132%;
  height: 164px;
  background-color: #E50012;
  border-radius: 15px;
  position: absolute;
  bottom: -17px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 750px) {
  .section-curriculum1.sec02 .list:before {
    width: 100%;
    height: 102.5px;
    border-radius: 7.5px;
    bottom: -11px;
  }
}
@media screen and (max-width: 750px) {
  .section-curriculum1.sec02 .list_content {
    width: 50%;
  }
}
.section-curriculum1.sec02 .list_content img {
  display: block;
  margin: 0 auto 10px;
}
@media screen and (max-width: 750px) {
  .section-curriculum1.sec02 .list_content img {
    margin-bottom: 5px;
  }
}
.section-curriculum1.sec02 .list_content p {
  color: #ffffff;
  font-size: 16px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .section-curriculum1.sec02 .list_content p {
    font-size: 15px;
  }
}
@media screen and (max-width: 750px) {
  .section-curriculum1.sec02 .list_content p span {
    font-size: 13px;
  }
}
.section-curriculum1.sec02 .list_content:nth-child(3) img {
  margin-bottom: 12px;
}
.section-curriculum1.sec03 {
  margin-bottom: 115px;
}
@media screen and (max-width: 750px) {
  .section-curriculum1.sec03 {
    margin-bottom: 60px;
  }
}
.section-curriculum1.sec03 .ttl_big {
  margin-bottom: 60px;
}
@media screen and (max-width: 750px) {
  .section-curriculum1.sec03 .ttl_big {
    margin-bottom: 40px;
  }
}
.section-curriculum1.sec03 .power {
  margin-bottom: 80px;
}
@media screen and (max-width: 750px) {
  .section-curriculum1.sec03 .power {
    margin-bottom: 47px;
  }
}
.section-curriculum1.sec03 .power_mv {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 50px;
}
@media screen and (max-width: 750px) {
  .section-curriculum1.sec03 .power_mv {
    margin-bottom: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.section-curriculum1.sec03 .power_mv img {
  display: block;
}
.section-curriculum1.sec03 .power_mv img.img_left {
  width: 45.745%;
}
@media screen and (max-width: 750px) {
  .section-curriculum1.sec03 .power_mv img.img_left {
    width: 86.394%;
    margin-top: 24px;
  }
}
.section-curriculum1.sec03 .power_mv img.img_right {
  width: 50%;
}
@media screen and (max-width: 750px) {
  .section-curriculum1.sec03 .power_mv img.img_right {
    width: 68.12%;
  }
}
.section-curriculum1.sec03 .ttl2 {
  margin-bottom: 50px;
}
@media screen and (max-width: 750px) {
  .section-curriculum1.sec03 .ttl2 {
    margin-bottom: 32px;
  }
}
.section-curriculum1.sec03 .recipe {
  margin-bottom: 72px;
}
@media screen and (max-width: 750px) {
  .section-curriculum1.sec03 .recipe {
    margin-bottom: 55px;
  }
}
.section-curriculum1.sec03 .recipe .content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .section-curriculum1.sec03 .recipe .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.section-curriculum1.sec03 .recipe .content img {
  width: 50%;
}
@media screen and (max-width: 750px) {
  .section-curriculum1.sec03 .recipe .content img {
    width: 100%;
    margin-bottom: 32px;
  }
}
.section-curriculum1.sec03 .recipe .content .block {
  width: calc(50% - 24px);
}
@media screen and (max-width: 750px) {
  .section-curriculum1.sec03 .recipe .content .block {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .section-curriculum1.sec03 .recipe .content .block .recipe_name {
    text-align: center;
  }
}
.section-curriculum1.sec03 .recipe .content .block .recipe_name span {
  display: inline-block;
  position: relative;
  font-size: 22px;
  color: #E50D12;
  font-weight: bold;
  margin-bottom: 35px;
  padding-left: 42px;
}
@media screen and (max-width: 750px) {
  .section-curriculum1.sec03 .recipe .content .block .recipe_name span {
    font-size: 17px;
    margin-bottom: 24px;
    padding-left: 28px;
  }
}
.section-curriculum1.sec03 .recipe .content .block .recipe_name span:before {
  content: "";
  width: 37px;
  height: 36px;
  background-image: url("../img/icon_recipe_red.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 750px) {
  .section-curriculum1.sec03 .recipe .content .block .recipe_name span:before {
    width: 23px;
    height: 24px;
  }
}
.section-curriculum1.sec03 .recipe .content .block .recipe_ttl {
  width: 100%;
  background-color: #E50D12;
  border-radius: 100px;
  margin-bottom: 20px;
  text-align: center;
  font-size: 20px;
  line-height: 1;
  color: #ffffff;
  padding: 2px 0;
}
@media screen and (max-width: 750px) {
  .section-curriculum1.sec03 .recipe .content .block .recipe_ttl {
    font-size: 15px;
    padding: 2.5px 0;
  }
}
.section-curriculum1.sec03 .recipe .content .block .recipe_txt {
  font-size: 16px;
  line-height: 1.75;
  color: #000000;
  font-weight: 500;
}
.section-curriculum1.sec03 .recipe .content .block .recipe_txt span {
  color: #E50D12;
  font-weight: bold;
}
.section-curriculum1.sec03 .recipe .content .block .recipe_txt + .recipe_ttl {
  margin-top: 15px;
}
.section-curriculum1.sec03 .recipe .content:last-child {
  margin-top: 30px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 750px) {
  .section-curriculum1.sec03 .recipe .content:last-child {
    margin-top: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.section-curriculum1 .ajinomoto_btn {
  text-align: center;
  margin: 72px auto 155px;
}
.section-curriculum1 .ajinomoto_btn a {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  position: relative;
  background-color: #E50D12;
  border-radius: 42px;
  color: #ffffff;
  padding: 12px 80px;
}
@media screen and (max-width: 750px) {
  .section-curriculum1 .ajinomoto_btn a {
    display: block;
    font-size: 16px;
    margin-bottom: 55px;
    padding: 12px 64px;
  }
}
.section-curriculum1 .ajinomoto_btn a:before {
  content: "";
  width: calc(100% + 14px);
  height: calc(100% + 14px);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 42px;
  border: solid 2px #E50012;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.section-curriculum1 .ajinomoto_btn a:after {
  content: "";
  display: block;
  width: 29px;
  height: 28px;
  background-image: url("../img/icon_recipe_white.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 33px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 750px) {
  .section-curriculum1 .ajinomoto_btn a:after {
    width: 23px;
    height: 24px;
    left: 28px;
  }
}
.section-curriculum1 .profile {
  margin-bottom: 135px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .section-curriculum1 .profile {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 60px;
  }
}
.section-curriculum1 .profile img {
  display: block;
  width: 351px;
  margin-right: 25px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 750px) {
  .section-curriculum1 .profile img {
    width: 51%;
    margin: 0 auto 20px;
  }
}
.section-curriculum1 .profile_content .ttl {
  position: relative;
  margin-bottom: 20px;
}
@media screen and (max-width: 750px) {
  .section-curriculum1 .profile_content .ttl {
    margin-top: 0;
    margin-bottom: 12px;
  }
}
.section-curriculum1 .profile_content .ttl span {
  font-family: "Righteous", cursive;
  font-size: 20px;
  padding-right: 10px;
  background-color: #ffffff;
  color: #000000;
}
@media screen and (max-width: 750px) {
  .section-curriculum1 .profile_content .ttl span {
    margin-right: 4px;
  }
}
.section-curriculum1 .profile_content .ttl:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #000000;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}
.section-curriculum1 .profile_content .name {
  margin-bottom: 20px;
  color: #E50012;
  font-size: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-weight: bold;
}
.section-curriculum1 .profile_content .name span {
  font-size: 16px;
  position: relative;
  bottom: 3px;
  margin-right: 15px;
  display: inline-block;
}
@media screen and (max-width: 750px) {
  .section-curriculum1 .profile_content .name span {
    font-size: 18px;
  }
}
.section-curriculum1 .profile_content .txt {
  font-size: 14px;
}
.section-curriculum1 .logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 750px) {
  .section-curriculum1 .logo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.section-curriculum1 .logo .left {
  display: block;
  width: 225px;
  margin-right: 59px;
}
@media screen and (max-width: 750px) {
  .section-curriculum1 .logo .left {
    width: 169px;
    margin: 0 auto 50px;
  }
}
.section-curriculum1 .logo .right {
  display: block;
  width: 143.8px;
  margin-right: 34px;
}
@media screen and (max-width: 750px) {
  .section-curriculum1 .logo .right {
    width: 107px;
    margin: 0 auto 0;
  }
}