@charset "UTF-8";
*,
*:after,
*:before {
  box-sizing: inherit;
}

html {
  min-height: 100%;
  font-size: 100%;
  overflow-x: hidden;
}

body {
  position: relative;
  width: 100%;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.6;
  overflow: hidden;
}

main {
  padding-bottom: 10vw;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  appearance: none;
}

a {
  text-decoration: none;
  color: black;
}

a.txt-link {
  text-decoration: underline;
}
@media (hover: hover) {
  a.txt-link:hover {
    text-decoration: none;
  }
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

br.sp {
  display: none;
}
br.pc {
  display: block;
}

@media screen and (max-width: 767px) {
  br.sp {
    display: block;
  }
  br.pc {
    display: none;
  }
}
#star-bg {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #000a22 0%, #02102d 50%, #0e2453 100%);
  overflow: hidden;
  z-index: -1;
}
#star-bg:after {
  content: "";
  width: 100%;
  height: 35vw;
  position: absolute;
  top: auto;
  right: auto;
  bottom: -22vw;
  left: 0;
  background-image: url(/_/images/common/bgi_ground.webp);
  background-size: 100%;
  background-position: left top;
  background-repeat: no-repeat;
}

.star {
  position: absolute;
  width: 1px;
  height: 1px;
  border-radius: 50%;
  background: var(--star-color);
  transform: scale(var(--star-scale));
  transform-origin: center;
  opacity: var(--min-opacity);
  animation: twinkle ease-in-out infinite;
}

@media (min-resolution: 2dppx) {
  .star {
    transform: scale(calc(var(--star-scale) * 2));
  }
}
@keyframes twinkle {
  0% {
    opacity: var(--min-opacity);
  }
  3% {
    opacity: var(--max-opacity);
  }
  6% {
    opacity: var(--min-opacity);
  }
  9% {
    opacity: var(--max-opacity);
  }
  100% {
    opacity: var(--min-opacity);
  }
}
.shooting-star {
  position: absolute;
  width: 2px;
  height: 2px;
  pointer-events: none;
  opacity: 0;
}
.shooting-star::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 50%;
  z-index: 2;
}
.shooting-star::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80px; /* ← 常に左側に尾 */
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.9));
}

#loader-bg {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: white;
  z-index: 99999;
}
#loader-bg.-dark- {
  background-color: #000a22;
}
#loader-bg.-dark- .path {
  stroke: white;
}
#loader-bg .loading {
  animation: rotator 1.6s linear infinite;
}
@keyframes rotator {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(270deg);
  }
}
#loader-bg .path {
  stroke: #fdd000;
  stroke-dasharray: 224;
  stroke-dashoffset: 0;
  transform-origin: center;
  animation: dash 1.6s ease-in-out infinite;
}
@keyframes dash {
  0% {
    stroke-dashoffset: 224;
  }
  50% {
    stroke-dashoffset: 56;
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 224;
    transform: rotate(450deg);
  }
}

.wf-loading main {
  opacity: 0;
}

.wf-active main {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  #loader-bg {
    height: 100svh;
  }
}
header {
  position: fixed;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 2.4vw 0 0 3.2vw;
  z-index: 1000;
  transition: all 0.3s;
}
header.mimum {
  padding: 0 0 0 2vw;
}
header.mimum .l-lgo {
  display: block;
  width: 110px;
  height: 29.7px;
  overflow: hidden;
}
header.mimum .l-lgo img:nth-of-type(1) {
  width: auto;
  height: 100%;
  vertical-align: top;
}
header.mimum .l-lgo img:nth-of-type(2) {
  display: none;
}
header .l-lgo {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: clamp(270px, 26vw, 320px);
  height: clamp(54px, 5.2vw, 64px);
}
header .r-btn {
  display: flex;
  width: clamp(270px, 26vw, 320px);
  height: clamp(67.5px, 6.5vw, 80px);
}
header .r-btn #mypage-btn,
header .r-btn #mynavi-btn {
  position: relative;
  height: 100%;
  opacity: 1;
  pointer-events: auto;
  transition: all 0.3s;
  cursor: pointer;
}
header .r-btn #mypage-btn.-hide-,
header .r-btn #mynavi-btn.-hide- {
  opacity: 0;
  pointer-events: none;
  z-index: -1;
}
header .r-btn #mypage-btn > img,
header .r-btn #mynavi-btn > img {
  position: relative;
  z-index: 1;
}
header .r-btn #mypage-btn > ul,
header .r-btn #mynavi-btn > ul {
  position: absolute;
  top: 100%;
  right: auto;
  bottom: auto;
  left: auto;
  width: 100%;
  height: clamp(67.5px, 6.5vw, 80px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.4s;
}
header .r-btn #mypage-btn > ul.-open-,
header .r-btn #mynavi-btn > ul.-open- {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
header .r-btn #mypage-btn > ul li,
header .r-btn #mynavi-btn > ul li {
  width: 100%;
  height: 50%;
}
header .r-btn #mypage-btn > ul li.-no-,
header .r-btn #mynavi-btn > ul li.-no- {
  pointer-events: none;
  opacity: 0.3;
}
header .r-btn #mypage-btn > ul li a,
header .r-btn #mynavi-btn > ul li a {
  display: block;
  height: 100%;
  text-align: center;
  line-height: 120%;
}
header .r-btn #mypage-btn > ul li a span,
header .r-btn #mynavi-btn > ul li a span {
  font-weight: 900;
  transition: all 0.3s;
}
header .r-btn #mypage-btn > ul li a span.year,
header .r-btn #mynavi-btn > ul li a span.year {
  font-size: clamp(17px, 1.125vw, 18px);
}
header .r-btn #mypage-btn > ul li a span.muke,
header .r-btn #mynavi-btn > ul li a span.muke {
  font-size: clamp(11px, 1vw, 12px);
}
@media (hover: hover) {
  header .r-btn #mypage-btn > ul li a:hover span,
  header .r-btn #mynavi-btn > ul li a:hover span {
    opacity: 0.5;
  }
}
header .r-btn #mypage-btn {
  width: 25%;
}
header .r-btn #mypage-btn > ul li {
  background-color: #e5bc00;
}
header .r-btn #mypage-btn > ul li + li {
  border-top: 1px solid #fdd000;
}
header .r-btn #mynavi-btn {
  width: 25%;
}
header .r-btn #mynavi-btn > ul li {
  background-color: #ebebeb;
}
header .r-btn #mynavi-btn > ul li + li {
  border-top: 1px solid white;
}
header .r-btn #global-btn {
  position: relative;
  width: 50%;
  height: 100%;
  background-color: #0e2453;
  cursor: pointer;
}
header .r-btn #global-btn > span {
  position: absolute;
  left: 25%;
  width: 50%;
  height: 1px;
  background-color: #fdd000;
  transform-origin: center;
  transition: all 0.5s;
}
header .r-btn #global-btn > span:nth-of-type(1) {
  top: 40%;
}
header .r-btn #global-btn > span:nth-of-type(2) {
  top: 50%;
}
header .r-btn #global-btn > span:nth-of-type(3) {
  bottom: 40%;
}
header .r-btn #global-btn.-active- > span:nth-of-type(1) {
  top: 49%;
  transform: rotate(-30deg);
}
header .r-btn #global-btn.-active- > span:nth-of-type(2) {
  opacity: 0;
}
header .r-btn #global-btn.-active- > span:nth-of-type(3) {
  bottom: 49%;
  transform: rotate(30deg);
}

