@charset "UTF-8";
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slideDownHeader {
  0% {
    transform: translateY(-80px);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes slideUp {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes topOfFooterSP {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -960px 0;
  }
}
@keyframes hoverTextShowup {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes hoverTextShowLeft {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes ticker {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-100%);
  }
}
/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove {
  0% {
    bottom: 87px;
  }
  100% {
    bottom: -3px;
  }
}
/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes noiseElm {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 123px 456px;
  }
}
/* === 共通レイアウト
==================================== */
* {
  box-sizing: border-box;
  word-break: break-word;
}

img {
  max-width: 100%;
  height: auto;
}

.w100 {
  width: 100%;
  height: auto;
}

.img_fit-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img_fit-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

a {
  color: inherit;
}

.txt_underline {
  text-decoration: underline;
}

.link-disabled {
  pointer-events: none;
}

@media (min-width: 769px) {
  .hv_op {
    transition: opacity 0.4s;
  }
  .hv_op:hover {
    opacity: 0.7;
  }
  .hv_up {
    display: inline-block;
    overflow: hidden;
  }
  .hv_up .hv_up_in {
    display: inline-block;
    transform: translateY(0);
  }
  .hv_up:hover .hv_up_in {
    animation: hoverTextShowup 0.75s cubic-bezier(0.4, 0, 0, 1) forwards;
  }
  .hv_left {
    display: inline-block;
    overflow: hidden;
  }
  .hv_left .hv_left_in {
    display: inline-block;
    transform: translateX(0);
  }
  .hv_left:hover .hv_left_in {
    animation: hoverTextShowLeft 0.75s cubic-bezier(0.4, 0, 0, 1) forwards;
  }
}
@media (max-width: 768px) {
  .pc-visible {
    display: none;
  }
}

@media (min-width: 769px) {
  .sp-visible {
    display: none;
  }
}

.f-en {
  font-family: "Work Sans", sans-serif;
}

.t-indent {
  padding-left: 1em;
  text-indent: -1em;
}

/* === body
==================================== */
html {
  scroll-behavior: smooth;
}

.anchor-target {
  scroll-margin-top: 60px;
}
@media (min-width: 769px) {
  .anchor-target {
    scroll-margin-top: 80px;
  }
}

body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  color: #121212;
  font-size: 14px;
  letter-spacing: 0;
  background: #F6F6F6;
}

.cmn-secttl {
  text-align: center;
  overflow: hidden;
}
.cmn-secttl span {
  display: inline-block;
  font-size: 57px;
  line-height: 1.12765957;
  font-weight: 800;
  color: #D7DBE3;
  transform: translateY(100%);
}
@media (min-width: 769px) {
  .cmn-secttl span {
    font-size: 138px;
    font-size: clamp(113px, 10.102489019vw, 138px);
  }
}
.cmn-secttl.in-view span {
  animation: hoverTextShowup 0.75s cubic-bezier(0.4, 0, 0, 1) forwards;
}

#noise {
  z-index: 99;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  pointer-events: none;
}

/* === 下層ページ共通
==================================== */
.subpage-wrapper {
  background: #fff;
}

