@charset "UTF-8";
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  background-color: #EEEDE2;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}

.gloabal {
  overflow: hidden;
}

a {
  color: #fff;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

/* 共通パーツ */
.section-width {
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
}

.section-width-md {
  max-width: 1000px;
  margin: 0 auto;
  width: 90%;
}

/*
コンテンツ幅を設定するための共通クラス
*/
.wrapper {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

/*
  セクションタイトル用の共通クラス
  */
.section-ttl {
  font-size: 4rem;
  text-align: center;
  margin-top: 15px;
}
@media screen and (max-width: 896px) {
  .section-ttl {
    font-size: 2.4rem;
  }
}

/* 疑似要素でタイトル下に下線を引く */
.section-title::after {
  content: "";
  width: 100px;
  height: 3px;
  background-color: #333;
  display: block;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.button-sp-wrap {
  display: none;
}
@media screen and (max-width: 1025px) {
  .button-sp-wrap {
    width: 100%;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    right: 0;
    bottom: 0;
    font-size: 50px;
    color: #fff;
    background: #FFEA00;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: 30;
    /*デフォルトで非表示にする*/
    opacity: 0;
    visibility: hidden;
  }
}

/*このクラスが付与されると表示する*/
.active {
  opacity: 1;
  visibility: visible;
}

.button-sp-link {
  text-align: center;
  width: 50%;
}
.button-sp-link:first-child {
  border-right: 1px solid black;
}
.button-sp-link > p {
  font-size: 1.3rem;
  color: #000;
  margin-top: -10px;
}
.button-sp-link-img > img {
  width: 25px;
  height: 25px;
  position: relative;
  bottom: 20px;
}

.section-width-under {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 1200px;
  margin: 0 auto 100px;
  width: 90%;
}
@media screen and (max-width: 896px) {
  .section-width-under {
    margin: 0 auto 50px;
  }
}

.section-width-model {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 1000px;
  margin: 0 auto;
  width: 90%;
}

.under-ttl {
  font-size: 8rem;
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1025px) {
  .under-ttl {
    font-size: 4rem;
    margin-bottom: 20px;
    margin-top: 130px;
  }
}
@media screen and (max-width: 896px) {
  .under-ttl {
    font-size: 2.6rem;
  }
}
.under-ttl > h2 > img {
  width: 80px;
}
@media screen and (max-width: 896px) {
  .under-ttl > h2 > img {
    width: 30px;
  }
}

.pan__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}
.pan__ul > li {
  margin-right: 10px;
  font-size: 1.4rem;
}
.pan__ul > li > a {
  color: #000;
  font-size: 1.4rem;
}

.header,
.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 200px;
  background: #eee;
}

.pagenation-ul {
  width: 90%;
  margin: 60px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagenation-li {
  margin-right: 20px;
}
@media screen and (max-width: 480px) {
  .pagenation-li {
    margin-right: 5px;
  }
}
.pagenation-li:last-child {
  margin-right: 0;
}
.pagenation-li > a > span {
  display: block;
  width: 41px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid #000;
  font-size: 1.8rem;
  text-align: center;
  padding: 5px;
  line-height: 1.3;
  color: #000;
  font-weight: bold;
}
.pagenation-li > a > span:hover {
  background-color: #FFEA00;
  opacity: 1;
}

.container {
  position: relative;
}

.model-slide {
  margin-top: 60px;
}
.model-fixed-pagenation {
  position: fixed;
  top: 30%;
  left: 2%;
  z-index: 5;
}
@media screen and (max-width: 896px) {
  .model-fixed-pagenation {
    display: none;
  }
}
.model-fixed-pagenation > p {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 1.6rem;
  position: relative;
  left: 1.6rem;
  margin-bottom: 10px;
}
.model-fixed-pagenation-sp {
  display: none;
  text-align: center;
}
.model-fixed-pagenation-sp > p {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 896px) {
  .model-fixed-pagenation-sp {
    display: block;
    margin-bottom: 20px;
  }
}
.model-fixed-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.model-fixed-ul-sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.model-fixed-ul-sp > li {
  margin-right: 15px;
}
.model-fixed-ul-sp > li > a {
  color: #000;
  font-size: 19px;
  display: block;
  border-radius: 50%;
  border: 2px solid black;
  padding: 6px 6px 6px 8px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
.model-fixed-ul-sp > li > a.current {
  background-color: #FFEA00;
}
.model-fixed-ul > li {
  margin-bottom: 10px;
}
.model-fixed-ul > li > a {
  color: #000;
  font-size: 19px;
  display: block;
  border-radius: 50%;
  border: 2px solid black;
  padding: 6px 4px 6px 6px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
.model-fixed-ul > li > a.current {
  background-color: #FFEA00;
}
.model-bg {
  background-image: url(../img/top-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 950px;
  position: relative;
}
@media screen and (max-width: 896px) {
  .model-bg {
    height: 450px;
  }
}
.model-bg__ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.model-bg__ttl > h3 {
  font-size: 2rem;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1.8;
}

.model-main-caution {
  text-align: right;
  font-size: 1.2rem;
  background-color: #EEEDE2;
  padding-bottom: 10px;
}
.model-main__inner {
  background-color: #fff;
}

.model__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 2px solid black;
}
@media screen and (max-width: 896px) {
  .model__card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.model__card-l {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px;
  border-right: 2px solid black;
}
@media screen and (max-width: 896px) {
  .model__card-l {
    border-right: none;
  }
}
.model__card-r {
  text-align: center;
  padding: 50px 20px;
  margin: 0 auto;
}
@media screen and (max-width: 1025px) {
  .model__card-r {
    padding: 20px;
  }
}
.model__card-r-ttl {
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.model__card-course {
  font-size: 1.6rem;
  text-align: center;
}
.model__card-num {
  text-align: center;
  font-size: 5.6rem;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #FFEA00;
  border: 2px solid #000;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  line-height: 1.4;
  margin: 10px auto 20px;
}
@media screen and (max-width: 1025px) {
  .model__card-num {
    width: 60px;
    height: 60px;
    font-size: 3rem;
    line-height: 1.8;
    margin: 10px auto 20px;
  }
}
.model__card-ttl-wrap {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (max-width: 896px) {
  .model__card-ttl-wrap {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
}
.model__card-ttl-wrap > p {
  font-size: 2rem;
  letter-spacing: 0.1em;
}

.flow {
  border-right: 2px solid black;
  border-left: 2px solid black;
  border-bottom: 2px solid black;
}
.flow__inner {
  padding: 50px 30px;
  max-width: 900px;
  margin: 0 auto;
  width: 90%;
}
@media screen and (max-width: 896px) {
  .flow__inner {
    padding: 30px 0px;
  }
}
.flow__inner:nth-child(3) {
  border-bottom: none;
}
.flow__inner:last-child {
  border-bottom: none;
}
.flow__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 896px) {
  .flow__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.flow__inner-row > p {
  font-size: 1.4rem;
  line-height: 1.5;
  width: 80%;
}
@media screen and (max-width: 896px) {
  .flow__inner-row > p {
    margin-top: 30px;
    width: 100%;
  }
}
.flow__inner-icon {
  width: 140px;
  padding: 20px;
  background-color: #FFEA00;
  font-size: 1.6rem;
  border-radius: 50%;
  text-align: center;
  margin-right: 30px;
}
@media screen and (max-width: 896px) {
  .flow__inner-icon {
    margin-right: 0;
  }
}
.flow__ttl {
  font-size: 2.2rem;
  text-align: center;
}
.flow__ttl > img {
  width: 100%;
}
.flow__ttl-top {
  width: 260px;
  margin: 0 auto;
}
.flow__ttl-card {
  text-align: center;
  display: block;
  padding: 5px;
  border: solid 4px #fff;
  outline: solid 2px black;
  background-color: #FEE834;
  width: 100%;
  margin: 60px auto 30px;
  padding: 20px;
}
.flow__ttl-card p {
  font-size: 3.3rem;
  font-weight: bold;
}
@media screen and (max-width: 896px) {
  .flow__ttl-card p {
    font-size: 2.8rem;
  }
}
.flow__des {
  font-size: 30px;
  font-weight: bold;
  color: #3EB370;
  text-align: center;
  margin-bottom: 20px;
}
.flow__top-txt {
  margin-top: 10px;
}
.flow__top-txt > p {
  font-size: 1.6rem;
  line-height: 1.6;
}
.flow__txt {
  margin-top: 20px;
}
.flow__txt .txt {
  font-size: 1.4rem;
  line-height: 1.5;
}
.flow__card {
  margin-right: 10%;
  width: 23.3%;
  position: relative;
  margin-top: 30px;
}
.flow__card.sp-last {
  margin: 60px 30px 0 auto;
  position: relative;
  right: 40px;
}
@media screen and (max-width: 896px) {
  .flow__card.sp-last {
    width: 240px;
    margin: 0 auto;
    position: inherit;
    right: 0;
  }
}
@media screen and (max-width: 480px) {
  .flow__card.sp-last {
    width: 140px;
    margin-right: auto !important;
  }
}
.flow__card-icon {
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 160px;
}
@media screen and (max-width: 896px) {
  .flow__card-icon {
    right: 20%;
    bottom: 0;
    width: 90px;
  }
}
.flow__card-icon > img {
  width: 100%;
}
.flow__card-icon > img:first-child {
  position: absolute;
  bottom: 100%;
  right: 0%;
  margin-bottom: 60px;
}
.flow__card::after {
  display: block;
  content: "";
  background-image: url(../img/Arrow.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 30px;
  height: 20px;
  position: absolute;
  top: 100px;
  right: -23%;
}
@media screen and (max-width: 896px) {
  .flow__card::after {
    display: none;
  }
}
.flow__card.last::after {
  display: none;
}
@media screen and (max-width: 896px) {
  .flow__card {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
}
.flow__card-img {
  position: relative;
}
.flow__card-img.icon-circle {
  width: 150px;
  height: 150px;
}
@media screen and (max-width: 896px) {
  .flow__card-img.icon-circle {
    margin: 0 auto;
  }
}
@media screen and (max-width: 896px) {
  .flow__card-img.icon-circle + div p {
    text-align: center;
  }
}
.flow__card-img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.flow__card-img .num-icon {
  width: 100px;
}
@media screen and (max-width: 896px) {
  .flow__card-img .num-icon {
    position: relative;
    bottom: 60px;
  }
}
.flow__card:last-child {
  margin-right: 0;
}
@media screen and (max-width: 896px) {
  .flow__card:last-child {
    margin-bottom: 0px;
  }
}
.flow__card-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
}
@media screen and (max-width: 896px) {
  .flow__card-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.flow__card-row {
  position: relative;
}
.flow__card-row::after {
  display: block;
  content: "";
  background-image: url(../img/Arrow.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 30px;
  height: 20px;
  position: absolute;
  top: 80px;
  right: -13%;
}
@media screen and (max-width: 896px) {
  .flow__card-row::after {
    display: none;
  }
}
.flow__card-row.last::after {
  display: none !important;
}
.flow__card-row.item2 {
  width: 56%;
  margin-right: 10%;
}
@media screen and (max-width: 896px) {
  .flow__card-row.item2 {
    width: 100%;
    margin-bottom: 40px;
  }
}
.flow__card-row.item2 > .flow__card {
  width: 0 !important;
}
.flow__card-row.item1 {
  width: 25%;
}
@media screen and (max-width: 896px) {
  .flow__card-row.item1 {
    width: 100%;
    margin-top: 30px;
  }
}
.flow__card-row.item1::after {
  right: -23% !important;
}
.flow__card-row.item1 > .flow__card {
  width: 0 !important;
}
.flow__card-row.item3 {
  width: 56%;
}
@media screen and (max-width: 896px) {
  .flow__card-row.item3 {
    width: 100%;
    margin-top: 30px;
  }
}
.flow__card-row.item3::after {
  right: -13% !important;
  display: block !important;
}
@media screen and (max-width: 896px) {
  .flow__card-row.item3::after {
    display: none !important;
  }
}
.flow__card-row.item3 > .flow__card {
  width: 0 !important;
}
.flow__card-row.item3.last::after {
  display: none !important;
}
.flow__card-row.item4 {
  width: 25%;
  margin-right: 10%;
}
@media screen and (max-width: 896px) {
  .flow__card-row.item4 {
    width: 100%;
    margin-bottom: 40px;
  }
}
.flow__card-row.item4::after {
  right: -25% !important;
}
@media screen and (max-width: 896px) {
  .flow__card-row.item4::after {
    display: none;
  }
}
.flow__card-row.item4 > .flow__card {
  width: 0 !important;
}
.flow__card-blk {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 40px;
  position: relative;
}
@media screen and (max-width: 896px) {
  .flow__card-blk {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.flow__card > p {
  font-size: 1.6rem;
  margin-top: 10px;
}
.flow__card > .txt {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.6;
}
.flow__time {
  width: 230px;
  margin: 0 auto;
}
.flow__time > img {
  width: 100%;
}
.flow__corse-ttl {
  text-align: center;
  margin-top: 30px;
  font-size: 2.7rem;
  font-weight: bold;
}
@media screen and (max-width: 896px) {
  .flow__blk-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.flow__blk-icon > img:first-child {
  width: 50px;
  margin-top: 10%;
}
@media screen and (max-width: 896px) {
  .flow__blk-icon > img:first-child {
    margin-top: 0;
    margin-right: 30px;
  }
}
.flow__blk-icon > img:last-child {
  width: 70px;
  position: absolute;
  bottom: -40%;
  right: 0;
}
@media screen and (max-width: 896px) {
  .flow__blk-icon > img:last-child {
    bottom: 0;
    right: 60px;
  }
}
.flow__blk-top {
  max-width: 500px;
  width: 100%;
  margin: 60px auto;
}
.flow__blk-ttl {
  font-size: 2rem;
  font-weight: bold;
  color: #3EB370;
  text-align: left;
  margin: 14px 0;
}
.flow__blk-txt {
  text-align: left;
  line-height: 1.6;
  font-size: 1.6rem;
  font-weight: 500;
}
.flow__blk-time {
  margin-top: 10px;
  width: 130px;
}
.flow__yajirushi {
  width: 40px;
}
.flow__gakusyu {
  border: 2px solid black;
  padding: 0px 30px;
  max-width: 870px;
  width: 100%;
  margin: 80px auto 50px;
  background-color: #FEFCE0;
  text-align: center;
}
.flow__gakusyu-inner {
  padding: 40px;
}
@media screen and (max-width: 896px) {
  .flow__gakusyu-inner {
    padding: 40px 0;
  }
}
.flow__gakusyu-inner.bottom-line {
  border-bottom: 2px solid black !important;
}
.flow__gakusyu-ttl {
  width: 230px;
  margin: 0 auto;
}
.flow__gakusyu-ttl > img {
  width: 100%;
}
.flow__gakusyu-txt {
  margin-top: 10px;
}
.flow__gakusyu-txt > p {
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: left;
}
.flow__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
}
@media screen and (max-width: 896px) {
  .flow__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.flow__flex-li {
  margin-right: 30px;
}
@media screen and (max-width: 896px) {
  .flow__flex-li {
    margin-right: 0;
    width: 100%;
    margin-bottom: 40px;
  }
}
.flow__flex-li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 896px) {
  .flow__flex-li:last-child {
    margin-bottom: 0;
  }
}
.flow__flex-li > p {
  font-size: 1.6rem;
  margin-top: 16px;
}
.flow__flex-li > img {
  width: 100%;
}

.num {
  width: 45px;
  height: 45px;
  margin-bottom: 0px;
}
.num > img {
  width: 100%;
}

.num2 {
  width: 35px;
  height: 35px;
  margin-bottom: 10px;
}
.num2 > img {
  width: 100%;
}

.hebig {
  height: 160px;
}

@media screen and (max-width: 800px) {
  .hebig {
    -o-object-fit: cover;
       object-fit: cover;
    height: 230px;
  }
}
.flow__card:last-child > .flow__card-img::after {
  display: none;
}

.mb-bg {
  margin-bottom: 60px;
}

.mt-md {
  margin-top: 40px;
}

.flow__guide-wrap {
  border-top: 2px solid black;
}
.flow__guide-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 60px;
}
@media screen and (max-width: 896px) {
  .flow__guide-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 20px;
  }
}
.flow__guide-img {
  width: 220px;
  height: 220px;
  margin-right: 50px;
}
@media screen and (max-width: 896px) {
  .flow__guide-img {
    width: 200px;
    height: 200px;
    margin: 0 auto;
  }
}
.flow__guide-img > img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.flow__guide-ttl {
  font-size: 1.8rem;
  margin-bottom: 30px;
}
.flow__guide-txt {
  line-height: 1.6;
  font-weight: 500;
}
.flow__guide-des {
  width: 60%;
}
@media screen and (max-width: 896px) {
  .flow__guide-des {
    width: 100%;
    margin-top: 30px;
  }
}
.flow__guide-des > p {
  font-size: 1.6rem;
}
.flow__guide-des > .company {
  line-height: 1.6;
  margin-bottom: 10px;
}
.flow__guide-des > .name {
  font-size: 1.9rem;
  margin-bottom: 20px;
}
.flow__guide-des > .name > span {
  font-size: 1.6rem;
  margin-left: 5px;
}
.flow__guide-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 20px;
}
.flow__guide-tag > .tag {
  display: block;
  width: 20%;
  text-align: center;
  border-radius: 30px;
  padding: 5px 10px;
  background-color: #D9D9D9;
  margin-right: 3%;
  color: #000;
}
@media screen and (max-width: 896px) {
  .flow__guide-tag > .tag {
    width: 30%;
  }
}
.flow__guide-tag > .tag:last-child {
  margin-right: 0;
}

.flow__contact {
  border-top: 2px solid black;
  padding: 40px;
}
.flow__contact > .flow__ttl {
  margin-bottom: 40px;
}
.flow__contact-ttl {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.flow__contact-inner {
  width: 400px;
  margin: 40px auto 0;
}
@media screen and (max-width: 896px) {
  .flow__contact-inner {
    width: 100%;
  }
}
.flow__contact-inner > p {
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 500;
}

.learning-wrap__blk {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 896px) {
  .learning-wrap__blk {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.learning__blk {
  width: 50%;
  margin-right: 5%;
  padding: 30px 30px 30px 30px;
  color: #000;
}
@media screen and (max-width: 1367px) {
  .learning__blk {
    width: 50%;
  }
}
@media screen and (max-width: 896px) {
  .learning__blk {
    padding: 10px;
    width: 100%;
    margin-bottom: 0px;
    min-height: 500px;
  }
}
@media screen and (max-width: 896px) {
  .learning__blk:nth-child(2) {
    padding-top: 30px !important;
    margin-top: 0;
  }
}
.learning__blk:nth-child(odd) {
  border-right: 1px solid #B7B7B7;
  border-bottom: 1px solid #B7B7B7;
  margin-right: 0;
}
@media screen and (max-width: 896px) {
  .learning__blk:nth-child(odd) {
    border-right: 0;
    padding: 30px 0 0 0;
  }
}
.learning__blk:nth-child(even) {
  border-bottom: 1px solid #B7B7B7;
  margin-right: 0;
}
@media screen and (max-width: 896px) {
  .learning__blk:nth-child(even) {
    border-right: 0;
    padding: 30px 0 0 0;
  }
}
.learning__blk:nth-of-type(3) {
  border-bottom: none;
}
@media screen and (max-width: 896px) {
  .learning__blk:nth-of-type(3) {
    border-bottom: 1px solid #B7B7B7;
  }
}
.learning__blk:nth-of-type(4) {
  border-bottom: none;
}
.learning__blk-img > img {
  width: 100%;
}
.learning__blk > h3 {
  font-size: 2rem;
  margin-top: 10px;
}
.learning__blk-txt {
  line-height: 1.8;
  font-size: 1.6rem;
}

.tag-wrap-under {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 20px 0;
}

.tag-bl {
  width: 25%;
  background-color: #000;
  border-radius: 20px;
  color: #fff;
  text-align: center;
  padding: 5px 15px;
  letter-spacing: 0.1em;
  font-size: 1.2rem;
  margin-right: 2%;
}
@media screen and (max-width: 896px) {
  .tag-bl {
    width: 40%;
    padding: 5px 0px;
  }
}
.tag-bl:last-child {
  margin-right: 0;
}
.tag-bl-under {
  background-color: #000;
  border-radius: 20px;
  color: #fff;
  text-align: center;
  padding: 6px 15px;
  letter-spacing: 0.1em;
  font-size: 1.2rem;
  margin-right: 1%;
  margin-bottom: 10px;
}

.model-bottom-ttl {
  font-size: 3rem;
  text-align: center;
  margin: 100px 0 30px 0;
}
@media screen and (max-width: 896px) {
  .model-bottom-ttl {
    margin: 30px 0 20px 0;
  }
}

.slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slide-ttl {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-align: left;
  margin: 0 auto;
  padding-right: 100px;
}
@media screen and (max-width: 896px) {
  .slide-ttl {
    -webkit-writing-mode: horizontal-tb !important;
        -ms-writing-mode: lr-tb !important;
            writing-mode: horizontal-tb !important;
    margin-bottom: 30px !important;
  }
}

.slide-ttl > p {
  font-size: 2rem;
}

.slide-ttl > h4 {
  font-size: 3rem;
}

.slide {
  position: relative;
  padding: 0 0 0 30vw;
}
@media screen and (max-width: 1500px) {
  .slide {
    padding: 0 0 0 20vw;
  }
}
@media screen and (max-width: 896px) {
  .slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 0 0 3vw;
  }
}

.slide-wrap {
  overflow: hidden;
}

.slick-slide {
  float: left;
  margin: 0 20px 0 0 !important;
  padding: 30px !important;
}

.slick-list {
  overflow: visible !important;
}

.main-slider {
  width: 100%;
  margin: 0 auto;
}

.slick-track {
  -webkit-transform: translate();
          transform: translate();
}

.main-slider .slick-slide.slick-current.slick-active {
  background-color: white !important;
}

.thumbnail-slider {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.thumbnail-slider li {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  margin: 5px;
  padding: 0 !important;
  cursor: pointer;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.8;
}

.slick-current {
  background-color: #FFEA00 !important;
}

.thumbnail-slider .slick-track {
  -webkit-transform: unset !important;
          transform: unset !important;
  width: 100% !important;
}

.main-slider {
  list-style: none;
}

.thumbnail-slider {
  list-style: none;
}

.thumbnail-slider {
  margin-top: 20px;
}

.main-slider img,
.thumbnail-slider img {
  width: 100%;
}

.main-slider li img {
  border-radius: 20px;
}

.thumbnail-slider li img {
  border-radius: 10px;
}

.slick-slide {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  position: relative;
}
@media screen and (max-width: 896px) {
  .slick-slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.slide-icon {
  padding: 12px;
  border: 2px solid black;
  border-radius: 50%;
  font-size: 1.4rem;
  position: absolute;
  top: 10px;
  left: 5%;
}

.slide-l {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 896px) {
  .slide-l {
    width: 100%;
  }
}

.slide-txt {
  margin-top: 20px;
  font-size: 2rem;
  text-align: left;
}
@media screen and (max-width: 896px) {
  .slide-txt {
    margin-top: 10px;
    margin-bottom: 20px;
  }
}

.slide-r {
  text-align: center;
}
@media screen and (max-width: 896px) {
  .slide-r {
    margin: 0 auto;
  }
}

.slide-r-img {
  width: 200px;
}

.slide-r-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
  margin-top: 40px;
  font-size: 1.4rem;
}
.slide-r-more > img {
  width: 40px;
  margin-left: 5px;
}

.ahter-blk > p:first-child {
  font-size: 1.8rem;
}
.ahter-blk > p:last-child {
  text-align: center;
  font-size: 3.6rem;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #FFEA00;
  border: 2px solid #000;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  line-height: 1.8;
  margin: 10px auto 20px;
}

.ather-ttl {
  font-size: 2.4rem;
  text-align: start;
  line-height: 1.5;
}
.ather-ttl > p {
  text-align: left;
}

.ather-r-ttl {
  font-size: 2.2rem;
  text-align: left;
}
.ather-r-ttl > P {
  text-align: left;
}

.ather-img {
  width: 300px;
  height: 300px;
  margin: 0 auto;
  padding-top: 20px;
}
@media screen and (max-width: 896px) {
  .ather-img {
    width: 200px;
    height: 200px;
  }
}
.ather-img > img {
  border-radius: 50% !important;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}