@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&family=Noto+Sans+JP:wght@400;500;700&family=Zen+Kaku+Gothic+New:wght@500;700&display=swap");
:root {
  /* font */
  --family-zen: "Zen Kaku Gothic New", sans-serif;
  --family-mon: "Montserrat", sans-serif;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  /* color */
  --color-black-default: #333;
  --color-gray-disabled: #aaa;
  --color-gray-light: #ccc;
  --color-gray-lighter: #eee;
  --color-gradient-a-01: #e65c00;
  --color-gradient-a-02: #f9d223;
  --color-gray-lightest: #f3f3f3;
  --color-blue-light: #edf1f4;
  --color-gray-back: #f5f5f5;
  --color-sns-icon: #444444;
  --color-travel-font: #777777;
  --color-blue-gary: #c9cfda;
  --color-blue-grade: linear-gradient(90deg, #7474BF, #348AC7);
  --color-orange-grade: linear-gradient(90deg, #F46B45, #EEA849);
  --color-gray-grade: linear-gradient(90deg, #535353, #949494);
  /* z-index */
  --z-index-modal: 500;
  --z-index-hamburger: 400;
  --z-index-overlay: 300;
  --z-index-header: 200;
  --z-index-menu-modal: 100;
  --header-height-sp: 80px;
  --header-height-pc: 73px;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
l,
ul,
li,
fieldset,
form,
label,
legend,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #FFF;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  padding-left: 0 !important;
  overflow-x: clip;
  width: 100%;
  text-align: justify;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

:where(body) {
  /* 大見出し */
  /* 本文 */
  /* 説明小さめ */
  /* カテゴリ */
  /* スペック詳細 */
  /* スペックコピー */
  /* 品番 */
}
:where(body) .main-heading {
  font-family: var(--family-zen);
  font-size: 24px;
  font-weight: var(--weight-medium);
  letter-spacing: 0.1em;
  line-height: 1.45;
}
:where(body) .base-text {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2;
}
:where(body) .description-text {
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 2;
}
:where(body) .category-text {
  font-family: var(--family-mon);
  font-size: 24px;
  font-weight: var(--weight-medium);
  letter-spacing: 0.1em;
  line-height: 1.5;
}
:where(body) .spec-text {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2;
}
:where(body) .spec-copy {
  font-size: 14px;
  font-weight: var(--weight-medium);
  letter-spacing: 0.05em;
  line-height: 1.5;
}
:where(body) .product-text {
  font-size: 22px;
  font-weight: var(--weight-medium);
  letter-spacing: 0.05em;
  line-height: 1.1;
}

a:link,
a:visited,
a:hover,
a:active {
  color: #000;
}

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

.l-content-header {
  align-items: center;
  background-color: #fff;
  display: flex;
  height: var(--header-height-pc);
  margin-inline: auto;
  max-width: 1472px;
  margin-bottom: 48px;
  padding-inline: 16px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-content-header {
    position: fixed;
    top: 0;
    z-index: var(--z-index-header);
    height: var(--header-height-sp);
    margin-bottom: 0;
  }
}
.l-content-header .inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 24px 16px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-content-header .inner {
    border-bottom: revert;
    padding-block: 16px 32px;
  }
}

/* hamburger */
.hamburger {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  color: var(--color-black-default);
  cursor: pointer;
  display: none;
  place-items: center;
  width: 30px; /* 全体の幅 */
  height: 24px; /* 全体の高さ */
  padding: 0;
  position: relative;
  transition: transform 0.6s, width 0.6s;
  z-index: var(--z-index-hamburger);
}
@media screen and (max-width: 767px) {
  .hamburger {
    display: flex;
  }
}

.hamburger-line {
  background-color: var(--color-black-default);
  height: 2px;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  transition: inherit;
}

.hamburger-line::before,
.hamburger-line::after {
  background-color: var(--color-black-default);
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  transition: inherit;
  width: 100%;
}

.hamburger-line::before {
  top: -11px;
}

.hamburger-line::after {
  top: 11px;
}

.hamburger[aria-expanded=true] .hamburger-line {
  background-color: transparent;
}

.hamburger[aria-expanded=true] .hamburger-line::before {
  top: 0;
  transform: rotate(45deg);
}

.hamburger[aria-expanded=true] .hamburger-line::after {
  top: 0;
  transform: rotate(-45deg);
}

.u-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.global-nav {
  align-items: center;
  display: flex;
}
@media screen and (max-width: 767px) {
  .global-nav {
    display: none;
  }
}
.global-nav .label {
  align-items: center;
  background-color: var(--color-gray-lighter);
  border-radius: 5px;
  display: inline-flex;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: var(--weight-medium);
  justify-content: center;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
}
.global-nav .links {
  display: flex;
  align-items: center;
}
.global-nav .link-item {
  letter-spacing: 0.15em;
  padding-left: 16px;
  position: relative;
}
.global-nav .link-item:not(:first-of-type) {
  border-left: 1px solid var(--color-gray-disabled);
}
.global-nav .link-item:not(:last-of-type) {
  padding-right: 16px;
}
.global-nav .link-item.--disabled .popup {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  background-color: var(--color-black-default);
  color: #fff;
  font-family: var(--family-mon);
  font-weight: var(--weight-semibold);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  position: absolute;
  bottom: -46px;
  left: 80px;
  transition-duration: 0.2s;
}
.global-nav .link-item.--disabled .popup::after {
  content: "";
  display: block;
  height: 8px;
  width: 8px;
  background-color: var(--color-black-default);
  -webkit-clip-path: polygon(0 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 100%, 0 100%);
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -100%;
}
.global-nav .link-item.--disabled:hover .popup {
  opacity: 1;
  visibility: visible;
}
.global-nav .link-item .link {
  display: inline-block;
  font-family: var(--family-mon);
  font-weight: var(--weight-medium);
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  position: relative;
  transition-duration: 0.2s;
  text-align: center;
}
.global-nav .link-item.--disabled .link {
  color: var(--color-gray-disabled);
}
.global-nav .link-item .link:before {
  background: transparent;
  bottom: -2px;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  opacity: 0;
  position: absolute;
  transition-duration: 0.2s;
  width: 100%;
}
.global-nav .link-item:hover .link:before {
  background: var(--color-blue-grade);
  opacity: 1;
}
.global-nav .link-item.--current .link:before {
  background: var(--color-blue-grade);
  left: 0;
  opacity: 1;
}
.global-nav .link-item.--disabled .link:before {
  background: transparent;
  opacity: 0;
}

.modal {
  background-color: #fff;
  position: fixed;
  height: calc(100% - var(--header-height-sp));
  opacity: 0;
  bottom: 0;
  top: var(--header-height-sp);
  left: 0;
  right: 0;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
  width: 100%;
  visibility: hidden;
  z-index: var(--z-index-modal);
  padding: 40px;
}
.modal .main-title {
  background: var(--color-blue-grade);
  border-radius: 5px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--family-mon);
  font-weight: var(--weight-regular);
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  padding: 11px 16px;
}
.modal .links {
  align-items: center;
  display: flex;
  flex-direction: column;
  row-gap: 48px;
  margin-top: 32px;
}
.modal .link {
  display: inline-block;
  font-family: var(--family-mon);
  font-weight: var(--weight-medium);
  font-size: 16px;
  line-height: 1.5;
  text-decoration: none;
  position: relative;
  transition-duration: 0.2s;
  text-align: center;
}
.modal .link:before {
  background: transparent;
  bottom: -2px;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  opacity: 0;
  position: absolute;
  transition-duration: 0.2s;
  width: 100%;
}
.modal .link:hover::before {
  background: var(--color-blue-grade);
  opacity: 1;
}
.modal .other {
  background-color: var(--color-gray-lightest);
  border-radius: 10px;
  padding: 24px 16px;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.modal .other-title {
  text-align: center;
}
.modal .other-link {
  background: var(--color-gray-grade);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  color: #fff;
  font-family: var(--family-mon);
  font-size: 16px;
  font-weight: var(--weight-regular);
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-decoration: none;
  gap: 8px;
}
.modal .other-link::after {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  background-image: url(../img/ico_button_modal.svg);
  background-repeat: no-repeat;
  content: "";
  display: block;
  background-size: contain;
  height: auto;
  width: 20px;
}

.modal[aria-hidden=false] {
  opacity: 1;
  overflow-y: scroll;
  visibility: visible;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.modal[aria-hidden=false]:-webkit-scrollbar {
  display: none;
}

.modal__inner::-webkit-scrollbar {
  display: none;
}

.scroll-button {
  width: 48px;
  height: 48px;
  position: fixed;
  right: 16px;
  bottom: 80px;
  z-index: var(--z-index-overlay);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  pointer-events: none;
}
.scroll-button a {
  align-items: center;
  display: flex;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.scroll-button img {
  display: block;
  width: 100%;
}

.scroll-button.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
}

.ani-fadeIn {
  filter: blur(10px);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 1s ease-out, filter 1s ease-out;
}
.ani-fadeIn.is-on {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0);
}

.main-visual {
  padding-inline: 16px;
  position: relative;
  margin-inline: auto;
  margin-bottom: 300px;
  max-width: 1472px;
  width: 100%;
  isolation: isolate;
}
@media screen and (max-width: 767px) {
  .main-visual {
    padding-inline: 0;
    margin-bottom: 222px;
    margin-top: var(--header-height-sp);
  }
}
.main-visual .inner {
  aspect-ratio: 1440/899;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .main-visual .inner {
    padding-top: 110px;
    aspect-ratio: revert;
  }
}
.main-visual .inner::before {
  background-color: var(--color-gray-lightest);
  border-radius: 10px;
  bottom: 0;
  content: "";
  right: 64px;
  position: absolute;
  width: 82.5694444444%;
  height: 92.9922135706%;
}
@media screen and (max-width: 767px) {
  .main-visual .inner::before {
    display: none;
  }
}
.main-visual .pagetitle {
  position: absolute;
  top: 14.9054505006%;
  right: 0;
  width: 38.5416666667%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .main-visual .pagetitle {
    left: 16px;
    top: 0;
    max-width: 361px;
    width: calc(100% - 16px);
  }
}
.main-visual .mv-img {
  position: absolute;
  top: 45.4949944383%;
  right: 2.4305555556%;
  width: 18.4027777778%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .main-visual .mv-img {
    bottom: -140px;
    left: 10px;
    top: revert;
    right: revert;
    width: 200px;
  }
}
.main-visual .mv-slider {
  width: 75.9027777778%;
}
@media screen and (max-width: 767px) {
  .main-visual .mv-slider {
    width: 100%;
  }
}
.main-visual .mv-slider img {
  width: 100%;
}
.main-visual .mv-slider .slick-dots {
  width: 126px;
  right: 10px;
  bottom: -26px;
}
.main-visual .mv-slider .slick-dots li {
  width: 32px;
  height: 3px;
}
.main-visual .mv-slider .slick-dots li button {
  position: relative;
}
.main-visual .mv-slider .slick-dots li button::before {
  width: 32px;
  height: 3px;
  background-color: var(--color-gray-light);
  color: transparent;
  opacity: 1;
}
.main-visual .mv-slider .slick-dots .slick-active button::before {
  background: var(--color-blue-grade);
}
.main-visual .mv-slider .each {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .main-visual .mv-slider .each {
    border-radius: 0;
  }
}
.main-visual .news {
  background: linear-gradient(45deg, #E8E8E8, #FFFFFF);
  border: 1px solid var(--color-gray-light);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  left: 10.8333333333%;
  bottom: 0;
  translate: 0 50%;
  position: absolute;
  padding: 24px 32px;
  box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.3), inset -1px -1px 2px rgba(227, 227, 227, 0.5), -8px 8px 16px rgba(227, 227, 227, 0.2), -8px 8px 16px rgba(227, 227, 227, 0.2), -8px 8px 16px rgba(255, 255, 255, 0.9), -8px 8px 20px rgba(227, 227, 227, 0.9);
}
@media screen and (max-width: 767px) {
  .main-visual .news {
    display: none;
  }
}
.main-visual .news .title {
  color: var(--color-gradient-a-01);
  font-family: var(--family-zen);
  font-size: 14px;
  font-weight: var(--weight-medium);
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.main-visual .news .desc {
  font-family: var(--family-zen);
  font-size: 14px;
  font-weight: var(--weight-medium);
  line-height: 1.5;
  letter-spacing: 0.1em;
  display: flex;
  justify-content: space-between;
  align-items: end;
  cursor: pointer;
}
.main-visual .news .desc::after {
  aspect-ratio: 1/1;
  background-image: url(../img/ico_button_modal.svg);
  background-repeat: no-repeat;
  content: "";
  display: block;
  background-size: contain;
  height: auto;
  width: 20px;
}
.main-visual .news .popup {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  background-color: var(--color-black-default);
  color: #fff;
  font-family: var(--family-mon);
  font-weight: var(--weight-semibold);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  position: absolute;
  top: -20px;
  right: -50px;
  transition-duration: 0.2s;
}
.main-visual .news .popup::after {
  content: "";
  display: block;
  height: 8px;
  width: 8px;
  background-color: var(--color-black-default);
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
          clip-path: polygon(0 0, 100% 0, 0 100%);
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 100%;
}
.main-visual .news:hover .popup {
  opacity: 1;
  visibility: visible;
}
.main-visual .mv-slider {
  opacity: 0;
  -webkit-animation: fadeUpBlur 1s ease-out forwards;
          animation: fadeUpBlur 1s ease-out forwards;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.main-visual .pagetitle {
  opacity: 0;
  -webkit-animation: fadeUpBlur 1s ease-out forwards;
          animation: fadeUpBlur 1s ease-out forwards;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.main-visual .mv-img {
  opacity: 0;
  -webkit-animation: fadeUpBlur 1s ease-out forwards;
          animation: fadeUpBlur 1s ease-out forwards;
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
}
@-webkit-keyframes fadeUpBlur {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}
@keyframes fadeUpBlur {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.section-inner {
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 16px;
}

.sectitle {
  margin-bottom: 24px;
  text-align: center;
}

.sectitle.anchor {
  margin-top: -100px;
  padding-top: 100px;
}

.sectitle span {
  display: inline-block;
  transform: translate(-10px, 0);
  opacity: 0;
  transition: transform 1.2s ease, opacity 1s ease;
}

.sectitle.animate span {
  transform: translate(0, 0);
  opacity: 1;
}

.sec-lead {
  --section-margin: 245px;
  margin-top: var(--section-margin);
}
@media screen and (max-width: 767px) {
  .sec-lead {
    --section-margin: 95px;
  }
}
.sec-lead .sectitle {
  margin-bottom: 184px;
}
@media screen and (max-width: 767px) {
  .sec-lead .sectitle {
    margin-bottom: 64px;
  }
}
.sec-lead .secsubtitle {
  display: flex;
  justify-content: center;
  margin-bottom: 56px;
}
@media screen and (max-width: 767px) {
  .sec-lead .secsubtitle {
    margin-bottom: 40px;
  }
}
.sec-lead img {
  display: block;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .sec-lead img {
    width: 308px;
  }
}
.sec-lead p {
  font-size: 18px;
  line-height: 2.5;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec-lead p {
    font-size: 16px;
  }
}

.sec-features {
  --section-margin: 295px;
  margin-top: var(--section-margin);
}
@media screen and (max-width: 767px) {
  .sec-features {
    --section-margin: 95px;
  }
}
.sec-features .body {
  margin-inline: auto;
  margin-bottom: 52px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.sec-features .tabs {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .sec-features .tabs {
    margin-bottom: 24px;
  }
}
.sec-features .tabs .each {
  border-radius: 8px;
  background-color: #F3F3F3;
  flex: 1 0 calc((100% - 16px) / 2);
  cursor: pointer;
  font-family: var(--family-zen);
  font-weight: var(--weight-bold);
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  line-height: 1.5;
  letter-spacing: 0.15em;
  text-align: center;
  transition: background-color 0.3s;
}
.sec-features .tabs .each:hover {
  background-color: rgba(243, 243, 243, 0.7019607843);
}
.sec-features .tabs .each.is-current {
  background-color: #889EB7;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .sec-features .tabs .each img {
    display: none;
  }
}
.sec-features .tabs .each img.shadow {
  filter: drop-shadow(2px 2px 9px rgba(0, 0, 0, 0.1490196078));
}
.sec-features .tab-content {
  display: none;
}
.sec-features .tab-content.is-current {
  display: block;
}
.sec-features .media {
  display: flex;
  gap: 8.5188770571%;
  align-items: start;
}
@media screen and (max-width: 767px) {
  .sec-features .media {
    flex-direction: column;
    gap: 16px;
  }
}
.sec-features .media.--narrow {
  width: 91.5780141844%;
}
@media screen and (max-width: 767px) {
  .sec-features .media.--narrow {
    width: 100%;
  }
}
.sec-features .media.--narrow:not(.--align-center) .media-body {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .sec-features .media.--narrow:not(.--align-center) .media-body {
    margin-top: 0;
  }
}
.sec-features .media.--right {
  margin-inline: auto 0;
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .sec-features .media.--right {
    flex-direction: column;
  }
}
.sec-features .media.--align-center {
  align-items: center;
}
@media screen and (max-width: 767px) {
  .sec-features .media.--align-center {
    align-items: revert;
  }
}
.sec-features .media + .media {
  margin-top: 250px;
}
@media screen and (max-width: 767px) {
  .sec-features .media + .media {
    margin-top: 64px;
  }
}
.sec-features .media-img {
  flex: 0 0 53.8238141336%;
  position: relative;
}
.sec-features .media-img img {
  border-radius: 10px;
}
.sec-features .media-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .sec-features .media-body {
    gap: 8px;
  }
}
.sec-features .media-body:has(.inner) {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .sec-features .media-body:has(.inner) {
    margin-top: 0;
    gap: 16px;
  }
}
.sec-features .media .inner {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .sec-features .media .inner {
    row-gap: 16px;
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
}
.sec-features .media .inner .col-2 {
  flex: 1 0 40%;
}
@media screen and (max-width: 767px) {
  .sec-features .media .inner .col-2 {
    flex: 1 0 100%;
  }
}
@media screen and (max-width: 767px) {
  .sec-features .media .inner .col-2.--sp-col2 {
    flex: 1 0 40%;
  }
}
.sec-features .media .inner .col-2.with-arrow figure {
  position: relative;
}
.sec-features .media .inner .col-2.with-arrow figure::after {
  background-image: url(../img/ico_arrow-right.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 32/28;
  height: auto;
  width: 32px;
  right: 0;
  top: 50%;
  translate: 100% -50%;
}
@media screen and (max-width: 767px) {
  .sec-features .media .inner .col-2.with-arrow figure::after {
    width: 24px;
  }
}
.sec-features .media .inner .title {
  font-size: 16px;
  font-weight: var(--weight-regular);
  line-height: 2;
  letter-spacing: 0.1em;
  margin-bottom: 0.5em;
}
.sec-features .tab-content.content-01 .media-img:has(.sub) {
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec-features .tab-content.content-01 .media-img:has(.sub) {
    margin-bottom: 42px;
  }
}
.sec-features .tab-content.content-01 .media-img:has(.sub) .sub {
  position: absolute;
  bottom: -120px;
  right: 48px;
  width: 37.7697841727%;
}
@media screen and (max-width: 767px) {
  .sec-features .tab-content.content-01 .media-img:has(.sub) .sub {
    bottom: -60px;
    right: 16px;
    width: 157px;
  }
}
.sec-features .tab-content.content-02 .main-img {
  position: relative;
  width: 100%;
  margin-bottom: 66px;
}
@media screen and (max-width: 767px) {
  .sec-features .tab-content.content-02 .main-img {
    margin-bottom: 80px;
  }
}
.sec-features .tab-content.content-02 .main-img .main {
  border-radius: 10px;
  width: 74.5567375887%;
}
@media screen and (max-width: 767px) {
  .sec-features .tab-content.content-02 .main-img .main {
    width: 100%;
  }
}
.sec-features .tab-content.content-02 .main-img .sub {
  position: absolute;
  width: 40.9574468085%;
  top: 61.135371179%;
  right: 1.2411347518%;
}
@media screen and (max-width: 767px) {
  .sec-features .tab-content.content-02 .main-img .sub {
    width: 260px;
    bottom: -80px;
    right: 0;
    top: revert;
  }
}
.sec-features .tab-content.content-02 .lead {
  width: 91.5780141844%;
  display: flex;
  margin-bottom: 288px;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .sec-features .tab-content.content-02 .lead {
    width: 100%;
    flex-direction: column-reverse;
    align-items: center;
    gap: 0;
    margin-bottom: 24px;
  }
}
.sec-features .tab-content.content-02 .lead-img {
  flex: 0 0 24.7821878025%;
}
.sec-features .tab-content.content-02 .lead-body {
  flex: 0 0 44.2400774443%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sec-features .js-fadein {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s, translate 0.6s ease;
}
.sec-features .js-fadein.is-active {
  opacity: 1;
  transform: translateY(0);
}
.sec-features .js-blur {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(10px);
  transition: opacity 1s, translate 1s, filter 1.5s ease;
  transition-delay: 0.6s;
}
.sec-features .js-blur.is-active {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.sec-spec {
  --section-margin: 295px;
  margin-top: var(--section-margin);
  background-color: var(--color-blue-light);
  padding-block: 128px 104px;
}
@media screen and (max-width: 767px) {
  .sec-spec {
    --section-margin: 112px;
  }
}
@media screen and (max-width: 767px) {
  .sec-spec {
    padding-block: 72px;
  }
}
.sec-spec .body {
  margin-inline: auto;
  margin-bottom: 48px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.sec-spec .flex-box {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(160px, 100%), 1fr));
  gap: 54px 4.1379310345%;
}
@media screen and (max-width: 767px) {
  .sec-spec .flex-box {
    gap: 32px 16px;
  }
}
.sec-spec .flex-box img {
  height: auto;
  width: 100%;
}
.sec-spec .flex-box .each {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 16px;
}
.sec-spec .flex-box .name {
  font-family: var(--family-zen);
  font-size: 16px;
  font-weight: var(--weight-medium);
  line-height: 1.5;
  letter-spacing: 0.05em;
  align-self: end;
}
.sec-spec .flex-box .note {
  display: block;
  font-size: 10px;
  line-height: 2;
  margin-top: 1em;
}

.page-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  padding-block: 16px;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: var(--z-index-header);
}
@media screen and (max-width: 767px) {
  .page-nav {
    display: none;
  }
}
.page-nav .nav-item {
  letter-spacing: 0.15em;
  padding-left: 16px;
  position: relative;
}
.page-nav .nav-item:not(:first-of-type) {
  border-left: 1px solid var(--color-gray-disabled);
}
.page-nav .nav-item:not(:last-of-type) {
  padding-right: 16px;
}
.page-nav .nav-item a {
  display: inline-block;
  font-family: var(--family-mon);
  font-weight: var(--weight-medium);
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  position: relative;
  transition-duration: 0.2s;
  text-align: center;
}
.page-nav .nav-item a:before {
  background: transparent;
  bottom: -2px;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  opacity: 0;
  position: absolute;
  transition-duration: 0.2s;
  width: 100%;
}
.page-nav .nav-item:hover a:before {
  background: var(--color-blue-grade);
  opacity: 1;
}

.sec-lineup {
  --section-margin: 364px;
  margin-top: var(--section-margin);
}
@media screen and (max-width: 767px) {
  .sec-lineup {
    --section-margin: 112px;
  }
}
.sec-lineup .tab-content {
  display: none;
}
.sec-lineup .tab-content.is-current {
  display: block;
}
.sec-lineup .body {
  margin-inline: auto;
  margin-bottom: 56px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.sec-lineup .flex-box {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(170px, 100%), 1fr));
  gap: 56px 6.2068965517%;
}
@media screen and (max-width: 767px) {
  .sec-lineup .flex-box {
    gap: px 6.2068965517%;
    width: 86.703601108%;
    margin-inline: auto;
  }
}
.sec-lineup .flex-box a {
  text-decoration: none;
}
.sec-lineup .flex-box a:hover figure img {
  opacity: 0.7;
}
.sec-lineup .flex-box a:hover .name {
  color: #889EB7;
}
.sec-lineup .flex-box img {
  height: auto;
  width: 100%;
}
.sec-lineup .flex-box .each {
  display: grid;
  gap: 8px;
  align-content: start;
}
.sec-lineup .flex-box figure {
  position: relative;
  padding-block: 40px;
}
.sec-lineup .flex-box figure img {
  transition: opacity 0.3s ease;
}
.sec-lineup .flex-box figure .caption-top {
  font-size: 16px;
  font-weight: var(--weight-medium);
  line-height: 2;
  letter-spacing: 0.1em;
  padding-left: 11px;
  position: absolute;
  left: 0;
  top: 0;
}
.sec-lineup .flex-box figure .caption-top::before {
  background: var(--color-blue-grade);
  content: "";
  display: block;
  height: 18px;
  left: 0;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 3px;
}
.sec-lineup .flex-box figure .caption-bottom {
  background-color: #889EB7;
  border-radius: 4px;
  color: #fff;
  font-family: var(--family-zen);
  font-size: 12px;
  font-weight: var(--weight-bold);
  line-height: 1.2;
  letter-spacing: 0.05em;
  padding-left: 11px;
  padding: 8px;
  position: absolute;
  right: 0;
  bottom: 0;
}
.sec-lineup .flex-box .copy {
  border-top: 1px solid var(--color-gray-light);
  margin-top: 8px;
  padding-top: 8px;
  font-size: 14px;
  font-weight: var(--weight-medium);
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .sec-lineup .flex-box .copy {
    font-size: 18px;
  }
}
.sec-lineup .flex-box .name {
  margin-top: 8px;
  transition: color 0.3s ease;
}
.sec-lineup .flex-box .name span {
  display: block;
}
.sec-lineup .flex-box .name a {
  text-decoration: none;
}
.sec-lineup .flex-box .note {
  display: block;
  font-size: 10px;
  line-height: 2;
  margin-top: 1em;
}
.sec-lineup .flex-box .desc {
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  margin-top: 8px;
}
.sec-lineup .flex-box .desc span {
  display: block;
  margin-top: 4px;
}

.l-footer {
  background-color: var(--color-gray-lightest);
  padding-block: 64px 20px;
  margin-top: 400px;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding-block: 58px 16px;
    margin-top: 112px;
  }
}
.l-footer .banners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-inline: auto;
  max-width: 978px;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .l-footer .banners {
    gap: 24px;
  }
}
.l-footer .banner {
  transition: opacity 0.3s;
}
.l-footer .banner.col-1 {
  flex: 0 0 100%;
}
.l-footer .banner.col-2 {
  flex: 0 0 calc((100% - 40px) / 2);
}
@media screen and (max-width: 767px) {
  .l-footer .banner.col-2 {
    flex: 0 0 100%;
  }
}
.l-footer .banner:hover {
  opacity: 0.7;
}
.l-footer .border {
  border-bottom: 1px dashed var(--color-gray-light);
  height: 1px;
  margin-inline: auto;
  margin-top: 72px;
  max-width: 1128px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-footer .border {
    margin-top: 24px;
  }
}
.l-footer .sns {
  margin-top: 72px;
}
@media screen and (max-width: 767px) {
  .l-footer .sns {
    margin-top: 24px;
  }
}
.l-footer .sns .title {
  text-align: center;
}
.l-footer .sns .body {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}
.l-footer .links {
  display: flex;
  justify-content: space-between;
  max-width: 674px;
  margin-inline: auto;
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .l-footer .links {
    gap: 16px;
    flex-wrap: wrap;
    max-width: 222px;
  }
}
.l-footer .link {
  transition: opacity 0.3s;
}
.l-footer .link:hover {
  opacity: 0.7;
}
.l-footer .logo {
  margin-top: 144px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .l-footer .logo {
    margin-top: 130px;
  }
}
.l-footer .copyright {
  display: block;
  margin-top: 24px;
  font-size: 10px;
  text-align: center;
  margin-top: 24px;
}/*# sourceMappingURL=local.css.map */