@charset "utf-8";

/* 基本設定 */
html {
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  line-height: 1.5;
  font-style: normal;
  font-size: 62.5%;
}
main {
  margin: 0 auto;
  max-width: 1000px;
}
img {
  height: auto;
  width: 100%;
  vertical-align: bottom;
}
/* ここまで基本設定 */

/* 背景設定 */
main::before {
  background: url("img/background.jpg") no-repeat center; /* 擬似要素に背景画像 */
  background-size: cover; /* cover指定 */
  content: ""; /* 画像を表示させる為に必要*/
  display: block; /*ブロックボックスで表示*/
  position: fixed; /* 擬似要素全体を固定 */
  width: 100%; /* 横幅を画面全体 */
  height: 100vh; /* 縦幅を画面全体 */
  top: 0; /* 上からの配置を0 */
  left: 0; /* 左からの配置を0 */
  z-index: -1; /*背景画像になるように重ね順を-1*/
}

/* ここまで背景設定 */

/* footer */
.footer {
  background-color: #4379a1;
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
  margin-top: 150px;
}
@media screen and (min-width: 768px) {
  .footer {
    margin-top: 300px;
  }
}
.footer small {
  color: #fff;
}
.footerwarp {
  display: flex;
  justify-content: center;
}
.footer-link {
  color: #fff;
  text-decoration: none;
}
.footer-link1 {
  margin-right: 16px;
}
.footer-link1 ::after {
  content: " | ";
  width: 2px;
  color: #fff;
  margin-right: 2px;
}
/* ここまでfooter */

/* ボタンアニメーション基本設定 */

/* ファーストビュー内のボタンアニメーション設定 */
.header {
  position: relative;
}
.header a {
  animation: shake 2s infinite;
  bottom: 6%;
  display: block;
  left: 50%;
  position: absolute;
  width: 87%;
}
@media screen and (min-width: 1400px) {
  .header {
    margin: 0 15%;
  }
}
/* WEB講義案内後のボタンアニメーション設定 */
.section3 {
  position: relative;
}
.section3 a {
  position: absolute;
  width: 87%;
  animation: shake 2s infinite;
  bottom: 0.2%;
  display: block;
  left: 50%;
  transform: translateX(-50%);
}
/* footer上のボタンアニメーション設定 */
.section5 {
  position: relative;
}
.section5 a {
  position: absolute;
  display: block;
  width: 87%;
  left: 50%;
  margin-top: 20px;
  animation: shake 2s infinite;
  transform: translateX(-50%);
}

/* ここまでボタンアニメーション基本設定 */

/* ボタンアニメーション */
@keyframes shake {
  0%,
  to {
    transform: translateX(-50%);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-48%);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translateX(-50%);
  }
}

/* ここまでボタンアニメーション */

/* Q＆Aアコーディオン */
* {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-style: normal;
}

.accordion_img {
  vertical-align: bottom;
  width: 100%;
}
.w_1200 {
  margin: 0 auto;
  /* max-width: 2000px; */
  overflow: hidden;
  text-align: center;
  margin-top: -5px;
  margin-left: -0px;
}

@media screen and (max-width: 1440px) {
  .accordion_img {
    height: 100%;
    width: 100%;
    margin: 0;
  }
}

dl {
  margin: 0;
}
.accordionlist dt {
  display: block;
}
.accordionlist dt:first-child {
  border-top: none !important;
}
.accordionlist dt .title {
  padding-left: 0px;
}
.accordionlist dd {
  display: none;
  padding: 0 0 0px 0px;
}
/* ここまでQ＆Aアコーディオン */
