/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

img,
video {
  width: 100%;
  height: auto;
  display: block;
}

sup {
  vertical-align: super;
  font-size: 0.75em;
}

input,
select,
textarea,
button {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  outline: none;
  color: inherit;
  font-family: inherit;
}

button {
  display: block;
  cursor: pointer;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
@media screen and (min-width: 1200px) {
  html {
    scroll-padding-top: 120px;
  }
}

body {
  color: #333333;
  font-family: "Zen Kaku Gothic New", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.05em;
  line-height: 1.75;
  background-color: #f8f8f8;
  min-height: 100vh;
  overflow-x: clip;
}

.section_inner {
  max-width: 530px;
  width: 89.3333333333%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .section_inner {
    max-width: 1200px;
  }
}

:root .only-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  :root .only-sp {
    display: none;
  }
  :root .only-pc {
    display: block;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.is-fadeup {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
}
.is-fadeup.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.siteHeader {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.05);
}
.siteHeader--under {
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media screen and (min-width: 1200px) {
  .siteHeader--under .siteHeader_inner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.siteHeader_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 50px;
  padding-left: clamp(8px, 2.55px + 1.45vw, 20px);
  padding-bottom: 1px;
}
@media screen and (min-width: 1200px) {
  .siteHeader_inner {
    height: 70px;
    padding-inline: 20px;
  }
}

.siteHeader_logo {
  display: block;
  height: 34px;
}
@media screen and (min-width: 1200px) {
  .siteHeader_logo {
    height: 34px;
  }
  .siteHeader:not(.siteHeader--under) .siteHeader_logo {
    height: 50px;
  }
}
.siteHeader_logo img {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.siteHeader_nav {
  display: none;
  height: 100%;
}
@media screen and (min-width: 1200px) {
  .siteHeader_nav {
    display: block;
  }
}

.siteHeader_navList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  gap: 24px;
}

.siteHeader_navItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.siteHeader_navItem + .siteHeader_navItem::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1px;
  height: 32px;
  background-color: #555555;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.siteHeader_navItem a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding-inline: 0;
  font-size: min(3.7333333333vw, 18px);
  font-weight: 700;
  color: #333;
  white-space: nowrap;
  line-height: 1.75;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .siteHeader_navItem a:hover {
    opacity: 0.7;
  }
}

.siteHeader_catNav {
  display: none;
}
@media screen and (min-width: 1200px) {
  .siteHeader_catNav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-top: 1px solid #ccc;
  }
}
@media screen and (min-width: 1200px) {
  .siteHeader_catNav--pad {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.siteHeader_catItem {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  padding: 15px 2%;
  border-bottom: 2px solid transparent;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
@media (hover: hover) {
  .siteHeader_catItem:hover {
    background-color: #f5f5f5;
  }
}
.siteHeader_catItem.is-active {
  background-color: #fff7cd;
  border-bottom-color: var(--cat-color);
}

.siteHeader_catItem_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 51px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.siteHeader_catItem_img img {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.siteHeader_catItem_label {
  font-size: min(3.2vw, 14px);
  font-weight: 500;
  color: #333;
  letter-spacing: 0.05em;
  text-align: center;
  white-space: nowrap;
}
.siteHeader_catItem_label span {
  display: block;
}

.siteHeader_menuBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  aspect-ratio: 1/1;
  background-color: #092f8b;
  padding-top: 4px;
}
@media screen and (min-width: 1200px) {
  .siteHeader_menuBtn {
    display: none;
  }
}

.siteHeader_menuBtn_lines {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.siteHeader_menuBtn_lines span {
  display: block;
  width: 28px;
  height: 1px;
  background-color: #fff;
}

.siteHeader_menuBtn_text {
  margin-top: 3px;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.75;
}

.spMenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 200;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
.spMenu.is-open {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 1200px) {
  .spMenu {
    display: none;
  }
}

.spMenu_closeBtn {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  aspect-ratio: 1/1;
  background-color: #092f8b;
}

.spMenu_closeBtn_icon {
  display: block;
  width: 28px;
  aspect-ratio: 1/1;
  position: relative;
}
.spMenu_closeBtn_icon span {
  display: block;
  width: 28px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
}
.spMenu_closeBtn_icon span:first-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.spMenu_closeBtn_icon span:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.spMenu_closeBtn_text {
  margin-top: -1px;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.75;
}

.spMenu_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-inline: auto;
  padding: min(10.6666666667vw, 40px) 5.3333333333%;
  gap: min(10.6666666667vw, 40px);
}

.spMenu_logo {
  width: 110px;
  aspect-ratio: 659/203;
}
.spMenu_logo img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.spMenu_nav {
  width: 100%;
}

.spMenu_navList {
  border-top: 1px solid #ccc;
}

.spMenu_navItem {
  border-bottom: 1px solid #ccc;
}
.spMenu_navItem a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 700;
  color: #333;
  line-height: 1.8;
  letter-spacing: 0.05em;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
@media (hover: hover) {
  .spMenu_navItem a:hover {
    background-color: #f5f5f5;
  }
}
.spMenu_navItem a::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-color: #333;
  -webkit-mask-image: url("../../assets/images/icons/icon_arrow.svg");
          mask-image: url("../../assets/images/icons/icon_arrow.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.spMenu_catHeading {
  font-size: min(4.2666666667vw, 24px);
  font-weight: 900;
  color: #092f8b;
  text-align: center;
  margin-top: min(6.4vw, 32px);
}
.spMenu_catHeading:first-child {
  margin-top: 0;
}

.spMenu_catList {
  border-top: 1px solid #ccc;
  margin-top: min(6.4vw, 32px);
}

.spMenu_catItem {
  border-bottom: 1px solid #ccc;
}
.spMenu_catItem a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  padding: 16px 0;
  color: #333;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
@media (hover: hover) {
  .spMenu_catItem a:hover {
    background-color: #f5f5f5;
  }
}
.spMenu_catItem a::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-color: #333;
  -webkit-mask-image: url("../../assets/images/icons/icon_arrow.svg");
          mask-image: url("../../assets/images/icons/icon_arrow.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: auto;
}

.spMenu_catItem_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 60px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.spMenu_catItem_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.spMenu_catItem_label {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

body.is-menuOpen {
  overflow: hidden;
}

.c-title {
  width: min(85.3333333333vw, 530px);
  margin-inline: auto;
  padding: min(4.2666666667vw, 24px) 0;
  background: url("../../assets/images/common/titlel_bg.svg") no-repeat center/contain;
  font-size: min(5.3333333333vw, 30px);
}
@media screen and (min-width: 961px) {
  .c-title {
    font-size: clamp(30px, 9.9px + 2.0921vw, 35px);
  }
}
.c-title {
  font-weight: 900;
  color: #092f8b;
  text-align: center;
}

.underPadHowto .c-title {
  letter-spacing: 0;
}

.c-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: min(2.1333333333vw, 8px);
  background-color: #fff;
  border: 2px solid #333;
  border-radius: 100px;
  padding: min(4.2666666667vw, 24px) min(6.4vw, 64px);
  font-size: min(3.7333333333vw, 16px);
  font-weight: 700;
  letter-spacing: 0;
  text-align: left;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  width: 100%;
  -ms-flex-item-align: center;
      align-self: center;
}
@media screen and (min-width: 768px) {
  .c-link {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}
@media (hover: hover) {
  .c-link:hover {
    background-color: #333;
    color: #fff;
  }
  .c-link:hover .c-link_arrow {
    background-color: #fff;
  }
}

.c-link_arrow {
  display: block;
  width: min(4.2666666667vw, 24px);
  height: min(4.2666666667vw, 24px);
  background-color: #333;
  -webkit-mask-image: url("../../assets/images/icons/icon_arrow.svg");
          mask-image: url("../../assets/images/icons/icon_arrow.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.c-catch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.15em;
}
.c-catch::before, .c-catch::after {
  content: "";
  display: block;
  width: 1.85em;
  height: 2px;
  background-color: #092f8b;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-catch::before {
  -webkit-transform: rotate(52deg);
          transform: rotate(52deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}
.c-catch::after {
  -webkit-transform: rotate(-52deg);
          transform: rotate(-52deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}

.cv {
  max-width: 530px;
  width: 100%;
  margin-inline: auto;
  background-color: #fff3b4;
  border-radius: min(2.6666666667vw, 10px);
  padding: min(6.4vw, 32px) min(5.3333333333vw, 20px);
}
@media screen and (min-width: 768px) {
  .cv {
    max-width: 1200px;
    padding: 40px;
    border-radius: 20px;
  }
}

.cv_title {
  font-size: min(4.2666666667vw, 24px);
  font-weight: 900;
  color: #092f8b;
  text-align: center;
  margin-bottom: min(4.2666666667vw, 16px);
}
@media screen and (min-width: 768px) {
  .cv_title {
    margin-bottom: 40px;
  }
}

.cv_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(4.2666666667vw, 16px);
}
@media screen and (min-width: 768px) {
  .cv_list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 16px;
    max-width: 1024px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 961px) {
  .cv_list {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 24px;
  }
}
@media screen and (min-width: 768px) {
  .cv_list li {
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 325px;
  }
}

.cv_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: min(18.6666666667vw, 70px);
  padding: min(3.2vw, 12px) min(5.3333333333vw, 20px);
  background-color: #fff;
  border-radius: 100px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .cv_btn:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) {
  .cv_btn {
    height: 80px;
  }
}

.cv_btnImg {
  display: block;
  max-height: 52px;
  max-width: 135px;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.cv--contentW {
  max-width: 530px;
  width: 89.3333333333%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .cv--contentW {
    max-width: 1024px;
  }
}

.footerCv {
  width: 89.3333333333%;
  margin: min(12.8vw, 120px) auto;
}

.cvSticky {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 90;
}
@media screen and (min-width: 768px) {
  .cvSticky {
    top: 50%;
    bottom: auto;
    left: auto;
    right: 0;
    width: auto;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.cvSticky_toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  width: 100%;
  height: 44px;
  background-color: #f45d71;
}

.cvSticky_toggle_text {
  font-size: min(4.2666666667vw, 20px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

.cvSticky_toggle_arrow {
  display: block;
  width: 24px;
  height: 24px;
  background-color: #fff;
  -webkit-mask-image: url("../../assets/images/icons/icon_arrow.svg");
          mask-image: url("../../assets/images/icons/icon_arrow.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.cvSticky.is-open .cvSticky_toggle_arrow {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.cvSticky_body {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.4s ease, padding 0.4s ease;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.cvSticky.is-open .cvSticky_body {
  max-height: 300px;
}
@media screen and (min-width: 768px) {
  .cvSticky_body {
    max-height: none;
    overflow: visible;
  }
}
.cvSticky_body .cv {
  border-radius: 0;
  padding: min(6.4vw, 24px) 0;
}
@media screen and (min-width: 768px) {
  .cvSticky_body .cv {
    border-radius: 20px 0 0 20px;
    padding: 24px;
  }
}
.cvSticky_body .cv_title {
  display: none;
}
@media screen and (min-width: 768px) {
  .cvSticky_body .cv_title {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: 12px;
  }
}
.cvSticky_body .cv_list {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px 0;
  width: 89.3333333333%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .cvSticky_body .cv_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 8px;
    width: 190px;
    margin-inline: 0;
  }
}
.cvSticky_body .cv_list li {
  width: calc(50% - 7.5px);
}
@media screen and (min-width: 768px) {
  .cvSticky_body .cv_list li {
    width: 100%;
  }
}
.cvSticky_body .cv_btn {
  height: 60px;
}
@media screen and (min-width: 768px) {
  .cvSticky_body .cv_btn {
    height: 50px;
    padding: 8px;
  }
}
.cvSticky_body [data-cv-key=amazon] .cv_btnImg {
  max-height: 38px;
  max-width: 100px;
}
.cvSticky_body [data-cv-key=rakuten] .cv_btnImg {
  max-width: 90px;
  aspect-ratio: 82/18;
}
.cvSticky_body [data-cv-key=shopSearch] .cv_btnImg {
  max-height: 38px;
  max-width: 100px;
}

.fv {
  position: relative;
  padding-top: min(10.6666666667vw, 60px);
}
.fv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../../assets/images/top/fv_bg01_sp.png") no-repeat center top/cover;
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(85%, #000), to(transparent));
  -webkit-mask-image: linear-gradient(to bottom, #000 85%, transparent 100%);
          mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(85%, #000), to(transparent));
          mask-image: linear-gradient(to bottom, #000 85%, transparent 100%);
}
@media screen and (min-width: 768px) {
  .fv::before {
    background-image: url("../../assets/images/top/fv_bg01.png");
  }
}
.fv .img {
  position: relative;
  display: block;
}
@media screen and (min-width: 768px) {
  .fv .img {
    max-width: 1250px;
    margin: 0 auto;
  }
}

.intro {
  margin: min(12.8vw, 120px) auto;
}
.intro .section_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(10.6666666667vw, 64px);
}
.intro .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .intro .title {
    gap: 8px;
  }
}
.intro .lead {
  font-size: min(5.3333333333vw, 30px);
}
@media screen and (min-width: 961px) {
  .intro .lead {
    font-size: clamp(30px, 9.9px + 2.0921vw, 35px);
  }
}
.intro .lead {
  font-weight: 900;
  color: #092f8b;
  line-height: 1.75;
}
.intro .heading {
  font-size: min(7.4666666667vw, 48px);
  font-weight: 900;
  color: #f45d71;
  line-height: 1.5;
}
.intro .text {
  font-size: min(4.2666666667vw, 20px);
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .intro .text {
    text-align: center;
  }
}
.intro .text p + p {
  margin-top: 1.8em;
}
.intro .intro_accent {
  font-size: min(4.2666666667vw, 24px);
  font-weight: 900;
  color: #092f8b;
}
.intro .img {
  width: 100%;
  max-width: 1024px;
  border-radius: min(2.6666666667vw, 20px);
  overflow: hidden;
}
.intro .img img {
  width: 100%;
  height: auto;
  display: block;
}

.topCv {
  position: relative;
  margin-bottom: min(10.6666666667vw, 100px);
  padding-top: min(21.3333333333vw, 100px);
}
.topCv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../../assets/images/top/fv_bg01_sp.png") no-repeat center top/cover;
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(60%, #000), color-stop(85%, transparent));
  -webkit-mask-image: linear-gradient(to bottom, #000 60%, transparent 85%);
          mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(60%, #000), color-stop(85%, transparent));
          mask-image: linear-gradient(to bottom, #000 60%, transparent 85%);
}
@media screen and (min-width: 768px) {
  .topCv::before {
    background-image: url("../../assets/images/top/topCv_bg01.png");
    -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(55%, #000), color-stop(80%, transparent));
    -webkit-mask-image: linear-gradient(to bottom, #000 55%, transparent 80%);
            mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(55%, #000), color-stop(80%, transparent));
            mask-image: linear-gradient(to bottom, #000 55%, transparent 80%);
  }
}
.topCv .visual {
  position: relative;
  width: 100%;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .topCv .visual {
    max-width: 1100px;
    margin: 0 auto;
  }
}
.topCv .section_inner {
  position: relative;
  padding: min(6.4vw, 32px) 0 0;
}

.worries {
  position: relative;
  overflow-x: clip;
  margin: min(10.6666666667vw, 100px) auto;
  padding: min(18.6666666667vw, 140px) 20px min(16vw, 120px);
  background: url("../../assets/images/top/worries_bg_sp.jpg") no-repeat center/cover;
}
@media screen and (min-width: 768px) {
  .worries {
    background-image: url("../../assets/images/top/worries_bg.jpg");
  }
}
.worries::before, .worries::after {
  content: "";
  position: absolute;
  left: -1vw;
  width: 102vw;
  aspect-ratio: 375/30;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .worries::before, .worries::after {
    aspect-ratio: 1440/70;
  }
}
.worries::before {
  top: -1px;
  background: url("../../assets/images/top/worries_bgHead01_sp.svg") no-repeat center/100% 100%;
}
@media screen and (min-width: 768px) {
  .worries::before {
    background-image: url("../../assets/images/top/worries_bgHead01.svg");
  }
}
.worries::after {
  bottom: -1px;
  background: url("../../assets/images/top/worries_bgBottom01_sp.svg") no-repeat center/100% 100%;
}
@media screen and (min-width: 768px) {
  .worries::after {
    background-image: url("../../assets/images/top/worries_bgBottom01.svg");
  }
}
.worries .title {
  position: relative;
  z-index: 2;
  font-size: min(5.3333333333vw, 30px);
}
@media screen and (min-width: 961px) {
  .worries .title {
    font-size: clamp(30px, 9.9px + 2.0921vw, 35px);
  }
}
.worries .title {
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin-bottom: min(6.4vw, 48px);
}
.worries .cards {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .worries .cards {
    max-width: 960px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 24px;
  }
}
.worries .card {
  width: 46%;
}
@media screen and (min-width: 768px) {
  .worries .card {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 296px;
  }
}
.worries .card--01 {
  width: 55%;
  margin: 0 auto min(2.6666666667vw, 10px);
}
@media screen and (min-width: 768px) {
  .worries .card--01 {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 296px;
    margin: 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media screen and (min-width: 768px) {
  .worries .card--02 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 120px;
  }
}
@media screen and (min-width: 768px) {
  .worries .card--03 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 120px;
  }
}

.feature01 {
  margin: min(10.6666666667vw, 100px) auto min(12.8vw, 120px);
}
.feature01 .section_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(10.6666666667vw, 80px);
}
.feature01 .cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(6.4vw, 32px);
}
@media screen and (min-width: 768px) {
  .feature01 .cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    row-gap: 40px;
  }
}
.feature01 .card {
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(6.4vw, 24px);
  padding: min(6.4vw, 40px);
  background: #fff;
  border-radius: min(5.3333333333vw, 10px);
}
@media screen and (min-width: 768px) {
  .feature01 .card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: calc(50% - 20px);
  }
  .feature01 .card:first-child {
    gap: 0;
  }
}
.feature01 .card .card_txts {
  display: contents;
}
@media screen and (min-width: 768px) {
  .feature01 .card .card_txts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    -webkit-box-flex: 7;
        -ms-flex: 7;
            flex: 7;
  }
}
.feature01 .card .card_img {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  width: min(34.6666666667vw, 130px);
}
@media screen and (min-width: 768px) {
  .feature01 .card .card_img {
    -webkit-box-flex: 5;
        -ms-flex: 5;
            flex: 5;
    width: auto;
  }
}
.feature01 .card .card_img figcaption {
  position: absolute;
  right: 0;
  bottom: max(-5.3333333333vw, -12px);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: min(2.6666666667vw, 12px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.feature01 .card .heading {
  grid-column: 1;
  grid-row: 1;
  font-size: min(5.3333333333vw, 30px);
}
@media screen and (min-width: 961px) {
  .feature01 .card .heading {
    font-size: clamp(30px, 9.9px + 2.0921vw, 35px);
  }
}
.feature01 .card .heading {
  font-weight: 900;
  color: #f45d71;
  line-height: 1.75;
}
.feature01 .card .desc {
  grid-column: 1/-1;
  font-size: min(3.7333333333vw, 16px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: center;
  color: #333;
}
@media screen and (min-width: 768px) {
  .feature01 .card .desc {
    text-align: left;
  }
}

.and {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: max(-6.6666666667vw, -35px);
  position: relative;
  z-index: 1;
}

.and_text {
  font-size: min(7.4666666667vw, 48px);
  font-weight: 900;
  color: #092f8b;
  line-height: 1.5;
}

.and_arrow {
  width: min(80vw, 500px);
}

.feature02 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: min(12.8vw, 120px);
  padding-top: min(16vw, 100px);
}
.feature02::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  aspect-ratio: 375/667;
  background: url("../../assets/images/top/feature02_bg01_sp.png") no-repeat center top/cover;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .feature02::before {
    aspect-ratio: 1920/600;
    background-image: url("../../assets/images/top/feature02_bg01.png");
  }
}
.feature02 > * {
  position: relative;
  z-index: 1;
}
.feature02 .hero {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .feature02 .hero {
    padding: 0 20px;
  }
}
.feature02 .hero picture {
  display: block;
}
@media screen and (min-width: 768px) {
  .feature02 .hero picture {
    max-width: 930px;
    margin: 0 auto;
  }
}
.feature02 .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(6.4vw, 32px);
  max-width: 530px;
  margin: -21.3333333333vw auto 0;
}
@media screen and (min-width: 768px) {
  .feature02 .items {
    margin: min(6.4vw, 20px) auto 0;
  }
}
@media screen and (min-width: 960px) {
  .feature02 .items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 40px;
    max-width: inherit;
  }
}
.feature02 .card {
  background: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(4.2666666667vw, 32px);
  padding: min(6.4vw, 40px);
}
@media screen and (min-width: 960px) {
  .feature02 .card {
    width: calc(50% - 20px);
  }
}
.feature02 .card_title {
  font-size: min(5.3333333333vw, 30px);
}
@media screen and (min-width: 961px) {
  .feature02 .card_title {
    font-size: clamp(30px, 9.9px + 2.0921vw, 35px);
  }
}
.feature02 .card_title {
  font-weight: 900;
  text-align: center;
  line-height: 1.5;
}
.feature02 .card_title--blue {
  color: #01b1ed;
}
.feature02 .card_title--navy {
  color: #004098;
}
.feature02 .card_line {
  width: 100%;
  border: none;
  border-top: 1px solid #ddd;
  margin: 0;
}
.feature02 .card_product img {
  width: auto;
  height: auto;
  max-height: 180px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .feature02 .card_product img {
    max-height: 250px;
  }
}
.feature02 .card_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  width: 100%;
  padding: min(4.2666666667vw, 16px) min(8.5333333333vw, 48px);
  background-color: #f45d71;
  color: #fff;
  border-radius: 100px;
  font-size: min(4.2666666667vw, 20px);
  font-weight: 700;
  letter-spacing: 0.05em;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .feature02 .card_btn {
    width: auto;
  }
}
@media (hover: hover) {
  .feature02 .card_btn:hover {
    opacity: 0.7;
  }
}
.feature02 .card_btnArrow {
  display: block;
  width: 24px;
  height: 24px;
  background-color: #fff;
  -webkit-mask-image: url("../../assets/images/icons/icon_arrow.svg");
          mask-image: url("../../assets/images/icons/icon_arrow.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.feature02 .note {
  font-size: min(2.6666666667vw, 12px);
  width: 100%;
}

.review {
  padding: min(10.6666666667vw, 80px) 0;
  background: url("../../assets/images/top/review_bg01_sp.png") no-repeat center/cover;
}
@media screen and (min-width: 768px) {
  .review {
    background-image: url("../../assets/images/top/review_bg01.png");
  }
}
.review .c-title {
  margin-bottom: min(10.6666666667vw, 64px);
}
.review .group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(6.4vw, 40px);
}
.review .group + .group {
  margin-top: min(10.6666666667vw, 60px);
}
.review .subtitle {
  font-size: min(4.2666666667vw, 24px);
  font-weight: 900;
  color: #092f8b;
}
.review .splide {
  width: 100%;
  display: grid;
}
.review .splide__arrows,
.review .splide__track {
  grid-row: 1;
  grid-column: 1;
}
.review .splide__arrows {
  z-index: 1;
  pointer-events: none;
  position: relative;
}
.review .splide__arrow {
  background: none;
  opacity: 1;
  width: auto;
  height: auto;
  pointer-events: auto;
  top: 40%;
}
@media screen and (min-width: 768px) {
  .review .splide__arrow {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.review .splide__arrow svg {
  display: none;
}
.review .splide__arrow img {
  width: min(10.6666666667vw, 48px);
  height: auto;
  -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
}
@media (hover: hover) {
  .review .splide__arrow:hover {
    opacity: 0.7;
  }
}
.review .splide__arrow--prev {
  left: calc(12.5% - 24px);
}
@media screen and (min-width: 768px) {
  .review .splide__arrow--prev {
    left: calc(50% - 350px);
  }
}
.review .splide__arrow--next {
  right: calc(12.5% - 24px);
}
@media screen and (min-width: 768px) {
  .review .splide__arrow--next {
    right: calc(50% - 350px);
  }
}
.review .splide__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.review .splide__pagination {
  position: relative;
  bottom: auto;
  padding: 0;
  margin-top: min(6.4vw, 40px);
  gap: 24px;
}
.review .splide__pagination__page {
  background: #fff;
  opacity: 1;
  width: 12px;
  height: 12px;
  margin: 0;
}
.review .splide__pagination__page.is-active {
  background: #092f8b;
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}
.review .card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #fff;
  border: 2px solid #092f8b;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  padding: min(6.4vw, 32px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: min(4.2666666667vw, 16px);
}
@media screen and (min-width: 768px) {
  .review .card {
    border-width: 4px;
    padding: 40px;
    gap: 24px;
  }
}
.review .card_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(4.2666666667vw, 16px);
}
@media screen and (min-width: 768px) {
  .review .card_header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
  }
}
.review .card_headerBody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(2.1333333333vw, 8px);
}
.review .card_icon img {
  width: min(12.8vw, 80px);
  height: auto;
}
.review .card_stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}
.review .card_stars img {
  width: min(5.3333333333vw, 24px);
  height: auto;
}
.review .card_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}
@media screen and (min-width: 768px) {
  .review .card_info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 8px;
  }
}
.review .card_location,
.review .card_product {
  font-size: min(3.7333333333vw, 16px);
  font-weight: 500;
  color: #666;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.review .card_line {
  width: 100%;
  border: none;
  border-top: 1px solid #ccc;
  margin: 0;
}
.review .card_text {
  font-size: min(3.7333333333vw, 18px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #333;
  white-space: pre-line;
}
.review .annotation {
  font-size: min(2.6666666667vw, 12px);
  color: #333;
  margin-top: min(2.1333333333vw, 12px);
}

.lineup {
  margin: min(12.8vw, 120px) auto min(12.8vw, 80px);
}
.lineup .section_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(10.6666666667vw, 48px);
}
.lineup .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.lineup .desc {
  font-size: min(3.7333333333vw, 18px);
  font-weight: 700;
  text-align: center;
  line-height: 1.75;
}
.lineup .type_label {
  margin: min(8vw, 48px) 0 24px;
  font-size: min(4.2666666667vw, 24px);
  font-weight: 900;
  color: #092f8b;
}
.lineup .types {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: min(4.2666666667vw, 16px);
  width: 95%;
}
@media screen and (min-width: 768px) {
  .lineup .types {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 32px;
    width: 100%;
  }
}
.lineup .type_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(4.2666666667vw, 16px);
}
.lineup .type_item img {
  width: min(10.6666666667vw, 40px);
  height: auto;
}
.lineup .type_item span {
  font-size: min(3.7333333333vw, 18px);
  font-weight: 700;
}
.lineup .cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(6.4vw, 32px);
  max-width: 530px;
  width: 100%;
}
@media screen and (min-width: 960px) {
  .lineup .cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 40px;
    max-width: inherit;
  }
}
.lineup .card {
  background: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(4.2666666667vw, 32px);
  padding: min(6.4vw, 40px);
}
@media screen and (min-width: 960px) {
  .lineup .card {
    width: calc(50% - 20px);
  }
}
.lineup .card_title {
  font-size: min(5.3333333333vw, 30px);
}
@media screen and (min-width: 961px) {
  .lineup .card_title {
    font-size: clamp(30px, 9.9px + 2.0921vw, 35px);
  }
}
.lineup .card_title {
  font-weight: 900;
  text-align: center;
  line-height: 1.5;
}
.lineup .card_title--usugata {
  color: #18b17b;
}
.lineup .card_title--choujikan {
  color: #0168b7;
}
.lineup .card_title--beige {
  color: #cb6885;
}
.lineup .card_title--junior {
  color: #514eb4;
}
.lineup .card_title--big {
  color: #724598;
}
.lineup .card_title--hitoban {
  color: #006a81;
}
.lineup .card_line {
  width: 100%;
  border: none;
  border-top: 1px solid #ddd;
  margin: 0;
}
.lineup .card_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(4.2666666667vw, 16px);
}
.lineup .card_desc {
  font-size: min(4.2666666667vw, 24px);
  font-weight: 900;
  text-align: center;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .lineup .card_desc {
    min-height: 3.5em;
  }
}
.lineup .card_icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(4.2666666667vw, 16px);
}
.lineup .card_icons img {
  width: min(10.6666666667vw, 60px);
  height: auto;
}
.lineup .card_product img {
  width: auto;
  height: auto;
  max-height: 180px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .lineup .card_product img {
    max-height: 250px;
  }
}
.lineup .card_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  width: 100%;
  padding: min(4.2666666667vw, 16px) min(8.5333333333vw, 48px);
  background-color: #f45d71;
  color: #fff;
  border-radius: 100px;
  font-size: min(4.2666666667vw, 20px);
  font-weight: 700;
  letter-spacing: 0.05em;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .lineup .card_btn {
    width: auto;
  }
}
@media (hover: hover) {
  .lineup .card_btn:hover {
    opacity: 0.7;
  }
}
.lineup .card_btnArrow {
  display: block;
  width: 24px;
  height: 24px;
  background-color: #fff;
  -webkit-mask-image: url("../../assets/images/icons/icon_arrow.svg");
          mask-image: url("../../assets/images/icons/icon_arrow.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.lineup .note {
  font-size: min(2.6666666667vw, 12px);
  width: 100%;
}

.compare {
  margin: min(12.8vw, 120px) auto;
}
.compare .c-title {
  margin-bottom: min(10.6666666667vw, 80px);
}
@media screen and (min-width: 768px) {
  .compare .section_inner {
    max-width: 1200px;
  }
}
.compare .imgWrap {
  position: relative;
}
@media screen and (min-width: 768px) {
  .compare .imgWrap .scrollBtn {
    display: none;
  }
}
.compare .scrollBtn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #333;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.compare .scrollBtn--prev {
  left: 0;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
}
.compare .scrollBtn--next {
  right: 0;
  -webkit-transform: translateY(-50%) translateX(50%);
          transform: translateY(-50%) translateX(50%);
}
.compare .scrollBtn.is-disabled {
  opacity: 0.3;
}
.compare .img {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  cursor: -webkit-grab;
  cursor: grab;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin-right: calc((100% - 100vw) / 2);
  scrollbar-width: none;
}
.compare .img::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 768px) {
  .compare .img {
    margin-right: 0;
  }
}
.compare .img img {
  width: auto;
  height: 80dvh;
  max-height: 580px;
}
@media screen and (min-width: 768px) {
  .compare .img img {
    width: 100%;
    height: auto;
    max-height: none;
  }
}
.compare .note {
  margin-top: min(4.2666666667vw, 40px);
  font-size: min(2.6666666667vw, 12px);
  letter-spacing: 0.05em;
}

