@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
html,
body,
body div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
figure,
footer,
header,
menu,
nav,
section,
time,
mark,
audio,
video,
details,
summary {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

article,
aside,
figure,
footer,
header,
nav,
section,
details,
summary {
  display: block;
}

/* Handle box-sizing while better addressing child elements:
   http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

/* consider resetting the default cursor: https://gist.github.com/murtaugh/5247154 */
/* Responsive images and other embedded objects */
/* if you don't have full control over `img` tags (if you have to overcome attributes), consider adding height: auto */
img,
object,
embed {
  max-width: 100%;
}

/*
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
	In fact, it *will* cause problems with Google Maps' controls at small size.
	If this is the case for you, try uncommenting the following:

#map img {
		max-width: none;
}
*/
/* force a vertical scrollbar to prevent a jumpy page */
html {
  overflow-y: scroll;
}

/* we use a lot of ULs that aren't bulleted.
	you'll have to restore the bullets within content,
	which is fine because they're probably customized anyway */
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

/* tables still need cellspacing="0" in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  font-weight: bold;
  vertical-align: bottom;
}

td {
  font-weight: normal;
  vertical-align: top;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

pre {
  white-space: pre;
  /* CSS2 */
  white-space: pre-wrap;
  /* CSS 2.1 */
  white-space: pre-line;
  /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}

input[type=radio] {
  vertical-align: text-bottom;
}

input[type=checkbox] {
  vertical-align: bottom;
}

.ie7 input[type=checkbox] {
  vertical-align: baseline;
}

.ie6 input {
  vertical-align: text-bottom;
}

select,
input,
textarea {
  font: 99% sans-serif;
}

table {
  font-size: inherit;
  font: 100%;
}

small {
  font-size: 85%;
}

strong {
  font-weight: bold;
}

td,
td img {
  vertical-align: top;
}

/* Make sure sup and sub don't mess with your line-heights http://gist.github.com/413930 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* standardize any monospaced elements */
pre,
code,
kbd,
samp {
  font-family: monospace, sans-serif;
}

/* hand cursor on clickable elements */
.clickable,
label,
input[type=button],
input[type=submit],
input[type=file],
button {
  cursor: pointer;
}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button,
input,
select,
textarea {
  margin: 0;
}

/* make buttons play nice in IE */
button,
input[type=button] {
  width: auto;
  overflow: visible;
}

/* scale images in IE7 more attractively */
.ie7 img {
  -ms-interpolation-mode: bicubic;
}

