@charset "UTF-8";
@font-face {
  font-family: "corpLogo-medium";
  src: url("../fonts/Corporate-Logo-Medium-ver3.woff") format("woff");
}
@font-face {
  font-family: "corpLogo";
  src: url("../fonts/Corporate-Logo-Bold-ver3.woff") format("woff");
}
@font-face {
  font-family: "851gkktt";
  src: url("../fonts/851Gkktt_005.ttf") format("trueType");
}
@font-face {
  font-family: "8511h-kktt";
  src: url("../fonts/851H-kktt_004.ttf") format("trueType");
}
@font-face {
  font-family: "hui";
  src: url("../fonts/HuiFontP29.ttf") format("trueType");
}
@font-face {
  font-family: "teguse";
  src: url("../fonts/073 TEGUSE - Kanaka Font_240904.ttf") format("trueType");
}
@font-face {
  font-family: "makiba";
  src: url("../fonts/MakibaFont13.ttf") format("trueType");
}
html {
  font-size: 16px;
}

body {
  font-family: "Jost", "Noto Sans JP", sans-serif;
  color: #fff;
  background-color: #122444;
  overflow-y: scroll;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type="checkbox"],
input[type="radio"] {
  display: none;
}

input[type="submit"],
input[type="button"],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* TOP
==============================*/
.p-loading {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  color: #fff000;
  background-color: #000;
}

.p-loading__circle {
  width: 50px;
  height: 50px;
  border: 4px solid #fff000;
  border-top: 4px solid #000;
  border-radius: 50%;
  -webkit-animation: 2s linear loading infinite;
  animation: 2s linear loading infinite;
}

.p-loading__text {
  font-family: "851gkktt", "Noto Sans JP", sans-serif;
  font-size: 18px;
  margin-top: 20px;
}

