@charset "UTF-8";

:root {
  --sub-color: #F5F5F5;
  --em-color: #F51710;
  --sp-title-small: 2rem;
  --sp-title-large: 2.8rem;
  --tab-title-small: 2.8rem;
  --tab-title-large: 3.6rem;
  --tab-title-xlarge: 4.8rem;
  --pc-title-small: 3.4rem;
  --pc-title-large: 4.2rem;
  --pc-title-xlarge: 5.4rem;
}

.neue {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
}

.svg-anime {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-bottom: 0;
}

.svg-anime .circle-outer {
  stroke: #fff;
  transition: all .7s ease;
}

.swiper-pagination-bullet {
  z-index: 10;
  position: relative;
  margin: 0;
  transform: rotate(-90deg);
  background-color: transparent;
  opacity: .8;
}

.svg-anime svg {
  overflow: visible;
}

.svg-anime .circle-inner {
  fill: #000;
  transition: all .7s ease;
}

.svg-anime .circle-outer {
  stroke: #000;
  transition: all .7s ease;
}

.swiper-pagination-bullet-active .svg-circle {
  stroke: #fff;
  stroke-dasharray: 100;
  stroke-dashoffset: 0;
  animation: progress 7s linear forwards;
  animation-fill-mode: both;
}

.swiper-pagination-bullet-active .circle-outer {
  stroke: #000;
}

.swiper-pagination-bullet-active .circle-inner {
  fill: #fff;
}

@keyframes progress {
  0% {
    stroke-dashoffset: 100;
    opacity: 1;
  }

  95% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  to {
    stroke-dashoffset: 0;
    opacity: 0;
  }
}

.svg-line-anime {
  margin-bottom: 0;
  text-align: center;
}

.svg-line-anime line {
  fill: none;
  stroke: #000;
  stroke-linecap: round;
  stroke-width: 2px;
  stroke-dasharray: 50px;
  stroke-dashoffset: 50px;
}

.svg-line-anime.passed line {
  animation: just .5s forwards;
}

@keyframes just {
  0% {
    stroke-dashoffset: 50px;
  }

  100% {
    stroke-dashoffset: 0px;
  }
}

.wipe-in {
  overflow: hidden;
}

.en-text {
  transform: translateY(80%);
  transition: transform .3s .3s cubic-bezier(0.22, 1, 0.36, 1);
}

.passed .en-text {
  transform: translateY(0);
}

article {
  overflow: hidden;
  line-height: 1.7;
}

button {
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

button:focus {
  outline: none;
}

button:focus-visible {
  outline: 4px solid #b01907;
  outline-offset: 4px;
}

button img {
  display: block;
}

.font-gothic,
section,
.other-section {
  font-family: "zen-kaku-gothic-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.bg-gray {
  background-color: var(--sub-color);
}

.flex-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.flex-block > .flex-item {
  width: 100%;
}

.maxw860 {
  max-width: 860px;
  margin-inline: auto;
}

.sub-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.en-text {
  font-size: 1.6rem;
  width: fit-content;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-weight: 700;
  margin-top: .8em;
  margin-inline: auto;
}

.section-title {
  font-weight: 700;
  text-align: center;
  margin-top: 3rem;
}

.section-title span {
  display: inline-block;
}

.em-color {
  color: var(--em-color);
}

figcaption,
.cap-text {
  font-size: 1.4rem;
}

#mainVisual {
  width: 100%;
  height: calc(100svh - 124.53px);
}

#mainVisual figure {
  width: 100%;
  height: 100%;
}

#mainVisual .swiper-slide figure {
  background: no-repeat center bottom/cover;
  overflow: hidden;
}

#mainVisual .swiper-pagination-bullet {
  margin: 0 10px;
}

#mainVisual .swiper-pagination-bullets {
  bottom: 8%;
}

#mainVisual .swiper-slide-active figure,
#mainVisual .swiper-slide-duplicate-active figure,
#mainVisual .swiper-slide-prev figure {
  animation: zoomUp 7s linear 0s normal both;
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.08);
  }
}

.main-title-wrap {
  position: absolute;
  width: 100%;
  height: fit-content;
  z-index: 10;
  left: 0;
  top: 6%;
  text-align: center;
}