#global-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: fixed;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  width: 100%;
  height: 100vh;
  padding-top: 4vw;
  background-color: #0e2453;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s;
  z-index: 999;
}
#global-menu.-active- {
  opacity: 1;
  pointer-events: auto;
}
#global-menu .site-links {
  display: flex;
  justify-content: center;
  width: 100%;
}
#global-menu .site-links .sl-row {
  margin: 0 3.5vw;
}
#global-menu .site-links .sl-row .category {
  position: relative;
  padding-left: clamp(44px, 3.6vw, 56px);
}
#global-menu .site-links .sl-row .category + .category {
  margin-top: 4em;
}
#global-menu .site-links .sl-row .category::before {
  content: "";
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: white;
}
@media (min-resolution: 2dppx) {
  #global-menu .site-links .sl-row .category::before {
    width: 0.5px;
  }
}
#global-menu .site-links .sl-row .category > span {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0.6em;
  color: white;
  font-size: clamp(11px, 0.8125vw, 13px);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
#global-menu .site-links .sl-row .category > h2 {
  color: white;
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 700;
}
#global-menu .site-links .sl-row .category > ul {
  margin-top: 1.5em;
}
#global-menu .site-links .sl-row .category > ul li + li {
  margin-top: 0.3vw;
}
#global-menu .site-links .sl-row .category > ul li a {
  color: white;
  font-size: clamp(15px, 1vw, 16px);
  transition: all 0.3s;
}
#global-menu .site-links .sl-row .category > ul li a.-cs- {
  opacity: 0.3;
  pointer-events: none;
}
@media (hover: hover) {
  #global-menu .site-links .sl-row .category > ul li a:hover {
    opacity: 0.5;
  }
}
#global-menu .entry-links {
  margin-top: 3em;
}

@media screen and (max-width: 767px) {
  header {
    padding: 5vw 0 0 5vw;
  }
  header.mimum {
    padding: 2.5vw 0 0 5vw;
  }
  header.mimum .l-lgo {
    width: 90px;
    height: 24.3px;
  }
  header .l-lgo {
    width: 58vw;
    height: 10.44vw;
  }
  header .r-btn {
    width: 30vw;
    height: 15vw;
  }
  header .r-btn #mypage-btn,
  header .r-btn #mynavi-btn {
    display: none;
  }
  header .r-btn #global-btn {
    width: 100%;
    background-color: transparent;
  }
  #global-menu {
    justify-content: flex-start;
    padding-top: 20vw;
    padding-bottom: 32vw;
    overflow-y: scroll;
  }
  #global-menu .site-links {
    flex-direction: column;
    justify-content: flex-start;
  }
  #global-menu .site-links .sl-row {
    margin: 0 0;
  }
  #global-menu .site-links .sl-row .category {
    display: flex;
    width: 90vw;
    margin-top: 2.5em;
    margin-left: 5vw;
    padding-left: 7.5vw;
  }
  #global-menu .site-links .sl-row .category + .category {
    margin-top: 2.5em;
  }
  #global-menu .site-links .sl-row .category::before {
    width: 100%;
    height: 1px;
  }
}
@media screen and (max-width: 767px) and (min-resolution: 2dppx) {
  #global-menu .site-links .sl-row .category::before {
    width: 100%;
    height: 0.5px;
  }
}
@media screen and (max-width: 767px) {
  #global-menu .site-links .sl-row .category > span {
    position: absolute;
    top: 1em;
    right: auto;
    bottom: auto;
    left: 0;
    color: #fdd000;
    font-size: 12px;
  }
  #global-menu .site-links .sl-row .category > h2 {
    width: 37.5vw;
    margin-top: 1em;
    font-size: 18px;
  }
  #global-menu .site-links .sl-row .category > ul {
    width: auto;
    margin-top: 3vw;
  }
  #global-menu .site-links .sl-row .category > ul li + li {
    margin-top: 5px;
  }
  #global-menu .site-links .sl-row .category > ul li a {
    font-size: 15px;
  }
}
footer {
  margin-top: 12.5vw;
  padding-bottom: 7.5vw;
}
footer .cpr-link {
  margin: 10vw 0 0;
  text-align: center;
}
footer .cpr-link > a {
  color: white;
  font-weight: 500;
  font-size: clamp(14px, 0.9375vw, 15px);
  transition: all 0.3s;
}
footer .cpr-link > a::after {
  content: "";
  display: inline-block;
  width: clamp(13px, 0.9vw, 14px);
  height: clamp(9.75px, 0.675vw, 10.5px);
  margin-left: 0.3em;
  background-image: url(/_/images/common/arw_blank.svg);
  background-size: 100%;
  background-position: 0 0;
  background-repeat: no-repeat;
}
@media (hover: hover) {
  footer .cpr-link > a:hover {
    opacity: 0.5;
  }
}
footer > small {
  display: block;
  margin: 2.5vw 0 4vw;
  color: white;
  font-size: clamp(11px, 0.8125vw, 13px);
  text-align: center;
}

