@charset "UTF-8";
/* 共通カラーの定義*/
/* フォントweightの定義*/
/* ==========================================================================
全ページ共通パーツ
========================================================================== */
html {
  font-size: 62.5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-y: scroll;
}

*,
::before,
::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  font-family: "Noto Sans JP", "游ゴシック体", "YuGothic", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.77;
  letter-spacing: 0.04em;
  background-color: #fff;
  color: #2E2E2E;
  word-wrap: break-word;
  /* IE */
  overflow-wrap: break-word;
  /* CSS3 */
  -webkit-text-size-adjust: 100%;
  overflow: hidden;
}

@media (max-width: 1024px) {
  body {
    font-size: 1.5rem;
  }
}

img {
  border: none;
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

li {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: .1s;
  transition: .1s;
}

a:hover {
  opacity: .7;
}

@media (min-width: 1025px) {
  .show--pc {
    display: block;
  }
  .show--sp {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .show--pc {
    display: none !important;
  }
  .show--sp {
    display: block;
  }
}

.inner {
  max-width: calc(1080px + 5% * 2);
  margin: 0 auto;
  padding: 100px 5%;
  width: 100%;
}

@media (max-width: 1024px) {
  .inner {
    max-width: calc(500px + 5% * 2);
    padding: 50px 5%;
  }
}

.btn-red {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border: 4px solid #F44B01;
  border-radius: 35px;
  color: #F44B01;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2rem;
  font-weight: 700;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  max-width: 358px;
  padding: 20px;
  position: relative;
  text-align: center;
  width: 100%;
}

@media (max-width: 1024px) {
  .btn-red {
    border: 2px solid #F44B01;
    font-size: 1.5rem;
    max-width: 275px;
    padding: 14px;
  }
}

.btn-red::after {
  border-right: solid 2px #F44B01;
  border-top: solid 2px #F44B01;
  content: '';
  height: 10px;
  position: absolute;
  right: 38px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: 0.1s;
  transition: 0.1s;
  width: 10px;
}

@media (max-width: 1024px) {
  .btn-red::after {
    height: 7px;
    right: 19px;
    width: 7px;
  }
}

.btn-red:hover {
  background: #F44B01;
  color: #fff;
  opacity: 1;
}

.btn-red:hover::after {
  border-right: solid 2px #fff;
  border-top: solid 2px #fff;
}

.btn-black {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #2E2E2E;
  border-radius: 26px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  letter-spacing: 0;
  max-width: 190px;
  padding: 15px;
  position: relative;
  width: 100%;
}

@media (max-width: 1024px) {
  .btn-black {
    font-size: 1.4rem;
    max-width: 150px;
    padding: 10px;
  }
}

.btn-black::after {
  border: 0;
  border-right: solid 2px #fff;
  border-top: solid 2px #fff;
  content: '';
  height: 9px;
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: 0.1s;
  transition: 0.1s;
  width: 9px;
}

@media (max-width: 1024px) {
  .btn-black::after {
    height: 7px;
    right: 16px;
    width: 7px;
  }
}

/* ==========================================================================
header
========================================================================== */
.header {
  background-color: #fff;
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.16);
  height: 70px;
  position: fixed;
  width: 100%;
  z-index: 9999;
}

@media (max-width: 1024px) {
  .header {
    height: 50px;
  }
}

.header-inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 4.218%;
}

@media (max-width: 1024px) {
  .header-inner {
    padding: 3px 10px 3px 5px;
  }
}

@media (max-width: 1024px) {
  .logo {
    max-width: 43px;
  }
}

.header-right {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  height: 100%;
  line-height: 1.5;
  width: 100%;
}

@media (max-width: 1024px) {
  .header-right {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-right: 50px;
  }
}

.global-nav {
  height: 100%;
  width: 100%;
}

header .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-right: 22.5px;
}

header .menu .menu-item {
  height: 100%;
}

header .menu .menu-item a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #2E2E2E;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 100%;
  padding: 22.5px;
  -webkit-transition: 0s;
  transition: 0s;
}

header .menu .menu-item a:hover {
  color: #F44B01;
  opacity: 1;
}

/* サブメニュー */
header .sub-menu {
  /* 初期状態でサブメニューを非表示にしておく */
  display: none;
}

@media (min-width: 1025px) {
  /* 子を持つ親メニューにマウスオーバーしたとき、サブメニューを表示する */
  header .menu-item-has-children {
    position: relative;
  }
  header .menu-item-has-children:hover .sub-menu {
    display: block;
  }
}

header .sub-menu {
  background: #2E2E2E;
  max-width: 430px;
  position: absolute;
  right: -40px;
  top: 70px;
}

header .sub-menu .menu-item {
  width: 100%;
  white-space: nowrap;
}

header .sub-menu .menu-item:hover {
  background: #1F1F1F;
  color: #fff;
}

header .sub-menu .menu-item a {
  color: #fff;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 23px 40px;
  width: 100%;
}

header .sub-menu .menu-item a:hover {
  color: #fff;
}

header .nav-btn-box {
  height: 100%;
  width: 160px;
}

@media (max-width: 1024px) {
  header .nav-btn-box {
    height: 35px;
    width: 150px;
  }
}

header .nav-btn-box .btn-black {
  border-radius: 0;
  font-weight: 500;
  height: 100%;
  letter-spacing: inherit;
  width: 160px;
  padding-bottom: 19px;
}

@media (max-width: 1024px) {
  header .nav-btn-box .btn-black {
    height: 35px;
    padding-bottom: 10px;
    width: 150px;
  }
}

header .nav-btn-box .btn-black::after {
  right: 15px;
}

@media (min-width: 1025px) {
  header .nav-btn-box .btn-black::after {
    top: 30px;
    -webkit-transform: translateY(0) rotate(45deg);
            transform: translateY(0) rotate(45deg);
  }
}

/*    ハンバーガーメニュー    */
header .hamburger-button {
  background-color: #fff;
  cursor: pointer;
  display: none;
  height: 50px;
  right: 10px;
  top: 0;
  position: fixed;
  width: 50px;
  z-index: 90;
}

header .hamburger-button span {
  border-radius: 0px;
  background-color: #000;
  content: '';
  display: block;
  height: 2px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
  top: 50%;
  position: absolute;
  width: 20px;
}

/* -(棒の太さ+間隔) */
header .hamburger-button span:nth-child(1) {
  margin-top: -5px;
}

/* 棒の太さ+間隔 */
header .hamburger-button span:nth-child(3) {
  margin-top: 5px;
}

/*メニューオープン時は×マークにする*/
header .hamburger-button.active span:nth-child(2) {
  /*真ん中の線を透明にする*/
  background-color: rgba(255, 255, 255, 0);
}

