@charset "UTF-8";
/* フォントフォーマット */
/* カラー */
@font-face {
  font-family: "Rounded Mplus 1c";
  src: url("../font/M_PLUS_Rounded_1c/MPLUSRounded1c-Regular.ttf");
}
header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background-color: #fffff4;
  z-index: 85;
}
header h1 {
  font-family: "Rounded Mplus 1c";
  position: relative;
  font-size: 3rem;
  margin: 0;
  padding: 8px 1rem 0;
  color: #648dbf;
  border-bottom: 5px solid #afc6e2;
  box-shadow: 0 3px 2px rgba(104, 104, 104, 0.3);
}
@media screen and (max-width: 750px) {
  header h1 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 520px) {
  header h1 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 400px) {
  header h1 {
    font-size: 1.35rem;
  }
}
@media screen and (max-width: 350px) {
  header h1 {
    font-size: 1rem;
  }
}
header h1 .h1-text {
  text-shadow: 3px 3px 2px #e2ddcc;
}
@media screen and (max-width: 750px) {
  header h1 .h1-text {
    top: -2.56rem;
  }
}
@media screen and (max-width: 520px) {
  header h1 .h1-text {
    top: -2rem;
  }
}
header h1 .h1-text .kana {
  font-size: 0.7em;
}

@font-face {
  font-family: "Zen_Kaku_Gothic_New";
  src: url("../font/Zen_Kaku_Gothic_New/ZenKakuGothicNew-Regular.ttf");
}
#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0);
}

#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* menu-btn-check:非表示 */
#menu-btn-check {
  display: none;
}
@media screen and (max-width: 520px) {
  #menu-btn-check:checked ~ .menu {
    top: 0%;
    margin-top: calc(2rem + 17px);
  }
  #menu-btn-check:checked ~ .menu .background-close {
    display: block;
  }
}
@media screen and (max-width: 400px) {
  #menu-btn-check:checked ~ .menu {
    top: 0%;
    margin-top: calc(2rem + 13px);
  }
}
@media screen and (max-width: 350px) {
  #menu-btn-check:checked ~ .menu {
    top: 0%;
    margin-top: calc(2rem + 4px);
  }
}

.menu-btn {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  height: 49px;
  width: 44px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #648dbf;
}
@media screen and (max-width: 400px) {
  .menu-btn {
    height: 45px;
    width: 40px;
  }
}
@media screen and (max-width: 350px) {
  .menu-btn {
    height: 36px;
  }
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #fffff4;
  position: absolute;
  transition: 0.3s;
}
.menu-btn span:before {
  bottom: 8px;
}
.menu-btn span:after {
  top: 8px;
}
@media screen and (min-width: 521px) {
  .menu-btn {
    display: none;
  }
}

.menu {
  width: 152px;
  transition: 0.5s;
  padding: 1rem;
  height: 100vh;
  /* カラー指定 */
}
@media screen and (max-width: 1000px) {
  .menu {
    width: 132px;
  }
}
@media screen and (max-width: 840px) {
  .menu {
    width: 105px;
    padding: 0.63em;
  }
}
@media screen and (max-width: 520px) {
  .menu {
    width: 100%;
    position: fixed;
    top: -133%;
    margin-top: 0;
    z-index: 90;
    padding: 0;
  }
}
@media screen and (max-width: 520px) {
  .menu .menu-contents {
    background-color: #fffff4;
    padding: 1rem;
    box-shadow: 1px 1px 5px #959f9d;
  }
}
.menu a {
  text-decoration: none;
}
.menu a.menu__item {
  width: 120px;
  height: 120px;
  /* aspect-ratio: 1/1; */
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  text-align: center;
  border-radius: 0.3em;
  transition: 0.3s;
}
@media screen and (max-width: 1000px) {
  .menu a.menu__item {
    margin-bottom: 0.63rem;
    width: 100px;
    height: 100px;
  }
}
@media screen and (max-width: 840px) {
  .menu a.menu__item {
    width: 85px;
    height: 85px;
  }
}
@media screen and (max-width: 520px) {
  .menu a.menu__item {
    width: 100%;
    flex-direction: row;
    max-height: 3em;
  }
}
@media screen and (min-width: 521px) {
  .menu a.menu__item:hover {
    padding: 5px;
    font-size: 0.85em;
    transition: 0.3s;
    cursor: pointer;
  }
}
.menu a.menu__item .menu-img-wrapper {
  width: 100%;
  height: 65%;
}
.menu a.menu__item .menu-img-wrapper img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  padding-top: 0.63rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1000px) {
  .menu a.menu__item .menu-img-wrapper img {
    height: 4em;
  }
}
@media screen and (max-width: 520px) {
  .menu a.menu__item .menu-img-wrapper img {
    width: 100%;
    padding-top: 0;
    margin-top: 0.5em;
    height: 2rem;
    margin-left: 0.5em;
  }
}
.menu a.menu__item p {
  font-family: "Zen_Kaku_Gothic_New";
  color: white;
  padding: 0;
  margin: 0;
  padding-top: 0.8em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}