.main-title {
  font-size: 2rem;
  font-style: oblique 14deg;
  font-weight: 700;
  opacity: 0;
  text-shadow: 0px 0px 5px rgba(255, 255, 255, 1), 0px 0px 10px rgba(255, 255, 255, 1), 0px 0px 15px rgba(255, 255, 255, 1);
}

.has-lead-line {
  display: inline-block;
  font-style: normal;
  margin-bottom: .8em;
  position: relative;
}

.has-lead-line::before,
.has-lead-line::after {
  content: '';
  display: block;
  background-color: #000;
  box-shadow: 0px 0px 5px rgba(255, 255, 255, 1), 0px 0px 10px rgba(255, 255, 255, 1);
  position: absolute;
}

.has-lead-line::before {
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
}

.has-lead-line::after {
  width: 15%;
  height: 1px;
  left: 33%;
  bottom: -7px;
  transform: rotate(-45deg);
}

.main-title .font-large {
  display: inline-block;
  font-size: 3.2rem;
  line-height: 1.6;
}

.font-grid {
  display: inline-block;
  font-style: normal;
  color: var(--em-color);
  transform: skewX(-14deg);
  text-shadow: none;
  line-height: 1;
  margin-top: .4em;
  padding: .2em .2em;
  opacity: 0;
  background-color: #000;
}

.font-grid.highlight {
  color: #000;
  background-color: #fff;
}

.font-grid {
  margin-left: .2em;
}

.img-wrap,
.text-wrap {
  margin-top: 5rem;
  overflow: hidden;
}

.copy-block .text,
.copy-text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  line-break: strict;
}

.copy-block {
  margin-top: 5rem;
}

.copy-block .text:not(:first-child) {
  margin-top: 1.3em;
}

#sub01 .section-title span:nth-of-type(-n+18) {
  font-size: var(--sp-title-small);
}

#sub01 .section-title span:nth-of-type(n+19) {
  font-size: var(--sp-title-large);
}

#sub01 .section-title span:nth-of-type(21),
#sub01 .section-title span:nth-of-type(22) {
  color: var(--em-color);
}

#sub02 .section-title span:nth-of-type(-n+15) {
  font-size: var(--sp-title-small);
}

#sub02 .section-title span:nth-of-type(n+16) {
  font-size: var(--sp-title-large);
}

#sub02 .section-title span:nth-of-type(n+16):nth-of-type(-n+25) {
  color: var(--em-color);
}

#sub02 .em-text {
  font-size: var(--sp-title-small);
  font-weight: 700;
  margin-top: 5rem;
}

#sub02 .font-small {
  font-size: 1.6rem;
}

.marker {
  background: linear-gradient(transparent 60%, #FAF006 60%);
}

#sub03 .section-title {
  font-size: var(--sp-title-large);
}

#sub03 .section-title span:nth-of-type(4),
#sub03 .section-title span:nth-of-type(5) {
  color: var(--em-color);
}

#sub03 .section-sub-title {
  font-size: var(--sp-title-small);
  font-weight: 700;
  margin-top: 7rem;
  text-align: center;
}

#sub03 .img-wrap {
  margin-top: 3rem;
}

#sub03 figcaption {
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: .3em;
}

#sub03 .cap-text {
  margin-top: .5em;
}

#sub03 {
  overflow: hidden;
}

.comparisonSection {
  margin-top: 5rem;
  padding-bottom: 142.222%;
  overflow: hidden;
  position: relative;
}

.comparisonImage {
  width: 100%;
  height: 100%;
}

.comparisonImage img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.afterImage {
  position: absolute;
  overflow: hidden;
  top: 0;
}

#column01 .section-title {
  font-size: var(--sp-title-small);
}

#column01 .copy-text {
  margin-top: 5rem;
}

#column01 .img-wrap {
  margin-top: 5rem;
  width: 100%;
}

.flex-block.pc-column3 .img-wrap:last-of-type {
  position: relative;
}

#column01 .section-title:last-of-type {
  margin-top: 7rem;
}

#column01 .flex-item {
  overflow: hidden;
}

.flex-block.column2 figure {
  margin-top: 4rem;
}

#column01 .caption-wrap {
  display: flex;
  flex-wrap: wrap;
}

#column01 .caption-wrap > * {
  width: 50%;
  text-align: center;
  margin-top: .5em;
}

.flex-block.pc-column3 .img-wrap:first-of-type .cap-text {
  text-align: center;
  margin-top: .5em;
}

