@charset "UTF-8";
/* フォント定設
-----------------------------------------------------------------*/
@font-face {
  font-family: 'MyYuGothicM';
  font-weight: normal;
  src: local("YuGothic-Medium"), local("Yu Gothic Medium"), local("YuGothic-Regular");
  /* 游ゴシックMediumが存在しないWindows8.1用 */ }

@font-face {
  font-family: 'MyYuGothicM';
  font-weight: bold;
  src: local("YuGothic-Bold"), local("Yu Gothic Bold");
  /* PostScript Nameを認識できないChrome用にFull Nameを指定 */ }

/* フォント定設
-----------------------------------------------------------------*/
@font-face {
  font-family: 'MyYuGothicM';
  font-weight: normal;
  src: local("YuGothic-Medium"), local("Yu Gothic Medium"), local("YuGothic-Regular");
  /* 游ゴシックMediumが存在しないWindows8.1用 */ }

@font-face {
  font-family: 'MyYuGothicM';
  font-weight: bold;
  src: local("YuGothic-Bold"), local("Yu Gothic Bold");
  /* PostScript Nameを認識できないChrome用にFull Nameを指定 */ }

/*=============================================

	ボタン

==============================================*/
/*=============================================

	カード

==============================================*/
/*=============================================

	リンクボタン

==============================================*/
/*=============================================

	article

==============================================*/
/*=============================================

	header

==============================================*/
.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .header {
      padding: 20px 72px 0 16rem; } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .header {
      padding: 30px 16px 0; } }

/*
  ロゴ
------------------------------------*/
.headerLogo {
  position: fixed;
  z-index: 100; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .headerLogo {
      top: 24px;
      left: 24px; } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .headerLogo {
      top: 29px;
      left: 16px; } }

.headerLogo_link {
  display: block; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .headerLogo_link {
      width: 100%;
      max-width: 106px;
      aspect-ratio: 8.83333; }
      .headerLogo_link svg {
        display: block;
        width: 100%;
        height: 100%; } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .headerLogo_link {
      width: 100%;
      max-width: 142px;
      aspect-ratio: 7.88889; }
      .headerLogo_link svg {
        display: block;
        width: 100%;
        height: 100%; } }

/*
  ナビゲーション
------------------------------------*/
.headerNav {
  margin-left: auto; }

.links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px; }

.links--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }

.globalMenu_button {
  width: 40px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #111111;
  margin-left: auto;
  position: fixed;
  z-index: 20;
  top: 16px;
  right: 16px; }

.globalMenu_button_line {
  display: block;
  width: 50%;
  height: 1px;
  border-radius: 2px;
  background: #FFFFFF;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: cubic-bezier(0.37, 0.82, 0.58, 1);
  transition-timing-function: cubic-bezier(0.37, 0.82, 0.58, 1); }
  .globalMenu_button_line:nth-child(1) {
    top: calc(50% - 2px); }
  .globalMenu_button_line:nth-child(2) {
    top: calc(50% + 2px); }

.globalMenu.is-open .globalMenu_button_line {
  top: 50%; }
  .globalMenu.is-open .globalMenu_button_line:nth-child(1) {
    -webkit-transform: translate(-50%, -50%) rotate(25deg);
    -ms-transform: translate(-50%, -50%) rotate(25deg);
    transform: translate(-50%, -50%) rotate(25deg); }
  .globalMenu.is-open .globalMenu_button_line:nth-child(2) {
    -webkit-transform: translate(-50%, -50%) rotate(-25deg);
    -ms-transform: translate(-50%, -50%) rotate(-25deg);
    transform: translate(-50%, -50%) rotate(-25deg); }

.globalMenu_contens {
  position: fixed;
  top: 0;
  right: 0;
  width: 270px;
  max-height: 100vh;
  padding: 40px 24px 38px;
  background: #70CC98;
  border-radius: 4px;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-property: opacity, visibility;
  transition-property: opacity, visibility;
  -webkit-transition-timing-function: cubic-bezier(0.37, 0.82, 0.58, 1);
  transition-timing-function: cubic-bezier(0.37, 0.82, 0.58, 1);
  overflow-y: auto; }

.globalMenu_wrapper {
  height: 100%; }

.globalMenu.is-open .globalMenu_contens {
  opacity: 1;
  visibility: visible; }

.globalMenu_links {
  margin-top: 40px; }

/*=============================================

	fixedCta

==============================================*/
.fixedCta {
  position: fixed;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-property: opacity, visibility;
  transition-property: opacity, visibility;
  -webkit-transition-timing-function: cubic-bezier(0.37, 0.82, 0.58, 1);
  transition-timing-function: cubic-bezier(0.37, 0.82, 0.58, 1);
  z-index: 10; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .fixedCta {
      bottom: 40px;
      right: 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      gap: 6px; } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .fixedCta {
      bottom: 0;
      right: 7px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      gap: 6px; } }

.fixedCta.is-visible {
  opacity: 1;
  visibility: visible; }

.fixedCta_button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #70CC98;
  line-height: calc(20 / 16);
  color: #FFFFFF;
  font-family: "proxima-nova", sans-serif;
  font-weight: bold;
  text-transform: uppercase; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .fixedCta_button {
      padding: 24px 12px 16px 10px;
      border-radius: 10px 0 0 10px;
      gap: 8px;
      font-size: clamp(12px, calc(16 / 1280 * 100vw), 20px);
      -ms-writing-mode: tb-rl;
      -webkit-writing-mode: vertical-rl;
      writing-mode: vertical-rl;
      translate: 4px 0;
      -webkit-transition-duration: 0.3s;
      transition-duration: 0.3s;
      -webkit-transition-property: translate;
      transition-property: translate;
      -webkit-transition-timing-function: cubic-bezier(0.37, 0.82, 0.58, 1);
      transition-timing-function: cubic-bezier(0.37, 0.82, 0.58, 1); } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .fixedCta_button {
      padding: 8px 16px 7px 24px;
      border-radius: 10px 10px 0 0;
      gap: 6px;
      font-size: clamp(10px, calc(14 / 375 * 100vw), 18px); } }
  .fixedCta_button .icon {
    width: 100%;
    max-width: 11px;
    aspect-ratio: 1;
    rotate: 135deg; }
    .fixedCta_button .icon svg {
      display: block;
      width: 100%;
      height: 100%; }

@media print and (hover: hover), screen and (hover: hover) and (min-width: 1024px) and (orientation: landscape), screen and (hover: hover) and (min-width: 1025px) {
  .fixedCta_button:hover {
    translate: 0 0; } }

