@charset "UTF-8";
/*--------------------------------------------------------
共通設定(PC)
--------------------------------------------------------*/
html,
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 62.5%;
  font-style: normal;
  line-height: 1.5;
  scroll-behavior: smooth;
  color: #fff;
}
body .sp-item {
  display: none !important;
}
body .pc-item {
  display: block !important;
}
/*リンク文字の設定*/
a {
  text-decoration: underline;
}
a:link,
a:visited {
  color: #39f;
}
a:hover,
a:active {
  color: #f60;
}
/*ボタンホバー設定(半透明)*/
.btn:hover {
  opacity: 0.7;
}
img {
  width: 100%;
}
/*--------------------------------------------------------
各エリアの設定(PC)
--------------------------------------------------------*/
/*ページ全体*/
.container {
  max-width: 750px;
  margin: 0 auto;
  padding: 0;
  background-color: #232323;
}
/*PCで表示、スマホで非表示*/
.for_pc {
  display: block;
}
.for_sp {
  display: none;
}
/*--------------------------------------------------------
ヘッダーエリア
--------------------------------------------------------*/
.header {
  display: flex;
  background-color: #d5ca93;
  height: 100px;
  align-items: center;
  padding-top: 10px;
}
.header-logo {
  width: 30%;
  margin-left: 40px;
}
.header-btn {
  width: 40%;
  margin-left: auto;
  margin-right: 40px;
}
/*--------------------------------------------------------
CTAエリア（FV内）
--------------------------------------------------------*/
.cta-fv-wrap {
  position: relative;
}
.cta-fv-btn {
  position: absolute;
  top: 68%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
}
.cta-fv-btn:hover {
  cursor: pointer;
  opacity: 0.6;
  transition-duration: 0.3s;
}
.cta-fv-btn img {
  animation: anime1 0.8s ease 0s infinite alternate;
  transform-origin: center;
}
@keyframes anime1 {
  from {
    transform: scale(95%, 95%);
  }
  to {
    transform: scale(100%, 100%);
  }
}
/*--------------------------------------------------------
CTAエリア
--------------------------------------------------------*/
.cta-wrap {
  position: relative;
  margin: 40px auto;
}
.cta-btn {
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
}
.cta-btn:hover {
  cursor: pointer;
  opacity: 0.6;
  transition-duration: 0.3s;
}
.cta-btn img {
  animation: anime1 0.8s ease 0s infinite alternate;
  transform-origin: center;
}
@keyframes anime1 {
  from {
    transform: scale(95%, 95%);
  }
  to {
    transform: scale(100%, 100%);
  }
}
/*--------------------------------------------------------
先生の声エリア
--------------------------------------------------------*/
.voice {
  margin-bottom: 40px;
}
/*--------------------------------------------------------
フッターエリア
--------------------------------------------------------*/
.footer {
  text-align: center;
  padding: 30px;
  font-size: 1.8rem;
  background-color: #d5ca93;
  color: #232323;
}
.footer-logo {
  width: 50%;
  margin: 10px 0;
}
/*--------------------------------------------------------
スマホ用
--------------------------------------------------------*/
@media screen and (max-width: 768px) {
  body {
    min-width: inherit;
    height: 100%;
  }
  body .sp-item {
    display: block !important;
  }
  body .pc-item {
    display: none !important;
  }
  body .sp-item img {
    width: 100%;
  }

  /*--------------------------------------------------------
ヘッダー部分(SP)
--------------------------------------------------------*/
  .header {
    height: 60px;
    align-items: center;
    padding-top: 10px;
  }
  .header-logo {
    width: 30%;
    margin-left: 20px;
  }
  .header-btn {
    width: 50%;
    margin-left: auto;
    margin-right: 20px;
  }
  /*--------------------------------------------------------
フッターエリア
--------------------------------------------------------*/
  .footer {
    font-size: 1.4rem;
  }
}