@media screen and (max-width: 1000px) {
  .menu a.menu__item p {
    font-size: 0.85em;
    padding-top: 0;
  }
}
@media screen and (max-width: 840px) {
  .menu a.menu__item p {
    font-size: 0.7em;
    padding-top: 0;
  }
}
@media screen and (max-width: 520px) {
  .menu a.menu__item p {
    font-size: 1.25em;
    min-width: 80%;
  }
}
.menu .background-close {
  display: none;
}
@media screen and (max-width: 520px) {
  .menu .background-close {
    height: 100%;
  }
}
.menu .bc-1 {
  background-color: #40b197;
}
.menu .bc-2 {
  background-color: #f4a67a;
}
.menu .bc-3 {
  background-color: #4ed1d8;
}
.menu .bc-4 {
  background-color: #ef9ebf;
}
.menu .bc-5 {
  background-color: #a19cf2;
}
.menu .bc-6 {
  background-color: #b8e84d;
}
.menu .bc-7 {
  background-color: #ef8484;
}

/* sub-Title */
.wrapper-color-1 {
  background-color: #40b197;
}

.wrapper-color-2 {
  background-color: #f4a67a;
}

.wrapper-color-3 {
  background-color: #4ed1d8;
}

.wrapper-color-4 {
  background-color: #ef9ebf;
}

.wrapper-color-5 {
  background-color: #a19cf2;
}

.wrapper-color-6 {
  background-color: #b8e84d;
}

.wrapper-color-7 {
  background-color: #ef8484;
}

/* Circle-bk */
.circle-bk-1 {
  background-color: #bee7dd;
}

.circle-bk-2 {
  background-color: #f5cab2;
}

.circle-bk-3 {
  background-color: #d4f7f9;
}

.circle-bk-4 {
  background-color: #fbd1e2;
}

.circle-bk-5 {
  background-color: #d9d6fd;
}

.circle-bk-6 {
  background-color: #cfed8e;
}

.circle-bk-7 {
  background-color: #e7aaaa;
}

/* Content-color */
.content-color-1 {
  border-bottom: 1px solid #40b197;
}
.content-color-1 h3,
.content-color-1 h4 {
  color: #40b197;
}
.content-color-1 li:hover {
  background-color: #bee7dd !important;
}

.content-color-2 {
  border-bottom: 1px solid #f4a67a;
}
.content-color-2 h3,
.content-color-2 h4 {
  color: #f4a67a;
}
.content-color-2 li:hover {
  background-color: #f5cab2 !important;
}

.content-color-3 {
  border-bottom: 1px solid #4ed1d8;
}
.content-color-3 h3,
.content-color-3 h4 {
  color: #4ed1d8;
}
.content-color-3 li:hover {
  background-color: #d4f7f9 !important;
}

.content-color-4 {
  border-bottom: 1px solid #ef9ebf;
}
.content-color-4 h3,
.content-color-4 h4 {
  color: #ef9ebf;
}
.content-color-4 li:hover {
  background-color: #fbd1e2 !important;
}

.content-color-5 {
  border-bottom: 1px solid #a19cf2;
}
.content-color-5 h3,
.content-color-5 h4 {
  color: #a19cf2;
}
.content-color-5 li:hover {
  background-color: #d9d6fd !important;
}

.content-color-6 {
  border-bottom: 1px solid #b8e84d;
}
.content-color-6 h3,
.content-color-6 h4 {
  color: #80ad1c;
}
.content-color-6 li:hover {
  background-color: #cfed8e !important;
}

