@charset "UTF-8";
/* ------------------------------------------------
  font
------------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@600&family=Zen+Maru+Gothic:wght@700&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Symbols+Outlined');

:root {
  --10px: 0.625rem;
  --12px: 0.75rem;
  --bk: #23282D;
  --red-bg: #BD272D;
  --red-bg2: #D14147;
  --red-bg3: #9C1A1F;
  --matteblack: #23282D;
  --nav-heigt-pc: 84px;
  --main-width-pc: 980px;
}

.noto-serif-normal {
  font-family: 'Noto Serif JP', serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.oswald-600 {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.zen-maru-gothic-bold {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-style: normal;
}

.Poppins-500 {
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

html,body {
  font-family: 'Geist','Noto Sans JP', sans-serif;
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
}

html {
  height: 100%;
}

body {
  height: 100%;
}

footer {
  position: sticky;
  top: 100vh;
  width: 100%;
}

a {
  transition: 0.5s all;
}

p {
  text-align: justify;
}

.w-main {
  max-width: var(--main-width-pc);
}

@media screen and (max-width: 767px) {
  .w-main {
    width: auto;
  }
}

.fadein,
.fadeinup,
.fadeinleft、
.fadeinright {
  visibility: hidden;
}

.animate__animated {
  visibility: visible;
  animation-duration: 3s;
}

@keyframes fuwafuwaY {
  0%, 100% {
    transform: translateY(-0%) translateX(-0%) /*rotate(135deg)*/;
  }
  50% {
    transform: translateY(-15%) translateX(-0%) /*rotate(135deg)*/;
  }
}

.anime-fuwafuwaY {
  animation: 2s fuwafuwaY infinite;
}


@keyframes fuwafuwaX {
  0%, 100% {
    transform: translateX(0) translateY(-50%) /*rotate(45deg)*/;
  }
  50% {
    transform: translateX(-2px) translateY(-50%) /*rotate(45deg)*/;
  }
}

.anime-fuwafuwaX {
  animation: 1s fuwafuwaX infinite;
}


@keyframes flash {
	0%,
	100% {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}
}

@keyframes bounce {
  0%   { transform: scale(1.0, 1.0) translate(0%, 0%); }
  30%  { transform: scale(1.5, 0.5) translate(0%, 0%); }
  40%  { transform: scale(1.0, 1.0) translate(0%, 0%); }
  50%  { transform: scale(0.8, 1.3) translate(0%, -20%); } 
  60%  { transform: scale(1.0, 1.0) translate(0%, -30%); }
  100% { transform: scale(1.0, 1.0) translate(0%, 0%); }
}

/* -----------------------------------------------
  bmenu バーガーメニュー ここから
------------------------------------------------ */

.btn-bmenu {
  position: fixed;
  top: 5px;
  left: 0;
  display: flex;
  height: 50px;
  width: 50px;
  background-color: transparent;
  justify-content: center;
  align-items: center;
  z-index: 200;
}

.btn-bmenu span,
.btn-bmenu span::before,
.btn-bmenu span::after {
  content: '';
  display: block;
  height: 2px;
  width: 30px;
  border-radius: 2px;
  background-color: #fff;
  position: absolute;
  transition: .3s ease-in-out;
}

.btn-bmenu span:before {
  bottom: 10px;
}

.btn-bmenu span:after {
  top: 10px;
}

#btn-bmenu-check:checked ~ .btn-bmenu span {
  background-color: rgb(235 235 235 / 0);
}

#btn-bmenu-check:checked ~ .btn-bmenu span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#btn-bmenu-check:checked ~ .btn-bmenu span::after {
  top: 0;
  transform: rotate(-45deg);
}

#btn-bmenu-check:checked ~ .bmenu-content {
  opacity: 1;
  top: 0;
  z-index: 1;
}

#btn-bmenu-check:checked ~ .bmenu-content > div {
  opacity: 1;
  top: 60px;
}

.bmenu-content {
  width: 100vw;
  height: calc(100vh);
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: rgb( 0 0 0 / 0.5);
  transition: all 0.5s ease-in-out;
  overflow: auto;
  z-index: -1;
}

.bmenu-content h3:first-child {
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 1em;
  color: #fff;
}

.bmenu nav > div {
  position: absolute;
  top: -100vh;
  left: 0;
  z-index: 11;
  width: 100%;
  padding: 0;
  background-color: #23282D;
  transition: .3s ease-in-out;
}

.bmenu nav > div a {
}

.bmenu nav > div a:hover {
  text-decoration: none;
}

.bmenu nav > div > ul {
  width: 100%;
}

.bmenu nav > div > ul li {
  width: 100%;
  text-align: left;
}

.bmenu nav > div > ul li a {
  position: relative;
  display: block;
  background-color: rgb(246 246 246 / 0);
  padding: 0.5em 1em 0.5em 2.5em;
  text-decoration: none;
  color: inherit;
  font-size: 110%;
  transition: all 1s 0s ease;
  color: #fff;
}

.bmenu nav > div > ul li a:hover {
  background-color: rgb(246 246 246 / 1);
  color: #3F4144;
}

.bmenu nav > div > ul li a::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #727376;
  border-left: 1px solid #727376;
  position: absolute;
  left: 1.5em;
  top: calc(50%);
  transform: translateY(-50%) rotate(135deg);
}

