@charset "UTF-8";
/* --------------------------------------------------
foundation
-------------------------------------------------- */
:root {
  --z-index--trailer: 1500;
  --z-index--loading: 1000;
}

/* --------------------------------------------------
reset
-------------------------------------------------- */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  /*font: inherit;*/
  vertical-align: bottom;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  /*font-family: 'メイリオ', 'Meiryo', 'Noto Sans JP','ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;*/
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

img {
  vertical-align: bottom;
  border: none;
}

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

input {
  vertical-align: middle;
  width: auto;
}

input[type="radio"], input[type="checkbox"] {
  margin: 0;
}

label {
  font-weight: normal;
}

/*--------------------------------------------------
/* 印刷処理
--------------------------------------------------*/
* {
  -webkit-print-color-adjust: exact;
}

/* --------------------------------------------------
base
-------------------------------------------------- */
html {
  width: 100%;
  overflow-x: hidden;
}

@media (max-width: 1200px) {
  html {
    font-size: calc(1200 / 1900 * 1px);
    overflow-x: scroll;
    min-width: 1200px;
  }
}

@media (min-width: 1201px) and (max-width: 1899px) {
  html {
    font-size: calc(1 / 1900 * 100vw);
  }
}

@media (min-width: 1900px) {
  html {
    font-size: 1px;
  }
}

html.is-fixed,
html.is-fixed body {
  overflow: hidden !important;
}

body {
  width: 100%;
  overflow-x: hidden;
  background: #fff;
  color: #000;
  font-weight: 400;
  line-height: 0;
  font-feature-settings: "palt" 1;
  font-family: 'YakuHanRP', "M PLUS Rounded 1c", sans-serif !important;
  font-optical-sizing: auto;
  letter-spacing: 0.02em;
}

.noto{
  font-family: 'YakuHanJP', "Noto Sans JP", sans-serif !important;
}

body.is-fixed {
  overflow: hidden !important;
}

main {
  display: block;
}

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

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

svg {
  width: 100%;
  height: auto;
}

sup {
  vertical-align: top;
  font-size: smaller;
  display: inline-block;
  /*font-family: 'Roboto', 'Verdana', 'Droid Sans', sans-serif;*/
  transform: translateY(-0.1em);
}

figure {
  display: block;
}

picture {
  display: block;
}

strong {
  font-weight: bold;
}

button {
  display: block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-feature-settings: inherit;
}

/* --------------------------------------------------
layout
-------------------------------------------------- */
/* --------------------------------------------------
footer
-------------------------------------------------- */
.l-footer {
  position: absolute;
  left: 0;
  bottom: 5rem;
  width: 100%;
  min-width: 1200rem;
	height:25rem;
  justify-content: start;
  align-items: center;
	display: flex;
	flex-wrap: wrap;
}

.l-footer__copyright {
	width:100%;
	color:#fff;
}

.l-footer__copyright p{
	text-align:left;
  font-size: 10rem;
  line-height: 1;
	font-weight:400;
	padding-left:10rem;
}

.l-footer__copyright ul{
	width:220rem;
	height:25rem;
  position: absolute;
  right: 10rem;
  bottom: 0;
  justify-content: space-between;
  align-items: center;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	font-size:11rem;
	font-weight:400;
}

.l-footer__copyright ul li:nth-child(2){
	width:77rem;
}


/* --------------------------------------------------
layout
-------------------------------------------------- */
.l-wrap {
  position: relative;
  width: 100%;
  min-width: 1200rem;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
	z-index:100;
	min-height:800px;
	background: url(../img/bg.jpg) no-repeat center center;
	background-size:cover;
}

.l-wrap > * {
  width: 100%;
}

.l-cont {
	width:100%;
  min-width: 1200rem;
  margin: 0 auto;
	position:relative;
}


/* --------------------------------------------------
object
-------------------------------------------------- */
/* --------------------------------------------------
object > component
-------------------------------------------------- */
/* --------------------------------------------------
common
-------------------------------------------------- */
.c-inviewPos {
  position: relative;
}

.c-inviewPos__point {
  z-index: 100;
  position: absolute;
  width: 1px;
  height: 1px;
  top: 50%;
  left: 50%;
  pointer-events: none;
}

