@charset "UTF-8";
@font-face {
  font-style: normal;
  font-weight: 400;
  src: url("../css/font/SourceHanSansJP-Normal.woff") format("woff"), url("../css/font/SourceHanSansJP-Regular.woff") format("woff");
  font-family: "源の角ゴシック";
}
@font-face {
  font-style: normal;
  font-weight: 300;
  src: url("../css/font/SourceHanSansJP-Light.woff") format("woff");
  font-family: "源の角ゴシック";
}
@font-face {
  font-style: normal;
  font-weight: 200;
  src: url("../css/font/SourceHanSansJP-ExtraLight.woff") format("woff");
  font-family: "源の角ゴシック";
}
@font-face {
  font-style: normal;
  font-weight: 700;
  src: url("../css/font/SourceHanSansJP-Bold.woff") format("woff");
  font-family: "源の角ゴシック";
}
@font-face {
  font-style: normal;
  font-weight: 900;
  src: url("../css/font/SourceHanSansJP-Heavy.woff") format("woff");
  font-family: "源の角ゴシック";
}
@font-face {
  font-style: normal;
  font-weight: 500;
  src: url("../css/font/SourceHanSansJP-Medium.woff") format("woff");
  font-family: "源の角ゴシック";
}
html {
  font-size: 62.5%;
}

body {
  display: none;
  width: 100%;
  margin: 0;
  background: #fff;
  color: #555555;
  font-weight: lighter;
  font-size: 1.3rem;
  line-height: 24px;
  font-family: "源の角ゴシック", sans-serif;
  letter-spacing: 1.8px;
}

h1 {
  display: flex;
  z-index: 2;
  position: relative;
  justify-content: flex-end;
  margin-top: 10%;
}
h1 img {
  width: 48%;
}

h3 {
  color: #444444;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 76.79px;
  letter-spacing: 1.68px;
}

.inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.openbtn-wrapper {
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
}

.openbtn {
  position: relative;
  top: 0;
  left: 0;
  width: 15vw;
  height: 10vw;
  background-color: #ccdce3;
  cursor: pointer;
}

/*ボタン内側*/
.openbtn span {
  display: inline-block;
  /*アニメーションの設定*/
  position: absolute;
  left: 25%;
  height: 3px;
  transition: all 0.4s;
}

.openbtn span:nth-of-type(1) {
  top: 35%;
  width: 50%;
  background-color: #4593d0;
}

.openbtn span:nth-of-type(2) {
  top: 60%;
  width: 50%;
  background-color: #e3007f;
}

.openbtn.active span:nth-of-type(1) {
  top: 45%;
  left: 25%;
  width: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.openbtn.active span:nth-of-type(2) {
  top: 52%;
  left: 25%;
  width: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.blue a {
  color: #4593d0;
}

.pc__nav {
  display: none;
}

.nav {
  font-size: 1.5rem;
}
.nav ul {
  display: flex;
  justify-content: space-between;
  color: #b26c1f;
}
.nav ul a img {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}
.nav .sp-add .sp-add__txt .slide-in .slide-in_inner {
  display: block;
  margin-top: 5%;
  padding: 10px;
}
.nav .sp-add .sp-add__txt .slide-in .slide-in_inner p {
  color: #444444;
  font-weight: 300;
  font-size: 1.4rem;
}
.nav .sp-add .sp-add__txt .slide-in .slide-in_inner > p:nth-child(2) {
  font-size: 1rem;
}
.nav .sp-add .sp-add__txt .slide-in .slide-in_inner a > p {
  color: #4444e3;
}
.nav .sp-add .sp-add__txt .slide-in .slide-in_inner a > p:first-child {
  font-size: 1.2rem;
}
.nav .sp-add .sp-add__txt .slide-in .slide-in_inner a > p:last-child {
  font-size: 2.2rem;
}

#nav {
  z-index: -1;
  /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
  position: fixed;
  /*はじめは透過0*/
  /*ナビの位置と形状*/
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  /*ナビの高さ*/
  background: #ccdce3;
  opacity: 0;
  /*動き*/
  transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#nav.panelactive {
  z-index: 99;
  opacity: 1;
}

/*ナビゲーションの縦スクロール*/
#nav.panelactive #nav-list {
  -webkit-overflow-scrolling: touch;
  z-index: 99;
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  width: 100%;
  height: 100vh;
  /*表示する高さ*/
  overflow: auto;
}

