@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;
}

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;
  font-size: calc(1 / 750 * 100vw);
}

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: 'YakuHanJP', "Noto Sans JP", sans-serif !important;
  font-optical-sizing: auto;
  letter-spacing: 0.02em;
}


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
-------------------------------------------------- */



/* --------------------------------------------------
layout
-------------------------------------------------- */
.l-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
	z-index:100;
}

.l-wrap > * {
  width: 100%;
}

.l-cont {
	width: 100%;
  margin: 0 auto;
}



/* --------------------------------------------------
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 #f6a800;
  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: center;
  align-items: center;
  gap: 10rem;
  font-size: 0;
  line-height: 0;
  margin-top: 40rem;
}

/* --------------------------------------------------
c-sns
-------------------------------------------------- */
ul.c-sns__list {
	position:relative;
	width:650rem;
	margin:60rem auto 0;
	display: flex;
  justify-content: space-between;
  align-items: start;
	flex-wrap: wrap;
}

ul.c-sns__list li{
	position:relative;
	width:89rem;
}

/* --------------------------------------------------
official
-------------------------------------------------- */
ul.official {
	position:relative;
	width:400rem;
	margin:50rem auto 0;
	display: flex;
  justify-content: space-between;
  align-items: start;
	flex-wrap: wrap;
}

ul.official li{
	position:relative;
	width:400rem;
	margin-bottom:20rem;
}

/* --------------------------------------------------
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, 1.0);
  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: 60rem;
  height: 60rem;
  top: 40rem;
  right: 0rem;
}
/*
.yt-close::before, .yt-close::after {
  content: '';
  display: block;
  background: #c80400;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80rem;
  height: 4rem;
  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 {
  z-index: 1500;
  width: 660rem;
  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: 325rem;
  font-weight: 500;
  min-height: 50rem;
  background: #fff;
  color: #f6a800;
  box-sizing: border-box;
  padding: 4rem 10rem;
  font-size: 24rem;
  transition-duration: .3s;
  transition-property: background;
	border-radius:10rem;
	border:2px solid #f6a800;
}

.yt-tab__item.is-active, .yt-tab__item:hover {
  background: #f6a800;
	color:#fff;
  cursor: pointer;
}


/* --------------------------------------------------
object > project
-------------------------------------------------- */
/* --------------------------------------------------
p-hero
-------------------------------------------------- */
.p-top{
	width:100%;
	position:relative;
}

.p-hero {
	width:100%;
	position:relative;
}

/* --------------------------------------------------
p-topNav
-------------------------------------------------- */
.p-topNav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 650rem;
  margin-inline: auto;
}

.p-topNav__list {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 30rem;
}

.p-topNav__item {
  width: 100%;
}

.p-topNav__btn {
  width: 100%;
  height: 100rem;
  display: block;
  border: 2px solid #db318c;
	color:#db318c;
  font-size: 36rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
	border-radius:100rem;
}

/* --------------------------------------------------
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;
}

/* --------------------------------------------------
vendor
-------------------------------------------------- */

/* --------------------------------------------------
footer
-------------------------------------------------- */
.l-footer {
	width:100%;
  display: flex;
  align-items: center;
	position:relative;
	padding:70rem 0 50rem;
	background-color:#1a1a1a;
	margin-top:50rem;
}

.l-footer__copyright {
	width:100%;
  text-align: center;
  font-size: 20rem;
  line-height: 1;
	color:#898989;
}

.l-footer__copyright ul.billing{
	width:214rem;
  position: relative;
	margin:0 auto;
	display: flex;
  justify-content: space-between;
  align-items: center;
	flex-wrap: wrap;
}

.l-footer__copyright ul.billing li:nth-child(1){
	width:85rem;
}

.l-footer__copyright ul.billing li:nth-child(2){
	width:31rem;
}

.l-footer__copyright ul.billing li:nth-child(3){
	width:57rem;
}

.l-footer__copyright p{
	margin-top:40rem;
}

.l-footer__copyright ul.footer_link{
	width:100%;
	position:relative;
	display: flex;
  justify-content: center;
  align-items: center;
	flex-wrap: wrap;
  gap: 50rem;
	font-size:20rem;
	font-weight:500;
	margin-top:50rem;
	letter-spacing:2rem;
}

/* --------------------------------------------------
menu
-------------------------------------------------- */
#nav_toggle {
	cursor:pointer;
	position: fixed;
	box-sizing:border-box;
	right:0;
	top:0;
	width:90rem;
	height:90rem;
	z-index:900;
}

#nav_toggle::before {
  content: '';
  display: block;
  background: #36b0c9;
  position: absolute;
  top: 0;
  left: 0;
	width:90rem;
	height:90rem;
	border-radius:0 0 0 20rem;
	transition: all 0.6s;
}


#nav_toggle #nav_inner{
	position: absolute;
	width:60rem;
	height:36rem;
	left:16rem;
	top:27rem;
}

#nav_toggle span {
	position: absolute;
	left: 0;
	width: 100%;
	height:4rem;
	background-color: #fff;
	transition: all 0.6s;
}

#nav_toggle span:nth-of-type(1) {
  top: 0;
}

#nav_toggle span:nth-of-type(2) {
	top:calc(50% - 2rem);
}

#nav_toggle span:nth-of-type(3) {
  bottom: 0;
}

.open #nav_toggle::before {
  background: #000000;
}

.open #nav_toggle span:nth-of-type(1) {
	transform: translateY(15rem) rotate(-35deg);
}

.open #nav_toggle span:nth-of-type(2) {
  opacity: 0;
}

.open #nav_toggle span:nth-of-type(3) {
	transform: translateY(-15rem) rotate(35deg);
}


#menu{
	width:100%;
	height:100%;
	position: fixed;
	right: -100%;
	top:0;
	height:100%;
	background-color:#36b0c9;
	z-index:800;
	 transition: all .8s ease;
}

.open #menu{
	right: 0;
}

.menu_inner{
	width:100%;
	height:100%;
	overflow-y: auto;
}

#menu ul{
	width:100%;
	padding:150rem 0 50rem;
	position:relative;
	margin:0 auto;
}

#menu ul li{
	width:610rem;
	margin:0 auto 80rem;
}

#menu ul li:last-child{
	width:610rem;
	margin:0 auto 0;
}

/* --------------------------------------------------
animation
-------------------------------------------------- */

.c-loading {
  opacity: 1;
}

.is-loaded .c-loading {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}

