@charset "UTF-8";
/*------------------------
 base
------------------------*/
html {
  height: 100%;
}

body {
  font-family: "YuMincho", "Yu Mincho", "游明朝体", "Yu Mincho Light",
    "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  width: 100vw;
  height: 100vh;
  font-size: 16px;
  word-wrap: break-word;
  overflow-x: hidden;
}
@media screen and (max-width: 600px) {
  body {
    font-size: 14px;
  }
}

a {
  letter-spacing: 0.25rem;
  text-decoration: none;
}

p {
  font-feature-settings: "palt";
  letter-spacing: 0.3rem;
  line-height: 32px;
  color: #333;
}
@media screen and (max-width: 600px) {
  p {
    letter-spacing: 0.25rem;
    line-height: 26px;
  }
}

h1,
h2,
h3,
h4,
h5 {
  font-feature-settings: "palt";
  font-weight: normal;
  letter-spacing: 0.25rem;
  text-shadow: rgba(0, 0, 0, 0.15) 0 3px 6px;
}

button {
  border: none;
}

@media screen and (max-width: 600px) {
  ._pc {
    display: none;
  }
}

._sp {
  display: none;
}
@media screen and (max-width: 600px) {
  ._sp {
    display: block;
  }
}

main {
  margin-top: 120px;
}
main._home {
  margin-top: 176px;
}
@media screen and (max-width: 600px) {
  main._home {
    margin-top: 80px;
  }
}
@media screen and (max-width: 600px) {
  main._page {
    margin-top: 70px;
  }
}

/*------------------------
 reset
------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p {
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
  display: block;
}

table {
  border-collapse: collapse;
}

input,
button,
textarea,
select {
  font: inherit;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

/*------------------------
 loader
------------------------*/
.loader {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background: #5cc2f0;
  overflow: hidden;
  text-align: center;
  z-index: 100000;
  transition: all 0.3s;
}
.loader-txt {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  font-size: 1.5rem;
  height: 50px;
  width: -moz-max-content;
  width: max-content;
  color: #fff;
  top: calc(50vh - 50px);
  left: 0;
  right: 0;
  letter-spacing: 0.5rem;
}
.loader-txt span {
  animation: loading-wave 1.8s ease infinite;
}
.loader-txt span:nth-child(2) {
  animation-delay: 0.25s;
}
.loader-txt span:nth-child(3) {
  animation-delay: 0.5s;
}
.loader-txt span:nth-child(4) {
  animation-delay: 0.75s;
}
.loader-txt span:nth-child(5) {
  animation-delay: 1s;
}
.loader-txt span:nth-child(6) {
  animation-delay: 1.25s;
}
.loader-txt span:nth-child(7) {
  animation-delay: 1.5s;
}
.loader-txt span:nth-child(8) {
  animation-delay: 1.75s;
}
.loader-txt span:nth-child(9) {
  animation-delay: 2s;
}
.loader-txt span:nth-child(10) {
  animation-delay: 2.25s;
}
.loader.loaded {
  opacity: 0;
  pointer-events: none;
}