/* prevent BG image flicker upon hover
   (commented out as usage is rare, and the filter syntax messes with some pre-processors)
.ie6 html {filter: expression(document.execCommand("BackgroundImageCache", false, true));}
*/
/* let's clear some floats */
.clearfix:before,
.clearfix:after {
  content: " ";
  display: block;
  height: 0;
  overflow: hidden;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

/* -------------------------------- */
@font-face {
  font-family: "MOBO-Bold";
  src: url("../fonts/MOBO-Bold.woff2") format("woff2"), url("../fonts/MOBO-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
html,
body {
  -webkit-text-size-adjust: 100%;
}

html {
  font-size: 62.5%;
}
html.modal-open {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  html.modal-open {
    height: 100%;
  }
}

body {
  color: #333333;
  margin: 0 auto;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 14px;
  font-size: 1.4rem;
  background-color: #004097;
  font-feature-settings: "palt";
}
.modal-open body {
  overflow: hidden;
  height: 100%;
}

.pc-br {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc-br {
    display: none;
  }
}

.sp-br {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-br {
    display: block;
  }
}

.header {
  height: 80px;
  background-color: #ffffff;
}
@media screen and (max-width: 768px) {
  .header {
    height: 65px;
  }
}

.header-inner {
  height: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .header-inner {
    padding: 0 12px;
  }
}

.header-logo {
  width: 111px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .header-logo {
    width: 96px;
  }
}
@media screen and (max-width: 360px) {
  .header-logo {
    width: 86px;
  }
}
.header-logo img {
  width: 106px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .header-logo img {
    width: 96px;
  }
}
@media screen and (max-width: 360px) {
  .header-logo img {
    width: 86px;
  }
}

.header-links {
  display: flex;
  align-items: center;
  height: 100%;
}

.header-links-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .header-links-inner {
    gap: 8px;
  }
}
.header-links-inner a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 40px;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  border-radius: 9999px;
  background-image: url("../img/header-aw.svg");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 8px auto;
}
@media screen and (max-width: 768px) {
  .header-links-inner a {
    font-size: 1.2rem;
    width: 105px;
    height: 37px;
    background-position: right 9px center;
    background-size: 6px auto;
  }
}
@media screen and (max-width: 360px) {
  .header-links-inner a {
    font-size: 1rem;
    width: 88px;
    height: 34px;
  }
}
.header-links-inner a.cg {
  background-color: #70d243;
  border: 1px solid #70d243;
}
@media (any-hover: hover) {
  .header-links-inner a.cg:hover {
    background-color: #fff;
    color: #70d243;
    background-image: url("../img/header-aw-cg.svg");
  }
}
.header-links-inner a.co {
  background-color: #ff5b33;
  border: 1px solid #ff5b33;
}
@media (any-hover: hover) {
  .header-links-inner a.co:hover {
    background-color: #fff;
    color: #ff5b33;
    background-image: url("../img/header-aw-co.svg");
  }
}

.kv {
  background-color: #7fd856;
}
.kv img {
  width: 100%;
  height: auto;
  pointer-events: none;
}

.about {
  padding: 100px 20px 0 20px;
  background-color: #7fd856;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .about {
    padding: 50px 7vw 0 7vw;
  }
}

.about-main {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 20px;
  background-color: #fff;
  background-image: url("../img/bg-graphpaper.png");
  background-size: 40px auto;
  background-repeat: repeat;
  filter: drop-shadow(0 0 34px rgba(31, 59, 34, 0.15));
  position: relative;
  z-index: 1;
  border-radius: 10px;
}

.about-main-inner {
  padding-top: 80px;
  padding-bottom: 40px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .about-main-inner {
    padding-top: 40px;
    padding-bottom: 30px;
  }
}

.about-main-title {
  text-align: center;
}
.about-main-title img {
  width: 48.2%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .about-main-title img {
    width: 75.7%;
  }
}