@-webkit-keyframes loading {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes loading {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.l-hd {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.p-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-hd__list {
  display: flex;
}

.p-hd__item {
  margin-left: 30px;
}

.p-section {
  padding: 0 50px;
}
@media screen and (max-width: 768px) {
  .p-section {
    padding: 0 25px;
  }
}

.p-drawer-btn {
  position: fixed;
  z-index: 100;
  top: 30px;
  right: 30px;
  width: 60px;
  height: 44px;
  cursor: pointer;
}

.p-drawer-btn__border {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: 0.3s transform;
}
.p-drawer-btn__border--01 {
  top: 0;
}
.p-drawer-btn__border--02 {
  top: 20px;
  transition: 0.3s opacity;
}
.p-drawer-btn__border--03 {
  top: 40px;
}

.p-drawer-btn.is-active .p-drawer-btn__border--01 {
  transform: translateY(20px) rotate(40deg);
}
.p-drawer-btn.is-active .p-drawer-btn__border--02 {
  opacity: 0;
}
.p-drawer-btn.is-active .p-drawer-btn__border--03 {
  transform: translateY(-20px) rotate(-40deg);
}

.l-drawer {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: none;
}

.p-drawer {
  font-size: 24px;
  width: 100%;
  height: 100%;
  padding-top: 30px;
  background-color: rgba(4, 66, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-drawer {
    font-size: 20px;
    background-color: rgb(4, 66, 0);
  }
}

.p-drawer__list {
  padding: 20px;
}

.p-drawer__link {
  display: inline-block;
  padding: 6px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.p-drawer__item:not(:first-child) {
  margin-top: 20px;
}

.p-drawer__item.p-drawer__item--sns-icons {
  margin-top: 60px;
}

.p-sns-icons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  height: 40px;
}

.p-sns-icon {
  height: 40px;
  width: auto;
}
.p-sns-icon--small {
  height: 30px;
}
.p-sns-icon--x {
  aspect-ratio: 240/245;
}
.p-sns-icon--instagram {
  aspect-ratio: 432/432;
}
.p-sns-icon--youtube {
  aspect-ratio: 734/518;
}

/* MAIN VISUAL
==============================*/
.stars {
  position: fixed;
  z-index: -10;
  width: 100%;
  height: 100vh;
  background: #000;
  overflow: hidden;
}

.star {
  position: absolute;
  display: block;
  background-color: #fff; /* 星の色 */
  border-radius: 50%;
  box-shadow: 0 0 4px 2px rgba(255, 255, 255, 0.2); /* 星の影 */
  opacity: 0;
  -webkit-animation: twinkle 5s infinite;
  animation: twinkle 5s infinite;
}

/* 星がキラキラ光るアニメーション */
@-webkit-keyframes twinkle {
  0% {
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
@keyframes twinkle {
  0% {
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
.p-main-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
}
@media screen and (max-width: 768px) {
  .p-main-wrapper {
    height: 80vh;
  }
}

.p-main-title__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.p-main-image__wrapper {
  margin-inline: auto;
  width: clamp(200px, 42vw, 500px);
  padding-right: 2rem;
}

.p-main-image--img {
  -webkit-animation: fly-anime 1.6s 3.6s forwards;
  animation: fly-anime 1.6s 3.6s forwards;
  transform: translate(500%, -30%) rotate(-50deg);
}

@-webkit-keyframes fly-anime {
  0% {
    transform: translate(500%, -30%) rotate(-50deg);
  }
  50% {
    transform: translate(-50%, 0) rotate(20deg);
  }
  80% {
    transform: translate(0, 0) rotate(10deg);
  }
  90% {
    transform: translate(0, 0) rotate(0);
  }
  95% {
    transform: translate(0, 0) rotate(6deg);
  }
  100% {
    transform: translate(0, 0) rotate(0);
  }
}

@keyframes fly-anime {
  0% {
    transform: translate(500%, -30%) rotate(-50deg);
  }
  50% {
    transform: translate(-50%, 0) rotate(20deg);
  }
  80% {
    transform: translate(0, 0) rotate(10deg);
  }
  90% {
    transform: translate(0, 0) rotate(0);
  }
  95% {
    transform: translate(0, 0) rotate(6deg);
  }
  100% {
    transform: translate(0, 0) rotate(0);
  }
}
.p-main-title__main {
  display: inline-block;
  color: #fff000;
  margin-top: -0.2em;
}

.p-main-title__name {
  position: relative;
  font-size: clamp(48px, 10vw, 120px);
  -webkit-animation: blur-anime 1s 1s forwards;
  animation: blur-anime 1s 1s forwards;
  transform: scale(1.2);
  filter: blur(10px);
  opacity: 0;
}
.p-main-title__name::after {
  -webkit-animation: line-anime 1s 1.6s forwards;
  animation: line-anime 1s 1.6s forwards;
  -webkit-animation-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
  animation-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.03em;
  width: 0;
  height: 0.1em;
  background-color: #fff000;
}

@-webkit-keyframes blur-anime {
  0% {
    transform: scale(1.2);
    filter: blur(10px);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    filter: blur(0);
    opacity: 1;
  }
}

@keyframes blur-anime {
  0% {
    transform: scale(1.2);
    filter: blur(10px);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    filter: blur(0);
    opacity: 1;
  }
}
@-webkit-keyframes line-anime {
  0% {
    left: 50%;
    width: 0;
  }
  60% {
    left: -10%;
    width: 120%;
  }
  100% {
    left: -2%;
    width: 104%;
  }
}
@keyframes line-anime {
  0% {
    left: 50%;
    width: 0;
  }
  60% {
    left: -10%;
    width: 120%;
  }
  100% {
    left: -2%;
    width: 104%;
  }
}
.p-main-title__name-en {
  display: flex;
  justify-content: space-between;
  text-align: center;
  overflow: hidden;
  margin-top: -0.3em;
  margin-left: -2%;
  width: 104%;
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(32px, 7vw, 86px);
  font-weight: 400;
  transform: scale(1, 0.5);
}

.p-main-title__name-en span {
  display: inline-block;
  -webkit-animation: text-fadeUp 1s 2.4s forwards;
  animation: text-fadeUp 1s 2.4s forwards;
  transform: translateY(105%);
}
.p-main-title__name-en span:nth-child(2) {
  -webkit-animation-delay: 2.46s;
  animation-delay: 2.46s;
}
.p-main-title__name-en span:nth-child(3) {
  -webkit-animation-delay: 2.52s;
  animation-delay: 2.52s;
}
.p-main-title__name-en span:nth-child(4) {
  -webkit-animation-delay: 2.58s;
  animation-delay: 2.58s;
}
.p-main-title__name-en span:nth-child(5) {
  -webkit-animation-delay: 2.64s;
  animation-delay: 2.64s;
}
.p-main-title__name-en span:nth-child(6) {
  -webkit-animation-delay: 2.7s;
  animation-delay: 2.7s;
}
.p-main-title__name-en span:nth-child(7) {
  -webkit-animation-delay: 2.76s;
  animation-delay: 2.76s;
}
.p-main-title__name-en span:nth-child(8) {
  -webkit-animation-delay: 2.82s;
  animation-delay: 2.82s;
}
.p-main-title__name-en span:nth-child(9) {
  -webkit-animation-delay: 2.88s;
  animation-delay: 2.88s;
}
.p-main-title__name-en span:nth-child(10) {
  -webkit-animation-delay: 2.94s;
  animation-delay: 2.94s;
}
.p-main-title__name-en span:nth-child(11) {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}
.p-main-title__name-en span:nth-child(12) {
  -webkit-animation-delay: 3.06s;
  animation-delay: 3.06s;
}
.p-main-title__name-en span:nth-child(13) {
  -webkit-animation-delay: 3.12s;
  animation-delay: 3.12s;
}

.p-main-title__name-en span:not(:first-child) {
  margin-left: -0.05em;
}

.p-main-title__name-en span:not(:last-child) {
  margin-right: -0.05em;
}

.p-main-title__name-en span:nth-child(10) {
  margin-left: -0.15em;
  margin-right: -0.1em;
}

@-webkit-keyframes text-fadeUp {
  0% {
    transform: translateY(105%);
  }
  50% {
    transform: translateY(-20%);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes text-fadeUp {
  0% {
    transform: translateY(105%);
  }
  50% {
    transform: translateY(-20%);
  }
  100% {
    transform: translateY(0);
  }
}
/* ABOUT
==============================*/
.p-about__content {
  margin-top: 60px;
  text-align: center;
  font-family: serif;
  font-weight: 100;
  font-size: 20px;
  font-style: italic;
}
@media screen and (max-width: 768px) {
  .p-about__content {
    font-size: 18px;
  }
}

.p-about__text {
  display: block;
  margin-top: 12px;
}

/* NEWS
==============================*/
.p-section__news {
  background-image: url(../images/studio-hatch_icon-01\(500x420\)_transparent.png);
  background-color: rgba(0, 0, 0, 0.6);
  background-blend-mode: overlay;
  background-repeat: no-repeat;
  background-position: right 80%;
  transform: rotate(0deg);
}
@media screen and (max-width: 768px) {
  .p-section__news {
    background-size: 80%;
  }
}

.c-news-list {
  letter-spacing: 0.1em;
  margin-top: 27px;
}
@media screen and (max-width: 768px) {
  .c-news-list {
    margin-top: 32px;
    padding-inline: 10px;
  }
}

.c-news-item {
  display: flex;
  margin-top: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e6e6e6;
}
@media only screen and (min-width: 768px) {
  .c-news-item:hover > .c-news-item__title,
  .c-news-item:hover > .c-news-item__date {
    transition: 0.3s;
    opacity: 0.7;
  }
}
@media only screen and (max-width: 768px) {
  .c-news-item {
    padding: 20px 0 13px;
  }
}
@media only screen and (max-width: 480px) {
  .c-news-item {
    flex-direction: column;
  }
}

.p-news-item {
  opacity: 0;
}

.p-news-item.is-blink {
  -webkit-animation: blink 0.8s forwards;
  animation: blink 0.8s forwards;
}

@-webkit-keyframes blink {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  15% {
    opacity: 0.3;
  }
  30% {
    opacity: 0;
  }
  35% {
    opacity: 0.6;
  }
  40% {
    opacity: 0;
  }
  55% {
    opacity: 0.6;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes blink {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  15% {
    opacity: 0.3;
  }
  30% {
    opacity: 0;
  }
  35% {
    opacity: 0.6;
  }
  40% {
    opacity: 0;
  }
  55% {
    opacity: 0.6;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.c-news-item__date,
.c-news-item__title {
  line-height: 2.6;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 480px) {
  .c-news-item__date,
  .c-news-item__title {
    font-size: 14px;
  }
}

.c-news-item__date {
  width: 140px;
  color: #c0c0c0;
}
@media only screen and (max-width: 480px) {
  .c-news-item__date {
    line-height: 1;
    width: 100%;
  }
}

.c-news-item__title {
  color: #fff;
  padding-left: 32px;
  width: calc(100% - 87px);
  word-wrap: break-word;
}
@media only screen and (max-width: 480px) {
  .c-news-item__title {
    margin-top: 10px;
    padding-left: 0;
    width: 100%;
    line-height: 1.57;
  }
}

.p-news__button {
  margin-top: 80px;
  text-align: center;
}

/* CREATORS PROFILE
==============================*/
.p-profile {
  background: transparent;
  margin-top: 100px;
  padding-inline: 12%;
}
@media screen and (max-width: 768px) {
  .p-profile {
    margin-top: 80px;
    padding-inline: 0;
  }
}

.p-profile__content:not(:first-child) {
  margin-top: 100px;
}

.p-profile__heading {
  position: relative;
  margin-top: 30px;
  padding-left: 2em;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .p-profile__heading {
    padding-left: 1.5em;
  }
}
.p-profile__heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background-color: #fff000;
}

.p-profile__heading.is-fadeDown {
  -webkit-animation: fadeDown 1s forwards;
  animation: fadeDown 1s forwards;
}

@-webkit-keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.p-profile__heading--hoyo::before {
  background-color: lawngreen;
}

.p-profile__heading--takami::before {
  background-color: #991e28;
}

.p-profile__name-en {
  padding-left: 1em;
  font-weight: 500;
}
.p-profile__body {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-profile__body {
    flex-direction: column;
    padding-inline: 20px;
  }
}

.p-profile__text {
  flex: 1;
}

.p-profile__image {
  flex: 1;
  align-self: flex-start;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.p-profile__image-img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-profile__button {
  margin-top: 80px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-profile__button {
    margin-top: 40px;
  }
}

/* gallery
==============================*/
.p-gallery {
  margin-top: 100px;
}

.p-gallery__content:not(:first-child) {
  margin-top: 100px;
}

.p-gallery__sub-heading {
  font-size: 32px;
  opacity: 0;
}

.p-gallery__sub-heading.is-fadeDown {
  -webkit-animation: fadeDown 1.2s forwards;
  animation: fadeDown 1.2s forwards;
}

.p-movie {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .p-movie {
    grid-template-columns: 1fr;
    padding-inline: 10px;
  }
}

.p-movie__item {
  position: relative;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .p-movie__item:hover .p-movie__img-thumb {
    transform: scale(1.1);
  }
}

.p-movie__text {
  position: absolute;
  z-index: 2;
  bottom: 0;
  width: 100%;
  padding-top: 10px;
  background-color: rgba(31, 31, 31, 0.3);
}

.p-movie__date {
  font-family: serif;
  font-size: 14px;
  font-style: italic;
}

.p-movie__title--light {
  font-weight: 300;
}

.p-movie__img {
  position: relative;
  margin-left: 10%;
  overflow: hidden;
}

.p-movie__img-play-button {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
}

.p-movie__img-thumb {
  transition: 0.4s transform;
}

.p-gallery__button {
  margin-top: 80px;
  text-align: center;
}

.p-design {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .p-design {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-inline: 10px;
  }
}

.p-design__item {
  position: relative;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .p-design__item:hover .p-design__image-img {
    transform: scale(1.07);
  }
}

.p-design__item:nth-of-type(n + 4) {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-design__item:nth-of-type(n + 4) {
    display: block;
  }
}

.p-design__item--takami:nth-of-type(n + 4) {
  display: block;
}

.p-design__image {
  aspect-ratio: 1/1;
  overflow: hidden;
}

.p-design__image-img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  transition: 0.4s transform;
}

.p-design__text {
  margin-top: 20px;
}

.modal {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(34, 34, 34, 0.8);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal.is-open {
  visibility: visible;
  opacity: 1;
}

.modal__body {
  padding: 24px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .modal__body {
    margin-inline: 20px;
    padding: 14px;
  }
}

.modal__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "851gkktt", "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #222;
}
@media screen and (max-width: 768px) {
  .modal__heading {
    font-size: 16px;
  }
}

.modal__close-button {
  cursor: pointer;
}

.modal__content {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  max-width: 600px;
}
@media screen and (max-width: 768px) {
  .modal__content {
    margin-top: 14px;
  }
}

.modal__image {
  aspect-ratio: 1/1;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

/* BIOGRAPHY
==============================*/
.p-section-biography {
  background-color: rgba(0, 0, 0, 0.4);
}

.p-biography__item {
  margin-top: 100px;
}

.p-biography__heading {
  text-align: center;
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  .p-biography__heading {
    font-size: 32px;
  }
}

.p-biography__img {
  margin-top: 30px;
  width: 60%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-biography__img {
    width: 100%;
  }
}

.p-biography__timeline {
  position: relative;
  margin-top: 30px;
}
.p-biography__timeline::before {
  position: absolute;
  top: 0;
  left: 45px;
  width: 4px;
  height: 100%;
  content: "";
  background: #8066a6;
  background: #574b90;
  background: #fff000;
}
@media screen and (max-width: 768px) {
  .p-biography__timeline::before {
    left: 15px;
  }
}

.p-timeline__item {
  margin-left: 80px;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-timeline__item {
    margin-left: 40px;
  }
}

.p-timeline__year {
  position: relative;
  font-family: "8511h-kktt", "Noto Sans JP", sans-serif;
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-size: 3em;
  font-weight: bold;
  letter-spacing: 3px;
  color: rgba(233, 30, 99, 0.4);
  color: rgba(179, 153, 217, 0.6);
  color: rgba(255, 240, 0, 0.6);
}
@media screen and (max-width: 768px) {
  .p-timeline__year {
    font-size: 2em;
  }
}
.p-timeline__year::before {
  content: "";
  position: absolute;
  top: 42%;
  left: -38px;
  width: 10px;
  height: 30px;
  border-radius: 50%;
  transform: rotate(60deg);
  border: 3px solid #574b90;
  background-color: #bca8db;
  background-color: #fdf79a;
}
@media screen and (max-width: 768px) {
  .p-timeline__year::before {
    left: -28px;
  }
}

.p-timeline__text {
  font-size: 16px;
  line-height: 2;
  margin-top: 10px;
  padding-left: 20px;
  border-left: 1px solid #8066a6;
}
@media screen and (max-width: 768px) {
  .p-timeline__text {
    margin-top: 0;
    padding-top: 10px;
    padding-left: 0;
    border-top: 1px solid #8066a6;
    border-left: none;
  }
}

/* FOOTER
==============================*/
.p-ft {
  padding-top: 100px;
  padding-bottom: 100px;
  background-image: linear-gradient(to bottom, #000, transparent 20% 80%, #000);
}

.p-ft__inner {
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
}
@media only screen and (max-width: 1023px) {
  .p-ft__inner {
    justify-content: center;
  }
}

.p-ft__left {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-ft__left {
    flex-direction: column;
  }
}

.p-ft__logo {
  max-width: 100%;
}
@media only screen and (max-width: 767px) {
  .p-ft__logo {
    max-width: 240px;
  }
}

.p-ft__logo-link {
  display: flex;
  align-items: center;
}

.p-ft__logo-text {
  font-size: 24px;
  font-weight: bold;
  color: #fff000;
}

.p-ft__logo-img {
  margin-top: -20px;
  width: 80px;
  height: auto;
}

.p-ft__icons {
  margin-left: 60px;
}
@media screen and (max-width: 768px) {
  .p-ft__icons {
    margin-top: 40px;
    margin-left: 0;
  }
}

.p-ft__right {
  width: 30%;
}
@media only screen and (max-width: 1023px) {
  .p-ft__right {
    display: none;
  }
}

.p-ft__list-item {
  letter-spacing: 0.1em;
  color: #fff;
  margin-left: 33px;
}
@media only screen and (min-width: 768px) {
  .p-ft__list-item:hover {
    transition: 0.5s;
    opacity: 0.5;
  }
}

.p-ft__list-item:not(:first-child) {
  margin-top: 20px;
}

.p-ft__link {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
}

.p-ft__copyright {
  margin-top: 60px;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-ft__copyright {
    margin-top: 60px;
  }
}

/*  page-hoyo.php
==============================*/
/*  page-takami.php
==============================*/
/*  news home.php
==============================*/
.p-section__news-lower {
  background-image: url();
  background-color: rgba(0, 0, 0, 0.3);
}

.p-news-item {
  border: none;
  margin-top: 40px;
  padding: 0 30px;
}
@media only screen and (min-width: 768px) {
  .p-news-item:hover .p-news-item__title {
    transform: translateX(10px);
  }
}
@media screen and (max-width: 768px) {
  .p-news-item {
    margin-top: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #e6e6e6;
  }
}

.p-news-item.is-fadeUp {
  -webkit-animation: fadeUp 0.8s forwards;
  animation: fadeUp 0.8s forwards;
}

@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.p-news-item__date {
  line-height: 2;
  padding: 10px 0;
}

.p-news-item__title {
  position: relative;
  margin-left: 2em;
  padding-top: 10px;
  padding-right: 5em;
  padding-bottom: 10px;
  border-left: solid 2px #fff000;
  line-height: 2;
  transition: all 0.3s;
}
.p-news-item__title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-top: solid 2px #fff000;
  border-right: solid 2px #fff000;
}
@media screen and (max-width: 768px) {
  .p-news-item__title {
    margin-left: 0;
    padding: 0 2em 10px 0;
    border-left: none;
  }
}

/*  news single.php
==============================*/
.p-news__content {
  margin-top: 40px;
}

.p-news__heading {
  margin-top: 20px;
  font-size: 24px;
}

.p-news__category {
  margin-top: 20px;
}

.p-news__body {
  margin-top: 30px;
}

.p-news__body p {
  margin-top: 20px;
  padding-inline: 20px;
}

/*  404.php
==============================*/
.container-404 {
  text-align: center;
}

.error-404__text {
  margin-top: 60px;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .error-404__text {
    font-size: 18px;
  }
}

/*  共通
==============================*/
.l-home-firstview {
  height: 100vh;
}
@media screen and (max-width: 768px) {
  .l-home-firstview {
    height: 70vh;
  }
}

.l-lower-firstview {
  height: 10vh;
}
@media screen and (max-width: 768px) {
  .l-lower-firstview {
    height: 0;
  }
}

.l-section {
  padding-top: 120px;
  padding-bottom: 60px;
  background: #000;
  color: #fff;
}
.l-section--news {
  background: transparent;
}

.l-section--gradient {
  background-color: transparent;
  background-image: linear-gradient(
    to bottom,
    transparent,
    #000 10% 90%,
    transparent
  );
}

.l-section--gradient-opacity {
  background-color: transparent;
  background-image: linear-gradient(
    to bottom,
    transparent,
    rgba(0, 0, 0, 0) 10% 90%,
    transparent
  );
}

.navigation.pagination {
  margin-top: 120px;
  text-align: center;
}

.page-numbers {
  padding: 10px 20px;
  color: #000;
  background-color: #fff;
}

.p-lower-top--hoyo {
  height: 80vh;
  background-image: linear-gradient(to bottom, #000, transparent 20% 80%, #000),
    url(../images/earth-1756274_1920.jpg);
  background-size: cover;
}

.p-lower-top--takami {
  background-image: url();
}

.p-lower-top-title-wrapper {
  padding-top: 20px;
}

.p-lower-top-title__main {
  margin-top: 0;
  padding-top: 200px;
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  color: lawngreen;
}

.p-lower-top-title__main--takami {
  color: #fff;
  font-weight: 100;
}

.p-lower-top-title__main--news {
  color: #fff000;
  padding-top: 0;
}

.p-lower-top-title__part {
  font-size: clamp(24px, 4vw, 40px);
}

.p-lower-top-title__name-en {
  font-size: clamp(24px, 5vw, 60px);
}

.p-lower-top-title__name {
  font-size: clamp(48px, 10vw, 120px);
}

.p-lower-top-title__name--takami {
  font-family: "hui", "Noto Sans JP", sans-serif;
}

.page-top-button {
  position: fixed;
  z-index: 9000;
  right: 50px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  background-color: #000;
}

.page-top-button::after {
  position: absolute;
  top: 45%;
  left: 55%;
  width: 10px;
  height: 10px;
  content: "";
  transform: rotate(-45deg) translate(-50%, -50%);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.c-width {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 1500px) {
  .c-width {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .c-width {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.c-width--narrow {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 1500px) {
  .c-width--narrow {
    padding-left: 120px;
    padding-right: 120px;
  }
}
@media only screen and (max-width: 767px) {
  .c-width--narrow {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.c-width--medium {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.c-width--small {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.c-width--ft {
  max-width: 1440px;
}

.c-spacer {
  height: 300px;
  background-image: linear-gradient(to bottom, #000, transparent 20% 80%, #000);
}
@media screen and (max-width: 768px) {
  .c-spacer {
    display: none;
  }
}

.c-section-title {
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-size: 48px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .c-section-title {
    font-size: 40px;
  }
}
.c-section-title--hoyo {
  font-weight: normal;
  color: lawngreen;
}
.c-section-title--takami {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
}

.c-section-title.is-slideIn {
  -webkit-animation: slideInLeft 0.6s forwards;
  animation: slideInLeft 0.6s forwards;
}

@-webkit-keyframes slideInLeft {
  0% {
    transform: translateX(-200px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-200px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.c-section-text {
  letter-spacing: 0.01em;
  line-height: 2;
  opacity: 0;
}
.c-section-text--profile:not(:first-child) {
  margin-top: 20px;
}

.c-section-text.is-fadeDown {
  -webkit-animation: fadeDown 1s forwards;
  animation: fadeDown 1s forwards;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.c-introduction-title {
  font-family: "8511h-kktt", "Noto Sans JP", sans-serif;
}

.c-part-title {
  font-family: "851gkktt", "Noto Sans JP", sans-serif;
  font-size: 32px;
  color: lawngreen;
}

.c-button {
  display: inline-block;
  position: relative;
  padding: 16px 50px;
  width: 260px;
  text-align: center;
  color: #fff;
  border: solid 1px #fff;
  transition: all 0.3s;
}
.c-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transition: all 0.3s;
}

@media only screen and (min-width: 768px) {
  .c-button--green:hover {
    border: solid 1px lawngreen;
    box-shadow: 0 0 16px lawngreen;
    color: lawngreen;
    opacity: 1;
  }
  .c-button--green:hover::after {
    translate: 6px 0;
    border-top: solid 2px lawngreen;
    border-right: solid 2px lawngreen;
  }
}

@media only screen and (min-width: 768px) {
  .c-button--yellow:hover {
    border: solid 1px #fff000;
    box-shadow: 0 0 16px #fff000;
    color: #fff000;
    opacity: 1;
  }
  .c-button--yellow:hover::after {
    translate: 6px 0;
    border-top: solid 2px #fff000;
    border-right: solid 2px #fff000;
  }
}

.u-font--base {
  font-family: "Jost", "Noto Sans JP", sans-serif;
}

.u-font--corporate {
  font-family: "corpLogo", "Noto Sans JP", sans-serif;
}

.u-font--corporate-medium {
  font-family: "corpLogo-medium", "Noto Sans JP", sans-serif;
}

.u-font--poppins {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
}

.u-font--second {
  font-family: "851gkktt", "Noto Sans JP", sans-serif;
}

.u-font--third {
  font-family: "8511h-kktt", "Noto Sans JP", sans-serif;
}

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

@media only screen and (min-width: 768px) {
  .u-hover-line:hover .u-hover-line-child::before {
    opacity: 1;
    width: 100%;
    left: 0;
  }
  .u-hover-line-child {
    position: relative;
  }
  .u-hover-line-child::before {
    display: block;
    width: 0;
    height: 2px;
    left: 50%;
    bottom: -0.3em;
    content: "";
    background-color: #fff;
    position: absolute;
    opacity: 0;
    transition: all 0.2s;
  }
}
@media only screen and (min-width: 768px) {
  .u-hover-scale img {
    transition: transform 0.2s;
  }
  .u-hover-scale:hover img {
    transform: scale(1.1);
  }
}