@media screen and (max-width: 767px) {
  .bmenu nav > div > ul li {
    margin-top: -1px;
  }
  
  .bmenu nav > div > ul li a {
    border-bottom: 1px solid #3F4144;
    border-top: 1px solid #3F4144;
  }
  
  .bmenu nav > div > ul li:nth-child(3) a::before {
    transform: translateY(-50%) rotate(225deg);
  }
  
  .bmenu nav > div > ul li:nth-child(3) li a::before {
    transform: translateY(-50%) rotate(135deg);
  }

  .bmenu nav > div > ul > li:nth-child(3) a {
    border: 0;
  }

  .bmenu nav > div > ul ul li a {
    margin-left: 2em;
    border: 0;
  }
}

/* ------------------------------------------------
  header
------------------------------------------------ */

.org header {
  position: absolute;
  width: calc( 100vw );
  height: calc( 100vh );
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  z-index: 5;
}

.org header h1 {
  font-size: 3em;
  font-weight: normal;
  text-align: center;
/*  color: #222;*/
  line-height: 1;
/*  margin-bottom: 0.5em;*/
}

.org header {
  color: #ccc;
}

.org header a {
  text-decoration: none;
}

.org header a:hover {
  text-decoration: none;
  color: #666;
}

.org header .bounce {
  animation: none;
}

.org header .bounce:hover {
  animation: bounce;
  animation-duration: 0.7s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  transform-origin: center bottom;
}

.jp header {
  width: calc( 100vw );
  height: calc( 100vh );
  display: flex;
  justify-content: center;
  align-items: center;
}

.jp header div {
  width: calc( 50vw );
/*  height: calc( 50vh );*/
  justify-content: center;
  align-items: center;
}

.jp header div h1 {
  position: relative;
  padding: 1em 3em;
  width: calc( 50% - 6em );
}

.jp header div div {
  position: relative;
  padding: 1em 2em;
  width: calc( 50% - 4em );
}

.jp header>div::after {
  position: absolute;
  top: 0;
  left: 50%;
  content: '';
  display: block;
  width: 1px;
  height: 100%;
/*  border: 0.1em solid #333;*/
  background: #ccc;
  line-height: 1;
}

@keyframes loop_animation_right {
  0% { transform: rotateY(0deg); }
  20% { transform: rotateY(170deg); }
  80% { transform: rotateY(190deg); }
  100% { transform: rotateY(0deg); }
}

.loop_right {
  animation: loop_animation_right 5s ease-in-out infinite;
  animation-direction: alternate;
  width: 100%;
}

/*
.jp header h1 {
  font-size: 3em;
}

.org header h1 {
  font-size: 2.65em;
}

.jp header div:nth-child(2) {
  opacity: 0.6;
}

.jp header a {
  text-decoration: none;
  opacity: 0.6;
}

.jp header a:hover {
  text-decoration: none;
  opacity: 1;
}

.jp header .material-symbols-outlined {
  font-size: 3em;
}
*/

@media screen and (max-width: 767px) {
  .jp header  {
    width: auto;
    height: auto;
    display: block;
  }

.jp header div::after {
  display: none;
}

  .jp header div h1 {
    padding: 3em 1em 0;
    width: calc( 75% );
    margin: auto;
  }

  .jp header div div {
    padding: 2em 1em;
    width: calc( 100% - 2em );
  }
}

.jp header .bounce:hover {
  animation: bounce;
  animation-duration: 0.8s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  transform-origin: center bottom;
}

/* ------------------------------------------------
  main
------------------------------------------------ */

.org main {
  position: relative;
  height: calc( 100vh );
  overflow: hidden;
}

.org main div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: calc( 220vw );
  height: calc( 220vh  );
  z-index: 0;
  object-fit: contain;
}

.org main div video {
  filter: blur(1em);
}

.org main div::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: calc( 100% );
  height: calc( 100%  );
  z-index: 1;
  content: '';
  display: block;
/*
  background: #000;
  mix-blend-mode: difference;
*/
}

.org main div::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: calc( 100% );
  height: calc( 100%  );
  z-index: 3;
  content: '';
  display: block;
/*
  background: repeating-linear-gradient(
    0deg,
    #fff,
    #fff 1px,
    transparent 1px,
    transparent 2px
  );
*/
  background-color: transparent;
  background-image: linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%),
                    linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%);
  background-size: 2px 2px;
  background-position: 0 0, 1px 1px;

}

@media screen and (max-width: 767px) {
  .jp main div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: calc( 200vh );
    height: calc( 200vh );
    z-index: 0;
    object-fit: contain;
    filter: blur(1em);
  }
  .jp main div::before,  main div::after {
    width: calc( 100vw );
    height: calc( 100vh  );
  }
}


/* ------------------------------------------------
  btn
------------------------------------------------ */

.btn {
  position: relative;
  display: inline-block;
  padding: 0.75em 1.0em;
  border-radius: 0.15em;
  line-height: 1;
}

.btn:hover {
  text-decoration: none;
}


/* ------------------------------------------------
  breadcrumbs arrow
------------------------------------------------ */

.breadcrumbs a {
  position: relative;
  display: inline-block;
  padding-right: 1.5rem;
}

.breadcrumbs a::after {
  position: absolute;
  top: 50%;
  right: 1rem;
  content: '';
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border: 0.1em solid var(--matteblack);
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(calc(-50%)) translateX(50%) rotate(45deg);
  color: #333;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .breadcrumbs a {
    font-size: 90%;
  }
}


/* ------------------------------------------------
  pagetitle
------------------------------------------------ */

.pagetitle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 12rem;
  font-size: 3rem;
  color: #fff;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}

@media screen and (max-width: 767px) {
  .pagetitle {
    font-size: 2rem;
  }
}


/* ------------------------------------------------
  footer
------------------------------------------------ */

#footer {
  background-color: var(--red-bg);
  padding: var(--10px);
  font-size: var(--12px);
  text-align: center;
  color: #fff;
}