.subpage-ttl {
  position: relative;
  min-height: 340px;
  background: #002AF1;
}
@media (min-width: 769px) {
  .subpage-ttl {
    min-height: 370px;
  }
}
.subpage-ttl .scroll-txt {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 340px;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
}
@media (min-width: 769px) {
  .subpage-ttl .scroll-txt {
    height: 370px;
  }
}
.subpage-ttl .scroll-txt::before, .subpage-ttl .scroll-txt::after {
  display: inline-block;
  position: relative;
  top: 40px;
  left: 0;
  color: #0025D5;
  font-family: "Work Sans", sans-serif;
  font-size: 220px;
  font-weight: 800;
  padding-right: 0.3em;
}
@media (min-width: 769px) {
  .subpage-ttl .scroll-txt::before, .subpage-ttl .scroll-txt::after {
    top: 4px;
    font-size: 280px;
  }
}
.subpage-ttl-in {
  z-index: 2;
  position: relative;
  color: #fff;
  padding: 84px 20px 0;
}
@media (min-width: 769px) {
  .subpage-ttl-in {
    width: 87.5549048316vw;
    margin: 0 auto;
    padding: 55px 0 0;
  }
}
.subpage-ttl .ttl .sub {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  overflow: hidden;
  margin-bottom: 25px;
}
@media (min-width: 769px) {
  .subpage-ttl .ttl .sub {
    margin-bottom: 17px;
  }
}
.subpage-ttl .ttl .sub span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  transform: translateY(100%);
  animation: hoverTextShowup 0.75s cubic-bezier(0.4, 0, 0, 1) 0.3s forwards;
}
.subpage-ttl .ttl .sub span::before {
  content: "";
  width: 39px;
  height: 1px;
  background: #fff;
}
.subpage-ttl .ttl .main {
  font-size: 57px;
  font-weight: 800;
  overflow: hidden;
}
@media (min-width: 769px) {
  .subpage-ttl .ttl .main {
    font-size: 130px;
  }
}
.subpage-ttl .ttl .main span {
  display: inline-block;
  transform: translateY(100%);
  animation: hoverTextShowup 0.75s cubic-bezier(0.4, 0, 0, 1) 0.5s forwards;
}
.subpage-ttl .category-nav {
  margin-top: 78px;
  display: flex;
  gap: 48px;
}
@media (min-width: 769px) {
  .subpage-ttl .category-nav {
    position: absolute;
    top: 180px;
    right: 0;
    gap: 54px;
    margin: 0;
  }
}
.subpage-ttl .category-nav a {
  position: relative;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
}
@media (min-width: 769px) {
  .subpage-ttl .category-nav a {
    font-size: 18px;
  }
}
.subpage-ttl .category-nav .current {
  color: #F929C7;
}
.subpage-ttl .category-nav .current::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 100%;
  background: #F929C7;
  position: absolute;
  top: -17px;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 769px) {
  .subpage-ttl .category-nav .current::before {
    width: 10px;
    height: 10px;
  }
}

.subpage-contents {
  padding: 87px 20px 80px;
}
@media (min-width: 769px) {
  .subpage-contents {
    margin: 0 auto;
    width: 87.5549048316vw;
  }
}
.subpage-contents a {
  text-decoration: underline;
  color: #002AF1;
}
@media (min-width: 769px) {
  .subpage-contents a {
    transition: opacity 0.4s;
  }
  .subpage-contents a:hover {
    opacity: 0.7;
  }
}