header .hamburger-button.active span:nth-child(1) {
  margin-top: 0;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

header .hamburger-button.active span:nth-child(3) {
  margin-top: 0;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

header .download-btn.active,
header .contact-btn.active {
  display: none;
}

/*メニューウィンドウ */
header .drawer {
  background-color: #fff;
  display: none;
  height: calc(100vh - 50px);
  left: 0;
  overflow: auto;
  padding: 5.33% 0 0 0;
  position: fixed;
  top: 50px;
  width: 100%;
  z-index: 80;
}

header .drawer-inner {
  max-width: 500px;
  margin: 0 auto;
}

header .drawer-nav {
  padding: 0 2% 0 4%;
}

header .drawer-nav .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

header .drawer-nav .menu .menu-item {
  width: 100%;
}

header .drawer-nav .menu .menu-item:first-child {
  padding-top: 0;
}

header .drawer-nav .menu a {
  border-bottom: 1px solid #ccc;
  display: block;
  font-weight: 700;
  padding: 15px 0;
  position: relative;
  width: 100%;
}

header .drawer-nav .menu a:hover {
  color: inherit;
}

header .drawer-nav .menu a .js-menuRoot {
  border-right: 2px solid #2E2E2E;
  border-top: 2px solid #2E2E2E;
  content: "";
  display: inline-block;
  height: 7px;
  position: absolute;
  right: 5.9%;
  pointer-events: none;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 7px;
}

header .drawer-nav .menu a .js-menuRoot::before {
  content: "";
  height: 20px;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  width: 20px;
}

header .drawer-nav .menu .menu-item-has-children a {
  -webkit-transition: 0s;
  transition: 0s;
}

header .drawer-nav .menu .menu-item-has-children a .js-menuRoot {
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
  pointer-events: auto;
}

header .drawer-nav .menu .menu-item-has-children a .js-menuRoot.active {
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

header .drawer-nav .menu .menu-item-has-children .sub-menu {
  background: #fff;
  max-width: 100%;
  position: static;
}

header .drawer-nav .menu .menu-item-has-children .sub-menu .menu-item:hover {
  background: inherit;
  color: inherit;
}

header .drawer-nav .menu .menu-item-has-children .sub-menu .menu-item a {
  color: #2E2E2E;
  padding: 15px;
}

header .drawer-btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 50px;
}

header .drawer-btn-box .drawer-btn {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.3rem;
  font-weight: bold;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 11px;
  position: relative;
  text-align: center;
  width: 50%;
}

@media screen and (max-width: 400px) {
  header .drawer-btn-box .drawer-btn {
    font-size: 1.2rem;
  }
}

header .drawer-btn-box .drawer-btn::before {
  content: '';
  left: 8%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 400px) {
  header .drawer-btn-box .drawer-btn::before {
    left: 5%;
  }
}

header .drawer-btn-box .drawer-btn::after {
  border: 0;
  border-right: solid 2px #fff;
  border-top: solid 2px #fff;
  content: '';
  height: 9px;
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: 0.1s;
  transition: 0.1s;
  width: 9px;
}

@media screen and (max-width: 400px) {
  header .drawer-btn-box .drawer-btn::after {
    height: 6px;
    right: 15px;
    width: 6px;
  }
}

header .drawer-btn-box .drawer-btn.training {
  background: #F44B01;
  color: #fff;
}

header .drawer-btn-box .drawer-btn.training::before {
  background: url(../img/common/training-icon.svg) no-repeat center center/24px 24px;
  height: 24px;
  width: 24px;
}

@media screen and (max-width: 400px) {
  header .drawer-btn-box .drawer-btn.training::before {
    background: url(../img/common/training-icon.svg) no-repeat center center/19px 19px;
    height: 19px;
    width: 19px;
  }
}

header .drawer-btn-box .drawer-btn.claim {
  background: #F1EEE8;
}

header .drawer-btn-box .drawer-btn.claim::before {
  background: url(../img/common/drawer-claim-icon.svg) no-repeat center center/20px 27px;
  height: 27px;
  width: 20px;
}

@media screen and (max-width: 400px) {
  header .drawer-btn-box .drawer-btn.claim::before {
    background: url(../img/common/drawer-claim-icon.svg) no-repeat center center/15px 18px;
    height: 18px;
    width: 15px;
  }
}

header .drawer-btn-box .drawer-btn.claim::after {
  border-right: solid 2px #2E2E2E;
  border-top: solid 2px #2E2E2E;
}

header .drawer-btn-box .drawer-btn.message {
  background: #F1EEE8;
}

header .drawer-btn-box .drawer-btn.message::before {
  background: url(../img/common/drawer-message-icon.svg) no-repeat center center/30px 28px;
  height: 28px;
  width: 30px;
}

@media screen and (max-width: 400px) {
  header .drawer-btn-box .drawer-btn.message::before {
    background: url(../img/common/drawer-message-icon.svg) no-repeat center center/25px 23px;
    height: 23px;
    width: 25px;
  }
}

header .drawer-btn-box .drawer-btn.message::after {
  border-right: solid 2px #2E2E2E;
  border-top: solid 2px #2E2E2E;
}

header .drawer-btn-box .drawer-btn.movie {
  background: #F44B01;
  color: #fff;
}

header .drawer-btn-box .drawer-btn.movie::before {
  background: url(../img/common/movie-icon.svg) no-repeat center center/26px 20px;
  height: 20px;
  width: 26px;
}

@media screen and (max-width: 400px) {
  header .drawer-btn-box .drawer-btn.movie::before {
    background: url(../img/common/movie-icon.svg) no-repeat center center/21px 15px;
    height: 15px;
    width: 21px;
  }
}

/* PC用ナビを非表示にしてハンバーガーメニュー出現 */
@media (max-width: 1024px) {
  /* ハンバーガーメニューが出現する幅 */
  .global-nav {
    display: none;
  }
  header .hamburger-button {
    display: block;
  }
}

/* ハンバーガーメニュー出現幅より大きい時、ドロワーが開いていた場合は非表示 */
@media screen and (min-width: 1025px) {
  /* ハンバーガーメニューが出現する幅 + 1 */
  header .drawer {
    display: none !important;
  }
}

/* ==========================================================================
footer
========================================================================== */
.footer-banner {
  position: relative;
}

.footer-banner::before {
  background: url(../img/common/banner-bg.svg) no-repeat top center/cover;
  content: '';
  height: 365px;
  left: 0px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

@media (max-width: 1024px) {
  .footer-banner::before {
    content: none;
  }
}

.footer-banner .inner {
  max-width: calc(1280px + 5% * 2);
}

@media (max-width: 1024px) {
  .footer-banner .inner {
    max-width: calc(500px + 5% * 2);
    padding: 30px 5%;
  }
}

.footer-banner .widget-box {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 1024px) {
  .footer-banner .widget-box {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.footer-banner .my_widget {
  background: #fff;
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.16);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 32.03%;
}

@media (max-width: 1024px) {
  .footer-banner .my_widget {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 30.5%;
  }
}

.footer-banner .my_widget:not(:first-child) {
  margin-left: 1.56%;
}

@media (max-width: 1024px) {
  .footer-banner .my_widget:not(:first-child) {
    margin-left: 4.23%;
  }
}

.footer-banner .my_widget:hover {
  opacity: .7;
}

.footer-banner .my_widget .widget_sp_image-image-link {
  width: 50%;
}

@media (max-width: 1024px) {
  .footer-banner .my_widget .widget_sp_image-image-link {
    width: 100%;
  }
}

.footer-banner .my_widget .widget_sp_image-image-link img {
  aspect-ratio: 4 / 3;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1024px) {
  .footer-banner .my_widget .widget_sp_image-image-link img {
    aspect-ratio: 2 / 1;
  }
}

.footer-banner .my_widget .widget_sp_image-image-link:hover {
  opacity: 1;
}

.footer-banner .my_widget .widget_sp_image-description {
  width: 50%;
}

@media (max-width: 1024px) {
  .footer-banner .my_widget .widget_sp_image-description {
    width: 100%;
  }
}

.footer-banner .my_widget .widget_sp_image-description p {
  height: 100%;
  width: 100%;
}

.footer-banner .my_widget .widget_sp_image-description a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #F44B01;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2rem;
  font-weight: 500;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  line-height: 1.65;
  padding: 0 11.21%;
  width: 100%;
}

@media (max-width: 1400px) {
  .footer-banner .my_widget .widget_sp_image-description a {
    font-size: 1.42vw;
  }
}

@media (max-width: 1024px) {
  .footer-banner .my_widget .widget_sp_image-description a {
    font-size: 1.2rem;
    min-height: 45px;
    padding: 5px 16.66%;
  }
}

.footer-banner .my_widget .widget_sp_image-description a:hover {
  opacity: 1;
}

.footer-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
}

@media (max-width: 1024px) {
  .footer-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer-left {
  background: #2E2E2E;
  color: #fff;
  padding: 45px 3%;
  width: 36.9%;
}

@media (max-width: 1024px) {
  .footer-left {
    padding: 30px 5%;
    width: 100%;
  }
}

.footer-left-box {
  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;
  margin-left: auto;
  max-width: 300px;
  text-align: center;
}

@media (max-width: 1024px) {
  .footer-left-box {
    margin: 0 auto;
  }
}

@media (max-width: 1024px) {
  .footer-left-box .footer-logo img {
    max-width: 28px;
  }
}

.footer-left-box .tel {
  font-family: 'Roboto Condensed', sans-serif;
  font-style: italic;
  font-size: 4.3rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.32;
}

@media (max-width: 1024px) {
  .footer-left-box .tel {
    font-size: 3rem;
  }
}

.footer-left-box .time {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  letter-spacing: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 1024px) {
  .footer-left-box .time {
    font-size: 1.4rem;
  }
}

.footer-left-box .time .num {
  font-size: 2rem;
  margin-left: 10px;
}

@media (max-width: 1024px) {
  .footer-left-box .time .num {
    font-size: 1.6rem;
  }
}

.footer-left-box .time small {
  font-size: 1.4rem;
}

.footer-left-box .mail-btn {
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  padding: 10px;
  margin: 10px auto 0;
  max-width: 245px;
  position: relative;
  width: 100%;
}

@media (max-width: 1024px) {
  .footer-left-box .mail-btn {
    font-size: 1.6rem;
    max-width: initial;
  }
  .footer-left-box .mail-btn::after {
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
    content: "";
    display: inline-block;
    height: 7px;
    position: absolute;
    right: 5.9%;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
    width: 7px;
  }
}

.footer-left-box .mail-btn:hover {
  background: #fff;
  color: #2E2E2E;
}

@media (max-width: 1024px) {
  .footer-left-box .mail-btn:hover::after {
    border-right: 2px solid #2E2E2E;
    border-top: 2px solid #2E2E2E;
  }
}

.footer-right {
  background: #FAF9F7;
  padding: 3.5% 0 3.5% 5.57%;
  position: relative;
  width: calc(100% - 36.9%);
}

@media (max-width: 1024px) {
  .footer-right {
    padding: 5%;
    width: 100%;
  }
}

.footer-right .footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  height: 150px;
  line-height: 1.5;
  margin-bottom: 18px;
}

@media (max-width: 1024px) {
  .footer-right .footer-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 1.3rem;
    font-weight: 400;
    height: 100%;
  }
}

.footer-right .footer-nav li {
  letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
  .footer-right .footer-nav li {
    border-bottom: 1px solid #ccc;
    margin: 0 auto;
    max-width: 500px;
    padding: 15px 0 15px 4%;
    width: 100%;
  }
  .footer-right .footer-nav li:first-child {
    padding-top: 0;
  }
}

.footer-right .footer-nav li:not(:nth-child(4n)) {
  margin-bottom: 17px;
}

@media (max-width: 1024px) {
  .footer-right .footer-nav li:not(:nth-child(4n)) {
    margin-bottom: 0;
  }
}

@media (max-width: 1024px) {
  .footer-right .footer-nav li a {
    display: block;
    position: relative;
    width: 100%;
  }
  .footer-right .footer-nav li a::after {
    border-right: 2px solid #2E2E2E;
    border-top: 2px solid #2E2E2E;
    content: "";
    display: inline-block;
    height: 7px;
    position: absolute;
    right: 5.9%;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
    width: 7px;
  }
}

.footer-right .footer-nav li a:hover {
  color: #F44B01;
  opacity: 1;
}

.footer-right .youtube-icon {
  max-width: 76%;
  text-align: right;
}

@media (max-width: 1024px) {
  .footer-right .youtube-icon {
    max-width: 100%;
    text-align: center;
  }
}

.footer-right .youtube-icon a {
  display: inline-block;
}

.totop {
  bottom: 20px;
  -webkit-filter: drop-shadow(0px 3px 20px rgba(0, 0, 0, 0.16));
          filter: drop-shadow(0px 3px 20px rgba(0, 0, 0, 0.16));
  position: absolute;
  right: 5.78%;
}

@media (max-width: 1024px) {
  .totop {
    bottom: -25px;
    max-width: 40px;
  }
}

.copyright {
  display: block;
  font-size: 1.4rem;
  padding: 30px;
  text-align: center;
  width: 100%;
}

@media (max-width: 1024px) {
  .copyright {
    font-size: 1.1rem;
    padding: 15px;
  }
}

/* ==========================================================================
topページ
========================================================================== */
.front-page {
  font-size: 1.8rem;
}

.front-page .inner {
  max-width: calc(1280px + 5% * 2);
}

@media (max-width: 1024px) {
  .front-page .inner {
    max-width: calc(500px + 5% * 2);
  }
}

@media (min-width: 1025px) {
  .front-page .white-bg {
    position: relative;
  }
  .front-page .white-bg::before {
    background: url(../img/top/hexagon-bg.svg) no-repeat top center/cover;
    content: '';
    height: 100%;
    left: 0px;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
  }
}

.front-page .h2-ttl {
  display: block;
  font-size: 11.2rem;
  line-height: 1.5;
}

@media (min-width: 1025px) and (max-width: 1200px) {
  .front-page .h2-ttl {
    font-size: 9vw;
  }
}

@media (max-width: 1024px) {
  .front-page .h2-ttl {
    font-size: 4.9rem;
    line-height: 1.48;
    text-align: center;
  }
}

.front-page .h2-ttl span {
  display: inline-block;
  font-family: 'Roboto Condensed', sans-serif;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.front-page .h2-ttl span::after {
  background: #F44B01;
  border-radius: 5px;
  content: '';
  height: 74px;
  position: absolute;
  right: -37px;
  top: 0;
  width: 74px;
  z-index: -1;
}

@media (max-width: 1024px) {
  .front-page .h2-ttl span::after {
    height: 32px;
    right: -16px;
    width: 32px;
  }
}

.front-page .h3-ttl {
  font-size: 5.4rem;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .front-page .h3-ttl {
    font-size: 2.8rem;
    line-height: 1.68;
  }
}

.front-page .h3-ttl .txt-red {
  color: #F44B01;
}

.front-page .h3-ttl .txt-large {
  font-size: 6.4rem;
}

@media (max-width: 1024px) {
  .front-page .h3-ttl .txt-large {
    font-size: 3.2rem;
  }
}

/* =====================
topページ mv
========================*/
.mv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 70px;
}

@media (max-width: 1024px) {
  .mv {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 68px auto 0;
    max-width: calc(500px + 5% * 2);
    padding: 0 5%;
  }
}

.mv-left {
  max-height: 950px;
  max-width: 960px;
  width: 50%;
}

@media (min-width: 1025px) {
  .mv-left {
    height: 50vw;
  }
}

@media (max-width: 1024px) {
  .mv-left {
    width: 100%;
  }
}

.mv-left-upper {
  height: 66.66%;
  max-height: 640px;
  position: relative;
  width: 100%;
}

@media (max-width: 1024px) {
  .mv-left-upper {
    height: 100%;
  }
}

.mv-left-upper::before {
  background: url(../img/common/mv-hexagon01.svg) no-repeat center center/230px 200px;
  content: '';
  height: 200px;
  left: 7%;
  position: absolute;
  top: 5%;
  width: 230px;
  z-index: -1;
}

@media (max-width: 1920px) {
  .mv-left-upper::before {
    background: url(../img/common/mv-hexagon01.svg) no-repeat center center/100% auto;
    left: 10%;
    height: 30%;
    width: 18%;
  }
}

@media (max-width: 1024px) {
  .mv-left-upper::before {
    background: url(../img/common/mv-hexagon01.svg) no-repeat center center/115px 100px;
    left: -4%;
    height: 100px;
    top: 14%;
    width: 115px;
  }
}

.mv-left-upper::after {
  background: url(../img/common/mv-hexagon02.svg) no-repeat center center/418px 482px;
  content: '';
  height: 482px;
  position: absolute;
  right: 3.43%;
  top: 18.43%;
  width: 418px;
  z-index: -1;
}

@media (max-width: 1920px) {
  .mv-left-upper::after {
    background: url(../img/common/mv-hexagon02.svg) no-repeat center center/100% auto;
    height: 76%;
    width: 43%;
  }
}

@media (max-width: 1024px) {
  .mv-left-upper::after {
    background: url(../img/common/mv-hexagon02.svg) no-repeat center center/176px 153px;
    height: 153px;
    right: -2%;
    top: initial;
    bottom: -41%;
    width: 176px;
  }
}

@media (min-width: 1025px) {
  .mv-left-upper .mv-left-box {
    left: 13%;
    position: absolute;
    top: 20%;
  }
}

.mv-left-upper .mv-left-box .mv-sub-copy {
  font-size: 4.6rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.43;
}

@media (max-width: 1920px) {
  .mv-left-upper .mv-left-box .mv-sub-copy {
    font-size: 2.39vw;
  }
}

@media (max-width: 1024px) {
  .mv-left-upper .mv-left-box .mv-sub-copy {
    font-size: 2rem;
    line-height: 1.45;
  }
}

.mv-left-upper .mv-left-box .mv-sub-copy .red {
  background: #F44B01;
  color: #fff;
  padding: 0 15px 5px;
}

@media (max-width: 1024px) {
  .mv-left-upper .mv-left-box .mv-sub-copy .red {
    padding: 2px 6px;
  }
}

.mv-left-upper .mv-left-box .mv-sub-copy .red:first-child {
  margin-right: 15px;
}

@media (max-width: 1024px) {
  .mv-left-upper .mv-left-box .mv-sub-copy .red:first-child {
    margin-right: 8px;
  }
}

.mv-left-upper .mv-left-box .mv-sub-copy .red:nth-child(2) {
  margin-right: 10px;
}

@media (max-width: 1024px) {
  .mv-left-upper .mv-left-box .mv-sub-copy .red:nth-child(2) {
    margin-right: 3px;
  }
}

.mv-left-upper .mv-left-box .mv-main-copy {
  margin-top: 3.125%;
}

@media (max-width: 1024px) {
  .mv-left-upper .mv-left-box .mv-main-copy {
    margin-top: 4%;
  }
}

@media (max-width: 1920px) {
  .mv-left-upper .mv-left-box .mv-main-copy img {
    width: 38.95vw;
  }
}

@media (max-width: 1024px) {
  .mv-left-upper .mv-left-box .mv-main-copy img {
    width: 94.02%;
  }
}

.mv-left-upper .mv-left-box .mv-txt {
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  line-height: 1.56;
  margin-top: 45px;
  max-width: 612px;
}

@media (max-width: 1920px) {
  .mv-left-upper .mv-left-box .mv-txt {
    font-size: 1.25vw;
    margin-top: 5%;
    max-width: 75%;
  }
}

@media (max-width: 1024px) {
  .mv-left-upper .mv-left-box .mv-txt {
    font-size: 1.5rem;
    line-height: 2;
    max-width: 94.02%;
  }
}

.mv-left-upper .scroll {
  bottom: 2.34%;
  position: absolute;
  left: 5.625%;
  width: 28px;
}

@media (max-width: 1920px) {
  .mv-left-upper .scroll {
    width: 1.6%;
  }
}

@media (max-width: 767px) {
  .mv-left-upper .scroll {
    display: none;
  }
}

.mv-left-lower {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%x;
}

@media (max-width: 1024px) {
  .mv-left-lower {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: 100%;
    margin-top: 20px;
  }
}

@media (min-width: 1025px) {
  .mv-left-lower:last-child .mv-square-link {
    width: 33.4%;
  }
}

.mv-square-link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #F44B01;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-height: 320px;
  position: relative;
  text-align: center;
  width: 33.33%;
}

@media (max-width: 1024px) {
  .mv-square-link {
    max-height: 250px;
    max-width: 250px;
    width: 50%;
  }
  .mv-square-link::before {
    content: "";
    display: block;
    padding-top: 100%;
  }
}

.mv-square-link::after {
  border-color: transparent transparent #ffffff transparent;
  border-style: solid;
  border-width: 0 0 18px 18px;
  bottom: 8px;
  content: '';
  height: 0;
  position: absolute;
  right: 8px;
  width: 0;
}

@media (max-width: 1024px) {
  .mv-square-link::after {
    bottom: 4px;
    border-width: 0 0 10px 10px;
    right: 4px;
  }
}

@media (max-width: 1500px) {
  .mv-square-link img {
    width: 3.4vw;
  }
}

@media (max-width: 1024px) {
  .mv-square-link img {
    max-width: 31.49%;
    width: 100%;
  }
}

@media (max-width: 499px) {
  .mv-square-link img {
    max-width: 25%;
  }
}

@media (max-width: 1500px) {
  .mv-square-link .claim-icon {
    width: 2.59vw;
  }
}

@media (max-width: 1024px) {
  .mv-square-link .claim-icon {
    max-width: 28%;
    width: 100%;
  }
}

@media (max-width: 499px) {
  .mv-square-link .claim-icon {
    max-width: 25%;
  }
}

.mv-square-link p {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.52;
  margin-top: 8.75%;
}

@media (max-width: 1500px) {
  .mv-square-link p {
    font-size: 1.4vw;
  }
}

@media (max-width: 1024px) {
  .mv-square-link p {
    font-size: 1.5rem;
    line-height: 2;
  }
}