.flex-block.pc-column3 .img-wrap:last-of-type .text {
  font-size: 1.4rem;
  position: absolute;
  width: 57%;
  left: 0;
  bottom: 0;
}

ul.caption {
  font-size: 1.4rem;
}

ul.caption.kome {
  margin-top: 4rem;
  text-align: center;
}

#sub04 .section-title {
  font-size: var(--sp-title-large);
}

#sub04 .section-title span:nth-of-type(6),
#sub04 .section-title span:nth-of-type(7) {
  color: var(--em-color);
}

.youtube-container {
  margin-top: 7rem;
}

#sub05 {
  position: relative;
  z-index: 0;
}

#sub05 .section-title span:nth-of-type(-n+20) {
  font-size: var(--sp-title-small);
}

#sub05 .section-title span:nth-of-type(n+21) {
  font-size: var(--sp-title-large);
}

#sub05 .section-title br {
  line-height: 1;
}

ul.list-interview {
  margin-top: 7rem;
}

ul.list-interview > li:not(:first-child) {
  margin-top: 6rem;
}

.query {
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  opacity: 0;
}

.answer {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 1.2em 1.5em;
  border: 1px solid #000;
  border-radius: 5px;
  transform: rotateY(-90deg);
}

.line-anime-wrap {
  position: relative;
  margin-top: 1em;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.line-anime {
  position: absolute;
  z-index: 0;
  width: 1px;
  height: 0;
  opacity: 0;
  background-size: 1px 10px;
  background-image: linear-gradient(180deg, #000, #000 5px, transparent 5px, transparent 10px);
  background-position: top center;
  background-repeat: repeat-y;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.line-anime::before,
.line-anime::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.line-anime::before {
  top: 0;
  background-color: var(--em-color);
}

.line-anime::after {
  bottom: 0;
  background-color: #000;
}

#sub05 figcaption {
  font-size: 1.6rem;
  font-weight: 500;
}

#sub05 .cap-text {
  margin-top: .5em;
}

#sub05 .flex-block {
  margin-top: 7rem;
}

#sub05 .flex-block > .flex-item {
  width: 44%;
}

ul.svg-wrap > li {
  width: 15px;
}

.arrow-anime {
  position: relative;
  width: 6%;
}

.arrow-anime .svg-wrap {
  position: absolute;
  left: 50%;
  top: 40%;
  width: 100%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
}

#sub06 .section-title span:nth-of-type(n+9):nth-of-type(-n+16),
#sub06 .section-title span:nth-of-type(n+31):nth-of-type(-n+38) {
  color: var(--em-color);
}

#sub06 .section-title {
  font-size: var(--sp-title-small);
}

#sub06 .text {
  margin-top: 1.5em;
}

#sub06 figcaption {
  text-align: right;
  margin-top: .5em;
}

.other-section {
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.index {
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  background-color: #000;
  width: fit-content;
  margin-inline: auto;
  padding: .2em .5em;
}

#column01 .section-title {
  margin-top: 2em;
}

#column02 {
  position: relative;
  z-index: 0;
}

ul.list-sticky {
  margin-top: 4rem;
}

ul.list-sticky > li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  padding: .5em .8em;
  border-left: 12px solid #A29C79;
  background-color: #fff;
}

ul.list-sticky > li > .box-shadow {
  position: absolute;
  bottom: -3px;
  right: -6px;
  z-index: -1;
  transform: rotate(2deg);
  width: 100%;
  height: 95%;
  background-color: #d0d0d0;
  filter: blur(3px);
}

ul.list-sticky .text-wrap {
  width: 75%;
  margin-top: 0;
}

ul.list-sticky .img-wrap {
  width: 22%;
  margin-top: 0;
}

ul.list-sticky > .text {
  font-size: 1.6rem;
}

ul.list-sticky .name {
  font-size: 1.4rem;
  margin-top: 1em;
  font-weight: 700;
  color: #A29C79;
}

#notes {
  padding-top: 5rem;
}

#notes ul.caption {
  font-size: 1.2rem;
}

#products .base-width-pc {
  border-top: 0.1rem solid #C9CACA;
  padding: 4.5rem 0 0;
}

.tit {
  font-size: 2.2rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
}

.support_products_subtit {
  font-size: 2.4rem;
  font-weight: 400;
  border-bottom: .1rem solid #C9CACA;
  margin-bottom: 3rem;
}