.content-color-7 {
  border-bottom: 1px solid #ef8484;
}
.content-color-7 .li-page7 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
.content-color-7 .li-page7:hover {
  font-weight: normal;
  background-color: #e7aaaa !important;
}

.last-section {
  border-bottom: none;
}

/*
-------------------------------
            tail
-------------------------------
*/
.tail {
  position: absolute;
  content: "";
  display: inline-block;
  width: 95px;
  height: 81px;
  background-image: url(../images/fox-tail.png);
  background-size: contain;
  bottom: 95px;
  right: -49px;
  background-repeat: no-repeat;
  clip: rect(0px auto auto 46px);
}
@media screen and (max-width: 750px) {
  .tail {
    width: 124px;
    height: 72px;
    right: -78px;
  }
}
@media screen and (max-width: 520px) {
  .tail {
    height: 63px;
    right: -82px;
    bottom: 86px;
    clip: rect(0px auto auto 42px);
    display: none;
  }
}

.tail2 {
  position: absolute;
  content: "";
  display: inline-block;
  width: 101px;
  height: 57px;
  background-image: url(../images/raccoons-tail.png);
  background-size: contain;
  bottom: 27px;
  right: -47px;
  background-repeat: no-repeat;
  clip: rect(0px auto auto 55px);
}
@media screen and (max-width: 750px) {
  .tail2 {
    width: 90px;
    right: -35px;
  }
}
@media screen and (max-width: 520px) {
  .tail2 {
    height: 45px;
    right: -41px;
    clip: rect(0px auto auto 49px);
    display: none;
  }
}