@keyframes loading-wave {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.zoomCurtainbg {
  display: block;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  transform: scale3d(1, 1, 1);
  background-color: #5cc2f0;
  animation-name: zoomIn;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.fadeout {
  animation: fadeOut 2s;
  animation-fill-mode: both;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*bodyにpageOnクラスがついたら出現*/
.header,
main,
.footer {
  opacity: 0;
}

.pageOn .header,
.pageOn main,
.pageOn .footer {
  animation-name: PageAnimeOn;
  animation-duration: 1.5s;
  animation-delay: 1.5s;
  animation-fill-mode: forwards;
}

@keyframes PageAnimeOn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*------------------------
 header
------------------------*/
.header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  padding: 16px 56px;
  top: 0;
  width: 100%;
  transition: all 0.4s;
  z-index: 10000;
}
@media screen and (max-width: 1560px) {
  .header {
    padding: 16px 24px;
  }
}
@media screen and (max-width: 1200px) {
  .header {
    padding: 20px 30px;
  }
}
@media screen and (max-width: 600px) {
  .header {
    padding: 12px;
  }
}
.header a {
  transition: all 0.3s;
}
.header a:hover {
  opacity: 0.7;
}
.header-logo {
  margin-top: 0;
  opacity: 0;
}
@media screen and (max-width: 1200px) {
  .header-logo {
    opacity: 1;
  }
}
.header-logo a img {
  width: 340px;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  transition: all 0.4s;
}
@media screen and (max-width: 600px) {
  .header-logo a img {
    width: 200px;
  }
}
.header-logo a:hover img {
  opacity: 0.7;
}
.header._home {
  padding: 40px 56px;
}
@media screen and (max-width: 1560px) {
  .header._home {
    padding: 40px 32px;
  }
}
@media screen and (max-width: 1200px) {
  .header._home {
    padding: 25px 30px;
  }
}
@media screen and (max-width: 600px) {
  .header._home {
    padding: 12px;
  }
}
.header._home .header-logo {
  margin-top: 3px;
}
@media screen and (max-width: 1024px) {
  .header._home .header-logo {
    margin-top: 0;
  }
}
.header._home .header-logo a img {
  width: 300px;
  opacity: 0;
}
@media screen and (max-width: 1200px) {
  .header._home .header-logo a img {
    opacity: 1;
  }
}
@media screen and (max-width: 600px) {
  .header._home .header-logo a img {
    width: 200px;
  }
}

/*------------------------
 gnav
------------------------*/
.gnav {
  display: flex;
  min-width: 860px;
  padding-top: 32px;
}
@media screen and (max-width: 1200px) {
  .gnav {
    display: none;
  }
}
.gnav-list {
  margin: 0 24px 0 0;
}
@media screen and (max-width: 1560px) {
  .gnav-list {
    margin-right: 15px;
  }
}
.gnav-item {
  display: inline-block;
  margin: 0 8px;
}
@media screen and (max-width: 1560px) {
  .gnav-item {
    margin: 0 5px;
  }
}
.gnav-item a {
  display: block;
  font-size: 14px;
  padding: 12px 12px 24px 12px;
  letter-spacing: 0.2rem;
  color: #000;
}
@media screen and (max-width: 1560px) {
  .gnav-item a {
    font-size: 12px;
    padding: 12px 8px 24px;
  }
}
.gnav-contact {
  position: relative;
  display: inline-block;
}
.gnav-contact a {
  display: block;
  padding: 12px 40px 12px 24px;
  font-size: 14px;
  letter-spacing: 0.2rem;
  background: #0851a1;
  color: #fff;
  border-radius: 30px;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.1));
  transition: all 0.4s ease-in-out;
}
@media screen and (max-width: 1560px) {
  .gnav-contact a {
    font-size: 12px;
  }
}
.gnav-contact a:hover {
  filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.3));
  opacity: 0.9;
}
.gnav-contact a:hover .gnav-mark {
  right: 14px;
}
.gnav-mark {
  position: absolute;
  top: 11px;
  right: 16px;
  transition: all 0.4s ease-in-out;
}

.gsub {
  position: relative;
}
.gsub._none > a {
  pointer-events: none;
}
.gsub-list {
  position: absolute;
  padding: 12px;
  min-width: 100%;
  top: 56px;
  left: 0;
  background: #0851a1;
  border-radius: 12px;
  opacity: 0;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.1));
  pointer-events: none;
  transition: all 0.4s;
}
.gsub-list._service {
  min-width: 240px;
}
.gsub-list._movie {
  min-width: 108px;
}
@media screen and (max-width: 1560px) {
  .gsub-list {
    top: 48px;
  }
}
.gsub-item a {
  padding: 10px;
  font-size: 0.8rem;
  letter-spacing: 0.15rem;
  color: #fff;
}
.gsub:hover .gsub-list {
  pointer-events: auto;
  opacity: 1;
}