.base-width-sp:first-child .support_products_subtit {
  margin-top: 3.5rem;
}

.support_products_outer + .base-width-sp .support_products_subtit {
  margin-top: 9rem;
}

.support_products_outer {
  position: relative;
  padding: 0 30px;
}

.support_products_container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.support_product {
  display: block;
}

.support_product_img {
  padding: .2rem 28%;
}

#tatekan .support_product_img {
  padding: .2rem 32.4%;
}

.support_product_txt {
  font-weight: 400;
  text-align: center;
  margin-top: 1rem;
}

.support_product_name {
  font-size: 2.1rem;
  padding: 0 0 0 0.8em;
  background-image: url(/products/common/images/chevron-right-solid.svg);
  background-repeat: no-repeat;
  background-position: left 0 top 0.6em;
  background-size: auto 0.7em;
}

.support_product_capacity {
  font-size: 1.2rem;
}

.support_product_function {
  margin-top: 1.3rem;
  font-size: 1.4rem;
  font-weight: 300;
  text-align: left;
  margin-left: 18%;
}

.footer-lineup-button-next2,
.footer-lineup-button-prev2 {
  position: absolute;
  top: 50%;
  width: 5%;
  height: 120px;
  margin-top: -60px;
  z-index: 2;
  cursor: pointer;
  background-color: #D9D9D9;
  background-size: 60% auto;
  background-position: center;
  background-repeat: no-repeat;
}

.footer-lineup-button-prev2 {
  background-image: url(/products/common/images/arrow-prev-w.svg);
  left: 0;
  right: auto
}

.footer-lineup-button-next2 {
  background-image: url(/products/common/images/arrow-next-w.svg);
  right: 0;
  left: auto
}

.footer-lineup-outer.destroy .footer-lineup-button-next2,
.footer-lineup-outer.destroy .footer-lineup-button-prev2 {
  display: none;
}

.support_products_outer .footer-lineup-button-next,
.support_products_outer .footer-lineup-button-next2,
.support_products_outer .footer-lineup-button-prev,
.support_products_outer .footer-lineup-button-prev2 {
  width: 30px;
  height: 13rem;
  top: 50%;
  transform: translateY(-50%);
}

#special {
  background: #ebebeb;
  margin-top: 6rem;
  padding: 5rem 0 8rem;
}

#special .base-width {
  max-width: 108rem;
}

#special h3 {
  font-size: 2.2rem;
  padding-bottom: 1em;
}

.special_contents {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin: auto;
  flex-wrap: wrap;
}

.special_content {
  width: 23%;
}

.special_content + .special_content {
  margin-left: 2.6%;
}

.special_content:nth-child(5n) {
  margin-left: 0;
}

.special_content:nth-child(n+5) {
  margin-top: 2rem;
}

.special_content img {
  border: solid 1px #d9d9d9;
}

.special_content a {
  text-decoration: none;
  display: block;
  font-weight: 400;
}

.special_content .special_name {
  color: #0c4c89;
  font-size: 1.4rem;
  line-height: 1.5;
  margin-top: 0.5em;
  padding: 0 0 0 1em;
  background-image: url(/sentaku/common/images/chevron-right-solid_blue.svg);
  background-repeat: no-repeat;
  background-position: left 0 top 0.4em;
  background-size: auto 0.8em;
}

.special_content .special_text {
  margin-top: 0.5em;
  font-size: 1.2rem;
  color: #000;
}