.c-inviewPos__point--20 {
  top: 20%;
}

.c-inviewPos__point--30 {
  top: 30%;
}

.c-inviewPos__point--40 {
  top: 40%;
}

.c-inviewPos__point--50 {
  top: 50%;
}

.c-inviewPos__point--20rem {
  top: 20rem;
}

.c-inviewPos__point--30rem {
  top: 30rem;
}

.c-inviewPos__point--40rem {
  top: 40rem;
}

.c-inviewPos__point--50rem {
  top: 50rem;
}

.c-inviewPos__point--60rem {
  top: 60rem;
}

.c-inviewPos__point--70rem {
  top: 70rem;
}

.c-inviewPos__point--80rem {
  top: 80rem;
}

.c-inviewPos__point--90rem {
  top: 90rem;
}

.c-inviewPos__point--100rem {
  top: 100rem;
}

/* --------------------------------------------------
c-loading
-------------------------------------------------- */
.c-loading {
  z-index: var(--z-index--loading);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}

.c-loading__loader {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 5px solid #007bc7;
  border-top-color: transparent;
  animation: a-loader 0.4s linear infinite;
}

@keyframes a-loader {
  100% {
    transform: rotate(360deg);
  }
}

/* --------------------------------------------------
c-share
-------------------------------------------------- */
.c-share {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10rem;
  font-size: 0;
  line-height: 0;
  margin-top: 20rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s;
}

.c-share.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* --------------------------------------------------
c-sns
-------------------------------------------------- */
.c-sns {
  position: fixed;
  top: 20px;
  right: 20px;
	z-index:110;
}

.c-sns__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.c-sns__item {
  width: 20px;
  line-height: 0;
}

.c-sns__item--youtube {
  width: 21px;
}

.c-sns__item--tiktok {
  width: 18px;
}

.c-sns__item > * {
  display: block;
}

/*.c-sns__list img {
  filter: brightness(0) saturate(100%) invert(26%) sepia(66%) saturate(4383%) hue-rotate(312deg) brightness(94%) contrast(81%);
}*/

/* --------------------------------------------------
Youtube
-------------------------------------------------- */
.yt-overlay {
  z-index: var(--z-index--trailer);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.is-youtube-overHeight .yt-overlay {
  overflow-y: scroll;
}

.yt-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.yt-close {
  z-index: 300;
  position: absolute;
  width: 64rem;
  height: 64rem;
  top: 26rem;
  right: -74rem;
  background: #007bc7;
  border-radius: 50%;
}

.yt-close::before, .yt-close::after {
  content: '';
  display: block;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18rem;
  height: 2rem;
  transform-origin: center center;
  transition: .2s;
}

.yt-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.yt-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.yt-closeArea {
  z-index: 300;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100rem;
}

.yt-videoWrap {
  width: 100%;
  min-height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  padding: 30rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.is-youtube-overHeight .yt-videoWrap {
  align-items: flex-start;
}

.yt-video {
  width: 1000rem;
  position: relative;
  margin: 0 auto;
  padding: 100rem 0;
  pointer-events: none;
}

.yt-video > * {
  pointer-events: auto;
}

.yt-player-iframeWrap {
  position: relative;
  z-index: 2000;
  width: 100%;
  height: 0px;
  padding-top: 56.25%;
  margin: 0 auto;
  background: #000;
}

.yt-player-iframeWrap::before {
  z-index: 1;
  position: absolute;
  content: '';
  display: block;
  width: 50px;
  height: 50px;
  inset: 0;
  margin: auto;
  border-radius: 50%;
  border: 5px solid #fff;
  border-top-color: transparent;
  animation: a-youtube-loader 0.4s linear infinite;
}

.yt-player-iframeWrap iframe {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@keyframes a-youtube-loader {
  100% {
    transform: rotate(360deg);
  }
}

.yt-tab {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10rem;
  margin-top: 20rem;
  pointer-events: none;
}

.yt-tab > * {
  pointer-events: auto;
}

.yt-tab__item {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.8;
  width: 320rem;
  font-weight: 500;
  min-height: 40rem;
  background: #fff;
  color: #007bc7;
  box-sizing: border-box;
  padding: 4rem 10rem;
  font-size: 18rem;
  transition-duration: .3s;
  transition-property: background;
	border:1px solid #007bc7;
}

.yt-tab__item.is-active, .yt-tab__item:hover {
  background: #007bc7;
	color:#fff;
  cursor: pointer;
}


/* --------------------------------------------------
modal
-------------------------------------------------- */
#modal {
  z-index: var(--z-index--trailer);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

#modal_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#modal #poster{
	width:470rem;
	max-width:470px;
}

#modal .modal_close {
  z-index: 300;
  position: absolute;
  width: 64rem;
  height: 64rem;
  top: calc(50vh - 400rem);
  right: calc(50% - 320rem);
  background: #007bc7;
  border-radius: 50%;
}

#modal .modal_close::before, #modal .modal_close::after {
  content: '';
  display: block;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18rem;
  height: 2rem;
  transform-origin: center center;
  transition: .2s;
}