.mv-square-img {
  width: 33.33%;
}

@media (max-width: 1024px) {
  .mv-square-img {
    width: 50%;
  }
}

.mv-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 50vw;
  max-height: 942px;
  max-width: 960px;
  width: 50%;
}

@media (max-width: 1024px) {
  .mv-right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
    width: 100%;
  }
}

.mv-right-box {
  height: 100%;
  width: 33.33%;
}

@media (max-width: 1024px) {
  .mv-right-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  .mv-right-box:last-child {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.mv-right-box .mv-square-link {
  height: 320px;
  height: 33.3%;
  width: 100%;
}

.mv-right-box .mv-square-img {
  width: 100%;
}

/* ======================
topページ about
=========================*/
.top-about {
  margin-top: 150px;
}

@media (max-width: 1024px) {
  .top-about {
    margin-top: 0;
  }
}

.top-about .inner {
  max-width: calc(1528px + 5% * 2);
  margin: 0 0 0 auto;
}

@media (max-width: 1024px) {
  .top-about .inner {
    max-width: calc(500px + 5% * 2);
    margin: 0 auto;
  }
}

.top-about .about-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 1024px) {
  .top-about .about-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.top-about .about-img {
  margin-top: 30px;
  width: 45.81%;
}

@media (max-width: 1024px) {
  .top-about .about-img {
    margin: 50px auto 0;
    width: 88.05%;
  }
}

.top-about .about-txt {
  text-align: right;
  width: 46.72%;
}

@media (max-width: 1024px) {
  .top-about .about-txt {
    text-align: center;
    width: 100%;
  }
}

.top-about .about-txt .h2-ttl {
  margin-right: 37px;
}

@media (max-width: 1024px) {
  .top-about .about-txt .h2-ttl {
    margin-right: 0;
  }
}

.top-about .about-txt .about-txt-box {
  margin-top: 50px;
  margin-top: 9%;
  text-align: left;
}

@media (max-width: 1024px) {
  .top-about .about-txt .about-txt-box {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    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;
    margin-top: 40px;
  }
}

@media (min-width: 1025px) and (max-width: 1200px) {
  .top-about .about-txt .about-txt-box .h3-ttl {
    font-size: 4.5vw;
  }
  .top-about .about-txt .about-txt-box .h3-ttl .txt-large {
    font-size: 5.33vw;
  }
}

.top-about .about-txt .about-txt-box p {
  margin: 40px 0;
}

/* ======================
topページ pickup
=========================*/
.top-pickup {
  padding-bottom: 120px;
}

@media (max-width: 1024px) {
  .top-pickup {
    padding-bottom: 0;
  }
}

.top-pickup .h2-ttl {
  font-size: 5rem;
}

@media (max-width: 1024px) {
  .top-pickup .h2-ttl {
    font-size: 2.5rem;
    text-align: center;
  }
}

.top-pickup .h2-ttl span::after {
  content: none;
}

.top-pickup .pickup-slide {
  background: #fff;
  -webkit-box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.16);
  margin-top: 10px;
  padding: 15px 3.125%;
  position: relative;
}

@media (max-width: 1024px) {
  .top-pickup .pickup-slide {
    padding: 0 6%;
  }
}

@media (max-width: 599px) {
  .top-pickup .pickup-slide {
    margin: 10px auto 0;
    max-width: 295px;
  }
}

.top-pickup .pickup-item {
  margin: 0 auto;
}

.top-pickup .pickup-item a {
  display: block;
  height: 290px;
  margin: 0 10px;
  padding: 50px 30px 0;
  width: 290px;
}

@media (max-width: 1024px) {
  .top-pickup .pickup-item a {
    height: auto;
    margin: 0;
    padding: 18% 9.72%;
    width: 230px;
  }
}

.top-pickup .pickup-item a:hover {
  color: #F44B01;
}

.top-pickup .pickup-date {
  display: block;
  font-size: 1.4rem;
  line-height: 1.42;
}

@media (max-width: 1024px) {
  .top-pickup .pickup-date {
    font-size: 1.7rem;
  }
}

.top-pickup .pickup-ttl {
  font-size: 2rem;
  line-height: 1.8;
  margin-top: 20px;
}

@media (max-width: 1024px) {
  .top-pickup .pickup-ttl {
    font-size: 1.5rem;
    margin-top: 15px;
  }
}

.top-pickup .slick-prev,
.top-pickup .slick-next {
  background: #2E2E2E;
  height: 50px;
  width: 50px;
  z-index: 1;
}

@media (max-width: 1024px) {
  .top-pickup .slick-prev,
  .top-pickup .slick-next {
    height: 40px;
    width: 40px;
  }
}

.top-pickup .slick-prev::before,
.top-pickup .slick-next::before {
  content: "";
  display: block;
  height: 10px;
  left: 50%;
  opacity: 1;
  position: absolute;
  top: 50%;
  -webkit-transform: translateX(-40%) translateY(-50%) rotate(-45deg);
          transform: translateX(-40%) translateY(-50%) rotate(-45deg);
  width: 10px;
}

.top-pickup .slick-prev:hover,
.top-pickup .slick-next:hover {
  opacity: .7;
}

.top-pickup .slick-prev::before {
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}

.top-pickup .slick-next::before {
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: translateX(-60%) translateY(-50%) rotate(-45deg);
          transform: translateX(-60%) translateY(-50%) rotate(-45deg);
}

@media (max-width: 1024px) {
  .top-pickup .slick-dots {
    bottom: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .top-pickup .slick-dots li {
    height: 6px;
    margin: 0 3px;
    width: 6px;
  }
  .top-pickup .slick-dots li button {
    height: 6px;
    width: 6px;
  }
  .top-pickup .slick-dots li button::before {
    color: #F2F0EA;
    height: 6px;
    opacity: 1;
    width: 6px;
  }
  .top-pickup .slick-dots .slick-active button::before {
    color: #2E2E2E;
  }
}

/* ======================
topページ reason
=========================*/
.top-reason {
  background: #F1EEE8;
}

.top-reason .inner {
  max-width: calc(1530px + 5% * 2);
  margin: 0 auto 0 0;
}

@media (max-width: 1024px) {
  .top-reason .inner {
    max-width: calc(500px + 5% * 2);
    margin: 0 auto;
  }
}

.top-reason .reason-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 1024px) {
  .top-reason .reason-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.top-reason .reason-txt {
  width: 47.77%;
}

@media (max-width: 1024px) {
  .top-reason .reason-txt {
    width: 100%;
  }
}

.top-reason .reason-txt .reason-txt-box {
  margin-left: auto;
  margin-top: 70px;
  width: 65.8%;
}

@media (max-width: 1200px) {
  .top-reason .reason-txt .reason-txt-box {
    width: 80%;
  }
}

@media (max-width: 1024px) {
  .top-reason .reason-txt .reason-txt-box {
    margin-top: 40px;
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .top-reason .reason-txt .reason-txt-box .h3-ttl {
    text-align: center;
  }
}

.top-reason .reason-txt .reason-txt-box p {
  margin: 50px 0;
}

@media (max-width: 1024px) {
  .top-reason .reason-txt .reason-txt-box p {
    margin: 40px 0;
  }
}

.top-reason .reason-img {
  margin-top: auto;
  width: 41.83%;
}

@media (max-width: 1024px) {
  .top-reason .reason-item {
    margin: 0 auto 15px;
    max-width: 250px;
  }
  .top-reason .btn-red {
    margin: 25px auto;
  }
}

/* ======================
topページ training
=========================*/
.top-training {
  margin-top: 100px;
}

@media (max-width: 1024px) {
  .top-training {
    margin-top: 0;
  }
}

.top-training .inner {
  max-width: calc(96.35% + 5% * 2);
}

@media (max-width: 1024px) {
  .top-training .inner {
    max-width: 100%;
    padding: 50px 0;
  }
}

.top-training .inner .h2-ttl {
  display: block;
  margin-right: 37px;
  text-align: right;
}

@media (max-width: 1024px) {
  .top-training .inner .h2-ttl {
    margin-right: 0;
    text-align: center;
  }
}

.top-training .training-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  margin-top: 10px;
}

@media (max-width: 1024px) {
  .top-training .training-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.top-training .training-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-left: calc(50% - 50vw);
  width: 58.37%;
}

@media (max-width: 1024px) {
  .top-training .training-left {
    display: block;
    margin-left: 0;
    width: 100%;
  }
}

@media (min-width: 1025px) {
  .top-training .training-left .training-slide-wrapper {
    width: 1360px;
  }
}

@media (max-width: 1024px) {
  .top-training .training-slide {
    margin: 30px auto 0;
    width: 100%;
  }
}

.top-training .training-slide .slick-list {
  padding: 20px 5px 20px 0;
}

@media (max-width: 1024px) {
  .top-training .training-slide .slick-list {
    padding: 10px 0 !important;
  }
}

.top-training .training-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 0 40px;
  padding: 100px;
  width: 645px;
}

@media (max-width: 1024px) {
  .top-training .training-item {
    min-height: 328px;
    margin: 0 8px;
    padding: 25px;
    width: 305px;
  }
}

.top-training .training-item .training-ttl-h3 {
  margin-bottom: 15px;
}

@media (max-width: 1024px) {
  .top-training .training-item .training-ttl-h3 {
    font-size: 1.8rem;
  }
}

.top-training .training-item p {
  margin-bottom: 20px;
  text-align: left;
}

@media (max-width: 1024px) {
  .top-training .training-item p {
    font-size: 1.5rem;
  }
}

.top-training .training-item .btn-black {
  margin-top: auto;
}

.top-training .training-arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 30px;
  padding-right: 5px;
}

@media (max-width: 1024px) {
  .top-training .training-arrows {
    margin-top: 40px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.top-training .training-arrows .slick-prev,
.top-training .training-arrows .slick-next {
  background: #2E2E2E;
  height: 30px;
  position: static;
  top: 0;
  -webkit-transform: translate(0);
          transform: translate(0);
  width: 30px;
  z-index: 1;
}

@media (max-width: 1024px) {
  .top-training .training-arrows .slick-prev,
  .top-training .training-arrows .slick-next {
    height: 40px;
    width: 40px;
  }
}

.top-training .training-arrows .slick-prev::before,
.top-training .training-arrows .slick-next::before {
  content: "";
  display: block;
  height: 10px;
  left: 50%;
  opacity: 1;
  position: absolute;
  top: 50%;
  -webkit-transform: translateX(-40%) translateY(-50%) rotate(-45deg);
          transform: translateX(-40%) translateY(-50%) rotate(-45deg);
  width: 10px;
}

.top-training .training-arrows .slick-prev:hover,
.top-training .training-arrows .slick-next:hover {
  opacity: .7;
}

.top-training .training-arrows .slick-prev::before {
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}

.top-training .training-arrows .slick-next {
  margin-left: 12px;
}

.top-training .training-arrows .slick-next::before {
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: translateX(-60%) translateY(-50%) rotate(-45deg);
          transform: translateX(-60%) translateY(-50%) rotate(-45deg);
}

.top-training .training-right {
  margin: auto 0 auto 6.2%;
  width: 27.02%;
}

@media (max-width: 1300px) {
  .top-training .training-right {
    width: 32%;
  }
}

@media (max-width: 1024px) {
  .top-training .training-right {
    margin-left: 0;
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .top-training .training-right .h3-ttl {
    text-align: center;
  }
}

.top-training .training-right p {
  margin: 50px 0;
}

@media (max-width: 1024px) {
  .top-training .training-right p {
    margin: 50px auto 0;
    max-width: 500px;
    padding: 0 5%;
  }
}

@media (max-width: 1024px) {
  .top-training .btn-red {
    margin: 40px auto 0;
  }
}

/* ======================
topページ teacher
=========================*/
.top-teacher {
  padding-bottom: 70px;
}

@media (max-width: 1024px) {
  .top-teacher {
    padding-bottom: 0;
  }
}

.top-teacher .inner {
  max-width: calc(96.35% + 5% * 2);
}

@media (max-width: 1024px) {
  .top-teacher .inner {
    max-width: 100%;
    padding: 50px 0;
  }
}

.top-teacher .teacher-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}

@media (max-width: 1024px) {
  .top-teacher .teacher-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.top-teacher .teacher-left {
  margin: auto 5.4% auto 0;
  width: 27.02%;
}

@media (max-width: 1300px) {
  .top-teacher .teacher-left {
    width: 32%;
  }
}

@media (max-width: 1024px) {
  .top-teacher .teacher-left {
    margin-right: 0;
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .top-teacher .teacher-left .h3-ttl {
    text-align: center;
  }
}

.top-teacher .teacher-left p {
  margin: 50px 0;
}

@media (max-width: 1024px) {
  .top-teacher .teacher-left p {
    margin: 40px auto 20px;
    max-width: 500px;
    padding: 0 5%;
  }
}

.top-teacher .teacher-right {
  margin-right: calc(50% - 50vw);
  width: 58.37%;
}

@media (max-width: 1024px) {
  .top-teacher .teacher-right {
    margin: 0px auto;
    width: 100%;
  }
}

.top-teacher .teacher-slide .slick-list {
  padding: 20px 0px 20px 20px;
}

@media (max-width: 1024px) {
  .top-teacher .teacher-slide .slick-list {
    padding: 23px 0px 20px 20px !important;
  }
}

.top-teacher .teacher-item {
  margin: 0px 100px 0 0;
  width: 640px;
}

@media (max-width: 1024px) {
  .top-teacher .teacher-item {
    margin: 0px 9px;
    height: 222px;
    width: 295px;
  }
}

.top-teacher .teacher-item:hover {
  opacity: .7;
}

.top-teacher .teacher-img {
  position: relative;
  width: 100%;
}

.top-teacher .teacher-img img {
  aspect-ratio: 4 / 3;
  -webkit-box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.16);
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1024px) {
  .top-teacher .teacher-img img {
    -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.16);
            box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.16);
  }
}

.top-teacher .teacher-img-txt {
  bottom: 20px;
  position: absolute;
  right: 0;
  text-align: right;
}

@media (max-width: 1024px) {
  .top-teacher .teacher-img-txt {
    bottom: 15px;
  }
}

.top-teacher .teacher-txt-h3 {
  background: #fff;
  border-bottom: none;
  font-size: 4rem;
  font-weight: 400;
  margin-top: 0;
  padding: 4px;
  text-align: center;
  width: 360px;
}

@media (max-width: 1024px) {
  .top-teacher .teacher-txt-h3 {
    font-size: 2rem;
    padding: 2px;
    width: 160px;
  }
}

.top-teacher .teacher-arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 10px;
  padding-left: 20px;
}

