@charset "UTF-8";
html {
  font-size: 62.5%;
  color: #010101;
  scroll-behavior: smooth;
}

body {
  font-family: YakuHanJP_Narrow, "Inter", "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1.9;
  font-feature-settings: "palt";
  background-color: #010101;
  background-image: url(../img/repeat_back.png);
  background-repeat: repeat;
}

.wrapper {
  width: 100%;
  overflow: hidden;
}

img {
  width: 100%;
}

.pc {
  display: inline-block;
}

.sp {
  display: none;
}

/* ここから時間差フェードインアニメーション */
/* 1秒間かけてフェードイン */
.fadeIn200ms {
  animation-name: fadeIn200ms;
  animation-delay: 200ms;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeIn200ms {
  100% {
    opacity: 1;
  }
}
/*===========
inview
===========*/
.fadeIn {
  opacity: 0;
  transition: 2s;
}

.fadeIn.is-show {
  opacity: 1;
}

/* ヘッダー */
.header {
  width: 100%;
  position: relative;
  z-index: 999;
}

.header__inner {
  margin: auto;
  padding: 2% 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  width: 10.8333333333vw;
}

.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100vw;
  transform: translateX(100%);
  background-color: #333;
  transition: ease 0.4s;
}

@media screen and (min-width: 768px) {
  .header__nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
  }
}
@media screen and (min-width: 768px) {
  .nav__items {
    width: 100%;
    display: flex;
    align-items: center;
    height: initial;
    justify-content: flex-end;
  }
}
.nav-items {
  position: relative;
  padding: 0;
}

@media screen and (min-width: 768px) {
  .nav-items {
    display: flex;
    gap: 0 3%;
    padding-top: inherit;
    padding-bottom: inherit;
    position: inherit;
    top: 0;
    left: 0;
    transform: translate(0, 0);
  }
}
.nav-items__item a {
  width: 100%;
  display: block;
  text-align: center;
  font-size: 0.9375vw;
  font-weight: 500;
  line-height: 1;
}
.nav-items__item a.shop {
  display: block;
  border: 1px solid #fff;
  border-radius: 999px;
  padding: 0.8em 2em;
}

/* ハンバーガーメニュー */
@media screen and (min-width: 768px) {
  .hamburger {
    display: none;
  }
}
.hamburger span {
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: relative;
  transition: ease 0.4s;
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 8px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}

/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
}

.mv {
  background-color: #010101;
  width: 100%;
  padding-block: 3vw 6vw;
  position: relative;
  margin-bottom: 3%;
}
.mv .wrap {
  width: 62.5%;
  margin: auto;
  position: relative;
}
.mv .wrap p {
  font-size: 2.6041666667vw;
  font-weight: 500;
  line-height: 1.7;
}
.mv .wrap .banner {
  width: 36.4583333333vw;
  margin-top: 4%;
}
.mv .wrap .img {
  position: absolute;
  width: 34.5833333333vw;
  bottom: -6vw;
  right: -12%;
}