/*ナビゲーション*/
#nav ul {
  display: none;
  z-index: 99;
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: 25px;
  padding: 28% 10%;
  transform: translate(-50%, -50%);
}

#nav.panelactive ul {
  display: block;
}

/*リストのレイアウト設定*/
#nav li {
  list-style: none;
  text-align: center;
}

#nav li a {
  display: block;
  padding: 10px;
  text-decoration: none;
}

#nav #nav-list {
  width: 70%;
}
#nav #nav-list .header__item {
  border-bottom: 1px solid #fff;
  text-align: left;
}
#nav #nav-list .header__item:last-child {
  border-bottom: none;
}
#nav #nav-list .header__item:last-child span {
  display: flex;
  align-items: center;
}

.slider img {
  width: 100%;
}

.cta {
  text-align: center;
}
.cta img {
  width: 100%;
  max-width: 300px;
}

.scroll {
  overflow: hidden;
}

.scroll-top:last-child {
  bottom: 15px;
}

/*スクロールリンクの形状*/
.scroll-top {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  visibility: hidden;
  z-index: 10;
  position: fixed;
  right: 0;
  bottom: 80px;
  white-space: nowrap;
  /*はじめは非表示*/
  opacity: 0;
  transition: opacity 0.5s, visibility 0.5s;
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
}

.scroll-view {
  visibility: visible;
  opacity: 1;
}

/*リンク全体の aタグの形状*/
.scroll-top a {
  display: flex;
  flex-flow: column;
  align-items: center;
  color: #E3007F;
  font-size: 1.4rem;
  line-height: 48px;
  letter-spacing: 0.96px;
  text-decoration: none;
}

/*スクロールリンクの形状*/
.js-scroll a::after {
  position: absolute;
  top: 50px;
  right: 25px;
  width: 1px;
  height: 50px;
  background: #444;
  content: "";
}

.js-scroll a::before {
  position: absolute;
  top: 80px;
  right: 19px;
  width: 1px;
  height: 20px;
  transform: skewX(-31deg);
  background: #444;
  content: "";
}

/*Edge IE11 hack*/
_:-ms-lang(x), .js-scroll a::before {
  right: -11px;
}

/*ページトップリンクの形状*/
.js-pagetop a::after {
  position: absolute;
  top: -60px;
  right: 25px;
  width: 1px;
  height: 50px;
  background: #444;
  content: "";
}

.js-pagetop a::before {
  position: absolute;
  top: -60px;
  right: 19px;
  width: 1px;
  height: 20px;
  transform: skewX(31deg);
  background: #444;
  content: "";
}

/*Edge IE11 hack*/
_:-ms-lang(x), .js-pagetop a::before {
  right: 0;
}

.slide-in {
  display: inline-block;
  overflow: hidden;
}
.slide-in .slide-in_inner {
  display: flex;
  align-items: center;
}

/* 上下のアニメーション*/
.downAnime {
  opacity: 0;
}

.slideAnimeDownUp {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-name: slideTextY100;
          animation-name: slideTextY100;
  opacity: 0;
}

@-webkit-keyframes slideTextY100 {
  from {
    transform: translateY(100%);
    /* 要素を上の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateY(0);
    /* 要素を元の位置に移動*/
    opacity: 1;
  }
}

@keyframes slideTextY100 {
  from {
    transform: translateY(100%);
    /* 要素を上の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateY(0);
    /* 要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeUpDown {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-name: slideTextY-100;
          animation-name: slideTextY-100;
  opacity: 0;
}

@-webkit-keyframes slideTextY-100 {
  from {
    transform: translateY(-100%);
    /* 要素を下の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateY(0);
    /* 要素を元の位置に移動*/
    opacity: 1;
  }
}

@keyframes slideTextY-100 {
  from {
    transform: translateY(-100%);
    /* 要素を下の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateY(0);
    /* 要素を元の位置に移動*/
    opacity: 1;
  }
}
.fadeIn {
  opacity: 0;
  transition: 2s;
}

.fadeIn.is-show {
  opacity: 1;
}