@font-face {
  font-family: "Rounded Mplus 1c";
  src: url("../font/M_PLUS_Rounded_1c/MPLUSRounded1c-Regular.ttf");
  font-family: "Zen_Kaku_Gothic_New";
  src: url("../font/Zen_Kaku_Gothic_New/ZenKakuGothicNew-Regular.ttf");
}
/*
-------------------------------
            content
-------------------------------
*/
.content {
  background-color: #fffff4;
  position: relative;
  margin-right: 4rem;
  margin-left: 4rem;
  padding: 2.25rem;
  padding-bottom: 0;
  /*     &:last-of-type {
      margin-bottom: $size-D;
  } */
  /* サブタイトル「はじめてみよう」*/
}
@media screen and (max-width: 750px) {
  .content {
    margin-right: 3rem;
  }
}
@media screen and (max-width: 520px) {
  .content {
    margin: 0 18px;
    padding: 1.25rem;
  }
  .content:first-of-type {
    margin-top: 4rem;
    border-bottom: 1px dotted #959f9d;
  }
}
@media screen and (max-width: 520px) and (max-width: 520px) {
  .content:first-of-type {
    padding: 1.25rem 1.25rem 0;
  }
}
.content:first-of-type {
  margin-top: 4rem;
  border-bottom: 1px dotted #959f9d;
}
.content.content-bg-yellow {
  background-color: #fff8be;
}
.content .sub-title {
  display: grid;
  grid-template-rows: 3px 44px 3px;
  grid-template-columns: 50px 200px;
  margin-left: -3.3em;
  margin-top: 2rem;
  position: absolute;
  top: -60px;
}
@media screen and (max-width: 750px) {
  .content .sub-title {
    grid-template-rows: 2px 39px 2px;
    grid-template-columns: 45px 150px;
  }
}
@media screen and (max-width: 520px) {
  .content .sub-title {
    grid-template-rows: 1px 34px 1px;
    grid-template-columns: 40px 100px;
    margin-left: -2em;
  }
}
.content .sub-title .img-wrapper {
  grid-row: 1/4;
  grid-column: 1/2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px;
  border-radius: 3px;
}
.content .sub-title .img-wrapper img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.content .sub-title h2 {
  font-family: "Rounded Mplus 1c";
  grid-row: 2/3;
  grid-column: 2/3;
  font-size: 21px;
  margin: 0;
  background-color: #fce859;
  display: flex;
  align-items: center;
  border-radius: 0 3px 3px 0;
  padding-left: 1em;
}
@media screen and (max-width: 750px) {
  .content .sub-title h2 {
    font-size: 17px;
    padding-left: 0.7em;
  }
}
@media screen and (max-width: 520px) {
  .content .sub-title h2 {
    font-size: 12px;
    padding-left: 0.5em;
  }
}
.content .content-purpose {
  display: flex;
  /* コンテンツアイテム(PC画面：右側) */
}
@media screen and (max-width: 1000px) {
  .content .content-purpose {
    flex-direction: column;
  }
}
.content .content-purpose .movie {
  padding: 0;
  margin: auto;
  width: 27em;
  box-shadow: 1px 1px 5px #959f9d;
  transition: 0.3s;
}
@media screen and (max-width: 1500px) {
  .content .content-purpose .movie {
    width: 22em;
  }
}
@media screen and (max-width: 1000px) {
  .content .content-purpose .movie {
    margin: 0 0 1em 0;
    width: 100%;
  }
}
.content .content-purpose .movie:hover {
  transform: scale(0.985);
  transition: 0.3s;
  cursor: pointer;
}
.content .content-purpose .right-item {
  align-items: center;
  justify-content: center;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  margin: auto;
}
.content .content-purpose .right-item .circle {
  border-radius: 50%;
  margin-top: 1em;
  padding: 2.3em;
}
@media screen and (max-width: 1000px) {
  .content .content-purpose .right-item .circle {
    border-radius: 2ch;
    padding: 1em;
    margin-top: 0;
    margin-bottom: 1em;
    width: 100%;
  }
  .content .content-purpose .right-item .circle br {
    display: none;
  }
}
@media screen and (max-width: 570px) {
  .content .content-purpose .right-item .circle {
    border-radius: 2ch;
    padding: 1em;
    margin-top: 0;
    margin-bottom: 1em;
    width: 100%;
  }
  .content .content-purpose .right-item .circle br {
    display: block;
  }
}
.content .content-purpose .right-item p {
  margin: 0;
  font-family: "Zen_Kaku_Gothic_New";
  text-align: center;
  font-weight: bold;
  font-size: 1.3em;
}
@media screen and (max-width: 1500px) {
  .content .content-purpose .right-item p {
    font-size: 1em;
  }
}
@media screen and (max-width: 720px) {
  .content .content-purpose .right-item p {
    font-size: 0.7em;
  }
}
@media screen and (max-width: 520px) {
  .content .content-purpose .right-item p {
    font-size: 0.3em;
  }
}
.content .content-purpose-border {
  padding-bottom: 2rem;
}
@media screen and (max-width: 1000px) {
  .content .content-purpose-border {
    padding-bottom: 0;
  }
}
.content .content-item {
  display: grid;
  padding-left: 2rem;
  margin-top: 2em;
  /* download */
  padding-bottom: 1em;
  grid-template-areas: "title img" "list img";
  grid-template-columns: 65% 1fr;
  grid-template-rows: 3.5em 1fr;
}
.content .content-item.dl-wrapper {
  display: block;
  margin-top: 1rem;
}
.content .content-item.dl-wrapper .dl-title {
  height: 3.7rem;
}
.content .content-item:first-of-type {
  margin-top: 0;
}
@media screen and (max-width: 1000px) {
  .content .content-item {
    padding-left: 0;
  }
}
@media screen and (max-width: 520px) {
  .content .content-item {
    margin-top: 1em;
  }
}
@media screen and (max-width: 1000px) {
  .content .content-item {
    grid-template-areas: "title img" "list list";
    grid-template-columns: 1fr 16%;
    grid-template-rows: 3.5em 1fr;
  }
}
@media screen and (max-width: 630px) {
  .content .content-item {
    grid-template-areas: "title title" "list list";
    grid-template-columns: 1fr 16%;
    grid-template-rows: 3.5em 1fr;
  }
}
.content .content-item.page7 {
  grid-template-areas: "list img";
  grid-template-columns: 95% 1fr;
  grid-template-rows: 1fr;
  margin-top: 0;
}
@media screen and (max-width: 1000px) {
  .content .content-item.page7 {
    grid-template-areas: "list list";
  }
}
@media screen and (max-width: 520px) {
  .content .content-item.page7 {
    padding-bottom: 0;
  }
}
.content .content-item .title {
  grid-area: title;
  display: flex;
  align-items: center;
  font-family: "Rounded Mplus 1c";
  height: 5.7em;
}
@media screen and (max-width: 840px) {
  .content .content-item .title {
    height: 3.5em;
  }
}
.content .content-item .title h3 {
  font-size: 4em;
  margin: 0;
  height: 5.8rem;
}
@media screen and (max-width: 840px) {
  .content .content-item .title h3 {
    font-size: 3.25em;
    height: 4.5rem;
  }
}
@media screen and (max-width: 750px) {
  .content .content-item .title h3 {
    font-size: 2.7em;
  }
}
.content .content-item .title h4 {
  font-size: 1.6em;
  margin: 0;
  margin-left: 0.5em;
  flex-grow: 1;
  flex-shrink: 0;
}
@media screen and (max-width: 840px) {
  .content .content-item .title h4 {
    font-size: 1.3em;
  }
}
@media screen and (max-width: 750px) {
  .content .content-item .title h4 {
    font-size: 1.05em;
    padding-bottom: 0.5em;
  }
}
@media screen and (max-width: 350px) {
  .content .content-item .title h4 {
    font-size: 0.95em;
  }
}
.content .content-item img {
  width: 65%;
  margin: auto;
  grid-area: img;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1000px) {
  .content .content-item img {
    width: 100%;
  }
}
@media screen and (max-width: 630px) {
  .content .content-item img {
    display: none;
  }
}
.content .content-item .link-list {
  grid-area: list;
  position: relative;
  margin-top: 3em;
  /* download */
}
.content .content-item .link-list.link-list-page7 {
  margin-top: 0;
}
@media screen and (max-width: 840px) {
  .content .content-item .link-list {
    margin-top: 1em;
  }
}
@media screen and (max-width: 750px) {
  .content .content-item .link-list {
    margin-top: 0;
  }
}
.content .content-item .link-list li {
  font-family: "Zen_Kaku_Gothic_New";
  font-size: 1.3em;
  background-color: white;
  transition: 0.3s;
  list-style: none;
  box-shadow: 1px 1px 5px #959f9d;
  padding: 7px 9px 3px 9px;
  margin-top: 13px;
  /* download */
}
@media screen and (max-width: 750px) {
  .content .content-item .link-list li {
    font-size: 1em;
  }
}
@media screen and (max-width: 520px) {
  .content .content-item .link-list li {
    font-size: 13px;
  }
}
.content .content-item .link-list li::before {
  position: absolute;
  left: 0em;
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../images/icon.svg);
  background-size: contain;
  vertical-align: middle;
  margin-top: 2px;
}
.content .content-item .link-list li div {
  display: inline;
  font-weight: bold;
  border-bottom: 3px dotted #ef8484;
}
.content .content-item .link-list li:hover {
  cursor: pointer;
  transition: 0.3s;
  font-weight: bold;
}
.content .content-item .link-list li.dl {
  background-color: #fce859;
  transition: 0.3s;
  text-align: center;
}
.content .content-item .link-list li.dl::before {
  background-image: url(../images/download.svg);
}
.content .content-item .link-list li.dl:hover {
  transition: 0.3s;
}
.content .content-item .link-list.dl-content {
  margin-top: 0;
}
.content .content-item a {
  color: black;
  text-decoration: none;
}
.content .top-illust7 {
  text-align: center;
}
.content .top-illust7 img {
  padding-bottom: 1.5rem;
  width: 35%;
  margin: 0;
}
@media screen and (max-width: 520px) {
  .content .top-illust7 img {
    padding-bottom: 0;
  }
}