@media (min-width: 769px) {
  .subpage-2col {
    display: flex;
    align-items: flex-start;
  }
  .subpage-2col .table_of_content {
    width: 24.4509516837vw;
    flex-shrink: 0;
    padding: 103px 15px 153px 6.2225475842vw;
    position: sticky;
    top: 0;
  }
  .subpage-2col .table_of_content .toc-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .subpage-2col .table_of_content .toc-list a {
    color: #002AF1;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    opacity: 0.5;
    display: flex;
    align-items: baseline;
    gap: 15px;
  }
  .subpage-2col .table_of_content .toc-list a::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 100%;
    flex-basis: 10px;
    flex-shrink: 0;
  }
  .subpage-2col .table_of_content .toc-list .current {
    opacity: 1;
  }
  .subpage-2col .table_of_content .toc-list .current::before {
    background: #002AF1;
  }
  .subpage-2col .subpage-contents {
    flex: 1;
    border-left: 1px solid #002AF1;
    padding: 103px 6.2225475842vw 153px 7.027818448vw;
  }
}
.cmn-block + .cmn-block {
  margin-top: 80px;
}
.cmn-block-ttl {
  font-size: 20px;
  font-weight: 700;
  color: #002AF1;
  line-height: 1.7;
  border-bottom: 1px solid;
  padding-bottom: 10px;
  margin-bottom: 35px;
}
@media (min-width: 769px) {
  .cmn-block-ttl {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
.cmn-block .b-ttl {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 10px;
}
@media (min-width: 769px) {
  .cmn-block .b-ttl {
    font-size: 20px;
  }
}
.cmn-block p {
  font-size: 14px;
  line-height: 1.71428571;
}
@media (min-width: 769px) {
  .cmn-block p {
    font-size: 16px;
    line-height: 2;
  }
}

.cmn-block-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media (min-width: 769px) {
  .cmn-block-list {
    margin-top: 50px;
    gap: 0;
  }
}
.b-ttl + .cmn-block-list {
  margin-top: 0;
}
.cmn-block-list li {
  position: relative;
  display: flex;
  align-items: baseline;
  font-size: 14px;
  line-height: 1.71428571;
}
@media (min-width: 769px) {
  .cmn-block-list li {
    font-size: 16px;
    line-height: 2;
  }
}
.cmn-block-list li::before {
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  background: #D7DBE3;
  border-radius: 100%;
  margin: 0 10px 0 12px;
}
@media (min-width: 769px) {
  .cmn-block-list li::before {
    margin: 0 18px 0 3px;
  }
}
.cmn-block-list li .l-in {
  flex: 1;
}

/* === ページネーション
==================================== */
.pagination {
  width: 100%;
  margin: 68px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #002AF1;
}
@media (min-width: 769px) {
  .pagination {
    margin: 100px auto 0;
  }
}

.pagination-arrow {
  position: relative;
  display: block;
  color: #D7DBE3;
  pointer-events: none;
}
@media (max-width: 768px) {
  .pagination-arrow {
    width: 8px;
    height: 12px;
  }
}
.pagination-arrow span {
  display: inline-block;
  padding: 0 28px;
  font-family: "Work Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
}
.pagination-arrow::before {
  content: "";
  width: 8px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: #D7DBE3;
  -webkit-mask: url(../images/common/arrow.svg) center right/100% auto no-repeat;
  mask: url(../images/common/arrow.svg) center right/100% auto no-repeat;
}
.pagination-arrow.prev::before {
  transform: scale(-1, 1);
  right: auto;
  left: 0;
}
@media (max-width: 768px) {
  .pagination-arrow span {
    display: none;
  }
}

.pagination-arrow.active {
  color: #002AF1;
  pointer-events: auto;
}
.pagination-arrow.active::before {
  background: #002AF1;
}

.pagination-num {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  gap: 10px;
}
.pagination-num a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  border-radius: 100%;
}
@media (min-width: 769px) {
  .pagination-num a {
    width: 48px;
    height: 48px;
    font-size: 15px;
  }
}
.pagination-num .current {
  background: #002AF1;
  color: #fff;
  pointer-events: none;
}

.cmn-list a,
.cmn-list button {
  position: relative;
  color: #121212;
}
@media (min-width: 769px) {
  .cmn-list a,
  .cmn-list button {
    transition: color 0.4s;
  }
  .cmn-list a .thumbnail img,
  .cmn-list button .thumbnail img {
    transition: transform 0.4s;
  }
  .cmn-list a:hover,
  .cmn-list button:hover {
    color: #002AF1;
  }
  .cmn-list a:hover .thumbnail img,
  .cmn-list button:hover .thumbnail img {
    transform: scale(1.1);
  }
}
.cmn-list .category {
  z-index: 2;
  position: absolute;
  top: -5px;
  left: 0;
  display: inline-block;
  background: #F929C7;
  color: #fff;
  font-family: "Work Sans", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  min-width: 54px;
  height: 17px;
  padding: 4px 5px 2px 10px;
}
@media (min-width: 769px) {
  .cmn-list .category {
    font-size: 12px;
    min-width: 76px;
    height: 26px;
    padding: 0 5px 0 13px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.cmn-list .category::after {
  position: absolute;
  top: 0;
  right: -5px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 17px 5px 0 0;
  border-color: #F929C7 transparent transparent transparent;
}
@media (min-width: 769px) {
  .cmn-list .category::after {
    right: -8px;
    border-width: 26px 8px 0 0;
  }
}
.cmn-list .category.c-news,
.cmn-list .category.c-topics {
  background: #C145C9;
}
.cmn-list .category.c-news::after,
.cmn-list .category.c-topics::after {
  border-color: #C145C9 transparent transparent transparent;
}
.cmn-list .thumbnail {
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 10px;
}
@media (min-width: 769px) {
  .cmn-list .thumbnail {
    margin-bottom: 18px;
  }
}
.cmn-list .thumbnail img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cmn-list .date {
  font-family: "Work Sans", sans-serif;
  font-size: 11px;
  margin-bottom: 3px;
}
@media (min-width: 769px) {
  .cmn-list .date {
    font-size: 14px;
    margin-bottom: 8px;
  }
}
.cmn-list .title {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.76923077;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media (min-width: 769px) {
  .cmn-list .title {
    font-size: 16px;
    line-height: 1.75;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}

.cmn-list.type01 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 33px 23px;
}
@media (min-width: 769px) {
  .cmn-list.type01 {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 5.8565153734vw;
  }
}

.cmn-btn {
  width: 221px;
  height: 44px;
  margin: 33px auto 0;
}
@media (min-width: 769px) {
  .cmn-btn {
    width: 300px;
    height: 60px;
    margin: 57px auto 0;
  }
}
.cmn-btn .cmn-btn-in {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: #002AF1;
  color: #fff;
}
.cmn-btn .cmn-btn-in .hv_txt {
  overflow: hidden;
}
.cmn-btn .cmn-btn-in .txt {
  display: inline-block;
  padding: 0 35px;
}
.cmn-btn .cmn-btn-in .txt.f-en {
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}
@media (min-width: 769px) {
  .cmn-btn .cmn-btn-in .txt.f-en {
    font-size: 18px;
  }
}
.cmn-btn .cmn-btn-in .arrow-right {
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  width: 6px;
  height: 9px;
  background: url(../images/common/arrow.svg) right center/contain no-repeat;
}
@media (min-width: 769px) {
  .cmn-btn .cmn-btn-in .arrow-right {
    width: 8px;
    height: 12px;
    right: 35px;
  }
}
.cmn-btn .cmn-btn-in .arrow-left {
  position: absolute;
  top: 50%;
  left: 25px;
  transform: translateY(-50%) scale(-1, 1);
  width: 6px;
  height: 9px;
  background: url(../images/common/arrow.svg) left center/contain no-repeat;
}
@media (min-width: 769px) {
  .cmn-btn .cmn-btn-in .arrow-left {
    width: 8px;
    height: 12px;
    left: 35px;
  }
}

.menu-open .header {
  z-index: auto;
}

.header {
  position: relative;
  color: #fff;
  height: 60px;
}
.header::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #002AF1;
  z-index: 1;
}
@media (min-width: 769px) {
  .header {
    height: 80px;
  }
}

.header-in {
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 769px) {
  .header-in {
    align-items: center;
  }
}

.header-logo-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: baseline;
  margin-right: auto;
}
.header-logo-wrap .hdlogo-wta {
  padding-left: 25px;
  /*margin-left: 25px;*/
  /*border-left: 1px solid #758FC1;*/
}
.header-logo-wrap .hdlogo-wta img {
  width: auto;
  height: 22px;
}

.header-logo {
  width: 146px;
  margin: 21px auto 0 15px;
}
@media (min-width: 769px) {
  .header-logo {
    width: 177px;
    margin: 0 auto 0 36px;
  }
}

@media screen and (max-width: 999px) {
  .header-nav {
    display: none;
  }
}

.header-nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px 2.196193265vw;
  font-size: clamp(12px, 1.0248901903vw, 14px);
  font-weight: 700;
}
.header-nav-list li {
  overflow: hidden;
}
.header-nav-list a span {
  display: inline-block;
  transform: translateY(0);
}
.header-nav-list a:hover span {
  animation: hoverTextShowup 0.75s cubic-bezier(0.4, 0, 0, 1) forwards;
}

.header-language {
  z-index: 2;
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  font-size: 10px;
  margin-top: 27px;
  margin-right: 13px;
  display: flex;
  gap: 5px;
}
@media (min-width: 769px) {
  .header-language {
    align-items: center;
    font-size: 16px;
    font-size: clamp(12px, 1.1713030747vw, 16px);
    margin: 0 3.953147877vw 0 3.2942898975vw;
    text-align: right;
  }
}

.header-fixed {
  z-index: 999;
  position: relative;
  display: flex;
}
.header-fixed [class*=btn-] {
  width: 64px;
  height: 60px;
}
@media (min-width: 769px) {
  .header-fixed [class*=btn-] {
    width: 85px;
    height: 80px;
  }
}
.header-fixed [class*=btn-] .btn-in {
  z-index: 10;
  position: fixed;
  top: 0;
  width: 64px;
  height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
@media (min-width: 769px) {
  .header-fixed [class*=btn-] .btn-in {
    width: 85px;
    height: 80px;
    gap: 10px;
  }
}
.header-fixed [class*=btn-] .icon {
  position: relative;
  display: block;
  height: 17px;
}
@media (min-width: 769px) {
  .header-fixed [class*=btn-] .icon {
    height: 22px;
  }
}
.header-fixed [class*=btn-] .txt {
  font-family: "Work Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .header-fixed [class*=btn-] .txt {
    font-size: 10px;
    transform: scale(0.8);
    transform-origin: center;
  }
}
.header-fixed .noise-elm {
  position: relative;
}
.header-fixed .noise-elm:before {
  z-index: 20;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  animation: noiseElm 1s steps(10) infinite;
  background: url(../images/common/noise.png);
  pointer-events: none;
}
.header-fixed .btn-ticket {
  z-index: 1;
}
.header-fixed .btn-ticket .btn-in {
  background: #F929C7;
}
.header-fixed .btn-ticket .icon {
  width: 20px;
}
@media (min-width: 769px) {
  .header-fixed .btn-ticket .icon {
    width: 26px;
  }
}
.header-fixed .btn-menu {
  position: relative;
  z-index: 3;
}
.header-fixed .btn-menu .btn-in {
  background: #121212;
}
.header-fixed .btn-menu .icon {
  width: 40px;
  display: flex;
  justify-content: center;
}
.header-fixed .btn-menu .icon span {
  position: absolute;
  display: inline-block;
}
.header-fixed .btn-menu .icon span::after {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  border-radius: 0.5px;
  background-color: #fff;
  transition: 0.4s;
}
.menu-open .header-fixed .btn-menu .icon span::after {
  width: 24px;
}
@media (min-width: 769px) {
  .header-fixed .btn-menu .icon span::after {
    width: 24px;
  }
  .menu-open .header-fixed .btn-menu .icon span::after {
    width: 32px;
  }
}
.header-fixed .btn-menu .icon span:nth-child(1) {
  bottom: 12px;
  transition: 0.4s;
}
.menu-open .header-fixed .btn-menu .icon span:nth-child(1) {
  bottom: 6px;
  transform: rotate(45deg);
}
@media (min-width: 769px) {
  .header-fixed .btn-menu .icon span:nth-child(1) {
    bottom: 16px;
  }
  .menu-open .header-fixed .btn-menu .icon span:nth-child(1) {
    bottom: 8px;
  }
}
.header-fixed .btn-menu .icon span:nth-child(2) {
  bottom: 6px;
  transition: 0.4s;
}
.menu-open .header-fixed .btn-menu .icon span:nth-child(2) {
  opacity: 0;
}
@media (min-width: 769px) {
  .header-fixed .btn-menu .icon span:nth-child(2) {
    bottom: 8px;
  }
}
.header-fixed .btn-menu .icon span:nth-child(3) {
  bottom: 0;
  transition: 0.4s;
}
.menu-open .header-fixed .btn-menu .icon span:nth-child(3) {
  bottom: 6px;
  transform: rotate(-45deg);
}
@media (min-width: 769px) {
  .menu-open .header-fixed .btn-menu .icon span:nth-child(3) {
    bottom: 8px;
  }
}

.gnav {
  z-index: 2;
  position: fixed;
  top: 0;
  right: 0;
  width: 0;
  height: 100vh;
  background: rgba(18, 18, 18, 0.52);
  overflow: hidden;
  transition: width 0.6s 0.1s;
}
.menu-open .gnav {
  width: 100%;
}
.gnav-in {
  position: fixed;
  top: 0;
  right: -100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
  width: 100%;
  max-width: 683px;
  height: 100vh;
  background: #fff;
  transition: right 0.6s 0.1s;
}
.menu-open .gnav-in {
  right: 0;
}
.gnav-contents {
  padding: 60px 4.5333333333vw 60px 5.3333333333vw;
  color: #121212;
  width: 100%;
  max-width: 683px;
  margin: auto;
}
@media (min-width: 769px) {
  .gnav-contents {
    padding: 48px 60px 30px 85px;
  }
}
.gnav .sns-list {
  display: flex;
  gap: 34px;
}
@media (min-width: 769px) {
  .gnav .sns-list {
    gap: 28px;
  }
}
.gnav .sns-list a {
  display: block;
  background: #F929C7;
}
.gnav .sns-list a img {
  opacity: 0;
}
.gnav .sns-list .yt {
  width: 23px;
  height: 16px;
}
.gnav .sns-list .yt a {
  -webkit-mask: url(../images/common/icon-yt.svg) center/contain no-repeat;
  mask: url(../images/common/icon-yt.svg) center/contain no-repeat;
}
.gnav .sns-list .tw {
  width: 20px;
  height: 20px;
}
.gnav .sns-list .tw a {
  -webkit-mask: url(../images/common/icon-x.svg) center/contain no-repeat;
  mask: url(../images/common/icon-x.svg) center/contain no-repeat;
}
.gnav .sns-list .insta {
  width: 20px;
  height: 20px;
}
.gnav .sns-list .insta a {
  -webkit-mask: url(../images/common/icon-insta.svg) center/contain no-repeat;
  mask: url(../images/common/icon-insta.svg) center/contain no-repeat;
}
.gnav .sns-list .fb {
  width: 10px;
  height: 20px;
}
.gnav .sns-list .fb a {
  -webkit-mask: url(../images/common/icon-fb.svg) center/contain no-repeat;
  mask: url(../images/common/icon-fb.svg) center/contain no-repeat;
}
.gnav .gnav-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 20px;
  margin-top: 58px;
}
@media (min-width: 769px) {
  .gnav .gnav-list {
    gap: 30px 90px;
    margin-top: 65px;
  }
}
.gnav .gnav-list .main {
  overflow: hidden;
}
.gnav .gnav-list .main span {
  display: inline-block;
  transform: translateY(100%);
  transition: transform 0.75s cubic-bezier(0.4, 0, 0, 1) 0.6s;
}
.menu-open .gnav .gnav-list .main span {
  transform: translateY(0%);
}
.gnav .gnav-list a {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #002AF1;
  font-weight: 700;
  font-size: 9px;
}
@media (min-width: 769px) {
  .gnav .gnav-list a {
    font-size: 11px;
  }
}
.gnav .gnav-list a .f-en {
  font-size: 16px;
}
@media (min-width: 769px) {
  .gnav .gnav-list a .f-en {
    font-size: 22px;
  }
}

