@charset "utf-8";

/* ++++++++++++++++++++++++++++++++++++++
   File: common.css
   Version: 1.0.0
   Update: 2025-08-23
   Author: kobako design

   (c)2025 kobako design
++++++++++++++++++++++++++++++++++++++ */



/* ////////////////////////////////////////////////////////////////////////

   PC

//////////////////////////////////////////////////////////////////////// */

/* ====================================================
		Layout
==================================================== */
body {
  font-size: 1.5rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: .05em;
  line-height: 2;
  position: relative;
}

/* -------------------------------
		Layout
------------------------------- */
#container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
#pc_left,
#sp,
#pc_right {
  position: relative;
}

#pc_left {
  width: calc(100% - 500px - 500px);
  background: #1c1b1b;
  z-index: 0;
}
#sp {
  width: 500px;
  background: #262c6d;
  filter: drop-shadow(0 0 20px rgb(0,0,0,0.5));
  z-index: 1;
  top: 0;
  right: 500px;
}
#pc_right {
  width: 500px;
  background: #262c6d;
  z-index: 0;
}

main {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* -------------------------------
		Selection
------------------------------- */
::selection {
  color: #fff;
  background: #1a1a1a;
}




/* ====================================================
		Grobal Navigation
==================================================== */
/* -------------------------------
		Common Logo
------------------------------- */
#logo {
  width: 312px;
  height: 102px;
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 99999;
}

/* -------------------------------
		Logo
------------------------------- */
#hamburgerLogo {
  width: 312px;
  height: 102px;
  position: fixed;
  top: 15px;
  right: calc(500px + 173px);
  z-index: 999999;
  opacity: 0;
}
#hamburgerLogo.panelactive {
  opacity: 1;
}

/* -------------------------------
		Open Button
------------------------------- */
#openbtn {
  width: 100px;
  height: 50px;
  border: 1px solid #fff;
  border-radius: 5px;
  position: fixed;
  top: 40px;
  right: calc(500px + 30px);
  cursor: pointer;
  z-index: 999999;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, .4));
}
#openbtn div,
#openbtn div span {
  overflow: hidden;
  display: block;
}

/* 3 Line */
#openbtn div {
  width: 9px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 22px;
}
#openbtn > div:nth-child(1) {
  transform: translateY(-5px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
#openbtn > div:nth-child(2) {
  transform: translateY(-1px);
  transition-duration: .5s;
  transition-timing-function: ease-in-out;
  transition-property: left;
}
#openbtn > div:nth-child(3) {
  transform: translateY(3px);
  transition-duration: 1s;
  transition-timing-function: ease-in-out;
  transition-property: left;
}
#openbtn div span {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Animation */
#openbtn > div:nth-child(1) > span,
#openbtn > div:nth-child(1) > span {
  animation: menuBtnMove 2.5s ease-in-out 1.5s infinite;
}
#openbtn > div:nth-child(2) > span,
#openbtn > div:nth-child(2) > span {
  animation: menuBtnMove 2.5s ease-in-out 1.625s infinite;
}
#openbtn > div:nth-child(3) > span,
#openbtn > div:nth-child(3) > span {
  animation: menuBtnMove 2.5s ease-in-out 1.75s infinite;
}
#openbtn div span span {
  background-color: #fff;
  transition-property: background-color;
}
@keyframes menuBtnMove {
  0%, 100%, 50% {
    transform: translateX(0);
    opacity: 1;
  }
  23% {
    transform: translateX(100%);
    opacity: 1;
  }
  24% {
    transform: translateX(100%);
    opacity: 0;
  }
  26% {
    transform: translateX(-100%);
    opacity: 0;
  }
  27% {
    transform: translateX(-100%);
    opacity: 1;
  }
}

/* Text - Menu */
#openbtn strong {
  color: #fff;
  font-size: 1.8rem;
  font-family: "League Gothic", sans-serif;
  font-weight: 400;
  position: absolute;
  top: 50%;
  left: 42px;
  transform: translateY(-50%);
}