.header {
  position: relative;
}
.header .header__inner {
  align-items: center;
  width: 100%;
}
.header .header__inner .header__txt {
  position: absolute;
  top: 5vw;
  left: 8vw;
}
.header .header__inner .header__txt p {
  font-weight: 400;
  font-size: 1rem;
  line-height: 20px;
  letter-spacing: 1.92px;
  text-align: center;
}
.header .header__inner .header__logo {
  display: none;
  z-index: 10;
}
.header .header__inner .header__logo img:first-child {
  width: 80px;
}
.header .header__inner .header__logo img:first-child img:last-child {
  width: 100px;
  width: 13vw;
  max-width: 155px;
}

.header:after {
  display: block;
  z-index: 1;
  position: absolute;
  right: 0px;
  bottom: -1px;
  width: 74%;
  height: 0;
  padding-top: 12%;
  background-image: url(../img/background-image.png);
  background-position: 50% 100%;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.fv {
  background-color: #eaeeeb;
}
.fv .fv__inner {
  padding-bottom: 7vh;
}
.fv .fv__inner .fv__nav {
  font-weight: 400;
}
.fv .fv__inner .fv__slider {
  position: relative;
  width: 100%;
  margin-top: 15px;
}
.fv .fv__inner .fv__slider .fv__slider-list img {
  width: 100%;
  height: 100vw;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 17px;
}
.fv .fv__inner .fv__slider .fv__slider-list p {
  font-size: 1.3rem;
  line-height: 3.7rem;
  letter-spacing: 2.16px;
}
.fv .fv__inner .fv__slider .fv__slider-list:nth-child(2) {
  width: 100%;
}
.fv .fv__inner .fv__slider .fv__slider-list:nth-child(2) p {
  position: absolute;
  top: 20vw;
  left: 12vw;
}
.fv .fv__inner .fv__slider .fv__slider-list:nth-child(3) p {
  position: absolute;
  top: 6vw;
  left: 20vw;
}
.fv .fv__inner .fv__slider .fv__slider-list:nth-child(4) p {
  position: absolute;
  top: 10vw;
  left: 6vw;
}

.information .information__inner {
  margin-top: 40px;
  font-weight: 400;
}
.information .information__inner .information__wrapper {
  line-height: 4.8rem;
  letter-spacing: 1.08px;
  text-align: right;
}
.information .information__inner .information__wrapper #information__rss {
  padding-bottom: 10px;
  border-bottom: 1px solid #4593d0;
}
.information .information__inner .information__wrapper #information__rss .information__list p {
  margin-bottom: 20px;
  line-height: 2.4rem;
}

.training-cta {
  margin-top: 80px;
  margin-bottom: 100px;
}

