@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
*,
::before,
::after {
  box-sizing: border-box;
}

* {
  font-size: inherit;
  line-height: inherit;
}

::before,
::after {
  display: inline-block;
  text-decoration: inherit;
  vertical-align: inherit;
}

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  background: #fff;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

footer,
header,
hgroup,
nav,
section {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden] {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

b,
strong {
  font-weight: bold;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
  vertical-align: bottom;
  max-width: 100%;
}

svg:not(:root) {
  overflow: hidden;
}

hr {
  box-sizing: content-box;
  height: 0;
}

*:not(input):not(select):not(button):not(textarea):not(label):focus {
  outline: none;
}

select {
  height: 30px;
  color: inherit;
  font: inherit;
  font-size: 14px !important;
  margin: 0;
  padding: 0 20px 0 5px;
  line-height: 1;
}

button,
input,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
  padding: 4px 6px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
}

input:not([type=checkbox]):not([type=radio]),
textarea,
button {
  -webkit-appearance: none;
}

input {
  padding: 0 6px;
}

input:focus,
textarea:focus {
  outline: none;
}

input[type=button],
input[type=submit] {
  background-color: transparent;
  border: none;
}

button {
  overflow: visible;
  background-color: transparent;
  border-radius: 0;
  border: none;
}

button,
select {
  text-transform: none;
}

button,
input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: none;
  cursor: pointer;
}

button[disabled],
input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

input[type=text],
select,
textarea {
  font-size: 100%;
}

input[type=text]:focus,
textarea:focus {
  transition: 0.2s;
}

input[type=text]:focus,
textarea:focus {
  border-color: rgba(82, 168, 236, 0.8);
  outline: 0;
  outline: thin dotted \9 ;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
}

textarea {
  overflow: auto;
  resize: vertical;
}

label {
  display: inline-block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
  text-align: left;
  vertical-align: top;
}

ol {
  list-style-position: inside;
}

li {
  list-style-type: none;
}

address {
  font-style: normal;
}

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
p,
table,
thead,
tbody,
tfoot,
address {
  margin: 0;
  padding: 0;
}

input,
textarea,
table,
thead,
tbody,
tfoot,
address {
  text-align: left;
}

div,
dl,
dt,
dd,
ul,
ol,
li,
form,
p {
  text-align: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: normal;
  font-weight: normal;
}

/* reset ここまで */
* {
  font-family: "Noto Sans JP", sans-serif;
}

.hidden {
  display: none;
}