/* Active */
#openbtn.active div {
  top: calc(50% - 6px);
}
#openbtn.active div > span {
  animation: none!important;
}
#openbtn.active > div:nth-child(1) {
  animation: menuBtnMove_batsu1 1s ease-in-out forwards;
}
#openbtn.active > div:nth-child(2) {
  display: none;
}
#openbtn.active > div:nth-child(3) {
  animation: menuBtnMove_batsu2 1s ease-in-out forwards;
}

@keyframes menuBtnMove_batsu1 {
  0% {
    transform: translateY(0px) rotate(0);
  }
  50% {
    transform:translateY(5px) rotate(0);
  }
  100% {
    transform:translateY(5px) rotate(45deg);
  }
}
@keyframes menuBtnMove_batsu2 {
  0% {
    transform: translateY(7px) rotate(0);
  }
  50% {
    transform: translateY(5px) rotate(0);
  }
  100% {
    transform: translateY(5px) rotate(-45deg);
  }
}

/* -------------------------------
		Grobal Navigation - Active
------------------------------- */
#gNavi {
  width: 500px;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 500px;
  transition: all .6s;
  opacity: 0;
  z-index: -1;
}
#gNavi::after {
  content: '';
  width: 500px;
  height: calc(100vh + 100px);
  background: #262c6d;
  border-radius: 0;
  position: fixed;
  top: -100px;
  right: 500px;
  z-index: 0;
  transition: all .6s;
}
#gNavi.panelactive {
  padding-top: 130px;
  opacity: 1;
  z-index: 99999;
}
#gNavi.panelactive #g-nav-list {
  width: 500px;
  height: calc(100vh - 130px);
  position: fixed;
  z-index: 999; 
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/* List */
#gNavi ul {
  padding: 30px 60px 10px;
}
#gNavi li {
  width: 100%;
  line-height: 1;
  position: relative;
}
#gNavi li::after {
  content: '';
  width: 100%;
  height: 1px;
  background: rgb(255,255,255, .1);
  position: absolute;
  bottom: 0;
  left: 0;
}
#gNavi li:last-child::after {
  content: none;
}
#gNavi li a {
  color: #fff;
  display: block;
  padding: 30px 0;
  position: relative;
}

/* In List */
#gNavi ul li ul {
  padding: 0 0 30px;
}
#gNavi ul li ul li {
  width: 100%;
}
#gNavi ul li ul li::after {
  content: none;
}
#gNavi ul li ul li a {
  padding: 10px 0 10px 30px;
  opacity: .6;
}

/* English */
#gNavi li a strong {
  color: #fff;
  font-size: 3.2rem;
  font-family: "League Gothic", sans-serif;
  font-weight: 400;
  display: block;
  transition: all .6s;
}

/* Japanese */
#gNavi li a span {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: .08em;
  display: block;
  padding-top: 5px;
}

/* Button ---------------------- */
#gNavi .flex {
  padding-bottom: 70px;
}
#gNavi .flex li a {
  text-align: center;
  display: block;
}

/* Instagram / Contact */
#gNavi .flex li:nth-child(1),
#gNavi .flex li:nth-child(2) {
  width: 48.5%;
}
#gNavi .flex li:nth-child(1) a,
#gNavi .flex li:nth-child(2) a {
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 20px 0;
}
#gNavi .flex li:nth-child(1) a span,
#gNavi .flex li:nth-child(2) a span {
  font-size: 2.2rem;
  font-family: "League Gothic", sans-serif;
  line-height: 1.2;
  position: relative;
  padding-top: 0;
  padding-left: 30px;
}
#gNavi .flex li:nth-child(1) a span::before,
#gNavi .flex li:nth-child(2) a span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 30px;
  display: block;
  transform: translateY(-50%);
}

/* Instagram */
#gNavi .flex li:nth-child(1) a span::before {
  width: 20px;
  height: 20px;
  background: url("../img_common/icon_instagram.png") no-repeat 0 0 / 20px;
}

/* Contact */
#gNavi .flex li:nth-child(2) a span::before {
  width: 22px;
  height: 18px;
  background: url("../img_common/icon_mail.png") no-repeat 0 0 / 22px 18px;
}