.gnav .gnav-list li:nth-child(1) .main span {
  transition-delay: 0.55s;
}

.gnav .gnav-list li:nth-child(2) .main span {
  transition-delay: 0.6s;
}

.gnav .gnav-list li:nth-child(3) .main span {
  transition-delay: 0.65s;
}

.gnav .gnav-list li:nth-child(4) .main span {
  transition-delay: 0.7s;
}

.gnav .gnav-list li:nth-child(5) .main span {
  transition-delay: 0.75s;
}

.gnav .gnav-list li:nth-child(6) .main span {
  transition-delay: 0.8s;
}

.gnav .gnav-list li:nth-child(7) .main span {
  transition-delay: 0.85s;
}

.gnav .gnav-list li:nth-child(8) .main span {
  transition-delay: 0.9s;
}

.gnav .gnav-list li:nth-child(9) .main span {
  transition-delay: 0.95s;
}

.gnav .gnav-list li:nth-child(10) .main span {
  transition-delay: 1s;
}

.gnav .gnav-list li:nth-child(11) .main span {
  transition-delay: 1.05s;
}

.gnav .gnav-list li:nth-child(12) .main span {
  transition-delay: 1.1s;
}

.gnav .gnav-list li:nth-child(13) .main span {
  transition-delay: 1.15s;
}

