#app {
  position: relative;
  display: flex;
  flex-direction: column;
}
#app.hidden {
  display: none;
}
main a {
  color: inherit;
}
main img {
  display: block;
  width: 100%;
  height: auto;
}
main .lazy {
  visibility: hidden;
}
main .lazy.loaded {
  visibility: visible;
}
main .button-group .button {
  display: block;
  flex: 1;
  border-radius: 4px;
  font-weight: 700;
  text-align: center;
  transition: background-color 0.3s ease-out, border 0.3s ease-out;
  margin-left: auto;
  margin-right: auto;
}
main .button-group .button.outline {
  background-color: #fff;
  border: 1px solid #c4c4c6;
}
main .button-group .button.large {
  font-size: 1.125rem;
  padding: 20px 32px;
}
@media (any-hover: hover) {
  main .button-group .button:hover {
    background-color: #f5f5f5;
  }
}
@media (any-hover: none) {
  main .button-group .button:active {
    background-color: #f5f5f5;
  }
}
main .swiper-control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
}
main .swiper-button-prev,
main .swiper-button-next {
  position: static;
  transform: none;
  margin: 0;
  width: auto;
  height: auto;
}
main .swiper-button-prev:after,
main .swiper-button-next:after {
  content: '';
  width: 16px;
  height: 16px;
}
main .swiper-button-prev:after {
  transform: scaleX(-1);
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgZmlsbD0ibm9uZSI+PHBhdGggc3Ryb2tlPSIjM0MzQzQzIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMS41IiBkPSJtNiAxMyA1LTUtNS01Ii8+PC9zdmc+);
}
main .swiper-button-next:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgZmlsbD0ibm9uZSI+PHBhdGggc3Ryb2tlPSIjM0MzQzQzIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMS41IiBkPSJtNiAxMyA1LTUtNS01Ii8+PC9zdmc+);
}
main .swiper-pagination-fraction,
main .swiper-pagination-custom,
main .swiper-horizontal > .swiper-pagination-bullets,
main .swiper-pagination-bullets.swiper-pagination-horizontal {
  position: static;
  transform: none;
  width: auto;
}
main .swiper-pagination-bullet {
  position: relative;
  width: 10px;
  height: 10px;
  opacity: 1;
  background-color: transparent;
}
main .swiper-pagination-bullet:before,
main .swiper-pagination-bullet:after {
  content: '';
  position: absolute;
  display: block;
  border-radius: 50%;
}
main .swiper-pagination-bullet:before {
  background-color: #c4c4c6;
  height: 6px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
}
main .swiper-pagination-bullet:after {
  opacity: 0;
  transition: opacity 0.2s ease;
}
main .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  background-color: #3c3c43;
}
main .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  border: 1px solid #3c3c43;
  height: 10px;
  left: 50%;
  opacity: 1;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
}
.anchor-link {
  position: relative;
  display: inline-block;
  color: #1d1d1f;
  padding-bottom: 20px;
  cursor: pointer;
}
.anchor-link:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate3d(-50%, 0, 0);
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMiIgaGVpZ2h0PSI3IiBmaWxsPSJub25lIj48cGF0aCBzdHJva2U9IiMxRDFEMUYiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIxLjUiIGQ9Im0xIDEgNSA1IDUtNSIvPjwvc3ZnPg==);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 12px;
  height: 7px;
  transition: transform 0.3s ease-in-out;
}
.anchor-link.abreast {
  padding: 0 20px 0 0;
}
.anchor-link.abreast:after {
  top: 50%;
  right: 0;
  bottom: auto;
  left: auto;
  transform: translate3d(0, -50%, 0);
}
@media (any-hover: hover) {
  .anchor-link.abreast:hover:after {
    transform: translate3d(0, calc(-50% + 3px), 0);
  }
}
@media (any-hover: none) {
  .anchor-link.abreast:active:after {
    transform: translate3d(0, calc(-50% + 3px), 0);
  }
}
@media (any-hover: hover) {
  .anchor-link:hover:after {
    transform: translate3d(-50%, 3px, 0);
  }
}
@media (any-hover: none) {
  .anchor-link:active:after {
    transform: translate3d(-50%, 3px, 0);
  }
}
.more-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #1d1d1f;
  font-size: 1rem;
}
.more-link:after {
  content: '';
  display: block;
  height: 16px;
  width: 16px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIxNiIgZmlsbD0ibm9uZSI+PHBhdGggc3Ryb2tlPSIjM0MzQzQzIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMS41IiBkPSJtNi41IDEzIDUtNS01LTUiLz48L3N2Zz4=);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: transform 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .more-link:hover {
    opacity: 0.8;
  }
  .more-link:hover:after {
    transform: translate(3px);
  }
}
@media (any-hover: none) {
  .more-link:active {
    opacity: 0.8;
  }
  .more-link:active:after {
    transform: translate(3px);
  }
}
.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (min-width: 1000px) {
  main .button-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}