/* Entry */
#gNavi .flex li:nth-child(3) {
  width: 100%;
  padding-top: 15px;
}
#gNavi .flex li:nth-child(3) a {
  color: #262c6d;
  background: #fff;
  border-radius: 5px;
  padding: 30px 0 35px;
  position: relative;
}
#gNavi .flex li:nth-child(3) a::before,
#gNavi .flex li:nth-child(3) a::after {
  content: '';
  position: absolute;
}
#gNavi .flex li:nth-child(3) a::before {
  width: 10px;
  height: 1px;
  background: #262c6d;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  z-index: 1;
}
#gNavi .flex li:nth-child(3) a::after {
  width: 4px;
  height: 4px;
  background: #fff;
  border-top: solid 1px #262c6d;
  border-right: solid 1px #262c6d;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  top: calc(50% - 1px);
  right: 27px;
  z-index: 0;
}
#gNavi .flex li:nth-child(3) a span {
  font-size: 1.8rem;
}

/* Hover */
#gNavi li a:hover,
#gNavi li a:hover strong {
  opacity: 1;
}




/* ====================================================
		Common Style
==================================================== */
/* -------------------------------
		Title
------------------------------- */
h2 {
  position: relative;
  padding-left: 22px;
}

/* Line */
h2::before {
  content: '';
  width: 12px;
  height: 2px;
  background: #f8d348;
  position: absolute;
  top: 1em;
  left: 0;
  display: block;
}

/* English & Japanese */
h2 strong,
h2 span {
  color: #fff;
  line-height: 1.3;
  display: block;
}

/* English */
h2 strong {
  font-family: "League Gothic", sans-serif;
  font-size: 6rem;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* Japanese */
h2 span {
  font-size: 1.5rem;
  letter-spacing: .1em;
}

/* -------------------------------
		Button
------------------------------- */
.btn {
  position: relative;
  z-index: 999;
}
.btn a {
  color: #fff;
  font-family: "League Gothic", sans-serif;
  font-size: 2.2rem;
  text-align: center;
  line-height: 1.4;
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 15px 45px 15px 50px;
  display: inline-block;
}
.btn a span {
  position: relative;
  padding-right: 20px;
}

/* Arrow */
.btn a span::before,
.btn a span::after {
  content: '';
  position: absolute;
}
.btn a span::before {
  width: 10px;
  height: 1px;
  background: #fff;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  z-index: 1;
}
.btn a span::after {
  width: 4px;
  height: 4px;
  background: #1c1b1b;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  top: calc(50% - 1px);
  right: -7px;
  z-index: 0;
}

/* -------------------------------
		Rotate Box
------------------------------- */
.rotateBox {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.title-bg-marquee {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
  transform: rotate(-20deg);
}
.title-bg-track {
  display: flex;
  flex-direction: row;
  opacity: .04;
}
.title-bg-track div {
  user-select: none;
}
.title-bg-track div img {
  display: block;
}

/* Large */
.title-bg-track.large {
  animation: scrollX 60s linear infinite;
  margin-bottom: 10px;
}

/* Small */
.title-bg-track.small {
  animation: scrollX 20s linear infinite;
}

@keyframes scrollX {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}




/* ====================================================
		Footer
==================================================== */
/* -------------------------------
		Layout
------------------------------- */
footer {
  color: #fff;
  background: #262c6d;
  padding: 100px 0 0 0;
  position: relative;
}

/* -------------------------------
		Catch Copy
------------------------------- */
footer .catchCopy {
  position: relative;
  padding: 0 0 100px 40px;
}

/* Text ----------------------- */
footer .catchCopy .txt {
  font-family: "League Gothic", sans-serif;
  line-height: 1;
  position: absolute;
}
footer .catchCopy .txt strong,
footer .catchCopy .txt span {
  display: block;
}

/* Large Text */
footer .catchCopy .txt strong {
  font-size: 6rem;
  padding-bottom: 30px;
}

/* Small Text */
footer .catchCopy .txt span {
  font-size: 1.5rem;
  line-height: 1.3;
}

/* Photo ---------------------- */
footer .catchCopy .photo {
  padding: 90px 0 0 30px;
}

/* -------------------------------
		Navigation
------------------------------- */
footer #fNavi {
  padding: 0 70px;
}
footer #fNavi li {
  
}
footer #fNavi li a {
  color: #fff;
  font-size: 2.8rem;
  font-family: "League Gothic", sans-serif;
  line-height: 1.2;
  display: block;
  padding: 15px 0;
}
footer #fNavi li a:hover {
  opacity: .6!important;
}
footer #fNavi li a strong {
  font-weight: 400;
  letter-spacing: .1em;
}