.members {
  background-color: #eaeeeb;
}
.members .members__inner {
  margin-top: 100px;
  margin-bottom: 85px;
  padding-top: 30px;
  padding-bottom: 100px;
}
.members .members__inner .members__title h3 {
  line-height: 4rem;
}
.members .members__inner .members__item {
  display: grid;
  grid-template-columns: 5fr 4fr;
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin-top: 50px;
  text-align: justify;
}
.members .members__inner .members__item p {
  color: #2C2C2C;
  font-size: 1.3rem;
  line-height: 2rem;
  letter-spacing: 1.6px;
}
.members .members__inner .members__item .members__pic {
  grid-column: 1/2;
}
.members .members__inner .members__item .members__pic img {
  width: 100%;
  max-width: 527px;
  border-radius: 17px;
}
.members .members__inner .members__item .members__name {
  grid-column: 2;
}
.members .members__inner .members__item .members__name p:nth-child(2) {
  margin-top: 1vh;
  font-size: 2rem;
  text-align: left;
}
.members .members__inner .members__item .members__name p:nth-child(2) .members__en {
  margin-left: 0px;
  font-size: 1.3rem;
}
.members .members__inner .members__item .members__contents {
  grid-column: 1/3;
  width: 100%;
}
.members .members__inner .members__item .members__contents .members__introtxt {
  line-height: 26px;
}
.members .members__inner .members__item .members__contents .members__introtxt li {
  margin-top: 1.6rem;
  font-size: 1.6rem;
}
.members .members__inner .members__apply {
  width: 200px;
  margin-top: 30px;
  margin-right: 0;
  margin-left: auto;
  border-bottom: 1px solid #4593d0;
  color: #4593d0;
  font-size: 1.5rem;
  line-height: 4.4rem;
  letter-spacing: 2px;
  text-align: center;
}
.members .members__inner .members__cta {
  margin-top: 50px;
}
.members .members__inner .members__list {
  margin-top: 70px;
}
.members .members__inner .members__list ul {
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 5%;
  border-top: 2px solid #fff;
}
.members .members__inner .members__list ul li p {
  font-size: 1.6rem;
  line-height: 28px;
  letter-spacing: 1.6px;
}
.members .members__inner .members__list ul li p:first-child {
  position: relative;
  top: -5px;
  font-size: 1.4rem;
  letter-spacing: 1.4px;
}
.members .members__inner .members__list ul li p:nth-child(2) {
  font-size: 2.8rem;
}
.members .members__inner .members__list ul li:last-child {
  width: 100%;
  max-width: 520px;
  font-size: 1.3rem;
  line-height: 26px;
  letter-spacing: 1.6px;
}
.members .members__inner .members__list ul:last-child {
  border-bottom: 2px solid #fff;
}
.members .members__inner .members__comment {
  margin-top: 70px;
  text-align: center;
}
.members .members__inner .members__comment p {
  margin-top: 20px;
  font-size: 1.2rem;
  line-height: 2.4rem;
  letter-spacing: 1.6px;
  text-align: center;
}
.members .members__inner .members__comment p .members__name {
  display: block;
  font-size: 2rem;
  line-height: 28px;
  letter-spacing: 2px;
}
.members .members__inner .members__comment p:first-child {
  font-size: 2.4rem;
  line-height: 3.4rem;
  letter-spacing: 2.4px;
}
.members .members__inner .members__comment p:last-child {
  margin: 15px auto 0;
}
.members .members__inner .members__bloglink {
  width: 240px;
  margin-top: 30px;
  margin-right: auto;
  margin-left: auto;
  border-bottom: 1px solid #4593d0;
  color: #4593d0;
  font-size: 1.1rem;
  line-height: 4.4rem;
  letter-spacing: 2px;
  text-align: center;
}

.members__profile {
  margin-top: 24px;
}
.members__profile .profile-trigger {
  display: none;
}
.members__profile .profile-btn {
  color: #4593d0;
}
.members__profile .members__proftxt {
  display: none;
  margin-top: 18px;
}
.members__profile .members__proftxt li {
  margin-top: 1.5rem;
}
.members__profile .profile-trigger:checked ~ .members__proftxt {
  display: block;
}

.content .content__inner .content__wrapper {
  -moz-border-radius: 17px;
  -webkit-border-radius: 17px;
  margin-bottom: 105px;
  padding-top: 60px;
  padding-bottom: 105px;
  border-radius: 17px;
  background-color: #eaeeeb;
}
.content .content__inner .content__wrapper .content__title {
  text-align: center;
}
.content .content__inner .content__wrapper .content__title p:first-child {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 35.43px;
  letter-spacing: 0.84px;
}
.content .content__inner .content__wrapper .content__title p:last-child {
  color: #444444;
  font-size: 2.2rem;
  letter-spacing: 2.6px;
}
.content .content__inner .content__wrapper .content__grid {
  margin-top: 10px;
  margin-right: 20px;
  margin-left: 20px;
  text-align: center;
}

#more-btn {
  position: relative;
  top: 20px;
  padding: 20px 50px;
  border-bottom: 1px solid #4593d0;
  color: #4593d0;
  font-size: 2rem;
}

.content__item:nth-child(n+4) {
  display: none;
}

.grad-trigger {
  display: none;
  /*チェックボックスは常に非表示*/
}

.grad-trigger:checked ~ #more-btn {
  display: none;
  /*チェックされていたら、grad-btnを非表示にする*/
}

.grad-trigger:checked ~ .content__item:nth-child(n+4) {
  display: block;
}