a {
  text-decoration: none;
}
a.recruit {
  color: #FFF;
  background-color: #0F5779;
  padding: 8px;
  border-radius: 30px;
  width: 480px;
  display: block;
  text-align: center;
  margin: 80px auto 60px;
  font-size: 29px;
  font-weight: bold;
  position: relative;
  border: solid 1px #0F5779;
  transition: all 0.3s;
}
@media screen and (max-width: 1280px) {
  a.recruit {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  a.recruit {
    margin: 40px auto 30px;
    width: calc(100% - 40px);
    font-size: 18px;
  }
}
a.recruit::before, a.recruit::after {
  content: "";
  position: absolute;
  top: calc(50% - 3px);
  right: 25px;
  width: 14px;
  height: 2px;
  border-radius: 9999px;
  background-color: #FFF;
  transform-origin: calc(100% - 2px) 50%;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  a.recruit::before, a.recruit::after {
    right: 12px;
    width: 8px;
    height: 1px;
    top: calc(50% - 1px);
  }
}
a.recruit::before {
  top: calc(50% - 1px);
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  a.recruit::before {
    top: calc(50% + 1.5px);
  }
}
a.recruit:hover {
  background-color: #FFF;
  color: #0F5779;
  opacity: 1;
}
a.recruit:hover::before, a.recruit:hover::after {
  background-color: #0F5779;
}

h2.title {
  font-size: 62.5px;
  color: #0F5779;
  letter-spacing: 0.05em;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  h2.title {
    font-size: 26px;
  }
}
h2.title span {
  font-size: 30px;
  color: #0F5779;
  letter-spacing: 0.05em;
  font-weight: bold;
  display: block;
}
@media screen and (max-width: 767px) {
  h2.title span {
    font-size: 12.5px;
  }
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

header {
  height: 75px;
  padding: 0 0 0 50px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1280px) {
  header {
    height: 66px;
    padding-left: 10px;
  }
}
@media screen and (max-width: 767px) {
  header {
    padding-left: 16px;
    height: 40px;
    position: fixed;
    z-index: 10;
    background-color: #FFF;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
  }
}
@media screen and (max-width: 767px) {
  header .header-left {
    position: relative;
    z-index: 1;
  }
  header .header-left::before {
    content: "";
    width: 100vw;
    left: -16px;
    top: -9px;
    height: 40px;
    background-color: #FFF;
    position: absolute;
    z-index: -1;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
  }
}
header .header-left img {
  height: 29px;
}
@media screen and (max-width: 1280px) {
  header .header-left img {
    height: 16px;
    margin-top: -5px;
    display: block;
  }
}
@media screen and (max-width: 767px) {
  header .header-left img {
    display: inline;
    height: 16px;
    top: -5px;
    left: 0;
    position: relative;
  }
}
header .header-right {
  position: relative;
}
@media screen and (max-width: 767px) {
  header .header-right {
    width: 100vw;
    height: 100vh;
    background-color: #759CD9;
    position: absolute;
    left: 0;
    top: -100vh;
    transition: top 0.3s;
    padding: 67px 36.5px;
  }
}
@media screen and (max-width: 767px) {
  header .header-right.open {
    top: 0;
  }
}
header .header-right .menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  header .header-right .menu {
    display: block;
    top: -100vh;
  }
}
header .header-right .menu li {
  padding: 0 20px;
  border-left: 2px solid #D2D1D1;
}
@media screen and (max-width: 1280px) {
  header .header-right .menu li {
    padding: 0 12px;
  }
}
@media screen and (max-width: 767px) {
  header .header-right .menu li {
    border-left: none;
    border-bottom: 1px solid #FFF;
    padding: 0;
  }
}
header .header-right .menu li a {
  font-size: 16px;
  color: #797979;
  font-weight: 500;
  transition: all 0.3s;
}
@media screen and (max-width: 1280px) {
  header .header-right .menu li a {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  header .header-right .menu li a {
    color: #FFF;
    width: 100%;
    font-size: 12.5px;
    padding: 12px 0;
    display: block;
  }
}
header .header-right .menu li a:hover {
  color: #0963F0;
}
@media screen and (max-width: 767px) {
  header .header-right .menu li.item {
    position: relative;
  }
  header .header-right .menu li.item::before {
    content: "";
    width: 15px;
    height: 15px;
    border: solid 1px #FFF;
    border-radius: 10px;
    position: absolute;
    top: 15px;
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  header .header-right .menu li.item a {
    position: relative;
  }
  header .header-right .menu li.item a::before, header .header-right .menu li.item a::after {
    content: "";
    position: absolute;
    border-radius: 9999px;
    background-color: #FFF;
    transform-origin: calc(100% - 0.5px) 50%;
    transform: rotate(-34deg);
    top: 22px;
    width: 6px;
    height: 1px;
    right: 4px;
  }
  header .header-right .menu li.item a::before {
    transform: rotate(-146deg);
    top: 19px;
    right: 8px;
  }
}
header .header-right .menu li:first-child {
  border-left: none;
}
header .header-right .menu li.link {
  border-left: none;
  padding: 0;
}
@media screen and (max-width: 767px) {
  header .header-right .menu li.link {
    border-bottom: none;
  }
}
header .header-right .menu li.link a {
  border: solid #0F5779 1px;
  background-color: #0F5779;
  color: #FFF;
  padding: 25px 20px;
  font-weight: 600;
  transition: all 0.3s;
}
header .header-right .menu li.link a:hover {
  background-color: #FFF;
  color: #0F5779;
}
@media screen and (max-width: 1280px) {
  header .header-right .menu li.link a {
    padding: 20px 8px;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  header .header-right .menu li.link a {
    color: #FFF;
    background-color: #0F5779;
    padding: 8px;
    border-radius: 30px;
    width: 480px;
    display: block;
    text-align: center;
    margin: 80px auto 60px;
    font-size: 29px;
    font-weight: bold;
    position: relative;
    border: solid 1px #0F5779;
    transition: all 0.3s;
    margin: 30px auto;
    width: 254px;
    font-size: 14.5px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  header .header-right .menu li.link a::before, header .header-right .menu li.link a::after {
    content: "";
    position: absolute;
    top: calc(50% - 3px);
    right: 25px;
    width: 14px;
    height: 2px;
    border-radius: 9999px;
    background-color: #FFF;
    transform-origin: calc(100% - 2px) 50%;
    transform: rotate(45deg);
    right: 12px;
    width: 8px;
    height: 1px;
    top: calc(50% - 1px);
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  header .header-right .menu li.link a::before {
    transform: rotate(-45deg);
    top: calc(50% + 1.5px);
  }
}
header .header-right .hum {
  position: fixed;
  right: 10px;
  top: 14px;
  display: none;
}
@media screen and (max-width: 767px) {
  header .header-right .hum {
    display: block;
    z-index: 1;
  }
}
header .header-right .hum:hover {
  cursor: pointer;
}
header .header-right .hum p {
  font-size: 8px;
  color: #0F5779;
  text-shadow: 0 2px 2px rgba(15, 87, 121, 0.2509803922);
  margin-top: 7px;
  text-align: center;
}
header .header-right .hum span {
  background-color: #0F5779;
  display: block;
  height: 1px;
  width: 20px;
  position: relative;
  top: 0;
  transition: all 0.2s;
}
header .header-right .hum span:first-child {
  top: -5px;
}
header .header-right .hum span:nth-child(3) {
  top: 5px;
}
header .header-right .hum.open span:first-child {
  top: 0px;
  transform: rotate(45deg);
}
header .header-right .hum.open span:nth-child(2) {
  display: none;
}
header .header-right .hum.open span:nth-child(3) {
  top: 0px;
  transform: rotate(-45deg);
}

.bg-top {
  background-repeat: no-repeat;
  background-position-y: 291px;
  background-image: url(../img/bg-story.png);
  background-size: cover;
}
@media screen and (max-width: 1280px) {
  .bg-top {
    background-position-y: 170px;
  }
}
@media screen and (max-width: 767px) {
  .bg-top {
    background-image: url(../img/bg-story-sp.png);
    background-position-y: 380px;
    background-repeat: no-repeat;
  }
}

@keyframes slideDown {
  0% {
    top: -154px;
  }
  5% {
    top: -154px;
  }
  80% {
    top: -15px;
  }
  100% {
    top: -15px;
  }
}
@keyframes slideDownSP {
  0% {
    top: -86px;
  }
  5% {
    top: -86px;
  }
  80% {
    top: -13px;
  }
  100% {
    top: -13px;
  }
}
a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

.mainVisual {
  padding-left: 196px;
}
@media screen and (max-width: 1280px) {
  .mainVisual {
    padding-left: 96px;
  }
}
@media screen and (max-width: 767px) {
  .mainVisual {
    padding-left: 34px;
  }
}
.mainVisual h1 {
  height: 48vh;
  background-image: url(../img/kv.png);
  background-size: cover;
  background-position: bottom left;
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .mainVisual h1 {
    width: 100%;
    height: 35vh;
  }
}
@media screen and (max-width: 767px) {
  .mainVisual h1 {
    background-image: url(../img/kv-sp.png);
    height: 682px;
    background-position-y: 40px;
    border-radius: 0 0 0 30px;
    background-repeat: no-repeat;
  }
}
.mainVisual h1 img {
  position: relative;
  top: 5.5vh;
  left: calc(50% - 39vh - 100px);
  height: 35vh;
  max-width: unset;
  max-height: 500px;
}
@media screen and (max-width: 1280px) {
  .mainVisual h1 img {
    top: 6vh;
    left: calc(50% - 17.5vh - 100px);
    height: 20vh;
    max-width: unset;
  }
}
@media screen and (max-width: 767px) {
  .mainVisual h1 img {
    left: 12%;
    top: 26%;
    height: auto;
    width: 75%;
    max-width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .mainVisual h1 img.pc {
    display: none;
  }
}
.mainVisual h1 img.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .mainVisual h1 img.sp {
    display: unset;
  }
}
.mainVisual .scroll {
  position: absolute;
  left: 100px;
  top: 364px;
}
@media screen and (max-width: 1280px) {
  .mainVisual .scroll {
    left: 37px;
    top: 235px;
  }
}
@media screen and (max-width: 767px) {
  .mainVisual .scroll {
    top: 342px;
    left: 11px;
  }
}
.mainVisual .scroll span {
  color: #6286BE;
  writing-mode: tb;
  position: relative;
  top: 81px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .mainVisual .scroll span {
    font-size: 8px;
  }
}
.mainVisual .scroll span::before {
  content: "";
  left: 11px;
  top: -154px;
  height: 144px;
  width: 1px;
  background-color: #6286BE;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .mainVisual .scroll span::before {
    height: 72px;
    left: 4px;
    top: -81px;
  }
}
.mainVisual .scroll span::after {
  content: "";
  left: 7px;
  top: -154px;
  height: 10px;
  width: 10px;
  background-color: #6286BE;
  position: absolute;
  border-radius: 10px;
  animation: slideDown 3s infinite;
}
@media screen and (max-width: 767px) {
  .mainVisual .scroll span::after {
    animation: slideDownSP 3s infinite;
    top: -864px;
    height: 5px;
    width: 5px;
    left: 2px;
  }
}

.list {
  position: relative;
  left: 0;
  padding-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .list {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .list.over {
    width: 100vw;
    overflow-x: hidden;
  }
}
.list h2 {
  width: 1240px;
  margin: calc(7.5vw - 80px) auto 70px;
  color: #FFF;
}
@media screen and (max-width: 1280px) {
  .list h2 {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .list h2 {
    margin: 37px 0 35px 20px;
  }
}
.list h2 span {
  color: #FFF;
}
.list .slider {
  padding-left: 0;
}
.list .slider::after {
  content: "";
  width: 60px;
  height: 60px;
  right: 10px;
  z-index: 1;
  position: absolute;
  bottom: -91px;
  right: calc(50% - 530px);
}
@media screen and (max-width: 1280px) {
  .list .slider::after {
    right: 110px;
  }
}
@media screen and (max-width: 767px) {
  .list .slider::after {
    width: 30px;
    height: 30px;
    right: 60px;
    bottom: -45px;
  }
}
.list .slider.mid::after {
  width: 0;
  height: 0;
}
@media screen and (max-width: 1280px) {
  .list .slider.mid::after {
    right: 110px;
  }
}
@media screen and (max-width: 767px) {
  .list .slider.mid::after {
    right: 60px;
  }
}
.list .slider.stop::after {
  width: 60px;
  height: 60px;
  bottom: -91px;
  right: calc(50% - 602px);
}
@media screen and (max-width: 1280px) {
  .list .slider.stop::after {
    right: 29px;
  }
}
@media screen and (max-width: 767px) {
  .list .slider.stop::after {
    width: 30px;
    height: 30px;
    right: 20px;
    bottom: -45px;
  }
}
.list .slider::before {
  content: "";
  width: calc(50% + 370px);
  height: 1px;
  background-color: #FFF;
  position: absolute;
  bottom: -60px;
  left: 49px;
}
@media screen and (max-width: 1280px) {
  .list .slider::before {
    width: calc(100% - 254px);
  }
}
@media screen and (max-width: 767px) {
  .list .slider::before {
    width: calc(100% - 128px);
    left: 20px;
    bottom: -30px;
  }
}
.list .slider img {
  width: 399px;
  height: auto;
}
.list .slider .slider-item {
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  .list .slider .slider-item {
    padding-left: 20px;
    margin-right: -15px;
    width: 220px;
  }
}
.list .slider .slider-item:nth-child(even) {
  margin-top: 66px;
}
.list .slick-arrow {
  position: absolute;
  bottom: -90px;
}
@media screen and (max-width: 767px) {
  .list .slick-arrow {
    bottom: -45px;
  }
}
.list .slick-prev,
.list .slick-next {
  font-size: 0;
  background-image: url(../img/arrow.svg);
  background-size: contain;
  width: 59px;
  height: 59px;
  z-index: 1;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .list .slick-prev,
  .list .slick-next {
    width: 30px;
    height: 30px;
  }
}
.list .slick-prev:hover,
.list .slick-next:hover {
  opacity: 0.7;
}
.list .slick-prev {
  right: calc(50% - 530px);
}
@media screen and (max-width: 1280px) {
  .list .slick-prev {
    right: 110px;
  }
}
@media screen and (max-width: 767px) {
  .list .slick-prev {
    right: 60px;
  }
}
.list .slick-next {
  right: calc(50% - 602px);
  transform: rotate(180deg);
}
@media screen and (max-width: 1280px) {
  .list .slick-next {
    right: 30px;
  }
}
@media screen and (max-width: 767px) {
  .list .slick-next {
    right: 20px;
  }
}

.character {
  padding: 76px 0;
  position: relative;
  background-image: url(../img/bg-dots.jpg);
}
@media screen and (max-width: 1280px) {
  .character {
    width: 100%;
    padding: 23px 20px 43px;
  }
}
@media screen and (max-width: 767px) {
  .character {
    padding: 23px 10px 43px;
    background-size: 200%;
  }
}
.character .content {
  width: 1240px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .character .content {
    width: 100%;
    padding: 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .character .content {
    padding: 0 10px;
  }
}
.character .content h2 {
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .character .content h2 {
    margin-bottom: 36px;
    font-size: 30px;
  }
}
.character .content .flex {
  gap: 46px 42px;
}
@media screen and (max-width: 767px) {
  .character .content .flex {
    gap: 23px;
  }
}
.character .content .flex .item {
  width: calc(50% - 21px);
  border: solid #0963F0 6px;
  background-color: #759CD9;
  padding: 35px 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  perspective: 1000px;
  border-radius: 20px;
}
@media screen and (max-width: 1280px) {
  .character .content .flex .item {
    padding: 35px 10px;
  }
}
@media screen and (max-width: 767px) {
  .character .content .flex .item {
    border: solid #0963F0 3px;
    border-radius: 10px;
    padding: 18px 10px;
    width: 100%;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  }
}
.character .content .flex .item:hover {
  cursor: pointer;
}
.character .content .flex .item .flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s;
  width: 153.5px;
}
@media screen and (max-width: 1280px) {
  .character .content .flex .item .flip-inner {
    width: 120px;
  }
}
@media screen and (max-width: 767px) {
  .character .content .flex .item .flip-inner {
    width: 76px;
  }
}
.character .content .flex .item .flip-inner img {
  width: 153.5px;
  height: auto;
}
.character .content .flex .item .flip-inner .flip-front,
.character .content .flex .item .flip-inner .flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden; /* 裏面を非表示 */
}
.character .content .flex .item .flip-inner .flip-front img,
.character .content .flex .item .flip-inner .flip-back img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.character .content .flex .item .flip-inner .flip-back {
  transform: rotateY(180deg); /* 裏面を反転 */
}
.character .content .flex .item .info {
  width: calc(100% - 182px);
}
@media screen and (max-width: 1280px) {
  .character .content .flex .item .info {
    width: calc(100% - 130px);
  }
}
@media screen and (max-width: 767px) {
  .character .content .flex .item .info {
    width: calc(100% - 88px);
  }
}
.character .content .flex .item .info h3 {
  color: #FFF;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .character .content .flex .item .info h3 {
    font-size: 20px;
  }
}
.character .content .flex .item .info h3 span {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
  margin-left: 20px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .character .content .flex .item .info h3 span {
    margin-left: 13px;
    font-size: 14px;
  }
}
.character .content .flex .item .info p {
  color: #FFF;
}
.character .content .flex .item .info p.subtitle {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .character .content .flex .item .info p.subtitle {
    font-size: 14px;
    margin-bottom: 8px;
  }
}
.character .content .flex .item .info p.text {
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .character .content .flex .item .info p.text {
    font-size: 12px;
  }
}

footer {
  background-image: url(../img/bg-noise.png);
  padding: 78px 0 41px;
}
@media screen and (max-width: 767px) {
  footer {
    padding: 35px 0 20px;
  }
}
footer .logo {
  margin: 0 auto 60px;
  display: block;
  width: 540px;
}
@media screen and (max-width: 767px) {
  footer .logo {
    width: 77%;
    margin-bottom: 20px;
  }
}
footer .menu {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .menu li {
  padding: 0 20px;
  border-left: 2px solid #D2D1D1;
}
@media screen and (max-width: 767px) {
  footer .menu li {
    border-left: 1px solid #D2D1D1;
    line-height: 0.5;
    margin-bottom: 15px;
    padding: 0 7px 4px;
  }
}
footer .menu li a {
  font-size: 25px;
  color: #FFF;
  font-weight: 500;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  footer .menu li a {
    font-size: 16px;
  }
}
footer .menu li a:hover {
  color: #0963F0;
}
footer .menu li a.small {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  footer .menu li a.small {
    font-size: 12px;
    line-height: 1.2;
  }
}
footer .menu li:first-child {
  border-left: none;
}
footer a.recruit {
  font-size: 19.2px;
  width: 319px;
  margin: 45px auto 70px;
}
@media screen and (max-width: 767px) {
  footer a.recruit {
    font-size: 8px;
    width: 124px;
    padding: 4px;
    margin: 10px auto 35px;
  }
}
@media screen and (max-width: 767px) {
  footer a.recruit::before, footer a.recruit::after {
    right: 8px;
    width: 5px;
  }
}
footer .recruit-links p {
  font-size: 20px;
  text-align: center;
  margin: 10px auto;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  footer .recruit-links p {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  footer .recruit-links ul li {
    line-height: 0.2;
    margin-bottom: 5px;
    padding: 0 7px 4px;
  }
}
footer .copyright {
  font-size: 12px;
  text-align: center;
  margin: 70px auto 0;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  footer .copyright {
    margin: 30px auto 0;
    font-size: 9px;
  }
}

.manga-content .bg-story {
  position: relative;
  background-image: url(../img/bg-story.jpg);
  background-size: cover;
  padding: 71px 0 85px;
}
@media screen and (max-width: 767px) {
  .manga-content .bg-story {
    padding: 78px 0 59px;
  }
}
.manga-content .bg-story h1 {
  font-size: 48px;
  color: #FFF;
  letter-spacing: 0.05em;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .manga-content .bg-story h1 {
    font-size: 24px;
  }
}
.manga-content .bg-story h1 span {
  font-size: 26px;
  color: #FFF;
  letter-spacing: 0.05em;
  font-weight: bold;
  display: block;
}
@media screen and (max-width: 767px) {
  .manga-content .bg-story h1 span {
    font-size: 13px;
  }
}
.manga-content .bg-dots {
  padding: 100px 0;
  background-image: url(../img/bg-dots.jpg);
}
@media screen and (max-width: 1280px) {
  .manga-content .bg-dots {
    width: 100%;
    padding: 23px 20px 43px;
  }
}
@media screen and (max-width: 767px) {
  .manga-content .bg-dots {
    padding: 30px 10px 43px;
    background-size: 200%;
  }
}
.manga-content .manga {
  background-color: #759CD9;
  padding: 120px 84px;
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .manga-content .manga {
    width: 100%;
    padding: 30px 37px 50px;
  }
}
.manga-content .manga img {
  margin-bottom: 50px;
}
@media screen and (max-width: 1280px) {
  .manga-content .manga img {
    margin-bottom: 30px;
  }
}
.manga-content .links {
  display: flex;
  justify-content: center;
  gap: 55px;
  margin-top: 78px;
}
@media screen and (max-width: 767px) {
  .manga-content .links {
    margin-top: 35px;
    gap: 8px;
  }
}
.manga-content .links .item {
  width: 224px;
}
@media screen and (max-width: 767px) {
  .manga-content .links .item {
    width: 33%;
  }
}
.manga-content .links .item a {
  width: 224px;
  padding: 20px 0;
  border-radius: 100px;
  display: block;
  text-align: center;
  font-size: 23px;
  color: #3F3F3F;
  background-color: #FFF;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .manga-content .links .item a {
    width: 100%;
    padding: 8px;
    font-size: 12px;
  }
}
.manga-content .links .item a:hover {
  color: #FFF;
  background-color: #0F5779;
}

.faq {
  width: 1000px;
  margin: 100px auto 50px;
}
@media screen and (max-width: 1280px) {
  .faq {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .faq {
    margin: 35px auto;
    width: 100%;
  }
}
.faq h2 {
  font-size: 62.5px;
  color: #0F5779;
  letter-spacing: 0.05em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .faq h2 {
    font-size: 26px;
    margin-bottom: 40px;
  }
}
.faq h2 span {
  font-size: 30px;
  color: #0F5779;
  letter-spacing: 0.05em;
  font-weight: bold;
  display: block;
}
@media screen and (max-width: 767px) {
  .faq h2 span {
    font-size: 12.5px;
  }
}
.faq .list {
  padding-bottom: 0;
}
.faq .list .item {
  background-color: #759CD9;
  padding: 45px 96px 25px 32px;
  margin-bottom: 36px;
  transition: all 0.3s;
  position: relative;
}
@media screen and (max-width: 767px) {
  .faq .list .item {
    padding: 23px 40px 5px 16px;
    margin-bottom: 15px;
  }
}
.faq .list .item::before, .faq .list .item::after {
  content: "";
  position: absolute;
  top: 71px;
  right: 25px;
  width: 14px;
  height: 2px;
  border-radius: 9999px;
  background-color: #FFF;
  transform-origin: calc(100% - 0.5px) 50%;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .faq .list .item::before, .faq .list .item::after {
    top: 56px;
    width: 8px;
    height: 1px;
    right: 16px;
  }
}
.faq .list .item::before {
  top: 71px;
  transform: rotate(-225deg);
}
@media screen and (max-width: 767px) {
  .faq .list .item::before {
    top: 56px;
  }
}
.faq .list .item:hover {
  cursor: pointer;
}
.faq .list .item.open::after {
  transform: rotate(-45deg);
}
.faq .list .item.open::before {
  transform: rotate(-135deg);
}
.faq .list .item h3 {
  color: #FFF;
  font-size: 26px;
  margin-bottom: 22px;
  font-weight: bold;
  position: relative;
  padding-left: 100px;
}
@media screen and (max-width: 767px) {
  .faq .list .item h3 {
    font-size: 18px;
    padding-left: 60px;
  }
}
.faq .list .item h3::before {
  content: "";
  width: 78px;
  height: 112px;
  position: absolute;
  left: 0;
  top: calc(50% - 56px);
  background-image: url(../img/faq-img01.png);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .faq .list .item h3::before {
    top: calc(50% - 36px);
    width: 48px;
    height: 72px;
  }
}
.faq .list .item h3.illust02::before {
  background-image: url(../img/faq-img02.png);
}
.faq .list .item p {
  color: #FFF;
  font-size: 16px;
  line-height: 1.6;
  height: 0;
  overflow: hidden;
  position: relative;
  padding-left: 100px;
}
@media screen and (max-width: 767px) {
  .faq .list .item p {
    font-size: 14px;
  }
}
.faq .list .item p::before {
  content: "";
  width: 78px;
  height: 123px;
  position: absolute;
  left: 15px;
  top: 20px;
  background-image: url(../img/faq-img03.png);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .faq .list .item p::before {
    width: 44px;
    height: 73px;
    left: 6px;
  }
}
.faq .list .item p.illust02::before {
  background-image: url(../img/faq-img04.png);
  width: 85px;
  height: 94px;
}
@media screen and (max-width: 767px) {
  .faq .list .item p.illust02::before {
    width: 55px;
    height: 64px;
  }
}
.faq .list .item p.illust03::before {
  background-image: url(../img/faq-img05.png);
}
.faq .list .item a {
  color: #3F3F3F;
}
.faq .list .item.open p {
  height: auto;
  margin-bottom: 20px;
  background-color: #FFF;
  padding: 20px 15px 20px 106px;
  margin-right: -70px;
  color: #3F3F3F;
  min-height: 160px;
}
@media screen and (max-width: 767px) {
  .faq .list .item.open p {
    padding: 20px 15px 20px 66px;
    margin-right: -23px;
  }
}
.faq .list .item.open p.illust02 {
  min-height: 130px;
}
.faq .list .item.open h3 {
  margin-bottom: 47px;
}
@media screen and (max-width: 767px) {
  .faq .list .item.open h3 {
    margin-bottom: 27px;
  }
}

#videoModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #759CD9;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
}
#videoModal.hidden {
  display: none !important;
}
#videoModal .inside {
  padding: 10px;
  position: relative;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  #videoModal .inside {
    padding: 15px;
  }
}
#videoModal .inside .skipVideo {
  position: absolute;
  line-height: 1;
  color: #fff;
  right: 26px;
  top: 22px;
  width: 50px;
  height: 50px;
}
#videoModal .inside .skipVideo:hover {
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  #videoModal .inside .skipVideo {
    right: 20px;
    top: -30px;
    width: 30px;
    height: 30px;
  }
}
#videoModal video {
  width: calc(100vw - 30px);
}
#videoModal video.widedisp {
  height: calc(100vh - 30px);
  width: auto;
}

.movie:hover {
  cursor: pointer;
}/*# sourceMappingURL=style.css.map */