@media screen and (max-width: 767px) {
  footer {
    margin-top: 15vw;
  }
  footer > small {
    margin: 5vw 0 35vw;
    font-size: 10px;
  }
}
.f11, .f11 * {
  font-size: 0.6875vw;
}

.f12, .f12 * {
  font-size: 0.75vw;
}

.f13, .f13 * {
  font-size: 0.8125vw;
}

.f14, .f14 * {
  font-size: 0.875vw;
}

.f15, .f15 * {
  font-size: 0.9375vw;
}

.f16, .f16 * {
  font-size: 1vw;
}

.f18, .f18 * {
  font-size: 1.125vw;
}

.f20, .f20 * {
  font-size: 1.25vw;
}

.f22, .f22 * {
  font-size: 1.375vw;
}

.f24, .f24 * {
  font-size: 1.5vw;
}

.f28, .f28 * {
  font-size: 1.75vw;
}

.f30, .f30 * {
  font-size: 1.875vw;
}

.f32, .f32 * {
  font-size: 2vw;
}

.f36, .f36 * {
  font-size: 2.25vw;
}

.f40, .f40 * {
  font-size: 2.5vw;
}

.f44, .f44 * {
  font-size: 2.75vw;
}

.f48, .f48 * {
  font-size: 3vw;
}

.f56, .f56 * {
  font-size: 3.5vw;
}

.f60, .f60 * {
  font-size: 3.75vw;
}

.f64, .f64 * {
  font-size: 4vw;
}

.f72, .f72 * {
  font-size: 4.5vw;
}

.f80, .f80 * {
  font-size: 5vw;
}

.f90, .f90 * {
  font-size: 5.625vw;
}

.f96, .f96 * {
  font-size: 6vw;
}

.f120, .f120 * {
  font-size: 7.5vw;
}

.f128, .f128 * {
  font-size: 8vw;
}

.f160, .f160 * {
  font-size: 10vw;
}

.f320, .f320 * {
  font-size: 20vw;
}

@media screen and (max-width: 1024px) {
  .f11, .f11 * {
    font-size: 0.89375vw;
  }
  .f12, .f12 * {
    font-size: 0.975vw;
  }
  .f13, .f13 * {
    font-size: 1.05625vw;
  }
  .f14, .f14 * {
    font-size: 1.1375vw;
  }
  .f15, .f15 * {
    font-size: 1.21875vw;
  }
  .f16, .f16 * {
    font-size: 1.3vw;
  }
  .f18, .f18 * {
    font-size: 1.4625vw;
  }
  .f20, .f20 * {
    font-size: 1.625vw;
  }
  .f22, .f22 * {
    font-size: 1.7875vw;
  }
  .f24, .f24 * {
    font-size: 1.95vw;
  }
  .f28, .f28 * {
    font-size: 2.275vw;
  }
  .f30, .f30 * {
    font-size: 2.4375vw;
  }
  .f32, .f32 * {
    font-size: 2.6vw;
  }
  .f36, .f36 * {
    font-size: 2.925vw;
  }
  .f40, .f40 * {
    font-size: 3.25vw;
  }
  .f44, .f44 * {
    font-size: 3.575vw;
  }
  .f48, .f48 * {
    font-size: 3.9vw;
  }
  .f56, .f56 * {
    font-size: 4.55vw;
  }
  .f60, .f60 * {
    font-size: 4.875vw;
  }
  .f64, .f64 * {
    font-size: 5.2vw;
  }
  .f72, .f72 * {
    font-size: 5.85vw;
  }
  .f80, .f80 * {
    font-size: 6.5vw;
  }
  .f90, .f90 * {
    font-size: 7.3125vw;
  }
  .f96, .f96 * {
    font-size: 7.8vw;
  }
  .f120, .f120 * {
    font-size: 9.75vw;
  }
  .f128, .f128 * {
    font-size: 10.4vw;
  }
  .f160, .f160 * {
    font-size: 13vw;
  }
  .f320, .f320 * {
    font-size: 26vw;
  }
}
@media screen and (max-width: 767px) {
  .f11, .f11 * {
    font-size: 2.3375vw;
  }
  .f12, .f12 * {
    font-size: 2.55vw;
  }
  .f13, .f13 * {
    font-size: 2.7625vw;
  }
  .f14, .f14 * {
    font-size: 2.975vw;
  }
  .f15, .f15 * {
    font-size: 3.1875vw;
  }
  .f16, .f16 * {
    font-size: 3.4vw;
  }
  .f18, .f18 * {
    font-size: 3.825vw;
  }
  .f20, .f20 * {
    font-size: 4vw;
  }
  .f22, .f22 * {
    font-size: 4.2625vw;
  }
  .f24, .f24 * {
    font-size: 4.5vw;
  }
  .f28, .f28 * {
    font-size: 5.25vw;
  }
  .f30, .f30 * {
    font-size: 5.625vw;
  }
  .f32, .f32 * {
    font-size: 6vw;
  }
  .f36, .f36 * {
    font-size: 6.75vw;
  }
  .f40, .f40 * {
    font-size: 7.5vw;
  }
  .f44, .f44 * {
    font-size: 8.25vw;
  }
  .f48, .f48 * {
    font-size: 9vw;
  }
  .f56, .f56 * {
    font-size: 10.5vw;
  }
  .f60, .f60 * {
    font-size: 11.25vw;
  }
  .f64, .f64 * {
    font-size: 12vw;
  }
  .f72, .f72 * {
    font-size: 13.5vw;
  }
  .f80, .f80 * {
    font-size: 15vw;
  }
  .f90, .f90 * {
    font-size: 16.875vw;
  }
  .f96, .f96 * {
    font-size: 18vw;
  }
  .f120, .f120 * {
    font-size: 22.5vw;
  }
  .f128, .f128 * {
    font-size: 24vw;
  }
  .f160, .f160 * {
    font-size: 30vw;
  }
  .f320, .f320 * {
    font-size: 60vw;
  }
}
.sup {
  font-size: 80%;
  vertical-align: super;
}

.sub {
  font-size: 80%;
}