.faq {
  margin: min(12.8vw, 120px) auto;
}
@media screen and (min-width: 768px) {
  .faq .section_inner {
    max-width: 1024px;
  }
}
.faq .title {
  margin-bottom: min(12.8vw, 80px);
}
.faq .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(10.6666666667vw, 40px);
}
.faq .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(6.4vw, 40px);
}
.faq .question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(4.2666666667vw, 16px);
}
.faq .question .icon {
  font-family: "Inter", sans-serif;
  font-size: min(8.5333333333vw, 40px);
  font-weight: 700;
  color: #092f8b;
  line-height: 1.8;
  letter-spacing: 0.05em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.faq .question .text {
  font-size: min(4.2666666667vw, 24px);
  font-weight: 900;
  line-height: 1.8;
  letter-spacing: 0.05em;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.faq .answer {
  background-color: #fff;
  border-radius: min(2.6666666667vw, 20px);
  padding: min(6.4vw, 32px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(6.4vw, 40px);
}
@media screen and (min-width: 768px) {
  .faq .answer {
    padding: 40px;
  }
}
.faq .answer_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(4.2666666667vw, 24px);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.faq .answer_inner .icon {
  font-family: "Inter", sans-serif;
  font-size: min(5.8666666667vw, 28px);
  font-weight: 700;
  color: #f45d71;
  line-height: 1.8;
  letter-spacing: 0.05em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.faq .answer_inner .text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: min(3.7333333333vw, 16px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.padTabs {
  background-color: #fff;
  border-top: 1px solid #ccc;
}

.padTabs_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
}

.padTabs_btn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: min(2.6666666667vw, 16px);
  padding: 6px 2%;
  border-bottom: 3px solid transparent;
  background: none;
  cursor: pointer;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
@media (hover: hover) {
  .padTabs_btn:hover {
    background-color: #f5f5f5;
  }
}
.padTabs_btn.is-active {
  background-color: #fff7cd;
  border-bottom-color: var(--tab-color);
}

.padTabs_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: min(10.6666666667vw, 51px);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.padTabs_img img {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.padTabs_label {
  font-size: min(3.2vw, 14px);
  font-weight: 500;
  color: #333;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.padContent {
  display: none;
}
.padContent.is-active {
  display: block;
}

@media screen and (min-width: 768px) {
  .under .section_inner {
    max-width: 1024px;
  }
}

.underKv {
  position: relative;
  overflow: hidden;
}
.underKv .underKv_bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.underKv .underKv_bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.underKv .underKv_bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 33%;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#f8f8f8));
  background: linear-gradient(to bottom, transparent, #f8f8f8);
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .underKv .underKv_bg::after {
    height: 120px;
  }
}
.underKv .underKv_inner {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 16vw 0 0;
}
@media screen and (min-width: 768px) {
  .underKv .underKv_inner {
    padding: min(5%, 50px) 5% min(10%, 100px);
  }
}
.underKv .underKv_inner picture {
  width: 89.3333333333%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .underKv .underKv_inner picture {
    width: 100%;
    max-width: 1000px;
  }
}

.underFeature {
  margin: clamp(48px, 12.8vw, 120px) auto;
}
@media screen and (min-width: 768px) {
  .underFeature {
    margin-top: 0;
  }
}
.underFeature .underFeature_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(6.4vw, 32px);
  margin-top: clamp(24px, 6.4vw, 60px);
}
.underFeature .underFeature_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(6.4vw, 32px);
  padding-bottom: min(6.4vw, 32px);
  border-bottom: 1px solid #ccc;
}
@media screen and (min-width: 768px) {
  .underFeature .underFeature_item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 80px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.underFeature .underFeature_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(4.2666666667vw, 40px);
}
@media screen and (min-width: 768px) {
  .underFeature .underFeature_text {
    width: 464px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.underFeature .underFeature_heading {
  font-size: min(5.3333333333vw, 30px);
}
@media screen and (min-width: 961px) {
  .underFeature .underFeature_heading {
    font-size: clamp(30px, 9.9px + 2.0921vw, 35px);
  }
}
.underFeature .underFeature_heading {
  font-weight: 900;
  color: var(--product-color, #514eb4);
  line-height: 1.5;
}
.underFeature .underFeature_desc {
  font-size: min(4.2666666667vw, 20px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.underFeature .underFeature_desc p + p {
  margin-top: 1em;
}
.underFeature .underFeature_img {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .underFeature .underFeature_img {
    width: 480px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.underFeature .underFeature_img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.underFeature .underFeature_img figcaption {
  margin-top: 0.75em;
  text-align: right;
  font-size: min(2.6666666667vw, 12px);
}

.underVideo {
  margin: clamp(48px, 12.8vw, 120px) auto;
}
.underVideo .underVideo_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(10.6666666667vw, 80px);
  margin-top: min(10.6666666667vw, 64px);
  max-width: 720px;
  margin-inline: auto;
}
.underVideo .underVideo_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(6.4vw, 32px);
}
.underVideo .underVideo_label {
  font-size: min(4.2666666667vw, 24px);
  font-weight: 900;
  color: #092f8b;
  text-align: center;
}
.underVideo .underVideo_embed {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.underVideo .underVideo_embed iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.underHowto {
  margin: clamp(48px, 12.8vw, 120px) auto;
}
.underHowto .underHowto_content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: min(6.4vw, 32px);
  margin-top: min(10.6666666667vw, 64px);
}
@media screen and (min-width: 768px) {
  .underHowto .underHowto_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.underHowto .underHowto_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(6.4vw, 32px);
}
@media screen and (min-width: 768px) {
  .underHowto .underHowto_group {
    gap: 24px;
  }
}
.underHowto .underHowto_group--wide {
  grid-column: 1/-1;
}
@media screen and (min-width: 768px) {
  .underHowto .underHowto_group--half {
    width: 232px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.underHowto .underHowto_tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 40px;
  background: #092f8b;
  color: #fff;
  font-size: min(4.2666666667vw, 20px);
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .underHowto .underHowto_tab {
    height: 50px;
  }
}
.underHowto .underHowto_steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(6.4vw, 32px);
}
.underHowto .underHowto_step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(6.4vw, 32px);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 768px) {
  .underHowto .underHowto_step {
    width: 232px;
    gap: 24px;
  }
}
.underHowto .underHowto_stepImg {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
}
.underHowto .underHowto_stepImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.underHowto .underHowto_stepText {
  font-size: min(3.7333333333vw, 16px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.underPadHowto {
  margin: clamp(48px, 12.8vw, 120px) auto;
}
.underPadHowto .underPadHowto_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(12.8vw, 80px);
  margin-top: min(10.6666666667vw, 64px);
}
.underPadHowto .underPadHowto_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(6.4vw, 32px);
}
.underPadHowto .underPadHowto_heading {
  font-size: min(4.8vw, 24px);
  font-weight: 900;
  color: #333;
  text-align: center;
  letter-spacing: 0.05em;
}
.underPadHowto .underPadHowto_steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(3.2vw, 24px);
}
.underPadHowto .underPadHowto_step {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(3.2vw, 16px);
}
.underPadHowto .underPadHowto_stepImg img {
  width: 100%;
  height: auto;
}
.underPadHowto .underPadHowto_stepText {
  font-size: min(3.4666666667vw, 16px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.underPadHowto .underPadHowto_stepNote {
  font-size: min(2.6666666667vw, 12px);
  color: #666;
  letter-spacing: 0.05em;
}

.underSize {
  margin: clamp(48px, 12.8vw, 120px) auto;
}
.underSize .underSize_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(6.4vw, 32px);
  margin-top: min(10.6666666667vw, 64px);
}
@media screen and (min-width: 768px) {
  .underSize .underSize_content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 80px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.underSize .underSize_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .underSize .underSize_text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-top: 80px;
  }
}
.underSize .underSize_heading {
  font-size: min(4.2666666667vw, 24px);
  font-weight: 900;
  color: #333;
  line-height: 1.8;
}
.underSize .underSize_desc {
  font-size: min(4.2666666667vw, 20px);
  font-weight: 500;
  line-height: 1.8;
}
.underSize .underSize_img {
  width: 100%;
  border-radius: min(1.8666666667vw, 10px);
  overflow: hidden;
  border: 1px solid #ccc;
}
@media screen and (min-width: 768px) {
  .underSize .underSize_img {
    width: 480px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.underSize .underSize_img img {
  width: 100%;
  height: auto;
}

.underLineup {
  margin: clamp(48px, 12.8vw, 120px) auto;
}
.underLineup .underLineup_products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(10.6666666667vw, 64px);
  margin-top: min(10.6666666667vw, 64px);
}
@media screen and (min-width: 768px) {
  .underLineup .underLineup_products {
    gap: 40px;
  }
}
.underLineup .underLineup_sizes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: min(6.4vw, 32px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .underLineup .underLineup_sizes {
    width: 100%;
    gap: 40px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.underLineup .underLineup_sizeItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  width: calc((100% - min(6.4vw, 32px)) / 2);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .underLineup .underLineup_sizeItem {
    width: 100px;
  }
}
.underLineup .underLineup_sizeImg {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #fff;
}
.underLineup .underLineup_sizeImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.underLineup .underLineup_sizeLabel {
  font-size: min(3.7333333333vw, 16px);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
}
.underLineup .underLineup_arrow {
  display: block;
  width: 12px;
  height: 12px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.underLineup .underLineup_pack {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(6.4vw, 32px);
}
.underLineup .underLineup_packTitle {
  font-size: min(4.2666666667vw, 24px);
  font-weight: 900;
  color: #333;
  text-align: center;
  letter-spacing: 0.05em;
}
.underLineup .underLineup_specs {
  margin-top: min(10.6666666667vw, 64px);
}
@media screen and (min-width: 768px) {
  .underLineup .underLineup_specs {
    margin-top: 64px;
  }
}
.underLineup .underLineup_spec {
  display: none;
}
.underLineup .underLineup_spec.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(6.4vw, 32px);
}
.underLineup .underLineup_specTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  height: min(12.8vw, 60px);
}
.underLineup .underLineup_specTitleBar {
  display: block;
  width: 4px;
  height: 100%;
  background: #333;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.underLineup .underLineup_specTitle > span:last-child {
  font-size: min(4.2666666667vw, 24px);
  font-weight: 900;
  color: #333;
  letter-spacing: 0.05em;
}
.underLineup .underLineup_tableWrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-right: calc((100% - 100vw) / 2);
}
@media screen and (min-width: 768px) {
  .underLineup .underLineup_tableWrap {
    margin-right: 0;
  }
}
.underLineup .underLineup_table {
  min-width: 800px;
  width: 100%;
  border-collapse: collapse;
}
@media screen and (min-width: 768px) {
  .underLineup .underLineup_table {
    min-width: 0;
  }
}
.underLineup .underLineup_table th,
.underLineup .underLineup_table td {
  border: 1px solid #999;
  padding: 16px;
  font-size: min(3.7333333333vw, 16px);
  font-weight: 500;
  vertical-align: middle;
  letter-spacing: 0.05em;
  color: #333;
}
.underLineup .underLineup_table th {
  background: #eee;
  text-align: center;
  white-space: nowrap;
  width: 200px;
}
.underLineup .underLineup_table td {
  text-align: left;
}
.underLineup .underLineup_table td:nth-child(2) {
  width: 280px;
}
@media screen and (min-width: 768px) {
  .underLineup .underLineup_table td:nth-child(2) {
    width: 314px;
  }
}

.siteFooter {
  background-color: #fff;
  border-top: 1px solid #ccc;
  position: relative;
}

.siteFooter_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(10.6666666667vw, 40px);
  padding: calc(min(10.6666666667vw, 40px) + 40px) 5.3333333333%;
}
@media screen and (min-width: 768px) {
  .siteFooter_inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: min(5vw, 80px);
    padding: min(10.6666666667vw, 80px) min(5vw, 80px);
  }
}

.siteFooter_logo {
  width: min(42.6666666667vw, 240px);
}
@media screen and (min-width: 768px) {
  .siteFooter_logo {
    width: min(58.6666666667vw, 240px);
  }
}

.siteFooter_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(6.4vw, 24px);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .siteFooter_content {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.siteFooter_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
}
@media screen and (min-width: 768px) {
  .siteFooter_links {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.siteFooter_linkItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.siteFooter_linkItem + .siteFooter_linkItem::before {
  content: "";
  display: block;
  width: 1px;
  height: 1.25em;
  background-color: #ccc;
  margin-inline: min(4vw, 20px);
}
@media screen and (min-width: 768px) {
  .siteFooter_linkItem + .siteFooter_linkItem::before {
    height: 1em;
  }
}
.siteFooter_linkItem a {
  font-size: min(3.7333333333vw, 18px);
  font-weight: 700;
  color: #333;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .siteFooter_linkItem a {
    font-size: clamp(16px, 16px + 3 * (100vw - 768px) / 432, 18px);
  }
}
@media (hover: hover) {
  .siteFooter_linkItem a:hover {
    opacity: 0.7;
  }
}

.siteFooter_lead {
  font-size: min(3.7333333333vw, 16px);
  font-weight: 500;
  color: #333;
  line-height: 1.75;
  text-align: left;
}

.siteFooter_copyright {
  font-size: min(3.2vw, 14px);
  font-weight: 500;
  color: #333;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .siteFooter_copyright {
    text-align: left;
    font-size: min(3.7333333333vw, 16px);
  }
}

.pageTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: min(8.5333333333vw, 70px);
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 50%;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .pageTop {
    padding: 16px;
  }
}
.pageTop.is-show {
  opacity: 1;
  pointer-events: auto;
}
@media (hover: hover) {
  .pageTop:hover {
    opacity: 0.7;
  }
}

.pageTop_arrow {
  display: block;
  width: min(2.6666666667vw, 14px);
  aspect-ratio: 1/1;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-top: min(0.8vw, 4px);
}