/*------------------------
 spnav
------------------------*/
.spnav {
  display: none;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .spnav {
    display: block;
  }
}
.spnav-toggle {
  position: fixed;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  z-index: 100;
}
@media screen and (max-width: 600px) {
  .spnav-toggle {
    width: 60px;
    height: 60px;
  }
}
.spnav-toggle span {
  position: absolute;
  content: "";
  width: 50px;
  height: 1px;
  left: 0;
  background: #0851a1;
  opacity: 1;
  transition: all 0.3s;
}
.spnav-toggle span._top {
  top: 40px;
}
@media screen and (max-width: 600px) {
  .spnav-toggle span._top {
    top: 24px;
    left: 15px;
  }
}
.spnav-toggle span._bottom {
  top: 50px;
}
@media screen and (max-width: 600px) {
  .spnav-toggle span._bottom {
    top: 30px;
    left: 15px;
  }
}
@media screen and (max-width: 600px) {
  .spnav-toggle span {
    width: 30px;
  }
}
.spnav-wrapper {
  position: absolute;
  margin: 0;
  width: 100vw;
  min-height: 100vh;
  top: 0;
  left: 0;
  background: #fff;
  pointer-events: none;
  opacity: 0;
  transition: all 0.4s;
  z-index: 10;
}
.spnav-list {
  padding-bottom: 120px;
  height: 100vh;
  overflow-y: scroll;
}
.spnav-item {
  margin: 0 auto 20px;
  width: 90%;
  border-bottom: 1px solid #ccc;
}
.spnav-item a {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 15px 5px 25px;
  color: #0851a1;
}
@media screen and (max-width: 768px) {
  .spnav-item a {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 600px) {
  .spnav-item a {
    font-size: 0.9rem;
    padding: 5px 5px 20px;
  }
}
.spnav-item._logo {
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  .spnav-item._logo {
    top: 0;
    left: 35px;
  }
}
@media screen and (max-width: 600px) {
  .spnav-item._logo {
    left: 5%;
  }
}
.spnav-item._logo a img {
  width: 340px;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
@media screen and (max-width: 600px) {
  .spnav-item._logo a img {
    width: 220px;
  }
}
.spnav-item._btn {
  position: relative;
  margin-top: 20px;
  border-bottom: none;
}
@media screen and (max-width: 600px) {
  .spnav-item._btn {
    margin-top: 10px;
  }
}
.spnav-item._btn a {
  display: block;
  padding: 12px 40px 12px 24px;
  font-weight: normal;
  letter-spacing: 0.2rem;
  line-height: 4rem;
  background: #0851a1;
  color: #fff;
  border-radius: 30px;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.1));
  text-align: center;
}
@media screen and (max-width: 768px) {
  .spnav-item._btn a {
    padding: 8px 0;
  }
}
@media screen and (max-width: 600px) {
  .spnav-item._btn a {
    padding: 0;
  }
}
.spnav-item._contact {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .spnav-item._contact {
    margin-top: 70px;
  }
}
@media screen and (max-width: 600px) {
  .spnav-item._contact {
    margin-top: 50px;
  }
}
.spnav-mark {
  position: absolute;
  top: 11px;
  right: 5%;
}
@media screen and (max-width: 600px) {
  .spnav-mark {
    top: -1px;
    right: 20px;
  }
}
.spnav._open .spnav-toggle span._top {
  top: 40px;
  transform: rotate(20deg);
}
@media screen and (max-width: 600px) {
  .spnav._open .spnav-toggle span._top {
    top: 25px;
  }
}
.spnav._open .spnav-toggle span._bottom {
  top: 40px;
  transform: rotate(-20deg);
}
@media screen and (max-width: 600px) {
  .spnav._open .spnav-toggle span._bottom {
    top: 25px;
  }
}
.spnav._open .spnav-wrapper {
  pointer-events: auto;
  opacity: 1;
}