.gnav .gnav-list li:nth-child(14) .main span {
  transition-delay: 1.2s;
}

.gnav .gnav-list li:nth-child(15) .main span {
  transition-delay: 1.25s;
}

.gnav .gnav-list li:nth-child(16) .main span {
  transition-delay: 1.3s;
}

.gnav .gnav-list li:nth-child(17) .main span {
  transition-delay: 1.35s;
}

.gnav .gnav-list li:nth-child(18) .main span {
  transition-delay: 1.4s;
}

.gnav .gnav-list li:nth-child(19) .main span {
  transition-delay: 1.45s;
}

.gnav .gnav-list li:nth-child(20) .main span {
  transition-delay: 1.5s;
}

@media (max-width: 768px) {
  .top_of_footer {
    position: relative;
    width: 100%;
    height: 78px;
  }
  .top_of_footer span {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 78px;
    background: url(../images/common/top_of_footer_sp.svg) center bottom/960px 78px repeat-x;
    animation: topOfFooterSP 20s linear infinite;
  }
}

.footer {
  position: relative;
  background: #002AF1;
  color: #fff;
  padding: 75px 20px 70px;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 769px) {
  .footer {
    padding: 92px 0 110px;
  }
}
@media (min-width: 769px) {
  .footer .footer-in {
    position: relative;
    width: 87.5549048316vw;
    margin: 0 auto;
  }
}
.footer .pagetop {
  position: absolute;
  top: 35px;
  right: 20px;
  width: 114px;
}
@media (min-width: 769px) {
  .footer .pagetop {
    top: -33px;
    right: 0;
    width: 157px;
  }
}
.footer .pagetop a {
  display: block;
  position: relative;
  z-index: 1;
}
.footer .pagetop::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/common/pagetop-circle.svg) center/100% no-repeat;
  animation: rotation 15s linear infinite;
  animation-direction: reverse;
}
.footer .footer-logo {
  width: 176px;
}
@media (min-width: 769px) {
  .footer .footer-logo {
    width: 401px;
  }
}
.footer .footer-wta {
  margin-top: 23px;
  width: 111px;
}
@media (min-width: 769px) {
  .footer .footer-wta {
    margin-top: 35px;
    width: 230px;
  }
}
.footer .footer-bottom {
  margin-top: 100px;
}
@media (min-width: 769px) {
  .footer .footer-bottom {
    margin-top: 55px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }
}
.footer .sns-list {
  display: flex;
  gap: 26px;
}
.footer .sns-list .yt {
  width: 23px;
}
.footer .sns-list .tw {
  width: 19px;
}
.footer .sns-list .insta {
  width: 20px;
}
.footer .sns-list .fb {
  width: 10px;
}
.footer .copyright {
  margin-top: 25px;
  font-size: 9px;
  font-weight: 500;
  opacity: 0.7;
}
@media (min-width: 769px) {
  .footer .copyright {
    margin-top: 0;
    font-size: 11px;
  }
}