.-cmsn- {
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.-cmsn- > img {
  width: 7.5vw;
}

@media screen and (max-width: 1024px) {
  .-cmsn- > img {
    width: 9vw;
  }
}
@media screen and (max-width: 767px) {
  .-cmsn- > img {
    width: 20vw;
  }
}
@keyframes staring {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  5% {
    transform: scale(1.01);
    opacity: 0.9;
  }
  10% {
    transform: scale(1);
    opacity: 0.95;
  }
  15% {
    transform: scale(1.01);
    opacity: 0.9;
  }
  20% {
    transform: scale(0.99);
    opacity: 1;
  }
  25% {
    transform: scale(1.01);
    opacity: 0.9;
  }
  30% {
    transform: scale(0.99);
    opacity: 1;
  }
  35% {
    transform: scale(1);
    opacity: 0.9;
  }
  40% {
    transform: scale(1.02);
    opacity: 1;
  }
  45% {
    transform: scale(1.01);
    opacity: 0.9;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  55% {
    transform: scale(0.99);
    opacity: 0.9;
  }
  60% {
    transform: scale(1.01);
    opacity: 0.95;
  }
  65% {
    transform: scale(1.02);
    opacity: 1;
  }
  70% {
    transform: scale(0.98);
    opacity: 0.9;
  }
  75% {
    transform: scale(1);
    opacity: 1;
  }
  80% {
    transform: scale(1.01);
    opacity: 0.9;
  }
  85% {
    transform: scale(0.99);
    opacity: 0.95;
  }
  90% {
    transform: scale(1.02);
    opacity: 1;
  }
  95% {
    transform: scale(0.98);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.01);
    opacity: 1;
  }
}
.parallax {
  transform: translateY(0);
  will-change: transform, opacity;
  backface-visibility: hidden;
}
.parallax:not(.no-fade) {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.parallax.no-fade {
  opacity: 1;
}
.parallax.true-fade {
  opacity: 1;
}

.sla-wt {
  background-image: url(/_/images/common/sla_wt.png);
  background-size: 0.3125vw;
  background-position: 0 0;
  background-repeat: repeat;
}

.sla-gr {
  background-image: url(/_/images/common/sla_gr.png);
  background-size: 0.3125vw;
  background-position: 0 0;
  background-repeat: repeat;
}

.sla-yl {
  background-image: url(/_/images/common/sla_yl.png);
  background-size: 0.3125vw;
  background-position: 0 0;
  background-repeat: repeat;
}

@media screen and (max-width: 767px) {
  .sla-wt {
    background-size: 1vw;
  }
  .sla-gr {
    background-size: 1vw;
  }
  .sla-yl {
    background-size: 1vw;
  }
}
.entry-links {
  display: flex;
  justify-content: center;
}
.entry-links .el-set {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(330px, 30vw, 440px);
  height: clamp(89.1px, 8.1vw, 118.8px);
  margin: 0 0.75vw;
}
.entry-links .el-set > img {
  width: clamp(120px, 12vw, 180px);
}
.entry-links .el-set > ul {
  margin-left: 2vw;
}
.entry-links .el-set > ul li {
  margin: 0.5vw 0;
}
.entry-links .el-set > ul li.-no- {
  pointer-events: none;
  opacity: 0.3;
}
.entry-links .el-set > ul li a {
  padding-left: clamp(20px, 1.5vw, 24px);
  background-size: clamp(14px, 0.8vw, 16px);
  background-position: left 60%;
  background-repeat: no-repeat;
}
.entry-links .el-set > ul li a span {
  font-weight: 900;
  transition: all 0.3s;
}
.entry-links .el-set > ul li a span.year {
  font-size: clamp(20px, 1.5vw, 24px);
}
.entry-links .el-set > ul li a span.muke {
  font-size: clamp(18px, 1.25vw, 20px);
}
@media (hover: hover) {
  .entry-links .el-set > ul li a:hover span {
    opacity: 0.5;
  }
}
.entry-links .el-set.-mypage- {
  background-color: #fdd000;
}
.entry-links .el-set.-mypage- a {
  background-image: url(/_/images/common/arw1w.svg);
}
.entry-links .el-set.-mynavi- {
  background-color: white;
}
.entry-links .el-set.-mynavi- a {
  background-image: url(/_/images/common/arw1y.svg);
}

@media screen and (max-width: 767px) {
  .entry-links .el-set {
    flex-direction: column;
    justify-content: flex-start;
    width: 45vw;
    height: auto;
    margin: 0 0;
    padding: 7vw 0 4vw;
  }
  .entry-links .el-set > img {
    width: 64%;
  }
  .entry-links .el-set > ul {
    margin-top: 3vw;
    margin-left: 0;
  }
  .entry-links .el-set > ul li {
    margin: 3vw 0;
  }
  .entry-links .el-set > ul li a {
    padding-left: 24px;
    background-size: 16px;
  }
  .entry-links .el-set > ul li a span.year {
    font-size: 28px;
  }
  .entry-links .el-set > ul li a span.muke {
    font-size: 16px;
  }
}
.local-index {
  position: relative;
  margin-top: 12vw;
}
.local-index .idx-ttl {
  position: absolute;
  top: -10vw;
  right: auto;
  bottom: auto;
  left: -0.08em;
  color: white;
  font-weight: 500;
  writing-mode: vertical-rl;
}
.local-index ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.local-index ul > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.local-index ul > li > a > img {
  transition: all 0.4s;
}
@media (hover: hover) {
  .local-index ul > li > a:hover > img {
    opacity: 0.6;
  }
}
.local-index ul > li > span {
  display: block;
  margin-top: 1em;
  color: white;
  font-weight: 700;
  text-align: center;
  line-height: 1.3em;
}
.local-index ul.-three- > li {
  width: 20vw;
  margin: 0 1.875vw;
}
.local-index ul.-three- > li > a {
  width: 20vw;
  height: 20vw;
}
.local-index ul.-four- > li {
  width: 17.5vw;
  margin: 0 1.875vw;
}
.local-index ul.-four- > li > a {
  width: 17.5vw;
  height: 17.5vw;
}

@media screen and (max-width: 767px) {
  .local-index {
    margin-top: 15vw;
  }
  .local-index ul > li > span {
    font-size: 3.375vw;
  }
  .local-index ul.-three-, .local-index ul.-four- {
    justify-content: flex-start;
    padding-left: 8vw;
  }
  .local-index ul.-three- > li, .local-index ul.-four- > li {
    width: 36vw;
    margin: 0 3vw;
  }
  .local-index ul.-three- > li:nth-of-type(n+3), .local-index ul.-four- > li:nth-of-type(n+3) {
    margin-top: 8vw;
  }
  .local-index ul.-three- > li > a, .local-index ul.-four- > li > a {
    width: 36vw;
    height: 36vw;
  }
}
#current-nav {
  position: fixed;
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 3.2vw;
  background-color: #e9e9e9;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s;
  z-index: 10;
}
#current-nav.-enter- {
  opacity: 1;
  pointer-events: auto;
}
#current-nav .nv {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  padding: 0 0.8em;
  cursor: pointer;
  transition: all 0.7s;
}
#current-nav .nv > span {
  color: #999;
  white-space: nowrap;
  transition: all 0.3s;
}
@media (hover: hover) {
  #current-nav .nv:hover > span {
    color: #000;
  }
}
#current-nav .nv.on {
  background-color: #fdd000;
}
#current-nav .nv.on > span {
  color: #000;
  font-weight: 500;
}

