@charset "UTF-8";
@font-face {
  font-family: "icomoon";
  /* ../ (cssを出る) / ../ (assetsを出る) / ../ (suwaを出る) / common / fonts */
  src: url("../../common/fonts/icomoon-vg6ec6.eot");
  src:
    url("../../common/fonts/icomoon-vg6ec6.eot#iefix") format("embedded-opentype"),
    url("../../common/fonts/icomoon-vg6ec6.ttf") format("truetype"),
    url("../../common/fonts/icomoon-vg6ec6.woff") format("woff"),
    url("../../common/fonts/icomoon-vg6ec6.svg#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}


/* ============================================
   sanitize.css v3.0.0 | CC0 1.0 Public Domain
   ============================================ */

audio:not([controls]) {
  display: none;
}

button {
  overflow: visible;
  -webkit-appearance: button;
}

details {
  display: block;
}

html {
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
}

input {
  -webkit-border-radius: 0;
}

input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
}

input[type="search"] {
  -webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

main {
  display: block;
}

pre {
  overflow: auto;
}

progress {
  display: inline-block;
}

small {
  font-size: 75%;
}

summary {
  display: block;
}

svg:not(:root) {
  overflow: hidden;
}

template {
  display: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

[hidden] {
  display: none;
}

*,
:before,
:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

* {
  font-size: inherit;
  line-height: inherit;
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
}

:before,
:after {
  text-decoration: inherit;
  vertical-align: inherit;
}

*,
:before,
:after {
  border-style: solid;
  border-width: 0;
}

:root {
  background-color: #ffffff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #000000;
  cursor: default;
  font: 100%/1.5 sans-serif;
  text-rendering: optimizeLegibility;
}

:root {
  font-size: 62.5%;
}


a {
  text-decoration: none;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

button,
input,
select,
textarea {
  background-color: transparent;
  color: inherit;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
}

button,
[type="button"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="reset"],
[type="search"],
[type="submit"],
[type="tel"],
[type="text"],
[type="time"],
[type="url"],
[type="week"],
select,
textarea {
  min-height: 1.5em;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

nav ol,
nav ul {
  list-style: none;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

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

::-moz-selection {
  background-color: #b3d4fc;
  color: #4c2b03;
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc;
  color: #4c2b03;
  text-shadow: none;
}

[aria-busy="true"] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled] {
  cursor: default;
}

[hidden][aria-hidden="false"] {
  clip: rect(0 0 0 0);
  display: inherit;
  position: absolute;
}

[hidden][aria-hidden="false"]:focus {
  clip: auto;
}

/* ============================================
   コンテナ
   ============================================ */
.container {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .container {
    max-width: 1140px;
  }
}

/* ============================================
   ヘッダー
   ============================================ */
.header {
  position: relative;
  display: block;
  width: 100%;
  z-index: 100;
}

.container--header {
  max-width: none;
  padding-left: 40px;
  padding-right: 40px;
}

@media screen and (min-width: 1024px) {
  .header::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: inline-block;
    width: 100%;
    height: 65px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(17, 25, 39, 0.6)), to(rgba(17, 25, 39, 0)));
    background: linear-gradient(180deg, rgba(17, 25, 39, 0.6) 0%, rgba(17, 25, 39, 0) 100%);
  }
}

.header__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.header__img {
  max-width: 40px;
  height: 45px;
  margin: auto;
}

.header__logo {
  display: none;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  top: 10px;
  left: 20px;
  z-index: 1;
}

@media screen and (min-width: 1024px) {
  .header__logo {
    left: 40px;
  }
}

.header__logo--fixed,
.header__logo--visible {
  display: block;
  visibility: visible;
  opacity: 1;
}

.header__btn {
  position: fixed;
  top: 5px;
  right: 5px;
}

.header--fixed {
  position: fixed;
}

/* ============================================
   メニューボタン
   ============================================ */
.menu-btn {
  display: block;
  width: 60px;
  height: 60px;
}

@media screen and (min-width: 1024px) {
  .menu-btn {
    display: none;
  }
}

.menu-btn__line {
  position: absolute;
  top: 50%;
  left: 25%;
  display: block;
  width: 50%;
  height: 2px;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  background: #fff;
}

.menu-btn__line:nth-child(1) {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
}

.menu-btn__line:nth-child(2) {
  top: 50%;
}

.menu-btn__line:nth-child(3) {
  -webkit-transform: translateY(8px);
  transform: translateY(8px);
}

.menu-btn--open .menu-btn__line:nth-child(1) {
  -webkit-transform: translateY(0) rotate(-45deg);
  transform: translateY(0) rotate(-45deg);
}

.menu-btn--open .menu-btn__line:nth-child(2) {
  opacity: 0;
}

.menu-btn--open .menu-btn__line:nth-child(3) {
  -webkit-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
}

/* ============================================
   スプリット画面
   ============================================ */
.split-screen {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  overflow: hidden;
}

.split-screen__left a,
.split-screen__right a {
  display: block;
  position: relative;
  flex: 1;
  height: 100%;
  width: 100%;
}

.split-screen__left a img,
.split-screen__right a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* 左パネル：暗めのオーバーレイ */
.split-screen__left::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 25, 40, 0.35);
  z-index: 1;
  width: 50%;
  pointer-events: none;
}