/* Instagram */
footer #fNavi li a span {
  font-size: 1.8rem;
  position: relative;
  padding-left: 36px;
}
footer #fNavi li a span::before {
  content: '';
  width: 20px;
  height: 20px;
  background: url("../img_common/icon_instagram.png") no-repeat 0 0 / 20px;
  position: absolute;
  top: 0;
  left: 10px;
  display: block;
}
footer #fNavi li a strong span {
  font-size: 2.8rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  padding: 0;
}
footer #fNavi li a strong span::before {
  content: none;
}

/* Contact */
footer #fNavi li.contact a {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 30px 0;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
footer #fNavi li.contact a::before {
  content: '';
  width: 44px;
  height: 20px;
  background: url("../img_common/btn_arrow.png") no-repeat 0 0 / 44px 20px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
footer #fNavi li.contact a span {
  font-size: 1.3rem;
  padding-left: 20px;
}
footer #fNavi li.contact a span::before {
  content: none;
}

/* -------------------------------
		Logo
------------------------------- */
footer #fLogo {
  width: 312px;
  padding: 60px 0 0 64px;
}




/* ====================================================
		Copyright
==================================================== */
/* -------------------------------
		Layout
------------------------------- */
#copyright {
  font-size: 1.3rem;
  font-family: "League Gothic", sans-serif;
  letter-spacing: .02em;
  opacity: .5;
  padding: 40px 64px 140px;
}




/* ====================================================
		Page Top
==================================================== */
/* -------------------------------
		Layout
------------------------------- */
#pageTop {
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  border-radius: 5px;
	position: fixed;
	bottom: 15px;
	right: calc(500px + 15px);
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, .4));
	opacity: 0;
	transform: translateY(100px);
  cursor: pointer;
  z-index: 99;
}
#pageTop::before {
  content: '';
  width: .7em;
  height: .7em;
  color: #fff;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-50%) translateY(25%) rotate(-45deg);
  position: absolute;
  top: 20px;
  left: 50%;
}
body.menu-open #pageTop {
  display: none;
}

/* -------------------------------
		Animation
------------------------------- */
#pageTop.pageUpMove {
	animation: pageUpAnime 0.5s forwards;
}
@keyframes pageUpAnime {
  from {
    opacity: 0;
  	transform: translateY(100px);
  }
  to {
    opacity: 1;
  	transform: translateY(0);
  }
}
#pageTop.pageDownMove {
	animation: pageDownAnime 0.5s forwards;
}
@keyframes pageDownAnime {
  from {
  	opacity: 1;
  	transform: translateY(0);
  }
  to {
  	opacity: 0;
  	transform: translateY(100px);
  }
}

/* -------------------------------
    Link
------------------------------- */
#pageTop a {
  text-align: center;
	display: block;
  padding: 40px 0 20px;
}




/* ====================================================
		Web font / Google font
==================================================== */
/* -------------------------------
		English
------------------------------- */
.league-gothic {
  font-family: "League Gothic", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:"wdth" 100;
}

/* -------------------------------
		Japanese
------------------------------- */
.zen-kaku-gothic-antique-regular {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.zen-kaku-gothic-antique-medium {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.zen-kaku-gothic-antique-bold {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  font-style: normal;
}




/* ====================================================
		Layout / PC Left
==================================================== */
/* -------------------------------
		Layout
------------------------------- */
#pc_left {
  height: 100vh;
  background: #1c1b1b url("../img_common/pc/bg_catch-copy.png") no-repeat 0 0 / 700px 440px;
  position: fixed;
  top: 0;
  left: 0;
}
#pc_left .btmBox {
  position: absolute;
  bottom: 60px;
  left: 60px;
}
@media screen and (min-width: 1501px) {
  #pc_left {
    background-size: contain;
  }
}