[data-ruby], [data-ruby__h1-1], [data-ruby__h1-2] {
  position: relative;
  display: inline-block;
}

[data-ruby__h1-1]::before {
  content: attr(data-ruby__h1-1);
  position: absolute;
  line-height: 100%;
  text-align: center;
  left: -3em;
  right: -3em;
  transform-origin: bottom center;
  /* ルビの文字サイズを親文字に対する比率で指定 */
  transform: scale(0.3);
  /* 100%を越える部分が親文字とルビとのスペースになる。単位は親文字に対する比率 */
  bottom: 86%;
  /* デバッグ用 */
  /* background-color: rgba(255, 0, 0, 0.2); */
}

[data-ruby__h1-2]::before {
  content: attr(data-ruby__h1-2);
  position: absolute;
  line-height: 100%;
  text-align: center;
  left: -3em;
  right: -3em;
  transform-origin: bottom center;
  /* ルビの文字サイズを親文字に対する比率で指定 */
  transform: scale(0.3);
  /* 100%を越える部分が親文字とルビとのスペースになる。単位は親文字に対する比率 */
  bottom: 86%;
  /* デバッグ用 */
  /* background-color: rgba(255, 0, 0, 0.2); */
}

[data-ruby]::before {
  content: attr(data-ruby);
  position: absolute;
  line-height: 100%;
  text-align: center;
  left: -3em;
  right: -3em;
  transform-origin: bottom center;
  /* ルビの文字サイズを親文字に対する比率で指定 */
  transform: scale(0.5);
  /* 100%を越える部分が親文字とルビとのスペースになる。単位は親文字に対する比率 */
  bottom: 83%;
  /* ルビの文字間隔を調整 */
  letter-spacing: -3px;
  /* デバッグ用 */
  /* background-color: rgba(255, 0, 0, 0.2); */
}