@media (max-width: 1024px) {
  .top-teacher .teacher-arrows {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 20px;
    padding-left: 0;
  }
}

.top-teacher .teacher-arrows .slick-prev,
.top-teacher .teacher-arrows .slick-next {
  background: #2E2E2E;
  height: 30px;
  position: static;
  top: 0;
  -webkit-transform: translate(0);
          transform: translate(0);
  width: 30px;
  z-index: 1;
}

@media (max-width: 1024px) {
  .top-teacher .teacher-arrows .slick-prev,
  .top-teacher .teacher-arrows .slick-next {
    height: 40px;
    width: 40px;
  }
}

.top-teacher .teacher-arrows .slick-prev::before,
.top-teacher .teacher-arrows .slick-next::before {
  content: "";
  display: block;
  height: 10px;
  left: 50%;
  opacity: 1;
  position: absolute;
  top: 50%;
  -webkit-transform: translateX(-40%) translateY(-50%) rotate(-45deg);
          transform: translateX(-40%) translateY(-50%) rotate(-45deg);
  width: 10px;
}

.top-teacher .teacher-arrows .slick-prev:hover,
.top-teacher .teacher-arrows .slick-next:hover {
  opacity: .7;
}

.top-teacher .teacher-arrows .slick-prev::before {
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}

.top-teacher .teacher-arrows .slick-next {
  margin-left: 12px;
}

.top-teacher .teacher-arrows .slick-next::before {
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: translateX(-60%) translateY(-50%) rotate(-45deg);
          transform: translateX(-60%) translateY(-50%) rotate(-45deg);
}

@media (max-width: 1024px) {
  .top-teacher .btn-red {
    margin: 40px auto 0;
  }
}

/* ======================
topページ information
=========================*/
.top-information {
  background: #F1EEE8;
}

.top-information .inner {
  max-width: calc(1670px + 5% * 2);
}

@media (max-width: 1024px) {
  .top-information .inner {
    max-width: calc(500px + 5% * 2);
  }
}

.top-information .inner .h2-ttl {
  font-size: 10rem;
  letter-spacing: 0;
  text-align: center;
}

@media (max-width: 1024px) {
  .top-information .inner .h2-ttl {
    font-size: 4.9rem;
  }
}

.top-information .inner .h2-ttl span::after {
  height: 62px;
  right: -27px;
  width: 62px;
}

@media (max-width: 1024px) {
  .top-information .inner .h2-ttl span::after {
    height: 31px;
    right: -15px;
    width: 31px;
  }
}

.top-information .information-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
}

@media (max-width: 1024px) {
  .top-information .information-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0px auto;
  }
}

.top-information .information-item {
  background: url(../img/top/information-hexagon.png) no-repeat center center/108% 100%;
  height: 805px;
  position: relative;
  width: 43%;
}

@media (max-width: 1920px) {
  .top-information .information-item {
    height: 41.92vw;
  }
}

@media (max-width: 1024px) {
  .top-information .information-item {
    background: #fff;
    border: 10px solid #efece5;
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
    height: auto;
    margin-top: 20px;
    padding: 40px 20px;
    width: 100%;
  }
}

.top-information .information-item:nth-child(1) {
  z-index: 3;
}

.top-information .information-item:nth-child(2) {
  margin: 0 -75px 0 -82px;
  z-index: 2;
}

@media (max-width: 1920px) {
  .top-information .information-item:nth-child(2) {
    margin: 0 -3.9vw 0 -4.27vw;
  }
}

@media (max-width: 1024px) {
  .top-information .information-item:nth-child(2) {
    margin: 20px 0 0;
  }
}

.top-information .information-item:nth-child(3) {
  z-index: 1;
}

.top-information .information-txt-box {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 70%;
  margin: 0 auto;
  position: relative;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (max-width: 1024px) {
  .top-information .information-txt-box {
    max-width: 100%;
    position: static;
    top: 0;
    -webkit-transform: none;
            transform: none;
  }
}

.top-information .information-txt-box .h3-ttl {
  font-family: 'Roboto Condensed', sans-serif;
  font-style: italic;
  font-size: 5rem;
  letter-spacing: 0;
  padding-bottom: 15px;
  position: relative;
}

@media (max-width: 1920px) {
  .top-information .information-txt-box .h3-ttl {
    font-size: 2.6vw;
  }
}

@media (max-width: 1024px) {
  .top-information .information-txt-box .h3-ttl {
    font-size: 2rem;
  }
}

.top-information .information-txt-box .h3-ttl::after {
  background: #F44B01;
  content: '';
  bottom: -10px;
  height: 6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  position: absolute;
  width: 58px;
  z-index: 5;
}

@media (max-width: 1920px) {
  .top-information .information-txt-box .h3-ttl::after {
    bottom: -0.52vw;
    height: 0.31vw;
    width: 3.02vw;
  }
}

@media (max-width: 1024px) {
  .top-information .information-txt-box .h3-ttl::after {
    bottom: 0px;
    height: 3px;
    width: 29px;
  }
}

.top-information .information-txt-box .h4-ttl {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 4rem;
  min-height: 120px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0;
  line-height: 1.5;
  margin-top: 15px;
}

@media (max-width: 1920px) {
  .top-information .information-txt-box .h4-ttl {
    font-size: 2.08vw;
    min-height: 6.25vw;
  }
}

@media (max-width: 1024px) {
  .top-information .information-txt-box .h4-ttl {
    font-size: 2rem;
    height: auto;
    margin: 15px 0 30px;
  }
}

.top-information .information-txt-box p {
  font-size: 1.6rem;
  min-height: 90px;
  line-height: 1.8;
  letter-spacing: 0;
  text-align: left;
  margin-top: 5px;
}

@media (max-width: 1920px) and (min-width: 1025px) {
  .top-information .information-txt-box p {
    font-size: 0.83vw;
    margin-top: 0.26vw;
    min-height: 4.68vw;
  }
}

@media (max-width: 1024px) {
  .top-information .information-txt-box p {
    font-size: 1.6rem;
    margin-top: 0;
  }
}

.top-information .information-txt-box .btn-black {
  margin: 30px auto 0;
}

@media (max-width: 1920px) and (min-width: 1025px) {
  .top-information .information-txt-box .btn-black {
    font-size: 0.93vw;
    margin: 1.56vw auto 0;
    max-width: 9.89vw;
  }
  .top-information .information-txt-box .btn-black::after {
    height: 0.46vw;
    right: 1.3vw;
    width: 0.46vw;
  }
}

/* ======================
topページ news
=========================*/
.top-news {
  background: #F1EEE8;
}

.top-news .top-news-box {
  background: #fff;
  padding: 7.81%;
}

.top-news .h2-ttl {
  text-align: center;
}

.top-news .h3-ttl {
  text-align: center;
}

.top-news .category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.4rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 60px;
}

@media (max-width: 1024px) {
  .top-news .category-list {
    font-size: 1.1rem;
    margin-top: 20px;
  }
}

.top-news .category-list li:not(:last-child) {
  margin-right: 60px;
}

@media (max-width: 1024px) {
  .top-news .category-list li:not(:last-child) {
    margin-right: 13px;
  }
}

.top-news .category-list li:hover {
  color: #F44B01;
}

.top-news .news-list {
  margin-top: 60px;
}

.top-news .btn-red {
  margin: 60px auto 0;
}

/* ======================
topページ youtube
=========================*/
.top-youtube {
  padding: 200px 0;
  position: relative;
}

@media (max-width: 1024px) {
  .top-youtube {
    padding: 50px 0;
  }
}

.top-youtube::before {
  background: url(../img/top/youtube-bg.svg) no-repeat top center/cover;
  content: '';
  height: 100%;
  left: 0px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

@media (max-width: 1024px) {
  .top-youtube::before {
    content: none;
  }
}

.top-youtube .h2-ttl {
  text-align: center;
}

.top-youtube .h3-ttl {
  margin-top: 40px;
  text-align: center;
}

@media (max-width: 1024px) {
  .top-youtube .h3-ttl {
    text-align: center;
  }
}

.top-youtube .youtube-slide {
  margin-top: 100px;
}

@media (max-width: 1024px) {
  .top-youtube .youtube-slide {
    margin-top: 30px;
  }
}

.top-youtube .youtube-item {
  background: #f6f6f6;
  border: none;
  -webkit-box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.16);
  height: 0;
  margin: 23px auto;
  padding-bottom: 540px;
  position: relative;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  width: 960px;
}

@media (max-width: 1024px) {
  .top-youtube .youtube-item {
    padding-bottom: 190px;
    width: 335px;
  }
}

.top-youtube .youtube-item.slick-current {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.top-youtube .youtube-item iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.top-youtube .youtube-slide .slick-dots {
  margin-top: 80px;
  position: static;
}

@media (max-width: 1024px) {
  .top-youtube .youtube-slide .slick-dots {
    margin-top: 10px;
  }
}

.top-youtube .youtube-slide .slick-dots li {
  height: 12px;
  width: 12px;
}

.top-youtube .youtube-slide .slick-dots li button::before {
  color: #F2F0EA;
  font-size: 1.2rem;
  height: 12px;
  opacity: 1;
  width: 12px;
}

.top-youtube .youtube-slide .slick-dots li.slick-active button::before {
  color: #2E2E2E;
  opacity: 1;
}

.top-youtube .btn-red {
  margin: 100px auto 0;
}

@media (max-width: 1024px) {
  .top-youtube .btn-red {
    margin: 60px auto 0;
  }
}

/* ==========================================================================
下層ページ共通パーツ
========================================================================== */
/* ======================
パンくずリスト
=========================*/
.arciveTemplate .inner {
  max-width: calc(1180px + 5% * 2);
}

@media (max-width: 1024px) {
  .arciveTemplate .inner {
    max-width: calc(500px + 5% * 2);
  }
}

/* ======================
パンくずリスト
=========================*/
.breadcrumb {
  margin: 0 auto;
  width: 100%;
  max-width: calc(1180px + 5% * 2);
  padding: 0 5%;
}

@media (max-width: 1024px) {
  .breadcrumb {
    max-width: calc(500px + 5% * 2);
  }
}

.breadcrumb-list {
  text-align: left;
  width: 100%;
}

@media (max-width: 1024px) {
  .breadcrumb-list {
    text-align: left;
  }
}

.breadcrumb-item {
  color: #2E2E2E;
  display: inline;
  margin-right: 30px;
  position: relative;
}

.breadcrumb-item:not(:last-child)::after {
  border-bottom: 2px solid #2E2E2E;
  border-right: 2px solid #2E2E2E;
  content: "";
  display: block;
  height: 9px;
  position: absolute;
  right: -25px;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
          transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  width: 9px;
}

@media (max-width: 1024px) {
  .breadcrumb-item:not(:last-child)::after {
    border-bottom: 1.5px solid #2E2E2E;
    border-right: 1.5px solid #2E2E2E;
    height: 7px;
    right: -20px;
    width: 7px;
  }
}

.breadcrumb-item .top {
  color: #F44B01;
}

@media (max-width: 1024px) {
  .breadcrumb-item .top {
    padding-left: 18px;
    position: relative;
  }
  .breadcrumb-item .top::before {
    background: url(../img/common/home-icon.svg) no-repeat center center/16px 12px;
    content: '';
    height: 12px;
    left: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 16px;
  }
}

.breadcrumb-item a:hover {
  color: #F44B01;
}

/* ======================
ページネーション
=========================*/
.pagination {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #2E2E2E;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  font-size: 1.4rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  margin-top: 80px;
}

@media (max-width: 1024px) {
  .pagination {
    margin-top: 40px;
  }
}

.page-numbers {
  background: #fff;
  border: 1px solid #CCCCCC;
  height: 40px;
  line-height: 40px;
  margin-right: 5px;
  min-width: 40px;
}

.dots {
  background: #2E2E2E;
  color: #fff;
}

.dots + .page-numbers {
  background: #F9F0DC;
  border: 1px solid #ECD8AA;
}

.page-numbers.current {
  background: #F44B01;
  border: none;
  color: #fff;
}

.pagination a.next,
.pagination a.prev {
  background: #2E2E2E;
  position: relative;
}

.pagination a.prev::before {
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  content: "";
  display: block;
  height: 9px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-40%) translateY(-50%) rotate(-45deg);
          transform: translateX(-40%) translateY(-50%) rotate(-45deg);
  width: 9px;
}

.pagination a.next::before {
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  content: "";
  display: block;
  height: 9px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-60%) translateY(-50%) rotate(-45deg);
          transform: translateX(-60%) translateY(-50%) rotate(-45deg);
  width: 9px;
}

/* ==========================================================================
	ブロックエディタパーツ（共通）
	========================================================================== */
.template {
  /* 見出しH2 */
  /* 見出しH3 */
  /* 見出しH4 */
  /* リンク */
  /* 太字 */
  /* 画像調整 */
  /* カラム調整 */
  /* リスト */
  /* リスト（数字） */
  /* 引用 */
  /* 動画 */
  /* ボタン */
  /* テーブル */
}

.template h2 {
  background: #FFF1E5;
  border-bottom: 2px solid #F44B01;
  border-top: 2px solid #F44B01;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 50px 0 30px;
  padding: 18px;
  position: relative;
  text-align: center;
  width: 100%;
}

@media (max-width: 1024px) {
  .template h2 {
    font-size: 2.4rem;
    line-height: 1.4;
    margin: 25px 0 15px;
    text-align: left;
    padding: 20px 5px;
  }
}

.template h2:first-child {
  margin-top: 0 !important;
}

.template h3 {
  border-bottom: 2px solid #F44B01;
  font-size: 2.4rem;
  line-height: 1.66;
  margin: 50px 0 30px;
  position: relative;
  padding-bottom: 5px;
}

@media (max-width: 1024px) {
  .template h3 {
    border-bottom: 3px solid #F44B01;
    font-size: 2rem;
    line-height: 1.4;
    margin: 25px 0 15px;
  }
}

.template h2 + h3 {
  margin: 0 0 30px;
}

@media (max-width: 1024px) {
  .template h2 + h3 {
    margin: 0 0 15px;
  }
}