@media only screen and (max-width: 999px) {
  main .button-group .button.large {
    padding: 13px 32px;
  }
  br.desktop-only {
    display: none;
  }
}
.situation-list .row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 0;
}
.situation-list .grid {
  width: 100%;
}
.situation-list .situation-card {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #fff;
  color: #3c3c43;
  cursor: pointer;
}
.situation-list .situation-card .img-box {
  aspect-ratio: 1/1;
  width: min(100%, 165px);
}
.situation-list .situation-card .text-box {
  position: relative;
  padding: 15px 44px 15px 15px;
  width: calc(100% - 165px);
}
.situation-list .situation-card .text-box .title {
  font-size: 0.875rem;
  font-weight: 900;
}
.situation-list .situation-card .text-box .description {
  font-size: 0.75rem;
}
.situation-list .situation-card .text-box .arrow {
  content: '';
  position: absolute;
  display: inline-block;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTciIGhlaWdodD0iOSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtMS41IDEgNyA3IDctNyIgc3Ryb2tlPSIjM0MzQzQzIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PC9zdmc+);
  width: 15px;
  height: 8px;
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (min-width: 1000px) {
  .situation-list .row {
    gap: 24px;
  }
  .situation-list .grid {
    width: calc(33.3333333333% - 16px);
  }
  .situation-list .situation-card {
    flex-direction: column;
    transition: 0.3s ease-out;
  }
  .situation-list .situation-card .img-box {
    aspect-ratio: 784/522;
    width: 100%;
  }
  .situation-list .situation-card .text-box {
    width: 100%;
    padding: 16px 16px 39px;
    text-align: center;
  }
  .situation-list .situation-card .text-box .title {
    font-size: 1.125rem;
  }
  .situation-list .situation-card .text-box .description {
    font-size: 0.875rem;
    margin-top: 4px;
  }
  .situation-list .situation-card .text-box .arrow {
    bottom: 16px;
    left: 50%;
    transform: translate(-50%);
  }
}
@media only screen and (min-width: 1000px) and (any-hover: hover) {
  .situation-list .situation-card:hover {
    transform: translateY(8px);
  }
}
@media only screen and (min-width: 1000px) and (any-hover: none) {
  .situation-list .situation-card:active {
    transform: translateY(8px);
  }
}
@media only screen and (max-width: 999px) {
  .situation-list {
    width: min(100%, 520px);
    margin: 0 auto;
  }
  .situation-list .situation-card .text-box .arrow {
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }
}
.feature-list {
  margin-top: 40px;
}
.feature-list .feature-card .img-box {
  aspect-ratio: 1/1;
  width: 100%;
}
.feature-list .feature-card .text-box {
  margin-top: 12px;
}
.feature-list .feature-card .text-box .title {
  font-size: 1.125rem;
  font-weight: 900;
}
.feature-list .feature-card .text-box .description {
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 12px;
}
.feature-list .feature-card .text-box .description a {
  display: block;
  color: #3c3c43;
  font-size: 0.875rem;
  font-weight: 400;
  text-decoration: underline;
}
.feature-list .feature-swiper .swiper-control {
  display: flex;
}
@media only screen and (min-width: 1000px) {
  .feature-list .feature-swiper .swiper-wrapper {
    gap: 20px;
  }
  .feature-list .feature-swiper .swiper-slide {
    width: calc((100% - 40px) / 3);
  }
  .feature-list .feature-swiper .swiper-control {
    display: none;
  }
}
@media only screen and (max-width: 999px) {
  .feature-list {
    width: min(100%, 520px);
    margin-left: auto;
    margin-right: auto;
  }
}
.lineup-list {
  margin-top: 24px;
}
.lineup-list .row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 0;
}
.lineup-list .grid {
  width: 100%;
}
.lineup-list .lineup-card {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid #76767b;
  color: #3c3c43;
  overflow: hidden;
  text-align: left;
  transition: background-color 0.3s ease-out;
  cursor: pointer;
}
@media (any-hover: hover) {
  .lineup-list .lineup-card:hover {
    background-color: #f5f5f5;
  }
}
@media (any-hover: none) {
  .lineup-list .lineup-card:active {
    background-color: #f5f5f5;
  }
}
.lineup-list .lineup-card .img-box {
  aspect-ratio: 1/1;
}
.lineup-list .lineup-card .text-box {
  padding: 12px;
}
.lineup-list .lineup-card .text-box > div {
  position: relative;
  padding-right: 20px;
}
.lineup-list .lineup-card .text-box > div:before,
.lineup-list .lineup-card .text-box > div:after {
  content: '';
  position: absolute;
  right: 0;
  background-color: #3c3c43;
  border-radius: 2px;
  display: inline-block;
  width: 10px;
  height: 2px;
}
.lineup-list .lineup-card .text-box > div:before {
  top: calc(50% - 2px);
  right: 6px;
  transform: rotate(45deg);
}
.lineup-list .lineup-card .text-box > div:after {
  bottom: 50%;
  transform: rotate(-45deg);
}
.lineup-list .lineup-card .text-box .label {
  display: inline-block;
  font-size: 10px;
  border: 1px solid #3c3c43;
  margin-bottom: 2px;
}
.lineup-list .lineup-card .text-box p {
  font-size: 0.875rem;
  font-weight: 700;
}
@media only screen and (min-width: 1000px) {
  .lineup-list .row {
    gap: 24px;
  }
  .lineup-list .grid {
    width: calc(33.3333333333% - 16px);
  }
  .lineup-list .lineup-card .img-box {
    width: 41.58163%;
  }
  .lineup-list .lineup-card .text-box {
    padding-left: 15px;
    padding-right: 40px;
    width: 58.41837%;
  }
  .lineup-list .lineup-card .text-box .label {
    padding: 1px 13px;
  }
  .lineup-list .lineup-card .text-box p {
    font-size: 0.8125rem;
  }
}
@media only screen and (max-width: 999px) {
  .lineup-list {
    width: min(100%, 520px);
    margin-left: auto;
    margin-right: auto;
  }
  .lineup-list .lineup-card .img-box {
    width: 47.82609%;
  }
  .lineup-list .lineup-card .text-box {
    width: 51.5942%;
  }
  .lineup-list .lineup-card .text-box .label {
    padding: 1px 10px;
  }
}
.product-list .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 15px;
}
.product-list .grid {
  width: calc((100% - 30px) / 3);
}
.product-list .product-card {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.product-list .product-card > a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.product-list .product-card .img-box {
  position: relative;
  aspect-ratio: 1/1;
  width: 100%;
}
.product-list .product-card .img-box .color-box {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.product-list .product-card .img-box .color-box:not(.active) {
  opacity: 0;
}
.product-list .product-card .text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
.product-list .product-card .text-box .name {
  color: #3c3c43;
  font-size: 0.875rem;
}
.product-list .product-card .text-box .price {
  font-size: 0.625rem;
  margin-top: 4px;
}
.product-list .product-card .text-box .price span.number {
  font-size: 1rem;
  font-weight: 700;
}
.product-list .product-card .color-chips {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 2px;
  margin-bottom: 6px;
  z-index: 1;
}
.product-list .product-card .color-chips > li {
  position: relative;
  width: 13px;
  height: 13px;
  padding: 1px;
  cursor: pointer;
}
.product-list .product-card .color-chips > li.active:before {
  opacity: 1;
}
.product-list .product-card .color-chips > li:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 1px solid #3c3c43;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s;
}
.product-list .product-card .color-chips > li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}
@media only screen and (min-width: 1000px) {
  .product-list .row {
    gap: 0 24px;
  }
  .product-list .grid {
    width: calc(33.3333333333% - 16px);
  }
  .product-list .product-card {
    flex-direction: row;
  }
  .product-list .product-card .img-box {
    width: 48%;
  }
  .product-list .product-card .text-box {
    padding: 0 15px;
  }
  .product-list .product-card .text-box .price {
    font-size: 0.75rem;
  }
  .product-list .product-card .text-box .price span.number {
    margin: 0 4px 0 8px;
  }
  .product-list .product-card .color-chips {
    gap: 2px 1px;
  }
  .product-list .product-card .color-chips > li {
    width: 20px;
    height: 20px;
    padding: 3px;
  }
}
@media only screen and (max-width: 999px) {
  .product-list {
    margin-top: 40px;
  }
  .product-list .product-card .text-box {
    padding: 0 15px;
  }
  .product-list .product-card .text-box .price {
    font-size: 0.75rem;
  }
  .product-list .product-card .text-box .price span:first-child {
    display: block;
  }
}
.report-list {
  margin-top: 20px;
}
.report-list .row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 19px;
}
.report-list .grid {
  width: calc((100% - 19px) / 2);
}
.report-list .item .img-box {
  aspect-ratio: 640/400;
  border: 1px solid #d8d8d9;
}
.report-list .item .text-box {
  font-size: 0.75rem;
  margin-top: 4px;
}
@media only screen and (min-width: 1000px) {
  .report-list .row {
    gap: 24px 20px;
  }
  .report-list .grid {
    width: calc((100% - 40px) / 3);
  }
  .report-list .item .text-box {
    font-size: 0.875rem;
  }
}
section .anchor-link span {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
section .anchor-link span:before,
section .anchor-link span:after {
  content: '';
  position: absolute;
  right: 0;
  display: inline-block;
  width: 10px;
  height: 2px;
  border-radius: 2px;
  background-color: #3c3c43;
}
section .anchor-link span:before {
  bottom: 50%;
  transform: rotate(-45deg);
}
section .anchor-link span:after {
  right: 6px;
  top: calc(50% - 2px);
  transform: rotate(45deg);
}
section .section-h2 {
  font-size: 1.625rem;
  font-weight: 700;
  text-align: center;
}
section .section-h3 {
  font-size: 1.375rem;
  font-weight: 700;
  text-align: center;
}
section .section-h3.decor-line {
  display: flex;
  align-items: center;
}
section .section-h3.decor-line:before,
section .section-h3.decor-line:after {
  content: '';
  flex-grow: 1;
  height: 1px;
  background-color: #3c3c43;
}
section .section-h3.decor-line:before {
  margin-right: 1em;
}
section .section-h3.decor-line:after {
  margin-left: 1em;
}
section .section-h4 {
  font-size: 1.125rem;
  font-weight: 700;
}
section .fixed-anchor {
  position: fixed;
  top: 0;
  left: 50%;
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #ebebec;
  transform: translateY(-100%) translate(-50%);
  transition: transform 0.3s;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  z-index: 100;
}
section .fixed-anchor.show {
  transform: translateY(0) translate(-50%);
}
section .fixed-anchor .anchor-list {
  display: flex;
  justify-content: flex-start;
}
section .fixed-anchor .anchor-list .item {
  position: relative;
  width: calc(50% - 30px);
  min-height: 42px;
  text-align: center;
  padding: 12px 0;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  cursor: pointer;
}
section .fixed-anchor .anchor-list .item:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #3c3c4300;
  transition: background-color 0.3s ease-in-out;
}
section .fixed-anchor .anchor-list .item.active:after {
  background-color: #3c3c43;
}
section .fixed-anchor .anchor-list .item:not(:first-child):before {
  content: '';
  position: absolute;
  top: 50%;
  left: -1px;
  width: 1px;
  height: calc(100% - 24px);
  background-color: #d8d8d9;
  transform: translateY(-50%);
}
section.hero .content {
  display: flex;
  align-items: center;
}
section.hero .img-box {
  aspect-ratio: 1952/1280;
  width: 100%;
}
section.lead {
  margin-top: 64px;
}
section.lead h1 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
section.lead h1 span {
  display: block;
  font-size: 1rem;
}
section.lead .content {
  margin-top: 16px;
}
section.lead .content p {
  line-height: 1.8;
}
section.lead .content .anchor-block {
  margin-top: 40px;
  font-weight: 700;
  text-align: center;
}
section.lead .content .anchor-block .anchor-link:after {
  display: none;
}
section.feature {
  margin-top: 64px;
}
section.cover {
  margin-top: 96px;
}
section.cover .inner {
  padding: 64px 0;
  background-color: #f5f5f5;
  text-align: center;
  opacity: 0;
}
section.cover .img-box {
  aspect-ratio: 750/346;
  width: 100%;
}
section.cover .text-box .description {
  line-height: 1.8;
  margin-top: 16px;
}
section.cover .text-box .notes {
  color: #76767b;
  font-size: 0.75rem;
}
section.cover .text-box .button-group {
  margin-top: 40px;
}
section.lineup .lineup-size {
  margin-top: 64px;
}
section.lineup .lineup-size .size-list {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
section.lineup .lineup-size .size-list > li {
  text-align: center;
}
section.lineup .lineup-size .size-list p {
  margin-top: 16px;
}
section.lineup .lineup-size .size-list .title {
  font-weight: 700;
  margin-top: 12px;
}
section.lineup .lineup-size .size-list p:not(.title) {
  font-size: 0.875rem;
}
section.lineup .product-intro .category:first-child {
  padding-top: 60px;
}
section.lineup .product-intro .category:not(:first-child) {
  padding-top: 60px;
}
section.special-report {
  margin-top: 96px;
}
section.special-report .button-group {
  margin-top: 40px;
}
section.special-report .button-group .button {
  background-color: #f4eede;
  border: 1px solid #f4eede;
}
@media (any-hover: hover) {
  section.special-report .button-group .button:hover {
    background-color: #e0ceaa;
    border: 1px solid #e0ceaa;
  }
}
@media (any-hover: none) {
  section.special-report .button-group .button:active {
    background-color: #e0ceaa;
    border: 1px solid #e0ceaa;
  }
}
section .category-header {
  text-align: center;
}
section .category-header .new-tag {
  display: inline-block;
  padding: 5px 12px;
  background-color: #74141d;
  color: #fff;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 10px;
}
section .category-header p {
  margin-top: 20px;
}
section .category-header p.size {
  font-size: 1rem;
}
section .category-header p.description {
  font-size: 1rem;
  line-height: 1.8;
}
section .category-gallery .swiper-slide .img-box {
  aspect-ratio: 375/248;
  width: 100%;
}
section .products-block {
  margin-top: 64px;
}
section .products-block .header .description {
  text-align: left;
  margin-top: 16px;
}
section .products-block .button-group {
  margin-top: 72px;
}
@media only screen and (min-width: 1000px) {
  section .common-container {
    width: min(100%, 1352px);
    margin: 0 auto;
    padding: 0 64px;
  }
  section .section-h2 {
    font-size: 2rem;
  }
  section .section-h3 {
    font-size: 1.625rem;
  }
  section .section-h3.decor-line {
    max-width: 944px;
    margin-left: auto;
    margin-right: auto;
  }
  section .fixed-anchor .anchor-list {
    justify-content: center;
  }
  section .fixed-anchor .anchor-list .item {
    font-size: 0.875rem;
    flex: 1;
  }
  section.hero .img-box {
    aspect-ratio: 8/3;
  }
  section.lead h1 {
    font-size: 2.375rem;
  }
  section.lead .content p {
    text-align: center;
  }
  section.lead .content .anchor-block {
    margin-top: 64px;
  }
  section.situation {
    margin-top: 64px;
  }
  section.feature {
    margin-top: 96px;
  }
  section.cover .img-box {
    aspect-ratio: 2448/302;
    width: 100%;
  }
  section.cover .button-group .button.large {
    max-width: 370px;
  }
  section.lineup {
    padding-top: 96px;
  }
  section.lineup .lineup-size {
    margin-top: 88px;
  }
  section.lineup .lineup-size .size-list {
    background-image: url(../../assets/img/bg-sizecf-desktop.svg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: auto;
    margin-right: auto;
    max-width: 1016px;
    padding: 15.5% 0 0;
  }
  section.lineup .lineup-size .size-list > li.normal {
    width: 27.86%;
  }
  section.lineup .lineup-size .size-list > li.rectangle {
    width: 37.45%;
  }
  section.lineup .lineup-size .size-list > li.small {
    width: 21.55%;
  }
  section.lineup .lineup-size .size-list .img-box {
    display: none;
  }
  section.lineup .lineup-size .size-list p {
    margin-top: 8px;
  }
  section.lineup .lineup-size .size-list .title {
    font-size: 0.875rem;
    margin-top: 0;
  }
  section.lineup .lineup-size .size-list p:not(.title) {
    font-size: 0.75rem;
  }
  section.lineup .product-intro .category:first-child {
    padding-top: 80px;
  }
  section.lineup .product-intro .category:not(:first-child) {
    padding-top: 96px;
  }
  section.special-report .button-group .button {
    max-width: calc(50% - 10px);
  }
  section .category-header p {
    margin-top: 12px;
  }
  section .category-header p.size {
    font-size: 0.875rem;
  }
  section .category-header p.description {
    font-size: 1.125rem;
  }
  section .category-gallery {
    margin-top: 64px;
  }
  section .category-gallery .swiper-slide .img-box {
    aspect-ratio: 67/30;
  }
  section .products-block .header .description {
    text-align: center;
    margin-top: 12px;
  }
  section .products-block .button-group {
    max-width: 764px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 999px) {
  section .common-container {
    padding: 0 40px;
  }
  section.hero .img-box {
    aspect-ratio: 0/1;
  }
  section.situation {
    margin-top: 40px;
  }
  section.cover .inner {
    padding: 48px 0 64px;
  }
  section.cover .text-box {
    padding: 0 40px;
    text-align: left;
  }
  section.cover .text-box .section-h2,
  section.cover .text-box .description {
    margin: 0 15px;
  }
  section.cover .text-box .description {
    text-align: left;
    margin-top: 20px;
  }
  section.cover .text-box .notes {
    margin-top: 24px;
  }
  section.cover .button-group .button.large {
    max-width: 240px;
  }
  section.lineup {
    padding-top: 64px;
  }
  section.lineup .lineup-size {
    gap: 16px;
  }
  section.lineup .lineup-size .size-list > li {
    width: calc(33.33333% - 10.66667px);
  }
  section .category-header p.description {
    text-align: left;
  }
  section .category-gallery {
    margin-top: 40px;
  }
  section .products-block .button-group {
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
  }
  section .products-block .button-group .button:not(:first-child) {
    margin-top: 24px;
  }
}
@media only screen and (max-width: 599px) {
  section .common-container {
    padding: 0 15px;
  }
  section.cover .text-box {
    padding: 0 15px;
  }
}
@font-face {
  font-family: swiper-icons;
  src: url(data:application/font-woff;charset=utf-8;base64,\ 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);
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translateZ(0);
}
.swiper-pointer-events {
  touch-action: pan-y;
}
.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: #00000026;
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, #00000080, #0000);
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, #00000080, #0000);
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, #00000080, #0000);
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, #00000080, #0000);
}
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-centered > .swiper-wrapper:before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}
.swiper-centered.swiper-horizontal
  > .swiper-wrapper
  > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper:before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper:before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}