#modal-slide,
#modal-movie {
  transform: translateY(-100%);
  opacity: 0;
  transition: 0.5s;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  display: grid;
  justify-items: center;
  justify-content: center;
  align-items: center;
}
#modal-slide.show,
#modal-movie.show {
  transform: translateY(0%);
  opacity: 1;
}
#modal-slide .modal-background,
#modal-movie .modal-background {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#modal-slide .modal-window,
#modal-movie .modal-window {
  width: 95vw;
  max-width: 1000px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background-color: #fff;
  border-radius: 2.25rem;
  scroll-snap-type: x mandatory;
  display: grid;
  grid-template-columns: 5em 1fr 5em;
  grid-template-rows: 4em 1fr 2.5rem;
  grid-template-areas: " .... .... close" " prev wrap next" " prev btn next";
}
@media screen and (max-width: 750px) {
  #modal-slide .modal-window,
#modal-movie .modal-window {
    grid-template-columns: 2em 1fr 2em;
    grid-template-rows: 2em 1fr 1.5em;
    border-radius: 1rem;
  }
}
@media screen and (max-width: 520px) {
  #modal-slide .modal-window,
#modal-movie .modal-window {
    height: 70vh;
    aspect-ratio: 16/7;
    grid-template-columns: 2em 1fr 2em;
    grid-template-rows: 2em 1fr 1.5em;
    border-radius: 1rem;
  }
}
#modal-slide .modal-window .modal-btn-close,
#modal-movie .modal-window .modal-btn-close {
  grid-area: close;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