.template h4 {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.81;
  margin: 50px 0 30px;
  padding-left: 23px;
  position: relative;
}

@media (max-width: 1024px) {
  .template h4 {
    font-size: 1.8rem;
    line-height: 1.11;
    margin: 25px 0 15px;
    padding-left: 11px;
  }
}

.template h4::before {
  background: #F44B01;
  content: "";
  height: 50px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}

@media (max-width: 1024px) {
  .template h4::before {
    height: 25px;
    width: 4px;
  }
}

.template p > a {
  color: #F44B01;
  text-decoration: underline;
}

.template p > a:hover {
  opacity: .7;
}

.template p + p {
  margin-top: 30px;
}

@media (max-width: 1024px) {
  .template p + p {
    margin-top: 15px;
  }
}

.template strong,
.template b {
  color: #F44B01;
}

.template .wp-block-image {
  margin: 30px auto 20px;
  position: relative;
}

@media (max-width: 1024px) {
  .template .wp-block-image {
    margin: 15px auto 10px;
  }
}

.template .wp-block-image img {
  display: inline-block;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  width: auto;
}

@media (max-width: 1024px) {
  .template .wp-block-image img {
    height: auto !important;
  }
}

.template .wp-block-columns {
  margin: 30px 0;
}

@media (max-width: 1024px) {
  .template .wp-block-columns {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    margin: 15px 0 10px;
  }
  .template .wp-block-columns._reverse .wp-block-column:nth-child(2) {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

@media (max-width: 1024px) {
  .template .p-title {
    font-size: 2.4rem;
    line-height: 1.6;
  }
}

.template ._narrowLineHeight {
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .template .wp-block-column {
    -ms-flex-preferred-size: 100% !important;
        flex-basis: 100% !important;
    margin: 14px 0;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .template .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column:not(:only-child) {
    -ms-flex-preferred-size: 100% !important;
        flex-basis: 100% !important;
  }
}

.template .wp-block-column .wp-block-cover {
  min-height: 226px !important;
}

.template .wp-block-column .wp-block-image {
  margin-bottom: 0;
  margin-top: 0;
  position: relative;
}

@media (max-width: 1024px) {
  .template .wp-block-column .wp-block-image {
    margin: 0 !important;
    text-align: center;
  }
}

@media (max-width: 1024px) {
  .template .wp-block-column h3 {
    margin: 15px 0 15px;
  }
}

.template .wp-block-columns._auto .wp-block-column .wp-block-image::before {
  display: none !important;
}

.template .wp-block-columns._auto .wp-block-column .wp-block-image img {
  height: auto !important;
  position: relative !important;
  width: auto !important;
}

@media (max-width: 1024px) {
  .template .wp-block-columns._spHalf .wp-block-columns {
    margin: 20px 0;
  }
}

@media (max-width: 1024px) {
  .template .wp-block-columns._spHalf .wp-block-column {
    -ms-flex-preferred-size: auto !important;
        flex-basis: auto !important;
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
    margin: 0 !important;
  }
}

@media (min-width: 1025px) {
  .template .wp-block-columns._align .wp-block-column h3 {
    margin-top: 0 !important;
  }
}

@media (min-width: 1025px) {
  .template .wp-block-columns._align .wp-block-column h4 {
    margin-top: 0 !important;
  }
}

@media (min-width: 1025px) {
  .template .wp-block-columns .wp-block-column h3 {
    margin-top: 0 !important;
  }
}

@media (min-width: 1025px) {
  .template .wp-block-columns .wp-block-column h4 {
    margin-top: 0 !important;
  }
}

.template .wp-block-columns._border + .wp-block-columns._border {
  margin-top: 20px;
}

.template .wp-block-columns._border .wp-block-column {
  border: 3px solid #F44B01;
  padding: 10px 1% 21px;
}

@media (max-width: 1024px) {
  .template .wp-block-columns._border .wp-block-column {
    border: 2px solid #F44B01;
    padding: 10px 2.5% 21px;
  }
}

.template .wp-block-columns._border .wp-block-column .wp-block-image::before {
  padding-top: 46%;
}

.template .wp-block-columns._border .wp-block-column .wp-block-image img {
  height: 100% !important;
}

.template ul {
  line-height: 2;
  margin: 30px 0;
  padding: 0 0 0 75px;
}

@media (max-width: 1024px) {
  .template ul {
    margin: 15px 0;
    padding: 0 0 0 25px;
  }
}

.template ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.template ul li::before {
  border-color: #F44B01;
  border-style: solid;
  border-width: 2px;
  border-radius: 10px;
  content: "";
  height: 0;
  left: -10px;
  position: absolute;
  top: 15px;
  width: 0;
}

.template ol {
  counter-reset: ol_li;
  line-height: 2;
  list-style: none;
  margin: 30px 0;
  padding: 0 0 0 85px;
}

@media (max-width: 1024px) {
  .template ol {
    margin: 15px 0;
    padding: 0 0 0 35px;
  }
}

.template ol li {
  position: relative;
}

.template ol li::before {
  color: #F44B01;
  content: counters(ol_li, ".") ". ";
  counter-increment: ol_li;
  left: -25px;
  position: absolute;
  top: 0;
}

.template blockquote {
  background: #FAF9F7;
  border: none;
  line-height: 2;
  margin: 50px auto;
  padding: 4.08% 6.25% 3.31%;
  position: relative;
  width: 100%;
}

@media (max-width: 1024px) {
  .template blockquote {
    margin: 36px auto 15px;
    padding: 15.07% 5.97%;
  }
}

.template blockquote::before {
  background: url(../img/common/quote.svg) no-repeat center center/53px 45px;
  content: "";
  height: 45px;
  left: 2.12%;
  position: absolute;
  top: -16px;
  width: 53px;
}

@media (max-width: 1024px) {
  .template blockquote::before {
    background: url(../img/common/quote.svg) no-repeat center center/27px 23px;
    height: 23px;
    left: 2.64%;
    top: 12px;
    width: 27px;
  }
}

.template blockquote cite {
  border-top: 1px solid #F44B01;
  display: block;
  font-style: normal;
  margin-top: 30px;
  padding-top: 20px;
}

@media (max-width: 1024px) {
  .template blockquote cite {
    margin-top: 18px;
    padding-top: 10px;
  }
}

.template blockquote cite > a {
  font-weight: normal;
  line-height: 2;
  letter-spacing: 0.04em;
  text-decoration: underline;
}

.template blockquote cite > a:hover {
  opacity: .5;
}

.template .wp-block-embed__wrapper {
  height: 0;
  margin: 50px auto;
  padding-top: 56%;
  position: relative;
  width: 100%;
}

.template .wp-block-embed__wrapper iframe {
  left: 0;
  height: 100%;
  max-width: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}

@media (max-width: 1024px) {
  .template .wp-block-buttons .wp-block-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
}

.template .wp-block-button__link {
  background: transparent;
  border: 1px solid #F44B01;
  border-radius: 25px;
  color: #F44B01;
  display: inline-block;
  letter-spacing: 0;
  line-height: 1;
  padding: 15px 45px;
  position: relative;
  text-align: center;
}

@media (max-width: 1024px) {
  .template .wp-block-button__link {
    border: 2px solid #F44B01;
    border-radius: 50px;
    font-size: 1.3rem;
    line-height: 1.5;
    padding: 10px 30px;
    width: 93.2%;
  }
}

.template .wp-block-button__link:hover {
  background: #F44B01;
  color: #fff;
  opacity: 1;
}

@media (max-width: 1024px) {
  .template .wp-block-columns .wp-block-button__link {
    padding: 5px 30px;
  }
}

.template .wp-block-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  margin-top: 30px;
}

@media (max-width: 1024px) {
  .template .wp-block-buttons {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}

.template .wp-block-buttons .wp-block-button.aligncenter {
  width: auto;
}

.template .wp-block-column .wp-block-buttons {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

.template .wp-block-button.is-style-outline .wp-block-button__link {
  background: #F44B01;
  color: #fff;
  padding: 15px 30px;
}

@media (max-width: 1024px) {
  .template .wp-block-button.is-style-outline .wp-block-button__link {
    padding: 10px 30px;
    width: 93.22%;
  }
}

.template .wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: transparent;
  color: #F44B01;
  opacity: 1;
}

@media (max-width: 1024px) {
  .template .wp-block-buttons .wp-block-button {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

@media (min-width: 600px) and (max-width: 781px) {
  .template .wp-block-column:not(:only-child) {
    -ms-flex-preferred-size: 100% !important;
        flex-basis: 100% !important;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
}

.template .wp-block-table {
  margin-bottom: 30px;
  margin-top: 30px;
}

@media (max-width: 1024px) {
  .template .wp-block-table {
    margin-bottom: 15px;
    margin-top: 15px;
  }
}

.template table {
  border: none;
  border-collapse: separate;
  border-spacing: 2px;
  table-layout: fixed;
  width: 100%;
}

@media (max-width: 1024px) {
  .template table {
    border-spacing: 5px;
  }
}

.template td,
.template th {
  background: #FAF9F7;
  border: none;
  padding: 1.2% 2%;
}

@media (max-width: 1024px) {
  .template td,
  .template th {
    padding: 3% 5%;
  }
}

.template tbody > tr > td:first-child {
  background-color: #F1EEE8;
  text-align: left;
  width: 25%;
}

.template .wp-block-columns._border + .wp-block-columns._border {
  margin-top: 20px;
}

/* ==========================================================================
	ブロックエディタパーツ（固定ページ用）
	========================================================================== */
.pageTemplate .template,
.arciveTemplate .template {
  /* 太字 */
  /* テーブル */
  /* ボタン */
  /* googlemap調整 */
}

.pageTemplate .template h2,
.arciveTemplate .template h2 {
  background: transparent;
  border: none;
  color: #2E2E2E;
  font-size: 4.2rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.42;
  margin: 80px 0 30px;
  padding: 0 0 0 20px;
  position: relative;
  text-align: left;
  z-index: 1;
}

@media (max-width: 1024px) {
  .pageTemplate .template h2,
  .arciveTemplate .template h2 {
    font-size: 2.2rem;
    line-height: 1.4;
    margin: 40px 0 40px;
    padding-left: 12px;
  }
}

.pageTemplate .template h2::before,
.arciveTemplate .template h2::before {
  background: #F44B01;
  border-radius: 5px;
  content: "";
  height: 40px;
  left: 0px;
  position: absolute;
  top: 0px;
  width: 40px;
  z-index: -1;
}

@media (max-width: 1024px) {
  .pageTemplate .template h2::before,
  .arciveTemplate .template h2::before {
    height: 20px;
    width: 20px;
  }
}

.pageTemplate .template h2::after,
.arciveTemplate .template h2::after {
  content: none;
}

.pageTemplate .template h3,
.arciveTemplate .template h3 {
  border-bottom: 4px solid #F44B01;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.43;
  padding: 0 0 4px 0;
}

@media (max-width: 1024px) {
  .pageTemplate .template h3,
  .arciveTemplate .template h3 {
    border-bottom: 2px solid #F44B01;
    font-size: 1.8rem;
    line-height: 1.4;
  }
}

.pageTemplate .template strong,
.pageTemplate .template b,
.arciveTemplate .template strong,
.arciveTemplate .template b {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(40%, transparent), color-stop(60%, rgba(255, 188, 80, 0.35)));
  background-image: linear-gradient(transparent 40%, rgba(255, 188, 80, 0.35) 60%);
  color: #2E2E2E;
  font-weight: 400;
}

.pageTemplate .template ul,
.arciveTemplate .template ul {
  line-height: 2;
  margin: 30px 0;
  padding: 0 0 0 55px;
}

@media (max-width: 1024px) {
  .pageTemplate .template ul,
  .arciveTemplate .template ul {
    margin: 15px 0;
    padding: 0 0 0 25px;
  }
}

.pageTemplate .template .wp-block-table,
.arciveTemplate .template .wp-block-table {
  margin-bottom: 30px;
  margin-top: 30px;
}

@media (max-width: 1024px) {
  .pageTemplate .template .wp-block-table,
  .arciveTemplate .template .wp-block-table {
    margin-bottom: 15px;
    margin-top: 15px;
  }
}

.pageTemplate .template table,
.arciveTemplate .template table {
  border-collapse: separate;
  border-spacing: 0px;
  border-top: 1px solid #CCCCCC;
  width: 100%;
}

.pageTemplate .template td,
.pageTemplate .template th,
.arciveTemplate .template td,
.arciveTemplate .template th {
  background: transparent;
  border-bottom: 1px solid #CCCCCC;
  padding: 1.85%;
}

@media (max-width: 1024px) {
  .pageTemplate .template td,
  .pageTemplate .template th,
  .arciveTemplate .template td,
  .arciveTemplate .template th {
    padding: 1%;
  }
}

.pageTemplate .template tbody > tr > td:first-child,
.arciveTemplate .template tbody > tr > td:first-child {
  background-color: transparent;
  text-align: center;
  vertical-align: middle;
  width: 25%;
}

@media (max-width: 1024px) {
  .pageTemplate .template tbody > tr > td:first-child,
  .arciveTemplate .template tbody > tr > td:first-child {
    text-align: left;
  }
}

@media (max-width: 1024px) {
  .pageTemplate .template tbody > tr > td:last-child,
  .arciveTemplate .template tbody > tr > td:last-child {
    padding-bottom: 2%;
  }
}

.pageTemplate .template .wp-block-button__link,
.arciveTemplate .template .wp-block-button__link {
  background: transparent;
  border: 4px solid #F44B01;
  border-radius: 100px;
  color: #F44B01;
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 20px 70px;
  position: relative;
  text-align: center;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

@media (max-width: 1024px) {
  .pageTemplate .template .wp-block-button__link,
  .arciveTemplate .template .wp-block-button__link {
    border: 2px solid #F44B01;
    font-size: 1.5rem;
    line-height: 1.5;
    padding: 14px 30px;
  }
}

.pageTemplate .template .wp-block-button__link::after,
.arciveTemplate .template .wp-block-button__link::after {
  border-right: solid 3px #F44B01;
  border-top: solid 3px #F44B01;
  content: '';
  height: 12px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: 0.1s;
  transition: 0.1s;
  right: 8%;
  width: 12px;
}

@media (max-width: 1024px) {
  .pageTemplate .template .wp-block-button__link::after,
  .arciveTemplate .template .wp-block-button__link::after {
    border-right: solid 2px #F44B01;
    border-top: solid 2px #F44B01;
    height: 9px;
    right: 3.5%;
    width: 9px;
  }
}

.pageTemplate .template .wp-block-button__link:hover,
.arciveTemplate .template .wp-block-button__link:hover {
  background: #F44B01;
  color: #fff;
  opacity: 1;
}

.pageTemplate .template .wp-block-button__link:hover::after,
.arciveTemplate .template .wp-block-button__link:hover::after {
  border-right: solid 3px #fff;
  border-top: solid 3px #fff;
}

.pageTemplate .template .wp-block-button.is-style-outline .wp-block-button__link,
.arciveTemplate .template .wp-block-button.is-style-outline .wp-block-button__link {
  background: #F44B01;
  color: #fff;
  padding: 20px 70px;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

@media (max-width: 1024px) {
  .pageTemplate .template .wp-block-button.is-style-outline .wp-block-button__link,
  .arciveTemplate .template .wp-block-button.is-style-outline .wp-block-button__link {
    padding: 14px 30px;
  }
}

.pageTemplate .template .wp-block-button.is-style-outline .wp-block-button__link::after,
.arciveTemplate .template .wp-block-button.is-style-outline .wp-block-button__link::after {
  border-right: solid 3px #fff;
  border-top: solid 3px #fff;
}

@media (max-width: 1024px) {
  .pageTemplate .template .wp-block-button.is-style-outline .wp-block-button__link::after,
  .arciveTemplate .template .wp-block-button.is-style-outline .wp-block-button__link::after {
    border-right: solid 2px #fff;
    border-top: solid 2px #fff;
  }
}

.pageTemplate .template .wp-block-button.is-style-outline .wp-block-button__link:hover,
.arciveTemplate .template .wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: transparent;
  color: #F44B01;
  opacity: 1;
}

.pageTemplate .template .wp-block-button.is-style-outline .wp-block-button__link:hover::after,
.arciveTemplate .template .wp-block-button.is-style-outline .wp-block-button__link:hover::after {
  border-right: solid 3px #F44B01;
  border-top: solid 3px #F44B01;
}

.pageTemplate .template .googlemap,
.arciveTemplate .template .googlemap {
  height: 0;
  margin: auto;
  padding-top: 49%;
  position: relative;
  width: 100%;
}

@media (max-width: 1024px) {
  .pageTemplate .template .googlemap,
  .arciveTemplate .template .googlemap {
    margin: 20px 0;
    padding-top: 64%;
    width: 100%;
  }
}

.pageTemplate .template .googlemap iframe,
.arciveTemplate .template .googlemap iframe {
  left: 0;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}

/* ======================
固定ページメインビジュアル
=========================*/
.page-head {
  background: url(../img/common/page-head-bg.svg) no-repeat center center/cover #FAF9F7;
  margin-bottom: 10px;
  margin-top: 70px;
  max-height: 320px;
  min-height: 320px;
  position: relative;
  width: 100%;
}

@media (max-width: 1024px) {
  .page-head {
    height: auto;
    margin-top: 50px;
    min-height: initial;
  }
}

@media (max-width: 599px) {
  .page-head {
    background: url(../img/common/page-head-bg-sp.svg) no-repeat center center/cover #FAF9F7;
  }
}

.page-head-inner {
  max-width: calc(1180px + 5% * 2);
  padding: 80px 5% 20px;
}

@media (max-width: 1024px) {
  .page-head-inner {
    padding: 40px 5%;
    margin: 0 auto;
    max-width: calc(500px + 5% * 2);
  }
}

.page-head-en {
  color: #F44B01;
  font-family: 'Roboto Condensed', sans-serif;
  font-style: italic;
  font-size: 2.4rem;
}

@media (max-width: 1024px) {
  .page-head-en {
    font-size: 1.4rem;
  }
}

.page-head-ttl {
  font-size: 5.4rem;
  font-weight: 700;
  line-height: 1.33;
}

@media (max-width: 1920px) {
  .page-head-ttl {
    max-width: 90%;
  }
}

@media (max-width: 1600px) {
  .page-head-ttl {
    max-width: 80%;
  }
}

@media (max-width: 1500px) {
  .page-head-ttl {
    max-width: 70%;
  }
}

@media (max-width: 1024px) {
  .page-head-ttl {
    font-size: 2.7rem;
    margin-top: 5px;
    max-width: 100%;
  }
}

.page-head-desc {
  line-height: 2.25;
  margin-top: 15px;
  max-width: 71.18%;
}

@media (max-width: 1024px) {
  .page-head-desc {
    line-height: 2;
    margin-top: 30px;
    max-width: 100%;
  }
}

.page-head-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 320px;
  position: absolute;
  right: 0;
  top: 0;
}

@media (max-width: 1024px) {
  .page-head-box {
    margin-top: 30px;
  }
}

.page-head-btn {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #F1EEE8;
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  max-height: 160px;
  max-width: 160px;
  min-height: 160px;
  position: relative;
  text-align: center;
  width: 50%;
}

@media (max-width: 1024px) {
  .page-head-btn {
    display: none;
  }
}

.page-head-btn p {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
}

.page-head-btn::after {
  border-color: transparent transparent #ffffff transparent;
  border-style: solid;
  border-width: 0 0 12px 12px;
  bottom: 6px;
  content: '';
  height: 0;
  position: absolute;
  right: 6px;
  width: 0;
}

.page-head-btn.training {
  background: #F44B01;
  color: #fff;
  padding-bottom: 31px;
}

.page-head-btn.training::before {
  background: url(../img/common/training-icon.svg) no-repeat center center/35px 41px;
  content: '';
  height: 35px;
  position: absolute;
  top: 24px;
  width: 41px;
}

.page-head-btn.claim {
  padding-bottom: 31px;
  -webkit-transition: 0;
  transition: 0;
}

.page-head-btn.claim::before {
  background: url(../img/common/drawer-claim-icon.svg) no-repeat center center/31px 42px;
  content: '';
  height: 42px;
  position: absolute;
  top: 23px;
  width: 31px;
}

.page-head-btn.claim::after {
  border-color: transparent transparent #2E2E2E transparent;
}

.page-head-btn.claim:hover {
  background: #F44B01;
  color: #fff;
  -webkit-transition: 0;
  transition: 0;
}

.page-head-btn.claim:hover::before {
  background: url(../img/common/claim-icon.svg) no-repeat center center/31px 42px;
}

.page-head-btn.claim:hover::after {
  border-color: transparent transparent #fff transparent;
}

.page-head-btn.message {
  padding-bottom: 43px;
  -webkit-transition: 0;
  transition: 0;
}

.page-head-btn.message::before {
  background: url(../img/common/drawer-message-icon.svg) no-repeat center center/47px 45px;
  content: '';
  height: 45px;
  position: absolute;
  top: 33px;
  width: 47px;
}

.page-head-btn.message::after {
  border-color: transparent transparent #2E2E2E transparent;
}

.page-head-btn.message:hover {
  background: #F44B01;
  color: #fff;
  -webkit-transition: 0;
  transition: 0;
}

.page-head-btn.message:hover::before {
  background: url(../img/common/message-icon.svg) no-repeat center center/47px 45px;
}

.page-head-btn.message:hover::after {
  border-color: transparent transparent #fff transparent;
}

.page-head-btn.contact {
  background: #F44B01;
  color: #fff;
  padding-bottom: 43px;
}

.page-head-btn.contact::before {
  background: url(../img/common/contact-icon.svg) no-repeat center center/36px 29px;
  content: '';
  height: 29px;
  position: absolute;
  top: 50px;
  width: 36px;
}

/* ==========================================================================
about
========================================================================== */
.pageTemplate .template .about-h2-ttl01,
.pageTemplate .template .about-h2-ttl02 {
  font-size: 5.5rem;
  text-align: center;
  padding-left: 0;
}

@media (max-width: 1024px) {
  .pageTemplate .template .about-h2-ttl01,
  .pageTemplate .template .about-h2-ttl02 {
    font-size: 2.7rem;
  }
}

.pageTemplate .template .about-h2-ttl01 .txt-red,
.pageTemplate .template .about-h2-ttl02 .txt-red {
  color: #F44B01;
}

.pageTemplate .template .about-h2-ttl01 .txt-large,
.pageTemplate .template .about-h2-ttl02 .txt-large {
  font-size: 6.4rem;
}

@media (max-width: 1024px) {
  .pageTemplate .template .about-h2-ttl01 .txt-large,
  .pageTemplate .template .about-h2-ttl02 .txt-large {
    font-size: 3.2rem;
  }
}

.pageTemplate .template .about-h2-ttl01::before,
.pageTemplate .template .about-h2-ttl02::before {
  content: none;
}

.pageTemplate .template .about-h2-ttl02 {
  text-align: left;
  position: relative;
}

.pageTemplate .template .about-h2-ttl02::after {
  background: #F44B01;
  bottom: -40px;
  content: '';
  height: 4px;
  left: 0;
  position: absolute;
  width: 40px;
}

@media (max-width: 1024px) {
  .pageTemplate .template .about-h2-ttl02::after {
    bottom: -20px;
    height: 2px;
    width: 20px;
  }
}

.pageTemplate .template .about-h3-ttl {
  border-bottom: none;
  margin-bottom: 50px;
  position: relative;
}

@media (max-width: 1024px) {
  .pageTemplate .template .about-h3-ttl {
    font-size: 2rem;
  }
}

.pageTemplate .template .about-h3-ttl::after {
  background: #F44B01;
  bottom: -20px;
  content: '';
  height: 4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  position: absolute;
  width: 40px;
}

@media (max-width: 1024px) {
  .pageTemplate .template .about-h3-ttl::after {
    height: 2px;
    width: 20px;
  }
}

.pageTemplate .template .about-strong {
  font-size: 2.4rem;
  font-weight: 700;
  margin-top: 60px;
}

@media (max-width: 1024px) {
  .pageTemplate .template .about-strong {
    font-size: 2rem;
    margin-top: 40px;
  }
}

/* ==========================================================================
お知らせ一覧
========================================================================== */
.news-list {
  border-bottom: 1px solid #CCCCCC;
}

.news-item {
  border-top: 1px solid #CCCCCC;
  padding: 25px 10px;
  width: 100%;
}

@media (max-width: 1024px) {
  .news-item {
    padding: 10px 0px;
  }
}

.news-link {
  display: block;
}

.news-upper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.news-ttl {
  color: #2E2E2E;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0;
  -webkit-transition: .1s;
  transition: .1s;
}

@media (max-width: 1024px) {
  .news-ttl {
    font-size: 1.4rem;
    line-height: 2;
  }
}

.news-ttl:hover {
  text-decoration: underline;
  -webkit-transition: .1s;
  transition: .1s;
}

.cats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  width: 100%;
}

@media (max-width: 1024px) {
  .cats {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.cat {
  background: #2E2E2E;
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0;
  line-height: 2;
  margin-right: 1%;
  margin-bottom: 5px;
}

@media (max-width: 1024px) {
  .cat {
    font-size: 1.1rem;
    margin-right: 2%;
  }
}

@media (max-width: 350px) {
  .cat {
    font-size: 1rem;
    padding: 2px 5px;
  }
}

.cat:hover {
  text-decoration: underline;
}

.cat a {
  display: inline-block;
  padding: 2px 12px;
}

@media (max-width: 1024px) {
  .cat a {
    padding: 3px 8px;
  }
}

.date {
  display: block;
  color: #F44B01;
  font-weight: 500;
  line-height: 1.375;
  margin-right: 20px;
}

@media (max-width: 1024px) {
  .date {
    font-size: 1.2rem;
    margin-right: 10px;
  }
}

/* ==========================================================================
お知らせ詳細
========================================================================== */
.post .page-head-inner {
  padding: 50px 5% 20px;
}

@media (max-width: 1200px) {
  .post .page-head-ttl {
    font-size: 5.2rem;
  }
}

@media (max-width: 1100px) {
  .post .page-head-ttl {
    font-size: 4.8rem;
  }
}

@media (max-width: 1024px) {
  .post .page-head-ttl {
    font-size: 2.7rem;
  }
}

.post .news-upper .date {
  color: #2E2E2E;
}

.post .post-img {
  margin-bottom: 50px;
}

@media (max-width: 1024px) {
  .post .post-img {
    margin-bottom: 40px;
  }
}

.postTemplate .inner {
  max-width: calc(960px + 5% * 2);
}

@media (max-width: 1024px) {
  .postTemplate .inner {
    max-width: calc(500px + 5% * 2);
  }
}

.postTemplate .post-head-img {
  margin-bottom: 40px;
}

/* URLコピー */
.post-copy {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #F44B01;
  cursor: pointer;
  color: #F44B01;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.8rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 50px auto 0;
  -webkit-transition: .1s;
  transition: .1s;
  padding: 44px;
  width: 100%;
}

@media (max-width: 1024px) {
  .post-copy {
    border: 2px solid #F44B01;
    font-size: 1.4rem;
    padding: 18px;
  }
}

.post-copy:hover {
  opacity: .5;
}

.post-copy span {
  position: relative;
}

.post-copy span::after {
  background: url(../img/common/copy-icon.svg) no-repeat center center/26px 26px;
  content: '';
  height: 26px;
  position: absolute;
  right: -35px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 26px;
}

@media (max-width: 1024px) {
  .post-copy span::after {
    background: url(../img/common/copy-icon.svg) no-repeat center center/13px 13px;
    height: 13px;
    right: -25px;
    width: 13px;
  }
}

/* paging */
.paging {
  border-bottom: 1px solid #2E2E2E;
  border-top: 1px solid #2E2E2E;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.8rem;
  margin-bottom: 50px;
  margin-top: 50px;
  width: 100%;
}

@media (max-width: 1024px) {
  .paging {
    border-bottom: 1px solid #CCCCCC;
    border-top: 1px solid #CCCCCC;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 1.4rem;
    margin-bottom: 15px;
    margin-top: 30px;
  }
}

.paging-item {
  line-height: 1.44;
  position: relative;
  width: calc(100% / 2);
}

@media (max-width: 1024px) {
  .paging-item {
    min-height: 80px;
    width: 100%;
  }
}

.paging-item a {
  display: block;
  line-height: 2;
  padding: 16px 4.25%;
  -webkit-transition: .1s;
  transition: .1s;
  word-wrap: break-word;
}

@media (max-width: 1024px) {
  .paging-item a {
    line-height: 1.6;
    padding: 10px 11%;
  }
}

@media (min-width: 1025px) {
  .paging-item-prev {
    border-right: 1px solid #2E2E2E;
  }
}

@media (max-width: 1024px) {
  .paging-item-prev {
    border-bottom: 1px solid #CCCCCC;
  }
}

.paging-item-prev .paging-arrow {
  left: -10px;
}

.paging-item-prev .paging-arrow::before {
  left: 0;
}

.paging-item-next .paging-arrow {
  right: 5px;
}

.paging-item-next .paging-arrow::before {
  right: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.paging-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.paging-arrow::before {
  background: url(../img/common/paging-arrow.svg) no-repeat center center/19px 18px;
  content: "";
  display: block;
  height: 18px;
  left: 0;
  margin-top: -9px;
  position: absolute;
  top: 0;
  -webkit-transition: .1s;
  transition: .1s;
  width: 19px;
}

#ez-toc-container {
  background: #faf9f7;
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.16);
  border: none;
  border-radius: 0;
  margin: 50px auto 40px;
  padding: 0;
  padding-right: 0 !important;
  width: 100%;
}

#ez-toc-container .ez-toc-title-container {
  background: #FFF1E5;
  padding: 7px 20px;
  border-bottom: 1px solid #F44B01;
}

#ez-toc-container .ez-toc-title-container .ez-toc-title {
  font-size: 2rem;
  font-weight: 700;
}

@media (max-width: 1024px) {
  #ez-toc-container .ez-toc-title-container .ez-toc-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 1024px) {
  #ez-toc-container .ez-toc-btn-default {
    max-width: 32px;
  }
}

#ez-toc-container .ez-toc-title-toggle {
  width: auto;
}

@media (min-width: 1025px) {
  #ez-toc-container .ez-toc-glyphicon:empty {
    width: auto;
  }
}

