@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-semibold);
  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-container {
  overflow: clip;
}

.l-content-header {
  position: absolute;
  left: 0;
  top: 0;
  align-items: center;
  display: flex;
  justify-content: center;
  height: var(--header-height-pc);
  margin-inline: auto;
  margin-bottom: 24px;
  padding-inline: 16px;
  width: 100%;
  z-index: 10;
}
@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;
  max-width: 1472px;
  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);
  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;
  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);
  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;
  padding: 24px 44px 24px 16px;
  background: var(--color-gray-lightest);
  border-radius: 0 0 10px 10px;
  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 .link:after {
  content: "";
  position: absolute;
  right: 16px;
  top: calc(50% - 10px);
  width: 20px;
  height: 20px;
  background: url(../img/icon_blank.svg) no-repeat center center;
  background-size: contain;
}
.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.--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 {
  border-radius: 5px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--family-mon);
  font-weight: var(--weight-bold);
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  padding: 11px 16px;
}
.modal .links {
  align-items: center;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  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;
  background: var(--color-gray-lightest);
  border-radius: 10px;
  width: 100%;
  padding: 20px;
}
.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-black-default);
  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/icon_blank_w.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 {
  position: relative;
  width: 100%;
  height: 45.4166666667vw;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .main-visual {
    height: 137.1501272265vw;
  }
}
.main-visual .mv-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  opacity: 0;
  animation: fadeUpBlur 1s ease-out forwards;
  animation-delay: 2s;
}
.main-visual .mv-txt {
  position: absolute;
  left: 0;
  bottom: 2.6041666667vw;
  width: 100%;
  text-align: center;
  opacity: 0;
  animation: fadeUpBlur 1s ease-out forwards;
  animation-delay: 2.2s;
}
@media screen and (max-width: 767px) {
  .main-visual .mv-txt {
    bottom: 7.6335877863vw;
  }
}
.main-visual .mv-txt img {
  width: 62.2916666667vw;
  max-width: 1196px;
}
@media screen and (max-width: 767px) {
  .main-visual .mv-txt img {
    width: 100%;
  }
}
@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 {
  font-size: 24px;
  margin-bottom: 24px;
  text-align: center;
  font-family: var(--family-mon);
  font-weight: 700;
}
.sectitle span {
  display: inline-block;
  border-bottom: 4px solid #000;
}

.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: 120px;
  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;
  }
}

.img-radius {
  overflow: hidden;
  border-radius: 10px;
}