.spsub {
  position: relative;
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 15px 5px 25px;
  color: #0851a1;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 768px) {
  .spsub {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 600px) {
  .spsub {
    font-size: 0.9rem;
    padding: 12px 5px 18px;
  }
}
.spsub-toggle {
  position: absolute;
  top: 9px;
  right: 16px;
  transition: all 0.4s;
}
.spsub-list {
  height: 0;
  opacity: 0;
  transition: all 0.4s;
}
@media screen and (max-width: 600px) {
  .spsub-list {
    margin-bottom: 0;
  }
}
.spsub-item {
  pointer-events: none;
}
.spsub-item a {
  font-size: 1.2rem;
  font-weight: normal;
  padding: 10px;
  color: #333;
}
@media screen and (max-width: 600px) {
  .spsub-item a {
    font-size: 0.8rem;
  }
}
.spsub._open .spsub-list {
  margin: 15px 0 0;
  height: auto;
  opacity: 1;
}
.spsub._open .spsub-item {
  pointer-events: auto;
}

/*------------------------
 footer
------------------------*/
.footer {
  padding: 96px 0 40px;
  background: #00346e;
  color: #fff;
}
@media print, screen and (max-width: 1360px) {
  .footer {
    padding: 96px 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 70px 0 20px;
  }
}
@media screen and (max-width: 600px) {
  .footer {
    padding: 45px 0 20px;
  }
}
.footer a {
  color: #fff;
  transition: all 0.4s;
}
.footer a:hover {
  opacity: 0.6;
}
.footer-container {
  margin: auto;
  width: 90%;
  max-width: 1600px;
}
.footer-logo {
  margin-bottom: 112px;
}
@media print, screen and (max-width: 1360px) {
  .footer-logo {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 600px) {
  .footer-logo {
    margin-bottom: 45px;
  }
}
.footer-logo img {
  width: 360px;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
@media screen and (max-width: 600px) {
  .footer-logo img {
    width: 280px;
  }
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto 24px;
  width: 90%;
}
@media print, screen and (max-width: 1360px) {
  .footer-content {
    flex-direction: column;
    margin: 0 auto 60px;
    width: 95%;
  }
}
.footer-cp {
  font-size: 0.7rem;
  color: #fff;
  letter-spacing: 0.15rem;
}
@media print, screen and (max-width: 1360px) {
  .footer-cp {
    text-align: center;
  }
}
@media screen and (max-width: 600px) {
  .footer-cp {
    margin-left: 3%;
    text-align: left;
  }
}

.apply {
  position: fixed;
  right: 56px;
  bottom: 48px;
  z-index: 1000;
}
@media print, screen and (max-width: 1360px) {
  .apply {
    right: 35px;
    bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .apply {
    right: 25px;
    bottom: 20px;
  }
}
@media screen and (max-width: 600px) {
  .apply {
    right: 15px;
    bottom: 15px;
  }
}
.apply a {
  position: relative;
  display: block;
  font-size: 28px;
  padding: 32px 0;
  width: 176px;
  height: 176px;
  background: rgba(0, 157, 229, 0.75);
  border-radius: 50%;
  line-height: 48px;
  letter-spacing: 0.15rem;
  text-shadow: rgba(0, 0, 0, 0.1) 2px 2px 3px;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.3));
  text-align: center;
  transition: all 0.4s ease-in-out;
}
.apply a:hover {
  transform: scale(1.05);
}
@media screen and (max-width: 768px) {
  .apply a {
    font-size: 24px;
    padding: 25px 0;
    width: 150px;
    height: 150px;
    line-height: 45px;
  }
}
@media screen and (max-width: 600px) {
  .apply a {
    font-size: 16px;
    padding: 18px 0;
    width: 110px;
    height: 110px;
    line-height: 28px;
  }
}
.apply a span {
  display: block;
  font-size: 22px;
  line-height: 24px;
}
@media screen and (max-width: 768px) {
  .apply a span {
    font-size: 20px;
    line-height: 20px;
  }
}
@media screen and (max-width: 600px) {
  .apply a span {
    font-size: 14px;
    line-height: 16px;
  }
}
.apply a span._game {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
  .apply a span._game {
    font-size: 12px;
    line-height: 15px;
  }
}
@media screen and (max-width: 600px) {
  .apply a span._game {
    font-size: 10px;
    letter-spacing: 0.05rem;
  }
}
.apply a::before {
  position: absolute;
  content: "";
  width: 192px;
  height: 192px;
  top: -8px;
  left: -8px;
  border: 1px solid rgba(0, 157, 229, 0.75);
  border-radius: 50%;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.3));
}
@media screen and (max-width: 768px) {
  .apply a::before {
    width: 160px;
    height: 160px;
    top: -5px;
    left: -5px;
  }
}
@media screen and (max-width: 600px) {
  .apply a::before {
    width: 118px;
    height: 118px;
    top: -4px;
    left: -4px;
  }
}

