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

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border-style: solid;
}

:where(a) {
  color: inherit;
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) {
  outline: 3px solid Highlight;
  outline-offset: 2px;
  scroll-margin-block: 10vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

:root {
  --main-text: #000;
}

html {
  font-size: 16px;
  font-family: "Noto Sans JP", serif;
}

.pc {
  display: block;
}
@media only screen and (max-width: 1023px) {
  .pc {
    display: none;
  }
}
@media only screen and (max-width: 574px) {
  .pc {
    display: none;
  }
}

.tb {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .tb {
    display: block;
  }
}
@media only screen and (max-width: 574px) {
  .tb {
    display: none;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .sp {
    display: none;
  }
}
@media only screen and (max-width: 574px) {
  .sp {
    display: block;
  }
}

.container {
  position: relative;
  width: 100%;
  height: auto;
  max-width: 575px;
  min-width: 320px;
  padding: 0;
  margin: 0 auto;
}

.wp-pw {
  white-space: pre-wrap;
}

.width-max {
  width: 100vw;
  height: auto;
  margin: 0 calc(50% - 50vw);
}

::-moz-selection {
  color: #fff;
  background: #0085A1;
  text-shadow: none;
}

::selection {
  color: #fff;
  background: #0085A1;
  text-shadow: none;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
img::-moz-selection {
  color: #fff;
  background: transparent;
}
img::selection {
  color: #fff;
  background: transparent;
}

.__imageshow,
.__comingsoon {
  position: relative;
  width: 100%;
  height: 100%;
}

.__comingsoon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  z-index: 1;
}
.__comingsoon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 50%;
  background: no-repeat center/contain url("../img/coming-soon.svg");
  z-index: 2;
}

@-webkit-keyframes hd-in {
  0% {
    top: -100px;
  }
  100% {
    top: 0;
  }
}
@keyframes hd-in {
  0% {
    top: -100px;
  }
  100% {
    top: 0;
  }
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@-webkit-keyframes slide-in-02 {
  0% {
    opacity: 0;
    transform: translateY(100px) translateX(-50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0px) translateX(-50%);
  }
}
@keyframes slide-in-02 {
  0% {
    opacity: 0;
    transform: translateY(100px) translateX(-50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0px) translateX(-50%);
  }
}
@-webkit-keyframes left-in {
  0% {
    opacity: 1;
    left: -20%;
  }
  100% {
    opacity: 1;
    left: 50%;
  }
}
@keyframes left-in {
  0% {
    opacity: 1;
    left: -20%;
  }
  100% {
    opacity: 1;
    left: 50%;
  }
}
@-webkit-keyframes left-in-sp {
  0% {
    opacity: 1;
    left: -300px;
  }
  100% {
    opacity: 1;
    left: 29px;
  }
}
@keyframes left-in-sp {
  0% {
    opacity: 1;
    left: -300px;
  }
  100% {
    opacity: 1;
    left: 29px;
  }
}
@-webkit-keyframes pon {
  0% {
    opacity: 1;
    transform: scale(0);
  }
  80% {
    transform: scale(1.15);
  }
  95% {
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes pon {
  0% {
    opacity: 1;
    transform: scale(0);
  }
  80% {
    transform: scale(1.15);
  }
  95% {
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@-webkit-keyframes pon-slower1 {
  0% {
    opacity: 1;
    transform: scale(0);
  }
  20% {
    transform: scale(0);
  }
  80% {
    transform: scale(1.15);
  }
  95% {
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes pon-slower1 {
  0% {
    opacity: 1;
    transform: scale(0);
  }
  20% {
    transform: scale(0);
  }
  80% {
    transform: scale(1.15);
  }
  95% {
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@-webkit-keyframes pon-tranx50 {
  0% {
    opacity: 1;
    transform: scale(0) translateX(-50%);
  }
  80% {
    transform: scale(1.15) translateX(-50%);
  }
  95% {
    transform: scale(0.95) translateX(-50%);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateX(-50%);
  }
}
@keyframes pon-tranx50 {
  0% {
    opacity: 1;
    transform: scale(0) translateX(-50%);
  }
  80% {
    transform: scale(1.15) translateX(-50%);
  }
  95% {
    transform: scale(0.95) translateX(-50%);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateX(-50%);
  }
}
@-webkit-keyframes pon_mini {
  0% {
    opacity: 1;
    transform: scale(0.95);
  }
  80% {
    transform: scale(1);
  }
  95% {
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes pon_mini {
  0% {
    opacity: 1;
    transform: scale(0.95);
  }
  80% {
    transform: scale(1);
  }
  95% {
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@-webkit-keyframes vibe {
  0% {
    transform: translateX(-0.15em);
  }
  20% {
    transform: translateX(0.15em);
  }
  40% {
    transform: translateX(-0.075em);
  }
  60% {
    transform: translateX(0.075em);
  }
  80% {
    transform: translateX(-0.05em);
  }
  100% {
    transform: translateX(0em);
  }
}
@keyframes vibe {
  0% {
    transform: translateX(-0.15em);
  }
  20% {
    transform: translateX(0.15em);
  }
  40% {
    transform: translateX(-0.075em);
  }
  60% {
    transform: translateX(0.075em);
  }
  80% {
    transform: translateX(-0.05em);
  }
  100% {
    transform: translateX(0em);
  }
}
@-webkit-keyframes jump-out {
  0% {
    opacity: 1;
    transform: translateY(120%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes jump-out {
  0% {
    opacity: 1;
    transform: translateY(120%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes after-jump {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes after-jump {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes left-02 {
  0% {
    opacity: 0;
    transform: translateX(-200%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes left-02 {
  0% {
    opacity: 0;
    transform: translateX(-200%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes right-01 {
  0% {
    opacity: 0;
    transform: translateX(200%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes right-01 {
  0% {
    opacity: 0;
    transform: translateX(200%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes totop-in {
  0% {
    opacity: 0;
    transform: translatey(200%);
  }
  100% {
    opacity: 1;
    transform: translatey(0%);
  }
}
@keyframes totop-in {
  0% {
    opacity: 0;
    transform: translatey(200%);
  }
  100% {
    opacity: 1;
    transform: translatey(0%);
  }
}
@-webkit-keyframes totop-in-tab-open {
  0% {
    bottom: 37px;
  }
  100% {
    bottom: 87px;
  }
}
@keyframes totop-in-tab-open {
  0% {
    bottom: 37px;
  }
  100% {
    bottom: 87px;
  }
}
@-webkit-keyframes totop-in-tab-close {
  0% {
    bottom: 87px;
  }
  100% {
    bottom: 37px;
  }
}
@keyframes totop-in-tab-close {
  0% {
    bottom: 87px;
  }
  100% {
    bottom: 37px;
  }
}
@-webkit-keyframes slide-menu-in {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}
@keyframes slide-menu-in {
  0% {
    display: block;
    transform: scaleY(0);
  }
  100% {
    display: block;
    transform: scaleY(1);
  }
}
@-webkit-keyframes slide-menu-in-02 {
  0% {
    top: 50px;
  }
  100% {
    top: 0px;
  }
}
@keyframes slide-menu-in-02 {
  0% {
    top: 50px;
  }
  100% {
    top: 0px;
  }
}
@-webkit-keyframes slide-menu-out {
  0% {
    height: 50px;
    opacity: 1;
    transform: scaleY(1);
  }
  100% {
    height: 50px;
    transform: scaleY(0);
  }
}
@keyframes slide-menu-out {
  0% {
    height: 50px;
    opacity: 1;
    transform: scaleY(1);
  }
  100% {
    height: 50px;
    transform: scaleY(0);
  }
}
@-webkit-keyframes slide-menu-out-02 {
  0% {
    top: 0px;
  }
  100% {
    top: 50px;
  }
}
@keyframes slide-menu-out-02 {
  0% {
    top: 0px;
  }
  100% {
    top: 50px;
  }
}
@-webkit-keyframes slide-menu-opacity-in {
  0% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slide-menu-opacity-in {
  0% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes slide-menu-opacity-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
@keyframes slide-menu-opacity-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
@-webkit-keyframes acc_in {
  0% {
    opacity: 0;
    top: -20px;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
@keyframes acc_in {
  0% {
    opacity: 0;
    top: -20px;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
@-webkit-keyframes body-tab-open {
  0% {
    top: 0;
  }
  100% {
    top: -50px;
  }
}
@keyframes body-tab-open {
  0% {
    top: 0;
  }
  100% {
    top: -50px;
  }
}
@-webkit-keyframes body-tab-close {
  0% {
    top: -50px;
  }
  100% {
    top: 0px;
  }
}
@keyframes body-tab-close {
  0% {
    top: -50px;
  }
  100% {
    top: 0px;
  }
}
@-webkit-keyframes person {
  0% {
    opacity: 1;
    transform: translatey(100%);
  }
  100% {
    opacity: 1;
    transform: translatey(0%);
  }
}
@keyframes person {
  0% {
    opacity: 1;
    transform: translatey(100%);
  }
  100% {
    opacity: 1;
    transform: translatey(0%);
  }
}
@-webkit-keyframes person_base {
  0% {
    transform: translatex(-200%);
  }
  100% {
    transform: translatex(0%);
  }
}
@keyframes person_base {
  0% {
    transform: translatex(-200%);
  }
  100% {
    transform: translatex(0%);
  }
}
@-webkit-keyframes person_text {
  0% {
    opacity: 1;
    transform: translatey(-100%);
  }
  100% {
    opacity: 1;
    transform: translatey(0%);
  }
}
@keyframes person_text {
  0% {
    opacity: 1;
    transform: translatey(-100%);
  }
  100% {
    opacity: 1;
    transform: translatey(0%);
  }
}
@-webkit-keyframes modal-left-in {
  0% {
    opacity: 1;
    transform: translatex(-100%);
  }
  100% {
    opacity: 1;
    transform: translatey(0%);
  }
}
@keyframes modal-left-in {
  0% {
    opacity: 1;
    transform: translatex(-100%);
  }
  100% {
    opacity: 1;
    transform: translatey(0%);
  }
}
@-webkit-keyframes modal-right-in {
  0% {
    opacity: 1;
    transform: translatex(100%);
  }
  100% {
    opacity: 1;
    transform: translatey(0%);
  }
}
@keyframes modal-right-in {
  0% {
    opacity: 1;
    transform: translatex(100%);
  }
  100% {
    opacity: 1;
    transform: translatey(0%);
  }
}
/* animation
----------------------------------*/
.animation-fade-in {
  opacity: 0;
}

.animation-fade-in.onwindow {
  animation: fade-in 0.8s;
  opacity: 1;
}

.animation-slide-in {
  opacity: 0;
}

.animation-slide-in.onwindow {
  animation: slide-in 0.8s;
  opacity: 1;
}

.animation-slide-in-02 {
  opacity: 0;
}

.animation-slide-in-02.onwindow {
  animation: slide-in-02 0.8s;
  opacity: 1;
}

.animation-left-in {
  opacity: 0;
}

.animation-left-in.onwindow {
  animation: left-in ease-out 3s;
  opacity: 1;
}

.animation-left-in-02 {
  opacity: 0;
}

.animation-left-in-02.onwindow {
  animation: modal-left-in ease-out 1s;
  opacity: 1;
}

.animation-pon {
  transform-origin: center;
  transform: scale(0);
}

.animation-pon-slower {
  transform-origin: center;
}

.animation-pon-tranx50 {
  transform-origin: center;
  transform: translateX(-50%) scale(0);
}

.obj07-05.animation-pon {
  transform: scale(1);
}

.animation-pon.onwindow {
  animation: pon ease-in-out 0.25s;
  transform: scale(1);
}

.animation-pon-slower.onwindow {
  animation: pon ease-in-out 0.25s;
  animation-delay: 0.25s;
}

.animation-pon-tranx50.onwindow {
  animation: pon-tranx50 ease-in-out 0.25s;
  transform: translateX(-50%) scale(1);
}

.animation-vibe {
  opacity: 0;
}

.animation-vibe.onwindow {
  opacity: 1;
  animation: pon 0.4s linear, vibe 0.1s linear 0.4s 6;
}

.animation-jump-out {
  opacity: 0;
}

.sec02-bx01-wrap.onwindow .animation-jump-out.obj02-05 {
  opacity: 0;
  animation: jump-out 0.5s linear 0.5s, after-jump 1s linear 1s infinite;
}

.sec02-bx01-wrap.onwindow .animation-jump-out.obj02-06 {
  opacity: 0;
  animation: jump-out 0.5s linear 0.8s, after-jump 1s linear 1s infinite;
}

.obj03-11-wrap.onwindow .animation-jump-out.obj03-11 {
  opacity: 0;
  animation: jump-out 0.8s linear 0.2s, after-jump 0.8s linear 1s infinite;
}

.obj03-11-wrap.onwindow .animation-jump-out.obj03-12 {
  opacity: 0;
  animation: jump-out 0.4s linear 0.6s, after-jump 1s linear 1s infinite;
}

.obj03-11-wrap.onwindow .animation-jump-out.obj03-13 {
  opacity: 0;
  animation: jump-out 0.4s linear 0.6s, after-jump 1s linear 1s infinite;
}

.obj02-05-sp-wrap.onwindow .animation-jump-out.obj02-05 {
  opacity: 0;
  animation: jump-out 0.2s linear 0.3s, after-jump 1s linear 0.5s infinite;
}

.obj02-05-sp-wrap.onwindow .animation-jump-out.obj02-06 {
  opacity: 0;
  animation: jump-out 0.2s linear 0.3s, after-jump 1s linear 0.5s infinite;
}

.animation-left-02 {
  opacity: 0;
}

.animation-left-02.onwindow {
  opacity: 1;
  animation: left-02 0.2s linear;
}

.obj04-01, .obj04-02 {
  opacity: 0;
}

.obj04-01.animation-pon.onwindow {
  animation: pon 0.3s linear 0.3s, after-jump 1s linear 0.6s infinite;
}

.obj04-02.animation-pon.onwindow {
  animation: pon 0.3s linear 0.5s, after-jump 1s linear 0.8s infinite;
}

.obj04-03.animation-pon.onwindow {
  animation: pon 0.3s linear 0.7s, after-jump 1s linear 0.8s infinite;
}

.obj07-01, .obj07-02, .obj07-06, .obj07-04, .obj07-05 {
  opacity: 0;
}

.sec07-objgp-wrap.onwindow .obj07-02.animation-left-03 {
  animation: right-01 0.4s linear 0s, after-jump 1s linear 0.3s infinite;
}

.sec07-objgp-wrap.onwindow .obj07-01.animation-left-03 {
  animation: left-02 0.3s linear 0.3s, after-jump 1s linear 0.6s infinite;
}

.sec07-objgp-wrap.onwindow .obj07-04.animation-left-03 {
  animation: left-02 0.3s linear 0.7s, after-jump 1s linear 1s infinite;
}

.sec07-objgp-wrap.onwindow .obj07-05.animation-pon {
  animation: pon 0.15s linear 1.2s, after-jump 1s linear 1.4s infinite;
}

.sec07-objgp-wrap.onwindow .obj07-06.animation-right {
  animation: right-01 0.3s linear 0.8s, after-jump 1s linear 1.1s infinite;
}

#ttl-concept,
#ttl-gallery {
  fill: #393939;
}

.topview {
  background: no-repeat center/cover #393939 url("../img/bg-tc.png");
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 574px) {
  .topview {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-direction: column;
    max-height: calc(100vh - 80px);
    min-height: 587px;
    height: calc(100vh - 80px);
  }
}
.topview .__head {
  position: relative;
  width: 100%;
  height: 290px;
  padding: 10%;
}
.topview .__head > h2 {
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
}
.topview .__head > h2::before {
  content: "";
  position: absolute;
  top: -28px;
  left: -64px;
  width: 45px;
  height: 40px;
  background: no-repeat center/contain url("../img/logo.svg");
}
.topview .__head > h2 > img {
  object-fit: contain;
}
.topview .__head > h1 {
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 50%;
}
.topview .__head > h1 > img {
  object-fit: contain;
}
@media only screen and (max-width: 574px) {
  .topview .__head {
    max-height: 260px;
  }
  .topview .__head .__logo {
    top: 20px;
    left: 10px;
    width: 30px;
  }
}
.topview .__body {
  width: 100%;
  height: auto;
}
.topview .__body .__view {
  position: relative;
  width: 100%;
  height: 100%;
}
.topview .__body .__view::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(57, 57, 57, 0.5);
  z-index: 1;
}
@media only screen and (max-width: 574px) {
  .topview .__body {
    flex-grow: 1;
    height: 0;
  }
  .topview .__body .__view {
    height: 100%;
  }
}
.topview .__foot {
  width: 100%;
  max-height: 140px;
  height: 100%;
  padding: 50px 0;
}
.topview .__foot > h2 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: "Shippori Mincho B1", sans-serif;
  text-align: center;
  letter-spacing: 0.1em;
}
.topview .__foot > h2 > span {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: "Noto Serif JP", sans-serif;
}
@media only screen and (max-width: 574px) {
  .topview .__foot {
    max-height: 85px;
    padding: 30px 0;
  }
  .topview .__foot > h2 {
    font-size: 19px;
  }
  .topview .__foot > h2 > span {
    font-size: 19px;
  }
}

.footer {
  background-color: #393939;
}
.footer .inner {
  background: no-repeat center/cover url("../img/bg-black.png");
  padding: 50px 30px 90px;
}
@media only screen and (max-width: 574px) {
  .footer .inner {
    padding: 30px 30px 80px;
  }
}
.footer h3 {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.footer h3 > span.__word {
  display: inline-block;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  font-family: sans-serif;
  width: max-content;
  padding: 0 1em;
}
.footer h3 > span.__line {
  height: 2px;
  background-color: #fff;
  flex-grow: 1;
}
.footer ul.__kakusyu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
  gap: 1em;
}
.footer ul.__kakusyu > li {
  width: calc(50% - 0.5em);
}
.footer p.__catchphrase {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  font-family: sans-serif;
  text-align: center;
  margin-bottom: 30px;
}
.footer ul.__contact {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.footer ul.__contact > li {
  width: 50%;
}
.footer ul.__contact > li:first-child {
  border-right: 1px solid #fff;
}
.footer ul.__contact > li > a {
  display: block;
  width: 80%;
  padding: 2em 0;
  margin: 0 auto;
}
.footer .__company {
  padding: 30px 0;
  border-bottom: 1px solid #fff;
}
.footer .__company > h4 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  font-family: sans-serif;
  text-align: center;
  margin-bottom: 5px;
}
.footer .__company > p {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: sans-serif;
  text-align: center;
  margin: 0 auto;
}
.footer p.__copywrite {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: sans-serif;
  text-align: center;
  padding: 2.5em 0;
  margin: 0 auto;
}

.l-nav {
  position: relative;
  width: 575px;
  height: auto;
  padding: 20px 0;
  background-color: #030303;
  z-index: 99;
}
.l-nav > ul {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.l-nav > ul > li {
  width: 16.6666666667%;
}
.l-nav > ul > li > a {
  position: relative;
  display: block;
}
.l-nav > ul > li > a > svg {
  width: 50px;
  height: 50px;
}
.l-nav.fixed {
  position: fixed;
  bottom: 0;
}
@media only screen and (max-width: 574px) {
  .l-nav.sp-none {
    display: none;
  }
}
@media only screen and (max-width: 574px) {
  .l-nav.sp-fixed {
    position: fixed;
    bottom: 0;
  }
}
@media only screen and (max-width: 574px) {
  .l-nav {
    width: 100%;
  }
  .l-nav > ul > li > a > svg {
    height: 40px;
  }
}

.u-character-name {
  color: #0075C2;
  font-size: 16px;
  font-weight: 600;
}

.u-character-ex {
  color: #000;
  font-size: 0.8em;
  letter-spacing: 1px;
  text-align: justify;
}

.u-character-ex-w {
  color: #fff;
  font-size: 0.8em;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: justify;
}

.u-btn {
  position: relative;
  display: block;
  cursor: pointer;
  text-decoration: none;
}
.u-btn__v1 {
  width: 255px;
  padding: 20px 30px;
  border: 2px solid #393939;
  background-color: #fff;
  transition: background-color 0.4s;
}
.u-btn__v1 > svg {
  height: 20px;
  margin: 0 auto;
}
.u-btn__v1 > svg path {
  fill: #393939;
  transition: fill 0.4s;
}
.u-btn__v1:hover {
  background-color: #393939;
  transition: background-color 0.4s;
}
.u-btn__v1:hover > svg path {
  fill: #fff;
  transition: fill 0.4s;
}
.u-btn__v2 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: 70px;
  border: 2px solid #fff;
  background-color: #393939;
  transition: background-color 0.4s;
}
.u-btn__v2 > span {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  font-family: sans-serif;
  text-align: center;
  transition: color 0.4s;
}
.u-btn__v2 > span > span {
  display: block;
  font-size: 0.7em;
}
.u-btn__v2:hover {
  background-color: #fff;
  transition: background-color 0.4s;
}
.u-btn__v2:hover > span {
  color: #393939;
  transition: color 0.4s;
}
@media only screen and (max-width: 574px) {
  .u-btn__v2 > span {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: sans-serif;
  }
}
.u-btn__svg svg {
  object-fit: contain;
  margin: 0 auto;
}
.u-btn__svg svg path {
  fill: #fff;
  transition: fill 0.4s;
}
.u-btn__svg svg path.cls-1 {
  fill: #393939;
}
.u-btn__svg:hover > svg path {
  fill: rgba(255, 145, 0, 0.9);
  transition: fill 0.4s;
}
.u-btn__svg:hover > svg path.cls-1 {
  fill: #393939;
}

.u-ttl {
  width: 52%;
  margin: 0 auto;
}

.u-ex {
  color: #393939;
  font-size: 1.25rem;
  font-weight: 500;
  font-family: sans-serif;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media only screen and (max-width: 574px) {
  .u-ex {
    font-size: 13px;
  }
}

.u-line-v {
  width: 100%;
  padding: 50px 0;
}
.u-line-v > span {
  display: block;
  height: 80px;
  width: 2px;
  margin: 0 auto;
  background-color: #393939;
}
@media only screen and (max-width: 574px) {
  .u-line-v {
    padding: 30px 0;
  }
  .u-line-v > span {
    height: 60px;
  }
}

.l-bnr-athome {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background-color: #393939;
}
.l-bnr-athome::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.4s;
  z-index: 1;
}
.l-bnr-athome:hover::before {
  background-color: rgba(0, 0, 0, 0.5);
  transition: background-color 0.4s;
}
.l-bnr-athome .__l, .l-bnr-athome .__r {
  width: 50%;
  z-index: 0;
}
.l-bnr-athome .__l {
  padding: 40px 30px 40px 10px;
}

.outer-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
.outer-wrap .__cover {
  position: fixed;
  height: 100vh;
  width: 100%;
  z-index: 0;
  background: no-repeat center/cover url(../img/bg.jpg);
}
.outer-wrap .__cover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(57, 57, 57, 0.5);
  z-index: 1;
}
.outer-wrap .__cover .__url {
  position: absolute;
  right: 1.5em;
  bottom: 2.5em;
  color: #fff;
  letter-spacing: 0.15em;
  font-weight: 600;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  z-index: 2;
}
.outer-wrap .inner-wrap {
  position: relative;
  width: 100%;
  max-width: 575px;
  min-width: 320px;
  height: max(120vh, 100%);
  margin: 0 auto;
  background-color: #393939;
  z-index: 9;
}

.l-top-concept,
.l-top-gallery,
.l-top-note,
.l-top-athome {
  background: repeat center/cover #fff url("../img/bg-white.png");
}

.l-top-concept {
  padding-top: 100px;
}
.l-top-concept > p {
  text-align: center;
  margin-bottom: 2.5em;
}
.l-top-concept > .__img {
  position: relative;
  width: 100%;
  height: 490px;
  overflow: hidden;
}
.l-top-concept > .__img > img {
  position: absolute;
  object-fit: contain;
}
@media only screen and (max-width: 574px) {
  .l-top-concept {
    padding-top: 50px;
  }
  .l-top-concept > .__img {
    height: 400px;
  }
}

.l-top-gallery {
  padding: 100px 0 50px;
}
.l-top-gallery > h2 {
  margin-bottom: 50px;
}
.l-top-gallery > ul {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 0 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 20px;
}
.l-top-gallery > ul > li {
  width: calc(50% - 10px);
}
.l-top-gallery > a {
  margin: 0 auto;
}
@media only screen and (max-width: 574px) {
  .l-top-gallery {
    padding: 50px 0;
  }
  .l-top-gallery > .__img {
    height: 400px;
  }
}

.l-top-note > .inner {
  padding: 50px 0;
  border-top: 2px solid #393939;
  border-bottom: 2px solid #393939;
  margin: 0 30px;
}
.l-top-note > .inner .__sub {
  color: #393939;
  font-size: 1rem;
  font-weight: 600;
  font-family: sans-serif;
  text-align: center;
  margin-bottom: 0.5em;
}
.l-top-note > .inner > h3 {
  max-width: 380px;
  width: 100%;
  margin: 0 auto 30px;
}
.l-top-note > .inner > h2 {
  max-width: 195px;
  width: 100%;
  margin: 0 auto 30px;
}
.l-top-note > .inner > a {
  margin: 0 auto;
}
@media only screen and (max-width: 574px) {
  .l-top-note > .inner {
    padding: 50px 0;
    border-top: 2px solid #393939;
    border-bottom: 2px solid #393939;
    margin: 0 30px;
  }
  .l-top-note > .inner .__sub {
    font-size: 12px;
  }
}

.l-top-athome {
  padding: 50px 0;
}
.l-top-athome > .inner {
  margin: 0 30px;
}

/*# sourceMappingURL=style.css.map */