/* -------------------------------
		Background - Loop
------------------------------- */
#pc_left .background_loop {
  position: absolute;
  bottom: 700px;
  left: -220px;
  transform: rotate(-20deg);
  opacity: .04;
  z-index: -1;
}
#pc_left .image_wrapper {
  display: flex;
  overflow: hidden;
}
#pc_left .image_wrapper.large {
  height: 230px;
}
#pc_left .image_wrapper.medium {
  height: 76px;
}
#pc_left .image_wrapper.small {
  height: 25px;
}
#pc_left .loop_image {
  width: auto;
  height: 100%;
  max-width: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
#pc_left .loop_image:nth-child(odd) {
  animation: loopA 100s -50s linear infinite;
}
#pc_left .loop_image:nth-child(even) {
  animation: loopB 100s linear infinite;
}
@keyframes loopA {
  0% {transform: translateX(100%);}
  to {transform: translateX(-100%);}
}
@keyframes loopB {
  0% {transform: translateX(0);}
  to {transform: translateX(-200%);}
}

/* -------------------------------
		Button - Entry
------------------------------- */
#pc_left .btn_pcEntry {
  width: 290px;
  padding-bottom: 50px;
}
#pc_left .btn_pcEntry a {
  max-width: calc(290px - 10px);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-align: center;
  background: #1c1b1b;
  border: 1px solid #fff;
  border-radius: 5px;
  filter: drop-shadow(0 0 10px rgb(0,0,0,0.3));
  display: block;
  padding: 20px 0 20px 10px;
  transition: .3s;
}

/* Arrow */
#pc_left .btn_pcEntry a span {
  position: relative;
  padding-right: 65px;
}
#pc_left .btn_pcEntry a span::after {
  content: '';
  width: 44px;
  height: 20px;
  background: url("../img_common/btn_arrow.png") no-repeat 0 0 / 44px 20px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

/* Hover */
#pc_left .btn_pcEntry a:hover {
  background: #262c6d;
  opacity: 1;
}

/* -------------------------------
		Text
------------------------------- */
#pc_left .txt {
  color: #fff;
  font-size: 1.5rem;
  font-family: "League Gothic", sans-serif;
  line-height: 1.2;
  letter-spacing: .05em;
}




/* ====================================================
		Layout / PC Right
==================================================== */
/* -------------------------------
		Layout
------------------------------- */
#pc_right {
  position: fixed;
  top: 0;
  right: 0;
}
#pc_right .flex,
#pc_right .logo,
#pc_right #pcNavi {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
#pc_right .flex {
  max-width: 300px;
  height: 100vh;
  padding: 0 60px;
  justify-content: space-between;
  flex: none;
  margin: 0 auto;
}

/* Background */
#pc_right::before,
#pc_right::after {
  content: '';
  position: absolute;
  display: block;
  z-index: -1;
}
#pc_right::before {
  width: 500px;
  height: 180px;
  background: #1c1b1b;
  bottom: 0;
  right: 0;
}
#pc_right::after {
  width: 0;
  height: 0;
  bottom: 180px;
  left: 0;
  border-style: solid;
  border-width: 180px 500px 0 0;
  border-color: transparent #1c1b1b transparent transparent;
}

/* -------------------------------
		Logo
------------------------------- */
#pc_right .logo {
  width: 144px;
  height: 160px;
  justify-content: flex-start;
  margin: 100px auto 0;
}
@media screen and (max-height: 800px) {
  #pc_right .logo {
    width: 120px;
    margin-top: 30px;
  }
}