.split-screen__left:hover:after {
  background: rgba(15, 25, 40, 0.1);
}


/* 右パネル：明るめのオーバーレイ */
.split-screen__right::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: rgba(15, 25, 40, 0.35);
  z-index: 1;
  pointer-events: none;
}

.split-screen__right:hover:after {
  background: rgba(15, 25, 40, 0.1);
}

.split-screen__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-family: purista-web, 'Noto Sans JP', sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #ffffff;
  font-size: 3rem;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
  text-align: center;
}


/* 中央ロゴ */
.center-logo {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: centerLogoFadeIn 1.4s 0.4s ease both;
}

.center-logo .message__logo {
  width: 160px;
  height: auto;
  filter: drop-shadow(0 2px 16px rgba(0, 0, 0, 0.25));
}

.logo-text {
  font-family: purista-web, 'Noto Sans JP', sans-serif;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: #ffffff;
  font-size: 0.75rem;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
}

@keyframes centerLogoFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 10px));
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* hero-slider__img（split-screen内のimgに付与） */
.hero-slider__img {
  -o-object-fit: cover;
  object-fit: cover;
}

/* レスポンシブ */
@media screen and (max-width: 767px) {
.split-screen {
  width: 100%;
  height: 450px;

}
  .center-logo .message__logo {
    width: 110px;
  }

  .logo-text {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
  }
.split-screen__text {
  font-size: 1.7rem;
}
}

/* ============================================
   ローダー
   ============================================ */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #0f1928;
  z-index: 9999;
}

.loader__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
  .loader__logo {
    top: 46%;
  }
}

.loader__logo img {
  width: auto;
  height: 200px;
}

@media screen and (min-width: 1024px) {
  .loader__logo img {
    height: 100%;
  }
}




/* ============================================
   フッター
   ============================================ */
.section--padnone {
  padding: 0;
}

.footer {
  position:fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #0F1928;
  margin-top: auto;
  z-index: 10;
}

  .footer__signature {
    padding: 1.5rem;
  }

.footer__sign-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
.footer {
  position:relative;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #0F1928;
  margin-top: auto;
  z-index: 10;
}

  .footer__signature {
    padding: 1.5rem 1.5rem 0 1.5rem;
  }
}


@media screen and (max-width: 1023px) {
  .footer__sign-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 0 2rem;
    margin-top: 4rem;
  }
}

@media screen and (min-width: 1024px) {
  .footer__sign-box {
    padding: 5rem 0;
    margin-left: 5rem;
  }
}

.footer__other {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}



/* ============================================
   フッター：other（著作権・リンク）
   ============================================ */

.other__item {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.other__list {
  margin-left: 20px;
}

@media screen and (max-width: 767px) {
  .other__item {
    width: 100%;
    margin-bottom: 30px;
    flex-flow: row wrap;
  }
}

@media screen and (max-width: 767px) {
  .other__item .other__list:nth-of-type(4) {
    margin-left: 0;
  }
}

.other__link {
  display: block;
  text-decoration: none;
  font-size: 1.3rem;
  font-family: purista-web, sans-serif;
  font-weight: 500;
  color: #7f91b1;
  white-space: nowrap;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}

.other__link::after {
  display: inline-block;
  content: "\e90c";
  font-family: "icomoon";
  font-size: 1.2rem;
  line-height: 1.2rem;
  font-weight: normal;
  margin-left: 0.5rem;
}

.other__link:hover {
  opacity: 0.6;
}

.other__copyright {
  font-size: 1.1rem;
  color: #7f91b1;
}

@media screen and (max-width: 767px) {
  .other__copyright {
    text-align: center;
  }
}

/* ============================================
   バナーエリア（フッター内）
   ============================================ */
.marimo-banner-container {
  width: 100%;
  background-color: #000;
  padding: 25px 20px;
}

.marimo-banner-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.banner-item {
  height: 90px;
}

.banner-link {
  display: inline-block;
  height: 100%;
}

.banner-image {
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
  box-shadow: 0 0 0 1px #666666;
  margin: 0 auto;
}

@media (max-width: 680px) {
  .marimo-banner-container {
    padding: 20px 15px;
  }

  .marimo-banner-wrapper {
    gap: 10px;
    flex-wrap: wrap;
  }

  .banner-item {
    height: auto;
    max-width: none;
    text-align: center;
  }

  .banner-image {
    max-width: 100%;
    height: 60px;
    width: 100%;
  }
}

/* ============================================
   ラッパー
   ============================================ */
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main {
  flex: 1;
}