.about-main-text {
  color: #3c3c3d;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  font-family: "MOBO-Bold", sans-serif;
  line-height: 2.1;
}
@media screen and (max-width: 950px) {
  .about-main-text {
    font-size: 2rem;
  }
}
@media screen and (max-width: 850px) {
  .about-main-text {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .about-main-text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 400px) {
  .about-main-text {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 360px) {
  .about-main-text {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 340px) {
  .about-main-text {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 320px) {
  .about-main-text {
    font-size: 1.2rem;
  }
}
.about-main-text.first {
  margin-top: 55px;
}
@media screen and (max-width: 768px) {
  .about-main-text.first {
    margin-top: 30px;
  }
}
.about-main-text.second {
  margin-top: 30px;
  line-height: 2.5;
}
@media screen and (max-width: 768px) {
  .about-main-text.second {
    margin-top: 10px;
  }
}
.about-main-text .underline {
  font-weight: 700;
  font-family: "MOBO-Bold", sans-serif;
  display: inline-block;
  position: relative;
  z-index: 2;
}
.about-main-text .underline.line1:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 20%;
  left: -2%;
  width: 103%;
  height: 59%;
  background-image: url("../img/underline-1.svg");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0% auto;
  z-index: -1;
}
.inview .about-main-text .underline.line1:after {
  background-size: 100% auto;
  transition: all 1s ease-in-out 0.3s;
}
.about-main-text .underline.line2:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 20%;
  left: -2%;
  width: 103%;
  height: 59%;
  background-image: url("../img/underline-2.svg");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0% auto;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .about-main-text .underline.line2:after {
    display: none;
  }
}
.inview .about-main-text .underline.line2:after {
  background-size: 100% auto;
  transition: all 1.2s ease-in-out 1s;
}
.about-main-text .underline.line3:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 20%;
  left: 0%;
  width: 100%;
  height: 59%;
  background-image: url("../img/underline-3.svg");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0% auto;
  z-index: -1;
}
.inview .about-main-text .underline.line3:after {
  background-size: 100% auto;
  transition: all 1s ease-in-out 1.5s;
}
.about-main-text .underline.sp-line21:after {
  content: "";
  display: none;
  position: absolute;
  bottom: 16%;
  left: -2%;
  width: 103%;
  height: 59%;
  background-image: url("../img/underline-sp-21.svg");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0% auto;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .about-main-text .underline.sp-line21:after {
    display: block;
  }
}
.inview .about-main-text .underline.sp-line21:after {
  background-size: 100% auto;
  transition: all 1s ease-in-out 1s;
}
.about-main-text .underline.sp-line22:after {
  content: "";
  display: none;
  position: absolute;
  bottom: 16%;
  left: -2%;
  width: 103%;
  height: 59%;
  background-image: url("../img/underline-sp-22.svg");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0% auto;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .about-main-text .underline.sp-line22:after {
    display: block;
  }
}
.inview .about-main-text .underline.sp-line22:after {
  background-size: 100% auto;
  transition: all 1s ease-in-out 1.2s;
}
.about-main-text .overline {
  font-weight: 700;
  font-family: "MOBO-Bold", sans-serif;
  display: inline-block;
  position: relative;
  z-index: 2;
}
.about-main-text .overline:after {
  content: "";
  display: block;
  position: absolute;
  top: 12%;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/overline-1.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 92% auto;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .about-main-text .overline:after {
    top: 8%;
    left: -0.8%;
    background-size: 98.4% auto;
  }
}
.about-main-text .over-t {
  font-weight: 700;
  font-family: "MOBO-Bold", sans-serif;
  display: inline-block;
  position: relative;
  z-index: 2;
}
.about-main-text .over-t.t1:after {
  content: "";
  display: block;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background-image: url("../img/over-t1.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  z-index: -1;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .about-main-text .over-t.t1:after {
    top: 5%;
  }
}
.inview .about-main-text .over-t.t1:after {
  opacity: 1;
  transition: all 0.5s linear 2.5s;
}
.about-main-text .over-t.t2:after {
  content: "";
  display: block;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 6px;
  background-image: url("../img/over-t2.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  z-index: -1;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .about-main-text .over-t.t2:after {
    top: 5%;
  }
}
.inview .about-main-text .over-t.t2:after {
  opacity: 1;
  transition: all 0.5s linear 2.5s;
}
.about-main-text .over-t.t3:after {
  content: "";
  display: block;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background-image: url("../img/over-t3.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  z-index: -1;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .about-main-text .over-t.t3:after {
    top: 5%;
  }
}
.inview .about-main-text .over-t.t3:after {
  opacity: 1;
  transition: all 0.5s linear 2.5s;
}
.about-main-text .over-t.t4:after {
  content: "";
  display: block;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background-image: url("../img/over-t4.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  z-index: -1;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .about-main-text .over-t.t4:after {
    top: 5%;
  }
}
.inview .about-main-text .over-t.t4:after {
  opacity: 1;
  transition: all 0.5s linear 2.5s;
}
.about-main-text .over-t.t5:after {
  content: "";
  display: block;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 5px;
  background-image: url("../img/over-t5.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  z-index: -1;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .about-main-text .over-t.t5:after {
    top: 5%;
  }
}
.inview .about-main-text .over-t.t5:after {
  opacity: 1;
  transition: all 0.5s linear 2.5s;
}
.about-main-text .over-t.t6:after {
  content: "";
  display: block;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 5px;
  background-image: url("../img/over-t6.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  z-index: -1;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .about-main-text .over-t.t6:after {
    top: 5%;
  }
}
.inview .about-main-text .over-t.t6:after {
  opacity: 1;
  transition: all 0.5s linear 2.5s;
}
.about-main-text .over-t.t7:after {
  content: "";
  display: block;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background-image: url("../img/over-t7.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  z-index: -1;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .about-main-text .over-t.t7:after {
    top: 5%;
  }
}
.inview .about-main-text .over-t.t7:after {
  opacity: 1;
  transition: all 0.5s linear 2.5s;
}
.about-main-text .over-t.t8:after {
  content: "";
  display: block;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 5px;
  background-image: url("../img/over-t8.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  z-index: -1;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .about-main-text .over-t.t8:after {
    top: 5%;
  }
}
.inview .about-main-text .over-t.t8:after {
  opacity: 1;
  transition: all 0.5s linear 2.5s;
}
.about-main-text .over-t.t9:after {
  content: "";
  display: block;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 6px;
  background-image: url("../img/over-t9.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  z-index: -1;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .about-main-text .over-t.t9:after {
    top: 5%;
  }
}
.inview .about-main-text .over-t.t9:after {
  opacity: 1;
  transition: all 0.5s linear 2.5s;
}

.about-dec-pen1 {
  position: absolute;
  top: 6.5%;
  left: -25.5%;
  width: 46.7%;
  height: auto;
  z-index: 2;
  transform: rotate(163.03deg);
  transform-origin: center center;
}
@media screen and (max-width: 768px) {
  .about-dec-pen1 {
    top: 22%;
    left: -38%;
    width: 55.4%;
    transform: rotate(165.67deg);
  }
}
.about-dec-pen1 img {
  width: 100%;
  height: auto;
  pointer-events: none;
}

.about-dec-pen2 {
  position: absolute;
  top: 18%;
  right: -3.3%;
  width: 8%;
  height: auto;
  z-index: 3;
  transform: rotate(13.09deg);
  transform-origin: center center;
}
@media screen and (max-width: 768px) {
  .about-dec-pen2 {
    top: 32%;
    right: -2.5%;
    width: 11%;
    transform: rotate(19deg);
  }
}
.about-dec-pen2 img {
  width: 100%;
  height: auto;
  pointer-events: none;
}

.about-dec-sp-sticky {
  display: none;
}
@media screen and (max-width: 768px) {
  .about-dec-sp-sticky {
    display: block;
    overflow: hidden;
    height: 22vw;
  }
  .about-dec-sp-sticky img {
    bottom: -53%;
    left: 50%;
    width: 83%;
    height: auto;
    pointer-events: none;
    position: relative;
    transform: translate(-50%, -50%);
  }
}

.about-dec-sticky {
  position: absolute;
  top: -4%;
  right: -5%;
  width: 23.9%;
  height: auto;
  z-index: 4;
  transform: rotate(10.96deg);
  transform-origin: center center;
}
@media screen and (max-width: 768px) {
  .about-dec-sticky {
    display: none;
  }
}
.about-dec-sticky img {
  width: 100%;
  height: auto;
  pointer-events: none;
}

.about-dec-qlip {
  position: absolute;
  top: -6.2%;
  right: 14.5%;
  width: 6.2%;
  height: auto;
  z-index: 5;
  transform-origin: center center;
}
@media screen and (max-width: 768px) {
  .about-dec-qlip {
    top: -4.8%;
    right: 5%;
    width: 12%;
  }
}
.about-dec-qlip img {
  width: 100%;
  height: auto;
  pointer-events: none;
}

.about-dec-qlip2 {
  position: absolute;
  top: -8px;
  left: -49px;
  width: 96px;
  height: auto;
  z-index: 3;
  transform-origin: center center;
}
@media screen and (max-width: 768px) {
  .about-dec-qlip2 {
    top: -2%;
    left: -16%;
    width: 30%;
  }
}
.about-dec-qlip2 img {
  width: 100%;
  height: auto;
  pointer-events: none;
}

.about-desc {
  margin: 42px 35px 0 35px;
  display: flex;
  align-items: stretch;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about-desc {
    flex-direction: column;
    margin: 30px 9% 0 9%;
  }
}

.about-desc-ttl {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: "MOBO-Bold", sans-serif;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #32baee;
  width: 34.2%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about-desc-ttl {
    font-size: 1.6rem;
    line-height: 2.1;
    justify-content: center;
    padding: 18px 0;
    width: 100%;
  }
}

.about-desc-desc {
  width: 65.8%;
  padding: 30px 25px;
  color: #3c3c3d;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.7;
  text-align: left;
  background-color: #c3e5f2;
}
@media screen and (max-width: 768px) {
  .about-desc-desc {
    font-size: 1.4rem;
    padding: 15px 15px;
    width: 100%;
  }
}
@media screen and (max-width: 360px) {
  .about-desc-desc {
    font-size: 1.3rem;
    padding: 10px;
  }
}

.movie {
  background-color: #7fd856;
  padding: 80px 20px 100px 20px;
}
@media screen and (max-width: 768px) {
  .movie {
    padding: 50px 7vw 60px 7vw;
  }
}

.human-school-ttl {
  text-align: center;
}
.human-school-ttl img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .human-school-ttl img {
    width: 90%;
    max-width: 350px;
  }
}

