@charset "UTF-8";
/*==========
変数
============*/
@import url("https://fonts.googleapis.com/css2?family=Big+Shoulders+Stencil+Text&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inknut+Antiqua:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Anton&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Meddon&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kosugi+Maru&display=swap");
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
  src: local("Noto Sans CJK JP Regular"), local("Noto Sans JP Regular"), url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.woff2) format("woff2"), url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.woff) format("woff"), url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.otf) format("opentype");
}

@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 700;
  src: local("Noto Sans CJK JP Bold"), local("Noto Sans JP Bold"), url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Bold.woff2) format("woff2"), url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Bold.woff) format("woff"), url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Bold.otf) format("opentype");
}

/*==========
基本設定
============*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 16px;
}

@media (max-width: 768px) {
  html {
    font-size: 16px;
  }
}

@media (max-width: 376px) {
  html {
    font-size: 14px;
  }
}

body {
  margin: 0;
  padding: 20px 50px 0;
  font-family: 'Noto Sans JP', sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 768px) {
  body {
    padding: 10px 10px 0;
  }
}

@media (max-width: 376px) {
  body {
    padding: 10px 10px 0;
  }
}

.white-fade {
  animation: fadeIn 3s ease 0s 1 normal;
  -webkit-animation: fadeIn 3s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

p {
  color: #000;
}

ul,
ol {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: #000;
}

.back-ground {
  background-color: #EFEEE8;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: auto;
}

.wrapper-line {
  display: inline-block;
  max-width: 1300px;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.wrapper-1200 {
  padding: 0 calc(50 / 1300 * 100%);
}

.wrapper-1300 {
  max-width: 1300px;
  margin: 0 auto;
}

/*==========
nav-area
============*/
.nav-area {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  max-width: 40%;
  width: 100%;
  min-width: 510px;
  background: #34393D;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all .5s;
  transition: all .5s;
  z-index: 9998;
}

@media (max-width: 768px) {
  .nav-area {
    max-width: 100%;
    min-width: 100%;
  }
}

@media (max-width: 376px) {
  .nav-area {
    max-width: 100%;
    min-width: 100%;
  }
}

.nav-area-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.nav-area__list {
  width: 400px;
  margin: 130px 0 100px;
  padding-left: 4em;
}

@media (max-width: 768px) {
  .nav-area__list {
    margin-top: 100px;
  }
}

@media (max-width: 376px) {
  .nav-area__list {
    margin: 80px auto 60px;
    width: 320px;
    padding: 0;
  }
}

.nav-area__logo {
  width: 160px;
  text-indent: 1.25em;
  height: auto;
  margin-bottom: 50px;
  -webkit-transition: .2s;
  transition: .2s;
}

@media (max-width: 768px) {
  .nav-area__logo {
    width: 140px;
    -webkit-transition: none;
    transition: none;
  }
}

@media (max-width: 376px) {
  .nav-area__logo {
    width: 120px;
  }
}

.nav-area__logo:hover, .nav-area__logo:focus, .nav-area__logo:active {
  -webkit-filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.8));
          filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.8));
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition: .3s;
  transition: .3s;
}

@media (max-width: 768px) {
  .nav-area__logo:hover, .nav-area__logo:focus, .nav-area__logo:active {
    -webkit-transition: none;
    transition: none;
  }
}

.nav-area__item {
  font-size: 1.5em;
  line-height: 2em;
  text-indent: 1em;
  text-align: left;
  font-weight: 700;
  margin: 1em 1em 1em 0;
  background-image: -webkit-gradient(linear, right top, left top, color-stop(50%, rgba(0, 0, 0, 0)), color-stop(50%, rgba(228, 221, 34, 0.6)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0) 50%, rgba(228, 221, 34, 0.6) 50%);
  background-position: 100% 0;
  background-size: 200% auto;
  -webkit-transition: .5s;
  transition: .5s;
}

@media (max-width: 768px) {
  .nav-area__item {
    -webkit-transition: none;
    transition: none;
  }
}

.nav-area__item:hover, .nav-area__item:focus, .nav-area__item:active {
  background-position: 0 0;
  -webkit-transition: ease-out .7s;
  transition: ease-out .7s;
}

@media (max-width: 768px) {
  .nav-area__item:hover, .nav-area__item:focus, .nav-area__item:active {
    -webkit-transition: none;
    transition: none;
  }
}

.nav-area__item:hover .nav-area__link,
.nav-area__item:focus .nav-area__link,
.nav-area__item:active .nav-area__link {
  color: #000;
  -webkit-transition: ease-out .7s;
  transition: ease-out .7s;
}

@media (max-width: 768px) {
  .nav-area__item:hover .nav-area__link,
  .nav-area__item:focus .nav-area__link,
  .nav-area__item:active .nav-area__link {
    -webkit-transition: none;
    transition: none;
  }
}

.nav-area__link {
  color: #fff;
  display: block;
}

.nav-area__link:hover, .nav-area__link:focus, .nav-area__link:active {
  color: #000;
  -webkit-transition: ease-out .7s;
  transition: ease-out .7s;
}

@media (max-width: 768px) {
  .nav-area__link:hover, .nav-area__link:focus, .nav-area__link:active {
    -webkit-transition: none;
    transition: none;
  }
}

/*==========
header-btnset
============*/
.header-base {
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.header-btnset {
  position: fixed;
  right: 15px;
  z-index: 9999;
  text-align: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-btnset-low {
  right: auto;
}

.form-btn {
  padding: 12px 15px;
  background-color: #FFCF47;
  border-radius: 10px;
  margin-right: 40px;
  -webkit-transition: .2s;
  transition: .2s;
}

@media (max-width: 580px) {
  .form-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 6px 3px;
    margin-right: 5px;
  }
}

.form-btn:hover, .form-btn:focus, .form-btn:active {
  background-color: #000;
  -webkit-transition: .4s;
  transition: .4s;
}

@media (max-width: 768px) {
  .form-btn:hover, .form-btn:focus, .form-btn:active {
    -webkit-transition: .1s;
    transition: .1s;
  }
}

.form-btn:hover .form-btn__img,
.form-btn:focus .form-btn__img,
.form-btn:active .form-btn__img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  -webkit-transition: .4s;
  transition: .4s;
}

@media (max-width: 768px) {
  .form-btn:hover .form-btn__img,
  .form-btn:focus .form-btn__img,
  .form-btn:active .form-btn__img {
    -webkit-transition: .1s;
    transition: .1s;
  }
}

.form-btn:hover .form-btn__text,
.form-btn:focus .form-btn__text,
.form-btn:active .form-btn__text {
  color: #fff;
  -webkit-transition: .4s;
  transition: .4s;
}

@media (max-width: 768px) {
  .form-btn:hover .form-btn__text,
  .form-btn:focus .form-btn__text,
  .form-btn:active .form-btn__text {
    -webkit-transition: .1s;
    transition: .1s;
  }
}

.form-btn__img {
  width: 35px;
  -o-object-fit: contain;
     object-fit: contain;
  padding-right: 5px;
  vertical-align: bottom;
  -webkit-transition: .2s;
  transition: .2s;
}

@media (max-width: 580px) {
  .form-btn__img {
    width: 20px;
    padding-right: 0;
    margin: 0 auto;
    margin-bottom: 4px;
  }
}

.form-btn__text {
  display: inline;
  color: #34393D;
  -webkit-transition: .2s;
  transition: .2s;
}

@media (max-width: 580px) {
  .form-btn__text {
    font-size: 8px;
  }
}

/*==========
hamburger
============*/
.hamburger-box {
  max-width: 88px;
  width: 10vw;
  min-width: 57px;
  max-height: 88px;
  height: 10vw;
  min-height: 57px;
  background-color: rgba(0, 0, 0, 0);
  position: relative;
  top: 0;
  right: 0;
  margin: 0;
}

.hamburger-box-top {
  position: relative;
  background-color: rgba(0, 0, 0, 0);
  right: 0;
  margin: 0;
}

.hamburger-box__menu-btn {
  max-width: 35px;
  width: 100%;
  max-height: 30px;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media (max-width: 768px) {
  .hamburger-box__menu-btn {
    -webkit-transition: none;
    transition: none;
  }
}

.hamburger-box__menu-btn:hover, .hamburger-box__menu-btn:focus, .hamburger-box__menu-btn:active {
  outline: none;
}

.hamburger-box__menu-btn:hover .hamburger-box__menu-btn--line, .hamburger-box__menu-btn:focus .hamburger-box__menu-btn--line, .hamburger-box__menu-btn:active .hamburger-box__menu-btn--line {
  background-color: #E4DD22;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.hamburger-box__menu-btn--line {
  width: 100%;
  height: 3px;
  background-color: #34393D;
  position: absolute;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  border-radius: 5px;
  display: block;
}

.hamburger-box__menu-btn--line:nth-of-type(1) {
  top: 0;
}

.hamburger-box__menu-btn--line:nth-of-type(2) {
  top: 48%;
}

.hamburger-box__menu-btn--line:nth-of-type(3) {
  bottom: 0;
}

.hamburger-box__menu-btn--topline {
  background-color: #34393D;
}

.hamburger-box__close {
  /*--menu オープンのとき（形状：→(矢印））--*/
  -webkit-transform: rotate(-360deg);
          transform: rotate(-360deg);
  -webkit-transition: all .4s;
  transition: all .4s;
}

.hamburger-box__close--line:nth-of-type(1), .hamburger-box__close--line:nth-of-type(3) {
  width: 20px;
  background-color: #EFEEE8;
}

.hamburger-box__close--line:nth-of-type(2) {
  background-color: #EFEEE8;
}

.hamburger-box__close--line:nth-of-type(1) {
  -webkit-transform: translate(18px, 8px) rotate(45deg);
          transform: translate(18px, 8px) rotate(45deg);
}

.hamburger-box__close--line:nth-of-type(3) {
  -webkit-transform: translate(18px, -6px) rotate(-45deg);
          transform: translate(18px, -6px) rotate(-45deg);
}

.header {
  height: 100px;
}

@media (max-width: 768px) {
  .header {
    height: 90px;
  }
}

@media (max-width: 376px) {
  .header {
    height: 70px;
  }
}

.header__logo {
  position: fixed;
  max-width: 200px;
  width: 100%;
  height: auto;
  margin-left: 10px;
  z-index: 9997;
  padding: 10px 0 20px;
}

@media (max-width: 768px) {
  .header__logo {
    max-width: 160px;
  }
}

@media (max-width: 376px) {
  .header__logo {
    max-width: 120px;
  }
}

.header__logo-img {
  width: 100%;
}

/*==========
main
============*/
.main__title {
  font-family: Rockwell, Courier Bold, Courier, Georgia, Times, Times New Roman, serif;
  font-size: 3.75em;
  font-weight: 400;
  color: #fff;
  background-color: #34393D;
  padding: 12px 0px;
}

@media (max-width: 768px) {
  .main__title {
    font-size: calc(42rem / 16);
  }
}

@media (max-width: 376px) {
  .main__title {
    font-size: calc(38rem / 16);
  }
}

/*------------ 下層ページ h2の設定 -------------*/
.sec-title {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: Rockwell, Courier Bold, Courier, Georgia, Times, Times New Roman, serif;
  font-weight: 400;
  color: #5A6268;
  font-size: calc(62rem / 16);
  line-height: calc(73rem / 16);
  margin: 0 auto 40px;
}

@media (max-width: 768px) {
  .sec-title {
    font-size: calc(54rem / 16);
    line-height: calc(64rem / 16);
  }
}

@media (max-width: 376px) {
  .sec-title {
    font-size: calc(54rem / 14);
    line-height: calc(60rem / 16);
  }
}

.sec-title::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 7px;
  border-radius: 2px;
  background: -webkit-gradient(linear, left top, right top, color-stop(70%, rgba(52, 57, 61, 0.9)), color-stop(30%, rgba(228, 221, 34, 0.9)));
  background: linear-gradient(to right, rgba(52, 57, 61, 0.9) 70%, rgba(228, 221, 34, 0.9) 30%);
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform ease-out 1s .7s;
  transition: -webkit-transform ease-out 1s .7s;
  transition: transform ease-out 1s .7s;
  transition: transform ease-out 1s .7s, -webkit-transform ease-out 1s .7s;
}

.sec-title.scroll::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

/* simple-link　の設定*/
.simple-link {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #34393D;
  font-size: calc(20rem / 16);
}

@media (max-width: 768px) {
  .simple-link {
    font-size: calc(18rem / 16);
  }
}

@media (max-width: 376px) {
  .simple-link {
    font-size: calc(16rem / 14);
  }
}