.content__item {
  width: 100%;
  max-width: 450px;
  margin-top: 40px;
  margin-right: auto;
  margin-left: auto;
  text-align: justify;
}
.content__item img {
  display: block;
  width: 100%;
  max-width: 450px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 17px;
}
.content__item .content__item-title {
  width: 100%;
  max-width: 406px;
  margin-top: 10px;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 10px;
  background: linear-gradient(90deg, #b26c1f 0% 33%, #4593d0 33% 66%, #e3007f 66%);
  background-position: bottom;
  background-size: 36px 2.5px;
  background-repeat: no-repeat;
  color: #444444;
  font-weight: 400;
  font-size: 2rem;
  line-height: 3rem;
  letter-spacing: 2.3px;
  text-align: center;
}
.content__item .content__item-txt {
  width: 100%;
  max-width: 390px;
  margin-top: 15px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}
.content__item a {
  display: block;
  color: #4593d0;
  font-size: 1.4rem;
  line-height: 44.09px;
  letter-spacing: 1.7px;
  text-align: right;
}

.contact {
  display: flex;
  justify-content: center;
  width: 258px;
  margin-right: auto;
  margin-left: auto;
}
.contact .contact-txt {
  position: relative;
  font-weight: 400;
  font-size: 2rem;
  line-height: 76.79px;
}
.contact .contact-txt:before {
  display: inline-block;
  position: absolute;
  top: 0px;
  left: -43px;
  width: 300px;
  height: 1px;
  background-color: #4593d0;
  content: "";
}
.contact .contact-txt:after {
  display: inline-block;
  position: absolute;
  bottom: 0px;
  left: -43px;
  width: 300px;
  height: 1px;
  background-color: #4593d0;
  content: "";
}

.gallery .gallery__title {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin-top: 180px;
  margin-right: auto;
  margin-left: auto;
  font-weight: 400;
  font-size: 2.2rem;
  line-height: 76.79px;
  letter-spacing: 2.4px;
  text-align: center;
}
.gallery .gallery__title img {
  position: absolute;
  top: -30px;
  left: 20px;
  width: 60px;
}
.gallery > img {
  width: 100%;
  margin-top: 50px;
  padding-right: 20px;
  padding-left: 20px;
  border-radius: 17px;
}
.gallery .gallery__inner .gallery__images {
  position: relative;
}
.gallery .gallery__inner .gallery__images .gallery__top-txt {
  margin-top: 2vh;
  color: #000000;
  font-size: 1.3rem;
  line-height: 3rem;
  letter-spacing: 0.2rem;
  text-align: center;
}
.gallery .gallery__inner .gallery__images .gallery__images1 {
  width: 46%;
  margin-top: 6vh;
  border-radius: 17px;
}
.gallery .gallery__inner .gallery__images .gallery__images2 {
  position: absolute;
  top: 16vh;
  right: 0;
  width: 46%;
  border-radius: 17px;
}
.gallery .gallery__inner .gallery__images .gallery__txt {
  width: 55%;
  margin-top: 7vh;
  margin-bottom: 15vw;
  color: #000000;
  font-size: 1.3rem;
  line-height: 3rem;
  letter-spacing: 2px;
  text-align: center;
}
.gallery .gallery__inner .gallery__images .gallery__images3 {
  position: relative;
  top: -6vh;
  left: 58vw;
  width: 35%;
  border-radius: 17px;
}
.gallery .gallery__inner .gallery__images .gallery__images4 {
  position: relative;
  top: 0;
  left: -33vw;
  width: 58%;
  border-radius: 17px;
}
.gallery .gallery__inner .gallery__images .gallery__bottomtxt {
  margin-top: 4vh;
  color: #000000;
  font-size: 1.3rem;
  line-height: 3rem;
  letter-spacing: 2px;
  text-align: center;
}

.copy .copy__inner {
  padding-top: 80px;
}
.copy .copy__inner .copy__txt p {
  color: #444444;
  font-size: 1.2rem;
  line-height: 2.4rem;
  letter-spacing: 1.6px;
  text-align: center;
}
.copy .copy__inner .copy__txt p:first-child {
  margin-bottom: 3vh;
  font-size: 2rem;
  line-height: 3.4rem;
}

.access .access__inner {
  padding-top: 40px;
  padding-bottom: 80px;
}
.access .access__inner .access__logo img {
  display: block;
  width: 40%;
  max-width: 224px;
  margin-top: 20px;
  margin-right: auto;
  margin-left: auto;
}
.access .access__inner .access__info {
  margin-top: 30px;
  text-align: center;
}
.access .access__inner .access__info .access__gmap {
  position: relative;
  width: 100%;
  max-width: 648px;
  height: 30vh;
  margin-top: 15px;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 30%;
  overflow: hidden;
}
.access .access__inner .access__info .access__gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.footer .footer__inner {
  padding-bottom: 42px;
  text-align: center;
}
.footer .footer__inner .footer__info {
  width: 260px;
  margin-right: auto;
  margin-left: auto;
}
.footer .footer__inner .footer__info p {
  color: #000000;
  line-height: 32px;
  letter-spacing: 2.8px;
}
.footer .footer__inner .footer__info p:first-child {
  font-size: 1.5rem;
}
.footer .footer__inner .footer__info p:last-child {
  font-size: 2.4rem;
}
.footer .footer__inner > p {
  margin-top: 60px;
  color: #444444;
  font-weight: 400;
  font-size: 1rem;
  line-height: 76.79px;
  letter-spacing: 1.2px;
}
@media print, screen and (min-width: 769px) {
  body {
    font-size: 1.5rem;
  }
  h1 {
    margin-top: 25px;
  }
  h1 img {
    width: 100%;
    max-width: 392px;
  }
  h3 {
    font-size: 2.8rem;
  }
  .inner {
    padding: 0 50px;
  }
  .openbtn-wrapper {
    display: none;
  }
  .pc__nav {
    display: block;
  }
  .pc__nav a {
    display: flex;
    align-items: center;
  }
  .cta img {
    max-width: 446px;
    padding: 0 50px;
  }
  .scroll-top:last-child {
    bottom: 30px;
  }
  .scroll-top {
    right: 0.5vw;
    bottom: 120px;
  }
  .scroll-top a {
    font-size: 1.6rem;
  }
  .js-scroll a::after {
    height: 85px;
  }
  .js-scroll a::before {
    top: 115px;
  }
  .js-pagetop a::after {
    top: -100px;
    height: 85px;
  }
  .js-pagetop a::before {
    top: -100px;
  }
  .header .header__inner {
    justify-content: space-between;
    margin-top: 25px;
  }
  .header .header__inner .header__txt {
    left: 15vw;
    width: 100%;
    max-width: 338px;
  }
  .header .header__inner .header__logo {
    display: flex;
  }
  .header .header__inner .header__logo img:first-child {
    width: 17.5vw;
    max-width: 210px;
  }
  .fv .fv__inner {
    padding-top: 70px;
    padding-bottom: 95px;
  }
  .fv .fv__inner .fv__slider {
    margin-top: 10px;
  }
  .fv .fv__inner .fv__slider .fv__slider-list img {
    height: inherit;
  }
  .fv .fv__inner .fv__slider .fv__slider-list p {
    font-size: 1.8rem;
  }
  .fv .fv__inner .fv__slider .fv__slider-list:nth-child(2) p {
    top: 6.4vw;
    left: 45vw;
  }
  .fv .fv__inner .fv__slider .fv__slider-list:nth-child(3) p {
    top: 22vw;
    right: inherit;
    left: 18vw;
  }
  .fv .fv__inner .fv__slider .fv__slider-list:nth-child(4) p {
    top: 25.5vw;
    right: 4vw;
  }
  .information .information__inner .information__wrapper #information__rss .information__list p {
    margin-bottom: 0px;
    line-height: 4.8rem;
  }
  .information .information__inner .information__wrapper #information__rss .information__list p .sp-br {
    display: none;
  }
  .training-cta {
    margin-bottom: 165px;
  }
  .members .members__inner {
    margin-top: 170px;
    padding-top: 180px;
    padding-bottom: 235px;
  }
  .members .members__inner .members__item {
    grid-template-rows: 100px auto;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 40px;
         column-gap: 40px;
    margin-top: 130px;
  }
  .members .members__inner .members__item p {
    font-size: 1.6rem;
    line-height: 2.8rem;
  }
  .members .members__inner .members__item p .br-sp {
    display: none;
  }
  .members .members__inner .members__item .members__pic {
    grid-row: 1/3;
    grid-column: 1;
  }
  .members .members__inner .members__item .members__name {
    grid-column: 2;
  }
  .members .members__inner .members__item .members__name p:nth-child(2) {
    margin-top: 20px;
    font-size: 2.8rem;
  }
  .members .members__inner .members__item .members__name p:nth-child(2) .members__en {
    margin-left: 25px;
    font-size: 1.6rem;
  }
  .members .members__inner .members__item .members__contents {
    grid-column: 2;
    max-width: 520px;
  }
  .members .members__inner .members__apply {
    width: 220px;
    padding: 20px;
    font-size: 2rem;
  }
  .members .members__inner .members__list ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .members .members__inner .members__list ul li {
    display: flex;
  }
  .members .members__inner .members__list ul li p:nth-child(2) {
    margin-left: 20px;
  }
  .members .members__inner .members__list ul li p:last-child {
    margin-left: 25px;
  }
  .members .members__inner .members__list ul li:last-child {
    margin-left: 50px;
    font-size: 1.6rem;
  }
  .members .members__inner .members__comment {
    margin-top: 90px;
  }
  .members .members__inner .members__comment p {
    font-size: 1.6rem;
    line-height: 2.8rem;
  }
  .members .members__inner .members__comment p .members__name {
    display: inline;
    margin-left: 15px;
  }
  .members .members__inner .members__bloglink {
    width: 280px;
    padding: 5px;
    font-size: 1.5rem;
  }
  .content .content__inner .content__wrapper {
    padding-top: 135px;
  }
  .content .content__inner .content__wrapper .content__title p:last-child {
    font-size: 2.6rem;
    line-height: 76.79px;
  }
  .content .content__inner .content__wrapper .content__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-right: 60px;
    margin-left: 60px;
    gap: 10px;
  }
  #more-btn {
    display: none;
  }
  .content__item:nth-child(n+4) {
    display: block;
  }
  .content__item img {
    max-width: 390px;
  }
  .content__item .content__item-title {
    margin-top: 20px;
    padding-bottom: 10px;
    font-size: 2.3rem;
    line-height: 4rem;
  }
  .content__item .content__item-txt {
    margin-top: 22px;
  }
  .content__item a {
    font-size: 1.7rem;
  }
  .contact .contact-txt {
    font-size: 2.4rem;
  }
  .contact .contact-txt:before {
    width: 344px;
  }
  .contact .contact-txt:after {
    width: 344px;
  }
  .gallery .gallery__title {
    font-size: 2.4rem;
  }
  .gallery .gallery__title img {
    left: -40px;
    width: 85px;
  }
  .gallery > img {
    padding-right: 0px;
    padding-left: 0px;
  }
  .gallery .gallery__inner .gallery__images .gallery__top-txt {
    margin-top: 50px;
    font-size: 2rem;
    line-height: 76.79px;
  }
  .gallery .gallery__inner .gallery__images .gallery__images1 {
    max-width: 470px;
    margin-left: 3vw;
  }
  .gallery .gallery__inner .gallery__images .gallery__images2 {
    top: 20vw;
    max-width: 470px;
    margin-left: 2.5vw;
  }
  .gallery .gallery__inner .gallery__images .gallery__txt {
    width: 264px;
    margin-top: 10vw;
    margin-left: 14.5vw;
    font-size: 2rem;
    line-height: 48px;
  }
  .gallery .gallery__inner .gallery__images .gallery__images3 {
    position: absolute;
    top: 55vw;
    right: -50px;
    left: inherit;
    max-width: 393px;
  }
  .gallery .gallery__inner .gallery__images .gallery__images4 {
    left: -50px;
    width: 68%;
    max-width: 800px;
  }
  .gallery .gallery__inner .gallery__images .gallery__bottomtxt {
    font-size: 2rem;
    line-height: 48px;
  }
  .gallery .gallery__inner .gallery__images .gallery__bottomtxt .sp-br {
    display: none;
  }
  .copy .copy__inner {
    padding-top: 100px;
  }
  .copy .copy__inner .copy__txt p {
    font-size: 1.6rem;
    line-height: 2.8rem;
  }
  .copy .copy__inner .copy__txt p .copy__br {
    display: none;
  }
  .copy .copy__inner .copy__txt p:first-child {
    margin-bottom: 0;
    font-size: 2.2rem;
    line-height: 5.4rem;
  }
  .access .access__inner {
    padding-top: 120px;
  }
  .access .access__inner .access__logo img {
    width: 100%;
  }
  .footer .footer__inner .footer__info p:first-child {
    font-size: 1.8rem;
  }
  .footer .footer__inner .footer__info p:last-child {
    font-size: 2.8rem;
  }
  .footer .footer__inner > p {
    font-size: 1.1rem;
  }
}
@media print, screen and (min-width: 767px) {
  .header .header__inner .header__txt p {
    font-size: 1.6rem;
    line-height: 3rem;
  }
}