.fitting_system .wrap {
  width: 62.5%;
  margin: auto;
  padding-block: 5.2vw;
  border-top: 1px solid #fff;
}
.fitting_system .wrap h2 {
  font-size: 2.5vw;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.08em;
  line-height: 1;
}
.fitting_system .wrap h2 small {
  font-size: 0.8em;
}
.fitting_system .wrap .pfs_list {
  width: 100%;
  margin: 3% auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 5.2vw;
  border-bottom: 1px solid #fff;
}
.fitting_system .wrap .pfs_list .pfs {
  display: flex;
  flex-direction: column;
  width: 48.5%;
}
.fitting_system .wrap .pfs_list .pfs .text {
  flex: 1;
  padding: 8%;
  background-color: rgba(255, 255, 255, 0.15);
}
.fitting_system .wrap .pfs_list .pfs .text h3 {
  font-size: 1.7708333333vw;
  font-weight: 700;
  color: #00a2a7;
  text-align: center;
  line-height: 1;
  letter-spacing: 0;
}
.fitting_system .wrap .pfs_list .pfs .text h3 small {
  font-size: 0.5em;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.06em;
}
.fitting_system .wrap .pfs_list .pfs .text p {
  font-size: 0.8333333333vw;
  text-align: justify;
  margin-block: 2em;
}
.fitting_system .wrap .pfs_list .pfs .text ul li {
  font-size: 1.1458333333vw;
  font-weight: 500;
}
.fitting_system .wrap .area_pfs {
  padding-block: 5.2vw;
}
.fitting_system .wrap .area_pfs .list {
  display: flex;
  justify-content: space-between;
}
.fitting_system .wrap .area_pfs .list .img {
  width: 25vw;
}
.fitting_system .wrap .area_pfs .list .text {
  width: 34.375vw;
}
.fitting_system .wrap .area_pfs .list .text h3 {
  font-size: 2.0833333333vw;
  font-weight: 700;
  color: #00a2a7;
  line-height: 1;
  letter-spacing: 0;
}
.fitting_system .wrap .area_pfs .list .text p {
  font-size: 0.8333333333vw;
  margin-top: 0.8em;
}
.fitting_system .wrap .area_pfs .list .text .text_list {
  display: flex;
  flex-direction: column;
  gap: 1em 0;
  margin-top: 2em;
}
.fitting_system .wrap .area_pfs .list .text .text_list dl dt {
  font-size: 1.1458333333vw;
  font-weight: 700;
  color: #00a2a7;
  line-height: 1.5;
}
.fitting_system .wrap .area_pfs .list .text .text_list dl dd {
  font-size: 0.8333333333vw;
}
.fitting_system .wrap .area_pfs .list2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2%;
}
.fitting_system .wrap .area_pfs .list2 .text h3 {
  font-size: 1.7708333333vw;
  font-weight: 500;
  line-height: 1.6;
}
.fitting_system .wrap .area_pfs .list2 .text p {
  font-size: 0.8333333333vw;
  width: 29.53125vw;
  margin-top: 1em;
}
.fitting_system .wrap .area_pfs .list2 .img {
  width: 29.9479166667vw;
}
.fitting_system .wrap .area_pfs .pfs4 {
  width: 32.8125vw;
  margin: 1% auto 0;
}
.fitting_system .wrap .area_pfs .pfs_box {
  border: 1px solid #fff;
  padding: 6% 5% 5%;
  margin-top: 5.2vw;
}
.fitting_system .wrap .area_pfs .pfs_box h3 {
  font-size: 2.2395833333vw;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}