@media only screen and (max-width: 767px) {
  br.break-sp {
    display: block;
    content: '';
    margin-top: .5em;
  }

  #mainVisual .swiper-slide .slide01 {
    background-image: url('images/main-visual-01_sp.jpg');
  }

  #mainVisual .swiper-slide .slide02 {
    background-image: url('images/main-visual-02_sp.jpg');
  }

  #mainVisual .swiper-slide .slide03 {
    background-image: url('images/main-visual-03_sp.jpg');
  }

  #sub01 .img-wrap {
    max-width: 260px;
    margin-inline: auto;
  }

  #sub02 .img-wrap {
    margin-inline: calc(50% - 50vw);
  }

  #sub02 .em-text {
    text-align: center;
  }

  #verification {
    margin-top: 3rem;
    margin-inline: calc(50% - 50vw);
    position: relative;
  }

  #verification .next-slide {
    right: 3%;
  }

  #verification .prev-slide {
    left: 3%;
  }

  .content-width {
    padding: 0 5%;
    position: relative;
  }

  button.next-slide,
  button.prev-slide {
    position: absolute;
    z-index: 1;
    width: 20px;
    height: 30px;
    top: 50%;
    transform: translateY(-50%);
  }

  button.next-slide {
    background: url('/products/common/images/arrow-next-b.svg') center center/contain no-repeat;
  }

  button.prev-slide {
    background: url('/products/common/images/arrow-prev-b.svg') center center/contain no-repeat;
  }

  #comment .prev-slide {
    left: -3%;
  }

  #comment .next-slide {
    right: -3%;
  }

  #comment .swiper-container {
    padding-bottom: 1rem;
  }

  #verification .swiper-pagination,
  #comment .swiper-pagination {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 20px 0;
    position: relative;
  }

  #verification .swiper-pagination-bullet,
  #comment .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin-inline: 7px;
    background: #aaa;
    border-radius: 50%;
  }

  #verification .swiper-pagination-bullet-active,
  #comment .swiper-pagination-bullet-active {
    background: #000;
  }

  ul.list-sticky > li {
    width: 98%;
  }

  #sub06 .img-wrap {
    margin-inline: calc(50% - 50vw);
  }

  #sub06 .img-wrap img {
    width: 100%;
    height: 80vw;
    object-fit: cover;
  }

  ul.list-sticky > li:not(:first-child) {
    margin-top: 3.4rem;
  }

  .flex-block.pc-column3 .img-wrap:first-of-type {
    max-width: 260px;
    margin-inline: auto;
  }

  #products {
    padding-bottom: 0;
  }

  #products .base-width-pc {
    padding: 4.5rem 0 0;
  }

  .support_products_subtit {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
  }

  .support_products_outer + .base-width-sp .support_products_subtit {
    margin-top: 5rem;
  }

  .support_products_outer {
    padding-left: 5%;
    padding-right: 5%;
  }

  .support_product {
    padding: 0 1.5%;
  }

  .support_product_img {
    padding: 0 1.4em .5em;
  }

  #tatekan .support_product_img {
    padding: 0 1.4em .5em;
  }

  .support_product_txt {
    margin-top: 0;
  }

  .support_product_name {
    font-size: 1.7rem;
  }

  .support_product_capacity {
    font-size: 1rem;
  }

  .support_product_function {
    font-size: 1rem;
    margin-left: 0;
  }

  .support_products_outer .footer-lineup-button-next,
  .support_products_outer .footer-lineup-button-next2,
  .support_products_outer .footer-lineup-button-prev,
  .support_products_outer .footer-lineup-button-prev2 {
    margin: 0;
    width: 5%;
  }

  .special_content {
    width: 48%;
  }

  .special_content:nth-child(even) {
    margin-left: 4%;
  }

  .special_content:nth-child(odd) {
    margin-left: 0;
  }

  .special_content:nth-child(n + 3) {
    margin-top: 2rem;
  }
}

@media print,
screen and (min-width: 461px) and (max-width: 767px) {
  #verification {
    max-width: 520px;
    margin-inline: auto;
    padding: 0 5%;
  }

  #verification .next-slide {
    right: -3%;
  }

  #verification .prev-slide {
    left: -3%;
  }
}

@media print,
screen and (min-width: 768px) and (max-width: 1079px) {
  #tatekan .support_product_img {
    padding: .2rem 28%;
  }
}