@media screen and (max-width: 1024px) {
  #current-nav {
    height: 4.4vw;
  }
  #current-nav .nv {
    padding: 0 0.5em;
  }
  #current-nav .nv > span.-oms- {
    max-width: 5em;
    text-overflow: ellipsis;
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  #current-nav {
    flex-wrap: wrap;
    height: auto;
    padding: 0.5em 0;
  }
  #current-nav.-enter-.-sphide- {
    opacity: 0 !important;
    pointer-events: none !important;
  }
  #current-nav .nv {
    padding: 0.4em 0.35em;
  }
  #current-nav .nv > span.-oms- {
    max-width: 5em;
    text-overflow: ellipsis;
    overflow: hidden;
  }
}
.cmn-pgt {
  font-weight: 700;
}

.cmn-txt,
.cmn-txt p {
  line-height: 1.8em;
}

.cmn-cpy {
  font-weight: 500;
  line-height: 1.6em;
}

@media screen and (max-width: 1024px) {
  .cmn-cpy.f32 {
    font-size: 2.32vw;
  }
}
@media screen and (max-width: 767px) {
  .cmn-cpy.f32 {
    font-size: 5.6vw;
  }
}
.cmn-eng {
  opacity: 0.6;
  font-weight: 500;
  line-height: 1.4em;
}

@media screen and (max-width: 767px) {
  .cmn-eng.f15 {
    font-size: 2.71875vw;
  }
}
.cmn-ttl-ylbar {
  display: inline-flex;
  flex-direction: column;
}
.cmn-ttl-ylbar > span {
  font-weight: 900;
}
.cmn-ttl-ylbar > h2 {
  margin-top: 1.2em;
  padding: 0.1em 0.1em 0.2em;
  background-color: #fdd000;
}
.cmn-ttl-ylbar > h2 > span {
  font-weight: 700;
}

@media screen and (max-width: 1024px) {
  .cmn-ttl-ylbar > span.f80 {
    font-size: 5.8vw;
  }
}
@media screen and (max-width: 767px) {
  .cmn-ttl-ylbar > span.f80 {
    font-size: 11.5vw;
  }
}
.cmn-ttl-ylbox {
  position: relative;
  padding: 2.1vw 0 0 1.3vw;
}
.cmn-ttl-ylbox::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  width: 3vw;
  height: 3vw;
  background-color: #fdd000;
}
.cmn-ttl-ylbox.-lag-::before {
  width: 4.5vw;
  height: 4.5vw;
}
.cmn-ttl-ylbox > span {
  position: relative;
  font-weight: 700;
  line-height: 1.3em;
}

@media screen and (max-width: 1024px) {
  .cmn-ttl-ylbox {
    padding: 2.9vw 0 0 1.6vw;
  }
  .cmn-ttl-ylbox::before {
    width: 4vw;
    height: 4vw;
  }
  .cmn-ttl-ylbox.-lag-::before {
    width: 6vw;
    height: 6vw;
  }
}
@media screen and (max-width: 767px) {
  .cmn-ttl-ylbox {
    padding: 5.9vw 0 0 3.6vw;
  }
  .cmn-ttl-ylbox::before {
    width: 9vw;
    height: 9vw;
  }
  .cmn-ttl-ylbox.-lag-::before {
    width: 13vw;
    height: 13vw;
  }
}
.cmn-ttl-bdr {
  display: inline-flex;
  padding: 0.5em 0.5em 0.6em;
  font-weight: 700;
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
}

