@charset "UTF-8";
/*********************************
indexページのcss
*********************************/

/* 水色#00aeff */
/* ピンク#ff6f94 */
/* 紺色#003f5c */

/* サイドバーとメインの分割配置 */
.open_bg_black {
  position: fixed;
  display: none;
  z-index: 9000;
  top:0;
  bottom:0;
  left:0;
  right:0;
  width: 100vw;
  height: 100vh;
  background-color: black;
  opacity: 0.5;
  cursor: pointer;
}
aside {
  display: inline-block;
  width: 18%;
  position: fixed;
  height: max-content;
  z-index: 9999;
  transform: translateX(0);
  overflow-y: scroll;
  -ms-overflow-style: none;    /* IE, Edge 対応 */
  scrollbar-width: none;       /* Firefox 対応 */
}
aside::-webkit-scrollbar {
  /* Chrome, Safari 対応 */
    display:none;
}
.wrapper {
  display: block;
  width: 82%;
  float: right;
  overflow: hidden;
}
.wrapper::after {
  content:"";
  clear: both;
}

img[src="./images/nav_icon.png"]{
  width: 15px;
  display: inline-block;
  vertical-align: middle;
}
/*********************************
ヘッダー
*********************************/
header {
  position: relative;
  width: 100%;
  margin: auto;
  padding: 20px 0 28px;
  z-index: 8000;
}
header table {
  width: max-content;
  margin: auto;
  color: white;
}
header table img {
  width: 2.8vw;
  display: block;
}
header table th {
  font-size: 2.8rem;
  letter-spacing: 2vw;
  padding: 0 0 0 30px;
}
header::after {
  content:"";
  position: absolute;
  border-bottom: 2px solid #0097de;
  width: 98%;
  margin: auto;
  height: max-content;
  left: 0;
  right: 0;
  bottom: 8px;
}
.humberger_box_wrap {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 90%;
  width: 35px;
}
.humberger_box {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.humberger_box div {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  width: max-content;
  height: max-content;
  margin: 0;
  transform-origin: center center;
  transform: translate(-50%,-50%);
}
.humberger_box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -2px;
  bottom: 0;
  width: max-content;
  height: 100%;
  border-left: 2px solid #0097de;
}
.humberger_box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: max-content;
  height: 100%;
  border-left: 1px solid #36bfff;
}
.humberger_box span {
  height: max-content;
  display: block;
  border-top: 2px solid white;
  width: 25px;
  padding-top: 7px;
}
.humberger_box span:last-of-type {
  padding:0;
}

/*********************************
サイドメニュー
*********************************/
.side_menu {
  display: inline-block;
  width: 80%;
  height: 100vh;
  overflow: scroll;
}
.side_logo {
  width: 35%;
  margin: 25px auto;
  display: block;
}
.side_menu ul {
  width: 75%;
  margin: auto;
}
.side_menu ul li {
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
  text-align: center;
  padding: 20px 0;
  font-weight: normal;
  font-size: 0.8em;
}
.side_menu ul li:first-of-type {
  padding-top: 0;
}
.side_menu ul li:last-of-type {
  /* padding-bottom: 0; */
  border-bottom: none;
}
.profile, .partner {
  border-left: 1px solid #00aeff;
  display: grid;
  grid-template-columns: repeat(1,1fr);
  padding: 25px 0;
  width: 85%;
  margin: auto;
  font-size: 0.8em;
  text-align: left;
  padding-left: 0.8vw;
}
.profile a, .partner a {
  padding: 10px 0;
  white-space: nowrap;
}
.profile a span {
  display: inline-block;
  width: max-content;
  transform: scale(0.65);
  transform-origin: left center;
}
.profile a:last-of-type {
  position: relative;
  padding-top: 11px;
}
.profile a:last-of-type:before {
  position: absolute;
  content:"";
  display: block;
  border-top: 1px dotted #00aeff;
  width: 100%;
  height: max-content;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: translateX(-1.5%);
}
.profile img {
  display: inline-block;
  width: 10px;
  margin-right: 0.7vw;
  vertical-align: middle;
  line-height: 1;
}
.logo_icon {
  display: block;
  width: 1.5vw;
  margin: 10px 0;
  transform: translateX(15%);
}
.partner img {
  display: inline-block;
  width: 10px;
  margin-right: 0.7vw;
  vertical-align: text-bottom;
  line-height: 1;
}

.partner a p {
  display: inline-block;
  vertical-align: top;
}
.partner a p span {
  line-height: 1;
  vertical-align: text-bottom;
}

