@import url('https://fonts.googleapis.com/css?family=Economica:400,700');
@import url('https://fonts.googleapis.com/css2?family=Caveat&display=swap');



html, body {
  font-family: "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", Verdana, Helvetica, Arial, sans-serif;
  /* "M PLUS Rounded 1c"; */
  font-size: 20px;
}

.wrapper {
  min-height: 100vh;
  position: relative;
  padding-bottom: 150px;
  box-sizing: border-box;
}

header {
  display: flex;
  background: #f5f5f5;
}
header a {
  width: calc(100%/3);
  padding-top: 25px;
}

.main-title {
  font-family: 'デラゴシック';
  text-align: center;
  width: calc(100%/3);
  font-size: 30px;
  font-weight: bold;
  color:#7bcaff;
  letter-spacing: 0.7rem;
}

.attention-container {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  display: flex;
  width: fit-content;
  background: #fdbfbf;
  /* justify-content: flex-end;
  align-items: flex-end; */
}

.attention-container .memo {
  text-align: right;
}

.attention-container .memo h1 {
  margin: 10px 10px;
  /* margin-left: 10px; */
  font-size: 32px;
  background: #ff0000;
  color: #ffffff;
  width: 120px;
  text-align: center;
  border-radius: 10px;
}

.attention-container .memo p {
  margin: 10px;
  /* font-size: 16px; */
  text-align: left;
  color: #ff0000;
  font-weight: bold;
}

.attention-container img {
  width: 100px;
  height: 100px;
  margin-top: 70px;
}

div.title-text {
  text-align: center;
}

.title {
  margin: 20px auto;
  width: 400px;
  background: #ff8800;
  color: #ffffff;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  box-shadow: 5px 5px #ff5e00;
}

p.text {
  display: inline-block;
  text-align: left;
  margin-top: 0;
}

.manual-container {
  background: #b0dfff;
  width:fit-content;
  margin: auto;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

li.pop {
  font-family: 'HGS創英角ﾎﾟｯﾌﾟ体';
}

li.pop ol {
  font-family:initial;
}

.manual-container .memo {
  padding-top: 10px;
}

.manual-container .memo h1 {
  margin: 0 15px;
  padding: 5px;
  font-size: 32px;
  background: #10a7ff;
  color: #ffffff;
  width: 120px;
  text-align: center;
  border-radius: 10px;
}

.start-check-container {
  display: flex;
}

.start-check-container img {
  width: 100px;
  height: 100px;
  margin-top: 80px;
}

#drill-image {
  width: 600px;
}

#contents-image {
  width: 600px;
}

#mix-book-image {
  width: 600px;
}


.manual-container ol {
  margin-bottom: 10px;
}

.manual-container ol li {
  margin-top: 5px;
  /* font-weight: bold; */
} 
.manual-container ol li ol li {
  list-style-type: disc;
  /* font-weight: normal; */
} 


.link{
  background:#ffb773;
  width: fit-content;
  margin: auto;
  font-size: 24px;
  border-radius: 50px;
  margin-bottom: 50px;
}

.link a {
  display:block;
  font-weight: bold;
}


#digitalurl, #movieurl, #reviewdigitalurl, #bookurl {
  padding:20px;
  color:#fff;
}

#digitalurl:hover, #movieurl:hover, #reviewdigitalurl:hover, #bookurl:hover {
  color: #ffffff;
  background-color: #191970;
  text-decoration: none;
  border-radius: 50px;
}


/* ------------------------
学習サポートシステム
--------------------------*/


.link-support {
  display: flex;
  text-align: center;
  width:fit-content;
  margin: auto;
  align-items: baseline;
}

#supporturl, #support-manual {
  margin: 20px;
  border: 2px solid;
  border-radius: 20px;
  text-decoration: none;
  color: #000000;
}

#supporturl {
  background: #ffc3c3;
  padding: 20px;
  line-height: 2em;
  border-color: #ff9e9e;
}

#support-manual {
  background: #b0dfff;
  padding: 20px;
  border-color: #7bcaff;
}





footer {
  background: #191970;
  width: 100%;
  position: absolute;
  bottom: 0;
}

.footer {
  height: 100px;
  text-align: center;
  padding-top: 25px;
  font-size: 0.5rem;
  color: #ffffff;
  padding-bottom: 10px;
}

img.size {
  width: 130px;
  height: auto;
}


/* 
------------------------- */

/* .button {
  position: relative;
  display: inline-block;
  padding: .5em 4em;
  border: 2px solid #333;
  color: #333;
  text-align: center;
  text-decoration: none;
  transition: .3s;
}
.button:hover {
  color: #fff;
}

.button:before,
.button:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: '';
  transform: scale(0, 1);
}
.button:before {
  background: #666;
  transform-origin: right top;
}
.button:after {
  background: #333;
  opacity: 0;
  transform-origin: left top;
  transition: transform 0s .3s, opacity .3s;
}
.button:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
  transition: transform .3s;
}
.button:hover::after {
  opacity: 1;
  transform-origin: right top;
  transform: scale(1, 1);
  transition: transform .3s .3s, opacity .3s;
} */