#home {
  background-color: #0e2453;
}
#home main {
  padding-bottom: 0;
}
#home footer {
  padding-bottom: 0;
}
#home #star-bg:after {
  display: none;
}
#home .fisrt-view {
  position: relative;
  width: 100%;
  height: 100vh;
}
#home .fisrt-view .fv0 {
  position: absolute;
  top: auto;
  right: 17.5vw;
  bottom: 23vw;
  left: auto;
  width: 10vw;
  height: 10vw;
  margin: -5vw 0 0 -5vw;
  transform-origin: center;
  animation: 3s linear infinite staring;
}
#home .fisrt-view .fv1 {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 8vw;
  left: 10vw;
  width: 45.375vw;
  height: 17.650875vw;
}
#home .fisrt-view .fv1 > img {
  opacity: 0;
  transform: translateY(1.5vw);
  transition: all 1.8s 2.5s;
}
#home .fisrt-view .fv2 {
  position: absolute;
  top: auto;
  right: 7vw;
  bottom: 9.25vw;
  left: auto;
  width: 13.5vw;
  height: 1.809vw;
}
#home .fisrt-view .fv2 > img {
  opacity: 0;
  transform: translateY(-1.2vw);
  transition: all 1.8s 2.7s;
}
#home .fisrt-view .scroll_down {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 8vw;
  left: 4.5vw;
  height: 17.650875vw;
  opacity: 0;
  transform: translateY(-1vw);
  transition: all 1.8s 2.9s;
}
#home .fisrt-view .scroll_down span {
  padding: 0.2vw 0 0 0.9vw;
  color: white;
  font-size: 1.125vw;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  writing-mode: vertical-lr;
}
#home .fisrt-view .scroll_down span::before {
  content: "";
  position: absolute;
  top: auto;
  right: auto;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 68%;
  background-color: white;
}
#home .fisrt-view .scroll_down span::after {
  content: "";
  position: absolute;
  top: auto;
  right: auto;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 68%;
  background-color: #666;
  animation: scroll_down 2.5s cubic-bezier(1, 0, 0, 1) infinite;
}
#home .fisrt-view.on .fv1 > img,
#home .fisrt-view.on .fv2 > img,
#home .fisrt-view.on .scroll_down {
  opacity: 1;
  transform: translateY(0);
}
@keyframes scroll_down {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  35% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  35.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  70% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
#home .message {
  position: relative;
  margin-top: 30vw;
  padding-left: 55vw;
  padding-bottom: 60vw;
  background-image: url(/_/images/common/bgi_ground.webp);
  background-size: 100%;
  background-position: left bottom;
  background-repeat: no-repeat;
}
#home .message p {
  text-shadow: 2.5px 2.5px 2px rgba(0, 10, 34, 0.5);
}
#home .message .m-jpn {
  position: relative;
  z-index: 1;
}
#home .message .m-jpn > p {
  color: white;
  line-height: 3em;
  letter-spacing: -0.03em;
}
#home .message .m-jpn > p + p {
  margin-top: 8em;
}
#home .message .m-eng {
  position: relative;
  width: 27.5vw;
  margin-top: 18vw;
  z-index: 1;
}
#home .message .m-eng > p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 2em;
}
#home .message .m-eng > p + p {
  margin-top: 3em;
}
#home .message .m-img {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
}
#home .message .m-img .-img01- {
  position: absolute;
  top: 0vw;
  right: auto;
  bottom: auto;
  left: 28.5vw;
  width: 23vw;
}
#home .message .m-img .-img02- {
  position: absolute;
  top: 10vw;
  right: auto;
  bottom: auto;
  left: 5.5vw;
  width: 27.5vw;
}
#home .message .m-img .-img03- {
  position: absolute;
  top: 24vw;
  right: auto;
  bottom: auto;
  left: 11vw;
  width: 33vw;
}
#home .message .m-img .-img04- {
  position: absolute;
  top: 45vw;
  right: auto;
  bottom: auto;
  left: 0;
  width: 19vw;
}
#home .message .m-img .-img05- {
  position: absolute;
  top: 45vw;
  right: auto;
  bottom: auto;
  left: 22vw;
  width: 41.5vw;
}
#home .message .m-img .-img06- {
  position: absolute;
  top: 83vw;
  right: auto;
  bottom: auto;
  left: 0;
  width: 39vw;
}
#home .message .m-img .-img07- {
  position: absolute;
  top: 70vw;
  right: auto;
  bottom: auto;
  left: 32vw;
  width: 26vw;
}
#home .message .m-img .-img08- {
  position: absolute;
  top: 110vw;
  right: auto;
  bottom: auto;
  left: 6.5vw;
  width: 22vw;
}
#home .message .m-img .-img09- {
  position: absolute;
  top: 120vw;
  right: auto;
  bottom: auto;
  left: 24.5vw;
  width: 34vw;
}
#home .message .m-img .-img10- {
  position: absolute;
  top: 135vw;
  right: auto;
  bottom: auto;
  left: 0;
  width: 43.5vw;
}
#home .message .m-img .-img11- {
  position: absolute;
  top: 155vw;
  right: auto;
  bottom: auto;
  left: 5vw;
  width: 23.5vw;
}
#home .message .m-img .-img12- {
  position: absolute;
  top: 165vw;
  right: auto;
  bottom: auto;
  left: 20vw;
  width: 30vw;
}
#home .tag-list {
  width: 880px;
  margin: 10vw auto 0;
  border-bottom: 1px solid #3e5a96;
}
#home .tag-list > h2 {
  display: flex;
  align-items: center;
  color: white;
  font-size: 48px;
  font-weight: 900;
}
#home .tag-list > h2::before, #home .tag-list > h2::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  transform: translateY(4px);
  background-color: #3e5a96;
}
#home .tag-list > h2::before {
  margin-right: 0.1em;
}
#home .tag-list > h2::after {
  margin-left: 0.1em;
}
#home .tag-list #tag {
  display: flex;
  justify-content: center;
  margin: 1em 0 2em;
}
#home .tag-list #tag > li {
  display: flex;
  margin: 0 0.2em;
  padding: 1em 1.3em 1em 1.3em;
  color: white;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s;
}
#home .tag-list #tag > li.current {
  color: #000;
  background-color: #fdd000;
}
@media (hover: hover) {
  #home .tag-list #tag > li:hover {
    opacity: 0.5;
  }
}
#home #site-contents {
  margin: 7.5vw auto 0;
  width: 3200px;
}
@media screen and (min-width: 3080px) and (max-width: 3399px) {
  #home #site-contents {
    width: 2880px;
  }
}
@media screen and (min-width: 2760px) and (max-width: 3079px) {
  #home #site-contents {
    width: 2560px;
  }
}
@media screen and (min-width: 2440px) and (max-width: 2759px) {
  #home #site-contents {
    width: 2240px;
  }
}
@media screen and (min-width: 2120px) and (max-width: 2439px) {
  #home #site-contents {
    width: 1920px;
  }
}
@media screen and (min-width: 1800px) and (max-width: 2119px) {
  #home #site-contents {
    width: 1600px;
  }
}
@media screen and (min-width: 1480px) and (max-width: 1799px) {
  #home #site-contents {
    width: 1280px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1479px) {
  #home #site-contents {
    width: 960px;
  }
}
#home #site-contents::after {
  content: "";
  display: block;
  clear: both;
}
#home #site-contents .iso-item {
  position: relative;
  float: left;
  margin: 40px;
  color: white;
  background-color: white;
}
#home #site-contents .iso-item.-hr- {
  width: 560px;
  height: 240px;
}
#home #site-contents .iso-item.-sq1- {
  width: 240px;
  height: 240px;
}
#home #site-contents .iso-item.-sq2- {
  width: 560px;
  height: 560px;
}
#home #site-contents .iso-item.-vt- {
  width: 240px;
  height: 560px;
}
#home #site-contents .iso-item > h3 {
  position: absolute;
  top: -2em;
  right: auto;
  bottom: auto;
  left: 0;
  font-size: 16px;
}
#home #site-contents .iso-item .thm {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#home #site-contents .iso-item .thm > span {
  position: absolute;
  top: -0.06em;
  right: auto;
  bottom: auto;
  left: -0.06em;
  color: white;
  font-size: 48px;
  font-weight: 900;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