/*********************************
フォローSNS
*********************************/
.follow {
  display: block;
  width: 20%;
  float: right;
  height: 100vh;
  color: white;
  border-right: 0.45vw solid #80d7ff;
  padding-top: 120px;
}
.follow::after {
  content:"";
  clear: both;
}
.follow ul {
  width: 70%;
  margin: auto;
}
.follow li {
  width: 100%;
  display: block;
}
.follow li:first-of-type{
  margin-bottom: 10px;
}
.follow li p {
  writing-mode: vertical-lr;
  writing-mode: tb-lr;
  margin: auto;
}
.follow li img {
  display: block;
  padding: 10px 0;
}
/*********************************
フッター
*********************************/
footer {
  position: relative;
  display: inline-block;
  background-color: #00aeff;
  width: 100%;
  padding: 25px;
  color: white;
}
footer p {
  display: block;
  width: max-content;
  margin: auto;
}
footer::before {
  content: "";
  display: block;
  position: absolute;
  border-top: #71c2e8 solid 1px;
  left: 0;
  right: 0;
  top: 0.4vw;
  width: 99.9%;
  height: max-content;
  margin: auto;
}
footer::after {
  content: "";
  display: block;
  position: absolute;
  border-top: #71c2e8 solid 1px;
  left: 0;
  right: 0;
  bottom: 0.4vw;
  width: 99.9%;
  height: max-content;
  margin: auto;
}
/*********************************
メイン
*********************************/
main {
  width: 100%;
  display: inline-block;
  color: #00aeff;
}
.top {
  display: block;
  width: 90%;
  margin: auto;
  overflow-x: hidden;
  padding-top: 40px;
}
.top video {
  width: 75%;
  display: block;
  margin: auto;
}
.top_text {
  width: 100%;
  border-left: 1px solid #00aeff;
  border-right: 1px solid #00aeff;
  text-align: center;
  line-height: 2.5;
  letter-spacing: 0.4vw;
  margin-top: 40px;
  margin-bottom: 70px;
}
.top_text h2 {
  font-weight: inherit;
  font-size: 1rem;
  display: inline-block;
}
.teacher {
  width: 75%;
}

/*********************************
サブページ1のcss
*********************************/
.original {
  width: 100%;
  margin: auto;
}
.subpage_title {
  font-weight: lighter;
  display: block; 
  width: 23vw;
  text-align: center;
  border: solid 1px #00aeff;
  border-radius: 100px;
  margin: auto;
  margin-top: 70px;
}
.original div {
  margin: 0 auto;
  margin-top: 50px;
  display: block;
  width: max-content;
}
.original div p {
  letter-spacing: 0.3vw;
  display: inline-block;
  vertical-align: top;
  line-height: 1.8;
}

.training {
  width: 90%;
  margin: auto;
}
.training img {
  margin-top: 30px;
}
.training div img {
  margin: 0;
  margin-right: 0.8vw;
}
.training .top_text div {
  display: grid;
  margin: auto;
  width: max-content;
  grid-template-columns: repeat(2,1fr);
}
.training .top_text a {
  display: block;
  text-align: left;
  cursor:auto;
}
.training p {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
  font-size: 0.9em;
}
.training a:last-of-type {
  text-align: right;
}

.record {
  width: 95%;
  margin: auto;
}
.record_wrap {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
}
.record_content {
  background-color: #00aeff;
  color: white;
  padding: 8px;
  box-shadow: 0px 4px 4px #c5c5c5;
  width: 95%;
  margin: auto;
}
.record_content h3 {
  font-weight: lighter;
  text-align: center;
  margin-bottom: 6px;
  font-size: 1em;
}
.record_content div {
  width: 90%;
  margin: auto;
  background-color: white;
  color: #00aeff;
  text-align: center;
}
.record_content div p {
  padding: 3px 0 8px;
  letter-spacing: 0.3vw;
}
.record_content div p span {
  font-size: 0.8em;
}
.attention {
  margin: 10px 0;
  width: 100%;
  display: block;
  text-align: right;
}
.record .text {
  display: block;
  width: max-content;
  margin: 70px auto 80px;
  letter-spacing: 0.3vw;
}

.customervoice {
  width: 95%;
  margin: auto;
}
.customervoice h2 {
  font-weight: lighter;
  font-size: 1.3em;
  letter-spacing: 0.3vw;
  text-align: center;
}
.customervoice_wrap {
  margin-top: 20px;
  display: block;
  width: 100%;
  background-color: white;
  border-radius: 24px;
  box-shadow: 0px 4px 4px #c5c5c5;
  padding: 15px;
  white-space: nowrap;
}
.customervoice_content {
  display: block;
  margin: auto;
  width: 85%;
}
.customervoice_content div {
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
}
.customervoice_content div:first-of-type {
  width: 13%;
}
.customervoice_content div:last-of-type {
  width: 87%;
  padding-left: 1vw;
}
.customervoice_content div img {
  max-width: 80px;
}

/*********************************
サブページ2のcss
*********************************/
.movie {
  margin-top: 90px;
  width: 100%;
  text-align: center;
  line-height: 2;
}
.movie div {
  width: 60%;
  padding: 30px 0;
  margin: auto;
}
.movie div video {
  display: block;
  width: 100%;
}
.subsidy {
  margin-top: 70px;
}
.subsidy h2 {
  margin-bottom: 30px;
}
.subsidy p {
  letter-spacing: 0.4vw;
  line-height: 2;
  text-align: center;
  margin-top: 10px;
}
.subsidy p a {
  text-decoration: underline;
}
.subsidy p a:hover {
  opacity: 0.8;
}