.fixedCta_button--app {
  background: #0095c8; }

.fixedCta_button--contact {
  background: #eac778; }

/* Slider */
.slick-slider {
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  outline: none;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

.c-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 7px 16px 7px 24px;
  border-radius: 999px;
  border: 1px solid #111111;
  font-family: "proxima-nova", sans-serif;
  text-transform: uppercase;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-property: color, background;
  transition-property: color, background;
  -webkit-transition-timing-function: cubic-bezier(0.37, 0.82, 0.58, 1);
  transition-timing-function: cubic-bezier(0.37, 0.82, 0.58, 1); }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .c-link {
      font-size: clamp(10px, calc(14 / 375 * 100vw), 18px);
      line-height: calc(17 / 14); } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .c-link {
      font-size: clamp(10px, calc(14 / 1280 * 100vw), 18px);
      line-height: calc(17 / 14); } }

.c-link_icon {
  display: block;
  width: 100%;
  max-width: 8px;
  aspect-ratio: 1; }
  .c-link_icon svg {
    display: block;
    width: 100%;
    height: 100%; }

@media (hover: hover) {
  .c-link:hover {
    background: #111111;
    color: #FFFFFF; } }

.c-title-label {
  font-family: "freightdispcmp-pro", sans-serif;
  line-height: calc(14 / 12); }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .c-title-label {
      font-size: clamp(8px, calc(12 / 375 * 100vw), 16px); } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .c-title-label {
      font-size: clamp(8px, calc(12 / 1280 * 100vw), 16px); } }

.c-title-label span:before {
  content: "( "; }

.c-title-label span:after {
  content: " )"; }

.c-titleGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px; }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .c-titleGroup--pcLeft {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start; } }

.c-titleGroup_text {
  font-weight: 700;
  font-family: "proxima-nova", sans-serif;
  text-transform: uppercase; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .c-titleGroup_text {
      font-size: clamp(20px, calc(24 / 375 * 100vw), 28px); } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .c-titleGroup_text {
      font-size: clamp(22px, calc(28 / 1280 * 100vw), 32px); } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .c-nav_title {
    font-size: 10px;
    line-height: calc(12 / 10); } }

.c-nav_list {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .c-nav_list {
      gap: 16px; } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .c-nav_list {
      gap: 8px; } }

.c-nav--right .c-nav_title {
  text-align: right; }

.c-nav--right .c-nav_list {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end; }

.c-nav_node {
  font-weight: 500;
  font-family: "proxima-nova", sans-serif;
  text-transform: uppercase; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .c-nav_node {
      font-size: clamp(22px, calc(28 / 375 * 100vw), 32px);
      line-height: calc(34 / 28); } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .c-nav_node {
      font-size: clamp(8px, calc(12 / 1280 * 100vw), 16px);
      line-height: calc(17 / 14); } }

.c-nav_node:not(:has(.c-nav_link)) {
  opacity: 0.3; }

.c-nav_link span {
  position: relative; }

.c-nav_link span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: currentColor;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-property: width;
  transition-property: width;
  -webkit-transition-timing-function: cubic-bezier(0.37, 0.82, 0.58, 1);
  transition-timing-function: cubic-bezier(0.37, 0.82, 0.58, 1); }

@media (hover: hover) {
  .c-nav_link:hover span::before {
    width: 100%; } }

.c-globalNav_title {
  line-height: calc(12 / 10); }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .c-globalNav_title {
      font-size: clamp(8px, calc(12 / 1280 * 100vw), 16px); } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .c-globalNav_title {
      font-size: clamp(8px, calc(12 / 375 * 100vw), 16px); } }

.c-globalNav_list {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px; }

.c-globalNav_node {
  font-family: "proxima-nova", sans-serif;
  line-height: calc(29 / 24);
  font-weight: bold;
  text-transform: uppercase; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .c-globalNav_node {
      font-size: clamp(20px, calc(24 / 1280 * 100vw), 28px); } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .c-globalNav_node {
      font-size: clamp(20px, calc(24 / 375 * 100vw), 28px); } }

.c-globalNav_node:not(:has(.c-globalNav_link)) {
  opacity: 0.3; }

.c-globalNav_link span {
  position: relative; }

.c-globalNav_link span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: currentColor;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-property: width;
  transition-property: width;
  -webkit-transition-timing-function: cubic-bezier(0.37, 0.82, 0.58, 1);
  transition-timing-function: cubic-bezier(0.37, 0.82, 0.58, 1); }

@media (hover: hover) {
  .c-globalNav_link:hover span::before {
    width: 100%; } }

.c-title {
  font-family: "proxima-nova", sans-serif;
  line-height: calc(27 / 22);
  text-transform: uppercase; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .c-title {
      font-size: clamp(18px, calc(22 / 1280 * 100vw), 26px); } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .c-title {
      font-size: clamp(16px, calc(20 / 375 * 100vw), 24px); } }

.c-card_image {
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
  max-width: 30rem;
  aspect-ratio: 1; }
  .c-card_image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover; }
  .c-card_image img {
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-timing-function: cubic-bezier(0.37, 0.82, 0.58, 1);
    transition-timing-function: cubic-bezier(0.37, 0.82, 0.58, 1); }

.c-card_contents {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  gap: 12px; }

.c-card_category {
  display: inline-block;
  background-color: #FFFFFF;
  border-radius: 4px;
  padding: 4px 8px;
  font-weight: 500;
  line-height: calc(17 / 12);
  text-transform: uppercase; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .c-card_category {
      font-size: clamp(8px, calc(12 / 375 * 100vw), 16px); } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .c-card_category {
      font-size: clamp(8px, calc(12 / 1280 * 100vw), 16px); } }

.c-card_title {
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .c-card_title {
      font-size: clamp(14px, calc(18 / 1280 * 100vw), 22px); } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .c-card_title {
      font-size: clamp(12px, calc(16 / 375 * 100vw), 20px); } }

.c-card_tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .c-card_tags {
      gap: 16px; } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .c-card_tags {
      margin-top: 8px;
      gap: 8px; } }

.c-card_tag {
  line-height: calc(17 / 12); }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .c-card_tag {
      font-size: clamp(8px, calc(12 / 375 * 100vw), 16px); } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .c-card_tag {
      font-size: clamp(8px, calc(12 / 1280 * 100vw), 16px); } }

@media (hover: hover) {
  .c-card_link:hover .c-card_image img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05); } }

.c-banner {
  display: -ms-grid;
  display: grid;
  gap: 0.4rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #F8F8EF;
  border-radius: 99.9rem;
  border: 1px solid #111111; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .c-banner {
      -ms-grid-columns: 1fr 9rem;
      grid-template-columns: 1fr 9rem;
      min-width: 42.5rem;
      min-height: 11.8rem;
      padding: 0.8rem 1.4rem 0.8rem 4.8rem; } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .c-banner {
      width: 100%;
      max-width: 34.3rem;
      min-height: 10rem;
      padding: 0.8rem 1.5rem 0.8rem 4rem;
      -ms-grid-columns: 1fr 7rem;
      grid-template-columns: 1fr 7rem; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .c-banner_tag {
    font-size: clamp(8px, calc(12 / 1280 * 100vw), 16px); } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  .c-banner_tag {
    font-size: 1rem; } }

.c-banner_title {
  margin-top: 0.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: calc(29 / 20); }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .c-banner_title {
      font-size: clamp(16px, calc(20 / 1280 * 100vw), 24px); } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .c-banner_title {
      font-size: clamp(12px, calc(16 / 375 * 100vw), 20px); } }