/* -------------------------------
		Navigation
------------------------------- */
#pc_right #pcNavi {
  justify-content: flex-start;
  gap: 0;
  padding-bottom: 50px;
}
#pc_right #pcNavi ul li a {
  color: #fff;
  padding: 15px 0;
  display: block;
}
#pc_right #pcNavi ul li a strong,
#pc_right #pcNavi ul li a span {
  line-height: 1.3;
  display: block;
}

/* English */
#pc_right #pcNavi ul li a strong {
  font-size: 2.8rem;
  font-family: "League Gothic", sans-serif;
}

/* Japanese */
#pc_right #pcNavi ul li a span {
  font-size: 1.2rem;
}

/* In List */
#pc_right #pcNavi ul li ul {
  padding-bottom: 10px;
}
#pc_right #pcNavi ul li ul li a {
  font-size: 1.2rem;
  padding: 0;
  opacity: .6;
}

/* Hover */
#pc_right #pcNavi ul li a:hover {
  color: #f8d348;
  opacity: 1;
}

@media screen and (max-height: 800px) {
  #pc_right #pcNavi {
    padding-bottom: 25px;
  }
  #pc_right #pcNavi ul li a {
    padding: 10px 0;
  }
  #pc_right #pcNavi ul li a strong,
  #pc_right #pcNavi ul li a span {
    line-height: 1.2;
  }
}

/* -------------------------------
		Instagram
------------------------------- */
#pc_right .instagram-btn {
  width: 20px;
  height: 20px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1;
}






/* ////////////////////////////////////////////////////////////////////////

   TABLET

//////////////////////////////////////////////////////////////////////// */
@media screen and (min-width: 501px) and (max-width: 1099px) {
  
  /* ====================================================
      Layout
  ==================================================== */
  #pc_left,
  #pc_right {
    display: none;
  }
  #sp {
    position: static;
    margin: 0 auto;
  }
  #container {
    background: #1c1b1b;
    display: block;
  }
  
  /* -------------------------------
      Left Style
  ------------------------------- */
  #pc_left {
    width: 100vw;
    background-size: contain;
    display: block;
  }
  #pc_left .btmBox {
    display: none;
  }
  #pc_left .background_loop {
    bottom: 600px;
  }
  
  
  
  
  /* ====================================================
      Splash
  ==================================================== */
  /* -------------------------------
      Logo
  ------------------------------- */
  #splash_logo img {
    width: 120px;
  }
  
  
  
  
  /* ====================================================
      Grobal Navigation
  ==================================================== */
  /* -------------------------------
      Logo
  ------------------------------- */
  #hamburgerLogo {
    right: auto;
    left: calc(50% - 79px);
    transform: translateX(-50%);
  }

  /* -------------------------------
      Open Button
  ------------------------------- */
  #openbtn {
    right: auto;
    left: calc(50% + 170px);
    transform: translateX(-50%);
  }
  
  /* -------------------------------
      Grobal Navigation - Active
  ------------------------------- */
  #gNavi {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  #gNavi::after {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  
  
  
  
  /* ====================================================
      Page Top
  ==================================================== */
  /* -------------------------------
      Layout
  ------------------------------- */
  #pageTop {
    right: auto;
    left: calc(50% + 185px);
    transform: translateY(100px) translateX(-50%);
  }
  
  
  
  
}