#modal-slide .modal-window .modal-btn-close i,
#modal-movie .modal-window .modal-btn-close i {
  font-size: 3rem;
  color: #afafaf;
  transition: 0.5s;
}
@media screen and (max-width: 750px) {
  #modal-slide .modal-window .modal-btn-close i,
#modal-movie .modal-window .modal-btn-close i {
    font-size: 1.5rem;
  }
}
@media screen and (max-height: 520px) {
  #modal-slide .modal-window .modal-btn-close i,
#modal-movie .modal-window .modal-btn-close i {
    font-size: 1.5rem;
  }
}
#modal-slide .modal-window .modal-btn-close:hover i,
#modal-movie .modal-window .modal-btn-close:hover i {
  color: #ff5f5f;
}
#modal-slide .modal-window .modal-slide-wrapper,
#modal-movie .modal-window .modal-slide-wrapper {
  grid-area: wrap;
  display: flex;
  overflow: hidden;
  /*             scroll-behavior: smooth; */
}
#modal-slide .modal-window .modal-slide-wrapper.initialize,
#modal-movie .modal-window .modal-slide-wrapper.initialize {
  scroll-behavior: unset;
}
#modal-slide .modal-window .modal-slide-wrapper .modal-slide,
#modal-movie .modal-window .modal-slide-wrapper .modal-slide {
  display: grid;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  grid-template-columns: 2.5rem 1fr 2.5rem;
  grid-template-rows: 66% minmax(0, 1fr);
  grid-template-areas: "... img ..." "text text text";
}
@media screen and (max-width: 520px) {
  #modal-slide .modal-window .modal-slide-wrapper .modal-slide,
#modal-movie .modal-window .modal-slide-wrapper .modal-slide {
    grid-template-rows: 40% minmax(0, 1fr);
    grid-template-areas: "img img img" "text text text";
  }
}
#modal-slide .modal-window .modal-slide-wrapper .modal-slide .modal-slide-img,
#modal-movie .modal-window .modal-slide-wrapper .modal-slide .modal-slide-img {
  grid-area: img;
  display: flex;
  justify-items: center;
  align-items: center;
}
#modal-slide .modal-window .modal-slide-wrapper .modal-slide .modal-slide-img img,
#modal-movie .modal-window .modal-slide-wrapper .modal-slide .modal-slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#modal-slide .modal-window .modal-slide-wrapper .modal-slide .modal-slide-img img[lazy=loading],
#modal-movie .modal-window .modal-slide-wrapper .modal-slide .modal-slide-img img[lazy=loading] {
  width: auto;
  max-width: 100%;
  height: auto;
  margin: auto;
}
#modal-slide .modal-window .modal-slide-wrapper .modal-slide .modal-slide-img img[lazy=error],
#modal-movie .modal-window .modal-slide-wrapper .modal-slide .modal-slide-img img[lazy=error] {
  width: auto;
  max-width: 100%;
  height: auto;
  margin: auto;
}
#modal-slide .modal-window .modal-slide-wrapper .modal-slide .modal-slide-text,
#modal-movie .modal-window .modal-slide-wrapper .modal-slide .modal-slide-text {
  font-family: "Zen_Kaku_Gothic_New";
  grid-area: text;
  background-color: #ffffff;
  padding: 1em;
  margin: 0;
  line-height: 190%;
  font-size: 1.4rem;
  overflow-y: auto;
}
#modal-slide .modal-window .modal-slide-wrapper .modal-slide .modal-slide-text::-webkit-scrollbar,
#modal-movie .modal-window .modal-slide-wrapper .modal-slide .modal-slide-text::-webkit-scrollbar {
  width: 10px;
  height: 0;
}
#modal-slide .modal-window .modal-slide-wrapper .modal-slide .modal-slide-text::-webkit-scrollbar-track,
#modal-movie .modal-window .modal-slide-wrapper .modal-slide .modal-slide-text::-webkit-scrollbar-track {
  background-color: #f2f3f3;
}
#modal-slide .modal-window .modal-slide-wrapper .modal-slide .modal-slide-text::-webkit-scrollbar-thumb,
#modal-movie .modal-window .modal-slide-wrapper .modal-slide .modal-slide-text::-webkit-scrollbar-thumb {
  background-color: #648dbf;
}
@media screen and (max-width: 750px) {
  #modal-slide .modal-window .modal-slide-wrapper .modal-slide .modal-slide-text,
#modal-movie .modal-window .modal-slide-wrapper .modal-slide .modal-slide-text {
    font-size: 1rem;
  }
}
#modal-slide .modal-window .modal-btn-prev,
#modal-movie .modal-window .modal-btn-prev {
  grid-area: prev;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
#modal-slide .modal-window .modal-btn-prev i,
#modal-movie .modal-window .modal-btn-prev i {
  font-size: 5rem;
  color: #afafaf;
  transition: 0.5s;
  margin-bottom: 1em;
}
@media screen and (max-width: 750px) {
  #modal-slide .modal-window .modal-btn-prev i,
#modal-movie .modal-window .modal-btn-prev i {
    font-size: 1.5rem;
  }
}
@media screen and (max-height: 520px) {
  #modal-slide .modal-window .modal-btn-prev i,
#modal-movie .modal-window .modal-btn-prev i {
    font-size: 1.5rem;
  }
}
#modal-slide .modal-window .modal-btn-prev:hover i,
#modal-movie .modal-window .modal-btn-prev:hover i {
  color: #7c7c7c;
}
#modal-slide .modal-window .modal-btn-prev.hide,
#modal-movie .modal-window .modal-btn-prev.hide {
  display: none;
}
#modal-slide .modal-window .modal-btn-next,
#modal-movie .modal-window .modal-btn-next {
  grid-area: next;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