#ez-toc-container i.ez-toc-glyphicon {
  margin-left: 0;
}

#ez-toc-container a.ez-toc-toggle {
  background: #F44B01;
  border: none;
  border-radius: 0;
  height: 29px;
  position: relative;
  width: 29px;
}

#ez-toc-container .ez-toc-icon-toggle {
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#ez-toc-container .ez-toc-icon-toggle::before {
  content: url(../img/common/toc-icon.svg);
}

#ez-toc-container ul {
  padding: 20px;
}

#ez-toc-container ul li {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 5px 0;
}

@media (max-width: 1024px) {
  #ez-toc-container ul li {
    font-size: 1.4rem;
  }
}

#ez-toc-container ul li a {
  color: #F44B01;
  font-size: 1.8rem;
  letter-spacing: 0;
}

#ez-toc-container ul li a::before {
  color: #2E2E2E;
}

@media (max-width: 1024px) {
  #ez-toc-container ul li a {
    font-size: 1.4rem;
  }
}

#ez-toc-container ul li ul {
  margin-left: 20px;
  padding: 0;
}

#ez-toc-container ul li ul li:last-child {
  padding-bottom: 0;
}

#ez-toc-container ul li ul li a::before {
  color: #2E2E2E;
  font-size: 1.8rem;
  letter-spacing: 0;
}