.c-banner_text {
  margin-top: 0.2rem;
  letter-spacing: 0.1em;
  line-height: calc(18 / 12); }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .c-banner_text {
      font-size: clamp(8px, calc(12 / 1280 * 100vw), 16px); } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .c-banner_text {
      font-size: 1rem; } }

.c-banner_icon {
  aspect-ratio: 1 / 1;
  display: -ms-grid;
  display: grid;
  place-content: center;
  position: relative;
  z-index: 0; }
  .c-banner_icon::after {
    content: '';
    display: block;
    border-radius: 50%;
    background: #111111;
    border: 1px solid #111111;
    position: absolute;
    inset: 0;
    z-index: -1;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: scale;
    transition-property: scale;
    -webkit-transition-timing-function: cubic-bezier(0.37, 0.82, 0.58, 1);
    transition-timing-function: cubic-bezier(0.37, 0.82, 0.58, 1); }
  .c-banner_icon svg {
    fill: #F8F8EF; }
    @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
      .c-banner_icon svg {
        width: 100%;
        max-width: 17px;
        aspect-ratio: 1;
        max-width: 1.7rem; }
        .c-banner_icon svg svg {
          display: block;
          width: 100%;
          height: 100%; } }
    @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
      .c-banner_icon svg {
        width: 100%;
        max-width: 12px;
        aspect-ratio: 1;
        max-width: 1.2rem; }
        .c-banner_icon svg svg {
          display: block;
          width: 100%;
          height: 100%; } }

@media (hover: hover) {
  .c-banner:hover .c-banner_icon::after {
    scale: 1.1; } }

:root {
  --w-height: 100vh;
  --w-width: 100vw; }

.ht {
  height: 0;
  width: 0;
  overflow: hidden;
  display: none; }