#modal-slide .modal-window .modal-btn-next i,
#modal-movie .modal-window .modal-btn-next i {
  font-size: 5rem;
  color: #afafaf;
  margin-bottom: 1em;
  transition: 0.5s;
}
@media screen and (max-width: 750px) {
  #modal-slide .modal-window .modal-btn-next i,
#modal-movie .modal-window .modal-btn-next i {
    font-size: 1.5rem;
  }
}
@media screen and (max-height: 520px) {
  #modal-slide .modal-window .modal-btn-next i,
#modal-movie .modal-window .modal-btn-next i {
    font-size: 1.5rem;
  }
}
#modal-slide .modal-window .modal-btn-next:hover i,
#modal-movie .modal-window .modal-btn-next:hover i {
  color: #7c7c7c;
}
#modal-slide .modal-window .modal-btn-next.hide,
#modal-movie .modal-window .modal-btn-next.hide {
  display: none;
}
#modal-slide .modal-window .modal-posbtn-wrapper,
#modal-movie .modal-window .modal-posbtn-wrapper {
  grid-area: btn;
  display: grid;
  grid-template-columns: repeat(auto-fit, 1.5rem);
  justify-content: center;
  justify-items: center;
  align-items: center;
}
@media screen and (max-width: 520px) {
  #modal-slide .modal-window .modal-posbtn-wrapper,
#modal-movie .modal-window .modal-posbtn-wrapper {
    grid-template-columns: repeat(auto-fit, 1rem);
  }
}
#modal-slide .modal-window .modal-posbtn-wrapper div,
#modal-movie .modal-window .modal-posbtn-wrapper div {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  border: 1px solid #afafaf;
  transition: 0.25s;
  cursor: pointer;
}
@media screen and (max-width: 520px) {
  #modal-slide .modal-window .modal-posbtn-wrapper div,
#modal-movie .modal-window .modal-posbtn-wrapper div {
    width: 0.5rem;
    height: 0.5rem;
  }
}
#modal-slide .modal-window .modal-posbtn-wrapper div.active,
#modal-movie .modal-window .modal-posbtn-wrapper div.active {
  background-color: #afafaf;
  width: 1rem;
  height: 1rem;
}
@media screen and (max-width: 520px) {
  #modal-slide .modal-window .modal-posbtn-wrapper div.active,
#modal-movie .modal-window .modal-posbtn-wrapper div.active {
    width: 0.75rem;
    height: 0.75rem;
  }
}
#modal-slide .video-js,
#modal-movie .video-js {
  max-width: 75vw;
  height: auto;
  width: 100vw;
  aspect-ratio: 16/9;
  background-color: transparent;
}
#modal-slide .vjs-picture-in-picture-control,
#modal-movie .vjs-picture-in-picture-control {
  display: none !important;
}
#modal-slide .vjs-big-play-button,
#modal-movie .vjs-big-play-button {
  font-size: 4.5em !important;
}
#modal-slide .vjs-control-bar,
#modal-movie .vjs-control-bar {
  font-size: 18px;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

[v-cloak] {
  display: none;
}

body {
  margin: 0;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
body .right-sub {
  text-align: right;
  margin-right: 4rem;
  color: #5e5e5e;
}
@media screen and (max-width: 750px) {
  body .right-sub {
    margin-right: 3rem;
  }
}
@media screen and (max-width: 520px) {
  body .right-sub {
    margin: 0 18px;
  }
}
body .mgtp-m {
  margin-top: 0.5rem;
}
body .mgbm-d {
  margin-bottom: 2.25rem;
}
body:hover {
  cursor: default;
}
body .main-page {
  display: flex;
  width: 100%;
  background-color: #fffff4;
}
@media screen and (max-width: 520px) {
  body .main-page {
    display: block;
  }
}
body .select-page {
  background-color: #d8ceb2;
  border-left: 5px solid #9e8d61;
  border-top: 5px solid #9e8d61;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 1.25rem;
  overflow: hidden;
}
body .select-page .blackboard {
  width: 100%;
  padding-left: 2.25rem;
  padding-right: 2.25rem;
}
@media screen and (max-width: 520px) {
  body .select-page .blackboard {
    padding-left: 0.25em;
    padding-right: 0.25em;
  }
}
body footer {
  display: block;
  text-align: right;
}
body footer small.copy-right {
  color: #959f9d;
}
/*# sourceMappingURL=index.css.map */