.sec-features {
  margin-top: 135px;
}
@media screen and (max-width: 767px) {
  .sec-features {
    margin-top: 95px;
  }
}
.sec-features .title {
  line-height: 1.6;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .sec-features .title {
    font-weight: 600;
  }
}
.sec-features .desc {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.1em;
}
.sec-features .block01 {
  margin-top: 90px;
}
.sec-features .block01-eyecatch {
  max-width: 840px;
}
.sec-features .block01-box {
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  gap: 32px;
  max-width: 946px;
  margin-inline: auto;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .sec-features .block01-box {
    display: block;
    margin-top: 16px;
  }
}
.sec-features .block01-box__img {
  width: calc(50% - 16px);
  text-align: right;
}
.sec-features .block01-box__img img {
  max-width: 256px;
}
@media screen and (max-width: 767px) {
  .sec-features .block01-box__img img {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .sec-features .block01-box__img {
    width: 71.1111111111%;
    margin-left: auto;
  }
}
.sec-features .block01-box__text {
  width: calc(50% - 16px);
}
@media screen and (max-width: 767px) {
  .sec-features .block01-box__text {
    width: 100%;
  }
}
.sec-features .block01-box__text .desc {
  margin-top: 20px;
}
.sec-features .block02 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 220px;
}
@media screen and (max-width: 767px) {
  .sec-features .block02 {
    display: block;
    margin-top: 64px;
  }
}
.sec-features .block02-column01 {
  width: calc(50% - 8px);
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .sec-features .block02-column01 {
    width: 100%;
    margin-top: 0;
  }
}
.sec-features .block02-column01__img {
  margin-top: 30px;
}
.sec-features .block02-column01__text {
  width: 69.964028777%;
  margin-left: 17.0863309353%;
}
@media screen and (max-width: 767px) {
  .sec-features .block02-column01__text {
    width: 100%;
    margin-left: 0;
    margin-top: 16px;
  }
}
.sec-features .block02-column01__text .desc {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .sec-features .block02-column01__text .desc {
    margin-top: 16px;
  }
}
.sec-features .block02-column02 {
  width: calc(50% - 8px);
}
@media screen and (max-width: 767px) {
  .sec-features .block02-column02 {
    width: 100%;
    margin-top: 16px;
  }
}
.sec-features .block02-column02__text {
  margin-top: 30px;
  margin-left: 30.035971223%;
}
@media screen and (max-width: 767px) {
  .sec-features .block02-column02__text {
    margin-left: 0;
    margin-top: 16px;
  }
}
.sec-features .block03 {
  max-width: 1051px;
  margin-top: 250px;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .sec-features .block03 {
    margin-top: 64px;
  }
}
.sec-features .block03-lead .desc {
  margin-top: 20px;
}
.sec-features .block03-improve {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .sec-features .block03-improve {
    margin-top: 16px;
  }
}
.sec-features .block03-improve__row {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 970px;
  margin-left: auto;
  padding-left: 128px;
}
@media screen and (max-width: 767px) {
  .sec-features .block03-improve__row {
    gap: 16px;
    padding-left: 0;
    flex-wrap: wrap;
  }
}
.sec-features .block03-improve__label {
  position: absolute;
  top: 0;
  left: 0;
  width: 112px;
  height: 102px;
}
@media screen and (max-width: 767px) {
  .sec-features .block03-improve__label {
    position: relative;
    width: 100%;
    height: auto;
  }
}
.sec-features .block03-improve__present {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  text-align: center;
  background: #eee;
  font-size: 18px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .sec-features .block03-improve__present {
    padding: 8px;
  }
}
.sec-features .block03-improve__our {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  text-align: center;
  background: #333;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .sec-features .block03-improve__our {
    padding: 8px;
  }
}
.sec-features .block03-improve__each {
  width: calc(50% - 20px);
}
@media screen and (max-width: 767px) {
  .sec-features .block03-improve__each {
    width: calc(50% - 8px);
  }
}
.sec-features .block03-improve__each .desc {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .sec-features .block03-improve__each .desc {
    margin-top: 16px;
  }
}
.sec-features .block03-improve__arrow {
  width: 842px;
  padding: 60px 20px;
  margin-left: auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec-features .block03-improve__arrow {
    width: 100%;
    padding: 16px;
  }
}
.sec-features .block-left {
  display: flex;
  align-items: center;
  margin-top: 190px;
}
@media screen and (max-width: 767px) {
  .sec-features .block-left {
    display: block;
    margin-top: 64px;
  }
}
.sec-features .block-left__img {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .sec-features .block-left__img {
    width: 100%;
  }
}
.sec-features .block-left__text {
  width: 50%;
  padding: 0 8.5992907801% 0 7.8014184397%;
}
@media screen and (max-width: 767px) {
  .sec-features .block-left__text {
    width: 100%;
    padding: 0;
    margin-top: 16px;
  }
}
.sec-features .block-left__text .desc {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .sec-features .block-left__text .desc {
    margin-top: 16px;
  }
}
.sec-features .block-left__text.-wide {
  width: 50%;
  padding: 0 0 0 7.8014184397%;
}
@media screen and (max-width: 767px) {
  .sec-features .block-left__text.-wide {
    width: 100%;
    padding: 0;
  }
}
.sec-features .block-right {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  margin-top: 190px;
}
@media screen and (max-width: 767px) {
  .sec-features .block-right {
    display: block;
    margin-top: 64px;
  }
}
.sec-features .block-right__img {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .sec-features .block-right__img {
    width: 100%;
  }
}
.sec-features .block-right__text {
  width: 50%;
  padding: 0 7.8014184397% 0 8.5992907801%;
}
@media screen and (max-width: 767px) {
  .sec-features .block-right__text {
    width: 100%;
    padding: 0;
    margin-top: 16px;
  }
}
.sec-features .block-right__text .desc {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .sec-features .block-right__text .desc {
    margin-top: 16px;
  }
}
.sec-features .block04 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 91.6666666667%;
  margin-top: 220px;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .sec-features .block04 {
    display: block;
    margin-top: 64px;
    width: 100%;
  }
}
.sec-features .block04-column01 {
  width: 44.584139265%;
  margin-top: 180px;
}
@media screen and (max-width: 767px) {
  .sec-features .block04-column01 {
    width: 100%;
    margin-top: 0;
  }
}
.sec-features .block04-column01__text {
  margin-top: 20px;
}
.sec-features .block04-column01__text .desc {
  margin-top: 20px;
}
.sec-features .block04-column02 {
  width: 44.584139265%;
}
@media screen and (max-width: 767px) {
  .sec-features .block04-column02 {
    width: 100%;
    margin-top: 64px;
  }
}
.sec-features .block04-column02__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.sec-features .block04-column02__img {
  width: 100%;
}
.sec-features .block04-column02__text {
  width: 50.7592190889%;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .sec-features .block04-column02__text {
    width: 58.7257617729%;
    margin-top: 16px;
  }
}
.sec-features .block04-column02__text .desc {
  margin-top: 20px;
}
.sec-features .block04-column02__swing {
  margin-top: 20px;
  width: 41.431670282%;
}
@media screen and (max-width: 767px) {
  .sec-features .block04-column02__swing {
    margin-top: 16px;
    width: 34.6260387812%;
  }
}
.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 {
  margin-top: 230px;
}
@media screen and (max-width: 767px) {
  .sec-spec {
    margin-top: 100px;
  }
}
.sec-spec .body {
  margin-inline: auto;
  margin-bottom: 48px;
  width: -moz-fit-content;
  width: fit-content;
}
.sec-spec .flex-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 0;
  margin-top: 110px;
}
.sec-spec .flex-box .col-6 {
  width: 49.3794326241%;
}
@media screen and (max-width: 767px) {
  .sec-spec .flex-box .col-6 {
    width: 100%;
  }
}
.sec-spec .bnr-main {
  position: relative;
}
.sec-spec .bnr-main .text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 24px 16px;
}
.sec-spec .bnr-main .text .lead {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .sec-spec .bnr-main .text .lead {
    font-size: 18px;
  }
}
.sec-spec .bnr-main .text .desc {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .sec-spec .bnr-main .text .desc {
    font-size: 12px;
  }
}
.sec-spec .bnr-sub {
  position: relative;
}
.sec-spec .bnr-sub .text {
  position: absolute;
  left: 0;
  top: 50%;
  padding: 16px 24px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .sec-spec .bnr-sub .text {
    width: 211px;
    padding: 16px;
  }
}
.sec-spec .bnr-sub .text .lead {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.05em;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .sec-spec .bnr-sub .text .lead {
    font-size: 18px;
  }
}
.sec-spec .bnr-sub .text .desc {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .sec-spec .bnr-sub .text .desc {
    margin-top: 12px;
    font-size: 12px;
  }
}