.simple-link::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, black), color-stop(50%, #e4dd22));
  background: linear-gradient(to left, black 50%, #e4dd22 50%);
  background-position: 100% 0;
  background-size: 200% auto;
  -webkit-transition: ease-out .3s;
  transition: ease-out .3s;
}

.simple-link:hover::after, .simple-link:focus::after, .simple-link:active::after {
  background-position: 0 0;
  -webkit-transition: ease-out .4s;
  transition: ease-out .4s;
}

@media (max-width: 768px) {
  .simple-link:hover::after, .simple-link:focus::after, .simple-link:active::after {
    -webkit-transition: .1s;
    transition: .1s;
  }
}

/*fullfill-bar*/
.fullfill-bar {
  position: relative;
}

.fullfill-bar::after {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  content: '';
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, right top, left top, to(#e4dd22));
  background-image: linear-gradient(to left, #e4dd22 100%);
  background-position: 100% 0;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.scroll-fill::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transition: -webkit-transform ease-out .7s;
  transition: -webkit-transform ease-out .7s;
  transition: transform ease-out .7s;
  transition: transform ease-out .7s, -webkit-transform ease-out .7s;
}

.flexbox-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 100px 0 150px 0;
}

.flexbox-price .cont01 {
  width: 340px;
  height: 80px;
  border: 2px solid #707070;
  line-height: 78px;
  font-size: 1.6vw;
}

.flexbox-price .cont02 {
  width: 60px;
  height: 60px;
  border: 2px solid #707070;
  margin: 0 5% 0 5%;
}

.flexbox-price .cont03 {
  width: 340px;
  height: 80px;
  border: 2px solid #707070;
  line-height: 78px;
  font-size: 1.6vw;
}

.flexbox-price .cont03:after {
  background-image: -webkit-gradient(linear, left top, left bottom, to(#83aae3));
  background-image: linear-gradient(#83aae3 100%);
}

/*==========
footer
============*/
.footer {
  position: relative;
  background-color: #34393D;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: 30px -50px auto;
}

@media (max-width: 768px) {
  .footer {
    margin: 30px -10px auto;
  }
}

@media (max-width: 376px) {
  .footer {
    margin: 20px -10px auto;
  }
}

.footer-logo-box {
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 768px) {
  .footer-logo-box {
    height: 60px;
  }
}

.footer__logo {
  display: block;
  max-height: 60px;
  margin: auto 0;
  margin-left: calc(74 / 1300 * 100%);
}

@media (max-width: 768px) {
  .footer__logo {
    max-height: 50px;
  }
}

@media (max-width: 376px) {
  .footer__logo {
    max-height: 40px;
  }
}

.footer__copy {
  position: absolute;
  bottom: 8px;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  text-align: center;
  line-height: 1em;
  color: #EFEEE8;
  white-space: nowrap;
}

.sns-box {
  width: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  padding-top: 20px;
}

.sns-box a {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.sns-box img {
  max-height: 30px;
  max-width: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: .2s;
  transition: .2s;
}

@media (max-width: 768px) {
  .sns-box img {
    -webkit-transition: none;
    transition: none;
  }
}

.sns-box img:hover, .sns-box img:focus, .sns-box img:active {
  -webkit-filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.8));
          filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.8));
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition: .3s;
  transition: .3s;
}

@media (max-width: 768px) {
  .sns-box img:hover, .sns-box img:focus, .sns-box img:active {
    -webkit-transition: none;
    transition: none;
  }
}

.sns-box__insta {
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.copy-box {
  width: 100%;
  height: 20px;
}

/* JS用記述　ここから */
/*-------フェードインアニメーション------*/
.fade-line-animation {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
}

.fade-line-animation2 {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transform: translateX(60px);
          transform: translateX(60px);
}

.fade-line-animation3 {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transform: translateX(-60px);
          transform: translateX(-60px);
}

.fade-line-animation4 {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transform: translateY(-80px);
          transform: translateY(-80px);
}

.td-1 {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.td-2 {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.td-3 {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

.td-4 {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

.td-5 {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}

.td-6 {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

/*アニメーション要素までスクロールした時のスタイル*/
.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* top　ここから */
#loader-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #000;
  z-index: 1;
}

#loader {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  margin-top: -100px;
  margin-left: -100px;
  text-align: center;
  color: #fff;
  z-index: 2;
}

.top-wrapper-line {
  max-width: initial;
}

.header {
  position: relative;
}

.header__title {
  position: absolute;
  z-index: 20;
  top: 1.66667%;
  text-indent: 2em;
  font-size: 14px;
  font-weight: lighter;
  mix-blend-mode: overlay;
  /* オーバーレイを指定 */
  color: #fff;
}

@media (max-width: 376px) {
  .header__title {
    top: 5px;
    text-indent: 1em;
    font-size: 10px;
  }
}

.header > .flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__bgvideo {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.top-header {
  margin: -20px -50px auto;
  height: auto;
}

@media (max-width: 768px) {
  .top-header {
    padding: 0;
    margin: -10px -10px 0;
  }
}

.sp-only {
  display: none;
}

.header-btnset-top {
  top: 0;
}

@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
    max-width: 768px;
  }
}

@media (max-width: 376px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
    max-width: 376px;
  }
}

.top-intro-img-box {
  max-width: 600px;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: 100px 0 80px;
}

.top-intro__img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.fixed_btn {
  position: absolute;
  bottom: 0px;
  margin-bottom: 150px;
  left: 49.2%;
  z-index: 20;
}

@media (max-width: 768px) {
  .fixed_btn {
    left: 47.7%;
    margin-bottom: 350px;
  }
}

@media (max-width: 376px) {
  .fixed_btn {
    left: 47.7%;
    margin-bottom: 130px;
  }
}

.fixed_btn img {
  max-width: 30px;
}

@media (max-width: 959px) {
  .fixed_btn img {
    max-width: 20px;
  }
}

@media (max-width: 768px) {
  .fixed_btn img {
    max-width: 45px;
  }
}

@media (max-width: 376px) {
  .fixed_btn img {
    max-width: 30px;
  }
}

.logologo {
  z-index: 5000;
}

/* top　ここまで */
/* ---------- contents ---------- */
/* =================
　フォント読み込み
====================*/
.contents {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-family: 'Anton', sans-serif;
}

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

.contents img {
  max-width: 100%;
  display: block;
}

.contents p::after {
  font-family: 'Noto Sans JP', sans-serif;
}

.container01 {
  width: 35%;
  height: auto;
  border: dashed 1.8px #34393D;
}

@media (max-width: 768px) {
  .container01 {
    width: 50%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    border-left: none;
  }
}

@media (max-width: 376px) {
  .container01 {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    border-left: none;
    border-right: none;
  }
}

.container01 .flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.container01 .item02 {
  margin: auto;
}

.container01 .item02 .gate-title {
  max-width: 220px;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 10px;
  margin: 0 auto;
}

.container01 .item02 .gate-title-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
}

.container01 .item03 {
  position: relative;
}

.container01 .item03 a {
  display: block;
}

.container01 .item03 a .rotate-hover01 {
  -webkit-transition: .8s;
  transition: .8s;
}

.container01 .item03 a:hover .rotate-hover01,
.container01 .item03 a:active .rotate-hover01,
.container01 .item03 a:focus .rotate-hover01 {
  -webkit-transform: rotateX(360deg) rotateY(180deg);
          transform: rotateX(360deg) rotateY(180deg);
  -webkit-filter: invert(1) blur(1.5px);
          filter: invert(1) blur(1.5px);
}

.container01 .item03 a:hover .item03__text-hover,
.container01 .item03 a:active .item03__text-hover,
.container01 .item03 a:focus .item03__text-hover {
  opacity: 1;
}

.container01 .item03__text {
  position: absolute;
  top: 50%;
  left: 50.5%;
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
  font-size: calc(103rem / 16);
  line-height: calc(103rem / 16);
  color: #34393D;
  z-index: -1;
}

@media (max-width: 1401px) {
  .container01 .item03__text {
    font-size: calc(103vw / 1400 * 100);
    line-height: calc(103vw / 1400 * 100);
  }
}

@media (max-width: 959px) {
  .container01 .item03__text {
    left: 50%;
  }
}

@media (max-width: 768px) {
  .container01 .item03__text {
    font-size: calc(103vw / 768 * 100);
    line-height: calc(103vw / 768 * 100);
  }
}

@media (max-width: 376px) {
  .container01 .item03__text {
    font-size: 27.4vw;
    line-height: 27.4vw;
  }
}

.container01 .item03__text-hover {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-family: 'Big Shoulders Stencil Text', cursive;
  font-size: calc(60rem / 16);
  letter-spacing: .1em;
  line-height: 1.3;
  color: #bd7e71;
  opacity: 0;
  -webkit-transition: .8s;
  transition: .8s;
}

@media (max-width: 1401px) {
  .container01 .item03__text-hover {
    font-size: calc(60vw / 1400 * 100);
  }
}

@media (max-width: 768px) {
  .container01 .item03__text-hover {
    font-size: calc(50vw / 768 * 100);
  }
}

@media (max-width: 376px) {
  .container01 .item03__text-hover {
    font-size: calc(50vw / 376 * 100);
  }
}

.container01 .insta-ai {
  max-width: 45px;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: grayscale(1) brightness(0);
          filter: grayscale(1) brightness(0);
  -webkit-transition: .4s;
  transition: .4s;
  margin-right: 100px;
}

@media (max-width: 959px) {
  .container01 .insta-ai {
    max-width: 45px;
    margin-right: 70px;
    margin-left: 20px;
  }
}

@media (max-width: 768px) {
  .container01 .insta-ai {
    max-width: 45px;
    min-width: 20px;
    margin-left: 50px;
    margin-right: 100px;
  }
}

@media (max-width: 376px) {
  .container01 .insta-ai {
    max-width: 40px;
    min-width: 20px;
    margin-right: 100px;
    margin-left: 20px;
  }
}

.container01 .insta-ai:hover, .container01 .insta-ai:focus, .container01 .insta-ai:active {
  -webkit-filter: none;
          filter: none;
  -webkit-transition: .7s;
  transition: .7s;
}

.container01 .mail-aicon {
  margin-top: 19px;
  max-width: 60px;
}

@media (max-width: 768px) {
  .container01 .mail-aicon {
    margin-top: 20px;
  }
}

.container02 {
  width: 30%;
  border-top: dashed 1.8px #34393D;
  border-bottom: dashed 1.8px #34393D;
}

@media (max-width: 768px) {
  .container02 {
    width: 50%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

@media (max-width: 376px) {
  .container02 {
    width: 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    border-left: none;
    border-right: none;
    border-top: none;
  }
}

.container02__link {
  display: block;
}

.container02__link:hover .container02__img,
.container02__link:active .container02__img,
.container02__link:focus .container02__img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-filter: blur(2px);
          filter: blur(2px);
  -webkit-transition: 1s;
  transition: 1s;
}

.container02-imgbox {
  overflow: hidden;
}

.container02__img {
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: 1s;
  transition: 1s;
}

.gate-pv-logo {
  max-width: 110px;
  padding-top: 15px;
  padding-bottom: 10px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .gate-pv-logo {
    padding-top: 5px;
  }
}

.container03 {
  width: 35%;
  border: dashed 1.8px #34393D;
}

@media (max-width: 768px) {
  .container03 {
    width: 50%;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    border-right: none;
    border-left: none;
    border-top: none;
  }
}

@media (max-width: 376px) {
  .container03 {
    width: 100%;
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    border-left: none;
    border-right: none;
    border-top: none;
  }
}

.container03 .movie-box {
  position: relative;
  width: 100%;
  height: 70%;
}

.container03 .movie-box::before {
  content: "";
  display: block;
  padding-top: 60%;
}

.container03 .movie-box .movie {
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  padding-bottom: 56.25%;
  /*アスペクト比 16:9の場合の縦幅*/
  max-width: 356px;
  width: calc(356 / 420 * 100%);
  height: 0;
}

@media (min-width: 1201px) {
  .container03 .movie-box .movie {
    padding-bottom: 200px;
  }
}

.container03 .movie-box .movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 356px;
  width: 100%;
  max-height: calc(356px * 0.5625);
  height: 100%;
  z-index: 800;
  border: none;
}

.container03 .movie-box .movie::after {
  position: absolute;
  top: -2.8%;
  left: -2.8%;
  margin: auto;
  content: "";
  border: 1px solid #34393D;
  max-width: 375px;
  width: 106%;
  max-height: calc(375px * 0.5625);
  height: 106%;
}

.container04 {
  width: 35%;
  border-left: dashed 1.8px #34393D;
  border-bottom: dashed 1.8px #34393D;
  border-right: dashed 1.8px #34393D;
  position: relative;
}

@media (max-width: 768px) {
  .container04 {
    width: 50%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    border-left: none;
    border-top: none;
  }
}

@media (max-width: 376px) {
  .container04 {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    border-left: none;
    border-right: none;
  }
}

.container04__link {
  display: block;
}

.container04__link:hover .container04__img,
.container04__link:active .container04__img,
.container04__link:focus .container04__img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-filter: blur(2px);
          filter: blur(2px);
}

.container04-imgbox {
  overflow: hidden;
}

.container04-imgbox::after {
  position: absolute;
  content: "";
  outline: 1px solid #fff;
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
}

.container04__img {
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.container04__text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: calc(84rem / 16);
  line-height: 1;
  color: #fff;
  vertical-align: middle;
  display: inline;
}

@media (max-width: 1401px) {
  .container04__text {
    font-size: calc(84vw / 1400 * 100);
  }
}

@media (max-width: 768px) {
  .container04__text {
    font-size: calc(84vw / 768 * 100);
  }
}

@media (max-width: 376px) {
  .container04__text {
    font-size: calc(84vw / 376 * 100);
  }
}

.container04__text::after {
  content: attr(data-text);
  position: absolute;
  bottom: -16px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  font-size: calc(21rem / 16);
  line-height: 1;
  white-space: nowrap;
}

@media (max-width: 1401px) {
  .container04__text::after {
    font-size: calc(21vw / 1400 * 100);
  }
}

@media (max-width: 768px) {
  .container04__text::after {
    font-size: calc(21vw / 768 * 100);
  }
}

@media (max-width: 376px) {
  .container04__text::after {
    font-size: calc(21vw / 376 * 100);
  }
}

.container05 {
  width: 30%;
  border-bottom: dashed 1.8px #34393D;
}

@media (max-width: 768px) {
  .container05 {
    width: 50%;
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
}

@media (max-width: 376px) {
  .container05 {
    width: 100%;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    border-left: none;
    border-right: none;
  }
}

.container05 .flex {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: calc(20 / 349 * 100%);
}

.container05 .item01 {
  position: relative;
}

.container05 .item01 a {
  width: calc(100% / 2);
}

.container05 .item01 a img {
  -webkit-filter: grayscale(1) sepia(0.1);
          filter: grayscale(1) sepia(0.1);
  -webkit-transition: all .4s;
  transition: all .4s;
}

.container05 .item01 a img:hover, .container05 .item01 a img:active, .container05 .item01 a img:focus {
  -webkit-filter: none;
          filter: none;
  -webkit-transition: all .7s;
  transition: all .7s;
}

.container05 .item01__text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
  z-index: 900;
  font-size: calc(42rem / 16);
  line-height: calc(42rem / 16);
  font-family: 'Meddon', cursive;
  color: #eaeaea;
  pointer-events: none;
}

@media (max-width: 1401px) {
  .container05 .item01__text {
    font-size: calc(42vw / 1400 * 100);
    line-height: calc(42vw / 1400 * 100);
  }
}

@media (max-width: 768px) {
  .container05 .item01__text {
    font-size: calc(40vw / 768 * 100);
    line-height: calc(40vw / 768 * 100);
  }
}

@media (max-width: 376px) {
  .container05 .item01__text {
    font-size: calc(40vw / 376 * 100);
    line-height: calc(40vw / 376 * 100);
  }
}

.container06 {
  width: 35%;
  border-left: dashed 1.8px #34393D;
  border-bottom: dashed 1.8px #34393D;
  border-right: dashed 1.8px #34393D;
  position: relative;
}

@media (max-width: 768px) {
  .container06 {
    width: 50%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    border-left: none;
    border-top: none;
  }
}

@media (max-width: 376px) {
  .container06 {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    border-left: none;
    border-right: none;
  }
}

.container06__link {
  display: block;
}

.container06__link:hover .container06__img,
.container06__link:active .container06__img,
.container06__link:focus .container06__img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-filter: blur(2px);
          filter: blur(2px);
}

.container06-imgbox {
  overflow: hidden;
}

.container06-imgbox::after {
  position: absolute;
  content: "";
  outline: 1px solid #fff;
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
}

.container06__img {
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.container06__text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: calc(84rem / 16);
  line-height: 1;
  color: #fff;
  vertical-align: middle;
  display: inline;
}

@media (max-width: 1401px) {
  .container06__text {
    font-size: calc(84vw / 1400 * 100);
  }
}

@media (max-width: 768px) {
  .container06__text {
    font-size: calc(84vw / 768 * 100);
  }
}

@media (max-width: 376px) {
  .container06__text {
    font-size: calc(84vw / 376 * 100);
  }
}

.container06__text::after {
  content: attr(data-text);
  position: absolute;
  bottom: -16px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  font-size: calc(21rem / 16);
  line-height: 1;
  white-space: nowrap;
}

@media (max-width: 1401px) {
  .container06__text::after {
    font-size: calc(21vw / 1400 * 100);
  }
}

@media (max-width: 768px) {
  .container06__text::after {
    font-size: calc(21vw / 768 * 100);
  }
}

@media (max-width: 376px) {
  .container06__text::after {
    font-size: calc(21vw / 376 * 100);
  }
}

/* ------------------------------------ about GATE　ここから --------------------------------*/
/*===フォント読み込み====*/
/*=============
Whats GATE?
===============*/
.whats-gate-image {
  background-image: url(../img/about-gate-top-2.png);
  background-size: cover;
  width: 100%;
  height: auto;
  padding: calc(400 / 1200 * 100%) calc(100 / 1200 * 100%) calc(30 / 1200 * 100%) calc(150 / 1200 *100%);
}

@media (max-width: 768px) {
  .whats-gate-image {
    padding: calc(400 / 768 * 100%) calc(100 / 768 * 100%) calc(30 / 768 * 100%) calc(150 / 768 *100%);
  }
}

@media (max-width: 376px) {
  .whats-gate-image {
    background-size: contain;
    padding: calc(220 / 376 * 100%) 0 calc(20 / 376 * 100%) 0;
  }
}

.whats-gate {
  height: auto;
  text-align: right;
}

@media (max-width: 376px) {
  .whats-gate {
    text-align: center;
  }
}

.whats-gate .inner {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-height: 300px;
  display: inline-block;
}

@media (max-width: 768px) {
  .whats-gate .inner {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

@media (max-width: 376px) {
  .whats-gate .inner {
    width: calc(265 / 376 * 100%);
    text-align: right;
  }
}

.whats-gate__text {
  font-size: calc(20rem / 16);
  line-height: calc(38rem / 16);
  text-align: left;
  margin-bottom: 0.8em;
  -webkit-filter: drop-shadow(0px 0px 10px #fff);
          filter: drop-shadow(0px 0px 10px #fff);
}

@media (max-width: 768px) {
  .whats-gate__text {
    font-size: calc(18rem / 16);
    line-height: calc(29rem / 16);
  }
}

@media (max-width: 376px) {
  .whats-gate__text {
    font-size: 1rem;
    line-height: calc(25rem / 14);
  }
}

.whats-gate__text:last-of-type {
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .whats-gate__text:last-of-type {
    margin-bottom: 50px;
  }
}

@media (max-width: 376px) {
  .whats-gate__text:last-of-type {
    margin-bottom: 15px;
  }
}

.whats-gate img {
  max-width: 350px;
  height: auto;
}

@media (max-width: 768px) {
  .whats-gate img {
    max-width: 280px;
  }
}

@media (max-width: 376px) {
  .whats-gate img {
    max-width: 180px;
  }
}

.whats-gate-state {
  width: 100%;
  height: 550px;
  background-color: #34393D;
}

/* ------------------------------
   loopSlider
------------------------------ */
.loopSliderWrap {
  top: 0;
  left: 0;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
  position: absolute;
}

.loopSlider {
  margin: 0 auto;
  max-width: 1100px;
  height: 400px;
  text-align: left;
  position: relative;
  overflow: hidden;
  margin-top: 100px;
}

@media (max-width: 376px) {
  .loopSlider {
    height: 100px;
    margin-top: 50px;
  }
}

@media (max-width: 376px) {
  .loopSlider {
    height: 200px;
    margin-top: 50px;
  }
}

.loopSlider img {
  max-width: 450px;
  height: auto;
}

@media (max-width: 768px) {
  .loopSlider img {
    max-width: 450px;
  }
}

@media (max-width: 376px) {
  .loopSlider img {
    max-width: 250px;
  }
}

.loopSlider ul {
  height: 400px;
  float: left;
  overflow: hidden;
}

@media (max-width: 768px) {
  .loopSlider ul {
    height: 300px;
  }
}

@media (max-width: 376px) {
  .loopSlider ul {
    height: 300px;
  }
}

.loopSlider ul li {
  width: 500px;
  height: 400px;
  float: left;
  display: inline;
  overflow: hidden;
}

@media (max-width: 768px) {
  .loopSlider ul li {
    height: 300px;
  }
}

@media (max-width: 376px) {
  .loopSlider ul li {
    width: 250px;
    height: 200px;
  }
}

/* ------------------------------
 CLEARFIX ELEMENTS
------------------------------ */
.loopSliderWrap:after {
  content: "";
  display: none;
  clear: none;
}

/*=============
Wheres STUDIO?
===============*/
.wheres-studio {
  margin: 110px auto 0;
}

@media (max-width: 768px) {
  .wheres-studio {
    margin: 80px auto 0;
  }
}

@media (max-width: 376px) {
  .wheres-studio {
    margin: 70px auto 0px;
  }
}

.wheres-studio__text {
  max-width: 900px;
  font-size: calc(20rem / 16);
  margin: 60px auto 90px;
}

@media (max-width: 768px) {
  .wheres-studio__text {
    font-size: calc(18rem / 16);
    margin: 0 auto 80px;
  }
}

@media (max-width: 376px) {
  .wheres-studio__text {
    font-size: 1rem;
    margin: 0 auto 40px;
  }
}

.studio-container {
  margin-bottom: 200px;
}

@media (max-width: 768px) {
  .studio-container {
    margin-bottom: 0px;
  }
}

@media (max-width: 376px) {
  .studio-container {
    margin-bottom: 0px;
  }
}

.studio-card {
  -ms-flex-line-pack: justify;
      align-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 580px) {
  .studio-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.studio-card .img-box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: calc(80 / 1200 * 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  position: relative;
}

@media (max-width: 768px) {
  .studio-card .img-box {
    margin-right: calc(20 / 768 * 100%);
  }
}

@media (max-width: 580px) {
  .studio-card .img-box {
    margin-right: 0;
    height: 0;
    padding-bottom: 56.25%;
  }
}

.studio-card__map {
  max-width: 450px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

@media (max-width: 768px) {
  .studio-card__map {
    max-width: 370px;
  }
}

@media (max-width: 580px) {
  .studio-card__map {
    max-width: 100%;
  }
}

.studio-card__def-list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: left;
}

@media (max-width: 376px) {
  .studio-card__def-list {
    margin: 20px auto 0;
  }
}

.studio-card__def-list dt {
  font-size: calc(28rem / 16);
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 20px;
  text-align: left;
}

@media (max-width: 768px) {
  .studio-card__def-list dt {
    font-size: calc(22rem / 16);
    margin-bottom: 25px;
    text-align: center;
  }
}

@media (max-width: 580px) {
  .studio-card__def-list dt {
    font-size: calc(20rem / 14);
    margin-bottom: 10px;
  }
}

.studio-card__def-list dd {
  font-size: calc(20rem / 16);
  line-height: 2;
}

@media (max-width: 768px) {
  .studio-card__def-list dd {
    font-size: 1rem;
    text-align: center;
  }
}

@media (max-width: 580px) {
  .studio-card__def-list dd {
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
    max-width: 230px;
    margin: 0 auto;
  }
}

.studio-card__def-list dd:nth-of-type(3) {
  line-height: 1.5;
}

.studio-card__def-list dd:last-of-type {
  margin-top: 40px;
}

@media (max-width: 768px) {
  .studio-card__def-list dd:last-of-type {
    text-align: center;
  }
}

@media (max-width: 580px) {
  .studio-card__def-list dd:last-of-type {
    max-width: 230px;
    margin: 10px auto 0 auto;
    text-align: left;
  }
}

/*=============
コロナ対策
===============*/
.corona__span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(85%, transparent), color-stop(85%, #a1c3ce));
  background: linear-gradient(transparent 85%, #a1c3ce 85%);
}

.corona-bgc {
  margin-top: 80px;
  overflow: hidden;
}

.corona__title {
  margin-top: 100px;
  margin-bottom: 10px;
  font-size: calc(26rem / 16);
  font-weight: 400;
  color: #000;
}

@media (max-width: 768px) {
  .corona__title {
    margin-top: 70px;
    font-size: calc(22rem / 16);
  }
}

@media (max-width: 376px) {
  .corona__title {
    margin-top: 20px;
    font-size: calc(20rem / 14);
  }
}

.corona__text {
  max-width: 700px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  font-size: calc(16rem / 16);
}

@media (max-width: 768px) {
  .corona__text {
    font-size: calc(16rem / 16);
    text-align: left;
  }
}

@media (max-width: 376px) {
  .corona__text {
    font-size: 3vmin;
  }
}

.corona-box {
  margin: 30px auto 100px;
  max-width: 900px;
  width: 100%;
  height: auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 768px) {
  .corona-box {
    margin-bottom: 100px;
  }
}

@media (max-width: 376px) {
  .corona-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 70px;
  }
}

.corona-card {
  font-weight: 700;
  width: 48.75%;
  padding: calc(40 / 1200 * 100%);
}

@media (max-width: 768px) {
  .corona-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 376px) {
  .corona-card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
  }
}

.corona-card01, .corona-card02 {
  margin-bottom: 30px;
}

@media (max-width: 376px) {
  .corona-card01, .corona-card02 {
    margin: 0;
    height: 180px;
  }
}

.corona-card01 {
  background-color: #A4B0B5;
}

.corona-card02 {
  background-color: #C1CCD2;
}

.corona-card02 dl {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.corona-card03 {
  background-color: #829398;
}

.corona-card04 {
  background-color: #AABBC0;
}

.corona-card04 dl {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

@media (max-width: 376px) {
  .corona-card03, .corona-card04 {
    margin: 0;
    height: 180px;
  }
}

@media (max-width: 768px) {
  .corona-card:nth-last-of-type(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

@media (max-width: 376px) {
  .corona-card:nth-last-of-type(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.corona-card-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: auto 35px auto 0;
}

@media (max-width: 768px) {
  .corona-card-main {
    margin: 0;
  }
}

@media (max-width: 376px) {
  .corona-card-main {
    margin: auto 0 auto 10px;
  }
}

.corona-card:nth-of-type(even) .corona-card-main {
  margin: auto 0 auto 35px;
}

@media (max-width: 768px) {
  .corona-card:nth-of-type(even) .corona-card-main {
    margin: 0;
  }
}

@media (max-width: 376px) {
  .corona-card:nth-of-type(even) .corona-card-main {
    margin: auto 0 auto 10px;
  }
}

.corona-card__title {
  font-family: 'Kosugi Maru', sans-serif;
  font-size: calc(22rem / 16);
  color: #fff;
  margin-bottom: 15px;
}

@media (max-width: 1401px) {
  .corona-card__title {
    font-size: calc(22vw / 1400 * 100);
  }
}

@media (max-width: 768px) {
  .corona-card__title {
    font-size: calc(22vw / 768 * 100);
    margin: 25px 0 30px;
  }
}

@media (max-width: 376px) {
  .corona-card__title {
    font-size: calc(18vw / 376 * 100);
    margin: 0 0 5px 0;
  }
}

@media (max-width: 768px) {
  .corona-card__title br {
    display: none;
  }
}

@media (max-width: 376px) {
  .corona-card__title br {
    display: inline;
  }
}

.corona-card__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
}

@media (max-width: 1401px) {
  .corona-card__text {
    font-size: calc(16vw / 1400 * 100);
  }
}

@media (max-width: 768px) {
  .corona-card__text {
    font-size: calc(16vw / 768 * 100);
  }
}

@media (max-width: 376px) {
  .corona-card__text {
    font-size: calc(14vw / 376 * 100);
  }
}

.corona-card-imgbox {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 10px;
  background-color: #fff;
}

.corona-card-imgbox:nth-child(even) {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.corona-card-imgbox div {
  width: 100%;
  padding-top: 100%;
  position: relative;
}

.corona-card__img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

/*=============
Our VOICE 
===============*/
.line-voice {
  position: relative;
}

.line-voice::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, #34393D, #34393D 6px, transparent 6px, transparent 13px);
  background-size: 13px 1px;
  background-repeat: repeat-x;
}

@media (max-width: 768px) {
  .line-voice::before {
    bottom: -10px;
  }
}

.our-voice-img-box {
  background-image: url(../img/voice-bg.jpg);
  background-size: cover;
  background-position: center;
  padding: calc(210 / 1200 * 100%) calc(45 / 1200 * 100%) calc(430 / 1200 * 100%) 0;
}

@media (max-width: 768px) {
  .our-voice-img-box {
    padding: calc(120 / 768 * 100%) calc(35 / 768 * 100%) calc(250 / 768 * 100%) 0;
  }
}

@media (max-width: 376px) {
  .our-voice-img-box {
    background-image: url(../img/voice-bg-sp.jpg);
    padding: calc(25 / 376 * 100%) 0 calc(340 / 376 * 100%) 0;
    margin-top: 70px;
  }
}

.our-voice__title {
  margin: 0 0 0 auto;
  color: #fff;
}

@media (max-width: 376px) {
  .our-voice__title {
    margin-right: 10px;
  }
}

.our-voice__title::after {
  background: -webkit-gradient(linear, left top, right top, color-stop(70%, rgba(255, 255, 255, 0.9)), color-stop(30%, rgba(228, 221, 34, 0.9)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 70%, rgba(228, 221, 34, 0.9) 30%);
}

.voice-box {
  -ms-flex-line-pack: justify;
      align-content: space-between;
  margin-bottom: 20px;
}

.voice-box-inner {
  margin: 110px 70px 40px;
}

@media (max-width: 768px) {
  .voice-box-inner {
    margin: 60px 23px 0px;
  }
}

@media (max-width: 520px) {
  .voice-box-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 40px auto 0px;
  }
}

.voice-box__img {
  max-height: 80px;
  height: calc(80vw / 1400 * 100);
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 50px;
  max-width: 250px;
}

@media (max-width: 768px) {
  .voice-box__img {
    height: calc(50vw / 768 * 100);
    margin-bottom: 60px;
  }
}

@media (max-width: 520px) {
  .voice-box__img {
    height: calc(50vw / 376 * 100);
    margin-bottom: 50px;
  }
}

.voice-box__def-list {
  height: 320px;
  text-align-last: left;
}

@media (max-width: 768px) {
  .voice-box__def-list {
    height: 270px;
  }
}

@media (max-width: 376px) {
  .voice-box__def-list {
    height: 225px;
  }
}

.voice-box__question {
  font-size: calc(30rem / 16);
  line-height: 1.3em;
  margin-bottom: 45px;
  color: #5a6268;
  font-size: 25px;
}

@media (max-width: 768px) {
  .voice-box__question {
    font-size: calc(24rem / 16);
    line-height: 1em;
    margin-bottom: 30px;
  }
}

@media (max-width: 376px) {
  .voice-box__question {
    font-size: calc(20rem / 14);
    line-height: 1em;
    margin-bottom: 20px;
  }
}

.voice-box__answer {
  background-image: url(../img/checkOrenge.png);
  background-repeat: none;
  background-position: left top;
  padding-left: 2em;
  font-size: calc(20rem / 16);
  margin-bottom: 15px;
  font-size: 18px;
}

@media (max-width: 768px) {
  .voice-box__answer {
    font-size: calc(18rem / 16);
  }
}

@media (max-width: 376px) {
  .voice-box__answer {
    font-size: calc(16rem / 14);
  }
}

.voice-box__answer:last-of-type {
  margin-bottom: 0px;
}

.voice-students {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 85%;
  margin-right: 5%;
  min-width: 0;
}

@media (max-width: 376px) {
  .voice-students {
    margin-right: 5px;
  }
}

.voice-parents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 85%;
  min-width: 0;
}

.voice-parents .voice-box__answer {
  background-image: url(../img/checkBlue.png);
}

/*=============
swiper
===============*/
.about-swiper {
  overflow: hidden;
}

[class^="swiper-button-"] {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.swiper-slide {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.swiper-container {
  width: 80%;
  height: 90vh;
  float: left;
  -webkit-transition: opacity .6s ease, -webkit-transform .3s ease;
  transition: opacity .6s ease, -webkit-transform .3s ease;
  transition: opacity .6s ease, transform .3s ease;
  transition: opacity .6s ease, transform .3s ease, -webkit-transform .3s ease;
}

@media (max-width: 768px) {
  .swiper-container {
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    max-height: 300px;
  }
}

.swiper-container.nav-slider {
  width: 20%;
  padding-left: 5px;
}

@media (max-width: 768px) {
  .swiper-container.nav-slider {
    display: none;
  }
}

.swiper-container.nav-slider .swiper-slide {
  cursor: pointer;
  opacity: .4;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.swiper-container.nav-slider .swiper-slide.swiper-slide-active {
  opacity: 1;
}

.swiper-container.nav-slider .swiper-slide .content {
  width: 100%;
}

.swiper-container.nav-slider .swiper-slide .content .title {
  font-size: 20px;
}

.swiper-container:hover .swiper-button-prev,
.swiper-container:hover .swiper-button-next {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .swiper-container .swiper-button-prev,
  .swiper-container .swiper-button-next {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
}

.swiper-container.loading {
  opacity: 0;
  visibility: hidden;
}

.swiper-slide {
  overflow: hidden;
}

.swiper-slide .slide-bgimg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}

@media (max-width: 768px) {
  .swiper-slide .slide-bgimg {
    background-size: contain;
  }
}

.swiper-slide .entity-img {
  display: none;
}

.swiper-slide .content {
  position: absolute;
  top: 40%;
  left: 0;
  width: 50%;
  padding-left: 5%;
  color: #fff;
}

.swiper-slide .content .title {
  font-size: 2.6em;
  font-weight: bold;
  margin-bottom: 30px;
}

.swiper-slide .content .caption {
  display: block;
  font-size: 13px;
  line-height: 1.4;
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
  opacity: 0;
  -webkit-transition: opacity .3s ease, -webkit-transform .7s ease;
  transition: opacity .3s ease, -webkit-transform .7s ease;
  transition: opacity .3s ease, transform .7s ease;
  transition: opacity .3s ease, transform .7s ease, -webkit-transform .7s ease;
}

.swiper-slide .content .caption.show {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

[class^="swiper-button-"] {
  width: 44px;
  opacity: 0;
  visibility: hidden;
}

.swiper-button-prev {
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
}

.swiper-button-next {
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
}

/*==============
 企業情報
================*/
.company-inner {
  margin-top: 50px;
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .company-inner {
    margin-bottom: 50px;
  }
}

@media (max-width: 860px) {
  .company-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 20px;
    margin-bottom: 40px;
  }
}

@media (max-width: 860px) {
  .company-intro {
    margin-right: 0;
    margin-bottom: 35px;
  }
}

.company-img-box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.company-img-box img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.company-info {
  padding-top: 100px;
  padding-bottom: 50px;
}

@media (max-width: 768px) {
  .company-info {
    margin-top: 40px;
    padding-top: 60px;
    padding-bottom: 40px;
  }
}

@media (max-width: 860px) {
  .company-info {
    margin-top: 40px;
    padding-top: 60px;
    padding-bottom: 20px;
  }
}

.company-info__title {
  font-size: 1.5em;
  display: inline;
  letter-spacing: .1em;
}

@media (max-width: 376px) {
  .company-info__title {
    font-size: 5vmin;
  }
}

.company-info__def-list {
  line-height: 3em;
  word-break: break-all;
}

.company-info__def-list dt {
  float: left;
  text-indent: 1em;
}

.company-info__def-list dd {
  margin-left: 100px;
  text-align: left;
  border-bottom: 1px solid #34393D;
  max-width: 500px;
}

.company-info__def-list--ls {
  letter-spacing: 1em;
}

.company-info-contact {
  text-align: right;
}

@media (max-width: 768px) {
  .company-info-contact {
    padding-right: 15px;
    padding-bottom: 40px;
  }
}

@media (max-width: 376px) {
  .company-info-contact {
    padding-right: 15px;
    padding-bottom: 40px;
  }
}

.sp_br {
  display: none;
}

@media (max-width: 580px) {
  .sp_br {
    display: block;
  }
}

/* ------------------------------------ instructor　ここから　 --------------------------------*/
/*共通設定*/
.enclosing-text {
  font-family: Rockwell, Courier Bold, Courier, Georgia, Times, Times New Roman, serif;
  font-size: 26px;
  color: #EFEEE8;
  background-color: #34393D;
  padding: 2px 10px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .enclosing-text {
    font-size: 16px;
  }
}

@media (max-width: 376px) {
  .enclosing-text {
    font-size: 10px;
  }
}

/*== QandAの下線 ==*/
.line-inst {
  position: relative;
  margin-bottom: 20px;
}

.line-inst::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -.2em;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, #34393D, #34393D 6px, transparent 6px, transparent 13px);
  background-size: 13px 1px;
  background-repeat: repeat-x;
}

/*===== top サムネイル ======*/
.instructor-intro {
  margin-top: 70px;
  margin-bottom: 100px;
  margin-right: 20px;
  margin-left: 20px;
}

.instructor-intro__text01 {
  font-size: 1.1rem;
  margin-bottom: 70px;
}

.instructor-thumb {
  text-align: center;
}

@media (max-width: 768px) {
  .instructor-thumb {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 376px) {
  .instructor-thumb {
    padding-left: 0px;
    padding-right: 0px;
  }
}

.instructor-thumb-item {
  margin-right: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .instructor-thumb-item {
    margin-right: 0;
    gap: 20px;
  }
}

.instructor-thumb .last {
  margin-right: 0px;
}

.instructor-thumb__img {
  width: 100%;
  vertical-align: top;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  overflow: hidden;
  border-radius: 3px;
}

.instructor-thumb__img:hover {
  border-radius: 50%;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

@media (max-width: 768px) {
  .instructor-thumb-upper, .instructor-thumb-lower {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

.instructor-thumb__name {
  font-size: 28px;
  font-family: Rockwell, Courier Bold, Courier, Georgia, Times, Times New Roman, serif;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .instructor-thumb__name {
    font-size: 16px;
  }
}

.instructor-thumb-lower img {
  width: 98.1%;
}

.scroll-box {
  text-align: left;
  margin-top: 150px;
  margin-bottom: 120px;
}

.scroll-box img {
  width: 30px;
  margin: 0 0 0 48.5%;
}

@media (max-width: 376px) {
  .scroll-box img {
    margin: 0 0 0 46%;
  }
}

@media (max-width: 768px) {
  .scroll-box {
    margin-top: 75px;
    margin-bottom: 75px;
  }
}

@media (max-width: 376px) {
  .instructor-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.instructor {
  margin: 0 50px 150px;
  text-align: left;
  /*ここから左側（PC）*/
  /*ここから右側（PC）*/
}

.instructor img {
  border-radius: 3px;
}

@media (max-width: 768px) {
  .instructor {
    margin: 0 20px 200px;
  }
}

@media (max-width: 376px) {
  .instructor {
    margin: 0 20px 100px;
  }
}

@media (max-width: 376px) {
  .instructor h2 {
    font-size: 26px;
    margin-bottom: 10px;
    margin-right: 10px;
  }
}

.instructor__title {
  font-size: 54px;
  line-height: 54px;
  display: inline-block;
}

@media (max-width: 768px) {
  .instructor__title {
    font-size: 54px;
    line-height: 54px;
  }
}

@media (max-width: 376px) {
  .instructor__title {
    font-size: 42px;
    line-height: 42px;
  }
}

.instructor__title span {
  font-size: 28px;
  margin-right: 0px;
  margin-left: 5px;
  font-family: 'Noto Sans JP';
}

@media (max-width: 768px) {
  .instructor__title span {
    font-size: 16px;
  }
}

@media (max-width: 376px) {
  .instructor__title span {
    font-size: 12px;
  }
}

.instructor__genre {
  font-size: 24px;
  display: inline-block;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .instructor__genre {
    font-size: 16px;
  }
}

@media (max-width: 376px) {
  .instructor__genre {
    font-size: 10px;
  }
}

.instructor__genre--gray {
  font-size: 24px;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .instructor__genre--gray {
    font-size: 22px;
  }
}

@media (max-width: 376px) {
  .instructor__genre--gray {
    font-size: 14px;
    margin-right: 5px;
  }
}

.instructor__subtitle {
  font-size: 26px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

@media (max-width: 768px) {
  .instructor__subtitle {
    font-size: 24px;
  }
}

@media (max-width: 376px) {
  .instructor__subtitle {
    font-size: 24px;
  }
}

.instructor-detail-left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.instructor-detail-right {
  max-width: 585px;
  margin-left: calc(80 / 1200 * 100%);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media (max-width: 768px) {
  .instructor-detail-right {
    margin-left: calc(30 / 1200 * 100%);
  }
}

@media (max-width: 376px) {
  .instructor-detail-right {
    margin-left: 0;
  }
}

.instructor__text {
  font-size: 20px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .instructor__text {
    font-size: calc(18rem / 16);
  }
}

@media (max-width: 376px) {
  .instructor__text {
    font-size: calc(16rem / 14);
  }
}

.instructor__text:first-child {
  margin-top: 20%;
  padding-left: 10px;
  padding-right: 10px;
}

.instructor .plr10 {
  padding-left: 10px;
  padding-right: 10px;
}

.instructor__insta {
  width: 100px;
  height: auto;
  border: dashed 3px #41403E;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  -webkit-box-shadow: 20px 30px 20px -30px rgba(0, 0, 0, 0.6);
          box-shadow: 20px 30px 20px -30px rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  margin: 20px 0 0 auto;
  padding: 10px;
}

@media (max-width: 768px) {
  .instructor__insta {
    margin: 0 0 0 auto;
    width: 90px;
  }
}

@media (max-width: 376px) {
  .instructor__insta {
    margin: 40px auto 0;
  }
}

.instructor__insta-icon {
  width: 100%;
  height: auto;
}

.instructor__insta:hover {
  -webkit-box-shadow: 2px 8px 4px -6px rgba(0, 0, 0, 0.3);
          box-shadow: 2px 8px 4px -6px rgba(0, 0, 0, 0.3);
}

.instructor .inst-fix {
  margin-top: 60px;
  padding-left: 10px;
}

.instructor-lesson {
  margin-top: 60px;
  padding-left: 10px;
}

@media (max-width: 376px) {
  .instructor-lesson {
    text-align: center;
    padding-left: 0px;
  }
}

.instructor-lesson__deflist {
  font-size: calc(18rem / 16);
}

@media (max-width: 768px) {
  .instructor-lesson__deflist {
    font-size: 1rem;
  }
}

@media (max-width: 376px) {
  .instructor-lesson__deflist {
    font-size: calc(18rem / 14);
  }
}

.instructor-lesson__deflist dt {
  font-weight: bold;
  margin-top: 10px;
}

.instructor-lesson__deflist dt:first-child {
  margin-top: 0;
}

.instructor-lesson__deflist dd {
  text-indent: 2rem;
}

@media (max-width: 376px) {
  .instructor-lesson__deflist dd {
    text-indent: 0rem;
  }
}

.instructor-lesson__canceled {
  font-size: calc(18rem / 16);
}

@media (max-width: 768px) {
  .instructor-lesson__canceled {
    font-size: 1rem;
  }
}

@media (max-width: 376px) {
  .instructor-lesson__canceled {
    font-size: calc(18rem / 14);
  }
}

@media (max-width: 376px) {
  .instructor-lesson__canceled {
    text-indent: 0rem;
  }
}

.instructor-qanda {
  margin: 140px auto 0;
  width: 550px;
  height: auto;
}

@media (max-width: 768px) {
  .instructor-qanda {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

@media (max-width: 376px) {
  .instructor-qanda {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
    max-width: 273px;
  }
}

@media (max-width: 768px) {
  .instructor-qanda__deflist {
    margin: 0 5px;
  }
}

@media (max-width: 376px) {
  .instructor-qanda__deflist {
    margin: 0 2px;
  }
}

.instructor-qanda dt {
  font-size: calc(24rem / 16);
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .instructor-qanda dt {
    font-size: calc(20rem / 16);
  }
}

@media (max-width: 376px) {
  .instructor-qanda dt {
    font-size: calc(20rem / 14);
  }
}

.instructor-qanda dd {
  font-size: calc(20rem / 16);
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .instructor-qanda dd {
    font-size: calc(16rem / 16);
  }
}

@media (max-width: 376px) {
  .instructor-qanda dd {
    font-size: calc(14rem / 14);
  }
}

.instructor-career {
  margin: 145px auto 0;
  max-width: 900px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media (max-width: 376px) {
  .instructor-career {
    text-align: center;
  }
}

.instructor-career__deflist {
  font-size: 1rem;
  -webkit-column-count: 2;
          column-count: 2;
  word-break: break-all;
}

@media (max-width: 768px) {
  .instructor-career__deflist {
    -webkit-column-count: 1;
            column-count: 1;
  }
}

@media (max-width: 376px) {
  .instructor-career__deflist {
    font-size: calc(12rem / 14);
  }
}

.instructor-career dt {
  float: left;
}

.instructor-career dd {
  margin-left: 2em;
  text-align: left;
}

/*swiper-instructorのプロパティ　JSに紐づけ？？*/
.swiper-instructor {
  max-width: 585px;
}

.swiper-instructor img {
  vertical-align: top;
  margin-bottom: 30px;
  width: 100%;
}

.iframeWrap {
  position: relative;
  width: 100%;
  height: 0;
  /* 以下タテヨコ比（アスペクト比） */
  padding-top: 75%;
  /* 4:3 */
  padding-top: 66%;
  /* 3:2 */
  padding-top: 56%;
  /* 16:9 */
}

.iframeWrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 3px;
}

/* 独自クラス名 */
.mt20 {
  margin-top: 80px;
}

.mt100 {
  margin-top: 100px;
}

.mt120 {
  margin-top: 120px;
}

.trc {
  text-align: center;
}

.mb20 {
  margin-bottom: 20px;
}

.pt30 {
  padding-top: 110px;
}

@media (max-width: 768px) {
  .pt30 {
    padding-top: 90px;
  }
}

@media (max-width: 376px) {
  .pt30 {
    padding-top: 70px;
  }
}

/* Q & A */
#text-wrap, #text-wrap2, #text-wrap3, #text-wrap4 {
  height: 100%;
  display: block;
  margin: 0 auto;
}

.hide-text,
.hide-text2,
.hide-text3,
.hide-text4 {
  display: none;
}

button.readmore,
button.readmore2,
button.readmore3,
button.readmore4 {
  position: relative;
  height: 80px;
  max-width: 273px;
  margin: 40px auto;
  display: block;
  background-color: transparent;
  padding-bottom: 50px;
  border: none;
  outline: 0;
  -webkit-transition: .5s;
  transition: .5s;
  -erbkit-transition: .5s;
}

button.readmore::after,
button.readmore2::after,
button.readmore3::after,
button.readmore4::after {
  content: " ";
  position: absolute;
  width: 20px;
  height: 20px;
  border-top: solid 2px #2a407e;
  border-right: solid 2px #2a407e;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  right: 40px;
  top: 25px;
  -webkit-transition: .5s;
  transition: .5s;
  -erbkit-transition: .5s;
}

button.readmore:hover::after,
button.readmore2:hover::after,
button.readmore3:hover::after,
button.readmore4:hover::after {
  top: 40px;
  right: 40px;
}

.on-click {
  color: transparent !important;
}

.on-click {
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
}

.common-qanda p {
  margin-top: .5rem;
  padding-left: 1.5rem;
  text-indent: -1.8rem;
}

.common-qanda__question {
  font-weight: bold;
  margin-top: 1.5em;
}

.common-qanda__question span {
  color: #4a8f3f;
}

.common-qanda__answer {
  margin-bottom: 2rem;
}

.common-qanda__answer span {
  font-weight: bold;
  color: #e0225d;
}

.click-show {
  padding-bottom: 30px;
}

.Yu-KI-contact {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(85%, transparent), color-stop(85%, #ffd900));
  background: linear-gradient(transparent 85%, #ffd900 85%);
}

.Yu-KI-contact:hover {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), color-stop(0, #ffd900));
  background: linear-gradient(transparent 0, #ffd900 0);
}

/* ------------------------------------ instructor　ここまで --------------------------------*/
/* ---------- trial ---------- */
.trial img {
  width: 100%;
  max-width: 116px;
}

.trial .trial-title {
  margin-top: 80px;
}

.trial .sentence {
  margin: 75px 20px 90px 20px;
  font-size: 1.1rem;
}

.trial .flexbox-trial {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.trial .flexbox-trial .experience {
  width: 328px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border: solid 3px #2d2e34;
  border-radius: 25px;
  position: relative;
}

.trial .flexbox-trial .experience img {
  margin: 20px 0 30px 0;
}

.trial .flexbox-trial .experience h3 {
  font-size: 2.1rem;
}

@media (max-width: 1000px) {
  .trial .flexbox-trial .experience h3 {
    font-size: 1.6rem;
  }
}

.trial .flexbox-trial .experience hr {
  width: 80%;
  margin: 15px auto 0 auto;
  border: solid 0.5px #cc7704;
  background-color: #cc7704;
}

.trial .flexbox-trial .experience p {
  margin: 60px 30px 60px 30px;
  font-size: 1.1rem;
  text-align: left;
}

@media (max-width: 1000px) {
  .trial .flexbox-trial .experience p {
    font-size: 1.2rem;
  }
}

.trial .flexbox-trial .experience::before {
  width: 328px;
  height: 412px;
  content: "";
  position: absolute;
  background-color: #fff;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  bottom: 10px;
  right: 10px;
  z-index: -1;
}

.trial .flexbox-trial .visit {
  width: 328px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border: solid 3px #2d2e34;
  border-radius: 25px;
  position: relative;
  margin: 75px 3% 0 3%;
  background-image: none;
}

.trial .flexbox-trial .visit img {
  margin: 20px 0 30px 0;
}

.trial .flexbox-trial .visit h3 {
  font-size: 2.1rem;
}

@media (max-width: 1000px) {
  .trial .flexbox-trial .visit h3 {
    font-size: 1.6rem;
  }
}

.trial .flexbox-trial .visit hr {
  width: 80%;
  margin: 15px auto 0 auto;
  border: solid 0.5px #fff;
  background-color: #fff;
}

.trial .flexbox-trial .visit p {
  margin: 60px 30px 60px 30px;
  font-size: 1.1rem;
  text-align: left;
}

@media (max-width: 1000px) {
  .trial .flexbox-trial .visit p {
    font-size: 1.2rem;
  }
}

.trial .flexbox-trial .visit::before {
  width: 328px;
  height: 412px;
  content: "";
  position: absolute;
  background-color: #b0b5ce;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  bottom: 10px;
  right: 10px;
  z-index: -1;
}

.trial .flexbox-trial .process {
  width: 328px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border: solid 3px #2d2e34;
  border-radius: 25px;
  position: relative;
  margin-top: 150px;
}

.trial .flexbox-trial .process img {
  margin: 20px 0 30px 0;
}

.trial .flexbox-trial .process h3 {
  font-size: 2.1rem;
  color: #fff;
}

@media (max-width: 1000px) {
  .trial .flexbox-trial .process h3 {
    font-size: 1.6rem;
  }
}

.trial .flexbox-trial .process hr {
  width: 80%;
  margin: 15px auto 0 auto;
  border: solid 0.5px #e5e513;
  background-color: #e5e513;
}

.trial .flexbox-trial .process p {
  margin: 60px 30px 60px 30px;
  font-size: 1.1rem;
  text-align: left;
  color: #fff;
}

@media (max-width: 1000px) {
  .trial .flexbox-trial .process p {
    font-size: 1.2rem;
  }
}

.trial .flexbox-trial .process::before {
  width: 328px;
  height: 412px;
  content: "";
  position: absolute;
  background-color: #4e578d;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  bottom: 10px;
  right: 10px;
  z-index: -1;
}

.trial .application {
  position: relative;
  overflow: hidden;
  text-align: center;
  max-width: 1200px;
  text-shadow: 0 0 12px #7b7a35;
  margin: 160px 0 120px;
  border-radius: 10px;
}

@media (max-width: 580px) {
  .trial .application {
    height: 300px;
  }
}

.trial .application::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../img/trial-bghero.jpg);
  background-size: cover;
  -webkit-filter: blur(0);
          filter: blur(0);
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  top: 0;
  opacity: 70%;
}

.trial .application:hover::after {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  cursor: pointer;
  -webkit-filter: blur(5px);
          filter: blur(5px);
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

.trial .trialspace {
  z-index: 1;
  position: relative;
  padding: 150px 0;
}

.trial .trialspace__price {
  display: inline-block;
  background-color: #f6910d;
  border-radius: 5px;
  text-shadow: none;
  padding: 15px;
  font-size: 1.4rem;
  color: #fff;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.trial .trialspace__price:hover {
  background-color: #f8b945;
}

.trial .trialspace__trial {
  font-weight: bold;
  text-shadow: none;
  font-size: 1.6rem;
  margin: 10px;
  text-shadow: 0 0 15px #fff;
}

@media (max-width: 580px) {
  .trial .trialspace {
    padding: 75px 0;
  }
}

/* ---------- course ---------- */
.course {
  padding-top: 40px;
}

.course .course-title {
  margin-bottom: 100px;
}

.course .flexbox-course {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /*イントラの下線ユニーク設定*/
}

.course .flexbox-course .simple-link-course {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  margin-top: 5px;
}

.course .flexbox-course .simple-link-course::after {
  bottom: -6px;
}

.course .flexbox-course .simple-link-interlock:hover .simple-link-course::after {
  background-position: 0 0;
  -webkit-transition: ease-out .1s;
  transition: ease-out .1s;
}

.course .flexbox-course .introduction {
  width: 355px;
  height: auto;
  background-color: #DBC9CB;
  border-style: none;
  border-top: solid 20px #34393d;
}

.course .flexbox-course .introduction__image {
  margin: 30px 0;
  max-width: 150px;
}

.course .flexbox-course .introduction h3 {
  font-size: 30px;
  margin-bottom: 20px;
}

.course .flexbox-course .introduction .text01 {
  text-align: center;
}

.course .flexbox-course .introduction span {
  font-size: 26px;
  font-weight: bold;
}

.course .flexbox-course .introduction hr {
  width: 80%;
  margin: 20px auto 0 auto;
  border: dashed 0.5px #707070;
}

@media (max-width: 1000px) {
  .course .flexbox-course .introduction hr {
    margin-top: 5px;
  }
}

.course .flexbox-course .introduction .text02 {
  text-align: left;
  margin: 40px 10% 0 10%;
  font-size: 1.1rem;
  height: 62px;
}

.course .flexbox-course .introduction .text02 span {
  font-size: 1.1rem;
}

@media (max-width: 1000px) {
  .course .flexbox-course .introduction .text02 {
    font-size: 1.0rem;
    margin: 10px 15px 5px 15px;
  }
}

.course .flexbox-course .introduction .text03 {
  text-align: left;
  margin: 20% 10% 0 10%;
  font-size: .8rem;
  font-weight: bold;
}

@media (max-width: 1000px) {
  .course .flexbox-course .introduction .text03 {
    padding-top: 40px;
    font-size: 0.9rem;
  }
}

.course .flexbox-course .introduction .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 8% 15px 8%;
}

@media (max-width: 1000px) {
  .course .flexbox-course .introduction .inner {
    margin-bottom: 0;
  }
}

.course .flexbox-course .introduction .inner .item01 {
  margin: 10px 3px 0 0;
}

.course .flexbox-course .introduction .inner .item01 img {
  width: 100%;
  max-width: 75px;
  height: auto;
  margin-bottom: 0;
  border-radius: 50%;
  -webkit-box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.29);
          box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.29);
}

@media (max-width: 1000px) {
  .course .flexbox-course .introduction .inner .item01 img {
    min-width: 50px;
  }
}

.course .flexbox-course .introduction .inner .item01 p {
  font-size: 1rem;
  line-height: 0.5;
}

@media (max-width: 1000px) {
  .course .flexbox-course .introduction .inner .item01 p {
    font-size: 0.8rem;
    line-height: 1;
  }
}

.course .flexbox-course .introduction .inner .item01 span {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  font-weight: normal;
}

.course .flexbox-course .introduction .inner .item02 {
  margin: 10px 0 0 0;
}

.course .flexbox-course .introduction .inner .item02 img {
  width: 100%;
  max-width: 75px;
  height: auto;
  margin-bottom: 0;
  border-radius: 50%;
  -webkit-box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.29);
          box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.29);
}

@media (max-width: 1000px) {
  .course .flexbox-course .introduction .inner .item02 img {
    min-width: 50px;
  }
}

.course .flexbox-course .introduction .inner .item02 p {
  font-size: 1rem;
  line-height: 0.5;
}

@media (max-width: 1000px) {
  .course .flexbox-course .introduction .inner .item02 p {
    font-size: 0.8rem;
    line-height: 1;
  }
}

.course .flexbox-course .introduction .inner .item02 span {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  font-weight: normal;
}

.course .flexbox-course .beginner {
  width: 355px;
  height: auto;
  background-color: #DAC7A5;
  border-style: none;
  border-top: solid 20px #34393d;
  background-image: none;
  margin: 0 5% 0 5%;
}

.course .flexbox-course .beginner__image {
  margin: 30px 0;
  max-width: 150px;
}

.course .flexbox-course .beginner h3 {
  font-size: 30px;
  margin-bottom: 20px;
}

.course .flexbox-course .beginner .text01 {
  text-align: center;
}

.course .flexbox-course .beginner span {
  font-size: 26px;
  font-weight: bold;
}

.course .flexbox-course .beginner hr {
  width: 80%;
  margin: 20px auto 0 auto;
  border: dashed 0.5px #707070;
}

@media (max-width: 1000px) {
  .course .flexbox-course .beginner hr {
    margin-top: 5px;
  }
}

.course .flexbox-course .beginner .text02 {
  text-align: left;
  margin: 40px 10% 0 10%;
  font-size: 1.1rem;
  height: 62px;
}

.course .flexbox-course .beginner .text02 span {
  font-size: 1.1rem;
}

@media (max-width: 1000px) {
  .course .flexbox-course .beginner .text02 {
    font-size: 1.0rem;
    margin: 10px 15px 5px 15px;
  }
}

.course .flexbox-course .beginner .text03 {
  text-align: left;
  margin: 20% 10% 0 10%;
  font-size: .8rem;
  font-weight: bold;
}

@media (max-width: 1000px) {
  .course .flexbox-course .beginner .text03 {
    padding-top: 40px;
    font-size: 0.9rem;
  }
}

.course .flexbox-course .beginner .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 8% 15px 8%;
}

.course .flexbox-course .beginner .inner .item01 {
  margin-top: 10px;
  margin-right: 0;
  padding: 0;
  width: auto;
  height: auto;
}

.course .flexbox-course .beginner .inner .item01 img {
  width: 100%;
  max-width: 75px;
  height: auto;
  margin-bottom: 0;
  border-radius: 50%;
  -webkit-box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.29);
          box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.29);
}

@media (max-width: 1000px) {
  .course .flexbox-course .beginner .inner .item01 img {
    min-width: 50px;
  }
}

.course .flexbox-course .beginner .inner .item01 p {
  font-size: 1rem;
  line-height: 0.5;
}

@media (max-width: 1000px) {
  .course .flexbox-course .beginner .inner .item01 p {
    font-size: 0.8rem;
    line-height: 1;
  }
}

.course .flexbox-course .beginner .inner .item01 span {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  font-weight: normal;
}

.course .flexbox-course .beginner .inner .item02 {
  margin: 10px 3px 0 3px;
}

.course .flexbox-course .beginner .inner .item02 img {
  width: 100%;
  max-width: 75px;
  height: auto;
  margin-bottom: 0;
  border-radius: 50%;
  -webkit-box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.29);
          box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.29);
}

@media (max-width: 1000px) {
  .course .flexbox-course .beginner .inner .item02 img {
    min-width: 50px;
  }
}

.course .flexbox-course .beginner .inner .item02 p {
  font-size: 1rem;
  line-height: 0.5;
}

@media (max-width: 1000px) {
  .course .flexbox-course .beginner .inner .item02 p {
    font-size: 0.8rem;
    line-height: 1;
  }
}

.course .flexbox-course .beginner .inner .item02 span {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  font-weight: normal;
}

.course .flexbox-course .beginner .inner .item03 {
  margin-top: 10px;
}

.course .flexbox-course .beginner .inner .item03 img {
  width: 100%;
  max-width: 75px;
  height: auto;
  margin-bottom: 0;
  border-radius: 50%;
  -webkit-box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.29);
          box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.29);
}

@media (max-width: 1000px) {
  .course .flexbox-course .beginner .inner .item03 img {
    min-width: 50px;
  }
}

.course .flexbox-course .beginner .inner .item03 p {
  font-size: 1rem;
  line-height: 0.5;
}

@media (max-width: 1000px) {
  .course .flexbox-course .beginner .inner .item03 p {
    font-size: 0.8rem;
    line-height: 1;
  }
}

.course .flexbox-course .beginner .inner .item03 span {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  font-weight: normal;
}

.course .flexbox-course .adult {
  width: 355px;
  height: auto;
  background-color: #B4D1C7;
  border-style: none;
  border-top: solid 20px #34393d;
}

.course .flexbox-course .adult__image {
  margin: 30px 0;
  max-width: 150px;
}

.course .flexbox-course .adult h3 {
  font-size: 30px;
  margin-bottom: 20px;
}

.course .flexbox-course .adult .text01 {
  text-align: center;
}

.course .flexbox-course .adult span {
  font-size: 26px;
  font-weight: bold;
}

.course .flexbox-course .adult hr {
  width: 80%;
  margin: 20px auto 0 auto;
  border: dashed 0.5px #707070;
}

@media (max-width: 1000px) {
  .course .flexbox-course .adult hr {
    margin-top: 5px;
  }
}

.course .flexbox-course .adult .text02 {
  text-align: left;
  margin: 40px 10% 0 10%;
  font-size: 1.1rem;
  height: 62px;
}

.course .flexbox-course .adult .text02 span {
  font-size: 1.1rem;
}

@media (max-width: 1000px) {
  .course .flexbox-course .adult .text02 {
    font-size: 1.0rem;
    margin: 10px 15px 5px 15px;
  }
}

.course .flexbox-course .adult .text03 {
  text-align: left;
  margin: 20% 10% 0 10%;
  font-size: .8rem;
  font-weight: bold;
}

@media (max-width: 1000px) {
  .course .flexbox-course .adult .text03 {
    padding-top: 40px;
    font-size: 0.9rem;
  }
}

.course .flexbox-course .adult .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 8% 15px 8%;
}

@media (max-width: 1000px) {
  .course .flexbox-course .adult .inner {
    margin-bottom: 0;
  }
}

.course .flexbox-course .adult .inner .item01 {
  margin: 10px 3px 0 0;
}

.course .flexbox-course .adult .inner .item01 img {
  width: 100%;
  max-width: 75px;
  height: auto;
  margin-bottom: 0;
  border-radius: 50%;
  -webkit-box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.29);
          box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.29);
}

@media (max-width: 1000px) {
  .course .flexbox-course .adult .inner .item01 img {
    min-width: 50px;
  }
}

.course .flexbox-course .adult .inner .item01 p {
  font-size: 1rem;
  line-height: 0.5;
}

@media (max-width: 1000px) {
  .course .flexbox-course .adult .inner .item01 p {
    font-size: 0.8rem;
    line-height: 1;
  }
}

.course .flexbox-course .adult .inner .item01 span {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  font-weight: normal;
}

.course .fee__table {
  width: 80%;
  margin: 150px auto 30px auto;
  border-collapse: collapse;
  text-align: center;
}

.course .fee__table .fee__thead {
  height: 60px;
}

.course .fee__table .fee__thead th {
  border-right: dashed 1px;
  font-size: 1.1rem;
}

.course .fee__table .fee__introduction {
  height: 90px;
}

.course .fee__table .fee__introduction td {
  border-right: dashed 1px;
  border-top: dashed 1px;
  background-color: #fff;
  font-size: 1rem;
}

.course .fee__table .fee__introduction-title {
  background-color: #DBC9CB !important;
  font-size: 1.1rem !important;
}

.course .fee__table .fee__beginner {
  height: 90px;
}

.course .fee__table .fee__beginner td {
  border-right: dashed 1px;
  border-top: dashed 1px;
  background-color: #fff;
  font-size: 1rem;
}

.course .fee__table .fee__beginner-title {
  background-color: #DAC7A5 !important;
  font-size: 1.1rem !important;
}

.course .fee__table .fee__adult {
  height: 90px;
}

.course .fee__table .fee__adult td {
  border-right: dashed 1px;
  border-top: dashed 1px;
  background-color: #fff;
  font-size: 1rem;
}

.course .fee__table .fee__adult-title {
  background-color: #B4D1C7 !important;
  font-size: 1.1rem !important;
}

.course .fee__text {
  font-size: 1.1rem;
  text-align: left;
  width: 80%;
  margin: 0 auto 150px auto;
}

.course .fee__text-01 {
  margin-bottom: 10px;
}

.course .fee__text-01 img {
  max-width: 30px;
  margin-right: 10px;
  vertical-align: bottom;
}

.course .fee__text-02 img {
  max-width: 30px;
  margin-right: 10px;
  vertical-align: bottom;
}

@media screen and (max-width: 1000px) {
  .course .fee {
    padding: 0 calc(50 / 768 * 100%);
  }
  .course .fee__table {
    width: 100%;
    margin: 100px auto 20px auto;
  }
  .course .fee__table .fee__thead th {
    font-size: 1rem;
  }
  .course .fee__table .fee__introduction td {
    font-size: 0.9rem;
  }
  .course .fee__table .fee__introduction-title {
    font-size: 0.9rem !important;
    width: 25%;
  }
  .course .fee__table .fee__beginner td {
    font-size: 0.9rem;
  }
  .course .fee__table .fee__beginner-title {
    font-size: 0.9rem !important;
    width: 25%;
  }
  .course .fee__table .fee__adult td {
    font-size: 0.9rem;
  }
  .course .fee__table .fee__adult-title {
    font-size: 0.9rem !important;
    width: 25%;
  }
  .course .fee__text {
    font-size: 0.9rem;
    width: 100%;
    margin: 0 auto 60px auto;
  }
  .course .fee__text-01 img {
    max-width: 20px;
  }
  .course .fee__text-02 img {
    max-width: 20px;
  }
}

@media screen and (max-width: 550px) {
  .course .fee {
    padding: 0;
  }
  .course .fee__thead {
    display: none;
  }
  .course .fee td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .course .fee td:first-child {
    font-weight: bold;
    text-align: center;
  }
  .course .fee td::before {
    content: attr(data-label);
    font-weight: bold;
    width: 50%;
    height: 100%;
    border-right: dashed 1px;
    background-color: #EFEEE8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .course .fee__table {
    margin: 0 auto 20px auto;
  }
  .course .fee__table .fee__thead th {
    font-size: 1.1rem;
  }
  .course .fee__table .fee__introduction td {
    font-size: 0.9rem;
    height: 50px;
    border-right: none;
  }
  .course .fee__table .fee__introduction td:nth-child(2) {
    border-top: none;
  }
  .course .fee__table .fee__introduction-title {
    font-size: 1.1rem !important;
    width: 100%;
    border: none !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .course .fee__table .fee__introduction-title::before {
    display: none;
  }
  .course .fee__table .fee__introduction .sp-data {
    padding-right: 10%;
  }
  .course .fee__table .fee__beginner td {
    font-size: 0.9rem;
    height: 50px;
    border-right: none;
  }
  .course .fee__table .fee__beginner td:nth-child(2) {
    border-top: none;
  }
  .course .fee__table .fee__beginner-title {
    font-size: 1.1rem !important;
    width: 100%;
    border: none !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .course .fee__table .fee__beginner-title::before {
    display: none;
  }
  .course .fee__table .fee__beginner .sp-data {
    padding-right: 10%;
  }
  .course .fee__table .fee__adult td {
    font-size: 0.9rem;
    height: 50px;
    border-right: none;
  }
  .course .fee__table .fee__adult td:nth-child(2) {
    border-top: none;
  }
  .course .fee__table .fee__adult-title {
    font-size: 1.1rem !important;
    width: 100%;
    border: none !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .course .fee__table .fee__adult-title::before {
    display: none;
  }
  .course .fee__table .fee__adult .sp-data {
    padding-right: 10%;
  }
  .course .fee__text {
    font-size: 0.9rem;
    width: 100%;
    margin: 0 auto 50px auto;
  }
  .course .fee__text-01 img {
    max-width: 20px;
  }
  .course .fee__text-02 img {
    max-width: 20px;
  }
}

.course .flexbox-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 150px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.course .flexbox-link .text01 {
  font-size: 22px;
}

.course .flexbox-link .text02 {
  font-size: 22px;
  margin-left: 70px;
}

/* ---------- qanda ---------- */
.qanda {
  margin: 0 5% 0;
}

.qanda .flexbox-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 150px;
}

.qanda .flexbox-title h2 {
  margin: 0;
}

.qanda .flexbox-title p {
  text-align: left;
  margin: 28px 0 0 20px;
  font-size: 1.2rem;
}

.qanda .flexbox-qanda {
  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;
}

.qanda .flexbox-qanda .container {
  width: 42%;
  margin-bottom: 150px;
}

.qanda .flexbox-qanda .container h3 {
  text-align: left;
  font-size: 22px;
}

.qanda .flexbox-qanda .container hr {
  margin: 10px 0 10px 0;
  border: dashed 0.5px #707070;
}

.qanda .flexbox-qanda .container p {
  text-align: left;
  font-size: 16px;
}

.qanda .sentence {
  margin: 0 auto 200px auto;
  font-size: 22px;
}

/* ----------------------------- ﾀﾌﾞﾚｯﾄ版 --------------------------- */
@media (max-width: 1000px) {
  .course-wrapper1200 {
    padding: 20px 0 0 0;
  }
  /* ---------- trial ---------- */
  .trial {
    padding: 0 calc(50 / 768 * 100%);
  }
  .trial img {
    width: 70px;
    height: auto;
  }
  .trial .flexbox-trial {
    display: block;
  }
  .trial .flexbox-trial .experience {
    width: 100%;
    height: 162px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .trial .flexbox-trial .experience .inner {
    border-right: solid 2px #cc7704;
    height: 80%;
    width: 120px;
    margin: auto;
  }
  .trial .flexbox-trial .experience .inner h3 {
    margin: auto 5px auto 5px;
    white-space: nowrap;
    font-size: 1.1rem;
  }
  .trial .flexbox-trial .experience .inner img {
    margin: 10px 10px 0 10px;
  }
  .trial .flexbox-trial .experience p {
    margin: auto 15px auto 15px;
    width: 80%;
    line-height: 180%;
    font-size: 1.1rem;
  }
}

@media (max-width: 1000px) and (max-width: 450px) {
  .trial .flexbox-trial .experience p {
    font-size: 0.9rem;
  }
}

@media (max-width: 1000px) {
  .trial .flexbox-trial .experience p br {
    display: none;
  }
  .trial .flexbox-trial .experience hr {
    display: none;
  }
  .trial .flexbox-trial .experience::before {
    bottom: 10px;
    right: 10px;
  }
  .trial .flexbox-trial .visit {
    width: 100%;
    height: 162px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    margin: 45px auto 45px auto;
  }
  .trial .flexbox-trial .visit .inner {
    border-left: solid 2px #fff;
    height: 80%;
    width: 120px;
    margin: auto;
  }
  .trial .flexbox-trial .visit .inner h3 {
    margin: 0 10px 10px 10px;
    white-space: nowrap;
    font-size: 1.1rem;
  }
  .trial .flexbox-trial .visit .inner img {
    margin: 10px;
  }
  .trial .flexbox-trial .visit p {
    margin: auto 15px auto 15px;
    width: 80%;
    line-height: 180%;
    font-size: 1.1rem;
  }
}

@media (max-width: 1000px) and (max-width: 450px) {
  .trial .flexbox-trial .visit p {
    font-size: 0.9rem;
  }
}

@media (max-width: 1000px) {
  .trial .flexbox-trial .visit p br {
    display: none;
  }
  .trial .flexbox-trial .visit hr {
    display: none;
  }
  .trial .flexbox-trial .visit::before {
    bottom: 10px;
    right: 10px;
  }
  .trial .flexbox-trial .process {
    width: 100%;
    height: 162px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 0;
  }
  .trial .flexbox-trial .process .inner {
    border-right: solid 2px #e5e513;
    height: 80%;
    width: 120px;
    margin: auto;
  }
  .trial .flexbox-trial .process .inner h3 {
    margin: auto 5px auto 5px;
    white-space: nowrap;
    font-size: 1.1rem;
  }
  .trial .flexbox-trial .process .inner img {
    margin: 10px;
  }
  .trial .flexbox-trial .process p {
    margin: auto 15px auto 15px;
    width: 80%;
    line-height: 180%;
    font-size: 1.1rem;
  }
}

@media (max-width: 1000px) and (max-width: 450px) {
  .trial .flexbox-trial .process p {
    font-size: 0.9rem;
  }
}

@media (max-width: 1000px) {
  .trial .flexbox-trial .process p br {
    display: none;
  }
  .trial .flexbox-trial .process hr {
    display: none;
  }
  .trial .flexbox-trial .process::before {
    bottom: 10px;
    right: 10px;
  }
  .trial .application {
    max-width: 1000px;
  }
  .trial .application::after {
    background-image: url(../img/trial-bghero-sp.jpg);
  }
  /* ---------- course ---------- */
  .course .flexbox-course {
    display: block;
  }
  .course .flexbox-course .introduction {
    width: 100%;
    height: 320px;
    border-top: none;
    font-size: 0.6rem;
  }
  .course .flexbox-course .introduction .upper-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 20px 20px 20px;
    padding-top: 20px;
  }
  .course .flexbox-course .introduction .upper-row img {
    width: 15%;
    margin: 0;
    min-width: 55px;
    display: block;
  }
  .course .flexbox-course .introduction .upper-row h3 {
    font-size: 1.4rem;
    margin: 0 20px 0;
    white-space: nowrap;
  }
  .course .flexbox-course .introduction .upper-row .text01 {
    font-size: 1.1rem;
  }
  .course .flexbox-course .introduction .upper-row span {
    font-size: 1.3rem;
    font-weight: bold;
  }
  .course .flexbox-course .introduction hr {
    width: 95%;
    margin: 20px auto 0 auto;
  }
  .course .flexbox-course .introduction .content-text::after {
    content: "担当インストラクター";
    font-size: 0.9rem;
    margin-left: 54%;
    white-space: nowrap;
  }
  .course .flexbox-course .introduction .lower-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .course .flexbox-course .introduction .lower-row .text02 {
    font-size: 1.1rem;
    margin: 0 0 0 5%;
    width: 50%;
  }
}

@media (max-width: 1000px) and (max-width: 450px) {
  .course .flexbox-course .introduction .lower-row .text02 {
    font-size: 0.9rem;
  }
}

@media (max-width: 1000px) {
  .course .flexbox-course .introduction .lower-row .text02 br {
    display: block;
  }
  .course .flexbox-course .introduction .lower-row .text03 {
    display: none;
  }
  .course .flexbox-course .introduction .lower-row .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 4% 4% 13%;
  }
  .course .flexbox-course .introduction .lower-row .inner .item01 {
    margin: 5px 0 0 0;
  }
  .course .flexbox-course .introduction .lower-row .inner .item01 img {
    width: 60%;
    max-width: 75px;
    height: auto;
    margin-bottom: 0;
  }
  .course .flexbox-course .introduction .lower-row .inner .item01 p {
    font-size: 0.9rem;
  }
  .course .flexbox-course .introduction .lower-row .inner .item02 {
    margin: 5px 0 0 0;
  }
  .course .flexbox-course .introduction .lower-row .inner .item02 img {
    width: 60%;
    max-width: 75px;
    height: auto;
    margin-bottom: 0;
  }
  .course .flexbox-course .introduction .lower-row .inner .item02 p {
    font-size: 0.9rem;
  }
  .course .flexbox-course .beginner {
    width: 100%;
    height: 320px;
    border-top: none;
    font-size: 0.6rem;
    margin-left: 0;
  }
  .course .flexbox-course .beginner .upper-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 20px 20px 20px;
    padding-top: 20px;
  }
  .course .flexbox-course .beginner .upper-row img {
    width: 15%;
    margin: 0;
    min-width: 55px;
    display: block;
  }
  .course .flexbox-course .beginner .upper-row h3 {
    font-size: 1.4rem;
    margin: 0 20px 0;
    white-space: nowrap;
  }
  .course .flexbox-course .beginner .upper-row .text01 {
    font-size: 1.1rem;
  }
  .course .flexbox-course .beginner .upper-row span {
    font-size: 1.3rem;
    font-weight: bold;
  }
  .course .flexbox-course .beginner hr {
    width: 95%;
    margin: 20px auto 0 auto;
  }
  .course .flexbox-course .beginner .content-text::after {
    content: "担当インストラクター";
    font-size: 0.9rem;
    margin-left: 55%;
    white-space: nowrap;
  }
  .course .flexbox-course .beginner .lower-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .course .flexbox-course .beginner .lower-row .text02 {
    font-size: 1.1rem;
    margin: 0 0 0 5%;
    width: 50%;
  }
}

@media (max-width: 1000px) and (max-width: 450px) {
  .course .flexbox-course .beginner .lower-row .text02 {
    font-size: 0.9rem;
  }
}

@media (max-width: 1000px) {
  .course .flexbox-course .beginner .lower-row .text03 {
    display: none;
  }
  .course .flexbox-course .beginner .lower-row .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 4% 4% 13%;
  }
  .course .flexbox-course .beginner .lower-row .inner .item01 {
    margin: 5px 0 0 0;
  }
  .course .flexbox-course .beginner .lower-row .inner .item01 img {
    width: 60%;
    max-width: 75px;
    height: auto;
    margin-bottom: 0;
  }
  .course .flexbox-course .beginner .lower-row .inner .item01 p {
    font-size: 0.9rem;
  }
  .course .flexbox-course .beginner .lower-row .inner .item02 {
    margin: 5px 0 0 0;
  }
  .course .flexbox-course .beginner .lower-row .inner .item02 img {
    width: 60%;
    max-width: 75px;
    height: auto;
    margin-bottom: 0;
  }
  .course .flexbox-course .beginner .lower-row .inner .item02 p {
    font-size: 0.9rem;
  }
  .course .flexbox-course .beginner .lower-row .inner .item03 {
    margin: 5px 0 0 0;
  }
  .course .flexbox-course .beginner .lower-row .inner .item03 img {
    width: 60%;
    max-width: 75px;
    height: auto;
    margin-bottom: 0;
  }
  .course .flexbox-course .beginner .lower-row .inner .item03 p {
    font-size: 0.9rem;
  }
  .course .flexbox-course .adult {
    width: 100%;
    height: 320px;
    border-top: none;
    font-size: 0.6rem;
    margin-left: 0;
  }
  .course .flexbox-course .adult .upper-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 20px 20px 20px;
    padding-top: 20px;
  }
  .course .flexbox-course .adult .upper-row img {
    width: 15%;
    margin: 0;
    min-width: 55px;
    display: block;
  }
  .course .flexbox-course .adult .upper-row h3 {
    font-size: 1.4rem;
    margin: 0 20px 0;
    white-space: nowrap;
  }
  .course .flexbox-course .adult .upper-row .text01 {
    font-size: 1.1rem;
  }
  .course .flexbox-course .adult .upper-row span {
    font-size: 1.3rem;
    font-weight: bold;
  }
  .course .flexbox-course .adult hr {
    width: 95%;
    margin: 20px auto 0 auto;
  }
  .course .flexbox-course .adult .content-text::after {
    content: "担当インストラクター";
    font-size: 0.9rem;
    margin-left: 53%;
    white-space: nowrap;
  }
  .course .flexbox-course .adult .lower-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .course .flexbox-course .adult .lower-row .text02 {
    font-size: 1.1rem;
    margin: 0 10% 0 5%;
    width: 40%;
  }
}

@media (max-width: 1000px) and (max-width: 450px) {
  .course .flexbox-course .adult .lower-row .text02 {
    font-size: 0.9rem;
  }
}

@media (max-width: 1000px) {
  .course .flexbox-course .adult .lower-row .text03 {
    display: none;
  }
  .course .flexbox-course .adult .lower-row .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 4% 4% 13%;
  }
  .course .flexbox-course .adult .lower-row .inner .item01 {
    margin: 5px 0 0 0;
  }
  .course .flexbox-course .adult .lower-row .inner .item01 img {
    width: 60%;
    max-width: 75px;
    height: auto;
    margin-bottom: 0;
  }
  .course .flexbox-course .adult .lower-row .inner .item01 p {
    font-size: 0.9rem;
  }
  .course .flexbox-link {
    padding: 0 calc(50 / 768 * 100%);
    margin: 0 auto 200px auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .course .flexbox-link .text01 {
    font-size: 1.2rem;
    text-underline-offset: 5px;
    white-space: nowrap;
  }
  .course .flexbox-link .text02 {
    font-size: 1.2rem;
    margin-left: 30px;
    text-underline-offset: 5px;
    white-space: nowrap;
  }
  /* ---------- qanda ---------- */
  .qanda {
    padding: 0 calc(50 / 768 * 100%);
  }
  .qanda .flexbox-title {
    margin: 0 auto 100px auto;
    width: 90%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .qanda .flexbox-title p {
    font-size: .8rem;
  }
  .qanda .flexbox-qanda {
    display: block;
  }
  .qanda .flexbox-qanda .container {
    width: 90%;
    margin: 0 auto 100px auto;
  }
  .qanda .flexbox-qanda .container h3 {
    font-size: 1.4rem;
  }
  .qanda .flexbox-qanda .container p {
    font-size: 1.1rem;
  }
  .qanda .sentence {
    margin-top: 50px;
    font-size: 1.3rem;
  }
}

/* ---------------------------- ｽﾏｰﾄﾌｫﾝ版 ---------------------------- */
@media (max-width: 376px) {
  /* ---------- trial ---------- */
  .trial {
    padding: 0;
  }
  .trial img {
    width: 100%;
    height: 100%;
  }
  .trial .sentence {
    margin: 70px 15px 70px 15px;
    font-size: 1.1rem;
  }
  .trial .flexbox-trial {
    display: block;
    height: 1645px;
    padding-top: 35px;
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(33.5%, #fff), color-stop(33.5%, #b0b5ce), color-stop(67%, #b0b5ce), color-stop(67%, #4e578d), to(#4e578d));
    background: linear-gradient(#fff 0%, #fff 33.5%, #b0b5ce 33.5%, #b0b5ce 67%, #4e578d 67%, #4e578d 100%);
  }
  .trial .flexbox-trial .experience {
    display: block;
    width: 92%;
    height: 484px;
    margin: 0 auto;
    padding: 10px;
  }
  .trial .flexbox-trial .experience .inner {
    border-right: none;
    width: auto;
    height: auto;
  }
  .trial .flexbox-trial .experience .inner img {
    margin: 20px auto 35px auto;
  }
  .trial .flexbox-trial .experience .inner h3 {
    font-size: 2rem;
  }
  .trial .flexbox-trial .experience hr {
    width: 90%;
    margin: 10px auto 35px auto;
    border: solid 0.5px #cc7704;
    background-color: #cc7704;
    display: block;
  }
  .trial .flexbox-trial .experience p {
    font-size: 1.2rem;
  }
}

@media (max-width: 376px) and (max-width: 376px) {
  .trial .flexbox-trial .experience p {
    margin-left: 33px;
  }
}

@media (max-width: 376px) {
  .trial .flexbox-trial .experience::before {
    display: none;
  }
  .trial .flexbox-trial .visit {
    display: block;
    width: 92%;
    height: 484px;
    margin: 70px auto 55px auto;
    padding: 10px;
  }
  .trial .flexbox-trial .visit .inner {
    border-left: none;
    width: auto;
    height: auto;
  }
  .trial .flexbox-trial .visit .inner img {
    margin: 20px auto 35px auto;
  }
  .trial .flexbox-trial .visit .inner h3 {
    font-size: 2rem;
  }
  .trial .flexbox-trial .visit hr {
    width: 90%;
    margin: 10px auto 35px auto;
    border: solid 0.5px #fff;
    background-color: #fff;
    display: block;
  }
  .trial .flexbox-trial .visit p {
    font-size: 1.2rem;
  }
}

@media (max-width: 376px) and (max-width: 376px) {
  .trial .flexbox-trial .visit p {
    margin-left: 33px;
  }
}

@media (max-width: 376px) {
  .trial .flexbox-trial .visit::before {
    display: none;
  }
  .trial .flexbox-trial .process {
    display: block;
    width: 92%;
    height: 484px;
    margin: 0 auto;
    padding: 10px;
  }
  .trial .flexbox-trial .process .inner {
    border-right: none;
    width: auto;
    height: auto;
  }
  .trial .flexbox-trial .process .inner img {
    margin: 20px auto 35px auto;
  }
  .trial .flexbox-trial .process .inner h3 {
    font-size: 2rem;
  }
  .trial .flexbox-trial .process hr {
    width: 90%;
    margin: 10px auto 35px auto;
    border: solid 0.5px #e5e513;
    background-color: #e5e513;
    display: block;
  }
  .trial .flexbox-trial .process p {
    font-size: 1.2rem;
  }
}

@media (max-width: 376px) and (max-width: 376px) {
  .trial .flexbox-trial .process p {
    margin-left: 33px;
  }
}

@media (max-width: 376px) {
  .trial .flexbox-trial .process::before {
    display: none;
  }
  .trial .application {
    margin: 15px auto 200px auto;
  }
}

@media (max-width: 376px) and (max-width: 376px) {
  .trial .application {
    margin: 70px auto 70px auto;
  }
}

@media (max-width: 376px) {
  /* ---------- course ---------- */
  .course .flexbox-course {
    display: block;
  }
  .course .flexbox-course .introduction {
    width: 100%;
    height: 650px;
    border-top: solid 20px #34393d;
  }
  .course .flexbox-course .introduction .upper-row {
    display: block;
  }
  .course .flexbox-course .introduction .upper-row img {
    margin: 0 auto;
    width: 65%;
  }
  .course .flexbox-course .introduction .upper-row h3 {
    font-size: 2rem;
    margin: 20px auto 0 auto;
  }
  .course .flexbox-course .introduction .upper-row .text01 {
    margin: 0 auto;
  }
  .course .flexbox-course .introduction .upper-row span {
    font-size: 2.0rem;
    font-weight: bold;
  }
  .course .flexbox-course .introduction hr {
    width: 75%;
    margin: 20px auto 40px auto;
  }
  .course .flexbox-course .introduction .content-text::after {
    display: none;
  }
  .course .flexbox-course .introduction .lower-row {
    display: block;
  }
  .course .flexbox-course .introduction .lower-row .text02 {
    width: 75%;
    margin: 0 auto;
    font-size: 1.2rem;
    height: 67px;
  }
  .course .flexbox-course .introduction .lower-row .text03 {
    display: block;
    margin: 15px 20% 5px 20%;
    font-size: 1rem;
  }
  .course .flexbox-course .introduction .lower-row .inner {
    margin: 0 20% 0 20%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .course .flexbox-course .introduction .lower-row .inner .item01 img {
    width: 90%;
  }
  .course .flexbox-course .introduction .lower-row .inner .item01 p {
    font-size: 0.9rem;
  }
  .course .flexbox-course .introduction .lower-row .inner .item02 img {
    width: 90%;
  }
  .course .flexbox-course .introduction .lower-row .inner .item02 p {
    font-size: 0.9rem;
  }
  .course .flexbox-course .beginner {
    width: 100%;
    height: 650px;
    border-top: solid 20px #34393d;
  }
  .course .flexbox-course .beginner .upper-row {
    display: block;
  }
  .course .flexbox-course .beginner .upper-row img {
    margin: 0 auto;
    width: 65%;
  }
  .course .flexbox-course .beginner .upper-row h3 {
    font-size: 2rem;
    margin: 20px auto 0 auto;
  }
  .course .flexbox-course .beginner .upper-row .text01 {
    margin: 0 auto;
  }
  .course .flexbox-course .beginner .upper-row span {
    font-size: 2.0rem;
    font-weight: bold;
  }
  .course .flexbox-course .beginner hr {
    width: 75%;
    margin: 20px auto 40px auto;
  }
  .course .flexbox-course .beginner .content-text::after {
    display: none;
  }
  .course .flexbox-course .beginner .lower-row {
    display: block;
  }
  .course .flexbox-course .beginner .lower-row .text02 {
    width: 75%;
    margin: 0 auto;
    font-size: 1.2rem;
    height: 67px;
  }
  .course .flexbox-course .beginner .lower-row .text03 {
    display: block;
    margin: 15px 10% 5px 10%;
    font-size: 1rem;
  }
  .course .flexbox-course .beginner .lower-row .inner {
    margin: 0 10% 0 10%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .course .flexbox-course .beginner .lower-row .inner .item01 img {
    width: 90%;
  }
  .course .flexbox-course .beginner .lower-row .inner .item01 p {
    font-size: 0.9rem;
  }
  .course .flexbox-course .beginner .lower-row .inner .item02 img {
    width: 90%;
  }
  .course .flexbox-course .beginner .lower-row .inner .item02 p {
    font-size: 0.9rem;
  }
  .course .flexbox-course .beginner .lower-row .inner .item03 img {
    width: 90%;
  }
  .course .flexbox-course .beginner .lower-row .inner .item03 p {
    font-size: 0.9rem;
  }
  .course .flexbox-course .adult {
    width: 100%;
    height: 650px;
    border-top: solid 20px #34393d;
  }
  .course .flexbox-course .adult .upper-row {
    display: block;
  }
  .course .flexbox-course .adult .upper-row img {
    margin: 0 auto;
    width: 65%;
  }
  .course .flexbox-course .adult .upper-row h3 {
    font-size: 2rem;
    margin: 20px auto 0 auto;
  }
  .course .flexbox-course .adult .upper-row .text01 {
    margin: 0 auto;
  }
  .course .flexbox-course .adult .upper-row span {
    font-size: 2.0rem;
    font-weight: bold;
  }
  .course .flexbox-course .adult hr {
    width: 75%;
    margin: 20px auto 40px auto;
  }
  .course .flexbox-course .adult .content-text::after {
    display: none;
  }
  .course .flexbox-course .adult .lower-row {
    display: block;
  }
  .course .flexbox-course .adult .lower-row .text02 {
    width: 75%;
    margin: 0 auto;
    font-size: 1.2rem;
    height: 67px;
  }
  .course .flexbox-course .adult .lower-row .text03 {
    display: block;
    margin: 15px 20% 5px 20%;
    font-size: 1rem;
    text-align: center;
  }
  .course .flexbox-course .adult .lower-row .inner {
    margin: 0 20% 0 20%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .course .flexbox-course .adult .lower-row .inner .item01 img {
    width: 90%;
  }
  .course .flexbox-course .adult .lower-row .inner .item01 p {
    font-size: 0.9rem;
  }
  .course .flexbox-link {
    display: block;
    margin-bottom: 100px;
  }
  .course .flexbox-link .text01 {
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0 auto 35px auto;
  }
  .course .flexbox-link .text02 {
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0 auto;
  }
  /* ---------- qanda ---------- */
  .qanda {
    padding: 0 5px 0 5px;
  }
  .qanda .flexbox-title {
    display: block;
    margin-bottom: 50px;
  }
  .qanda .flexbox-title h2 {
    margin: 0 auto;
  }
  .qanda .flexbox-title p {
    margin: 30px auto 0 auto;
    font-size: .9rem;
    text-align: center;
  }
  .qanda .flexbox-qanda .container {
    margin-bottom: 50px;
  }
  .qanda .flexbox-qanda .container h3 {
    font-size: 1.5rem;
  }
  .qanda .flexbox-qanda .container hr {
    margin: 10px 0 15px 0;
  }
  .qanda .flexbox-qanda .container p {
    font-size: 1.1rem;
  }
  .qanda .sentence {
    margin: 20px auto 100px auto;
    font-size: 1.1rem;
    font-weight: bold;
  }
}

/* ---------- form ---------- */
.tr {
  margin-bottom: 100px;
}

input[type="text"]:focus {
  outline: 0;
  border: 2px solid #E4DD22;
  border-radius: 5px;
}

textarea:focus {
  outline: 2px solid #E4DD22;
}

.form input::-webkit-input-placeholder {
  color: #AEB184;
}

.form input:-ms-input-placeholder {
  color: #AEB184;
}

.form input::-ms-input-placeholder {
  color: #AEB184;
}

.form input::placeholder {
  color: #AEB184;
}

.form textarea::-webkit-input-placeholder {
  color: #AEB184;
}

.form textarea:-ms-input-placeholder {
  color: #AEB184;
}

.form textarea::-ms-input-placeholder {
  color: #AEB184;
}

.form textarea::placeholder {
  color: #AEB184;
}

.form__mail {
  margin: 107px auto 70px auto;
  max-width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}

.form__text {
  margin: 80px 20px 130px 20px;
}

.form .form-wrapper {
  width: 63%;
  min-width: 580px;
  margin: 0 auto;
}

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

.form .form-wrapper .flexbox-form .leftbox {
  width: 33%;
  height: 207px;
}

.form .form-wrapper .flexbox-form .leftbox p {
  margin-bottom: 60px;
  text-align: left;
  color: #6c7073;
  border-bottom: dashed 2px #6c7073;
  white-space: nowrap;
}

.form .form-wrapper .flexbox-form .leftbox p .name {
  width: 80%;
  margin-left: 20px;
}

.form .form-wrapper .flexbox-form .leftbox p .tell {
  width: 65%;
  margin-left: 20px;
}

.form .form-wrapper .flexbox-form .leftbox p .age {
  width: 30%;
  margin-left: 20px;
}

.form .form-wrapper .flexbox-form .leftbox .text-age {
  width: 60%;
}

.form .form-wrapper .flexbox-form .rightbox {
  width: 58%;
  height: 207px;
}

.form .form-wrapper .flexbox-form .rightbox p {
  margin-bottom: 60px;
  text-align: left;
  color: #6c7073;
  border-bottom: dashed 2px #6c7073;
  white-space: nowrap;
}

.form .form-wrapper .flexbox-form .rightbox p .mail {
  width: 70%;
  margin-left: 20px;
}

.form .form-wrapper .flexbox-form .rightbox p .male {
  margin-left: 10px;
}

.form .form-wrapper .flexbox-form .rightbox p .female {
  margin-left: 10px;
}

.form .form-wrapper .flexbox-form .rightbox p .yes {
  margin-left: 10px;
}

.form .form-wrapper .flexbox-form .rightbox p .no {
  margin-left: 10px;
}

.form .form-wrapper .flexbox-form .rightbox .container-radio {
  position: relative;
}

.form .form-wrapper .flexbox-form .rightbox .container-radio .gender {
  border-bottom: none;
}

.form .form-wrapper .flexbox-form .rightbox .container-radio .experience {
  border-bottom: none;
}

.form .form-wrapper .text-textarea {
  margin: 90px 0 0 0;
  text-align: left;
}

.form .form-wrapper .text-textarea span {
  vertical-align: top;
  color: #6c7073;
}

.form .form-wrapper .text-textarea textarea {
  width: 60%;
  height: 253px;
  resize: none;
  margin-left: 20px;
  padding: 7px;
  border: dashed 2px #6c7073;
  border-radius: 1%;
}

.form .form-wrapper .border-box {
  border: solid 1px #6c7073;
  border-radius: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: inline-block;
  margin: 90px 0 110px 0;
  padding: 5px;
  text-decoration: none;
  -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
          box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
}

@media (max-width: 768px) {
  .form .form-wrapper .border-box {
    margin: 80px 0 130px 0;
  }
}

@media (max-width: 376px) {
  .form .form-wrapper .border-box {
    border-width: 1.5px;
    margin: 30px 0 100px 0;
  }
}

.form .form-wrapper .border-box .text-submit .submit {
  width: 184px;
  height: 60px;
  font-size: 1.2rem;
  letter-spacing: .8em;
  border: solid 1px #6c7073;
  border-radius: 5px;
  padding-left: .8em;
}

@media (max-width: 376px) {
  .form .form-wrapper .border-box .text-submit .submit {
    width: 100px;
    height: 40px;
    border-width: 1px;
    font-size: 1rem;
    letter-spacing: .4em;
    padding-left: .4em;
  }
}

.form .form-wrapper .border-box .text-submit::after {
  border-radius: 5px;
}

.form .form-wrapper .border-box:active {
  -webkit-box-shadow: inset 0 0 2px rgba(128, 128, 128, 0.1);
          box-shadow: inset 0 0 2px rgba(128, 128, 128, 0.1);
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}

/*送信ボタン　hover*/
.fullfill-hover {
  position: relative;
  display: inline-block;
}

.fullfill-hover::after {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  content: '';
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, right top, left top, to(#e4dd22));
  background-image: linear-gradient(to left, #e4dd22 100%);
  background-position: 100% 0;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition-duration: .7s;
          transition-duration: .7s;
}

.fullfill-hover:hover::after, .fullfill-hover:focus::after, .fullfill-hover:active::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transition: -webkit-transform ease-out .3s;
  transition: -webkit-transform ease-out .3s;
  transition: transform ease-out .3s;
  transition: transform ease-out .3s, -webkit-transform ease-out .3s;
}

/* animations */
@-webkit-keyframes radio-select {
  0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
  }
  65% {
    -webkit-transform: scale(1.1, 1.1);
            transform: scale(1.1, 1.1);
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
@keyframes radio-select {
  0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
  }
  65% {
    -webkit-transform: scale(1.1, 1.1);
            transform: scale(1.1, 1.1);
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

/* styles */
body {
  color: #444;
}

.container-radio {
  position: absolute;
  top: 26%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

label {
  margin: 5px;
  position: relative;
  padding-left: 23px;
  cursor: pointer;
}

.radio {
  height: 1px;
  width: 1px;
  opacity: 0;
}

.outside {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -9px;
  width: 18px;
  height: 18px;
  border: 2px solid #CCCCCC;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #F3F3F3;
}

.inside {
  position: absolute;
  top: 26%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: inline-block;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background: #444;
  left: 3px;
  top: 3px;
  -webkit-transform: scale(0, 0);
          transform: scale(0, 0);
}

.no-transforms .inside {
  left: auto;
  top: auto;
  width: 0;
  height: 0;
}

.radio:checked + .outside .inside {
  -webkit-animation: radio-select 0.1s linear;
          animation: radio-select 0.1s linear;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.no-transforms .radio:checked + .outside .inside {
  width: 8px;
  height: 8px;
}

.policy {
  max-width: 600px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: 30px auto 50px;
}

.policy__deta {
  height: 250px;
  padding: 1rem;
  font-size: calc(12rem / 16);
  overflow-y: scroll;
  outline: 1px solid #b8b8b8;
  outline-offset: 5px;
  background-color: #fff;
  text-align: left;
}

.policy__deta .float {
  float: left;
  margin: 0 1em 0 0;
}

.policy__deta dt {
  font-weight: bold;
  margin: 5px 0;
}

.policy__deta dt:first-child {
  text-align: center;
  margin-bottom: 20px;
}

.policy__deta p {
  margin-bottom: 20px;
}

.policy__deta::-webkit-scrollbar {
  width: 15px;
}

.policy__deta::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #fff;
}

.policy__deta::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #a7a7a7;
}

.policy__address {
  margin-top: 1em;
}

.policy__address span {
  font-weight: 700;
}

.policy__date-ls {
  letter-spacing: 1em;
  margin-right: 0 !important;
}

/* ---------- ﾀﾌﾞﾚｯﾄ版 ---------- */
@media (max-width: 768px) {
  .form__mail {
    margin: 100px auto 70px auto;
    max-width: 120px;
  }
  .form__text {
    margin-bottom: 100px;
    font-size: 12px;
  }
  .form .form-wrapper {
    width: 80%;
    min-width: 307px;
    margin: 0 auto;
  }
  .form .form-wrapper .flexbox-form {
    display: block;
  }
  .form .form-wrapper .flexbox-form .leftbox {
    margin: 70px 0 0 0;
  }
  .form .form-wrapper .flexbox-form .leftbox p {
    margin-bottom: 50px;
    white-space: nowrap;
    border-bottom: none;
  }
  .form .form-wrapper .flexbox-form .leftbox p .span-name {
    padding-right: 65px;
  }
  .form .form-wrapper .flexbox-form .leftbox p .name {
    margin: 30px 0 0 0;
    width: 190%;
    vertical-align: top;
    border-bottom: dashed 2px #6c7073;
  }
  .form .form-wrapper .flexbox-form .leftbox p .span-tell {
    padding-right: 33px;
  }
  .form .form-wrapper .flexbox-form .leftbox p .tell {
    margin: 30px 0 0 0;
    width: 190%;
    vertical-align: top;
    border-bottom: dashed 2px #6c7073;
  }
  .form .form-wrapper .flexbox-form .leftbox p .span-age01 {
    padding-right: 67px;
  }
  .form .form-wrapper .flexbox-form .leftbox p .span-age02 {
    vertical-align: bottom;
    margin-left: 7px;
  }
  .form .form-wrapper .flexbox-form .leftbox p .age {
    margin: 30px 0 0 0;
    width: 60%;
    vertical-align: top;
    border-bottom: dashed 2px #6c7073;
  }
  .form .form-wrapper .flexbox-form .rightbox {
    margin: 115px 0 0 0;
  }
  .form .form-wrapper .flexbox-form .rightbox p {
    margin-bottom: 50px;
    white-space: nowrap;
    border-bottom: none;
  }
  .form .form-wrapper .flexbox-form .rightbox p .mail {
    margin: 30px 0 0 0;
    width: 109%;
    vertical-align: top;
    border-bottom: dashed 2px #6c7073;
  }
  .form .form-wrapper .flexbox-form .rightbox .container-radio .gender .span-gender {
    margin-right: 55px;
  }
  .form .form-wrapper .flexbox-form .rightbox .container-radio .experience .span-experience {
    margin-right: 8px;
  }
  .form .form-wrapper .text-textarea {
    margin: 80px auto 0 auto;
  }
  .form .form-wrapper .text-textarea textarea {
    width: 100%;
    height: 253px;
    margin: 15px auto 0 auto;
    padding: 10px;
  }
  .form .form-wrapper .text-submit .submit {
    width: 184px;
    height: 60px;
  }
}

/* ---------- ｽﾏｰﾄﾌｫﾝ版 ---------- */
@media (max-width: 376px) {
  .form__mail {
    margin: 70px auto 40px auto;
    max-width: 100px;
  }
  .form__text {
    margin-bottom: 90px;
    font-size: 12px;
    text-align: left;
  }
  .form .form-wrapper {
    width: 90%;
    margin: 0 auto;
  }
  .form .form-wrapper .flexbox-form .leftbox {
    margin: 10px 0 0 0;
  }
  .form .form-wrapper .flexbox-form .leftbox p {
    margin-bottom: 45px;
  }
  .form .form-wrapper .flexbox-form .leftbox p .span-name {
    padding-right: 56px;
  }
  .form .form-wrapper .flexbox-form .leftbox p .name {
    margin: 15px 0 0 0;
    width: 203%;
  }
  .form .form-wrapper .flexbox-form .leftbox p .span-tell {
    padding-right: 29px;
  }
  .form .form-wrapper .flexbox-form .leftbox p .tell {
    margin: 15px 0 0 0;
    width: 203%;
  }
  .form .form-wrapper .flexbox-form .leftbox p .span-age01 {
    padding-right: 58px;
  }
  .form .form-wrapper .flexbox-form .leftbox p .span-age02 {
    vertical-align: bottom;
    margin-left: 5px;
  }
  .form .form-wrapper .flexbox-form .leftbox p .age {
    margin: 15px 0 0 0;
    width: 75%;
  }
  .form .form-wrapper .flexbox-form .rightbox {
    margin: 50px 0 0 0;
  }
  .form .form-wrapper .flexbox-form .rightbox p {
    margin-bottom: 45px;
  }
  .form .form-wrapper .flexbox-form .rightbox p .mail {
    margin: 15px 0 0 0;
    width: 114%;
  }
  .form .form-wrapper .flexbox-form .rightbox .container-radio .gender .span-gender {
    margin-right: 45px;
  }
  .form .form-wrapper .flexbox-form .rightbox .container-radio .experience .span-experience {
    margin-right: 4px;
  }
  .form .form-wrapper .text-textarea {
    margin: 50px auto 0 auto;
  }
  .form .form-wrapper .text-textarea textarea {
    width: 100%;
    height: 185px;
    margin: 15px auto 0 auto;
  }
  .form .form-wrapper .text-submit .submit {
    width: 184px;
    height: 60px;
  }
}

/* ---------- thanks ---------- */
.thanks__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.5rem;
  line-height: 3.75rem;
}

.thanks {
  height: auto;
}

.thanks__text {
  font-size: 1.1rem;
  line-height: calc(35rem / 16);
  margin: 80px auto 0 auto;
}

@media (max-width: 376px) {
  .thanks__text {
    font-size: 1rem;
  }
}

.thanks__pagetop {
  width: 200px;
  height: 60px;
  border: solid #6c7073;
  position: relative;
  margin: 70px auto 120px auto;
}

.thanks__pagetop .link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.thanks__pagetop p {
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
/*# sourceMappingURL=style.css.map */