@charset "UTF-8";
/* メディアクエリ用ブレイクポイント定義 _mixin.scssのみにて使用 */
/*def end*/
/*share*/
::-moz-selection {
  background: rgba(220, 220, 220, 0.9); /* Safari */
}
::selection {
  background: rgba(220, 220, 220, 0.9); /* Safari */
}

::-moz-selection {
  background: rgba(220, 220, 220, 0.9); /* Firefox */
}

html, body {
  height: 100%;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

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

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  text-decoration: none;
}

li {
  list-style-type: none;
}

dl, dt, dd, ul, li, figure {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, p {
  padding: 0;
  margin: 0;
  font-size: 1rem;
}

em, i {
  font-style: normal;
}

i.fa {
  margin-right: 0.25em;
}

@media screen and (max-width: 1024px) {
  ._pc {
    display: none !important;
  }
}

@media screen and (min-width: 1024px) {
  ._sp {
    display: none !important;
  }
}

button {
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
  cursor: pointer;
}

html {
  font-size: 12px;
}

body {
  font-family: "rooney-web", "tbudmincho-std", "Roboto Condensed", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Meiryo UI", "Meiryo", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "ＭＳ ゴシック", "MS Gothic", sans-serif;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  overscroll-behavior-y: none;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  background: #E9E7E7;
}

/* amazon で使ってたきれいなグラデーション
linear-gradient(90deg,#00050d,rgba(0,5,13,.991) 6.67%,rgba(0,5,13,.964) 13.33%,rgba(0,5,13,.918) 20%,rgba(0,5,13,.853) 26.67%,rgba(0,5,13,.768) 33.33%,rgba(0,5,13,.668) 40%,rgba(0,5,13,.557) 46.67%,rgba(0,5,13,.443) 53.33%,rgba(0,5,13,.332) 60%,rgba(0,5,13,.232) 66.67%,rgba(0,5,13,.147) 73.33%,rgba(0,5,13,.082) 80%,rgba(0,5,13,.036) 86.67%,rgba(0,5,13,.009) 93.33%,rgba(0,5,13,0))
*/
@media screen and (min-width: 768px) {
  .link__underline {
    position: relative;
    display: inline-block;
    text-decoration: none;
  }
  .link__underline::before {
    position: absolute;
    bottom: -5px;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: rgb(3, 22, 40);
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .link__underline:hover::before {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
}
@media screen and (min-width: 1024px) {
  .header {
    top: 15px;
    left: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .header {
    padding-top: calc(5svw - 5px);
    padding-left: calc(5svw - 5px);
    padding-bottom: 110px;
    width: 100%;
    pointer-events: none;
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(233, 231, 231)), color-stop(30%, rgba(233, 231, 231, 0.9)), color-stop(50%, rgba(233, 231, 231, 0.7)), color-stop(85%, rgba(233, 231, 231, 0.15)), to(rgba(233, 231, 231, 0)));
    background: linear-gradient(180deg, rgb(233, 231, 231) 0%, rgba(233, 231, 231, 0.9) 30%, rgba(233, 231, 231, 0.7) 50%, rgba(233, 231, 231, 0.15) 85%, rgba(233, 231, 231, 0) 100%);
  }
}
.header__link {
  display: block;
  padding: 10px;
}
@media screen and (max-width: 1024px) {
  .header__link {
    pointer-events: auto;
    display: table;
    padding: 5px;
  }
}
.header__logo {
  height: 30px;
  width: 90px;
  -webkit-transition: 1.5s ease;
  transition: 1.5s ease;
  -webkit-transform-origin: left center;
          transform-origin: left center;
  opacity: 0;
  -webkit-filter: blur(5px);
          filter: blur(5px);
}
@media screen and (max-width: 1024px) {
  .header__logo {
    height: 30px;
    width: 65px;
  }
}
.header__logo--isloaded {
  opacity: 1;
  -webkit-filter: blur(0px);
          filter: blur(0px);
}
.header__logo--isfade {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}
.header__logo--ismenuopen {
  -webkit-transform: scale(1) !important;
          transform: scale(1) !important;
}

.menubutton {
  overflow: visible;
  display: block;
  width: 35px;
  height: 35px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 30px;
  z-index: 1010;
  -webkit-transition: 1s ease;
  transition: 1s ease;
  -webkit-transform-origin: right center;
          transform-origin: right center;
}
@media screen and (max-width: 1024px) {
  .menubutton {
    height: 30px;
    width: 30px;
    right: calc(5svw - 5px);
  }
}
.menubutton__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .menubutton__inner {
    width: 25px;
    height: 25px;
  }
}
.menubutton__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #000;
  border-radius: 50%;
  opacity: 0;
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
  -webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, transform 0.2s;
  transition: opacity 0.2s, transform 0.2s, -webkit-transform 0.2s;
}
.menubutton__inner::after {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: black;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, transform 0.2s;
  transition: opacity 0.2s, transform 0.2s, -webkit-transform 0.2s;
}
.menubutton span, .menubutton span::before, .menubutton span::after {
  display: block;
  position: absolute;
  width: 20px;
  height: 1px;
  background: #000;
  -webkit-transition: width 0.2s, height 0.2s, border-radius 0.2s, margin-left 0.2s, margin-top 0.2s, -webkit-transform 0.2s;
  transition: width 0.2s, height 0.2s, border-radius 0.2s, margin-left 0.2s, margin-top 0.2s, -webkit-transform 0.2s;
  transition: transform 0.2s, width 0.2s, height 0.2s, border-radius 0.2s, margin-left 0.2s, margin-top 0.2s;
  transition: transform 0.2s, width 0.2s, height 0.2s, border-radius 0.2s, margin-left 0.2s, margin-top 0.2s, -webkit-transform 0.2s;
  left: 50%;
  top: 50%;
  margin-left: -10px;
  margin-top: -0.5px;
}
.menubutton span {
  content: "";
}
.menubutton span::before,
.menubutton span::after {
  content: "";
  left: 0;
  top: 0;
  margin-left: 0;
  margin-top: 0;
}
.menubutton span::before {
  -webkit-transform: translate(0, -6px);
          transform: translate(0, -6px);
}
.menubutton span::after {
  -webkit-transform: translate(0, 6px);
          transform: translate(0, 6px);
}
.menubutton--opening {
  opacity: 0;
  -webkit-animation: buttonFadeIn 0.6s ease-out 0.3s forwards;
          animation: buttonFadeIn 0.6s ease-out 0.3s forwards;
}
.menubutton--opening span {
  width: 0;
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-animation: lineExpandFromRight 0.6s ease-out 0.5s forwards;
          animation: lineExpandFromRight 0.6s ease-out 0.5s forwards;
}
.menubutton--opening span::before {
  width: 0;
  -webkit-animation: lineExpandFromRightTop 0.6s ease-out 0.6s forwards;
          animation: lineExpandFromRightTop 0.6s ease-out 0.6s forwards;
}
.menubutton--opening span::after {
  width: 0;
  -webkit-animation: lineExpandFromRightBottom 0.6s ease-out 0.7s forwards;
          animation: lineExpandFromRightBottom 0.6s ease-out 0.7s forwards;
}
.menubutton--clicked .menubutton__inner::after {
  opacity: 1;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.menubutton--clicked .menubutton__inner::before {
  opacity: 1;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}
.menubutton--clicked span {
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
}
.menubutton--clicked span::before {
  -webkit-transform: translate(0, -6px) scale(0, 1);
          transform: translate(0, -6px) scale(0, 1);
}
.menubutton--clicked span::after {
  -webkit-transform: translate(0, 6px) scale(0, 1);
          transform: translate(0, 6px) scale(0, 1);
}
.menubutton--isfade {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}
.menubutton--ismenuopen {
  -webkit-transform: scale(1) !important;
          transform: scale(1) !important;
}

@-webkit-keyframes buttonFadeIn {
  to {
    opacity: 1;
  }
}

@keyframes buttonFadeIn {
  to {
    opacity: 1;
  }
}
@-webkit-keyframes lineExpandFromRight {
  from {
    width: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  to {
    width: 20px;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes lineExpandFromRight {
  from {
    width: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  to {
    width: 20px;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes lineExpandFromRightTop {
  from {
    width: 0;
    -webkit-transform: translate(20px, -6px);
            transform: translate(20px, -6px);
  }
  to {
    width: 20px;
    -webkit-transform: translate(0, -6px);
            transform: translate(0, -6px);
  }
}
@keyframes lineExpandFromRightTop {
  from {
    width: 0;
    -webkit-transform: translate(20px, -6px);
            transform: translate(20px, -6px);
  }
  to {
    width: 20px;
    -webkit-transform: translate(0, -6px);
            transform: translate(0, -6px);
  }
}
@-webkit-keyframes lineExpandFromRightBottom {
  from {
    width: 0;
    -webkit-transform: translate(20px, 6px);
            transform: translate(20px, 6px);
  }
  to {
    width: 20px;
    -webkit-transform: translate(0, 6px);
            transform: translate(0, 6px);
  }
}
@keyframes lineExpandFromRightBottom {
  from {
    width: 0;
    -webkit-transform: translate(20px, 6px);
            transform: translate(20px, 6px);
  }
  to {
    width: 20px;
    -webkit-transform: translate(0, 6px);
            transform: translate(0, 6px);
  }
}
.globalnavigation {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(233, 231, 231, 0.9);
  padding-bottom: 50px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 1.5s;
  transition: 1.5s;
  z-index: 900;
  -webkit-filter: blur(5px);
          filter: blur(5px);
}
.globalnavigation--active {
  -webkit-filter: blur(0px);
          filter: blur(0px);
  opacity: 1;
  visibility: visible;
}
.globalnavigation--active .nav__title,
.globalnavigation--active .nav__item {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.globalnavigation__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  gap: 250px;
}
@media screen and (max-width: 1024px) {
  .globalnavigation__content {
    gap: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.globalnavigation__column:nth-child(1) .nav > *:nth-child(1) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.globalnavigation__column:nth-child(1) .nav > *:nth-child(2) {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
.globalnavigation__column:nth-child(1) .nav > *:nth-child(3) {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
.globalnavigation__column:nth-child(1) .nav > *:nth-child(4) {
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}
.globalnavigation__column:nth-child(1) .nav > *:nth-child(5) {
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}
.globalnavigation__column:nth-child(1) .nav > *:nth-child(6) {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
.globalnavigation__column:nth-child(1) .nav > *:nth-child(7) {
  -webkit-transition-delay: 1.7s;
          transition-delay: 1.7s;
}
.globalnavigation__column:nth-child(1) .nav > *:nth-child(8) {
  -webkit-transition-delay: 1.9s;
          transition-delay: 1.9s;
}
.globalnavigation__column:nth-child(1) .nav > *:nth-child(9) {
  -webkit-transition-delay: 2.1s;
          transition-delay: 2.1s;
}
.globalnavigation__column:nth-child(1) .nav > *:nth-child(10) {
  -webkit-transition-delay: 2.3s;
          transition-delay: 2.3s;
}
.globalnavigation__column:nth-child(1) .nav > *:nth-child(11) {
  -webkit-transition-delay: 2.5s;
          transition-delay: 2.5s;
}
.globalnavigation__column:nth-child(1) .nav > *:nth-child(12) {
  -webkit-transition-delay: 2.7s;
          transition-delay: 2.7s;
}
.globalnavigation__column:nth-child(1) .nav > *:nth-child(13) {
  -webkit-transition-delay: 2.9s;
          transition-delay: 2.9s;
}
.globalnavigation__column:nth-child(1) .nav > *:nth-child(14) {
  -webkit-transition-delay: 3.1s;
          transition-delay: 3.1s;
}
.globalnavigation__column:nth-child(1) .nav > *:nth-child(15) {
  -webkit-transition-delay: 3.3s;
          transition-delay: 3.3s;
}
.globalnavigation__column:nth-child(1) .nav > *:nth-child(16) {
  -webkit-transition-delay: 3.5s;
          transition-delay: 3.5s;
}
.globalnavigation__column:nth-child(1) .nav > *:nth-child(17) {
  -webkit-transition-delay: 3.7s;
          transition-delay: 3.7s;
}
.globalnavigation__column:nth-child(1) .nav > *:nth-child(18) {
  -webkit-transition-delay: 3.9s;
          transition-delay: 3.9s;
}
.globalnavigation__column:nth-child(1) .nav > *:nth-child(19) {
  -webkit-transition-delay: 4.1s;
          transition-delay: 4.1s;
}
.globalnavigation__column:nth-child(1) .nav > *:nth-child(20) {
  -webkit-transition-delay: 4.3s;
          transition-delay: 4.3s;
}
.globalnavigation__column:nth-child(2) .nav__item:nth-child(1) {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
.globalnavigation__column:nth-child(2) .nav__item:nth-child(2) {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
.globalnavigation__column:nth-child(2) .nav__item:nth-child(3) {
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}
.globalnavigation__column:nth-child(2) .nav__item:nth-child(4) {
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}
.globalnavigation__column:nth-child(2) .nav__item:nth-child(5) {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
.globalnavigation__column:nth-child(2) .nav__item:nth-child(6) {
  -webkit-transition-delay: 1.7s;
          transition-delay: 1.7s;
}
.globalnavigation__column:nth-child(2) .nav__item:nth-child(7) {
  -webkit-transition-delay: 1.9s;
          transition-delay: 1.9s;
}
.globalnavigation__column:nth-child(2) .nav__item:nth-child(8) {
  -webkit-transition-delay: 2.1s;
          transition-delay: 2.1s;
}
.globalnavigation__column:nth-child(2) .nav__item:nth-child(9) {
  -webkit-transition-delay: 2.3s;
          transition-delay: 2.3s;
}
.globalnavigation__column:nth-child(2) .nav__item:nth-child(10) {
  -webkit-transition-delay: 2.5s;
          transition-delay: 2.5s;
}
.globalnavigation__column:nth-child(2) .nav__item:nth-child(11) {
  -webkit-transition-delay: 2.7s;
          transition-delay: 2.7s;
}
.globalnavigation__column:nth-child(2) .nav__item:nth-child(12) {
  -webkit-transition-delay: 2.9s;
          transition-delay: 2.9s;
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .nav {
    gap: 10px;
  }
}
.nav--notitle {
  margin-top: 35px;
}
.nav__title {
  font-size: 1.2rem;
  opacity: 0;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition: 1s ease;
  transition: 1s ease;
}
* + .nav__title {
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .nav__title {
    font-size: 1rem;
  }
}
.nav__item {
  font-weight: bold;
  font-size: 2rem;
  opacity: 0;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition: 1s ease;
  transition: 1s ease;
}
@media screen and (max-width: 1024px) {
  .nav__item {
    font-size: 1.5rem;
  }
}
.nav__link {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.nav__link:hover {
  opacity: 0.5;
  text-decoration: none;
}
.nav__link--inactive {
  position: relative;
  color: #787878;
  pointer-events: none;
}
.nav__link--inactive::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #787878;
}

.content {
  padding-bottom: 140px;
}

.main {
  min-height: 95svh;
}

.homecontent {
  min-height: 100svh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.homecontent__image {
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-animation: fadeInBlur 2s ease-out forwards;
          animation: fadeInBlur 2s ease-out forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  width: 340px;
}
@media screen and (max-width: 1024px) {
  .homecontent__image {
    width: 50svw;
  }
}
@-webkit-keyframes fadeInBlur {
  to {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInBlur {
  to {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.brand {
  max-width: 1280px;
  margin: 80px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 40px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .brand {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 5svw;
  }
}
.brand--margin {
  margin-top: 5svh;
}
@media screen and (min-width: 1024px) {
  .brand--margin {
    margin-top: 10svh;
  }
}
@media screen and (min-width: 1024px) {
  .brand--jode {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.brand--lissome {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.brand__visual {
  width: 48%;
  height: 90vh; /* または具体的な高さを指定 */
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  -webkit-transition: 1.5s;
  transition: 1.5s;
  opacity: 0;
}
.brand__visual.is-visible {
  opacity: 1;
  -webkit-filter: blur(0px);
          filter: blur(0px);
}
@media screen and (max-width: 1024px) {
  .brand__visual {
    height: auto;
    aspect-ratio: 3/4;
    width: 90%;
    margin: 0 auto;
  }
}
.brand__visual--gur_landscape {
  height: auto;
  aspect-ratio: 3/2;
  width: 80%;
  right: 0;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .brand__visual--gur_landscape {
    width: 100%;
  }
}
.brand__visual--gur_portrait {
  aspect-ratio: 2/3;
}
@media screen and (min-width: 1024px) {
  .brand__visual--gur_portrait {
    width: auto;
    height: 75svh;
    -webkit-transform: translateX(7.5svw);
            transform: translateX(7.5svw);
  }
}
.brand__visual--ound {
  aspect-ratio: 3/4;
  margin: 0 auto;
  height: 100%;
}
.brand__visual--jode_landscape {
  height: auto;
  aspect-ratio: 3/2;
  width: 80%;
  right: 0;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .brand__visual--jode_landscape {
    width: 100%;
  }
}
.brand__visual--jode_portrait {
  aspect-ratio: 2/3;
}
@media screen and (min-width: 1024px) {
  .brand__visual--jode_portrait {
    width: auto;
    height: 75svh;
  }
}
.brand__visual .slick-list,
.brand__visual .slick-track,
.brand__visual .slick-slide {
  height: 100%;
}
.brand__visual .slick-slide img {
  -webkit-transition: all 2s ease;
  transition: all 2s ease;
  -webkit-filter: blur(10px) grayscale(50%);
          filter: blur(10px) grayscale(50%);
  -webkit-transform: scale(1);
          transform: scale(1);
}
.brand__visual .slick-slide:not(.slick-active) img {
  -webkit-filter: blur(15px) grayscale(100%) brightness(0.7);
          filter: blur(15px) grayscale(100%) brightness(0.7);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.brand__visual .slick-slide.slick-active img {
  -webkit-filter: blur(0) grayscale(0%) brightness(1);
          filter: blur(0) grayscale(0%) brightness(1);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: all 2s ease;
  transition: all 2s ease;
}
.brand__visual.is-menu-open {
  opacity: 1 !important;
}
.brand__visual .slick-slide > div {
  height: 100%;
}
.brand__visual_figure {
  height: 100%;
  width: 100%;
}
.brand__visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* 画像を親要素いっぱいに広げる */
  -o-object-position: center;
     object-position: center; /* 画像の中心を基準にトリミング */
}
@media screen and (min-width: 1024px) {
  .brand__visual_wrapper {
    position: absolute;
    height: calc(100% - 80px);
    width: calc(100% - 80px);
    top: 40px;
    left: 40px;
  }
}
.brand__tile {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .brand__tile {
    gap: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.brand__tile_figure {
  width: 80%;
  -webkit-transition: 1.5s;
  transition: 1.5s;
  opacity: 0;
}
.brand__tile_figure.is-visible {
  opacity: 1;
  -webkit-filter: blur(0px);
          filter: blur(0px);
}
@media screen and (max-width: 1024px) {
  .brand__tile_figure + .brand__tile_figure {
    margin-top: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .brand__tile_figure {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media screen and (max-width: 1024px) {
  .brand__tile_figure--right {
    margin-left: auto;
  }
}
.brand__body {
  width: 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .brand__body {
    width: 100%;
    margin-top: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .brand__body--gur_landscapetext {
    padding-top: 10svh;
    width: 25%;
    position: absolute;
  }
}
.brand__body--gur_portraittext {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
@media screen and (min-width: 1024px) {
  .brand__body--gur_portraittext {
    width: 40%;
    margin-right: 5%;
  }
}
.brand__body--ound {
  width: 100%;
  height: 100%;
}
.brand__body--lissome {
  margin-top: 20px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .brand__body--lissome {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width: 1024px) {
  .brand__body--jode_landscapetext {
    padding-top: 10svh;
    padding-left: 2.5vw;
  }
}
.brand__body--jode_portraittext {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
@media screen and (min-width: 1024px) {
  .brand__body--jode_portraittext {
    margin-right: 5%;
  }
}
.brand__logo--catzorange {
  height: 25px;
  width: auto;
}
@media screen and (max-width: 1024px) {
  .brand__logo--catzorange {
    height: 20px;
  }
}
.brand__logo--gur {
  height: 90px;
  width: auto;
}
@media screen and (max-width: 1024px) {
  .brand__logo--gur {
    height: 70px;
  }
}
.brand__logo--ound {
  height: 30px;
  width: auto;
}
@media screen and (max-width: 1024px) {
  .brand__logo--ound {
    height: 20px;
  }
}
.brand__name {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  font-size: 2rem;
  -webkit-transition: 1.5s;
  transition: 1.5s;
  opacity: 0;
}
.brand__name.is-visible {
  opacity: 1;
  -webkit-filter: blur(0px);
          filter: blur(0px);
}
@media screen and (max-width: 1024px) {
  .brand__name {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.brand__name--catzorange img {
  width: auto;
  max-height: 15px;
}
@media screen and (min-width: 1024px) {
  .brand__name--catzorange img {
    max-height: 30px;
  }
}
.brand__name--gur {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 1024px) {
  .brand__name--gur {
    padding-right: 20%;
  }
}
@media screen and (min-width: 1024px) {
  .brand__name--ound {
    margin-top: 5svh;
  }
}
.brand__name--lissome {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.brand__content {
  padding-bottom: 10px;
}
@media screen and (min-width: 1024px) {
  .brand__content--gur_landscapetext {
    margin-top: 60px;
  }
}
.brand__content--lissome {
  padding-bottom: 0;
}
.brand__text {
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .brand__text {
    padding-right: 15svw;
    padding-left: 2.5svw;
  }
}
@media screen and (max-width: 1024px) {
  .brand__text--jp {
    padding-right: 2.5svw;
    padding-left: 15svw;
  }
}
@media screen and (max-width: 1024px) {
  .brand__text--fullwidth {
    padding: 0 2.5svw;
  }
}
@media screen and (min-width: 1024px) {
  .brand__text--ound_left {
    width: 32.5%;
    margin-top: 7.5svh;
  }
}
@media screen and (min-width: 1024px) {
  .brand__text--ound_right {
    margin-left: auto;
    width: 32.5%;
    margin-top: 5svh;
  }
}
.brand__paragraph {
  text-align: justify;
  -webkit-transition: 1.5s;
  transition: 1.5s;
  opacity: 0;
}
.brand__paragraph.is-visible {
  opacity: 1;
  -webkit-filter: blur(0px);
          filter: blur(0px);
}
.brand__paragraph--en {
  font-size: 1rem;
  line-height: 150%;
}
@media screen and (max-width: 1024px) {
  .brand__paragraph--en {
    font-size: 0.95rem;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
  }
}
.brand__paragraph--jp {
  line-height: 160%;
  font-size: 1rem;
}
@media screen and (max-width: 1024px) {
  .brand__paragraph--jp {
    font-size: 0.975rem;
  }
}
.brand__paragraph + .brand__paragraph {
  margin-top: 10px;
}
.brand__linklist {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  .brand__linklist--ound {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
}
@media screen and (max-width: 1024px) {
  .brand__linklist {
    gap: 20px;
    font-size: 0.8rem;
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
    padding-right: 2rem;
  }
}
.brand__linklist--lissome {
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .brand__linklist--lissome {
    padding-right: 0;
  }
}
@media screen and (min-width: 1024px) {
  .brand__linklist--lissome {
    margin-top: 0;
  }
}
.brand__linklist_item {
  -webkit-transition: 1.5s;
  transition: 1.5s;
  opacity: 0;
  display: block;
}
.brand__linklist_item.is-visible {
  opacity: 1;
  -webkit-filter: blur(0px);
          filter: blur(0px);
}
.brand__link {
  padding-left: 18px;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  .brand__link {
    padding-left: 10px;
  }
}
.brand__link span {
  display: inline-block;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.brand__link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 10px;
  height: 1px;
  background: black;
  -webkit-transition: width 0.5s;
  transition: width 0.5s;
  -webkit-transform-origin: left;
          transform-origin: left;
}
@media screen and (max-width: 1024px) {
  .brand__link::before {
    width: 5px;
  }
}
.brand__link:hover {
  text-decoration: none;
}
.brand__link:hover span {
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
}
.brand__link:hover::before {
  border-radius: 2px;
  width: 2px;
}

.contact {
  max-width: 1280px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 15svh 10svw 0;
}
.contact__text {
  margin-top: 40px;
}
.contact__paragraph + .contact__paragraph {
  margin-top: 10px;
}
.contact__link {
  padding-left: 18px;
  position: relative;
  display: inline-block;
  display: block;
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .contact__link {
    padding-left: 10px;
  }
}
.contact__link span {
  display: inline-block;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.contact__link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 10px;
  height: 1px;
  background: black;
  -webkit-transition: width 0.5s;
  transition: width 0.5s;
  -webkit-transform-origin: left;
          transform-origin: left;
}
@media screen and (max-width: 1024px) {
  .contact__link::before {
    width: 5px;
  }
}
.contact__link:hover {
  text-decoration: none;
}
.contact__link:hover span {
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
}
.contact__link:hover::before {
  border-radius: 2px;
  width: 2px;
}

.stories {
  max-width: 1280px;
  margin: 0 auto;
  margin-top: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 40px;
}
@media screen and (max-width: 1024px) {
  .stories {
    padding: 5svw;
  }
}
.stories__heading {
  width: 100%;
}
.stories__visual {
  width: 48%;
  margin-top: 40px;
  height: 100vh; /* ビューポートの高さに合わせる */
  max-height: 90vh;
  overflow: hidden;
  position: sticky; /* 固定位置 */
  top: 40px; /* 上部からの位置 */
  -ms-flex-item-align: start;
      align-self: flex-start; /* flexアイテムの配置を開始位置に */
  /* 親要素のスタイル例 */
}
@media screen and (max-width: 1024px) {
  .stories__visual {
    display: none;
  }
}
.stories__visual-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.stories__visual img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.stories__visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none; /* クリックイベントを通過させる */
}
.stories__body {
  width: 48%;
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .stories__body {
    width: 100%;
  }
}
.stories__list {
  width: 100%;
}
.stories__item {
  border-top: #999999 thin solid;
  -webkit-transition: 1.5s;
  transition: 1.5s;
  opacity: 0;
}
.stories__item.is-visible {
  opacity: 1;
  -webkit-filter: blur(0px);
          filter: blur(0px);
}
.stories__link {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding-top: 12px;
  padding-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 1024px) {
  .stories__link {
    padding-top: 20px;
    padding-bottom: 45px;
  }
  .stories__link:hover {
    opacity: 0.6;
    text-decoration: none;
  }
}
.stories__number {
  margin-right: 20px;
  padding-top: 5px;
}
@media screen and (max-width: 1024px) {
  .stories__number {
    padding-left: 0.5svw;
    width: 10svw;
    margin-right: 0;
  }
}
.stories__header {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 1024px) {
  .stories__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.stories__title {
  font-size: 1.25rem;
  line-height: 150%;
}
@media screen and (max-width: 1024px) {
  .stories__title {
    font-size: 1.05rem;
    width: 100%;
  }
}
.stories__author {
  margin-top: 5px;
}
@media screen and (max-width: 1024px) {
  .stories__author {
    position: relative;
    padding-left: 1.5em;
    color: #777777;
  }
  .stories__author::before {
    content: "";
    position: absolute;
    top: 0.55rem;
    left: 0;
    width: 1em;
    height: 1px;
    background: #777777;
  }
}
.stories__meta {
  font-size: 0.9rem;
}
@media screen and (min-width: 1024px) {
  .stories__meta {
    text-align: right;
    margin-left: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .stories__meta {
    margin-top: 10px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 10svw;
    padding-right: 0.5svw;
  }
}
@media screen and (max-width: 1024px) {
  .stories__date {
    margin-left: auto;
    margin-right: 10px;
  }
}
.stories__category {
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .stories__category {
    margin: 10 0 0 0;
  }
}

.article {
  max-width: 1280px;
  margin: 0 auto;
  margin-top: 500px;
}
.article__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
.article__date {
  margin-left: auto;
  margin-top: 200px;
  padding-right: 100px;
}
.article__title {
  margin-top: 100px;
  font-size: 3rem;
  text-align: center;
  width: 100%;
}
.article__author {
  margin-top: 100px;
  padding-left: 100px;
  font-size: 1.5rem;
}
.article__body {
  margin-top: 200px;
}
.article__figure {
  width: 52%;
  overflow: hidden;
}
.article__block--onlyphoto .article__figure {
  width: 50%;
  margin: 0 auto;
}
.article__image {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  -webkit-filter: blur(5px);
          filter: blur(5px);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out, -webkit-filter 1.2s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out, -webkit-filter 1.2s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, filter 1.2s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, filter 1.2s ease-out, -webkit-transform 0.8s ease-out, -webkit-filter 1.2s ease-out;
  /* フェードイン後の状態 */
}
.article__image.is-visible {
  -webkit-filter: blur(0px);
          filter: blur(0px);
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.article__text {
  width: 46%;
  overflow-wrap: break-word;
  word-break: break-word;
}
.article__paragaph {
  line-height: 150%;
  -webkit-transition: 1.5s;
  transition: 1.5s;
  opacity: 0;
}
.article__paragaph.is-visible {
  opacity: 1;
  -webkit-filter: blur(0px);
          filter: blur(0px);
}
.article__paragaph + .article__paragaph {
  margin-top: 20px;
}
.article__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 90%;
  margin: 0 auto;
}
.article__block--halfsize {
  width: 100%;
  padding-left: 10%;
}
.article__block:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
* + .article__block {
  margin-top: 150px;
}
.article__colophon {
  width: 60%;
  margin: 0 auto;
  margin-top: 50px;
  text-align: center;
}
.article__list + .article__list {
  margin-top: 10px;
}
.article__list--text {
  margin-top: 30px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.footer {
  padding-bottom: 30px;
  padding-right: 30px;
  font-size: 0.8rem;
  text-align: right;
}

.form {
  /* 
  //オリジナルの矢印を使う場合
  .select__outer {
      position: relative;
      display: table;
      &::before {
          content: "";
          position: absolute;
          top: 50%;
          right: 15px;
          width: 8px;
          height: 8px;
          border-top: 1px $black solid;
          border-right: 1px $black solid;
          transform: translateY(-50%) rotate(135deg);
          pointer-events: none;
      }
      select {
          appearance: none;
      }
  } 
  //オリジナルの矢印を使う場合
  */
}
.form input[type=text], .form input[type=date], .form input[type=email], .form textarea, .form select {
  background: #F1F1F1;
  width: 100%;
  font-size: 12px;
  margin: 0 auto;
  border: none;
  padding: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.form input[type=text]:focus, .form input[type=date]:focus, .form input[type=email]:focus, .form textarea:focus, .form select:focus {
  outline: none;
  color: black;
  background: lightgray;
}
.form textarea {
  min-height: 100px;
}
.form button, .form input[type=submit] {
  width: 70%;
  padding: 15px;
  margin: 0 auto;
  background: black;
  color: white;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border: none;
  cursor: pointer;
}
.form button:hover, .form input[type=submit]:hover {
  background: white;
  color: #333;
}

/* .pagetopbutton {
    position: fixed;
    z-index: 1000;
    cursor: pointer;
    right: 25px;
    bottom: -20px;
    opacity: 0;
    visibility: hidden;
    &._visible {
        visibility: visible;
        opacity: 1;
        bottom: 20px;
    }
} *//*# sourceMappingURL=base.css.map */