#ez-toc-container a {
  color: #F44B01;
  font-size: 1.8rem;
  letter-spacing: 0;
}

@media (max-width: 1024px) {
  #ez-toc-container a {
    font-size: 1.4rem;
  }
}

#ez-toc-container a:visited {
  color: #F44B01;
}

#ez-toc-container.counter-decimal ul.ez-toc-list li a::before,
#ez-toc-container .ez-toc-widget-container.counter-decimal ul.ez-toc-list li a::before {
  content: counters(item, "-") ". ";
  font-size: 1.8rem;
  font-weight: bold;
  margin-right: 10px;
}

@media (max-width: 1024px) {
  #ez-toc-container.counter-decimal ul.ez-toc-list li a::before,
  #ez-toc-container .ez-toc-widget-container.counter-decimal ul.ez-toc-list li a::before {
    font-size: 1.4rem;
  }
}

/* ==========================================================================
講師一覧ページ
========================================================================== */
.teacher-list {
  margin-top: 70px;
}

@media (max-width: 1024px) {
  .teacher-list {
    margin-top: 10px;
  }
}

.teacher-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 130px;
}

@media (max-width: 1024px) {
  .teacher-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 50px;
  }
}

@media (min-width: 1025px) {
  .teacher-item:nth-child(2n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.teacher-img {
  width: 66.1%;
}

@media (max-width: 1024px) {
  .teacher-img {
    width: 100%;
  }
}

.teacher-img img {
  -webkit-box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.16);
  width: 100%;
}

.teacher-txt {
  margin-top: 5.93%;
  width: 42.79%;
}

@media (max-width: 1024px) {
  .teacher-txt {
    margin-top: 6%;
    width: 100%;
  }
}

.teacher-item:nth-child(2n + 1) .teacher-txt {
  margin-left: -8.89%;
}

@media (max-width: 1024px) {
  .teacher-item:nth-child(2n + 1) .teacher-txt {
    margin-left: 0;
  }
}

.teacher-item:nth-child(2n) .teacher-txt {
  margin-right: -8.89%;
}

@media (max-width: 1024px) {
  .teacher-item:nth-child(2n) .teacher-txt {
    margin-right: 0;
  }
}

.teacher-txt-en {
  background: #2E2E2E;
  color: #fff;
  display: inline-block;
  font-family: 'Roboto Condensed', sans-serif;
  font-style: italic;
  font-size: 3rem;
  line-height: 1.2;
  padding: 10px 18px;
}

@media (max-width: 1024px) {
  .teacher-txt-en {
    font-size: 1.5rem;
    padding: 5px 9px;
  }
}

.teacher-txt-h3 {
  border-bottom: 4px solid #F44B01;
  font-size: 3.2rem;
  line-height: 1.43;
  margin-top: 5px;
  padding-bottom: 4px;
}

@media (max-width: 1024px) {
  .teacher-txt-h3 {
    border-bottom: 2px solid #F44B01;
    font-size: 1.8rem;
  }
}

.teacher-txt-desc {
  margin-bottom: 5.94%;
  margin-top: 5.94%;
}

@media (max-width: 1024px) {
  .teacher-txt-desc {
    margin-bottom: 4%;
    margin-top: 4%;
  }
}

.teacher-txt .btn-black {
  margin: 0 auto;
}

/* ==========================================================================
講師詳細ページ
========================================================================== */
.teacher-detail .teacher-head {
  margin: 100px auto 10px;
  max-width: 1920px;
  width: 100%;
}

.teacher-detail .teacher-head-inner {
  max-width: calc(1280px + 5% *2);
  padding-bottom: 20px;
  padding-top: 0;
}

@media (max-width: 1024px) {
  .teacher-detail .teacher-head-inner {
    max-width: calc(500px + 5% *2);
  }
}

.teacher-detail .teacher-head-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  max-width: 100%;
}

@media (max-width: 1024px) {
  .teacher-detail .teacher-head-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.teacher-detail .teacher-head-txt {
  margin: 5.85% 50px 0 0;
  position: relative;
  width: 590px;
}

@media (max-width: 1850px) {
  .teacher-detail .teacher-head-txt {
    margin-right: 4%;
  }
}

@media (max-width: 1400px) {
  .teacher-detail .teacher-head-txt {
    margin-top: 4%;
  }
}

@media (max-width: 1024px) {
  .teacher-detail .teacher-head-txt {
    margin-top: 0;
    width: 100%;
  }
}

.teacher-detail .teacher-head-txt::before {
  background: url(../img/teacher/teacher-head-bg01.svg) no-repeat center center/278px 241px;
  bottom: 0;
  content: '';
  height: 241px;
  left: -65px;
  position: absolute;
  width: 278px;
  z-index: -1;
}

@media (max-width: 1024px) {
  .teacher-detail .teacher-head-txt::before {
    background: url(../img/teacher/teacher-head-bg01.svg) no-repeat center center/182px 152px;
    bottom: auto;
    height: 152px;
    left: auto;
    right: -80px;
    top: 40px;
    width: 182px;
  }
}

.teacher-detail .teacher-head-txt::after {
  background: url(../img/teacher/teacher-head-bg02.svg) no-repeat center center/231px 200px;
  content: '';
  height: 200px;
  position: absolute;
  right: 0;
  top: 0;
  width: 231px;
  z-index: -1;
}

@media (max-width: 1024px) {
  .teacher-detail .teacher-head-txt::after {
    background: url(../img/teacher/teacher-head-bg02.svg) no-repeat center center/120px 100px;
    height: 100px;
    left: -20px;
    right: auto;
    top: -10px;
    width: 120px;
  }
}

@media (max-width: 1024px) {
  .teacher-detail .teacher-head-txt-upper {
    max-width: 72.8%;
    margin: 0 auto;
  }
}

.teacher-detail .teacher-head-en {
  color: #F44B01;
  font-family: 'Roboto Condensed', sans-serif;
  font-style: italic;
  font-size: 3rem;
  line-height: 1.6;
}

@media (max-width: 1300px) {
  .teacher-detail .teacher-head-en {
    font-size: 2.3vw;
  }
}

@media (max-width: 1024px) {
  .teacher-detail .teacher-head-en {
    font-size: 1.4rem;
  }
}

.teacher-detail .teacher-head-ttl {
  font-size: 6rem;
  line-height: 1.6;
}

@media (max-width: 1300px) {
  .teacher-detail .teacher-head-ttl {
    font-size: 4.615vw;
  }
}

@media (max-width: 1024px) {
  .teacher-detail .teacher-head-ttl {
    font-size: 2.7rem;
    line-height: 1.33;
  }
}

.teacher-detail .teacher-head-desc-large {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
  margin-top: 40px;
}

@media (max-width: 1400px) {
  .teacher-detail .teacher-head-desc-large {
    font-size: 2.57vw;
    margin-top: 8%;
    margin-bottom: 4%;
  }
}

@media (max-width: 1024px) {
  .teacher-detail .teacher-head-desc-large {
    font-size: 1.6rem;
    line-height: 1.68;
    margin-bottom: 30px;
    margin-top: 28px;
  }
}

.teacher-detail .teacher-head-desc {
  font-size: 1.6rem;
  line-height: 2.25;
}

@media (max-width: 1024px) {
  .teacher-detail .teacher-head-desc {
    font-size: 1.5rem;
    line-height: 2;
  }
}

.teacher-detail .teacher-head-img {
  margin-bottom: auto;
  margin-right: calc(57% - 50vw);
  max-width: 860px;
  position: relative;
}

@media (max-width: 1024px) {
  .teacher-detail .teacher-head-img {
    margin-right: 0;
    margin-top: 30px;
  }
}

.teacher-detail .teacher-head-img::before {
  background: #F44B01;
  content: '';
  height: 100%;
  position: absolute;
  right: -45px;
  top: 45px;
  width: 95%;
  z-index: -1;
}

@media (max-width: 1024px) {
  .teacher-detail .teacher-head-img::before {
    right: -10px;
    top: 10px;
  }
}

.teacher-detail .breadcrumb {
  max-width: calc(1280px + 5% *2);
}

@media (max-width: 1024px) {
  .teacher-detail .breadcrumb {
    max-width: calc(500px + 5% *2);
  }
}

/* ==========================================================================
研修一覧ページ
========================================================================== */
.training-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 20px;
}

@media (max-width: 1024px) {
  .training-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0;
  }
}

.training-item {
  background: #fff;
  border: 4px solid #F1EEE8;
  border-radius: 30px;
  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-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  margin-top: 3.38%;
  min-height: 500px;
  padding: 7.37% 5.93%;
  width: 48.3%;
}

@media (max-width: 1024px) {
  .training-item {
    border: 2px solid #F1EEE8;
    min-height: 288px;
    margin-top: 20px;
    padding: 8.95% 5.97%;
    width: 100%;
  }
}

.training-ttl-h3 {
  color: #F44B01;
  font-size: 3.2rem;
  line-height: 1.5;
  min-height: 92px;
  text-align: center;
}

@media (max-width: 1024px) {
  .training-ttl-h3 {
    font-size: 1.6rem;
    line-height: 1.43;
    min-height: 46px;
  }
}

.training-desc {
  margin-top: 30px;
}

@media (max-width: 1024px) {
  .training-desc {
    font-size: 1.4rem;
    margin-top: 20px;
  }
}

.training-item .btn-black {
  margin: auto auto 0 auto;
}

/* ==========================================================================
研修詳細ページ
========================================================================== */
.training-detail .page-head {
  max-height: 100%;
}

.training-detail .page-head-ttl {
  max-width: 90%;
}

@media (max-width: 1024px) {
  .training-detail .page-head-ttl {
    max-width: 100%;
  }
}

.training-detail .template .scroll {
  overflow-x: scroll;
}

.training-detail .template .training-table {
  border: none;
  border-collapse: separate;
  border-spacing: 2px;
  display: table;
  table-layout: fixed;
}

@media (max-width: 1024px) {
  .training-detail .template .training-table {
    max-width: 500px;
  }
}

.training-detail .template .training-table tbody tr td:first-child {
  background: #FAF9F7;
  text-align: left;
  width: auto;
}

.training-detail .template .training-table tbody tr .head-time {
  width: 178px;
}

@media (max-width: 1024px) {
  .training-detail .template .training-table tbody tr .head-time {
    width: 89px;
  }
}

.training-detail .template .training-table tbody tr .curriculum {
  width: 29.44%;
}

@media (max-width: 1024px) {
  .training-detail .template .training-table tbody tr .curriculum {
    width: 227px;
  }
}

.training-detail .template .training-table tbody tr .content {
  width: 53.7%;
}

@media (max-width: 1024px) {
  .training-detail .template .training-table tbody tr .content {
    width: 322px;
  }
}

.training-detail .template .training-table tbody tr .time {
  background: #FAF9F7;
  text-align: center !important;
  vertical-align: top;
}

.training-detail .template .training-table tbody tr .no {
  min-width: 35px;
  padding: 18px 5px;
  text-align: center !important;
  width: 35px;
}

.training-detail .template .training-table tbody tr .big-theme {
  min-width: 150px;
  width: 150px;
}

.training-detail .template .training-table tbody tr .small-theme {
  min-width: 180px;
  width: 180px;
}

.training-detail .template .training-table tbody tr .content02 {
  min-width: 400px;
  width: 400px;
}