.fitting_system .wrap .area_pfs .pfs_box h3 span {
  font-size: 0.4em;
  font-weight: 400;
}
.fitting_system .wrap .area_pfs .pfs_box ul {
  margin-top: 4%;
}
.fitting_system .wrap .area_pfs .pfs_box ul .slick-list {
  margin: 0 -0.8vw;
}
.fitting_system .wrap .area_pfs .pfs_box ul .slick-slide {
  margin: 0 0.8vw;
}
.fitting_system .wrap .area_pfs .pfs_box ul li {
  display: flex;
  flex-direction: column;
}
.fitting_system .wrap .area_pfs .pfs_box ul li .text {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding-block: 3% 7%;
  background-color: rgba(255, 255, 255, 0.15);
}
.fitting_system .wrap .area_pfs .pfs_box ul li .text h4 {
  font-size: 1.6145833333vw;
  font-weight: 500;
}
.fitting_system .wrap .area_pfs .pfs_box ul li .text p {
  font-size: 0.9375vw;
  line-height: 1.4;
}
.fitting_system .wrap .area_pfs .movie {
  padding-block: 5.2vw 0;
}
.fitting_system .wrap .area_pfs .movie h2 {
  font-size: 2.5vw;
  font-weight: 700;
  letter-spacing: 0;
}
.fitting_system .wrap .area_pfs .movie p {
  font-size: 1.0416666667vw;
  text-align: center;
  margin-top: 0.8em;
}
.fitting_system .wrap .area_pfs .movie video {
  display: block;
  width: 52.0833333333vw;
  margin: 3% auto 0;
}
.fitting_system .wrap .area_3dpfs {
  padding-block: 5.2vw;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.fitting_system .wrap .area_3dpfs .list {
  display: flex;
  justify-content: space-between;
}
.fitting_system .wrap .area_3dpfs .list .img {
  width: 25vw;
}
.fitting_system .wrap .area_3dpfs .list .text {
  width: 34.375vw;
}
.fitting_system .wrap .area_3dpfs .list .text h3 {
  font-size: 2.0833333333vw;
  font-weight: 700;
  color: #00a2a7;
  line-height: 1;
}
.fitting_system .wrap .area_3dpfs .list .text p {
  font-size: 0.8333333333vw;
  margin-top: 0.8em;
}
.fitting_system .wrap .area_3dpfs .list .text .text_list {
  display: flex;
  flex-direction: column;
  gap: 1em 0;
  margin-top: 2em;
}
.fitting_system .wrap .area_3dpfs .list .text .text_list dl dt {
  font-size: 1.1458333333vw;
  font-weight: 700;
  color: #00a2a7;
  line-height: 1.5;
}
.fitting_system .wrap .area_3dpfs .list .text .text_list dl dd {
  font-size: 0.8333333333vw;
}
.fitting_system .wrap .area_3dpfs .scan {
  padding-block: 5%;
}
.fitting_system .wrap .area_3dpfs .scan h3 {
  font-size: 2.0833333333vw;
  font-weight: 500;
  text-align: center;
}
.fitting_system .wrap .area_3dpfs .scan ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 1.4em;
}
.fitting_system .wrap .area_3dpfs .scan ul li {
  width: 15vw;
}
.fitting_system .wrap .area_3dpfs .jikki h3 {
  font-size: 2.0833333333vw;
  font-weight: 500;
  text-align: center;
}
.fitting_system .wrap .area_3dpfs .jikki ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 1.4em;
}
.fitting_system .wrap .area_3dpfs .jikki ul li {
  width: 30.2083333333vw;
}