.wysiwyg {
  font-size: inherit;
  line-height: 1.8;
  word-break: break-all;
}

.wysiwyg p {
  margin: 15px 0;
  min-height: 1em;
}

.wysiwyg h1,
.wysiwyg h2,
.wysiwyg h3,
.wysiwyg h4,
.wysiwyg h5,
.wysiwyg h6 {
  font-weight: bold;
}

.wysiwyg h1 {
  font-size: 200%;
}

.wysiwyg h2 {
  font-size: 180%;
}

.wysiwyg h3 {
  font-size: 160%;
}

.wysiwyg h4 {
  font-size: 140%;
}

.wysiwyg h5 {
  font-size: 120%;
}

.wysiwyg h6 {
  font-size: 100%;
}

.wysiwyg img {
  max-width: 100%;
  height: auto;
}

.wysiwyg a {
  color: #002AF1;
  text-decoration: underline;
}

.wysiwyg a:hover {
  text-decoration: none;
}

.wysiwyg strong,
.wysiwyg b {
  font-weight: bold;
}

.wysiwyg em {
  font-style: italic;
}

.wysiwyg sup {
  vertical-align: super;
  font-size: smaller;
}

.wysiwyg sub {
  vertical-align: sub;
  font-size: smaller;
}

.wysiwyg code {
  display: block;
  padding: 20px;
  background: #eee;
}

.wysiwyg ul,
.wysiwyg ol {
  padding-left: 1.5em;
}

.wysiwyg ul {
  list-style: disc;
}

.wysiwyg ol {
  list-style: decimal;
}

.wysiwyg table {
  width: 100% !important;
  border-collapse: collapse;
  font-size: inherit;
}

.wysiwyg table th,
.wysiwyg table td {
  padding: 5px;
  border: 1px solid #ccc;
  text-align: left;
}

.wysiwyg table th {
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .wysiwyg .table-wrap {
    overflow: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .wysiwyg .table-wrap::-webkit-scrollbar {
    height: 15px;
  }
  .wysiwyg .table-wrap::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .wysiwyg .table-wrap::-webkit-scrollbar-thumb {
    background: #bbb;
  }
}
.wysiwyg blockquote {
  padding-left: 1em;
  border-left: 2px solid #D7DBE3;
}
/*# sourceMappingURL=map/common.css.map */