@media print,
screen and (min-width: 768px) {
  .svg-anime {
    width: 40px;
    height: 40px;
  }

  .swiper-pagination-bullet-active .svg-circle {
    stroke-dasharray: 160;
  }

  @keyframes progress {
    0% {
      stroke-dashoffset: 160;
      opacity: 1;
    }

    95% {
      stroke-dashoffset: 0;
      opacity: 1;
    }

    to {
      stroke-dashoffset: 0;
      opacity: 0;
    }
  }

  #mainVisual .swiper-pagination-bullets {
    bottom: 5%;
  }

  .flex-block.reverse {
    flex-direction: row-reverse;
  }

  .flex-block > .flex-item {
    width: 47%;
  }

  .sub-section {
    padding-top: 4rem;
    padding-bottom: 12rem;
  }

  #products.sub-section {
    padding-bottom: 0;
  }

  .section-title {
    margin-top: 5rem;
  }

  .en-text {
    font-size: 1.8rem;
  }

  .img-wrap,
  .text-wrap {
    margin-top: 10rem;
  }

  .copy-block .text,
  .copy-text {
    font-size: 1.8rem;
  }

  .copy-block {
    margin-top: 10rem;
  }

  figcaption,
  .cap-text {
    font-size: 1.6rem;
  }

  #mainVisual {
    height: calc(100svh - 158.67px);
  }

  #mainVisual .swiper-slide .slide01 {
    background-image: url('images/main-visual-01.jpg');
  }

  #mainVisual .swiper-slide .slide02 {
    background-image: url('images/main-visual-02.jpg');
  }

  #mainVisual .swiper-slide .slide03 {
    background-image: url('images/main-visual-03.jpg');
  }

  #mainVisual .swiper-pagination {
    left: auto;
    right: 1.5%;
    text-align: right;
  }

  .main-title-wrap {
    left: 1.5%;
    top: 20%;
    text-align: left;
  }

  .main-title {
    font-size: 3rem;
  }

  .main-title .font-large {
    font-size: 5.6rem;
  }

  .has-lead-line::after {
    bottom: -9px;
  }

  #sub01 .section-title span:nth-of-type(-n+18) {
    font-size: var(--pc-title-small);
  }

  #sub01 .section-title span:nth-of-type(n+19) {
    font-size: var(--pc-title-large);
  }

  #sub01 .flex-block {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }

  #sub01 .copy-block {
    font-size: 2.2rem;
  }

  #sub02 .section-title span:nth-of-type(-n+15) {
    font-size: var(--pc-title-small);
  }

  #sub02 .section-title span:nth-of-type(n+16) {
    font-size: var(--pc-title-large);
  }

  #sub02 .copy-block {
    font-size: 1.8rem;
  }

  #sub02 .em-text {
    font-size: var(--pc-title-small);
    text-align: center;
    margin-top: 7rem;
  }

  #sub02 .font-small {
    font-size: 2.4rem;
  }

  .marker {
    background: linear-gradient(transparent 60%, #FAF006 60%);
  }

  #sub03 .section-title {
    font-size: var(--pc-title-xlarge);
  }

  #sub03 .section-sub-title {
    font-size: var(--pc-title-large);
    margin-top: 10rem;
  }

  #sub03 .img-wrap {
    margin-top: 7rem;
  }

  #sub03 figcaption {
    font-size: 2.8rem;
  }

  .comparisonSection {
    margin-top: 10rem;
    padding-bottom: 48.333%;
  }

  .afterImage {
    transform: translateX(100%);
  }

  .afterImage img {
    transform: translateX(-100%);
  }

  #sub04 .section-title {
    font-size: var(--pc-title-small);
  }

  .youtube-container {
    margin-top: 10rem;
  }

  #sub05 .section-title span:nth-of-type(-n+20) {
    font-size: var(--pc-title-small);
  }

  #sub05 .section-title span:nth-of-type(n+21) {
    font-size: var(--pc-title-large);
  }

  ul.list-interview {
    max-width: 660px;
    margin-top: 10rem;
    margin-inline: auto;
  }

  ul.list-interview > li:not(:first-child) {
    margin-top: 10rem;
  }

  .query {
    font-size: 2rem;
  }

  .answer {
    font-size: 1.8rem;
  }

  .line-anime-wrap {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  #sub05 .flex-block {
    margin-top: 12rem;
  }

  #sub05 figure {
    position: relative;
  }

  #sub05 figcaption {
    position: absolute;
    left: 1em;
    top: .5em;
    font-size: 2rem;
    color: #fff;
    width: fit-content;
  }

  #sub05 .flex-block > .flex-item {
    width: 40%;
  }

  ul.svg-wrap > li {
    width: 30px;
  }

  .arrow-anime {
    width: 15%;
  }

  .arrow-anime .svg-wrap {
    position: absolute;
    left: 50%;
    top: 40%;
    width: 100%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
  }

  #sub06 .section-title {
    font-size: var(--pc-title-small);
  }

  .other-section {
    padding-bottom: 8rem;
  }

  #column01 .section-title {
    font-size: 2.4rem;
  }

  #column01 .copy-text {
    font-size: 1.8rem;
    width: 25%;
    margin-top: 6rem;
  }

  #column01 .img-wrap {
    margin-top: 6rem;
  }

  #column01 .img-wrap:first-of-type {
    width: 26%;
  }

  #column01 .img-wrap:last-of-type {
    width: 42%;
  }

  .flex-block.pc-column3 .img-wrap:last-of-type .text {
    font-size: 1.6rem;
    bottom: 10%;
  }

  #column01 .section-sub-title {
    font-size: 2.4rem;
    margin-top: 8rem;
  }

  ul.caption {
    font-size: 1.6rem;
  }

  ul.caption.kome {
    margin-top: 6rem;
  }

  #column02 .section-title {
    font-size: 2.4rem;
  }

  ul.list-sticky {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: max-content;
    column-gap: 3%;
    row-gap: 3.5rem;
    margin-top: 6rem;
  }

  ul.list-sticky > li {
    margin-top: 0;
  }

  ul.list-sticky .text-wrap {
    width: 65%;
  }

  ul.list-sticky .img-wrap {
    margin-top: 0;
    width: 32%;
  }

  #notes {
    padding-top: 2rem;
    padding-bottom: 5rem;
  }

  #notes ul.caption {
    font-size: 1.4rem;
  }

  #products .base-width-pc {
    padding: 14.5rem 0 7rem;
  }

  .tit {
    font-size: var(--pc-title-small);
    line-height: 1.75;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .main-title {
    font-size: 2.6rem;
  }

  .main-title .font-large {
    font-size: 4.2rem;
  }

  #sub01 .section-title span:nth-of-type(-n+18) {
    font-size: var(--tab-title-small);
  }

  #sub01 .section-title span:nth-of-type(n+19) {
    font-size: var(--tab-title-large);
  }

  #sub02 .section-title span:nth-of-type(-n+15) {
    font-size: var(--tab-title-small);
  }

  #sub02 .section-title span:nth-of-type(n+16) {
    font-size: var(--tab-title-large);
  }

  #sub02 .em-text {
    font-size: var(--tab-title-small);
  }

  #sub02 .font-small {
    font-size: 1.8rem;
  }

  #sub03 .section-title {
    font-size: var(--tab-title-xlarge);
  }

  #sub03 .section-sub-title {
    font-size: var(--tab-title-large);
  }

  #sub03 figcaption {
    font-size: var(--tab-title-small);
  }

  #sub04 .section-title {
    font-size: var(--tab-title-large);
  }

  #sub05 .section-title span:nth-of-type(-n+20) {
    font-size: var(--tab-title-small);
  }

  #sub05 .section-title span:nth-of-type(n+21) {
    font-size: var(--tab-title-small);
  }

  ul.list-sticky {
    grid-template-columns: repeat(2, 1fr);
  }

  #sub06 .section-title {
    font-size: var(--tab-title-small);
  }

  .flex-block.pc-column3 .img-wrap:last-of-type .text {
    bottom: 15%;
  }
}