/*********************************
連絡先
*********************************/
.address {
  width: 90%;
  margin: 70px auto;
  background-color: white;
  padding: 40px 0;
  box-shadow: 0 3px 0 #c6c6c6;
  border-radius: 1.5vw;
  background-color: white;
}

.address p {
  display: block;
  margin: auto;
  width: max-content;
}
.under_line {
  display: block;
  width: 90%;
  margin: auto;
  margin-top: 25px;
  padding-bottom: 25px;
  border-top: 1px dotted #003f5c;
  color: #003f5c;
}
.address div h2 {
  font-weight: normal;
  display: block;
  text-align: center;
  font-size: 1rem;
  margin-bottom: 8px;
}
.address div h2 span {
  display: inline-block;
  vertical-align: middle;
}
.address div h2 span.big_text {
  font-size: 1.2em;
  margin-left: 8px;
}
.address ul {
  width: max-content;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  font-weight: bold;
  padding: 0 1.5vw;
}
.address li {
  text-align: center;
}
.address li:last-of-type {
  text-align: left;
}
.address li a {
  display: inline-block;
  width: max-content;
}
.address li img {
  width: 3vw;
  min-width: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}
.address li span {
  line-height: 1;
  font-size: 1.3rem;
  display: inline-block;
  vertical-align: middle;
  font-family: 'BAHNSCHRIFT', 'ShinMGo', 'YuGothic', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ','Meiryo', Arial, Verdana, sans-serif;
}

.address li .float {
  display: block;
  line-height: 1;
  font-size: 0.8em;
  padding: 8px;
  text-align: right;
}


/*********************************
レスポンシブ
*********************************/

@media screen and (max-width:1200px){
  /* ヘッダー */
  header table th {
    font-size: 2.7rem;
    letter-spacing: 2vw;
    padding: 0 0 0 30px;
  }
}
@media screen and (max-width:1000px){
  /* ヘッダー */
  header table img {
    width: 2.8vw;
  }
  header table th {
    font-size: 2.5rem;
    padding: 0 0 0 3.5vw;
  }
}

@media screen and (max-width:930px){
  .profile a span {
    display: block;
    margin: auto;
    transform-origin: center center;
  }
  .customervoice_content {
    width: 90%;
  }
}

@media screen and (max-width:851px){
  
  .partner, .profile {
    padding-left: 0.8vw;
  }
  .profile img, .partner img {
    width: 6px;
    margin-right: 0.7vw;
  }
}

@media screen and (max-width:751px){
  .humberger_box_wrap {
    display: block;
  }
  aside {
    transform: translateX(-100%);
    width: 200px;
    font-size: 1.2em;
    transition: transform 0.7s;
  }
  .profile a span {
    display: inline-block;
    margin: 0;
  }
  .open_aside {
    transform: translateX(0%);
  }
  .wrapper {
    width: 100%;
  }
  /* ヘッダー */
  header {
    padding: 20px 0 25px;
  }
  header table img {
    width: 3.5vw;
    min-width: 15px;
  }
  header::after {
    border-bottom: 2px solid #0097de;
    bottom: 5px;
  }
  /* サイド */
  .follow {
    padding-top: 80px;
  }
  .logo_icon {
    width: 18%;
  }
  .profile a, .partner a {
    padding: 10px 3px;
    white-space: nowrap;
  }
  .partner, .profile {
    font-size: 0.95em;
  }
  .profile img, .partner img {
    margin-right: 8px;
    width: 10px;
  }
  
  .top video {
    width: 100%;
  }
  /* サブページ */
  .subpage_title {
    width: 40vw;
  }
  .original div p {
    width: 90vw;
  }
  img[src="./images/nav_icon.png"]{
    width: 10px;
  }
  .customervoice_content {
    width: 95%;
  }
  .customervoice_content div:first-of-type {
    width: 13%;
  }
  .customervoice_content div:last-of-type {
    width: 87%;
    padding-left: 3vw;
  }
  .customervoice_content div img {
    max-width: 80px;
  }
  .movie {
    font-size: 1.1em;
  }
  .movie div {
    width: 70%;
  }

  .address {
    margin: 50px auto;
    padding: 25px 0;
  }
  .address ul {
    grid-template-columns: repeat(1,1fr);
  }
  .address li {
    text-align: center;
    padding-top: 3px;
  }
  .address li:last-of-type {
    text-align: center;
    padding-top: 5px;
  }
  .address li img {
    margin-right: 3px;
  }
  .address li span {
    font-size: 1.4rem;
  }
  .address li .float {
    font-size: 0.8em;
  }
  .address ul {
    width: 90%;
  }
}

@media screen and (max-width:560px){
    /* ヘッダー */
    header {
      padding: 15px 0 20px;
    }
    .humberger_box {
      padding: 1.5vw;
    }
    .humberger_box_wrap {
      height: 85%;
    }

}

@media screen and (max-width:465px){

  .subpage_title {
    width: 45vw;
  }
}