.swiper-virtual.swiper-css-mode .swiper-wrapper:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}
.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper:after {
  height: 1px;
  width: var(--swiper-virtual-size);
}
.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper:after {
  width: 1px;
  height: var(--swiper-virtual-size);
}
:root {
  --swiper-navigation-size: 44px;
}
.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translateZ(0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: var(
    --swiper-pagination-bullet-width,
    var(--swiper-pagination-bullet-size, 8px)
  );
  height: var(
    --swiper-pagination-bullet-height,
    var(--swiper-pagination-bullet-size, 8px)
  );
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0, -50%, 0);
}
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet,
.swiper-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translate(-50%);
  white-space: nowrap;
}
.swiper-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}
.swiper-horizontal.swiper-rtl
  > .swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}
.swiper-pagination-progressbar {
  background: #00000040;
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-horizontal
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-lock {
  display: none;
}
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: #0000001a;
}
.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}
.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-scrollbar.swiper-scrollbar-vertical,
.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: #00000080;
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}
.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-cube {
  overflow: visible;
}
.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-next + .swiper-slide,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}
.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}
.swiper-cube .swiper-cube-shadow:before {
  content: '';
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}
.swiper-flip {
  overflow: visible;
}
.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}
.swiper-cards {
  overflow: visible;
}
.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}