.block-output {
  margin-top: 200px;
}
@media screen and (max-width: 767px) {
  .block-output {
    margin-top: 72px;
  }
}
.block-output .subtitle {
  text-align: center;
  font-size: 14px;
}
.block-output-tabs {
  margin-top: 46px;
}
.block-output-tabs .tab-main {
  display: flex;
  justify-content: space-between;
}
.block-output-tabs .tab-main button {
  display: block;
  width: calc(50% - 8px);
  padding: 24px;
  border-radius: 10px;
  border: none;
  background: var(--color-gray-lightest);
  color: var(--color-black-default);
  text-align: center;
  line-height: 1.5;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
.block-output-tabs .tab-main button.is-current, .block-output-tabs .tab-main button:hover {
  background: var(--color-black-default);
  color: #fff;
}
.block-output-tabs .tab-main button .name {
  font-weight: 700;
  letter-spacing: 0.1em;
}
.block-output-tabs .tab-main button .port {
  font-weight: 400;
  letter-spacing: 0.1em;
}
.block-output-tabs .tab-sub {
  display: none;
  justify-content: center;
  gap: 32px;
  margin-top: 80px;
}
.block-output-tabs .tab-sub.is-current {
  display: flex;
}
.block-output-tabs .tab-sub button {
  position: relative;
  display: inline-block;
  line-height: 1.5;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.15em;
  cursor: pointer;
}
.block-output-tabs .tab-sub button:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--color-orange-grade);
  opacity: 0;
  transition: opacity 0.3s;
}
.block-output-tabs .tab-sub button.is-current:after, .block-output-tabs .tab-sub button:hover:after {
  opacity: 1;
}
.block-output-tabs .tab-content {
  margin-top: 40px;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .block-output-accordion .category {
    margin-top: 40px;
    margin-bottom: 20px;
    width: 100%;
    border-radius: 10px;
    padding: 16px;
    background: var(--color-black-default);
    color: #fff;
    text-align: center;
  }
  .block-output-accordion .category .name {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.15em;
  }
  .block-output-accordion .category .port {
    font-size: 14px;
    letter-spacing: 0.15em;
  }
  .block-output-accordion__each button {
    position: relative;
    display: block;
    width: 100%;
    background: none;
    padding: 8px 0;
    border: none;
    border-bottom: 1px solid #000;
    color: #000;
    font-size: 16px;
    letter-spacing: 0.15em;
    text-align: left;
  }
  .block-output-accordion__each button:after {
    content: "";
    position: absolute;
    right: 4px;
    bottom: 12px;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #333;
    border-right: 2px solid #333;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    transition: transform 0.1s;
  }
  .block-output-accordion__each button.is-open:after {
    transform: rotate(-135deg);
  }
  .block-output-accordion__img {
    display: none;
    text-align: center;
  }
}