.flow h2 {
  font-size: 2.5vw;
  font-weight: 500;
  text-align: center;
  line-height: 1;
}
.flow h2 small {
  font-size: 0.4em;
  display: block;
  margin-top: 1em;
  font-weight: 400;
}
.flow ul {
  display: flex;
  justify-content: space-between;
  width: 62.5%;
  margin: 3% auto 0;
}
.flow ul li {
  width: 13.75vw;
  border: 1px solid #fff;
  position: relative;
  padding: 5% 0 3%;
}
.flow ul li:not(:last-child):after {
  position: absolute;
  content: "";
  background-image: url(../img/arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 0.78125vw;
  aspect-ratio: 15/25;
  right: -12%;
  top: 50%;
  transform: translateY(-50%);
}
.flow ul li .num {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5.5208333333vw;
  background-color: #010101;
  font-size: 2.6041666667vw;
  font-weight: 600;
  border-radius: 50%;
  aspect-ratio: 1/1;
  top: -14%;
  left: 50%;
  transform: translateX(-50%);
}
.flow ul li .ill {
  width: 7.9166666667vw;
  margin: auto;
}
.flow ul li .text {
  text-align: center;
}
.flow ul li .text dt {
  font-size: 1.3541666667vw;
  color: #00a2a7;
  margin-top: 1em;
}
.flow ul li .text dd {
  font-size: 0.7291666667vw;
  line-height: 1.6;
  margin-top: 1em;
}

.shop_list {
  background-color: rgba(0, 162, 167, 0.7);
  text-align: center;
  padding-block: 3%;
  width: 62.5%;
  margin: 5.2vw auto;
}
.shop_list h2 {
  font-size: 2.5vw;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
}
.shop_list p {
  font-size: 1.0416666667vw;
  padding-block: 1.2em 1.8em;
}
.shop_list a {
  display: block;
  width: 24%;
  margin: auto;
  border: 1px solid #fff;
  border-radius: 999px;
  padding-block: 0.4em;
  font-size: 1.0416666667vw;
}

.myshoei {
  width: 62.5%;
  margin: auto;
  border: 1px solid #fff;
  padding: 3%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.myshoei .con_left h2 {
  width: 10.4166666667vw;
}
.myshoei .con_left p {
  font-size: 0.8333333333vw;
  width: 23.9583333333vw;
  margin-block: 3% 5%;
}
.myshoei .con_left .banner {
  width: 26.4583333333vw;
}
.myshoei .con_right {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 27.6041666667vw;
  gap: 0 3%;
}
.myshoei .con_right .img {
  width: 14.0625vw;
}
.myshoei .con_right .box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.myshoei .con_right .box .youtube {
  width: 11.1458333333vw;
}
.myshoei .con_right .box .btn_list {
  text-align: center;
  width: 11.7708333333vw;
  font-size: 0.8333333333vw;
  font-weight: 500;
}
.myshoei .con_right .box .btn_list dt {
  font-weight: 500;
  margin-bottom: 0.6em;
}
.myshoei .con_right .box .btn_list dd {
  display: flex;
  flex-direction: column;
  gap: 0.8vw 0;
}
.myshoei .con_right .box .btn_list dd a {
  display: block;
  border: 1px solid #fff;
  padding-block: 1em;
}

.epilogue {
  width: 62.5%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 2%;
  margin-top: 5.2vw;
}
.epilogue .img {
  width: 22.9166666667vw;
}
.epilogue .ttl {
  font-size: 2.6041666667vw;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.06em;
}
.epilogue .text {
  font-size: 1.0416666667vw;
  text-align: center;
  margin-top: 1em;
}

footer {
  background-color: #010101;
  padding-block: 4%;
}
footer .logo {
  width: 10.8333333333vw;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: inline-block;
  }
  body {
    background-image: url(../img/repeat_back.png);
    background-size: 70%;
  }
  /* ヘッダー */
  .header__inner {
    width: 100%;
    margin: auto;
    padding: 3.5% 6%;
    justify-content: space-between;
    position: relative;
  }
  .logo {
    width: 22.1333333333vw;
  }
  .header__nav {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    transform: translateX(100%);
    background-color: #333;
    transition: ease 0.4s;
  }
  .nav-items {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10vw 0;
    padding: 16% 5% 13%;
  }
  .nav-items__item a {
    width: 100%;
    display: block;
    text-align: center;
    font-size: 3.7333333333vw;
  }
  .nav-items__item a.shop {
    display: block;
    border: 1px solid #fff;
    border-radius: 999px;
    padding: 0.6em 2em;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
  /* ハンバーガーメニュー */
  .header__hamburger {
    width: 30px;
    height: 100%;
  }
  .hamburger {
    background-color: transparent;
    border-color: transparent;
    z-index: 9999;
  }
  .hamburger span {
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: relative;
    transition: ease 0.4s;
    display: block;
  }
  .hamburger span:nth-child(1) {
    top: 0;
  }
  .hamburger span:nth-child(2) {
    margin: 8px 0;
  }
  .hamburger span:nth-child(3) {
    top: 0;
  }
  /* ハンバーガーメニュークリック後のスタイル */
  .header__nav.active {
    transform: translateX(0);
  }
  .hamburger.active span:nth-child(1) {
    top: 5px;
    transform: rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    top: -13px;
    transform: rotate(-45deg);
  }
  .mv {
    padding-block: 5vw 10vw;
    margin-bottom: 6vw;
    overflow: hidden;
  }
  .mv .wrap {
    width: 80%;
  }
  .mv .wrap p {
    font-size: 5.6vw;
  }
  .mv .wrap .banner {
    width: 47.3333333333vw;
    margin-top: 11%;
  }
  .mv .wrap .img {
    width: 47.2vw;
    bottom: -10vw;
    right: -18%;
  }
  .fitting_system .wrap {
    width: 86%;
    padding-block: 12vw;
  }
  .fitting_system .wrap h2 {
    font-size: 5.6vw;
  }
  .fitting_system .wrap .pfs_list {
    margin: 6% auto 0;
    padding-bottom: 12vw;
    gap: 4vw 0;
  }
  .fitting_system .wrap .pfs_list .pfs {
    width: 100%;
  }
  .fitting_system .wrap .pfs_list .pfs .text {
    padding: 10% 7% 9%;
  }
  .fitting_system .wrap .pfs_list .pfs .text h3 {
    font-size: 5.3333333333vw;
  }
  .fitting_system .wrap .pfs_list .pfs .text p {
    font-size: 3.4666666667vw;
    margin-block: 1.4em;
  }
  .fitting_system .wrap .pfs_list .pfs .text ul li {
    font-size: 4vw;
  }
  .fitting_system .wrap .area_pfs {
    padding-block: 12vw;
  }
  .fitting_system .wrap .area_pfs .list {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
  .fitting_system .wrap .area_pfs .list .img {
    width: 100%;
  }
  .fitting_system .wrap .area_pfs .list .text {
    width: 100%;
  }
  .fitting_system .wrap .area_pfs .list .text h3 {
    font-size: 5.8666666667vw;
    margin-top: 1.3em;
    letter-spacing: 0;
  }
  .fitting_system .wrap .area_pfs .list .text p {
    font-size: 3.4666666667vw;
  }
  .fitting_system .wrap .area_pfs .list .text .text_list {
    gap: 1em 0;
    margin-top: 2em;
  }
  .fitting_system .wrap .area_pfs .list .text .text_list dl dt {
    font-size: 4.2666666667vw;
  }
  .fitting_system .wrap .area_pfs .list .text .text_list dl dd {
    font-size: 3.4666666667vw;
  }
  .fitting_system .wrap .area_pfs .list2 {
    flex-direction: column;
    margin-top: 11%;
  }
  .fitting_system .wrap .area_pfs .list2 .text h3 {
    font-size: 5.3333333333vw;
  }
  .fitting_system .wrap .area_pfs .list2 .text p {
    font-size: 3.4666666667vw;
    width: 100%;
    margin-top: 0.8em;
  }
  .fitting_system .wrap .area_pfs .list2 .img {
    width: 80%;
    margin-top: 6%;
  }
  .fitting_system .wrap .area_pfs .pfs4 {
    width: 74%;
    margin: 4% auto 0;
  }
  .fitting_system .wrap .area_pfs .pfs_box {
    padding: 9% 5%;
    margin-top: 12vw;
  }
  .fitting_system .wrap .area_pfs .pfs_box h3 {
    font-size: 4.5333333333vw;
  }
  .fitting_system .wrap .area_pfs .pfs_box h3 span {
    font-size: 0.8em;
    font-weight: 400;
    display: block;
    margin-top: 1em;
    line-height: 1.6;
  }
  .fitting_system .wrap .area_pfs .pfs_box ul {
    margin-top: 8%;
  }
  .fitting_system .wrap .area_pfs .pfs_box ul .slick-list {
    margin: 0 -1.2vw;
  }
  .fitting_system .wrap .area_pfs .pfs_box ul .slick-slide {
    margin: 0 1.2vw;
  }
  .fitting_system .wrap .area_pfs .pfs_box ul li .text {
    padding-block: 7% 9%;
  }
  .fitting_system .wrap .area_pfs .pfs_box ul li .text h4 {
    font-size: 3.7333333333vw;
  }
  .fitting_system .wrap .area_pfs .pfs_box ul li .text p {
    font-size: 2.1333333333vw;
  }
  .fitting_system .wrap .area_pfs .movie {
    padding-block: 12vw 0;
  }
  .fitting_system .wrap .area_pfs .movie h2 {
    font-size: 6.4vw;
  }
  .fitting_system .wrap .area_pfs .movie p {
    font-size: 3.4666666667vw;
    margin-top: 0.8em;
  }
  .fitting_system .wrap .area_pfs .movie video {
    display: block;
    width: 100%;
    margin: 6% auto 0;
  }
  .fitting_system .wrap .area_3dpfs {
    padding-block: 12vw;
  }
  .fitting_system .wrap .area_3dpfs .list {
    flex-direction: column;
  }
  .fitting_system .wrap .area_3dpfs .list .img {
    width: 100%;
  }
  .fitting_system .wrap .area_3dpfs .list .text {
    width: 100%;
  }
  .fitting_system .wrap .area_3dpfs .list .text h3 {
    font-size: 5.8666666667vw;
    margin-top: 1.3em;
    letter-spacing: 0;
  }
  .fitting_system .wrap .area_3dpfs .list .text p {
    font-size: 3.4666666667vw;
    margin-top: 0.8em;
  }
  .fitting_system .wrap .area_3dpfs .list .text .text_list dl dt {
    font-size: 4.2666666667vw;
  }
  .fitting_system .wrap .area_3dpfs .list .text .text_list dl dd {
    font-size: 3.4666666667vw;
  }
  .fitting_system .wrap .area_3dpfs .scan {
    padding-block: 8%;
  }
  .fitting_system .wrap .area_3dpfs .scan h3 {
    font-size: 4.8vw;
  }
  .fitting_system .wrap .area_3dpfs .scan ul {
    gap: 2.5vw 0;
    margin-top: 0.4em;
  }
  .fitting_system .wrap .area_3dpfs .scan ul li {
    width: 48.5%;
  }
  .fitting_system .wrap .area_3dpfs .jikki h3 {
    font-size: 4.8vw;
  }
  .fitting_system .wrap .area_3dpfs .jikki ul {
    margin-top: 0.4em;
  }
  .fitting_system .wrap .area_3dpfs .jikki ul li {
    width: 48.5%;
  }
  .flow h2 {
    font-size: 6.4vw;
  }
  .flow h2 small {
    font-size: 0.54em;
  }
  .flow ul {
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 86%;
    margin: 8% auto 0;
    gap: 8vw 7%;
  }
  .flow ul li {
    width: 45%;
    padding: 9% 0 8%;
  }
  .flow ul li:not(:last-child):after {
    width: 2.1333333333vw;
    right: -11%;
  }
  .flow ul li .num {
    width: 14.9333333333vw;
    font-size: 6.9333333333vw;
    top: -12%;
    left: 50%;
    transform: translateX(-50%);
  }
  .flow ul li .ill {
    width: 21.3333333333vw;
  }
  .flow ul li .text dt {
    font-size: 3.7333333333vw;
    margin-top: 1em;
  }
  .flow ul li .text dd {
    font-size: 3.2vw;
    margin-top: 0.2em;
  }
  .shop_list {
    padding-block: 13% 11%;
    width: 100%;
    margin: 12vw auto;
  }
  .shop_list h2 {
    font-size: 6.4vw;
  }
  .shop_list p {
    font-size: 3.7333333333vw;
    padding-block: 1.2em 1.8em;
  }
  .shop_list a {
    width: 80%;
    padding-block: 0.4em;
    font-size: 5.3333333333vw;
  }
  .myshoei {
    width: 86%;
    padding: 7%;
    gap: 6vw 0;
  }
  .myshoei .con_left h2 {
    width: 60%;
    margin: auto;
  }
  .myshoei .con_left p {
    font-size: 3.2vw;
    width: 100%;
    margin-block: 5%;
  }
  .myshoei .con_left .banner {
    width: 100%;
  }
  .myshoei .con_right {
    width: 100%;
    gap: 0 3%;
  }
  .myshoei .con_right .img {
    width: 38.9333333333vw;
  }
  .myshoei .con_right .box {
    justify-content: center;
  }
  .myshoei .con_right .box .youtube {
    width: 27.8666666667vw;
    margin-bottom: 1em;
  }
  .myshoei .con_right .box .btn_list {
    width: 29.6vw;
    font-size: 2.1333333333vw;
  }
  .myshoei .con_right .box .btn_list dt {
    font-weight: 500;
    margin-bottom: 0.6em;
  }
  .myshoei .con_right .box .btn_list dd {
    display: flex;
    flex-direction: column;
    gap: 2vw 0;
  }
  .myshoei .con_right .box .btn_list dd a {
    padding-block: 1.4em;
  }
  .epilogue {
    width: 86%;
    flex-direction: column;
    gap: 4vw 0;
    margin-block: 12vw;
  }
  .epilogue .img {
    width: 58.6666666667vw;
  }
  .epilogue .ttl {
    font-size: 5.8666666667vw;
  }
  .epilogue .text {
    font-size: 3.4666666667vw;
    margin-top: 0.8em;
  }
  footer {
    padding-block: 14%;
  }
  footer .logo {
    width: 30%;
  }
}/*# sourceMappingURL=style.css.map */