/* ////////////////////////////////////////////////////////////////////////

   MOBILE

//////////////////////////////////////////////////////////////////////// */
@media screen and (max-width: 500px) {
  
  /* ====================================================
      Layout
  ==================================================== */
  body {
    width: 100%;
    max-width: 500px;
    letter-spacing: .02em;
    margin: 0 auto;
    overflow-x: hidden;
    position: static;
  }
  #container {
    display: block;
  }
  #pc_left,
  #pc_right {
    display: none;
  }
  #sp {
    width: 100%;
    position: static;
    right: auto;
    margin: 0 auto;
  }
  main {
    width: 100%;
    max-width: 500px;
  }
  
  
  
  
  /* ====================================================
      Splash
  ==================================================== */
  /* -------------------------------
      Layout
  ------------------------------- */
  #splash {
    width: 100%;
    max-width: 500px;
  }
  
  
  
  /* ====================================================
      Grobal Navigation
  ==================================================== */
  /* -------------------------------
      Common Logo
  ------------------------------- */
  #logo {
    width: 200px;
    height: 65px;
  }
  
  /* -------------------------------
      Logo
  ------------------------------- */
  #hamburgerLogo {
    width: 200px;
    height: 65px;
    left: 15px;
    right: auto;
  }

  /* -------------------------------
      Open Button
  ------------------------------- */
  #openbtn {
    top: 20px;
    right: 20px;
  }
  
  /* -------------------------------
      Grobal Navigation - Active
  ------------------------------- */
  #gNavi {
    width: 100%;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  #gNavi::after {
    width: 100%;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  #gNavi.panelactive #g-nav-list {
    width: 100%;
  }
  
  /* List */
  #gNavi ul {
    padding: 0 40px 10px;
  }
  #gNavi li a {
    padding: 25px 0;
  }
  
  /* In List */
  #gNavi ul li.inList a {
    padding-bottom: 10px;
  }
  #gNavi ul li.inList ul {
    padding: 0 0 15px;
  }
  #gNavi ul li.inList ul li a {
    padding: 10px 0 10px 20px;
  }
  
  /* English */
  #gNavi li a strong {
    font-size: 2.6rem;
  }
  
  /* Japanese */
  #gNavi li a span {
    font-size: 1.2rem;
  }
  
  /* Button ---------------------- */
  #gNavi .flex {
    padding-top: 30px;
    padding-bottom: 120px;
  }
  
  /* Instagram / Contact */
  #gNavi .flex li:nth-child(1) a span,
  #gNavi .flex li:nth-child(2) a span {
    font-size: 2rem;
  }
  #gNavi .flex li:nth-child(1) a span::before,
  #gNavi .flex li:nth-child(2) a span::before {
    left: 20px;
  }
  
  /* Instagram */
  #gNavi .flex li:nth-child(1) a span::before {
    width: 14px;
    height: 14px;
    background-size: 14px;
  }

  /* Contact */
  #gNavi .flex li:nth-child(2) a span::before {
    width: 14px;
    height: 11px;
    background-size: 14px 11px;
  }
  
  /* Entry */
  #gNavi .flex li:nth-child(3) a {
    padding: 20px 0 25px;
  }
  #gNavi .flex li:nth-child(3) a span {
    font-size: 1.5rem;
  }
  
  
  
  
  /* ====================================================
      Footer
  ==================================================== */
  /* -------------------------------
      Catch Copy
  ------------------------------- */
  footer .catchCopy {
    padding: 0 0 60px 30px;
  }
  
  /* Large Text */
  footer .catchCopy .txt strong {
    font-size: 5rem;
  }
  
  /* -------------------------------
      Navigation
  ------------------------------- */
  footer #fNavi {
    padding: 0 60px;
  }
  footer #fNavi li a {
    font-size: 2.2rem;
    padding: 10px 0;
  }
  
  /* Instagram */
  footer #fNavi li a span {
    font-size: 1.6rem;
  }
  footer #fNavi li a span::before {
    width: 14px;
    height: 14px;
    background-size: 14px;
  }
  footer #fNavi li a strong span {
    font-size: 2.2rem;
  }
  
  /* Contact */
  footer #fNavi li.contact a {
    padding: 20px 0;
    margin-top: 30px;
  }
  
  /* -------------------------------
      Logo
  ------------------------------- */
  footer #fLogo {
    width: 200px;
    padding: 40px 0 0 54px;
  }
  
  
  
  
  /* ====================================================
      Copyright
  ==================================================== */
  /* -------------------------------
      Layout
  ------------------------------- */
  #copyright {
    padding: 20px 54px 100px;
  }
  

  
  
  /* ====================================================
      Page Top
  ==================================================== */
  /* -------------------------------
      Layout
  ------------------------------- */
  #pageTop {
    width: 30px;
    height: 30px;
    right: 10px;
    bottom: 10px;
  }
  #pageTop::before {
    width: .5em;
    height: .5em;
    top: 10px;
  }
  
}