.training-detail .template .training-table tbody tr .goal {
  min-width: 500px;
  width: 500px;
}

.training-detail .template .training-table tbody tr .middle {
  vertical-align: middle;
}

.training-detail .template .training-table tbody tr th,
.training-detail .template .training-table tbody tr td {
  border-bottom: none;
  padding: 18px;
}

@media (max-width: 1024px) {
  .training-detail .template .training-table tbody tr th,
  .training-detail .template .training-table tbody tr td {
    display: table-cell;
  }
}

.training-detail .template .training-table tbody tr th {
  background: #F1EEE8;
}

.training-detail .template .training-table tbody tr td {
  background: #FAF9F7;
}

/* ==========================================================================
他の研修を見る || 他の講師プロフィールを見る
========================================================================== */
.other-teacher,
.other-training {
  background: #F1EEE8;
}

.other-teacher .inner,
.other-training .inner {
  max-width: calc(1180px + 5% * 2);
  padding: 40px 5% 80px;
}

@media (max-width: 1024px) {
  .other-teacher .inner,
  .other-training .inner {
    max-width: calc(500px + 5% * 2);
    padding: 40px 5%;
  }
}

.other-teacher .other-h3-ttl,
.other-training .other-h3-ttl {
  background: #FAF9F7;
  font-size: 3.2rem;
  display: inline-block;
  letter-spacing: 0;
  line-height: 1.43;
  position: relative;
  padding: 20px 100px;
}

@media (max-width: 1024px) {
  .other-teacher .other-h3-ttl,
  .other-training .other-h3-ttl {
    font-size: 1.5rem;
    line-height: 1.46;
    padding: 10px 38px;
  }
}

.other-teacher .other-h3-ttl span,
.other-training .other-h3-ttl span {
  background: #F44B01;
  display: inline-block;
  height: 50px;
  left: 20px;
  position: absolute;
  text-align: center;
  top: -10px;
  width: 60px;
}

@media (max-width: 1024px) {
  .other-teacher .other-h3-ttl span,
  .other-training .other-h3-ttl span {
    height: 20px;
    left: 10px;
    width: 24px;
  }
}

.other-teacher .other-h3-ttl span::before, .other-teacher .other-h3-ttl span::after,
.other-training .other-h3-ttl span::before,
.other-training .other-h3-ttl span::after {
  position: absolute;
  content: '';
}

.other-teacher .other-h3-ttl span::before,
.other-training .other-h3-ttl span::before {
  border-right: 6px solid transparent;
  border-bottom: 10px solid #AF4618;
  height: 0;
  right: -6px;
  width: 0;
}

.other-teacher .other-h3-ttl span::after,
.other-training .other-h3-ttl span::after {
  border: 30px solid #F44B01;
  border-bottom-color: transparent;
  border-bottom-width: 15px;
  display: block;
  height: 50%;
  left: 0;
  top: 50%;
}

@media (max-width: 1024px) {
  .other-teacher .other-h3-ttl span::after,
  .other-training .other-h3-ttl span::after {
    border: 12px solid #F44B01;
    border-bottom-color: transparent;
    border-bottom-width: 9px;
  }
}

.other-teacher .other-list,
.other-training .other-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.other-teacher .other-item,
.other-training .other-item {
  margin-top: 30px;
  margin-right: 40px;
  padding-left: 18px;
  position: relative;
}

@media (max-width: 1024px) {
  .other-teacher .other-item,
  .other-training .other-item {
    margin-top: 20px;
    margin-right: 20px;
    padding-left: 9px;
  }
}

.other-teacher .other-item::before,
.other-training .other-item::before {
  background: #2E2E2E;
  border-radius: 2px;
  content: '';
  height: 11px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 11px;
}

@media (max-width: 1024px) {
  .other-teacher .other-item::before,
  .other-training .other-item::before {
    height: 6px;
    top: 10px;
    -webkit-transform: none;
            transform: none;
    width: 6px;
  }
}

.other-teacher .other-h4-ttl,
.other-training .other-h4-ttl {
  font-size: 2rem;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .other-teacher .other-h4-ttl,
  .other-training .other-h4-ttl {
    font-size: 1.4rem;
  }
}

.other-training .other-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/* ==========================================================================
お問い合わせページ
========================================================================== */
.page-contact .inner {
  max-width: calc(1180px + 5% * 2);
}

@media (max-width: 1024px) {
  .page-contact .inner {
    max-width: calc(500px + 5% * 2);
  }
}

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

.form-item:not(:last-of-type) {
  margin-bottom: 10px;
}

@media (max-width: 1024px) {
  .form-item:not(:last-of-type) {
    margin-bottom: 20px;
  }
}

@media (max-width: 1024px) {
  .form-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.form-label {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-right: 45px;
  min-width: 310px;
}

@media (max-width: 1024px) {
  .form-label {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 4px;
    margin-right: 0px;
    min-width: initial;
    width: 100%;
  }
}

.form-label-required::after {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #F44B01;
  color: #fff;
  content: "必須";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  height: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 15px;
  width: 56px;
}

@media (max-width: 1024px) {
  .form-label-required::after {
    font-size: 1.3rem;
    height: 20px;
    margin-left: 10px;
    width: 40px;
  }
}

.form-label-optional::after {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #AAAAAA;
  color: #fff;
  content: "任意";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  height: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 15px;
  width: 56px;
}

@media (max-width: 1024px) {
  .form-label-optional::after {
    font-size: 1.2rem;
    height: 20px;
    width: 40px;
  }
}

.form-item-textarea .form-label {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 15px;
}

.form-input {
  display: inline-block;
  width: calc(100% - 355px);
}

@media (max-width: 1024px) {
  .form-input {
    width: 100%;
  }
}

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

.form-input-name {
  max-width: 308px;
  width: 100%;
}

@media (max-width: 1024px) {
  .form-input-name {
    max-width: 100%;
  }
}

.form-input-name:nth-of-type(2) {
  margin-right: 10px;
}

@media (max-width: 1024px) {
  .form-input-name:nth-of-type(2) {
    margin-right: 0;
    margin-bottom: 5px;
  }
}

@media (min-width: 1025px) {
  .form-input-post {
    max-width: 308px;
  }
}

.form-input input,
.form-input textarea {
  background: #F1EEE8;
  border: none;
  font-family: inherit;
  font-size: 2rem;
}

@media (max-width: 1024px) {
  .form-input input,
  .form-input textarea {
    font-size: 1.5rem;
  }
}

.form-input input::-webkit-input-placeholder,
.form-input textarea::-webkit-input-placeholder,
.form-input select::-webkit-input-placeholder {
  color: #666666;
}

.form-input input:-ms-input-placeholder,
.form-input textarea:-ms-input-placeholder,
.form-input select:-ms-input-placeholder {
  color: #666666;
}

.form-input input::-ms-input-placeholder,
.form-input textarea::-ms-input-placeholder,
.form-input select::-ms-input-placeholder {
  color: #666666;
}

.form-input input::placeholder,
.form-input textarea::placeholder,
.form-input select::placeholder {
  color: #666666;
}

.form-input input,
.form-input textarea {
  padding: 15px 30px;
  width: 100%;
}

@media (max-width: 1024px) {
  .form-input input,
  .form-input textarea {
    padding: 10px 15px;
  }
}

.form-input textarea {
  resize: none;
  height: 215px;
}

.page-contact .center {
  text-align: center;
}

.form-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 1024px) {
  .form-btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.form-submit {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  display: inline-block;
  font-family: inherit;
  height: auto;
  margin: 60px auto 0;
  position: relative;
  width: auto;
}

.form-submit::after {
  border-right: 3px solid #F44B01;
  border-top: 3px solid #F44B01;
  content: '';
  height: 12px;
  position: absolute;
  right: 38px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 12px;
}

@media (max-width: 1024px) {
  .form-submit::after {
    border-right: 2px solid #F44B01;
    border-top: 2px solid #F44B01;
    height: 9px;
    width: 9px;
  }
}

.form-submit:hover::after {
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}

.form-btns .form-submit {
  margin: 60px 0 0 15px;
}

@media (max-width: 1024px) {
  .form-btns .form-submit {
    margin: 30px auto 0;
  }
}

.form-submit input[type="submit"] {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border-radius: 200px;
  border: none;
  border: 4px solid #F44B01;
  color: #F44B01;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: inherit;
  font-size: 2rem;
  font-weight: 700;
  height: 70px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 267px;
}

@media (max-width: 1024px) {
  .form-submit input[type="submit"] {
    border: 2px solid #F44B01;
    font-size: 1.5rem;
    height: 50px;
    width: 275px;
  }
}

.form-submit input[type="submit"]:hover {
  background: #F44B01;
  color: #fff;
}

.form-prev {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  display: inline-block;
  font-family: inherit;
  height: auto;
  margin-top: 60px;
  margin-right: 15px;
  position: relative;
  width: auto;
}

@media (max-width: 1024px) {
  .form-prev {
    margin: 60px auto 0;
  }
}

.form-prev::after {
  border-bottom: 3px solid #AAAAAA;
  border-left: 3px solid #AAAAAA;
  content: '';
  height: 12px;
  position: absolute;
  left: 38px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 12px;
}

@media (max-width: 1024px) {
  .form-prev::after {
    border-bottom: 2px solid #AAAAAA;
    border-left: 2px solid #AAAAAA;
    height: 9px;
    width: 9px;
  }
}

.form-prev:hover::after {
  border-bottom: 3px solid #fff;
  border-left: 3px solid #fff;
}

.form-prev input[type="button"] {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border-radius: 200px;
  border: none;
  border: 4px solid #AAAAAA;
  color: #AAAAAA;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: inherit;
  font-size: 2rem;
  font-weight: 700;
  height: 70px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 267px;
}

@media (max-width: 1024px) {
  .form-prev input[type="button"] {
    border: 2px solid #AAAAAA;
    font-size: 1.5rem;
    height: 50px;
    width: 275px;
  }
}

.form-prev input[type="button"]:hover {
  background: #AAAAAA;
  color: #fff;
}

.wpcf7-not-valid-tip {
  color: #f60a0a;
  font-weight: bold;
  margin-top: 5px;
}

.wpcf7-not-valid-tip::before {
  content: "※";
}

@media (max-width: 1024px) {
  .wpcf7-not-valid-tip {
    margin-top: 3px;
  }
}

div.wpcf7-response-output {
  border: none !important;
  font-size: 2rem;
  font-weight: bold;
  margin-top: 60px;
  text-align: center;
}

@media (max-width: 1024px) {
  div.wpcf7-response-output {
    font-size: 1.6rem;
  }
}

div.wpcf7 .ajax-loader {
  bottom: -40px;
  left: 50%;
  margin: 0;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

span.wpcf7-list-item {
  margin: 0;
}

/* 送信ローダーの位置調整 */
.wpcf7 .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (max-width: 1024px) {
  .wpcf7 .wpcf7-spinner {
    margin: 0 0 0 10px;
  }
}

.wpcf7-submit-block {
  /* 要調整(*1) */
  position: relative;
  margin-bottom: 2em;
}

.wpcf7-submit-block input[type='submit'] {
  min-width: 200px;
}

/* 送信ローダークリック時 */
.wpcf7-submit.wpcf7-active {
  pointer-events: none;
  opacity: .5;
}

/* ==========================================================================
送信確認ページ
========================================================================== */
.page-confirm .form-input {
  border: 1px solid #707070;
  min-height: 60px;
  padding: 15px 30px;
}

@media (max-width: 1024px) {
  .page-confirm .form-input {
    min-height: 40px;
    padding: 10px 15px;
  }
}

/* ==========================================================================
404ページ
========================================================================== */
.notFound-page {
  margin-top: 180px;
}

@media (max-width: 1024px) {
  .notFound-page {
    margin-top: 60px;
  }
}

.notFound-page .notFound .inner {
  max-width: calc(1200px + 5% * 2);
}

@media (max-width: 1024px) {
  .notFound-page .notFound .inner {
    max-width: calc(500px + 5% * 2);
  }
}

.notFound-page .notFound-ttl {
  text-align: center;
}

.notFound-page .notFound-ttl .upper {
  color: #F44B01;
  display: block;
  font-family: 'Roboto Condensed', sans-serif;
  font-style: italic;
  font-size: 13.6rem;
  line-height: 1.33;
}

@media (max-width: 1024px) {
  .notFound-page .notFound-ttl .upper {
    font-size: 6.8rem;
  }
}

.notFound-page .notFound-ttl .lower {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 3;
}

@media (max-width: 1024px) {
  .notFound-page .notFound-ttl .lower {
    font-size: 1.2rem;
  }
}

.notFound-page .notFound-box {
  background: #FAF9F7;
  font-size: 2rem;
  letter-spacing: 0;
  line-height: 1.7;
  margin-top: 45px;
  padding: 77px;
  position: relative;
  text-align: center;
}

@media (max-width: 1024px) {
  .notFound-page .notFound-box {
    font-size: 1.5rem;
    line-height: 2;
    margin-top: 50px;
    padding: 15px 4.7%;
  }
}

.notFound-page .notFound-box::before {
  background: url(../img/404/404-hexagon01.svg) no-repeat center center/95px 87px;
  bottom: -40px;
  content: '';
  height: 87px;
  left: 110px;
  position: absolute;
  width: 95px;
}

@media (max-width: 1024px) {
  .notFound-page .notFound-box::before {
    background: url(../img/404/404-hexagon01.svg) no-repeat center center/50px 44px;
    bottom: -25px;
    height: 44px;
    left: 30px;
    width: 50px;
  }
}

.notFound-page .notFound-box::after {
  background: url(../img/404/404-hexagon02.svg) no-repeat center center/181px 156px;
  content: '';
  height: 156px;
  position: absolute;
  right: 90px;
  top: -100px;
  width: 181px;
}

@media (max-width: 1024px) {
  .notFound-page .notFound-box::after {
    background: url(../img/404/404-hexagon02.svg) no-repeat center center/90px 78px;
    content: '';
    height: 78px;
    position: absolute;
    right: 4px;
    top: -37px;
    width: 90px;
  }
}

.notFound-page .notFound-box .txt-red {
  color: #F44B01;
}

.notFound-page .btn-red {
  margin: 60px auto 40px;
}

@media (max-width: 1024px) {
  .notFound-page .btn-red {
    margin: 40px auto 0px;
  }
}