/*------------------------
 fnav
------------------------*/
.fnav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-left: 3%;
  width: 70%;
  max-width: 860px;
}
@media print, screen and (max-width: 1360px) {
  .fnav {
    margin: auto;
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .fnav {
    flex-direction: column;
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  .fnav-list {
    margin: 0;
    width: 100%;
  }
}
.fnav-item {
  font-size: 17px;
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .fnav-item {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 0.5px solid #666;
  }
}
@media screen and (max-width: 600px) {
  .fnav-item {
    font-size: 14px;
    margin-bottom: 18px;
    padding-bottom: 18px;
  }
}
.fnav-tit span {
  font-size: 12px;
  margin-left: 16px;
}
@media screen and (max-width: 600px) {
  .fnav-tit span {
    font-size: 10px;
  }
}

@media screen and (max-width: 768px) {
  .fsub {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 600px) {
  .fsub {
    margin-bottom: 18px;
  }
}
.fsub-list {
  margin: 16px;
}
@media screen and (max-width: 768px) {
  .fsub-list {
    margin: 15px 15px 0;
  }
}
@media screen and (max-width: 600px) {
  .fsub-list {
    margin: 10px 10px 0;
  }
}
.fsub-item {
  margin: 3px 0;
}
.fsub-item a {
  display: inline-block;
  font-size: 14px;
  padding: 5px 0;
  text-decoration: underline;
}
@media screen and (max-width: 600px) {
  .fsub-item a {
    font-size: 12px;
    padding: 3px 0;
  }
}

@media screen and (max-width: 768px) {
  .fbnav {
    width: 95%;
  }
}
.fbnav-list {
  margin-left: 120px;
  padding-left: 64px;
  min-width: 264px;
  border-left: 1px solid #fff;
}
@media print, screen and (max-width: 1360px) {
  .fbnav-list {
    margin-left: 0;
    padding-top: 30px;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid #fff;
  }
}
@media screen and (max-width: 768px) {
  .fbnav-list {
    padding: 10px;
    border-top: none;
  }
}
@media screen and (max-width: 600px) {
  .fbnav-list {
    margin: 0;
  }
}
.fbnav-item {
  margin: 3px 0;
}
.fbnav-item a {
  display: block;
  padding: 8px;
  font-size: 14px;
}
@media screen and (max-width: 600px) {
  .fbnav-item a {
    font-size: 12px;
    padding: 5px;
  }
}

/*------------------------
 animation
------------------------*/
.fadein {
  opacity: 0;
}
.fadein.is-animated {
  animation: fadein 0.8s ease forwards;
}
.fadein._top {
  animation: fadein 1s ease forwards;
  animation-delay: 2s;
}
.fadein-delay1 {
  opacity: 0;
}
.fadein-delay1._top {
  animation: fadein 1s ease forwards;
  animation-delay: 2.4s;
}
.fadein-delay1.is-animated {
  animation: fadein 0.8s ease forwards;
  animation-delay: 0.4s;
}
.fadein-delay2 {
  opacity: 0;
}
.fadein-delay2._top {
  animation: fadein 1s ease forwards;
  animation-delay: 2.6s;
}
.fadein-delay2.is-animated {
  animation: fadein 0.8s ease forwards;
  animation-delay: 0.8s;
}
.fadein-delay3 {
  opacity: 0;
}
.fadein-delay3._top {
  animation: fadein 1s ease forwards;
  animation-delay: 3s;
}
.fadein-apply {
  opacity: 0;
}
.fadein-apply._top {
  animation: fadeinApply 2s ease-in-out forwards;
  animation-delay: 3s;
}

@keyframes fadein {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeinApply {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  50% {
    transform: translateY(0);
    opacity: 1;
  }
  80% {
    transform: scale(1.05);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes imgWrap {
  100% {
    transform: translateX(100%);
  }
}