#home #site-contents .iso-item .thm > img {
  transition: all 0.4s;
}
@media (hover: hover) {
  #home #site-contents .iso-item .thm:hover > img {
    opacity: 0.6;
  }
}

@media screen and (max-width: 1024px) {
  #home .fisrt-view .fv0 {
    width: 13vw;
    height: 13vw;
    margin: -6vw 0 0 -6vw;
  }
  #home .fisrt-view .fv1 {
    width: 48vw;
    height: 18.672vw;
  }
  #home .fisrt-view .fv2 {
    position: absolute;
    top: auto;
    right: 7vw;
    bottom: 9.75vw;
    left: auto;
    width: 15vw;
    height: 2.01vw;
  }
  #home .fisrt-view .scroll_down {
    height: 18.672vw;
  }
  #home .fisrt-view .scroll_down span {
    padding: 0.2vw 0 0 1.1vw;
    font-size: 1.4625vw;
  }
  #home .fisrt-view .scroll_down span::before {
    height: 62%;
  }
  #home .fisrt-view .scroll_down span::after {
    height: 62%;
  }
  #home .message {
    padding-left: 50vw;
    padding-bottom: 60vw;
  }
  #home .message .m-jpn > p {
    font-size: 1.4375vw;
  }
  #home .message .m-eng {
    width: 32.5vw;
  }
  #home .message .m-eng > p {
    font-size: 1.125vw;
    line-height: 1.8em;
  }
  #home .message .m-img .-img01- {
    position: absolute;
    top: 0;
    right: auto;
    bottom: auto;
    left: 22vw;
  }
  #home .message .m-img .-img02- {
    position: absolute;
    top: 10vw;
    right: auto;
    bottom: auto;
    left: 2.5vw;
  }
  #home .message .m-img .-img03- {
    position: absolute;
    top: 30vw;
    right: auto;
    bottom: auto;
    left: 11vw;
  }
  #home .message .m-img .-img04- {
    position: absolute;
    top: 50vw;
    right: auto;
    bottom: auto;
    left: 0;
  }
  #home .message .m-img .-img05- {
    position: absolute;
    top: 55vw;
    right: auto;
    bottom: auto;
    left: 17vw;
  }
  #home .message .m-img .-img06- {
    position: absolute;
    top: 95vw;
    right: auto;
    bottom: auto;
    left: 0;
  }
  #home .message .m-img .-img07- {
    position: absolute;
    top: 80vw;
    right: auto;
    bottom: auto;
    left: 26vw;
  }
  #home .message .m-img .-img08- {
    position: absolute;
    top: 120vw;
    right: auto;
    bottom: auto;
    left: 3.5vw;
  }
  #home .message .m-img .-img09- {
    position: absolute;
    top: 130vw;
    right: auto;
    bottom: auto;
    left: 19vw;
  }
  #home .message .m-img .-img10- {
    position: absolute;
    top: 145vw;
    right: auto;
    bottom: auto;
    left: 0;
  }
  #home .message .m-img .-img11- {
    position: absolute;
    top: 165vw;
    right: auto;
    bottom: auto;
    left: 5vw;
  }
  #home .message .m-img .-img12- {
    position: absolute;
    top: 180vw;
    right: auto;
    bottom: auto;
    left: 15vw;
  }
  #home .tag-list {
    width: 80vw;
  }
  #home .tag-list > h2 {
    font-size: 3.9vw;
  }
  #home .tag-list #tag {
    margin: 0.7em 0 1.4em;
  }
  #home .tag-list #tag > li {
    font-size: 1.4vw;
  }
  #home #site-contents {
    width: 96vw;
  }
  #home #site-contents .iso-item {
    margin: 4vw;
  }
  #home #site-contents .iso-item.-hr- {
    width: 56vw;
    height: 24vw;
  }
  #home #site-contents .iso-item.-sq1- {
    width: 24vw;
    height: 24vw;
  }
  #home #site-contents .iso-item.-sq2- {
    width: 56vw;
    height: 56vw;
  }
  #home #site-contents .iso-item.-vt- {
    width: 24vw;
    height: 56vw;
  }
  #home #site-contents .iso-item > h3 {
    font-size: 1.4vw;
  }
  #home #site-contents .iso-item .thm > span {
    font-size: 4.2vw;
  }
}
@media screen and (max-width: 767px) {
  #home .fisrt-view {
    height: 150vw;
    height: 95svh;
  }
  #home .fisrt-view .fv0 {
    position: absolute;
    top: 50vw;
    right: auto;
    bottom: auto;
    left: 27vw;
    width: 20vw;
    height: 20vw;
    margin: -10vw 0 0 -10vw;
  }
  #home .fisrt-view .fv1 {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 0;
    left: 13vw;
    width: 80vw;
    height: 31.12vw;
  }
  #home .fisrt-view .fv1 > img {
    transform: translateY(4vw);
  }
  #home .fisrt-view .fv2 {
    position: absolute;
    top: auto;
    right: 7vw;
    bottom: 48vw;
    left: auto;
    width: 30vw;
    height: 4.02vw;
  }
  #home .fisrt-view .fv2 > img {
    transform: translateY(-3.5vw);
  }
  #home .fisrt-view .scroll_down {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 0;
    left: 5vw;
    height: 31.12vw;
    transform: translateY(-2vw);
  }
  #home .fisrt-view .scroll_down span {
    padding: 0.2vw 0 0 0;
    font-size: 2.8125vw;
  }
  #home .fisrt-view .scroll_down span::before {
    height: 55%;
  }
}
@media screen and (max-width: 767px) and (min-resolution: 2dppx) {
  #home .fisrt-view .scroll_down span::before {
    width: 0.5px;
  }
}
@media screen and (max-width: 767px) {
  #home .fisrt-view .scroll_down span::after {
    height: 55%;
  }
}
@media screen and (max-width: 767px) and (min-resolution: 2dppx) {
  #home .fisrt-view .scroll_down span::after {
    width: 0.5px;
  }
}
@media screen and (max-width: 767px) {
  #home .message {
    margin-top: 50vw;
    padding-left: 10vw;
    padding-right: 10vw;
    padding-bottom: 0;
  }
  #home .message .m-jpn > p {
    font-size: 3.75vw;
    line-height: 2em;
  }
  #home .message .m-jpn > p + p {
    margin-top: 4em;
  }
  #home .message .m-eng {
    display: none;
    width: auto;
  }
  #home .message .m-eng > p {
    font-size: 2.34375vw;
  }
  #home .message .m-img {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    height: 520vw;
  }
  #home .message .m-img .-img01- {
    position: absolute;
    top: 20vw;
    right: 0;
    bottom: auto;
    left: auto;
    width: 50.6vw;
  }
  #home .message .m-img .-img02- {
    position: absolute;
    top: 40vw;
    right: auto;
    bottom: auto;
    left: -5vw;
    width: 60.5vw;
  }
  #home .message .m-img .-img03- {
    position: absolute;
    top: 70vw;
    right: auto;
    bottom: auto;
    left: 11vw;
    width: 72.6vw;
  }
  #home .message .m-img .-img04- {
    position: absolute;
    top: 100vw;
    right: auto;
    bottom: auto;
    left: -10vw;
    width: 57vw;
  }
  #home .message .m-img .-img05- {
    position: absolute;
    top: 130vw;
    right: auto;
    bottom: auto;
    left: 10vw;
    width: 91.3vw;
  }
  #home .message .m-img .-img06- {
    position: absolute;
    top: 215vw;
    right: auto;
    bottom: auto;
    left: 8vw;
    width: 85.8vw;
  }
  #home .message .m-img .-img07- {
    position: absolute;
    top: 180vw;
    right: auto;
    bottom: auto;
    left: 0;
    width: 57.2vw;
  }
  #home .message .m-img .-img08- {
    position: absolute;
    top: 260vw;
    right: auto;
    bottom: auto;
    left: -20vw;
    width: 77vw;
  }
  #home .message .m-img .-img09- {
    position: absolute;
    top: 296vw;
    right: auto;
    bottom: auto;
    left: 19vw;
    width: 74.8vw;
  }
  #home .message .m-img .-img10- {
    position: absolute;
    top: 330vw;
    right: auto;
    bottom: auto;
    left: 0;
    width: 95.7vw;
  }
  #home .message .m-img .-img11- {
    position: absolute;
    top: 375vw;
    right: auto;
    bottom: auto;
    left: -10vw;
    width: 70.5vw;
  }
  #home .message .m-img .-img12- {
    position: absolute;
    top: 410vw;
    right: auto;
    bottom: auto;
    left: 15vw;
    width: 90vw;
  }
  #home .tag-list {
    width: 90vw;
  }
  #home .tag-list > h2 {
    font-size: 7.2vw;
  }
  #home .tag-list #tag {
    flex-wrap: wrap;
    margin: 0.7em 0 1em;
  }
  #home .tag-list #tag > li {
    margin: 0.5em 0.2em;
    font-size: 3.2vw;
  }
}
@media screen and (max-width: 767px) {
  #home #site-contents {
    width: 95vw;
  }
  #home #site-contents .iso-item {
    margin: 3vw 3vw 12vw 3vw;
  }
  #home #site-contents .iso-item.-hr- {
    width: 89vw;
    height: 41.5vw;
  }
  #home #site-contents .iso-item.-hr- .thm {
    display: flex;
    justify-content: center;
    height: 100%;
  }
  #home #site-contents .iso-item.-hr- .thm > img {
    width: auto;
    height: 100%;
  }
  #home #site-contents .iso-item.-sq1- {
    width: 41.5vw;
    height: 41.5vw;
  }
  #home #site-contents .iso-item.-sq2- {
    width: 89vw;
    height: 89vw;
  }
  #home #site-contents .iso-item.-vt- {
    width: 41.5vw;
    height: 41.5vw;
  }
  #home #site-contents .iso-item.-vt- .thm {
    display: flex;
    align-items: center;
    height: 100%;
  }
  #home #site-contents .iso-item > h3 {
    font-size: 3.4vw;
  }
  #home #site-contents .iso-item .thm > span {
    font-size: 6vw;
  }
}
@media screen and (max-width: 767px) {
  #home footer > small {
    margin-bottom: 6vw;
  }
}
#teaser #star-bg:after {
  display: none;
}
#teaser .teaser-view {
  position: relative;
  width: 100%;
  height: 100vh;
}
#teaser .teaser-view .tv-star {
  display: block;
  position: absolute;
  top: auto;
  right: 18vw;
  bottom: 36vh;
  left: auto;
  width: 10vw;
  height: 10vw;
  margin: -5vw 0 0 -5vw;
  transform-origin: center;
  animation: 3s linear infinite staring;
}
#teaser .teaser-view .tv-cson {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 4.5vw;
  left: 4.1vw;
  width: 63vw;
  height: 5.67vw;
  color: transparent;
  background-image: url(/_/images/home/teaser/cs_pc.svg);
  background-size: 100%;
  background-position: 0 0;
  background-repeat: no-repeat;
}
#teaser .teaser-view .tv-righ {
  position: absolute;
  top: auto;
  right: 3vw;
  bottom: 4.5vw;
  left: auto;
  color: white;
  font-size: 0.65vw;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 767px) {
  #teaser .teaser-view {
    height: 100svh;
  }
  #teaser .teaser-view .tv-star {
    position: absolute;
    top: auto;
    right: 10vw;
    bottom: 28vh;
    left: auto;
    width: 20vw;
    height: 20vw;
    margin: -10vw 0 0 -10vw;
  }
  #teaser .teaser-view .tv-cson {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 16vw;
    left: 5vw;
    width: 90vw;
    height: 112.5vw;
    background-image: url(/_/images/home/teaser/cs_sp.svg);
  }
  #teaser .teaser-view .tv-righ {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 5vw;
    left: 5vw;
    font-size: 2.83vw;
    white-space: nowrap;
    letter-spacing: 0.04em;
  }
}