.block-table {
  margin-top: 195px;
}
@media screen and (max-width: 767px) {
  .block-table {
    margin-top: 72px;
  }
}
.block-table .subtitle {
  text-align: center;
  font-size: 14px;
}
.block-table .table {
  margin-top: 46px;
}
@media screen and (max-width: 767px) {
  .block-table .table {
    overflow-x: auto;
  }
}
.block-table .table table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .block-table .table table {
    width: 496px;
  }
}
.block-table .table table thead tr th {
  padding: 8px;
  background: var(--color-gray-lightest);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  width: 19.8934280639%;
  border-bottom: 1px solid #aaa;
  text-align: left;
}
.block-table .table table thead tr td {
  padding: 8px;
  background: #333;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  width: 40.053285968%;
}
.block-table .table table thead tr td:nth-child(3) {
  border-left: 1px solid #fff;
}
.block-table .table table tbody tr th {
  padding: 8px;
  background: var(--color-gray-lightest);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #aaa;
  text-align: left;
}
.block-table .table table tbody tr td {
  padding: 8px 8px 8px 24px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #aaa;
  vertical-align: top;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .block-table .table table tbody tr td {
    padding: 8px;
  }
}
.block-table .table table tbody tr td:nth-child(3) {
  border-left: 1px solid #aaa;
}

.page-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 10px;
  background-color: #F3F3F3;
  max-width: 760px;
  margin-inline: auto;
  z-index: var(--z-index-header);
  border-radius: 10px;
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .page-nav {
    display: none;
  }
}
.page-nav .nav-item {
  letter-spacing: 0.15em;
  position: relative;
  width: 25%;
  height: 53px;
}
.page-nav .nav-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--family-mon);
  font-weight: var(--weight-medium);
  width: 100%;
  height: 100%;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  position: relative;
  transition-duration: 0.2s;
  text-align: center;
}
.page-nav .nav-item a.is-current, .page-nav .nav-item a:hover {
  background: #333333;
  color: #fff;
}

.sec-lineup {
  --section-margin: 180px;
  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: -moz-fit-content;
  width: fit-content;
}
.sec-lineup .flex-box {
  display: flex;
  justify-content: center;
  gap: 5.6737588652%;
  margin-top: 118px;
}
@media screen and (max-width: 767px) {
  .sec-lineup .flex-box {
    width: 86.703601108%;
    flex-wrap: wrap;
    gap: 96px;
    margin-inline: auto;
  }
}
.sec-lineup .flex-box > div,
.sec-lineup .flex-box a {
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .sec-lineup .flex-box > div,
  .sec-lineup .flex-box a {
    width: 100%;
  }
}
.sec-lineup .flex-box > div:hover figure img,
.sec-lineup .flex-box a:hover figure img {
  opacity: 0.7;
}
.sec-lineup .flex-box > div:hover .name,
.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;
}
.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 .name {
  border-top: 1px solid var(--color-gray-light);
  margin-top: 16px;
  padding-top: 16px;
  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 .copy {
  margin-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 .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: 16px;
}
.sec-lineup .flex-box .desc span {
  display: inline-block;
  margin-top: 8px;
}
.sec-lineup .flex-box .desc a {
  transition: color 0.3s;
}
.sec-lineup .flex-box .desc a:hover {
  color: #889EB7;
}

.l-footer {
  background-color: var(--color-gray-lightest);
  padding-block: 64px 20px;
  margin-top: 200px;
}
@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 {
    width: 86.703601108%;
    margin-inline: auto;
    gap: 24px;
  }
}
.l-footer .banner {
  transition: opacity 0.3s;
}
.l-footer .banner.col-3 {
  flex: 0 0 calc((100% - 80px) / 3);
}
@media screen and (max-width: 767px) {
  .l-footer .banner.col-3 {
    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: -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 */