.human-school-subttl {
  text-align: center;
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  font-family: "MOBO-Bold", sans-serif;
  line-height: 1.7;
  margin-top: 14px;
}
@media screen and (max-width: 768px) {
  .human-school-subttl {
    font-size: 2rem;
    margin-top: 12px;
  }
}
@media screen and (max-width: 480px) {
  .human-school-subttl {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 360px) {
  .human-school-subttl {
    font-size: 1.6rem;
  }
}

.human-school-movie {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .human-school-movie {
    margin-top: 35px;
  }
}

.movie-item {
  max-width: 600px;
  margin: 0 auto;
}
.movie-item a {
  position: relative;
  text-decoration: none;
  display: block;
  z-index: 1;
}
.movie-item a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/movie-ico.svg");
  background-repeat: no-repeat;
  background-position: center 42%;
  background-size: 13.3% auto;
  z-index: 2;
}
.movie-item a .movie-item-img {
  width: 100%;
  border-radius: 10px;
  border: 3px solid #fff;
  padding: 9px;
  transition: all 0.3s linear;
}
@media screen and (max-width: 768px) {
  .movie-item a .movie-item-img {
    padding: 4px;
  }
}
.movie-item a .movie-item-img img {
  width: 100%;
  height: auto;
}
.movie-item a .movie-item-ttl {
  margin-top: 13px;
  text-align: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  font-family: "MOBO-Bold", sans-serif;
  line-height: 1.7;
  transition: all 0.3s linear;
}
@media screen and (max-width: 768px) {
  .movie-item a .movie-item-ttl {
    font-size: 1.6rem;
    margin-top: 10px;
  }
}
@media (any-hover: hover) {
  .movie-item a:hover .movie-item-img {
    border-color: #ff5b33;
  }
  .movie-item a:hover .movie-item-ttl {
    color: #ff5b33;
  }
  .movie-item a:hover:after {
    background-image: url("../img/movie-ico-o.svg");
  }
}