.modal_close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal_close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* --------------------------------------------------
object > project
-------------------------------------------------- */
/* --------------------------------------------------
p-hero
-------------------------------------------------- */
.p-hero {
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-hero__box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#main{
	width:730rem;
	height:580rem;
	position:relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

#logo{
	width:730rem;
	height:440rem;
	position:absolute;
	left:0;
	top:0;
}

#logo ul{
	width:730rem;
	height:440rem;
	position:absolute;
	left:0;
	top:0;
}

#logo ul li:nth-child(1){
  width: 140rem;
	position:absolute;
	left:35rem;
	top:30rem;
}

#logo ul li:nth-child(2){
  width: 730rem;
	position:absolute;
	left:0;
	top:0;
}

#logo ul li:nth-child(3){
  width: 730rem;
	position:absolute;
	left:0;
	bottom:0;
}

#date{
	width:300rem;
	height:120rem;
	position:absolute;
	left:0;
	right:0;
	bottom:0;
	margin:auto;
}

#date ul{
	width:300rem;
	height:120rem;
	position:absolute;
	left:0;
	top:0;
}

#date ul li:nth-child(1){
	width:300rem;
	position:absolute;
	left:0;
	top:0;
}

#date ul li:nth-child(2){
	width:300rem;
	position:absolute;
	left:0;
	bottom:0;
}

/* --------------------------------------------------
p-top
-------------------------------------------------- */
.p-top {
  position: relative;
  width: 100%;
}

.p-top__hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100vh;
}

/* --------------------------------------------------
p-topNav
-------------------------------------------------- */
.p-topNav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-inline: auto;
  margin-top: 63rem;
}

.p-topNav__list {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20rem;
}

.p-topNav__item {
  width: 294rem;
  height: 60rem;
}

.p-topNav__btn {
  width: 294rem;
  height: 60rem;
  display: block;
  cursor: pointer;
  transition: .2s;
}

.p-topNav__btn:hover{
	opacity:1.0;
	animation: poyon-bounce 0.6s ease-in-out forwards;
}

@keyframes poyon-bounce {
	0%   { transform: scale(1.0, 1.0); }
  30%  { transform: scale(1.1, 1.1); }
  50%  { transform: scale(0.8, 0.8); }
  70%  { transform: scale(1.06, 1.06); }
  100% { transform: scale(1.0, 1.0); }
}

/* --------------------------------------------------
object > utility
-------------------------------------------------- */
/* --------------------------------------------------
Utility
-------------------------------------------------- */
.u-fontAdjust {
  font-feature-settings: "palt" 1;
}

.u-fontAdjust-none {
  font-feature-settings: normal;
}

.u-font-Noto-Sans-JP {
  /*font-family: YakuHanJP, 'Noto Sans JP', sans-serif;*/
}

.u-hover {
  transition: opacity .3s;
}

.u-hover:hover {
  opacity: .5;
  cursor: pointer;
}

/* --------------------------------------------------
vendor
-------------------------------------------------- */
/* --------------------------------------------------
animation
-------------------------------------------------- */
.c-loading {
  opacity: 1;
}

.is-loaded .c-loading {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}