.wrapper {
  position: relative; }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .section {
    padding-top: 160px; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  .section {
    padding-top: 120px; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .inner {
    padding: 0 40px; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  .inner {
    padding: 0 16px; } }

.container {
  position: relative;
  width: 100%;
  z-index: 5;
  background-color: #F8F8EF; }
  .container.is-hidden {
    z-index: -1; }

html.lenis,
html.lenis body {
  height: auto; }

.lenis:not(.lenis-autoToggle).lenis-stopped {
  overflow: clip; }

.lenis.lenis-smooth [data-lenis-prevent] {
  -ms-scroll-chaining: none;
  overscroll-behavior: contain; }

.lenis.lenis-smooth iframe {
  pointer-events: none; }

.lenis.lenis-autoToggle {
  -webkit-transition-property: overflow;
  transition-property: overflow;
  -webkit-transition-duration: 1ms;
  transition-duration: 1ms;
  transition-behavior: allow-discrete; }

.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background-color: #70CC98;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-property: opacity, visibility;
  transition-property: opacity, visibility;
  -webkit-transition-timing-function: cubic-bezier(0.37, 0.82, 0.58, 1);
  transition-timing-function: cubic-bezier(0.37, 0.82, 0.58, 1); }
  .is-loading-start .loader {
    opacity: 1;
    visibility: visible; }
  .is-visited .loader,
  .is-loading-start.is-loading-end .loader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none; }

.loader_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -40%;
  opacity: 0;
  -webkit-animation: logo-loading-animation 1s cubic-bezier(0.37, 0.82, 0.58, 1) forwards;
  animation: logo-loading-animation 1s cubic-bezier(0.37, 0.82, 0.58, 1) forwards;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .loader_logo {
      width: 100%;
      max-width: 243px;
      aspect-ratio: 1.78676;
      max-width: 24.3rem; }
      .loader_logo svg {
        display: block;
        width: 100%;
        height: 100%; } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .loader_logo {
      width: 100%;
      max-width: 165px;
      aspect-ratio: 1.79348;
      max-width: 16.5rem;
      max-width: 200px; }
      .loader_logo svg {
        display: block;
        width: 100%;
        height: 100%; } }
  .loader_logo svg {
    fill: #FFFFFF; }

@-webkit-keyframes logo-loading-animation {
  0% {
    opacity: 0;
    translate: -50% -40%; }
  100% {
    opacity: 1;
    translate: -50% -50%; } }

@keyframes logo-loading-animation {
  0% {
    opacity: 0;
    translate: -50% -40%; }
  100% {
    opacity: 1;
    translate: -50% -50%; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  .fv {
    padding-top: 96px;
    overflow-x: hidden;
    padding-bottom: 88px; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .fv {
    padding-top: 9.6rem;
    padding-bottom: 10rem; } }

.fv_inner {
  position: relative; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .fv_inner {
      padding: 0 4rem; } }

.fv_title {
  margin: 0 auto; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .fv_title {
      width: 100%;
      max-width: 29rem;
      aspect-ratio: 1.79012;
      width: 29rem;
      max-width: 400px; }
      .fv_title img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover; } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .fv_title {
      width: 100%;
      max-width: 72.5rem;
      aspect-ratio: 4.07303; }
      .fv_title img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover; } }

.fv_wrapper {
  position: relative; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .fv_wrapper {
      max-width: 600px;
      margin-right: auto;
      margin-left: auto; } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .fv_wrapper {
      margin-top: 1.2rem;
      padding-bottom: 3.5rem; } }

.fv_lead {
  font-family: "proxima-nova", sans-serif; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .fv_lead {
      width: 82.9%;
      margin-top: 30px;
      margin-right: auto;
      margin-left: auto;
      font-size: clamp(8px, calc(12 / 375 * 100vw), 16px);
      line-height: calc(18 / 12);
      text-align: center; } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .fv_lead {
      font-size: clamp(8px, calc(12 / 1280 * 100vw), 16px);
      line-height: calc(18 / 12);
      position: absolute;
      top: 4.6rem;
      left: 0; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  .fv_image {
    margin-top: 30px;
    margin-right: auto;
    margin-left: auto;
    padding-left: 6px;
    width: 100%;
    max-width: 38.7rem;
    aspect-ratio: 2.46497;
    width: 38.7rem;
    max-width: 600px; }
    .fv_image img {
      width: 100%;
      height: 100%;
      -o-object-fit: contain;
      object-fit: contain; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .fv_image {
    width: 100%;
    max-width: 92.8rem;
    aspect-ratio: 2.46809;
    width: 92.8rem;
    max-width: initial;
    margin-left: 16.4rem;
    position: relative;
    z-index: -1; }
    .fv_image img {
      width: 100%;
      height: 100%;
      -o-object-fit: contain;
      object-fit: contain; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .fv_nav {
    position: absolute;
    top: 1.8rem;
    right: 0; } }

.fv_scroll {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7px; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .fv_scroll {
      bottom: -0.4rem;
      left: 2.4rem; } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .fv_scroll {
      bottom: 1rem;
      left: 2.4rem; } }

.fv_scroll_arrow {
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .fv_scroll_arrow {
      width: 100%;
      max-width: 1.1rem;
      aspect-ratio: 1; }
      .fv_scroll_arrow img {
        width: 100%;
        height: 100%;
        -o-object-fit: contain;
        object-fit: contain; } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .fv_scroll_arrow {
      width: 100%;
      max-width: 1.1rem;
      aspect-ratio: 1; }
      .fv_scroll_arrow img {
        width: 100%;
        height: 100%;
        -o-object-fit: contain;
        object-fit: contain; } }
  .fv_scroll_arrow img {
    display: block; }

.fv_scroll_text {
  font-family: "freightdispcmp-pro", sans-serif;
  -ms-flex-negative: 0;
  flex-shrink: 0; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .fv_scroll_text {
      font-size: clamp(8px, calc(12 / 1280 * 100vw), 16px); } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .fv_scroll_text {
      font-size: clamp(8px, calc(12 / 375 * 100vw), 16px); } }

.fv_circle {
  padding: 1px;
  overflow: hidden; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .fv_circle {
      width: 100%;
      max-width: 110px;
      aspect-ratio: 1;
      max-width: 11rem;
      margin-top: 17px;
      margin-left: auto;
      margin-right: 17px;
      max-width: 112px; }
      .fv_circle svg {
        display: block;
        width: 100%;
        height: 100%; } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .fv_circle {
      width: 100%;
      max-width: 140px;
      aspect-ratio: 1;
      max-width: 14rem;
      position: absolute;
      bottom: 0;
      right: 2.4rem; }
      .fv_circle svg {
        display: block;
        width: 100%;
        height: 100%; } }
  .fv_circle svg {
    -webkit-animation: rotate 12s linear infinite;
    animation: rotate 12s linear infinite; }

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

.fv_banner {
  position: absolute; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .fv_banner {
      bottom: 31px;
      right: 8px; } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .fv_banner {
      right: 0.8rem;
      bottom: -1.6rem; } }
  .fv_banner a {
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-timing-function: cubic-bezier(0.37, 0.82, 0.58, 1);
    transition-timing-function: cubic-bezier(0.37, 0.82, 0.58, 1); }
  @media (hover: hover) {
    .fv_banner a:hover {
      opacity: 0.7; } }
  .fv_banner span {
    display: -ms-grid;
    display: grid;
    place-content: center;
    background: #FFFFFF;
    border-radius: 0.8rem; }
    @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
      .fv_banner span {
        width: 164px;
        height: 109px;
        font-size: 20px;
        line-height: 1;
        font-weight: bold; } }
    @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
      .fv_banner span {
        width: 24rem;
        height: 16rem;
        font-size: clamp(16px, calc(20 / 1280 * 100vw), 24px);
        line-height: 1.5;
        font-weight: bold; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .message {
    margin-top: 4.4rem; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  .message_inner {
    padding: 0 1.6rem; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .message_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center; } }

.message .conceptContents_texts {
  gap: 1.4rem; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .message .conceptContents_texts {
      margin-top: 2.2rem; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  .message .conceptContents_text {
    text-align: left; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  .message .conceptContents_logo {
    margin-top: 3.6rem; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .message .conceptContents_logo {
    margin-top: 2.8rem; } }

.concept {
  color: #FFFFFF;
  position: relative;
  z-index: 0; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .concept {
      margin-top: 15rem; } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .concept {
      --scroll-area: 450rem;
      height: calc(var(--scroll-area) + 100vh + 60vh); } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  .concept_sticky {
    display: none; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .concept_sticky {
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 4rem;
    position: sticky;
    top: 0; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .concept_scroll {
    margin-top: 100vh;
    height: var(--scroll-area);
    position: absolute;
    inset: 0; } }

.concept_titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #F8F8EF; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .concept_titles {
      gap: 24px;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      text-align: center; } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .concept_titles {
      gap: 2.4rem;
      position: relative; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  .concept_title {
    font-size: clamp(10px, calc(14 / 375 * 100vw), 18px);
    line-height: calc(17 / 14); } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .concept_title {
    font-size: clamp(10px, calc(14 / 1280 * 100vw), 18px);
    line-height: calc(17 / 14); } }

.concept_copy {
  font-family: "proxima-nova", sans-serif;
  font-weight: bold;
  line-height: calc(80 / 70);
  text-transform: uppercase; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .concept_copy {
      font-size: 50px; } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .concept_copy {
      font-size: 7rem; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  .conceptContents {
    padding-bottom: 27.1rem; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .conceptContents {
    position: absolute;
    inset: 0; } }

.conceptContents_image {
  border-radius: 0.4rem;
  overflow: hidden; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .conceptContents_image {
      position: absolute; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .conceptContents_image--02,
  .conceptContents_image--05 {
    z-index: 0; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .conceptContents_image--01,
  .conceptContents_image--03,
  .conceptContents_image--04,
  .conceptContents_image--06,
  .conceptContents_image--07 {
    z-index: -1; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  .conceptContents_image--01 {
    width: 100%;
    max-width: 12rem;
    aspect-ratio: 1.5;
    margin-top: 8rem;
    margin-left: 0; }
    .conceptContents_image--01 img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
      object-fit: cover; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .conceptContents_image--01 {
    width: 100%;
    max-width: 31rem;
    aspect-ratio: 1.49758;
    top: 0;
    left: 0; }
    .conceptContents_image--01 img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
      object-fit: cover; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  .conceptContents_image--02 {
    width: 100%;
    max-width: 14rem;
    aspect-ratio: 1;
    margin-top: 8rem;
    margin-left: 1.6rem; }
    .conceptContents_image--02 img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
      object-fit: cover; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .conceptContents_image--02 {
    width: 100%;
    max-width: 27rem;
    aspect-ratio: 1;
    top: calc(247 / 2004 * 100%);
    left: 35.0rem; }
    .conceptContents_image--02 img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
      object-fit: cover; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  .conceptContents_image--03 {
    width: 100%;
    max-width: 12.8rem;
    aspect-ratio: 0.66667;
    margin-top: -38rem;
    margin-left: auto;
    margin-right: 4.0rem; }
    .conceptContents_image--03 img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
      object-fit: cover; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .conceptContents_image--03 {
    width: 100%;
    max-width: 42.4rem;
    aspect-ratio: 0.66562;
    top: calc(40 / 2004 * 100%);
    right: 4.0rem; }
    .conceptContents_image--03 img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
      object-fit: cover; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  .conceptContents_image--04 {
    width: 100%;
    max-width: 13.4rem;
    aspect-ratio: 0.54918;
    margin-top: 8rem;
    margin-left: auto;
    margin-right: 0.8rem; }
    .conceptContents_image--04 img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
      object-fit: cover; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .conceptContents_image--04 {
    width: 100%;
    max-width: 34.5rem;
    aspect-ratio: 0.6699;
    top: calc(638 / 2004 * 100%);
    left: 19.5rem; }
    .conceptContents_image--04 img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
      object-fit: cover; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  .conceptContents_image--05 {
    width: 100%;
    max-width: 18rem;
    aspect-ratio: 1.5;
    margin-top: 24rem; }
    .conceptContents_image--05 img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
      object-fit: cover; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .conceptContents_image--05 {
    width: 100%;
    max-width: 27rem;
    aspect-ratio: 1.5;
    top: calc(1394 / 2004 * 100%);
    left: 0; }
    .conceptContents_image--05 img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
      object-fit: cover; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  .conceptContents_image--06 {
    width: 100%;
    max-width: 20.7rem;
    aspect-ratio: 1;
    margin-top: 16.2rem;
    margin-left: 8rem; }
    .conceptContents_image--06 img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
      object-fit: cover; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .conceptContents_image--06 {
    width: 100%;
    max-width: 42.5rem;
    aspect-ratio: 1;
    top: calc(1578 / 2004 * 100%);
    left: 35.0rem; }
    .conceptContents_image--06 img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
      object-fit: cover; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  .conceptContents_image--07 {
    width: 100%;
    max-width: 14.8rem;
    aspect-ratio: 1;
    margin-top: -41.9rem;
    margin-left: auto;
    margin-right: 1.6rem; }
    .conceptContents_image--07 img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
      object-fit: cover; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .conceptContents_image--07 {
    width: 100%;
    max-width: 27rem;
    aspect-ratio: 1;
    top: calc(1512 / 2004 * 100%);
    right: 0; }
    .conceptContents_image--07 img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
      object-fit: cover; } }

.conceptContents_container01 {
  color: #111111; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .conceptContents_container01 {
      padding: 0 3.2rem;
      max-width: 600px;
      margin-right: auto;
      margin-left: auto;
      text-align: left;
      position: relative;
      z-index: 1; } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .conceptContents_container01 {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      text-align: center;
      position: absolute;
      top: 0;
      right: 0;
      left: 0; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  .conceptContents_container02 {
    position: relative;
    z-index: 1;
    margin-top: -4rem; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .conceptContents_container02 {
    width: 58rem;
    position: absolute;
    top: calc(837 / 2004 * 100%);
    right: 4.0rem; } }

.conceptContents_lead {
  font-weight: 500;
  letter-spacing: 0.2em; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .conceptContents_lead {
      font-size: clamp(15px, calc(19 / 375 * 100vw), 23px);
      line-height: calc(30 / 19); } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .conceptContents_lead {
      margin-bottom: 3rem;
      font-size: clamp(18px, calc(22 / 1280 * 100vw), 26px);
      line-height: calc(33 / 22); } }

.conceptContents_texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .conceptContents_texts {
      margin-top: 4rem;
      gap: 1rem;
      text-align: center; } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .conceptContents_texts {
      gap: 1rem; } }

.conceptContents_container01 .conceptContents_texts {
  gap: 2.8rem; }

.conceptContents_text {
  letter-spacing: 0.1em;
  line-height: calc(32 / 16); }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .conceptContents_text {
      font-size: clamp(9px, calc(13 / 375 * 100vw), 17px); } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .conceptContents_text {
      font-size: clamp(12px, calc(16 / 1280 * 100vw), 20px); } }
  .conceptContents_text .uppercase {
    text-transform: uppercase; }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  .conceptContents_container01 .conceptContents_text {
    font-size: clamp(10px, calc(14 / 375 * 100vw), 18px);
    text-align: left; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  .conceptContents_logo {
    width: 100%;
    max-width: 30.8rem;
    aspect-ratio: 7.33333;
    width: 30.8rem;
    max-width: 500px;
    margin-top: 6.4rem;
    margin-right: auto;
    margin-left: auto; }
    .conceptContents_logo img {
      width: 100%;
      height: 100%;
      -o-object-fit: contain;
      object-fit: contain; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .conceptContents_logo {
    width: 100%;
    max-width: 42.5rem;
    aspect-ratio: 7.20339;
    margin-top: 6.4rem; }
    .conceptContents_logo img {
      width: 100%;
      height: 100%;
      -o-object-fit: contain;
      object-fit: contain; } }

.outro {
  position: relative;
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .outro {
      margin-top: 9rem;
      min-height: 400px;
      background-image: url(../images/illust_surf_sp.png);
      margin-bottom: -2px; } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .outro {
      margin-top: -30vh;
      aspect-ratio: 1280 / 584;
      background-image: url(../images/illust_surf_pc.png); } }

.mainContents > .outro ~ * {
  background: #F8F8EF; }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .product {
    padding-top: 94px; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  .product {
    padding-top: 6px; } }

.product_lead {
  padding: 0 16px;
  line-height: 2;
  letter-spacing: 0.1em; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .product_lead {
      padding-top: 40px;
      font-size: clamp(10px, calc(14 / 1280 * 100vw), 18px);
      text-align: center; } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .product_lead {
      padding-top: 36px;
      font-size: clamp(10px, calc(14 / 375 * 100vw), 18px); } }

.product_wrapper {
  margin-top: 40px; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .product_wrapper {
      overflow: hidden;
      position: relative;
      height: 100vh; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .product_contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .product_container {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    height: 100%; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  .product_container {
    min-height: 100vh; } }

.productContainer {
  position: relative; }

.productContainer_media {
  border-radius: 4px;
  overflow: hidden; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .productContainer_media {
      height: 100%; } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .productContainer_media {
      overflow-x: hidden; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .productContainer_mediaInner {
    height: 100%;
    position: relative; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  .productContainer_mediaInner {
    position: absolute;
    top: 0;
    left: 0;
    height: calc(320 / 630 * 100vh); } }

@media print, screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .productContainer_mediaInner {
    height: calc(400 / 630 * 100vh); } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .productContainer_mediaInner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.44)), to(rgba(0, 0, 0, 0)));
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0));
    background: linear-gradient(to right, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0)); } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .productContainer_contents {
    position: absolute;
    inset: 0;
    padding: 40px;
    color: #FFFFFF;
    z-index: 1;
    pointer-events: none; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  .productContainer_contents {
    padding: 24px 32px 64px;
    min-height: calc(100% - (320 / 630 * 100vh));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; } }

@media print, screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .productContainer_contents {
    min-height: calc(100% - (400 / 630 * 100vh)); } }

.productSlick {
  aspect-ratio: 1240 / 720;
  border-radius: 4px;
  overflow: hidden;
  position: relative; }

.productSlick_node {
  width: 100%;
  height: 100%; }
  .productSlick_node img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover; }

.productSlick_dots {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  z-index: 1; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .productSlick_dots {
      bottom: 40px;
      left: 40px; } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .productSlick_dots {
      top: 8px;
      left: 8px; } }
  .productSlick_dots li {
    display: -ms-grid;
    display: grid;
    place-content: center; }
    .productSlick_dots li button {
      display: block;
      width: 8px;
      aspect-ratio: 1 / 1;
      border-radius: 50%;
      border: 1px solid #FFFFFF;
      -webkit-transition-duration: 0.3s;
      transition-duration: 0.3s;
      -webkit-transition-property: width, background;
      transition-property: width, background;
      -webkit-transition-timing-function: cubic-bezier(0.37, 0.82, 0.58, 1);
      transition-timing-function: cubic-bezier(0.37, 0.82, 0.58, 1); }
    .productSlick_dots li.slick-active button {
      width: 12px;
      background: #FFFFFF; }
    .productSlick_dots li span {
      display: none;
      font-size: 10px;
      line-height: 1; }
    .productSlick_dots li.slick-active span {
      display: block; }

.productContents_tag {
  font-family: "proxima-nova", sans-serif; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .productContents_tag {
      font-size: clamp(10px, calc(14 / 1280 * 100vw), 18px); } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .productContents_tag {
      font-size: clamp(8px, calc(12 / 375 * 100vw), 16px); } }

.productContents_title {
  margin-top: 8px;
  font-family: "proxima-nova", sans-serif;
  font-weight: bold;
  text-transform: uppercase; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .productContents_title {
      font-size: clamp(36px, calc(40 / 1280 * 100vw), 44px);
      line-height: calc(49 / 40); } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .productContents_title {
      font-size: clamp(24px, calc(30 / 375 * 100vw), 34px);
      line-height: calc(37 / 30); } }

.productContents_text {
  margin-top: 16px;
  line-height: 2;
  letter-spacing: 0.1em; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .productContents_text {
      font-size: clamp(10px, calc(14 / 1280 * 100vw), 18px); } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .productContents_text {
      font-size: clamp(10px, calc(14 / 375 * 100vw), 18px); } }

.spec {
  overflow: hidden; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .spec {
      padding: 120px 40px 0; } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .spec {
      padding-top: calc(80px - 64px); } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .spec_inner {
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto; } }

.spec_container {
  background: #EDEDE1;
  display: -ms-grid;
  display: grid; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .spec_container {
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -ms-grid-columns: 385px 1fr;
      grid-template-columns: 385px 1fr;
      border-radius: 4px;
      gap: 26px;
      padding: 40px; } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .spec_container {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      gap: 40px;
      padding: 40px 16px; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .spec_image {
    margin-top: 62px;
    width: 100%;
    max-width: 38.5rem;
    aspect-ratio: 2.46795; }
    .spec_image img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
      object-fit: cover; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  .spec_image {
    margin-top: 16px;
    margin-right: -26px;
    width: 100%;
    max-width: 38.5rem;
    aspect-ratio: 2.46795; }
    .spec_image img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
      object-fit: cover; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .spec_info {
    margin-top: 44px; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  .spec_info {
    margin-top: 16px;
    padding: 0 26px; } }

.info_list {
  display: -ms-grid;
  display: grid;
  gap: 12px 8px; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .info_list {
      -ms-grid-columns: auto 1fr;
      grid-template-columns: auto 1fr; } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .info_list {
      -ms-grid-columns: 100%;
      grid-template-columns: 100%; } }

.info_label {
  font-weight: 500;
  letter-spacing: 0.1em; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .info_label {
      font-size: 12px; } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .info_label {
      font-size: clamp(8px, calc(12 / 375 * 100vw), 16px); } }

.info_value {
  letter-spacing: 0.1em; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .info_value {
      font-size: 12px; } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .info_value {
      font-size: clamp(8px, calc(12 / 375 * 100vw), 16px); } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  .info_label:nth-of-type(n+2) {
    margin-top: 8px; } }

.specBody {
  background: #FFFFFF;
  border-radius: 4px;
  position: relative; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .specBody {
      padding: 16px; } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .specBody {
      padding: 32px 16px 12px; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .specBody_buttons {
    display: none; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  .specBody_buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px; } }

.specBody_button {
  display: inline-block;
  width: 100%;
  max-width: 60px;
  height: 33px;
  background: #FFFFFF;
  border: 1px solid #111111;
  border-radius: 999px;
  font-size: 14px;
  line-height: 33px;
  text-align: center;
  font-family: "proxima-nova", sans-serif;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: color, background;
  transition-property: color, background;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out; }
  body[data-product-active="1"] .specBody_button[data-index="1"],
  body[data-product-active="2"] .specBody_button[data-index="2"] {
    background: #111111;
    color: #FFFFFF; }

@media (hover: hover) {
  .specBody_button:hover {
    background: #111111;
    color: #FFFFFF; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  .specBody_images {
    margin-top: 23px; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  .specBody_images {
    width: 100%;
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
    aspect-ratio: 311 / 400;
    position: relative; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  .specBody_image {
    position: absolute;
    inset: 0;
    opacity: 0;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-timing-function: cubic-bezier(0.37, 0.82, 0.58, 1);
    transition-timing-function: cubic-bezier(0.37, 0.82, 0.58, 1); } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .specBody_image--sp {
    display: none; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  body[data-product-active="1"] .specBody_image--sp[data-sp-image-index="1"],
  body[data-product-active="2"] .specBody_image--sp[data-sp-image-index="2"] {
    opacity: 1; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  .specBody_image--pc {
    display: none; } }

.specBody_zoomButton {
  display: -ms-grid;
  display: grid;
  place-content: center;
  width: 48px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #111111;
  position: absolute; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .specBody_zoomButton {
      bottom: -16px;
      right: -16px; } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .specBody_zoomButton {
      bottom: -8px;
      right: -8px; } }
  .specBody_zoomButton svg {
    width: 100%;
    max-width: 20px;
    aspect-ratio: 1;
    fill: #fff; }
    .specBody_zoomButton svg svg {
      display: block;
      width: 100%;
      height: 100%; }

.spec_attention {
  font-size: 10px;
  line-height: 2; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .spec_attention {
      margin-top: 32px; } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .spec_attention {
      margin-top: 20px;
      padding: 0 16px; } }

.modal {
  position: fixed;
  inset: 0;
  background: #EDEDE1;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: opacity, visibility;
  transition-property: opacity, visibility;
  -webkit-transition-timing-function: cubic-bezier(0.37, 0.82, 0.58, 1);
  transition-timing-function: cubic-bezier(0.37, 0.82, 0.58, 1);
  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; }
  .modal.is-open {
    opacity: 1;
    visibility: visible; }

.modal_inner {
  background: #FFFFFF;
  border-radius: 4px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .modal_inner {
      width: calc(100% - 80px);
      max-width: 1200px;
      margin-right: auto;
      margin-left: auto;
      max-height: calc(100vh - 80px);
      padding: 46px 50px 16px; } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .modal_inner {
      width: calc(100% - 32px);
      max-height: calc(100vh - 32px);
      padding: 24px 16px 28px; } }

.modal_contents {
  overflow-y: auto;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-height: 0; }

.modal_close {
  display: -ms-grid;
  display: grid;
  place-content: center;
  width: 40px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #111111;
  position: absolute; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .modal_close {
      top: -16px;
      right: -16px; } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .modal_close {
      top: -8px;
      right: -8px; } }
  .modal_close svg {
    width: 100%;
    max-width: 20px;
    aspect-ratio: 2;
    stroke: #fff; }
    .modal_close svg svg {
      display: block;
      width: 100%;
      height: 100%; }

.modal_image {
  text-align: center; }
  .modal_image img {
    height: auto; }
    @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
      .modal_image img {
        max-height: calc(100vh - 220px);
        min-height: 500px;
        width: auto; } }

.modal_image--sp {
  display: none; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    body[data-product-active="1"] .modal_image--sp[data-sp-image-index="1"],
    body[data-product-active="2"] .modal_image--sp[data-sp-image-index="2"] {
      display: block; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  .modal_image--pc {
    display: none; } }

.modal_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .modal_info {
      margin-top: 24px;
      padding-bottom: 4px; } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .modal_info {
      margin-top: 24px; } }

.gallery_inner {
  position: relative; }

.gallery_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  font-family: "proxima-nova", sans-serif;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  color: #70CC98;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 1; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .gallery_title {
      font-size: 12rem; } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .gallery_title {
      font-size: clamp(40px, calc(56 / 375 * 100vw), 80px); } }

.gallerySlider {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.gallerySlider_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-animation: infinity-scroll-left 40s infinite linear 0.5s both;
  animation: infinity-scroll-left 40s infinite linear 0.5s both;
  -ms-flex-negative: 0;
  flex-shrink: 0; }

.gallerySlider_node {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .gallerySlider_node {
      margin-right: 40px; } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .gallerySlider_node {
      margin-right: 24px; } }

@-webkit-keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); } }

@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .topics_inner {
    padding-left: 40px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 25% 1fr;
    grid-template-columns: 25% 1fr; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  .topics_inner {
    padding-left: 16px; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .topics_head {
    padding-right: 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 print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  .topics_head {
    padding-right: 16px;
    display: -ms-grid;
    display: grid;
    grid-template-areas: "title title" "navigation button";
    row-gap: 40px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  .topics_title {
    grid-area: title; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .topics_button {
    margin-top: 40px; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  .topics_button {
    grid-area: button; } }

.topics_navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .topics_navigation {
      margin-top: auto;
      margin-bottom: 1rem; } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .topics_navigation {
      grid-area: navigation; } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait){
  .topics_title {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2; }
  .topics_button {
    -ms-grid-row: 3;
    -ms-grid-column: 2; }
  .topics_navigation {
    -ms-grid-row: 3;
    -ms-grid-column: 1; } }

.topics_navigation_text {
  font-family: "proxima-nova", sans-serif;
  line-height: calc(15 / 12); }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .topics_navigation_text {
      font-size: clamp(8px, calc(12 / 1280 * 100vw), 16px); } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .topics_navigation_text {
      font-size: clamp(8px, calc(12 / 375 * 100vw), 16px); } }

.topics_navigation_icon {
  display: inline-block;
  width: 100%;
  max-width: 11px;
  aspect-ratio: 1.57143; }
  .topics_navigation_icon svg {
    display: block;
    width: 100%;
    height: 100%; }

.topics_body {
  overflow: auto hidden; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .topics_body {
      padding-bottom: 8px; } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .topics_body {
      margin-top: 40px;
      -ms-overflow-style: none;
      scrollbar-width: none; }
      .topics_body::-webkit-scrollbar {
        display: none; } }

.topics_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.topics_node {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .topics_node {
      width: calc((100% - 120px) / 3);
      padding-right: 40px; } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .topics_node {
      width: 252px;
      padding-right: 15px; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .collaboration_inner {
    padding: 0 40px; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  .collaboration_inner {
    padding: 0 16px; } }

.collaboration_contents {
  margin-top: 40px; }

.collaboration_wrapper {
  display: -ms-grid;
  display: grid;
  position: relative; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .collaboration_wrapper {
      -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
      gap: 40px; } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .collaboration_wrapper {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
      gap: 24px; } }

.collaboration_item {
  text-align: center;
  background: #EDEDE1;
  border-radius: 4px;
  position: relative; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .collaboration_item {
      display: -ms-grid;
      display: grid;
      -ms-grid-rows: subgrid;
      grid-template-rows: subgrid;
      -ms-grid-row-span: 3;
      grid-row: span 3;
      gap: 20px;
      padding: 54px 40px; } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .collaboration_item {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      gap: 20px;
      padding: 48px 16px; } }

.collaboration_item:first-child::before,
.collaboration_item:first-child::after {
  content: "";
  position: absolute;
  height: 1px;
  background: #111111;
  z-index: 1; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .collaboration_item:first-child::before,
    .collaboration_item:first-child::after {
      width: 90px;
      top: 50%;
      right: calc(-45px - 20px);
      translate: 0 -50%; } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .collaboration_item:first-child::before,
    .collaboration_item:first-child::after {
      width: 56px;
      bottom: -12px;
      left: 50%;
      translate: -50% 0; } }

.collaboration_item:first-child::before {
  rotate: 45deg; }

.collaboration_item:first-child::after {
  rotate: -45deg; }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .collaboration_logo {
    display: -ms-grid;
    display: grid;
    place-content: center;
    max-width: 21.3rem;
    aspect-ratio: 213 / 59;
    margin-right: auto;
    margin-left: auto; } }

.collaboration_logo span {
  display: inline-block; }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .collaboration_item--first .collaboration_logo span {
    margin-top: 10px;
    width: 100%;
    max-width: 212px;
    aspect-ratio: 8.83333; }
    .collaboration_item--first .collaboration_logo span svg {
      display: block;
      width: 100%;
      height: 100%; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  .collaboration_item--first .collaboration_logo span {
    width: 100%;
    max-width: 159px;
    aspect-ratio: 8.83333;
    max-width: 15.9rem; }
    .collaboration_item--first .collaboration_logo span svg {
      display: block;
      width: 100%;
      height: 100%; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .collaboration_item--second .collaboration_logo span {
    width: 100%;
    max-width: 139px;
    aspect-ratio: 2.39655; }
    .collaboration_item--second .collaboration_logo span svg {
      display: block;
      width: 100%;
      height: 100%; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  .collaboration_item--second .collaboration_logo span {
    width: 100%;
    max-width: 119px;
    aspect-ratio: 2.42857;
    max-width: 11.9rem; }
    .collaboration_item--second .collaboration_logo span svg {
      display: block;
      width: 100%;
      height: 100%; } }

.collaboration_text {
  line-height: 2;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .collaboration_text {
      margin-top: 3px;
      font-size: clamp(10px, calc(14 / 1280 * 100vw), 18px); } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .collaboration_text {
      font-size: clamp(10px, calc(14 / 375 * 100vw), 18px); } }
  .collaboration_text span {
    display: inline-block; }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .stores_inner {
    padding: 0 40px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 270px 1fr;
    grid-template-columns: 270px 1fr;
    gap: 40px; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  .stores_inner {
    padding: 0 16px; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  .stores_contents {
    margin-top: 40px; } }

.storeContents {
  position: relative;
  overflow: hidden; }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .storeContents.is-hide {
    height: 460px; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  .storeContents.is-hide {
    height: 600px; } }

.storeContents::before {
  content: '';
  height: 228px;
  background: -webkit-linear-gradient(bottom, #F8F8EF 0%, #F8F8EF calc(0% + 40px), transparent 100%);
  background: linear-gradient(to top, #F8F8EF 0%, #F8F8EF calc(0% + 40px), transparent 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-property: opacity, visibility;
  transition-property: opacity, visibility;
  -webkit-transition-timing-function: cubic-bezier(0.37, 0.82, 0.58, 1);
  transition-timing-function: cubic-bezier(0.37, 0.82, 0.58, 1); }

.storeContents.is-hide::before {
  opacity: 1;
  visibility: visible; }

.storeContents_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .storeContents_list {
      gap: 40px; } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .storeContents_list {
      gap: 27px; } }

.storeContents_link {
  text-align: center;
  margin-top: 40px;
  padding-bottom: 80px; }

.storeContents_button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 40px;
  font-family: "proxima-nova", sans-serif;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  z-index: 2; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .storeContents_button {
      font-size: clamp(12px, calc(16 / 1280 * 100vw), 20px); } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .storeContents_button {
      font-size: clamp(12px, calc(16 / 375 * 100vw), 20px); } }
  .storeContents_button button {
    padding: 12px; }

.storeNode_link {
  display: -ms-grid;
  display: grid; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .storeNode_link {
      -ms-grid-columns: 115px 24px 1fr;
      grid-template-columns: 115px 1fr;
      -webkit-column-gap: 24px;
      -moz-column-gap: 24px;
      column-gap: 24px;
      grid-template-areas: "image info" "image areas"; } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .storeNode_link {
      -ms-grid-columns: 80px 8px 1fr;
      grid-template-columns: 80px 1fr;
      -webkit-column-gap: 8px;
      -moz-column-gap: 8px;
      column-gap: 8px;
      grid-template-areas: "image info" "areas areas"; } }

.storeNode_image {
  grid-area: image;
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
  max-width: 11.5rem;
  aspect-ratio: 1; }
  .storeNode_image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover; }
  .storeNode_image img {
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-timing-function: cubic-bezier(0.37, 0.82, 0.58, 1);
    transition-timing-function: cubic-bezier(0.37, 0.82, 0.58, 1); }

@media (hover: hover) {
  .storeNode_link:hover .storeNode_image img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1); } }

.storeNode_info {
  grid-area: info; }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .storeNode_info {
      margin-top: 6px; } }

.storeNode_info_title {
  font-weight: 500; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .storeNode_info_title {
      line-height: 1.5;
      font-size: clamp(12px, calc(16 / 1280 * 100vw), 20px); } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .storeNode_info_title {
      font-size: clamp(10px, calc(14 / 375 * 100vw), 18px);
      line-height: calc(21 / 14); } }

.storeNode_info_text {
  margin-top: 6px;
  line-height: 1.5;
  font-weight: 500; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .storeNode_info_text {
      font-size: clamp(10px, calc(14 / 1280 * 100vw), 18px); } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .storeNode_info_text {
      font-size: clamp(8px, calc(12 / 375 * 100vw), 16px); } }

.storeNode_areas {
  grid-area: areas; }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px){
    .storeNode_image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1; }
    .storeNode_info {
    -ms-grid-row: 1;
    -ms-grid-column: 3; }
    .storeNode_areas {
    -ms-grid-row: 2;
    -ms-grid-column: 3; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait){
    .storeNode_image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1; }
    .storeNode_info {
    -ms-grid-row: 1;
    -ms-grid-column: 3; }
    .storeNode_areas {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3; } }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .storeNode_areas {
      margin-top: 14px; } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .storeNode_areas {
      margin-top: 16px; } }

.storeNode_areas_title {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 4px;
  background: #FFFFFF;
  border-radius: 4px;
  font-size: 10px;
  line-height: calc(15 / 10); }

.storeNode_areas_text {
  margin-top: 6px;
  line-height: 2; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .storeNode_areas_text {
      font-size: clamp(8px, calc(12 / 1280 * 100vw), 16px); } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .storeNode_areas_text {
      font-size: clamp(8px, calc(12 / 375 * 100vw), 16px); } }

.contact {
  position: relative;
  background: #F8F8EF; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .contact {
      padding-top: 140px; } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .contact {
      padding-top: 120px; } }

@media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
  .contact_bg {
    width: 100%;
    max-width: 128rem;
    aspect-ratio: 2.36162; }
    .contact_bg img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
      object-fit: cover; } }

@media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
  .contact_bg {
    width: 100%;
    max-width: 37.5rem;
    aspect-ratio: 0.66138; }
    .contact_bg img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
      object-fit: cover; } }

.contact_inner {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .contact_inner {
      padding: 8rem 4rem;
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: flex-end; } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .contact_inner {
      padding: 6.4rem 1.5rem;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center; } }

.contact_banners {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .contact_banners {
      gap: 3.2rem; } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .contact_banners {
      gap: 2.4rem; } }

.sns {
  background: #F8F8EF; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .sns {
      padding: 64px 0; } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .sns {
      padding: 40px 0; } }

.sns_inner {
  margin-right: auto;
  margin-left: auto;
  display: -ms-grid;
  display: grid; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .sns_inner {
      max-width: calc(890px + 8rem);
      padding: 0 4rem;
      -ms-grid-columns: 1fr 425px;
      grid-template-columns: 1fr 425px;
      -webkit-column-gap: 40px;
      -moz-column-gap: 40px;
      column-gap: 40px; } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .sns_inner {
      padding: 0 16px;
      row-gap: 22px; } }

.sns_head {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 80px 1fr;
  grid-template-columns: 80px 1fr;
  -webkit-column-gap: 24px;
  -moz-column-gap: 24px;
  column-gap: 24px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end; }

.sns_head_img {
  -ms-grid-row-span: 2;
  grid-row: span 2; }

.sns_head_id {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: calc(24 / 16); }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .sns_head_id {
      font-size: clamp(12px, calc(16 / 1280 * 100vw), 20px); } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .sns_head_id {
      font-size: clamp(12px, calc(16 / 375 * 100vw), 20px); } }
  .sns_head_id .icon {
    width: 100%;
    max-width: 16px;
    aspect-ratio: 1;
    margin-top: 3px; }
    .sns_head_id .icon svg {
      display: block;
      width: 100%;
      height: 100%; }
    .sns_head_id .icon svg {
      fill: #111111; }

.sns_head_button {
  margin-top: 12px;
  margin-bottom: 2px; }

.sns_body_text {
  line-height: 2;
  letter-spacing: 0.1em; }
  @media print, screen and (min-width: 1024px) and (orientation: landscape), screen and (min-width: 1025px) {
    .sns_body_text {
      font-size: clamp(10px, calc(14 / 1280 * 100vw), 18px); } }
  @media print, screen and (max-width: 1023px), screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .sns_body_text {
      font-size: clamp(10px, calc(14 / 375 * 100vw), 18px); } }