.human-movie {
  margin: 60px auto 0 auto;
  max-width: 1000px;
  background-color: #f4f4f4;
  border-radius: 20px;
  padding: 50px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .human-movie {
    margin: 35px auto 0 auto;
    flex-direction: column;
    gap: 12px;
    padding: 15px;
    border-radius: 10px;
  }
}

.human-movie-list {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .human-movie-list {
    gap: 10px;
  }
}

@media screen and (max-width: 768px) {
  .human-movie-ttl {
    width: 100%;
  }
}

.human-movie-ttl-ttl {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .human-movie-ttl-ttl {
    width: 100%;
    height: auto;
    border-radius: 0;
    padding: 20px 0;
  }
}
.human-movie-ttl-ttl img {
  width: 74%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .human-movie-ttl-ttl img {
    width: 49%;
  }
}

.human-movie-item a {
  display: block;
  text-decoration: none;
}
.human-movie-item a .human-movie-item-img {
  background-color: #fff;
}
.human-movie-item a .human-movie-item-img img {
  width: 100%;
  height: auto;
  transition: all 0.3s linear;
  display: block;
}
.human-movie-item a .human-movie-item-ttl {
  margin-top: 14px;
  text-align: left;
  color: #3c3c3d;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  padding-right: 14px;
  background-image: url("../img/human-movie-aw.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 6px auto;
  display: inline-block;
  transition: all 0.3s linear;
}
@media screen and (max-width: 768px) {
  .human-movie-item a .human-movie-item-ttl {
    font-size: 1.5rem;
    margin-top: 10px;
    padding-right: 11px;
    background-size: 4px auto;
  }
}
@media screen and (max-width: 360px) {
  .human-movie-item a .human-movie-item-ttl {
    font-size: 1.3rem;
  }
}
@media (any-hover: hover) {
  .human-movie-item a:hover .human-movie-item-img img {
    opacity: 0.7;
  }
  .human-movie-item a:hover .human-movie-item-ttl {
    color: #ff5b33;
    background-image: url("../img/human-movie-aw-o.svg");
    padding-right: 16px;
  }
}

.cast {
  background-color: #fff;
  background-image: url("../img/bg-graphpaper.png");
  background-size: 40px auto;
  background-repeat: repeat;
  padding: 0 20px 0 20px;
}
@media screen and (max-width: 768px) {
  .cast {
    padding: 0 7vw 0 7vw;
  }
}

.cast-inner {
  padding: 80px 0 140px 0;
}
@media screen and (max-width: 768px) {
  .cast-inner {
    padding: 60px 0 84px 0;
  }
}

.cast-ttl {
  text-align: center;
}
.cast-ttl > h2 img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .cast-ttl > h2 img {
    width: 90%;
    max-width: 350px;
  }
}
.cast-ttl > p {
  color: #ff5b33;
  text-align: center;
  font-family: "MOBO-Bold", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.7;
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .cast-ttl > p {
    font-size: 2rem;
  }
}