@media only screen and (min-width: 1200px) {
  .maxw1200 {
    max-width: 1200px;
  }

  .main-title-wrap {
    left: calc(50% - 600px);
  }

  #mainVisual .swiper-pagination {
    right: calc(50% - 600px);
  }
}

@media all and (-ms-high-contrast:none) {
  .maxw860 {
    margin-left: auto;
    margin-right: auto;
  }

  #mainVisual {
    height: calc(100vh - 158.67px);
  }

  .main-title {
    opacity: 1;
  }

  .font-grid {
    color: #F51710;
    opacity: 1;
  }

  .svg-line-anime line {
    stroke-dasharray: none;
    stroke-dashoffset: none;
  }

  .en-text {
    transform: none;
  }

  .section-title,
  #sub02 .em-text {
    font-size: 3.4rem;
  }

  #sub03 .section-title {
    font-size: 5.4rem;
  }

  #sub03 .section-sub-title {
    font-size: 4.2rem;
  }

  ul.list-interview {
    margin-left: auto;
    margin-right: auto;
  }

  .query {
    opacity: 1;
  }

  .answer {
    transform: none;
  }
}

.btn-black {
  margin: 50px auto 20px;
  text-decoration: none !important;
  line-height: 2;
  font-size: 1.9rem;
}

.btn-black:hover {
  text-decoration: none !important;
}

@media only screen and (max-width: 767px) {
  .btn-black {
    line-height: 1.5;
    font-size: 1.6rem;
  }
}