.cast-list {
  margin: 56px auto 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  width: 1370px;
}
@media screen and (max-width: 1400px) {
  .cast-list {
    width: 1028px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 1050px) {
  .cast-list {
    width: 674px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .cast-list {
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    margin: 30px auto 0 auto;
  }
}

.cast-list-ttl {
  width: 320px;
  aspect-ratio: 320/462;
  background-color: #ff5b33;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  font-family: "MOBO-Bold", sans-serif;
  text-align: center;
  line-height: 1.2;
  background-image: url("../img/cast-ttl-bg-top.svg"), url("../img/cast-ttl-bg-bottom.svg");
  background-repeat: no-repeat, no-repeat;
  background-position: top right, bottom left;
  background-size: 59% auto, 59% auto;
}
@media screen and (max-width: 768px) {
  .cast-list-ttl {
    width: 100%;
    aspect-ratio: 320/214;
    background-size: 34% auto, 34% auto;
  }
}

.cast-list-item-position {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  font-size: 1.3rem;
  font-weight: 700;
  font-family: "MOBO-Bold", sans-serif;
  line-height: 1.7;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 360px) {
  .cast-list-item-position {
    font-size: 1.2rem;
  }
}
.cast-list-item-position.fs {
  font-size: 1.2rem;
}
@media screen and (max-width: 360px) {
  .cast-list-item-position.fs {
    font-size: 1.1rem;
  }
}

.cast-list-item-name {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: "MOBO-Bold", sans-serif;
  line-height: 1.7;
  letter-spacing: -0.02em;
}
.cast-list-item-name.fs {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .cast-list-item-name.fs {
    font-size: 1.8rem;
  }
}

.cast-list-item {
  background-color: #fff;
  border-radius: 20px;
  padding: 5.3% 5.3% 5.3% 5.3%;
}
.cast-list-item.c1 {
  border: 4px solid #2a39d2;
}
.cast-list-item.c1 .cast-list-item-position {
  color: #2a39d2;
}
.cast-list-item.c1 .cast-list-item-name {
  color: #2a39d2;
}
.cast-list-item.c2 {
  border: 4px solid #bd8d3b;
}
.cast-list-item.c2 .cast-list-item-position {
  color: #bd8d3b;
}
.cast-list-item.c2 .cast-list-item-name {
  color: #bd8d3b;
}
.cast-list-item.c3 {
  border: 4px solid #ff8a00;
}
.cast-list-item.c3 .cast-list-item-position {
  color: #ff8a00;
}
.cast-list-item.c3 .cast-list-item-name {
  color: #ff8a00;
}
.cast-list-item.c4 {
  border: 4px solid #8b5cf6;
}
.cast-list-item.c4 .cast-list-item-position {
  color: #8b5cf6;
}
.cast-list-item.c4 .cast-list-item-name {
  color: #8b5cf6;
}
.cast-list-item.c5 {
  border: 4px solid #ff4fa3;
}
.cast-list-item.c5 .cast-list-item-position {
  color: #ff4fa3;
}
.cast-list-item.c5 .cast-list-item-name {
  color: #ff4fa3;
}
.cast-list-item.c6 {
  border: 4px solid #39a7ff;
}
.cast-list-item.c6 .cast-list-item-position {
  color: #39a7ff;
}
.cast-list-item.c6 .cast-list-item-name {
  color: #39a7ff;
}
.cast-list-item.c7 {
  border: 4px solid #ff7d8a;
}
.cast-list-item.c7 .cast-list-item-position {
  color: #ff7d8a;
}
.cast-list-item.c7 .cast-list-item-name {
  color: #ff7d8a;
}
.cast-list-item.c8 {
  border: 4px solid #f1ae00;
}
.cast-list-item.c8 .cast-list-item-position {
  color: #f1ae00;
}
.cast-list-item.c8 .cast-list-item-name {
  color: #f1ae00;
}
.cast-list-item.c9 {
  border: 4px solid #ff5a5f;
}
.cast-list-item.c9 .cast-list-item-position {
  color: #ff5a5f;
}
.cast-list-item.c9 .cast-list-item-name {
  color: #ff5a5f;
}
.cast-list-item.c10 {
  border: 4px solid #7fd856;
}
.cast-list-item.c10 .cast-list-item-position {
  color: #7fd856;
}
.cast-list-item.c10 .cast-list-item-name {
  color: #7fd856;
}
.cast-list-item.c11 {
  border: 4px solid #00aaeb;
}
.cast-list-item.c11 .cast-list-item-position {
  color: #00aaeb;
}
.cast-list-item.c11 .cast-list-item-name {
  color: #00aaeb;
}
.cast-list-item .cast-list-item-pic-img {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
}
.cast-list-item .cast-list-item-pic-img img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease-in-out;
}
.cast-list-item.inview .cast-list-item-pic-img img {
  opacity: 1;
  transform: translateY(0);
}

.cast-list-item-pic {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.cast-list-item-pic-bg {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  top: 0;
  left: 0;
}
.cast-list-item-pic-bg img {
  width: 100%;
  height: auto;
  display: block;
}

.cast-list-item-pic-dec {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
}
.cast-list-item-pic-dec img {
  width: 100%;
  height: auto;
  display: block;
}

.cast-list-item-desc {
  margin-top: 15px;
  padding: 0 2% 0 2%;
}

.cast-list-item-text {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 6px;
}

.cast-sp-links {
  display: none;
}
@media screen and (max-width: 768px) {
  .cast-sp-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px 4.3%;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.cast-sp-links .cast-sp-links-item {
  display: block;
  text-decoration: none;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.7;
  font-family: "MOBO-Bold", sans-serif;
  padding-bottom: 9px;
  background-size: 8px auto;
  background-repeat: no-repeat;
  background-position: center bottom;
}
@media screen and (max-width: 400px) {
  .cast-sp-links .cast-sp-links-item {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 360px) {
  .cast-sp-links .cast-sp-links-item {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 320px) {
  .cast-sp-links .cast-sp-links-item {
    font-size: 1rem;
  }
}
.cast-sp-links .cast-sp-links-item img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 6px;
}
.cast-sp-links .cast-sp-links-item.c1 {
  color: #2a39d2;
  background-image: url("../img/cast-sp-link-aw-c1.svg");
}
.cast-sp-links .cast-sp-links-item.c2 {
  color: #bd8d3b;
  background-image: url("../img/cast-sp-link-aw-c2.svg");
}
.cast-sp-links .cast-sp-links-item.c3 {
  color: #ff8a00;
  background-image: url("../img/cast-sp-link-aw-c3.svg");
}
.cast-sp-links .cast-sp-links-item.c4 {
  color: #8b5cf6;
  background-image: url("../img/cast-sp-link-aw-c4.svg");
}
.cast-sp-links .cast-sp-links-item.c5 {
  color: #ff4fa3;
  background-image: url("../img/cast-sp-link-aw-c5.svg");
}
.cast-sp-links .cast-sp-links-item.c6 {
  color: #39a7ff;
  background-image: url("../img/cast-sp-link-aw-c6.svg");
}
.cast-sp-links .cast-sp-links-item.c7 {
  color: #ff7d8a;
  background-image: url("../img/cast-sp-link-aw-c7.svg");
}
.cast-sp-links .cast-sp-links-item.c8 {
  color: #f1ae00;
  background-image: url("../img/cast-sp-link-aw-c8.svg");
}
.cast-sp-links .cast-sp-links-item.c9 {
  color: #ff5a5f;
  background-image: url("../img/cast-sp-link-aw-c9.svg");
}
.cast-sp-links .cast-sp-links-item.c10 {
  color: #7fd856;
  background-image: url("../img/cast-sp-link-aw-c10.svg");
}
.cast-sp-links .cast-sp-links-item.c11 {
  color: #00aaeb;
  background-image: url("../img/cast-sp-link-aw-c11.svg");
}

.footer {
  color: #fff;
  text-align: center;
  background-color: #004097;
  padding: 0 20px 0 20px;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 0 0 0 0;
  }
}

.footer-inner {
  padding: 100px 0 100px 0;
}
@media screen and (max-width: 768px) {
  .footer-inner {
    padding: 50px 0 50px 0;
  }
}

.footer-logo {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .footer-logo {
    margin-top: 40px;
  }
}
.footer-logo img {
  width: 118px;
  height: auto;
}

.footer-copyright {
  margin-top: 30px;
  font-size: 1.1rem;
}
@media screen and (max-width: 768px) {
  .footer-copyright {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 340px) {
  .footer-copyright {
    font-size: 0.7rem;
  }
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .footer-links {
    padding: 0 7vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
}
.footer-links img {
  width: 230px;
  height: auto;
  display: block;
  transition: all 0.3s linear;
}
@media screen and (max-width: 768px) {
  .footer-links img {
    width: 100%;
  }
}
.footer-links a {
  display: block;
  background-color: #fff;
  border-radius: 12px;
}
@media (any-hover: hover) {
  .footer-links a:hover img {
    opacity: 0.7;
  }
}

.mov-modal {
  top: 50%;
  left: 50%;
  width: 75vw;
  height: 42vw;
  position: fixed;
  box-shadow: 0px 4px 36px rgba(0, 64, 151, 0.5);
  transform: translate(-50%, -50%);
  z-index: 1000;
  display: none;
}
@media screen and (max-width: 768px) {
  .mov-modal {
    width: 89.3vw;
    height: 50.008vw;
    box-shadow: none;
  }
}
.mov-modal iframe {
  width: 100%;
  height: 100%;
}
.modal-open .mov-modal {
  display: block;
}

.mov-modal-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  position: fixed;
  z-index: 999;
  display: none;
}
.mov-modal-bg .mov-modal-close {
  top: 40px;
  right: 40px;
  width: 89px;
  position: absolute;
  z-index: 2;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .mov-modal-bg .mov-modal-close {
    top: 10px;
    right: 10px;
  }
}
.modal-open .mov-modal-bg {
  display: block;
}/*# sourceMappingURL=style.css.map */