@charset "UTF-8";

html {
  font-size: 62.5%;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.2em;
  color: #252525;
  scroll-behavior: smooth;
}
@media (min-width: 751px) {
  html {
    min-width: 1000px;
  }
}
body {
  font-size:1.4rem;
}
img {
  max-width: 100%;
  height: auto;
}
a:hover {
  opacity: 0.7;
}

/* --------------------------------------------------
  共通レイアウト
-------------------------------------------------- */
.pc {
  display: none;
}
@media (min-width: 751px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
}
.flex {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 751px) {
  .pc-flex {
    display: flex;
    justify-content: space-between;
  }
}
.inner {
  padding: 0 calc( 20 / 750 * 100%);
}
@media (min-width: 751px) {
  .inner {
    padding: 0;
    margin: 0 auto;
    width: 1000px;
  }
}

/* --------------------------------------------------
  共通文字装飾
-------------------------------------------------- */
.txt-red {
  color: #ff001d;
}
.txt-underline {
  text-decoration: underline;
}
.roboto {
  font-family: "Roboto Slab", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

/* --------------------------------------------------
  .header
-------------------------------------------------- */
.header {
  padding: 5px 0;
  background: #fff;
}
.header__container .logo {
  width: calc( 165 / 750 * 100vw );
}
.header__container .telbtn {
  width: calc( 79 / 750 * 100vw );
}

@media (min-width: 751px) {
  .header__container .logo {
    width: fit-content;
  }
  .header__container .telbtn {
    width: 230px;
    aspect-ratio: 230 / 55;
    background-image: url(../images/header/telbtn.png);
    background-size: 100%;
    background-repeat: no-repeat;
    color: #fff;
    text-align: center;
    margin-left: auto;
    margin-right: 10px;
  }
  .header__container .telbtn .txt {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1;
    padding-top: 5px;
  }
  .header__container .telbtn .txt span {
    color: #fffc00;
  }
  .header__container .telbtn .telnum {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: 0;
    width: fit-content;
    margin-left: 40px;
  }
  .header__container .telbtn .hours {
    font-size: 0.7rem;
  }
  .header__container .mailbtn {
    width: 170px;
  }
}

/* --------------------------------------------------
  .hamburger-btn
  .hamburger-menu
-------------------------------------------------- */
.hamburger-btn {
  position: fixed;
  top: calc( 110 / 750 * 100vw );
  right: calc( 20 / 750 * 100vw );
  width: calc( 92 / 750 * 100vw );
  cursor: pointer;
  z-index: 999;
}
.hamburger-menu {
  width: calc( 600 / 750 * 100vw );
  height: 100%;
  transform: translateX(100%);
  position: fixed;
  top: 0; right: 0;
  z-index: 1000;
  transition: 0.3s;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch; 
}
.hamburger-menu.open {
  transform: translateX(0);
}
.hamburger-menu .menu-list-item {
  position: relative;
  font-size: calc( 23 / 750 * 100vw );
  line-height: calc( 98 / 750 * 100vw );
  letter-spacing: 0.1em;
  padding: 0 calc( 20 / 750 * 100vw );
  border-bottom: 1px solid #e0e0e0;
  background-color: #fff;
}
.hamburger-menu .menu-list-item::after {
  position: absolute;
  top: 50%; right: calc( 20 / 750 * 100vw );
  transform: translateY(-50%);
  content: '';
  display: block;
  background-image: url(../images/header/arrow.png);
  background-size: 100%;
  background-repeat: no-repeat;
  width: calc( 20 / 750 * 100vw );
  aspect-ratio: 20 / 24;
  cursor: pointer;
}
.hamburger-menu .menu-list-item--close {
  color: #fff;
  font-weight: 700;
  background-color: #f0cd00;
  cursor: pointer;
}
.hamburger-menu .menu-list-item--tel,
.hamburger-menu .menu-list-item--line {
  position: relative;
  color: #fff;
  font-size: calc( 31 / 750 * 100vw );
  font-weight: 700;
  padding-left: calc( 100 / 750 * 100vw );
}
.hamburger-menu .menu-list-item--tel {
  background-color: #ff0000;
}
.hamburger-menu .menu-list-item--line {
  background-color: #06c755;
}
.hamburger-menu .menu-list-item--tel::before,
.hamburger-menu .menu-list-item--line::before {
  position: absolute;
  display: block;
  content: '';
  top: 50%;
  left: calc( 28 / 750 * 100vw );
  transform: translateY(-50%);
  background-size: 100%;
  background-repeat: no-repeat;
}
.hamburger-menu .menu-list-item--tel::before {
  background-image: url(../images/header/telicon.png);
  width: calc( 52 / 750 * 100vw );
  aspect-ratio: 52 / 52;
}
.hamburger-menu .menu-list-item--line::before {
  background-image: url(../images/header/lineicon.png);
  width: calc( 54 / 750 * 100vw );
  aspect-ratio: 54 / 52;
}
.hamburger-menu .menu-list-item--tel::after,
.hamburger-menu .menu-list-item--line::after {
  background-image: url(../images/header/arrow-white.png);
}
.hamburger-menu .menu-list-item a {
  display: inline-block;
  width: 100%;
  height: 100%;
}

@media (min-width: 751px) {
  .hamburger-btn {
    top: 70px;
    right: 20px;
    width: fit-content;
  }
  .hamburger-menu {
    width: 675px;
  }
  .hamburger-menu .menu-list-item {
    font-size: 2.3rem;
    line-height: 80px;
    padding: 0 20px 0 60px;
  }
  .hamburger-menu .menu-list-item::after {
    right: 20px;
    width: 20px;
  }
  .hamburger-menu .menu-list-item--close {
    padding-left: 35px;
  }
  .hamburger-menu .menu-list-item--tel,
  .hamburger-menu .menu-list-item--line {
    font-size: 3.1rem;
    padding-left: 100px;
  }
  .hamburger-menu .menu-list-item--tel {
    background-color: #ff0000;
  }
  .hamburger-menu .menu-list-item--line {
    background-color: #06c755;
  }
  .hamburger-menu .menu-list-item--tel::before,
  .hamburger-menu .menu-list-item--line::before {
    left: 30px;
  }
  .hamburger-menu .menu-list-item--tel::before {
    width: 52px;
  }
  .hamburger-menu .menu-list-item--line::before {
    width: 54px;
  }
}


/* --------------------------------------------------
  .mv
-------------------------------------------------- */
.mv {
  background-color: #f8f2d2;
  padding-top: calc( 50 / 750 * 100vw );
  padding-bottom: calc( 40 / 750 * 100vw );
}
.mv__form {
  padding: 20px calc( 38 / 750 * 100vw ) 0;
}
.mv__form .form {
  background-color: #ff001d;
  border-radius: calc( 25 / 750 * 100vw );
  padding: calc( 20 / 750 * 100vw ) calc( 15 / 750 * 100vw );
}
.mv__form .form h2 {
  text-align: center;
  color: #fff;
  font-size: calc( 42 / 750 * 100vw );
  font-weight: 700;
}
.mv__form .form .error {
  color: #ff001d;
  font-size: calc( 14 / 750 * 100vw );
}
.mv__form .form .item-wrapper {
  margin-top: calc( 20 / 750 * 100vw );
  padding: calc( 25 / 750 * 100vw ) calc( 14 / 750 * 100vw );
  background-color: #fff;
}
.mv__form .form h3 {
  text-align: center;
  color: #fff;
  font-size: calc( 35 / 750 * 100vw );
  font-weight: 700;
  background-color: #ff001d;
  border-radius: calc( 12 / 750 * 100vw );
  padding: calc( 8 / 750 * 100vw );
}
.mv__form .form dl {
  margin: calc( 20 / 750 * 100vw ) 0 calc( 10 / 750 * 100vw );
}
.mv__form .form dl dt {
  position: relative;
  display: inline-block;
  width: 25%;
  font-weight: 700;
  font-size: calc( 21 / 750 * 100vw );
  vertical-align: top;
}
.mv__form .form dl dd {
  display: inline-block;
  width: 72%;
}
.mv__form .form dl dt.required {
  color: #ff001d;
}
.mv__form .form dl dt.required::after {
  position: absolute;
  top: 0; right: 0;
  content: '※';
  font-size: calc( 10 / 750 * 100vw );
}
.mv__form .form dl dt.free::after {
  position: absolute;
  top: 0; right: 0;
  content: '任意';
  font-size: calc( 10 / 750 * 100vw );
}
.mv__form .form dl dd input {
  max-width: 100%;
  letter-spacing: 0.2em;
}
.mv__form .form dl dd input[name="customer_zip"] {
  letter-spacing: 0;
}
.mv__form .form dl dd select {
  position: relative;
  width: 100%;
  height: auto;
  letter-spacing: 0.2em;
  font-size: calc( 14 / 750 * 100vw );
  border: 1px #929292 solid;
  border-radius: 20px;
  padding: calc( 12 / 750 * 100vw );
}
.mv__form .form dl dd label {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.mv__form .form dl dd label::before,
.mv__form .form dl dd label::after {
  position: absolute;
  display: inline-block;
  pointer-events: none;
}
.mv__form .form dl dd label::before {
  content: '';
  right: 0;
  width: 12%;
  height: 100%;
  border-radius: 0 20px 20px 0;
  background-color: #ff001d;
}
.mv__form .form dl dd label::after {
  content: '▼';
  top: 50%;
  right: calc( 15 / 750 * 100vw );
  transform: translateY(-50%);
  color: #fff;
  font-size: calc( 15 / 750 * 100vw );
}
.mv__form .form dl dt:not(:first-of-type),
.mv__form .form dl dd:not(:first-of-type) {
  margin-top: calc( 12 / 750 * 100vw );
}
.mv__form .form dl dd input[type="text"] {
  border-radius: 10px;
  font-size: calc( 14 / 750 * 100vw );
  box-shadow: inset 4px 4px 6px rgba(13, 4, 9, .19);
  padding: calc( 12 / 750 * 100vw );
}
.mv__form .form .privacy {
  font-size: calc( 14 / 750 * 100vw );
  padding-top: calc( 5 / 750 * 100vw );
  text-align: center;
}
.mv__form .form .privacy:first-of-type {
  padding-top: calc( 15 / 750 * 100vw );
}
.mv__form .form .submitbtn {
  margin: calc( 16 / 750 * 100vw ) auto 0;
  width: calc( 557 / 750 * 100vw );
  height: auto;
  aspect-ratio: 557 / 127;
}
.mv__form .form .submitbtn:hover {
  opacity: 0.8;
}
.mv__form .form .submitbtn input[type="submit"] {
  width: 100%;
  height: 100%;
  background-image: url(../images/form/submitbtn_sp.png);
  background-repeat: no-repeat;
  background-size: 100%;
  text-indent: -9999px;
}
.mv__form .p-country-name {
  display: none;
}
.mv__caution .caution-txt {
  margin-top: calc( 45 / 750 * 100vw );
  border-radius: 10px;
  border: #c70000 5px solid;
  padding: calc( 30 / 750 * 100vw ) 0 calc( 30 / 750 * 100vw ) calc( 200 / 750 * 100vw );
  font-size: calc( 32 / 750 * 100vw );
  color: #c70000;
  background-color: #fff;
  background-image: url(../images/mv/caution.png);
  background-repeat: no-repeat;
  background-size: calc( 99 / 750 * 100vw );
  background-position: calc( 70 / 750 * 100vw ) center;
  cursor: pointer;
}
.mv__caution .caution-txt:hover {
  opacity: 0.6;
}
.mv__caution .caution-txt span {
  display: block;
}
.mv__caution .caution-txt span + span {
  padding-top: calc( 18 / 750 * 100vw );
}
.mv__caution .modal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  overflow: auto;
  width: calc( 730 / 750 * 100vw );
  background-color: #fff;
  border-radius: calc( 50 / 750 * 100vw );
  letter-spacing: 0.03em;
  text-align: center;
  padding-bottom: calc( 75 / 750 * 100vw );
  animation-name: modalopen;
  animation-duration: 1s;
}
@keyframes modalopen {
  from {opacity: 0}
  to {opacity: 1}
}
.mv__caution .modal-close {
  display: block;
  position: absolute;
  top: calc( 40 / 750 * 100vw );
  right: calc( 45 / 750 * 100vw );
  width: calc( 45 / 750 * 100vw );
  cursor: pointer;
}
.mv__caution .modal-txt01 {
  padding-top: calc( 140 / 750 * 100vw );
  color: #c70000;
  font-size: calc( 36 / 750 * 100vw );
  font-weight: 700;
  line-height: 1.5;
}
.mv__caution .modal-txt01 span {
  display: inline-block;
  padding-bottom: calc( 10 / 750 * 100vw);
}
.mv__caution .modal .img {
  margin-top: calc( 50 / 750 * 100vw);
  width: calc( 133 / 750 * 100vw );
}
.mv__caution .modal-txt02 {
  font-size: calc( 28 / 750 * 100vw );
  font-weight: 700;
  line-height: 1.57;
  padding-top: calc( 45 / 750 * 100vw );
}
.mv__caution .modal-list {
  font-size: calc( 24 / 750 * 100vw );
  font-weight: 700;
  line-height: 1.46;
  letter-spacing: 0.1em;
  text-align: left;
  padding: calc( 60 / 750 * 100vw ) calc( 70 / 750 * 100vw ) 0 calc( 100 / 750 * 100vw );
  list-style-type: disc;
}
.mv__caution .modal-list li + li {
  margin-top: calc( 30 / 750 * 100vw );
}
.mv__caution .modal address {
  width: calc( 600 / 750 * 100vw );
  margin: calc( 60 / 750 * 100vw ) auto 0;
  padding: calc( 30 / 750 * 100vw );
  border: 5px solid #d9d9d9;
  font-size: calc( 28 / 750 * 100vw );
  line-height: 1.8;
}
.mv__caution .modal address span {
  display: block;
  font-size: calc( 26 / 750 * 100vw );
  font-weight: 800;
  padding-bottom: calc( 10 / 750 * 100vw );
}

@media (min-width: 751px) {
  .mv {
    background: none;
    padding: 0;
  }
  .mv__main {
    width: 100%;
    background-image: url(../images/mv/mv-bg.jpg);
    background-size: cover;
    background-position: center;
    padding: 25px 0 18px;
  }
  .mv__main .container {
    margin: 0 auto;
    width: 1000px;
  }
  .mv__main > .container > .inner {
    margin-left: -60px;
  } 
  .mv h2 {
    width: 601px;
    position: relative;
    left: -33px;
  }
  .mv .mv-bottom {
    width: 668px;
    margin-top: -75px;
  }
  .mv > .mv__main > .inner > .inner {
    padding: 0;
    margin-left: -60px;
  }
  .mv__form {
    padding: 0;
  }
  .mv__form .form {
    padding: 12px 9px;
    border-radius: 14px;
    width: 392px;
  }
  .mv__form .form h2 {
    font-size: 2.5rem;
    left: unset;
    width: 100%;
  }
  .mv__form .form .error {
    font-size: 0.8rem;
  }
  .mv__form .form .item-wrapper {
    margin-top: 16px;
    padding: 14px 8px;
  }
  .mv__form .form h3 {
    font-size: 2.1rem;
    border-radius: 12px;
    padding: 5px;
  }
  .mv__form .form dl {
    margin: 14px 0;
  }
  .mv__form .form dl dt {
    font-size: 1.3rem;
  }
  .mv__form .form dl dt:not(:first-of-type),
  .mv__form .form dl dd:not(:first-of-type) {
    margin-top: 12px;
  }
  .mv__form .form dl dt.required::after,
  .mv__form .form dl dt.free::after {
    font-size: 0.8rem;
  }
  .mv__form .form dl dd input[type="text"] {
    font-size: 0.9rem;
    padding: 8px 12px;
  }
  .mv__form .form dl dd:not(:first-of-type) {
    margin-top: 8px;
  }
  .mv__form .form dl dd select {
    font-size: 0.9rem;
    padding: 8px 12px;
  }
  .mv__form .form dl dd label::after {
    right: 10px;
    font-size: 0.9rem;
  }
  .mv__form .form .privacy {
    font-size: 0.9rem;
    padding-top: 5px;
  }
  .mv__form .form .privacy:first-of-type {
    padding-top: 0;
  }
  .mv__form .form .submitbtn {
    width: 343px;
    height: 81px;
    margin: 8px auto 0;
  }
  .mv__form .form .submitbtn input[type="submit"] {
    background-image: url(../images/form/submitbtn.png);
  }
  .mv__caution .caution-txt {
    margin: 60px auto;
    padding: 20px 0 20px 140px;
    width: 430px;
    font-size: 1.5rem;
    background-image: url(../images/mv/caution.png);
    background-size: 51px;
    background-position: 65px center;
    border: #c70000 3px solid;
  }
  .mv__caution .caution-txt span + span {
    padding-top: 10px;
  }
  .mv__caution .modal {
    width: 800px;
    border-radius: 20px;
    padding-bottom: 30px;
    top: 40%;
  }
  .mv__caution .modal-close {
    width: 25px;
    top: 25px; right: 35px;
  }
  .mv__caution .modal-txt01 {
    font-size: 2.8rem;
    padding-top: 70px;
  }
  .mv__caution .modal .img {
    margin-top: 30px;
    width: 70px;
  }
  .mv__caution .modal-txt02 {
    padding-top: 30px;
    font-size: 1.8rem;
  }
  .mv__caution .modal-list {
    font-size: 1.5rem;
    padding: 30px 70px 0 100px;
  }
  .mv__caution .modal-list li + li {
    margin-top: 10px;
  }
  .mv__caution .modal address {
    width: 660px;
    margin-top: 30px;
    padding: 10px 0;
    font-size: 1.5rem;
  }
  .mv__caution .modal address span {
    font-size: 1.6rem;
    padding-bottom: 10px;
  }
}

/* --------------------------------------------------
  .cta
-------------------------------------------------- */
.cta {
  background-color: #ebd423;
}
.cta .inner {
  position: relative;
  background-image: url(../images/cta/bg_sp.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: calc( 30 / 750 * 100vw );
}
.cta .inner::after {
  display: block;
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: calc( 263 / 750 * 100vw );
  aspect-ratio: 263 / 674;
  background-image: url(../images/cta/woman_sp.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
.cta__container {
  background-image: url(../images/cta/bg-str_sp.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: calc( 25 / 750 * 100vw );
}
.cta h2,
.cta p,
.cta a {
  position: relative;
  z-index: 1;
}
.cta h2 {
  width: calc( 503 / 750 * 100vw );
}
.cta .point {
  margin-top: calc( 24 / 750 * 100vw );
  width: calc( 476 / 750 * 100vw );
  aspect-ratio: 476 / 134;
}
.cta .btn-area {
  margin-top: calc( 15 / 750 * 100vw );
  margin-right: auto;
  width: calc( 642 / 750 * 100vw );
}
.cta .btn-area .telbtn {
  display: block;
  background-image: url(../images/cta/telbtn_sp.png);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  aspect-ratio: 642 / 171;
}
.cta .btn-area .telbtn .txt {
  display: block;
  text-align: center;
  color: #fff;
  font-size: calc( 34 / 750 * 100vw );
  text-shadow: rgb(248, 11, 11) 1px 0px 0px, rgb(248, 11, 11) 0.540302px 0.841471px 0px, rgb(248, 11, 11) -0.416147px 0.909297px 0px, rgb(248, 11, 11) -0.989992px 0.14112px 0px, rgb(248, 11, 11) -0.653644px -0.756802px 0px, rgb(248, 11, 11) 0.283662px -0.958924px 0px, rgb(248, 11, 11) 0.96017px -0.279415px 0px;
  filter: drop-shadow(1px 1px 1px rgba(34, 34, 34, 0.5));
  padding-top: 2%;
}
.cta .btn-area .telbtn .txt span {
  color: #fffc00;
}
.cta .btn-area .telbtn .telnum {
  display: block;
  color: #fff;
  font-size: calc( 70 / 750 * 100vw );
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: rgb(248, 11, 11) 1px 0px 0px, rgb(248, 11, 11) 0.540302px 0.841471px 0px, rgb(248, 11, 11) -0.416147px 0.909297px 0px, rgb(248, 11, 11) -0.989992px 0.14112px 0px, rgb(248, 11, 11) -0.653644px -0.756802px 0px, rgb(248, 11, 11) 0.283662px -0.958924px 0px, rgb(248, 11, 11) 0.96017px -0.279415px 0px;
  filter: drop-shadow(1px 1px 1px rgba(34, 34, 34, 0.4));
  width: fit-content;
  margin-left: calc( 125 / 750 * 100vw );
}
.cta .btn-area .telbtn .hours {
  display: block;
  color: #fff;
  font-size: calc( 16 / 750 * 100vw );
  font-weight: 600;
  text-align: center;
  padding-top: 1.5%;
}
.cta .btn-area .otherbtns {
  padding-top: calc( 8 / 750 * 100vw );
}
.cta .btn-area .otherbtns .mailbtn,
.cta .btn-area .otherbtns .linebtn {
  display: block;
  width: calc( 314 / 750 * 100vw );
}
.cta__txt {
  text-align: center;
  padding: calc( 16 / 750 * 100vw ) 0;
  font-size: calc( 34 / 750 * 100vw );
  font-weight: 800;
  line-height: 1.49;
  text-shadow: #fff 3px 0px 0px, #fff 2.83487px 0.981584px 0px, #fff 2.35766px 1.85511px 0px, #fff 1.62091px 2.52441px 0px, #fff 0.705713px 2.91581px 0px, #fff -0.287171px 2.98622px 0px, #fff -1.24844px 2.72789px 0px, #fff -2.07227px 2.16926px 0px, #fff -2.66798px 1.37182px 0px, #fff -2.96998px 0.42336px 0px, #fff -2.94502px -0.571704px 0px, #fff -2.59586px -1.50383px 0px, #fff -1.96093px -2.27041px 0px, #fff -1.11013px -2.78704px 0px, #fff -0.137119px -2.99686px 0px, #fff 0.850987px -2.87677px 0px, #fff 1.74541px -2.43999px 0px, #fff 2.44769px -1.73459px 0px, #fff 2.88051px -0.838247px 0px;
}

@media (min-width: 751px) {
  .cta {
    background-color: #fff;
    background-image: url(../images/cta/bg.png);
    background-size: cover;
    background-position: center;
  }
  .cta .inner {
    background: none;
    padding-top: 17px;
  }
  .cta .inner::after {
    display: none;
  }
  .cta__container {
    width: 900px;
    margin: 0 auto;
    padding: 20px 65px 25px
  }
  .cta .point {
    margin-top: 20px;
    aspect-ratio: unset;
  }
  .cta .btn-area {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    width: fit-content;
    margin-top: 30px;
  }
  .cta .btn-area .telbtn {
    background-image: url(../images/cta/telbtn.png);
    width: 396px;
    aspect-ratio: 396 / 134;
  }
  .cta .btn-area .telbtn .txt {
    font-size: 2.1rem;
    letter-spacing: 0.1em;
    padding-top: 12px;
    text-shadow: rgb(248, 11, 11) 2px 0px 0px, rgb(248, 11, 11) 1.75517px 0.958851px 0px, rgb(248, 11, 11) 1.0806px 1.68294px 0px, rgb(248, 11, 11) 0.141474px 1.99499px 0px, rgb(248, 11, 11) -0.832294px 1.81859px 0px, rgb(248, 11, 11) -1.60229px 1.19694px 0px, rgb(248, 11, 11) -1.97998px 0.28224px 0px, rgb(248, 11, 11) -1.87291px -0.701566px 0px, rgb(248, 11, 11) -1.30729px -1.5136px 0px, rgb(248, 11, 11) -0.421592px -1.95506px 0px, rgb(248, 11, 11) 0.567324px -1.91785px 0px, rgb(248, 11, 11) 1.41734px -1.41108px 0px, rgb(248, 11, 11) 1.92034px -0.558831px 0px;
    filter: drop-shadow(0px 2px 1px rgba(34, 34, 34, 0.4));
  }
  .cta .btn-area .telbtn .telnum {
    font-size: 4.2rem;
    white-space: nowrap;
    margin: 9px 0 0 70px;
    text-shadow: rgb(248, 11, 11) 2px 0px 0px, rgb(248, 11, 11) 1.75517px 0.958851px 0px, rgb(248, 11, 11) 1.0806px 1.68294px 0px, rgb(248, 11, 11) 0.141474px 1.99499px 0px, rgb(248, 11, 11) -0.832294px 1.81859px 0px, rgb(248, 11, 11) -1.60229px 1.19694px 0px, rgb(248, 11, 11) -1.97998px 0.28224px 0px, rgb(248, 11, 11) -1.87291px -0.701566px 0px, rgb(248, 11, 11) -1.30729px -1.5136px 0px, rgb(248, 11, 11) -0.421592px -1.95506px 0px, rgb(248, 11, 11) 0.567324px -1.91785px 0px, rgb(248, 11, 11) 1.41734px -1.41108px 0px, rgb(248, 11, 11) 1.92034px -0.558831px 0px;
    filter: drop-shadow(0px 2px 1px rgba(34, 34, 34, 0.4));
  }
  .cta .btn-area .telbtn .hours {
    padding-top: 12px;
    font-size: 1.6rem;
  }
  .cta .btn-area .otherbtns {
    padding-top: 0;
  }
  .cta .btn-area .otherbtns.flex {
    flex-flow: column;
  }
  .cta::after {
    position: absolute;
    bottom: 0;

  }
  .cta__txt {
    position: relative;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    width: fit-content;
    padding: 16px 0 16px 124px;
  }
  .cta__txt::after {
    position: absolute;
    bottom: 0; right: -230px;
    display: block;
    content: '';
    background-image: url(../images/cta/woman.png);
    background-size: 100%;
    background-repeat: no-repeat;
    width: 216px;
    height: 306px;
  }
}

/* --------------------------------------------------
  .problem01
-------------------------------------------------- */
.problem01 {
  background-image: url(../images/problem01/bg_sp.jpg);
  background-size: cover;
  background-position: center 0;
  background-repeat: no-repeat;
  padding-bottom: calc( 80 / 750 * 100vw );
  clip-path: polygon(0% 0%, 100% 0, 100% 95%, 50% 100%, 0 95%);
}
.problem01 h2 {
  width: calc( 626 / 750 * 100vw );
  margin: 0 auto;
  padding-top: calc( 70 / 750 * 100vw );
}
.problem01 .txt01 {
  width: calc( 400 / 750 * 100vw );
  margin: calc( 15 / 750 * 100vw ) auto 0;
  padding: calc( 26 / 750 * 100vw ) 0;
  color: #fff;
  font-size: calc( 24 / 750 * 100vw );
  font-weight: 800;
  border: calc( 5 / 750 * 100vw ) #fff solid;
  text-align: center;
}
.problem01 ul {
  margin: calc( 30 / 750 * 100vw ) auto 0;
  width: calc( 580 / 750 * 100vw );
}
.problem01 ul li {
  position: relative;
  padding: calc( 30 / 750 * 100vw ) 0 calc( 30 / 750 * 100vw ) calc( 70 / 750 * 100vw );
  color: #fff;
  font-size: calc( 33 / 750 * 100vw );
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.08em;
}
.problem01 ul li::before {
  content: '';
  display: block;
  position: absolute;
  top: calc( 36 / 750 * 100vw ); left: 1%;
  width: calc( 39 / 750 * 100vw );
  height: auto;
  aspect-ratio: 39 / 31;
  background-image: url(../images/problem01/check.png);
  background-size: 100%;
  background-repeat: no-repeat;
}
.problem01 ul li + li {
  border-top: 1px solid #fff;
}
.problem01 ul li span {
  color: #efca00;
}
.problem01 .txt02 {
  padding-top: calc( 30 / 750 * 100vw );
  font-size: calc( 48 / 750 * 100vw );
  font-weight: 800;
  color: #efca00;
  text-align: center;
}
.problem01 .txt02 span {
  position: relative;
  display: block;
  width: fit-content;
  margin: 0 auto;
}
.problem01 .txt02 span::after {
  position: absolute;
  bottom: calc( -16 / 750 * 100vw );
  content: '';
  display: block;
  width: 100%;
  height: calc( 12 / 750 * 100vw );
  background-color: #efca00;
}
.problem01 .txt02 span + span {
  padding-top: calc( 36 / 750 * 100vw );
}

@media (min-width: 751px) {
  .problem01 {
    background-image: url(../images/problem01/bg.jpg);
    padding-bottom: 60px;
  }
  .problem01 h2 {
    width: 100%;
    padding-top: 75px;
  }
  .problem01 .txt01 {
    margin-top: -70px;
    padding: 25px 0;
    width: 475px;
    border: 6px #fff solid;
    font-size: 2.5rem;
  }
  .problem01 ul {
    margin-top: 25px;
    width: 580px;
  }
  .problem01 ul li {
    padding: 15px 0 15px 70px;
    font-size: 3.3rem;
  }
  .problem01 ul li::before {
    top: 25px;
    width: 39px;
  }
  .problem01 .txt02 {
    padding-top: 20px;
    font-size: 4.5rem;
  }
  .problem01 .txt02 span::after {
    height: 12px;
    bottom: -16px;
  }
  .problem01 .txt02 span + span {
    padding-top: 30px;
  }
}

/* --------------------------------------------------
  .solution
-------------------------------------------------- */
.solution {
  background-color: #efca00;
  margin-top: calc( -70 / 750 * 100vw );
  padding-top: calc( 65 / 750 * 100vw );
}
.solution h2 {
  width: calc( 591 / 750 * 100vw );
  margin: 0 auto;
}
.solution__contents {
  background-color: #fff;
  margin-top: calc( 24 / 750 * 100vw );
  padding: calc( 50 / 750 * 100vw ) calc( 50 / 750 * 100vw );
}
.solution__contents h3 {
  font-size: calc( 46 / 750 * 100vw );
  font-weight: 800;
  width: fit-content;
  margin: 0 auto;
}
.solution__contents h3 span {
  position: relative;
  display: block;
}
.solution__contents h3 span::after {
  position: absolute;
  bottom: calc( -16 / 750 * 100vw );
  content: '';
  display: block;
  width: 100%;
  height: calc( 12 / 750 * 100vw );
  background-color: #efca00;
}
.solution__contents h3 span + span {
  padding-top: calc( 36 / 750 * 100vw );
}
.solution__contents ul {
  padding-top: calc( 70 / 750 * 100vw );
}
.solution__contents ul li {
  position: relative;
  padding: calc( 30 / 750 * 100vw ) 0 calc( 30 / 750 * 100vw ) calc( 220 / 750 * 100vw );
  background-color: #efca00;
  font-size: calc( 25 / 750 * 100vw );
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
.solution__contents ul li::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: auto;
  background-size: 100%;
  background-repeat: no-repeat;
}
.solution__contents ul li:nth-of-type(1)::before {
  left: calc( 65 / 750 * 100vw );
  background-image: url(../images/solution/img01.png);
  width: calc( 101 / 750 * 100vw );
  aspect-ratio: 101 / 81;
}
.solution__contents ul li:nth-of-type(2)::before {
  left: calc( 55 / 750 * 100vw );
  background-image: url(../images/solution/img02.png);
  width: calc( 118 / 750 * 100vw );
  aspect-ratio: 118 / 70;
}
.solution__contents ul li:nth-of-type(3)::before {
  left: calc( 85 / 750 * 100vw );
  background-image: url(../images/solution/img03.png);
  width: calc( 85 / 750 * 100vw );
  aspect-ratio: 85 / 95;
}
.solution__contents ul li:nth-of-type(4)::before {
  left: calc( 80 / 750 * 100vw );
  background-image: url(../images/solution/img04.png);
  width: calc( 71 / 750 * 100vw );
  aspect-ratio: 71 / 94;
}
.solution__contents ul li + li {
  margin-top: calc( 30 / 750 * 100vw );
}
.solution__free {
  margin-top: calc( 60 / 750 * 100vw );
  padding: calc( 65 / 750 * 100vw ) 0;
  background-image: url(../images/solution/bg_sp.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.solution__free p {
  color: #fff;
  font-size: calc( 55 / 750 * 100vw );
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.04em;
}
.solution__free p .flex {
  margin-top: calc( 30 / 750 * 100vw );
}
.solution__free p .flex span {
  display: inline-block;
  font-size: calc( 33 / 750 * 100vw );
  font-weight: 700;
  color: #ad0032;
  text-align: center;
  width: calc( 225 / 750 * 100vw );
  background-color: #fff;
  border-radius: 10px;
  padding: calc( 10 / 750 * 100vw ) 0;
}
.solution__free p img {
  margin-top: calc( 40 / 750 * 100vw );
  width: calc( 584 / 750 * 100vw );
}

@media (min-width: 751px) {
  .solution {
    margin-top: -50px;
    padding-top: 65px;
  }
  .solution h2 {
    width: 591px;
  }
  .solution__contents {
    margin-top: 20px;
    padding: 35px 0 45px;
  }
  .solution__contents h3 {
    font-size: 4.6rem;
    text-align: center;
  }
  .solution__contents h3 span::after {
    height: 12px;
    bottom: -16px;
  }
  .solution__contents h3 span + span {
    padding-top: 36px;
  }
  .solution__contents ul {
    width: 840px;
    margin: 0 auto;
    padding-top: 70px;
  }
  .solution__contents ul li {
    padding: 30px 0 30px 130px;
    font-size: 2.5rem;
  }
  .solution__contents ul li + li {
    margin-top: 30px;
  }
  .solution__contents ul li:nth-of-type(1)::before {
    left: 25px;
    width: 76px;
  }
  .solution__contents ul li:nth-of-type(2)::before {
    left: 23px;
    width: 91px;
  }
  .solution__contents ul li:nth-of-type(3)::before {
    left: 44px;
    width: 54px;
  }
  .solution__contents ul li:nth-of-type(4)::before {
    left: 40px;
    width: 50px;
  }
  .solution__free {
    margin-top: 50px;
    padding: 60px 0;
    background-image: url(../images/solution/bg.jpg);
  }
  .solution__free p {
    font-size: 5.5rem;
  }
  .solution__free p .pc-small {
    font-weight: 700;
  }
  .solution__free p .flex {
    width: 715px;
    margin: 30px auto 0;
  }
  .solution__free p .flex span {
    font-size: 3.3rem;
    width: 226px;
  }
  .solution__free p img {
    width: 584px;
    margin-top: 40px;
  }
}

/* --------------------------------------------------
  .strengths
-------------------------------------------------- */
.strengths h2 {
  padding-top: calc( 40 / 750 * 100vw );
}
.strengths__list {
  padding-top: calc( 60 / 750 * 100vw );
  margin: 0 calc( 85 / 750 * 100vw );
}
.strengths__list .item {
  position: relative;
  padding-left: calc( 175 / 750 * 100vw );
}
.strengths__list .item::before {
  position: absolute;
  content: '';
  display: block;
  width: calc( 144 / 750 * 100vw );
  height: auto;
  aspect-ratio: 144 / 144;
  background-size: 100%;
  background-repeat: no-repeat;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.strengths__list .item:nth-of-type(1)::before {
  background-image: url(../images/strengths/img01.png);
}
.strengths__list .item:nth-of-type(2)::before {
  background-image: url(../images/strengths/img02.png);
}
.strengths__list .item:nth-of-type(3)::before {
  background-image: url(../images/strengths/img03.png);
}
.strengths__list .item dt {
  font-size: calc( 32 / 750 * 100vw );
  font-weight: 800;
  color: #efca00;
  letter-spacing: 0.02em;
}
.strengths__list .item dd {
  font-size: calc( 24 / 750 * 100vw );
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.4;
  padding-top: calc( 12 / 750 * 100vw );
}
.strengths__list .item + .item {
  margin-top: calc( 55 / 750 * 100vw );
}

@media (min-width: 751px) {
  .strengths h2 {
    padding-top: 60px;
    width: 757px;
    margin: 0 auto;
  }
  .strengths__list {
    padding-top: 50px;
    margin: 0 auto;
    width: 1000px;
  }
  .strengths__list .item {
    padding-left: 100px;
  }
  .strengths__list .item:nth-of-type(1) {
    width: 338px;
  }
  .strengths__list .item:nth-of-type(2) {
    width: 310px;
  }
  .strengths__list .item:nth-of-type(3) {
    width: 338px;
  }
  .strengths__list .item::before {
    width: 83px;
  }
  .strengths__list .item + .item {
    margin-top: 0;
  }
  .strengths__list .item dt {
    font-size: 2rem;
  }
  .strengths__list .item dd {
    font-size: 1.4rem;
    padding-top: 9px;
  }
}

/* --------------------------------------------------
  .problem02
-------------------------------------------------- */
.problem02 {
  padding-top: calc( 85 / 750 * 100vw );
}
.problem02 h2 {
  padding: calc( 25 / 750 * 100vw );
  background-color: #ebd423;
  text-align: center;
}
.problem02 h2 img {
  width: calc( 497 / 750 * 100vw );
}
.problem02__list {
  padding: calc( 35 / 750 * 100vw ) calc( 85 / 750 * 100vw ) 0;
}
.problem02__list.flex {
  flex-wrap: wrap;
}
.problem02__list .item {
  width: calc( 284 / 750 * 100vw );
}
.problem02__list .item:nth-of-type(3),
.problem02__list .item:nth-of-type(4)
 {
  padding-top: calc( 10 / 750 * 100vw );
 }
 .problem02__txt {
  width: calc( 479 / 750 * 100vw );
  margin: 0 auto;
 }
.problem02__answer {
  margin-top: calc( 35 / 750 * 100vw );
  padding-bottom: calc( 40 / 750 * 100vw );
  background-image: url(../images/problem02/bg_sp.jpg);
  background-size: cover;
  background-position: center top;
}
.problem02__answer .txt01 {
  width: calc( 594 / 750 * 100vw );
  margin: 0 auto;
  padding-top: calc( 90 / 750 * 100vw );
}
.problem02__answer .list {
  margin: calc( 40 / 750 * 100vw ) calc( 140 / 750 * 100vw ) 0;
}
.problem02__answer .list.flex {
  flex-wrap: wrap;
}
.problem02__answer .list-item {
  width: calc( 228 / 750 * 100vw );
}
.problem02__answer .list-item dt,
.problem02__answer .list-item dd {
  background-color: #fff;
}
.problem02__answer .list-item dt {
  font-size: calc( 29 / 750 * 100vw );
  font-weight: 600;
  text-align: center;
  line-height: 1;
  padding: calc( 15 / 750 * 100vw ) 0;
}
.problem02__answer .list-item dd {
  text-align: center;
  margin-top: calc( 12 / 750 * 100vw );
  margin-bottom: calc( 28 / 750 * 100vw );
  padding: calc( 20 / 750 * 100vw ) 0;
}
.problem02__answer .list-item dd img {
  width: calc( 88 / 750 * 100vw );
}
.problem02__answer .txt02 {
  color: #fff;
  font-size: calc( 68 / 750 * 100vw );
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
}

@media (min-width: 751px) {
  .problem02 {
    padding-top: 85px;
  }
  .problem02 h2 {
    padding: 25px;
  }
  .problem02 h2 img {
    width: 494px;
  }
  .problem02__list {
    padding: 35px 0 0;
    margin: 0 auto;
    width: 1000px;
  }
  .problem02__list.flex {
    flex-wrap: nowrap;
    gap: 10px;
  }
  .problem02__list .item:nth-of-type(3),
  .problem02__list .item:nth-of-type(4) {
    padding-top: 0;
  }
  .problem02__txt {
    width: 484px;
  }
  .problem02__answer {
    margin-top: 10px;
    padding-bottom: 45px;
    background-image: url(../images/problem02/bg.jpg);
  }
  .problem02__answer .txt01 {
    width: fit-content;
    padding-top: 90px;
  }
  .problem02__answer .list {
    margin: 40px auto 0;
    width: 1000px;
  }
  .problem02__answer .list.flex {
    flex-wrap: nowrap;
  }
  .problem02__answer .list-item {
    width: 228px;
  }
  .problem02__answer .list-item dt {
    font-size: 3rem;
    padding: 15px 0;
  }
  .problem02__answer .list-item dd {
    margin-top: 13px;
    margin-bottom: 0;
    padding: 20px 0;
  }
  .problem02__answer .list-item dd img {
    width: 88px;
  }
  .problem02__answer .txt02 {
    font-size: 6.8rem;
    padding-top: 50px;
  }
}


/* --------------------------------------------------
  .promise
-------------------------------------------------- */
.promise {
  padding-bottom: calc( 60 / 750 * 100vw );
}
.promise h2 {
  position: relative;
  margin-top: calc( 205 / 750 * 100vw );
}
.promise h2::before {
  position: absolute;
  top: calc( -150 / 750 * 100vw ); left: 50%;
  transform: translateX(-50%);
  content: '';
  display: block;
  background-image: url(../images/promise/hands.png);
  background-size: 100%;
  background-repeat: no-repeat;
  width: calc( 111 / 750 * 100vw );
  height: auto;
  aspect-ratio: 111 / 120;
}
.promise__list {
  margin: calc( 50 / 750 * 100vw ) calc( 20 / 750 * 100vw ) 0;
}
.promise__list.flex {
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
}
.promise__list .item {
  width: calc( 321 / 750 * 100vw );
}
.promise__list .item:nth-of-type(3) {
  margin-top: calc( 30 / 750 * 100vw );
}
.promise__list .item:last-of-type {
  width: calc( 345 / 750 * 100vw );
  margin-top: calc( 40 / 750 * 100vw );
}

@media (min-width: 751px) {
  .promise {
    padding-bottom: 60px;
  }
  .promise h2 {
    width: fit-content;
    margin: 205px auto 0;
  }
  .promise h2::before {
    top: -150px;
    width: 115px;
  }
  .promise__list {
    margin: 50px auto 0;
    width: 1000px;
  }
  .promise__list.flex {
    flex-wrap: nowrap;
  }
  .promise__list .item {
    width: 321px;
  }
  .promise__list .item:nth-of-type(3) {
    margin-top: 0;
  }
}

/* --------------------------------------------------
  .catch
-------------------------------------------------- */
.catch {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 750 / 988;
  background-image: url(../images/catch/bg_sp.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.catch h2 {
  width: 100%;
}

@media (min-width: 751px) {
  .catch {
    background-image: url(../images/catch/bg.jpg);
    aspect-ratio: unset; 
  }
  .catch h2 {
    max-width: 1000px;
    padding: 15px 0 20px;
  }
}


/* --------------------------------------------------
  .records
-------------------------------------------------- */
.records {
  padding-bottom: calc( 60 / 750 * 100vw );
  background-image: url(../images/records/bg_sp.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.records h2 {
  padding-top: calc( 130 / 750 * 100vw );
  font-size: calc( 60 / 750 * 100vw );
  font-weight: 800;
  text-align: center;
}
.records .txt01 {
  position: relative;
  padding-top: calc( 36 / 750 * 100vw );
  font-size: calc( 24 / 750 * 100vw );
  text-align: center;
}
.records .txt01::after {
  position: absolute;
  bottom: calc( -45 / 750 * 100vw ); left: 50%;
  transform: translateX(-50%);
  content: '';
  display: block;
  width: calc( 214 / 750 * 100vw );
  height: 5px;
  background: linear-gradient(0.25turn, #000 0%, #000 50%, #e2c617 50%, #e2c617 100%);
}
.records__list {
  margin: calc( 100 / 750 * 100vw ) calc( 30 / 750 * 100vw ) 0;
}
.records__list.flex {
  flex-wrap: wrap;
}
.records__list .item {
  width: calc( 300 / 750 * 100vw );
  display: flex;
  justify-content: flex-start;
  flex-flow: column;
}
.records__list .item .img {
  display: block;
  box-shadow: 1px 1px 7px rgba(0, 0, 0, .43);
}
.records__list .item dt {
  padding-top: calc( 12 / 750 * 100vw );
  font-size: calc( 19 / 750 * 100vw );
  font-weight: 800;
  line-height: 1.3;
}
.records__list .item dd {
  font-size: calc( 16 / 750 * 100vw );
  font-weight: 700;
  margin-top: auto;
  margin-bottom: calc( 50 / 750 * 100vw );
  padding-top: calc( 12 / 750 * 100vw );
  display: table;
  width: 100%;
}
.records__list .item dd span {
  display: table-cell;
  text-align: left;
}
.records__list .item dd .price {
  font-size: calc( 32 / 750 * 100vw );
  font-weight: 900;
  text-align: right;
}
.records .morebtn {
  display: block;
  margin: calc( 30 / 750 * 100vw ) auto 0;
  padding: 15px;
  width: calc( 350 / 750 * 100vw );
  font-size: calc( 45 / 750 * 100vw );
  font-weight: 800;
  text-align: center;
  background-color: #e2c617;
  border-radius: 20px;
  cursor: pointer;
}
.records .morebtn:hover {
  opacity: 0.8;
}

@media (min-width: 751px) {
  .records {
    padding-bottom: 55px;
    background-image: url(../images/records/bg.jpg);
  }
  .records h2 {
    padding-top: 115px;
    font-size: 9.6rem;
    letter-spacing: 0.1em;
  }
  .records .txt01 {
    padding-top: 55px;
    font-size: 3.8rem;
  }
  .records .txt01::after {
    bottom: -70px;
    width: 340px;
  }
  .records__list {
    margin: 130px auto 0;
  }
  .records__list .item {
    width: 320px;
  }
  .records__list .item:last-of-type {
    margin-right: auto;
    margin-left: calc( (1000px - 3 * 320px) / 2 );
  }
  .records__list .item .img img {
    width: 100%;
  }
  .records__list .item dt {
    font-size: 2rem;
    letter-spacing: 0.1em;
    padding-top: 12px;
  }
  .records__list .item dd {
    font-size: 1.95rem;
    letter-spacing: 0.1em;
    margin-bottom: 50px;
    padding-top: 12px;
  }
  .records__list .item dd .price {
    font-size: 3.4rem;
  }
  .records .morebtn {
    margin: 0 auto;
    font-size: 4.5rem;
    letter-spacing: 0.08rem;
    width: 350px;
  }
}


/* --------------------------------------------------
  .category
-------------------------------------------------- */
.category {
  padding-bottom: calc( 130 / 750 * 100vw );
}
.category h2 {
  padding-top: calc( 90 / 750 * 100vw );
  font-size: calc( 60 / 750 * 100vw );
  font-weight: 800;
  letter-spacing: 0.1em;
}
.category h2 span {
  position: relative;
  display: block;
  width: fit-content;
  margin: 0 auto;
}
.category h2 span::after {
  position: absolute;
  display: block;
  content: '';
  width: 100%;
  height: calc( 26 / 750 * 100vw );
  background-color: #fff600;
  transform: translateY(-75%);
  z-index: -1;
}
.category h2 span + span {
  padding-top: calc( 20 / 750 * 100vw );
}
.category__list {
  margin-top: calc( 25 / 750 * 100vw );
}
.category__list.flex {
  flex-wrap: wrap;
}
.category__list .item {
  width: calc( 345 / 750 * 100vw );
  box-shadow: 1px 1px 7px rgba(0, 0, 0, .28);
  margin-top: calc( 40 / 750 * 100vw );
}

@media (min-width: 751px) {
  .category {
    padding-bottom: 70px;
  }
  .category h2 {
    font-size: 6rem;
    padding-top: 90px;
  }
  .category h2 span::after {
    height: 26px;
  }
  .category h2 span + span {
    padding-top: 20px;
  }
  .category__list {
    margin-top: 15px;
  }
  .category__list .item {
    width: 318px;
    margin-top: 40px;
  }
}


/* --------------------------------------------------
  .flow
-------------------------------------------------- */
.flow h2 {
  padding-top: calc( 60 / 750 * 100vw );
  font-size: calc( 59 / 750 * 100vw );
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.2em;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
}
.flow h2 span {
  position: relative;
}
.flow h2 span::after {
  position: absolute;
  top: 50%; left: 0;
  transform: translateY(-50%);
  content: '';
  display: block;
  width: calc( 67 / 750 * 100vw );
  height: auto;
  aspect-ratio: 1 / 1 ;
  background-color: #e1c617;
  z-index: -1;
}
.flow h2 span + span {
  margin-left: calc( 15 / 750 * 100vw );
}
.flow .txt-induction {
  font-size: calc( 30 / 750 * 100vw );
  font-weight: 700;
  text-align: center;
  line-height: 1;
  letter-spacing: 0;
  padding-top: calc( 55 / 750 * 100vw );
}
.flow__tabmenu {
  margin-top: calc( 40 / 750 * 100vw );
}
.flow__tabmenu .item {
  display: flex;
  width: calc( 100% / 3 );
  height: auto;
  aspect-ratio: 1 / 1 ;
  border: #2d2f35 2px solid;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.flow__tabmenu .item:hover {
  background-color: #e1c617;
}
.flow__tabmenu .item.active {
  background-color: #e1c617;
  cursor: auto;
}
.flow__tabmenu .item:nth-of-type(1) img {
  width: calc( 169 / 750 * 100vw );
}
.flow__tabmenu .item:nth-of-type(2) img {
  width: calc( 171 / 750 * 100vw );
}
.flow__tabmenu .item:nth-of-type(3) img {
  width: calc( 172 / 750 * 100vw );
}
.flow__tabmenu .item.active:nth-of-type(1) img {
  width: calc( 189 / 750 * 100vw );
}
.flow__tabmenu .item.active:nth-of-type(2) img {
  width: calc( 190 / 750 * 100vw );
}
.flow__tabmenu .item.active:nth-of-type(3) img {
  width: calc( 191 / 750 * 100vw );
}
.flow__tabcontent {
  display: none;
  border: #2d2f35 2px solid;
  padding-bottom: 30px;
}
.flow__tabcontent.active {
  display: block;
}
.flow__tabcontent .inner {
  padding: 0 calc( 40 / 750 * 100vw );
}
.flow__tabcontent h3 {
  width: fit-content;
  margin: 0 auto;
  padding-top: calc( 80 / 750 * 100vw );
  font-size: calc( 58 / 750 * 100vw );
  font-weight: 800;
  letter-spacing: 0;
  position: relative;
}
.flow__tabcontent h3::after {
  position: absolute;
  display: block;
  content: '';
  width: 100%;
  height: calc( 20 / 750 * 100vw );
  background-color: #e1c617;
  transform: translateY(-75%);
  z-index: -1;
}
.flow__tabcontent .leadtxt {
  font-size: calc( 32 / 750 * 100vw );
  line-height: 1.5;
  padding-top: 40px;
}
.flow__tabcontent .flow-list {
  margin-top: calc( 90 / 750 * 100vw );
}
.flow__tabcontent .flow-list .flow-list-item {
  margin-bottom: calc( 80 / 750 * 100vw );
}
.flow__tabcontent .flow-list .flow-list-item .flex {
  align-items: center;
}
.flow__tabcontent .flow-list .flow-list-item .img {
  width: calc( 315 / 750 * 100vw );
}
.flow__tabcontent--onsite .flow-list .flow-list-item:nth-of-type(1) dt {
  width: calc( 240 / 750 * 100vw );
}
.flow__tabcontent--onsite .flow-list .flow-list-item:nth-of-type(2) dt {
  width: calc( 228 / 750 * 100vw );
}
.flow__tabcontent--onsite .flow-list .flow-list-item:nth-of-type(3) dt {
  width: calc( 226 / 750 * 100vw );
}
.flow__tabcontent--delivery .flow-list .flow-list-item:nth-of-type(1) dt {
  width: calc( 240 / 750 * 100vw );
}
.flow__tabcontent--delivery .flow-list .flow-list-item:nth-of-type(2) dt {
  width: calc( 228 / 750 * 100vw );
}
.flow__tabcontent--delivery .flow-list .flow-list-item:nth-of-type(3) dt {
  width: calc( 245 / 750 * 100vw );
}
.flow__tabcontent--store .flow-list .flow-list-item:nth-of-type(1) dt {
  width: calc( 221 / 750 * 100vw );
}
.flow__tabcontent--store .flow-list .flow-list-item:nth-of-type(2) dt {
  width: calc( 228 / 750 * 100vw );
}
.flow__tabcontent--store .flow-list .flow-list-item:nth-of-type(3) dt {
  width: calc( 226 / 750 * 100vw );
}
.flow__tabcontent .flow-list .flow-list-item dd {
  margin-top: 36px;
  font-size: calc( 32 / 750 * 100vw );
  letter-spacing: 0;
  line-height: 1.5;
}
.flow__tabcontent .flow-list .flow-list-item dd span {
  color: #aa0000;
  font-weight: 700;
}
.flow__tabcontent .fuman-h4 {
  background-image: url(../images/flow/step-fuman-h4-bg_sp.png);
  background-size: 100%;
  background-repeat: no-repeat;
  aspect-ratio: 709 / 143;
  font-size: calc( 36 / 750 * 100vw );
  font-weight: 800;
  line-height: 1.4;
  color: #fff;
  text-align: center;
  padding-top: calc( 10 / 750 * 100vw );
}
.flow__tabcontent .fuman-txt {
  margin-top: calc( 30 / 750 * 100vw );
  color: #aa0000;
  font-size: calc( 45 / 750 * 100vw );
  font-weight: 900;
  text-align: center;
  letter-spacing: 0;
}
.flow__tabcontent .fuman-txt span {
  position: relative;
  display: inline-block;
  line-height: 1.5;
}
.flow__tabcontent .fuman-txt span:nth-of-type(1)::after,
.flow__tabcontent .fuman-txt span:nth-of-type(2)::after {
  position: absolute;
  bottom: -10%;
  display: block;
  content: '';
  width: 100%;
  height: calc( 12 / 750 * 100vw );
  background-color: #f0cd00;
  transform: translateY(-200%);
  z-index: -1;
}
.flow__tabcontent .fuman-txt span:nth-of-type(3) {
  display: block;
  font-size: calc( 56 / 750 * 100vw );
  line-height: 2;
}
.flow__tabcontent .fuman-img {
  display: block;
  width: calc( 605 / 750 * 100vw );
  margin: calc( 30 / 750 * 100vw ) auto 0;
}

@media (min-width: 751px) {
  .flow h2 {
    padding-top: 125px;
    font-size: 7.8rem;
  }
  .flow h2 span::after {
    width: 94px;
  }
  .flow h2 span + span {
    margin-left: 20px;
  }
  .flow .txt-induction {
    font-size: 3.5rem;
    padding-top: 70px;
  }
  .flow .txt-induction > span.pc {
    display: inline;
  }
  .flow__tabmenu {
    margin-top: 30px;
  }
  .flow__tabmenu .item {
    aspect-ratio: 336 / 199;
  }
  .flow__tabmenu .item img {
    width: fit-content!important;
  }
  .flow__tabcontent h3 {
    padding-top: 60px;
    font-size: 5.8rem;
  }
  .flow__tabcontent h3::after {
    height: 20px;
  }
  .flow__tabcontent .leadtxt {
    font-size: 3.2rem;
    width: 620px;
    margin: 0 auto;
  }
  .flow__tabcontent .inner {
    padding: 0;
  }
  .flow__tabcontent .flow-list {
    margin-top: 70px;
  }
  .flow__tabcontent .flow-list .flow-list-item {
    margin-bottom: 70px;
  }
  .flow__tabcontent .flow-list .flow-list-item .flex {
    align-items: flex-start;
  }
  .flow__tabcontent .flow-list .flow-list-item .img {
    width: 315px;
    height: 280px;
  }
  .flow__tabcontent .flow-list .flow-list-item .img + div {
    padding: 0 20px 0 35px;
    width: 685px;
  }
  .flow__tabcontent--onsite .flow-list .flow-list-item:nth-of-type(1) dt {
    width: 497px;
  }
  .flow__tabcontent--onsite .flow-list .flow-list-item:nth-of-type(2) dt {
    width: 351px;
  }
  .flow__tabcontent--onsite .flow-list .flow-list-item:nth-of-type(3) dt {
    width: 555px;
  }
  .flow__tabcontent--delivery .flow-list .flow-list-item:nth-of-type(1) dt {
    width: 497px;
  }
  .flow__tabcontent--delivery .flow-list .flow-list-item:nth-of-type(2) dt {
    width: 445px;
  }
  .flow__tabcontent--delivery .flow-list .flow-list-item:nth-of-type(3) dt {
    width: 555px;
  }
  .flow__tabcontent--store .flow-list .flow-list-item:nth-of-type(1) dt {
    width: 401px;
  }
  .flow__tabcontent--store .flow-list .flow-list-item:nth-of-type(2) dt {
    width: 353px;
  }
  .flow__tabcontent--store .flow-list .flow-list-item:nth-of-type(3) dt {
    width: 640px;
  }
  .flow__tabcontent .flow-list .flow-list-item dd {
    margin-top: 30px;
    font-size: 3rem;
  }
  .flow__tabcontent .fuman-h4 {
    font-size: 4rem;
    line-height: 1;
    padding-top: 25px;
    background-image: url(../images/flow/step-fuman-h4-bg.png);
    aspect-ratio: 1000 / 110;
  }
  .flow__tabcontent .fuman-txt {
    margin-top: 0;
    font-size: 3.6rem;
    line-height: 1;
  }
  .flow__tabcontent .fuman-txt span:nth-of-type(3) {
    display: inline-block;
    font-size: 5.6rem;
  }
  .flow__tabcontent .fuman-txt span:nth-of-type(1)::after,
  .flow__tabcontent .fuman-txt span:nth-of-type(2)::after {
    height: 15px;
    transform: translateY(-25%);
  }
  .flow__tabcontent .fuman-img {
    margin-top: 24px;
    width: 767px;
  }
}


/* --------------------------------------------------
  .selectable
-------------------------------------------------- */
.selectable h2 {
  margin-top: calc( 50 / 750 * 100vw );
  font-size: calc( 58 / 750 * 100vw );
  font-weight: 800;
  line-height: 1.55;
  text-align: center;
}
.selectable__feature {
  display: none;
  margin-top: calc( 100 / 750 * 100vw );
}
.selectable__feature.active {
  display: block;
}
.selectable__feature .txt01 {
  margin: calc( 30 / 750 * 100vw ) auto 0;
  width: calc( 610 / 750 * 100vw );
  font-size: calc( 32 / 750 * 100vw );
  line-height: 1.8;
  letter-spacing: 0;
}
.selectable__feature h4 {
  margin: calc( 40 / 750 * 100vw ) auto 0;
  width: calc( 582 / 750 * 100vw );
}
.selectable__feature .feature-list {
  margin-top: calc( 50 / 750 * 100vw );
  padding-bottom: calc( 90 / 750 * 100vw );
}
.selectable__feature .feature-list .feature-list-item {
  margin-top: calc( 60 / 750 * 100vw );
}
.selectable__feature .feature-list .feature-list-item .img {
  display: block;
  width: calc( 649 / 750 * 100vw );
  margin: 0 auto;
}
.selectable__feature .feature-list .feature-list-item dt {
  padding-top: calc( 36 / 750 * 100vw );
  text-align: center;
  font-size: calc( 48 / 750 * 100vw );
  font-weight: 800;
  color: #435a6e;
  letter-spacing: 0;
  line-height: 1.38;
}
.selectable__feature .feature-list .feature-list-item dd {
  padding-top: calc( 30 / 750 * 100vw );
  margin: 0 auto;
  width: calc( 610 / 750 * 100vw );
  font-size: calc( 32 / 750 * 100vw );
  line-height: 1.69;
  letter-spacing: 0;
}
.selectable__feature--onsite .imagination .imagination-container {
  background-image: url(../images/selectable/onsite-imagination-bg_sp.jpg);
  background-size: cover;
  background-position: left bottom;
  aspect-ratio: 750 / 1623;
}
.selectable__feature .imagination h4 {
  margin: 0;
  width: 100%;
  color: #fff;
  font-weight: 800;
  font-size: calc( 58 / 750 * 100vw );
  line-height: 1.2;
  text-align: center;
  padding-top: calc( 58 / 750 * 100vw );
  background-image: url(../images/selectable/imagination-h4-bg_sp.png);
  background-size: 100%;
  background-position: center top;
  aspect-ratio: 750 / 406;
}
.selectable__feature .imagination h4 .large {
  font-size: calc( 88 / 750 * 100vw );
}
.selectable__feature .imagination .imagination-list {
  position: relative;
}
.selectable__feature .imagination .imagination-list-item {
  position: absolute;
  width: calc( 370 / 750 * 100vw );
}
.selectable__feature--onsite .imagination-list-item:nth-of-type(1) {
  left: 1%;
}
.selectable__feature--onsite .imagination-list-item:nth-of-type(2) {
  top: calc( 95 / 750 * 100vw ); right: 1%;
}
.selectable__feature--onsite .imagination-list-item:nth-of-type(3) {
  top: calc(368 / 750 * 100vw); left: 17%;
}
.selectable__feature--onsite .imagination-list-item:nth-of-type(4) {
  top: calc(725 / 750 * 100vw); right: 0;
}
.selectable__feature .imagination-omakase .txt01 {
  margin: 0;
  width: 100%;
  padding-top: calc( 110 / 750 * 100vw );
  text-align: center;
  font-size: calc(48 / 750 * 100vw);
  font-weight: 700;
  color: #435a6e;
  letter-spacing: -0.1em;
  line-height: 1.4;
}
.selectable__feature .imagination-omakase .txt01 span {
  display: block;
  font-size: calc(72 / 750 * 100vw);
}
.selectable__feature .imagination-omakase .omakase-list {
  margin-top: calc( 110 / 750 * 100vw );
}
.selectable__feature .imagination-omakase .omakase-list.flex {
  flex-wrap: wrap;
}
.selectable__feature .imagination-omakase .omakase-list-item {
  position: relative;
  width: calc(345 / 750 * 100vw);
  border: 6px solid #435a6e;
  border-radius: 20px;
  margin-bottom: calc( 110 / 750 * 100vw );
  padding: calc(215 / 750 * 100vw) calc(20 / 750 * 100vw) calc( 40 / 750 * 100vw );
  text-align: center;
  color: #435a6e;
}
.selectable__feature .imagination-omakase .omakase-list-item dt {
  font-size: calc(48 / 750 * 100vw);
  line-height: 1.38;
  letter-spacing: 0;
}
.selectable__feature .imagination-omakase .omakase-list-item dd {
  padding-top: calc( 30 / 750 * 100vw );
  font-size: calc(32 / 750 * 100vw);
  line-height: 1.69;
  letter-spacing: 0;
  color: #252525;
  text-align: left;
}
.selectable__feature .imagination-omakase .omakase-list-item::before {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  content: '';
  background-size: 100%;
  background-repeat: no-repeat;
  height: auto;
}
.selectable__feature--onsite .imagination-omakase .omakase-list-item:nth-of-type(1)::before {
  top: calc(80 / 750 * 100vw);
  background-image: url(../images/selectable/onsite-omakase-icon01.png);
  width: calc(182 / 750 * 100vw);
  aspect-ratio: 182 / 103;
}
.selectable__feature--onsite .imagination-omakase .omakase-list-item:nth-of-type(2)::before {
  top: calc(50 / 750 * 100vw);
  background-image: url(../images/selectable/onsite-omakase-icon02.png);
  width: calc(104 / 750 * 100vw);
  aspect-ratio: 104 / 140;
}
.selectable__feature--onsite .imagination-omakase .omakase-list-item:nth-of-type(3)::before {
  top: calc(60 / 750 * 100vw);
  background-image: url(../images/selectable/onsite-omakase-icon03.png);
  width: calc(119 / 750 * 100vw);
  aspect-ratio: 119 / 116;
}
.selectable__feature--onsite .imagination-omakase .omakase-list-item:nth-of-type(4)::before {
  top: calc(60 / 750 * 100vw);
  background-image: url(../images/selectable/onsite-omakase-icon04.png);
  width: calc(115 / 750 * 100vw);
  aspect-ratio: 115 / 134;
}
.selectable__necessary {
  padding: calc( 65 / 750 * 100vw ) 0 calc( 110 / 750 * 100vw );
  background-image: url(../images/selectable/necessary-bg_sp.jpg);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.selectable__necessary .content {
  display: none;
  margin: 0 auto;
  padding-bottom: calc( 70 / 750 * 100vw );
  width: calc( 690 / 750 * 100vw );
  border: 4px solid #4a5273;
  border-radius: 20px;
  background-color: #fefef6;
}
.selectable__necessary .content.active {
  display: block;
}
.selectable__necessary .content h4 {
  margin: 0;
  padding-top: calc( 60 / 750 * 100vw );
  font-size: calc( 40 / 750 * 100vw );
  font-weight: 800;
  text-align: center;
  width: auto;
}
.selectable__necessary .content .txt01,
.selectable__necessary .content .txt02,
.selectable__necessary .content .txt03,
.selectable__necessary .content .txt04,
.selectable__necessary .content .dllink {
  width: calc( 580 / 750 * 100vw );
  margin: 0 auto;
  font-size: calc( 32 / 750 * 100vw );
  line-height: 1.69;
}
.selectable__necessary .content .txt01 {
  margin-top: calc( 30 / 750 * 100vw );
}
.selectable__necessary .content .txt01 .txt-underline {
  color: inherit;
  font-weight: inherit;
}
.selectable__necessary .content .list-container {
  position: relative;
  margin: calc( 50 / 750 * 100vw ) auto 0;
  padding: 0 calc( 24 / 750 * 100vw ) calc( 40 / 750 * 100vw );
  width: calc( 633 / 750 * 100vw );
  border-radius: 20px;
  background-color: #ededf1;
}
.selectable__necessary .content .list-container::before {
  position: absolute;
  top: 0; right: 0;
  transform: translateY(-50%);
  display: block;
  content: '';
  width: calc( 119 / 750 * 100vw );
  aspect-ratio: 137 / 128;
  background-image: url(../images/flow/idcard.png);
  background-size: 100%;
  background-repeat: no-repeat;
}
.selectable__necessary .content .list-container h5 {
  padding-top: calc( 40 / 750 * 100vw );
  font-size: calc( 36 / 750 * 100vw );
  font-weight: 800;
  text-align: center;
}
.selectable__necessary .content .list-container .list {
  margin-top: calc( 40 / 750 * 100vw );
}
.selectable__necessary .content .list-container .list .item {
  margin-bottom: 0;
  font-size: calc( 32 / 750 * 100vw );
  font-weight: 800;
  line-height: 1.69;
  letter-spacing: 0;
  list-style: disc;
  margin-left: calc( 24 / 750 * 100vw );
}
.selectable__necessary .content .list-container .note {
  padding-top: calc( 40 / 750 * 100vw );
  font-size: calc( 32 / 750 * 100vw );
  line-height: 1.69;
  letter-spacing: 0;
}
.selectable__necessary .content .txt02 {
  margin-top: calc( 45 / 750 * 100vw );
  letter-spacing: 0;
}
.selectable__necessary .content .txt03,
.selectable__necessary .content .txt04 {
  margin-top: calc( 20 / 750 * 100vw );
  letter-spacing: 0;
}
.selectable__necessary .content .dllink {
  display: block;
  color: #0259b1;
  margin-top: calc( 35 / 750 * 100vw );
  letter-spacing: 0;
}
.selectable__feature--delivery .imagination .imagination-container {
  background-image: url(../images/selectable/delivery-imagination-bg_sp.jpg);
  background-size: cover;
  background-position: left bottom;
  aspect-ratio: 750 / 1347;
}
.selectable__feature--delivery .imagination-list-item:nth-of-type(1) {
  left: 1%;
}
.selectable__feature--delivery .imagination-list-item:nth-of-type(2) {
  top: calc( 130 / 750 * 100vw ); right: 1%;
}
.selectable__feature--delivery .imagination-list-item:nth-of-type(3) {
  top: calc( 530 / 750 * 100vw); right: 1%;
}
.selectable__feature--delivery .imagination-omakase .omakase-list-item:nth-of-type(1)::before {
  top: calc(60 / 750 * 100vw);
  background-image: url(../images/selectable/delivery-omakase-icon01.png);
  width: calc(127 / 750 * 100vw);
  aspect-ratio: 127 / 138;
}
.selectable__feature--delivery .imagination-omakase .omakase-list-item:nth-of-type(2)::before {
  top: calc(60 / 750 * 100vw);
  background-image: url(../images/selectable/delivery-omakase-icon02.png);
  width: calc(154 / 750 * 100vw);
  aspect-ratio: 154 / 136;
}
.selectable__feature--delivery .imagination-omakase .omakase-list-item:nth-of-type(3)::before {
  top: calc(55 / 750 * 100vw);
  background-image: url(../images/selectable/delivery-omakase-icon03.png);
  width: calc(118 / 750 * 100vw);
  aspect-ratio: 118 / 116;
}
.selectable__feature--delivery .imagination-omakase .omakase-list-item:nth-of-type(4)::before {
  top: calc(40 / 750 * 100vw);
  background-image: url(../images/selectable/delivery-omakase-icon04.png);
  width: calc(154 / 750 * 100vw);
  aspect-ratio: 154 / 153;
}
.selectable__feature--store h4 {
  margin-top: calc( 100 / 750 * 100vw );
  font-size: calc(70 / 750 * 100vw);
  font-weight: 800;
  text-align: center;
  letter-spacing: 0;
  color: #435a6e;
}
.selectable__feature--store .store-list {
  margin-top: calc( 90 / 750 * 100vw );
  padding: 0 calc(45 / 750 * 100vw);
}
.selectable__feature--store .store-list .store-list-item {
  padding-bottom: calc( 90 / 750 * 100vw );
}
.selectable__feature--store .store-list .store-list-item h5 {
  font-size: calc(58 / 750 * 100vw);
  font-weight: 800;
  text-align: center;
}
.selectable__feature--store .store-list .store-list-item .img {
  display: block;
  margin-top: calc( 40 / 750 * 100vw );
}
.selectable__feature--store .store-list .store-list-item .info-list {
  margin-top: calc( 30 / 750 * 100vw );
  padding: 0 calc(30 / 750 * 100vw);
  font-size: calc(36 / 750 * 100vw);
  line-height: 1.4;
  letter-spacing: 0;
}
.selectable__feature--store .store-list .store-list-item .info-list .info-list-item {
  display: flex;
  gap: calc(40 / 750 * 100vw);
  width: 100%;
}
.selectable__feature--store .store-list .store-list-item .info-list .info-list-item + .info-list-item {
  margin-top: calc( 10 / 750 * 100vw );
}
.selectable__feature--store .store-list .store-list-item .info-list .info-list-item dt {
  width: calc(150 / 750 * 100vw);
  text-align-last: justify;
  font-weight: 800;
}
.selectable__feature--store .store-list .store-list-item .info-list .info-list-item dd {
  font-weight: 600;
}
.selectable__feature--store .necessary h4 {
  color: inherit;
}

@media (min-width: 751px) {
  .selectable h2 {
    margin-top: 120px;
    font-size: 5.8rem;
    font-weight: 900;
  }
  .selectable h3 {
    width: 1000px;
    margin: 0 auto;
  }
  .selectable__feature {
    margin-top: 100px;
  }
  .selectable__feature h3 img {
    width: 100%;
  }
  .selectable__feature .txt01 {
    margin: 40px auto 0;
    width: 900px;
    font-size: 2.9rem;
  }
  .selectable__feature h4 {
    margin: 70px auto 0;
    width: fit-content;
  }
  .selectable__feature .feature-list {
    margin: 80px auto 0;
    padding-bottom: 60px;
    width: 1000px;
  }
  .selectable__feature .feature-list .feature-list-item {
    margin-top: 0;
    width: 322px;
  }
  .selectable__feature .feature-list .feature-list-item .img {
    width: 100%;
  }
  .selectable__feature .feature-list .feature-list-item dt {
    padding: 20px 0;
    font-size: 2.8rem;
    font-weight: 900;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .selectable__feature .feature-list .feature-list-item dd {
    padding-top: 0;
    width: 100%;
    font-size: 2.5rem;
  }
  .selectable__feature--onsite .imagination .imagination-container {
    background-image: url(../images/selectable/onsite-imagination-bg.jpg);
    background-position: center bottom;
    aspect-ratio: unset;
    height: 663px;
    position: relative;
    overflow: hidden;
  }
  .selectable__feature--onsite .imagination .imagination-container::after {
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    display: block;
    content: '';
    width: 449px;
    height: 464px;
    background-image: url(../images/selectable/onsite-imagination-woman.png);
    background-size: 100%;
    background-repeat: no-repeat;
  }
  .selectable__feature .imagination h4 {
    position: relative;
    padding-top: 20px;
    font-size: 3.7rem;
    background-image: url(../images/selectable/imagination-h4-bg.png);
    width: 789px;
    aspect-ratio: 789 / 200;
    margin: 0 auto;
    z-index: 1;
  }
  .selectable__feature .imagination h4 .large {
    font-size: 5.6rem;
  }
  .selectable__feature .imagination .imagination-list {
    width: 1000px;
    margin: 0 auto;
  }
  .selectable__feature .imagination .imagination-list-item {
    position: relative;
    top: unset; right: unset; bottom: unset; left: unset;
    overflow: hidden;
  }
  .selectable__feature--onsite .imagination-list-item:nth-of-type(1) {
    width: 338px;
    margin-top: -60px;
    margin-left: 90px;
  }
  .selectable__feature--onsite .imagination-list-item:nth-of-type(2) {
    width: 323px;
    margin-top: -360px;
    margin-right: 90px;
    margin-left: auto;
  }
  .selectable__feature--onsite .imagination-list-item:nth-of-type(3) {
    width: 300px;
    margin-top: -40px;
    margin-left: 20px;
  }
  .selectable__feature--onsite .imagination-list-item:nth-of-type(4) {
    width: 344px;
    margin-top: -350px;
    margin-right: 8px;
    margin-left: auto;
  }
  .selectable__feature .imagination-omakase {
    padding-bottom: 80px;
  }
  .selectable__feature .imagination-omakase .txt01 {
    padding-top: 50px;
    font-size: 4.8rem;
    font-weight: 900;
  }
  .selectable__feature .imagination-omakase .txt01 span {
    font-size: 7.2rem;
  }
  .selectable__feature .imagination-omakase .omakase-list {
    margin-top: 50px;
  }
  .selectable__feature .imagination-omakase .omakase-list.flex {
    flex-wrap: nowrap;
  }
  .selectable__feature .imagination-omakase .omakase-list-item {
    width: 240px;
    padding: 150px 15px 30px;
    margin-bottom: 0;
  }
  .selectable__feature .imagination-omakase .omakase-list-item dt {
    font-size: 3.3rem;
    font-weight: 900;
  }
  .selectable__feature .imagination-omakase .omakase-list-item dd {
    font-size: 2.2rem;
    padding-top: 30px;
  }
  .selectable__feature--onsite .imagination-omakase .omakase-list-item:nth-of-type(1)::before {
    top: 55px;
    width: 129px;
  }
  .selectable__feature--onsite .imagination-omakase .omakase-list-item:nth-of-type(2)::before {
    top: 35px;
    width: 73px;
  }
  .selectable__feature--onsite .imagination-omakase .omakase-list-item:nth-of-type(3)::before {
    top: 38px;
    width: 82px;
  }
  .selectable__feature--onsite .imagination-omakase .omakase-list-item:nth-of-type(4)::before {
    top: 33px;
    width: 81px;
  }
  .selectable__necessary {
    padding: 55px 0;
    background-image: url(../images/selectable/necessary-bg.jpg);
  }
  .selectable__necessary .content {
    width: 1000px;
    padding-bottom: 70px;
  }
  .selectable__necessary .content h4 {
    padding-top: 50px;
    font-size: 3.9rem;
  }
  .selectable__necessary .content .txt01 {
    width: 675px;
    font-size: 2.6rem;
    margin-top: 30px;
  }
  .selectable__necessary .content .list-container {
    margin: 45px auto 0;
    padding: 0 100px 25px;
    width: 590px;
  }
  .selectable__necessary .content .list-container::before {
    width: 130px;
    transform: translate(30px, -45px);
  }
  .selectable__necessary .content .list-container h5 {
    padding-top: 25px;
    font-size: 2.4rem;
  }
  .selectable__necessary .content .list-container .list {
    margin-top: 20px;
  }
  .selectable__necessary .content .list-container .list .item {
    font-size: 2.1rem;
    margin-left: 2.1rem;
  }
  .selectable__necessary .content .list-container .note {
    padding-top: 25px;
    font-size: 2.1rem;
  }
  .selectable__necessary .content .txt02 {
    font-size: 2.3rem;
    margin-top: 30px;
    width: 590px;
    letter-spacing: 0;
  }
  .selectable__necessary .content .txt03,
  .selectable__necessary .content .txt04 {
    width: 590px;
    font-size: 2.3rem;
    letter-spacing: 0;
    margin-top: 40px;
  }
  .selectable__necessary .content .dllink {
    font-size: 2.3rem;
    margin-top: 30px;
    width: 590px;
    font-weight: 800;
    letter-spacing: 0;
  }
  .selectable__feature--delivery .imagination .imagination-container {
    background-image: url(../images/selectable/delivery-imagination-bg.jpg);
    background-position: center bottom;
    aspect-ratio: unset;
    height: 663px;
    position: relative;
    overflow-y: hidden;
  }
  .selectable__feature--delivery .imagination .imagination-container::after {
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-45%);
    display: block;
    content: '';
    background-image: url(../images/selectable/delivery-imagination-man.png);
    background-size: 100%;
    background-repeat: no-repeat;
    width: 404px;
    height: 477px;
  }
  .selectable__feature--delivery .imagination-list-item:nth-of-type(1) {
    width: 338px;
    margin-top: -70px;
    margin-left: 90px;
  }
  .selectable__feature--delivery .imagination-list-item:nth-of-type(2) {
    width: 344px;
    margin-top: -310px;
    margin-right: 60px;
    margin-left: auto;
  }
  .selectable__feature--delivery .imagination-list-item:nth-of-type(3) {
    width: 300px;
    margin-top: -100px;
    margin-left: 17px;
  }
  .selectable__feature--delivery .imagination-omakase .omakase-list-item:nth-of-type(1)::before {
    width: 94px;
    top: 30px;
  }
  .selectable__feature--delivery .imagination-omakase .omakase-list-item:nth-of-type(2)::before {
    width: 105px;
    top: 36px;
  }
  .selectable__feature--delivery .imagination-omakase .omakase-list-item:nth-of-type(3)::before {
    width: 82px;
    top: 38px;
  }
  .selectable__feature--delivery .imagination-omakase .omakase-list-item:nth-of-type(4)::before {
    width: 96px;
    top: 36px;
  }
  .selectable__feature--store h4 {
    font-size: 7rem;
    font-weight: 900;
    margin-top: 110px;
  }
  .selectable__feature--store .store-list {
    margin: 60px auto 0;
    padding: 0;
    width: 1000px;
  }
  .selectable__feature--store .store-list .store-list-item {
    width: 470px;
  }
  .selectable__feature--store .store-list .store-list-item h5 {
    font-size: 4.1rem;
    font-weight: 900;
  }
  .selectable__feature--store .store-list .store-list-item .img {
    margin-top: 30px;
  }
  .selectable__feature--store .store-list .store-list-item .info-list {
    margin-top: 25px;
    padding: 0 20px;
    font-size: 2.5rem;
  }
  .selectable__feature--store .store-list .store-list-item .info-list .info-list-item {
    gap: 25px;
  }
  .selectable__feature--store .store-list .store-list-item .info-list .info-list-item dt {
    width: 105px;
  }
}


/* --------------------------------------------------
  .possible
-------------------------------------------------- */
.possible {
  padding: 65px 0 80px;
}
.possible .container {
  background-color: #f4f4f4;
  box-shadow: 0 0 20px rgba(0, 0, 0, .16);
  padding: 0 calc(35 / 750 * 100vw);
}
.possible h2 {
  position: relative;
  padding-top: calc(60 / 750 * 100vw);
  text-align: center;
  font-size: calc(58 / 750 * 100vw);
  font-weight: 800;
  line-height: 1.4;
  width: fit-content;
  margin: 0 auto;
}
.possible h2::after {
  position: absolute;
  right: 0; bottom: 0;
  transform: translate(100%, 20%);
  content: '';
  display: block;
  width: calc(121 / 750 * 100vw);
  aspect-ratio: 121 / 125;
  background-image: url(../images/possible/woman.png);
  background-size: 100%;
  background-repeat: no-repeat;
}
.possible .txt01 {
  padding-top: 40px;
  font-size: calc(24 / 750 * 100vw);
  font-weight: 800;
  text-align: center;
  line-height: 2;
}
.possible .example-list {
  margin-top: 30px;
}
.possible .example-list.flex {
  flex-wrap: wrap;
}
.possible .example-list-item {
  width: calc(320 / 750 * 100vw);
}

@media (min-width: 751px) {
  .possible {
    padding: 40px 0 24px;
  }
  .possible h2 {
    padding-top: 50px;
  }
  .possible .container {
    padding: 0 15px 30px 15px;
  }
  .possible h2 {
    font-size: 5.8rem;
    font-weight: 900;
  }
  .possible h2::after {
    top: 165px; right: -60px; bottom: unset;
    width: 121px;
    transform: unset;
  }
  .possible .txt01 {
    font-size: 2.3rem;
    letter-spacing: 0.1em;
    width: 655px;
    margin: 0 auto;
    padding-top: 20px;
  }
  .possible .example-list.flex {
    flex-wrap: nowrap;
  }
  .possible .example-list-item {
    width: calc( 100% / 4 );
  }
}


/* --------------------------------------------------
  .voice
-------------------------------------------------- */
.voice {
  position: relative;
  background-image: url(../images/voice/bg_sp.jpg);
  background-size: cover;
  background-position: center top;
  padding: calc( 80 / 750 * 100vw ) 0 calc( 160 / 750 * 100vw );
}
.voice::before,
.voice::after {
  position: absolute;
  top: calc(80px + (98 / (750 * 2) * 100vw));
  display: block;
  content: '';
  width: calc(184 / 750 * 100vw);
  height: 4px;
  background-color: #aa0000;
}
.voice::before {
  left: 0;
}
.voice::after {
  right: 0;
}
.voice h2 {
  position: relative;
  width: calc(320 / 750 * 100vw);
  margin: 0 auto;
}
.voice h2::after {
  position: absolute;
  top: calc( 40 / 750 * 100vw );
  right: calc( -195 / 750 * 100vw );
  display: block;
  content: '';
  width: calc( 106 / 750 * 100vw );
  aspect-ratio: 106 / 88;
  background-image: url(../images/voice/h2-deco.png);
  background-size: 100%;
  background-repeat: no-repeat;
}
.voice .swiper {
  margin-top: calc( 56 / 750 * 100vw );
}
.voice .swiper-slide {
  opacity: 0.6;
  transition: 1s;
  height: auto;
}
.voice .swiper-slide-active {
  opacity: 1;
}
.voice .swiper-button-next,
.voice .swiper-button-prev {
  width: calc( 80 / 750 * 100vw );
}
.voice .swiper-button-next:after,
.voice .swiper-button-prev:after {
  display: block;
  color: #fff;
  background-color: #2d2f35;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  text-align: center;
  border-radius: 50px;
  font-size: calc( 30 / 750 * 100vw );
  font-weight: 700;
  line-height: calc( 80 / 750 * 100vw );
}
.voice .swiper-pagination {
  bottom: calc( 120 / 750 * 100vw )!important;
}
.voice .swiper-pagination-bullet {
  width: calc( 16 / 750 * 100vw );
  height: auto;
  aspect-ratio: 1 / 1;
  margin: 0 calc( 15 / 750 * 100vw )!important;
}
.voice .swiper-pagination-bullet-active {
  background-color: #aa0000;
}
.voice__list .list-item {
  width: calc( 600 / 750 * 100vw );
  margin: 0 calc( 20 / 750 * 100vw ) calc( 8 / 750 * 100vw ) calc( 20 / 750 * 100vw );
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
}
.voice__list .list-item .tag {
  display: block;
  width: calc( 300 / 750 * 100vw );
  margin: 0 0 0 auto;
  padding: calc( 10 / 750 * 100vw ) 0;
  background-color: #aa0000;
  color: #fff;
  font-size: calc( 32 / 750 * 100vw );
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  clip-path: polygon(calc( 20 / 750 * 100vw ) 0%, 100% 0, 100% 100%, 0% 100%);
}
.voice__list .list-item .container {
  width: 100%;
  background-color: #fff;
  padding: calc( 30 / 750 * 100vw );
  box-shadow: 0 3px 6px rgba(0, 0, 0, .20);
  letter-spacing: 0;
  flex-grow: 1;
}
.voice__list .list-item .container .img {
  width: 100%;
}
.voice__list .list-item .customer {
  font-size: calc( 32 / 750 * 100vw );
  padding-top: calc( 15 / 750 * 100vw );
}
.voice__list .list-item .title {
  color: #aa0000;
  font-size: calc( 48 / 750 * 100vw );
  font-weight: 800;
  line-height: 1.37;
  text-align: center;
  padding-top: calc( 20 / 750 * 100vw );
}
.voice__list .list-item .txt {
  font-size: calc( 32 / 750 * 100vw );
  line-height: 1.56;
  padding-top: calc( 20 / 750 * 100vw );
}

@media (min-width: 751px) {
  .voice {
    background-image: url(../images/voice/bg.jpg);
    padding:80px 0 140px;
  }
  .voice::before,
  .voice::after {
    width: calc( ( 100% - 382px ) / 2 );
    top: 127px;
  }
  .voice h2 {
    width: 320px;
  }
  .voice h2::after {
    top: 40px;
    right: 50%;
    transform: translateX(350px);
    width: 106px;
  }
  .voice .swiper {
    margin-top: 56px;
  }
  .voice .swiper-button-next,
  .voice .swiper-button-prev {
    width: 80px;
  }
  .voice .swiper-button-next:after,
  .voice .swiper-button-prev:after {
    font-size: 3rem;
    line-height: 80px;
  }
  .voice .swiper-pagination {
    bottom: 70px !important;
  }
  .voice .swiper-pagination-bullet {
    width: 16px;
    margin: 0 15px!important;
  }
  .voice__list .list-item {
    width: 440px;
    margin: 0 20px 8px 290x;
  }
  .voice__list .list-item .tag {
    width: 220px;
    padding: 10px;
    font-size: 2.3rem;
    clip-path: polygon(10% 0%, 100% 0, 100% 100%, 0% 100%);
  }
  .voice__list .list-item .container {
    padding: 18px;
  }
  .voice__list .list-item .customer {
    padding-top: 10px;
    font-size: 2.4rem;
  }
  .voice__list .list-item .title {
    font-size: 3.6rem;
    padding-top: 15px;
  }
  .voice__list .list-item .txt {
    font-size: 2.4rem;
    padding-top: 15px;
  }
}


/* --------------------------------------------------
  .brand
-------------------------------------------------- */
.brand {
  padding-bottom: calc(100 / 750 * 100vw);
}
.brand h2 {
  font-size: calc(58 / 750 * 100vw);
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  padding-top: calc( 100 / 750 * 100vw );
}
.brand__list01 {
  margin: 50px calc(45 / 750 * 100vw) 0;
}
.brand__list01.flex {
  flex-wrap: wrap;
}
.brand__list01 .list-item {
  width: calc(210 / 750 * 100vw);
  aspect-ratio: 210 / 100;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 2px 18px rgba(0, 0, 0, .10);
  margin-bottom: calc(30 / 750 * 100vw);
}
.brand__list01 .list-item:nth-of-type(1) img {
  width: calc(173 / 750 * 100vw);
}
.brand__list01 .list-item:nth-of-type(2) img {
  width: calc(141 / 750 * 100vw);
}
.brand__list01 .list-item:nth-of-type(3) img {
  width: calc(69 / 750 * 100vw);
}
.brand__list01 .list-item:nth-of-type(4) img {
  width: calc(170 / 750 * 100vw);
}
.brand__list01 .list-item:nth-of-type(5) img {
  width: calc(108 / 750 * 100vw);
}
.brand__list01 .list-item:nth-of-type(6) img {
  width: calc(174 / 750 * 100vw);
}
.brand__list01 .list-item:nth-of-type(7) img {
  width: calc(140 / 750 * 100vw);
}
.brand__list01 .list-item:nth-of-type(8) img {
  width: calc(85 / 750 * 100vw);
}
.brand__list01 .list-item:nth-of-type(9) img {
  width: calc(125 / 750 * 100vw);
}
.brand__list02 .list-item--01 img {
  width: calc(246 / 750 * 100vw);
}
.brand__list02 .list-item--02 img {
  width: calc(107 / 750 * 100vw);
}
.brand__list02 .list-item--03 img {
  width: calc(90 / 750 * 100vw);
}
.brand__list02 .list-item--04 img {
  width: calc(133 / 750 * 100vw);
}
.brand__list02 .list-item--05 img {
  width: calc(155 / 750 * 100vw);
}
.brand__list02 .list-item--06 img {
  width: calc(193 / 750 * 100vw);
}
.brand__list02 .list-item--07 img {
  width: calc(190 / 750 * 100vw);
}
.brand__list02 .list-item--08 img {
  width: calc(100 / 750 * 100vw);
}
.brand__list02 .list-item--09 img {
  width: calc(187 / 750 * 100vw);
}
.brand__list02 .list-item--10 img {
  width: calc(140 / 750 * 100vw);
}
.brand__list02 .list-item--11 img {
  width: calc(103 / 750 * 100vw);
}
.brand__list02 .list-item--12 img {
  width: calc(100 / 750 * 100vw);
}
.brand__list02 .list-item--13 img {
  width: calc(153 / 750 * 100vw);
}
.brand__list02 .list-item--14 img {
  width: calc(143 / 750 * 100vw);
}
.brand__list02 .list-item--15 img {
  width: calc(144 / 750 * 100vw);
}
.brand__list02 .list-item--16 img {
  width: calc(100 / 750 * 100vw);
}
.brand__list02 .list-item--17 img {
  width: calc(142 / 750 * 100vw);
}
.brand__list03 .list-item--01 img {
  width: calc(152 / 750 * 100vw);
}
.brand__list03 .list-item--02 img {
  width: calc(240 / 750 * 100vw);
}
.brand__list03 .list-item--03 img {
  width: calc(255 / 750 * 100vw);
}
.brand__list03 .list-item--04 img {
  width: calc(150 / 750 * 100vw);
}
.brand__list03 .list-item--05 img {
  width: calc(251 / 750 * 100vw);
}
.brand__list03 .list-item--06 img {
  width: calc(142 / 750 * 100vw);
}
.brand__list03 .list-item--07 img {
  width: calc(105 / 750 * 100vw);
}
.brand__list03 .list-item--08 img {
  width: calc(241 / 750 * 100vw);
}
.brand__list03 .list-item--09 img {
  width: calc(268 / 750 * 100vw);
}
.brand__list03 .list-item--10 img {
  width: calc(148 / 750 * 100vw);
}
.swiper-brandlist02 {
  width: 100%;
  height: calc(120 / 750 * 100vw);
  margin-top: calc(20 / 750 * 100vw);
  overflow: hidden;
  pointer-events: none;
}
.swiper-brandlist03 {
  width: 100%;
  height: calc(60 / 750 * 100vw);
  margin-top: calc(20 / 750 * 100vw);
  overflow: hidden;
  pointer-events: none;
}
.swiper-brandlist02 .swiper-slide,
.swiper-brandlist03 .swiper-slide {
  width: fit-content;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 calc(20 / 750 * 100vw);
}
.brand__list02.swiper-wrapper,
.brand__list03.swiper-wrapper {
  transition-timing-function: linear;
}

@media (min-width: 751px) {
  .brand {
    padding-bottom: 50px;
  }
  .brand h2 {
    padding-top: 70px;
    font-size: 5.8rem;
    font-weight: 900;
    letter-spacing: 0.1em;
  }
  .brand__list01 {
    margin: 70px auto 0;
    width: 660px;
  }
  .brand__list01 .list-item {
    width: 210px;
    margin-bottom: 30px;
  }
  .brand__list01 .list-item img,
  .brand__list02 .list-item img,
  .brand__list03 .list-item img {
    width: fit-content!important;
  }
  .swiper-brandlist02 {
    width: 100%;
    height: 120px;
    margin: 20px auto 0;
  }
  .swiper-brandlist03 {
    width: 100%;
    height: 60px;
    margin: 20px auto 0;
  }
}


/* --------------------------------------------------
  .faq
-------------------------------------------------- */
.faq {
  background-color: #8193b0;
  padding-bottom: calc( 140 / 750 * 100vw );
}
.faq h2 {
  text-align: center;
  font-size: calc(56 / 750 * 100vw);
  font-weight: 800;
  color: #fff;
  padding-top: calc( 90 / 750 * 100vw );
}
.faq .faq-list {
  width: calc(670 / 750 * 100vw);
  margin: 0 auto;
  padding-top: calc( 80 / 750 * 100vw );
}
.faq .faq-list .faq-list-item {
  background-color: #fff;
  border-radius: 20px;
  padding: calc(20 / 750 * 100vw) calc(90 / 750 * 100vw) calc(20 / 750 * 100vw) calc(120 / 750 * 100vw);
  letter-spacing: 0.05em;
}
.faq .faq-list .faq-list-item + .faq-list-item {
  margin-top: calc( 30 / 750 * 100vw );
}
.faq .faq-list .faq-list-item dt,
.faq .faq-list .faq-list-item dd {
  position: relative;
  font-size: calc( 36 / 750 * 100vw );
  font-weight: 600;
  line-height: 1.39;
}
.faq .faq-list .faq-list-item dt {
  position: relative;
  cursor: pointer;
  margin-bottom: calc( 15 / 750 * 100vw );
}
.faq .faq-list .faq-list-item dt::after {
  position: absolute;
  top: calc( 15 / 750* 100vw );
  right: calc( -50 / 750* 100vw );
  transform: rotate(0);
  content: '';
  display: block;
  background-image: url(../images/faq/arrow.png);
  background-size: 100%;
  background-repeat: no-repeat;
  width: calc( 39 / 750 * 100vw );
  aspect-ratio: 39 / 25;
  cursor: pointer;
  transition: 0.3s;
}
.faq .faq-list .faq-list-item.active dt::after {
  transform: rotate(180deg);
}
.faq .faq-list .faq-list-item dd {
  opacity: 0;
  max-height: 0;
  margin-top: 0;
  transition: opacity 0.5s, max-height 0.3s;
}
.faq .faq-list .faq-list-item.active dd {
  opacity: 1;
  height: fit-content;
  max-height: 999vh;
  margin-top: calc(30 / 750 * 100vw);
}
.faq .faq-list .faq-list-item .question,
.faq .faq-list .faq-list-item .answer {
  position: absolute;
  top: 0; left: 0;
  transform: translateX(-120%);
  display: block;
  font-size: calc(44 / 750 * 100vw);
  color: #fff;
  width: calc(74 / 750 * 100vw);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  text-align: center;
}
.faq .faq-list .faq-list-item .question {
  background-color: #141d45;
}
.faq .faq-list .faq-list-item .answer {
  background-color: #aa0000;
}

@media (min-width: 751px) {
  .faq {
    padding-bottom: 90px;
  }
  .faq h2 {
    font-size: 7.3rem;
    padding-top: 110px;
    letter-spacing: 0.1em;
  }
  .faq .faq-list {
    padding-top: 100px;
    width: 1000px;
  }
  .faq .faq-list .faq-list-item {
    padding: 40px 145px 40px 135px;
  }
  .faq .faq-list .faq-list-item::after {
    top: 55px; right: 65px;
    transform: unset;
    width: 39px;
  }
  .faq .faq-list .faq-list-item .question,
  .faq .faq-list .faq-list-item .answer {
    width: 60px;
    font-size: 3.6rem;
    transform: translateX(-90px);
  }
  .faq .faq-list .faq-list-item + .faq-list-item {
    margin-top: 40px;
  }
  .faq .faq-list .faq-list-item dt {
    margin-bottom: 0;
  }
  .faq .faq-list .faq-list-item dt,
  .faq .faq-list .faq-list-item dd {
    font-size: 3.6rem;
  }
  .faq .faq-list .faq-list-item.active dd {
    margin-top: 30px;
  }
}


/* --------------------------------------------------
  .company
-------------------------------------------------- */
.company .inner {
  padding: 0 calc(40 / 750 * 100vw);
}
.company h2 {
  font-size: calc(36 / 750 * 100vw);
  text-align: center;
  padding-top: calc( 100 / 750 * 100vw );
}
.company .info-list {
  margin-top: calc( 40 / 750 * 100vw );
}
.company .info-list .info-list-item {
  padding: calc( 30 / 750 * 100vw ) 0;
}
.company .info-list .info-list-item + .info-list-item {
  border-top: 2px #888888 solid;
}
.company .info-list .info-list-item.flex {
  justify-content: left;
  align-items: center;
}
.company .info-list .info-list-item dt {
  flex-shrink: 0;
  color: #888888;
  font-size: calc(20 / 750 * 100vw);
  font-weight: 600;
  width: calc(230 / 750 * 100vw);
}
.company .info-list .info-list-item dd {
  font-size: calc(28 / 750 * 100vw);
  line-height: 1.4;
}

@media (min-width: 751px) {
  .company .inner {
    padding: 0 170px 35px;
  }
  .company h2 {
    font-size: 3.5rem;
    padding-top: 80px;
  }
  .company .info-list {
    margin-top: 40px;
  }
  .company .info-list .info-list-item {
    padding: 30px 0;
  }
  .company .info-list .info-list-item dt {
    font-size: 2rem;
    width: 225px;
  }
  .faq .faq-list .faq-list-item dt::after {
    width: 39px;
    top: 15px; right: -100px;
  }
  .company .info-list .info-list-item dd {
    font-size: 2.7rem;
  }
}


/* --------------------------------------------------
  .footer
-------------------------------------------------- */
.footer__copyright {
  background-color: #e0c417;
  padding: calc( 50 / 750 * 100vw ) 0 calc( 221 / 750 * 100vw );
  text-align: center;
}
.footer__copyright small {
  font-size: calc( 24 / 750 * 100vw );
  font-weight: 800;
  letter-spacing: 0;
}
.footer__fixed {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #fff;
  z-index: 999;
}
.footer__fixed .inner {
  padding: calc( 20 / 750 * 100vw );
}
.footer__fixed .mailbtn,
.footer__fixed .telbtn {
  display: block;
}
.footer__fixed .mailbtn {
  width: calc( 246 / 750 * 100vw );
}
.footer__fixed .telbtn {
  width: calc( 452 / 750 * 100vw );
  aspect-ratio: 452 / 123;
  background-image: url(../images/footer/telbtn_sp.png);
  background-size: 100%;
  background-repeat: no-repeat;
}
.footer__fixed .telbtn .txt {
  display: block;
  text-align: center;
  color: #fff;
  font-size: calc( 24 / 750 * 100vw );
  letter-spacing: 0.1em;
  text-shadow: rgb(248, 11, 11) 2px 0px 0px, rgb(248, 11, 11) 1.75517px 0.958851px 0px, rgb(248, 11, 11) 1.0806px 1.68294px 0px, rgb(248, 11, 11) 0.141474px 1.99499px 0px, rgb(248, 11, 11) -0.832294px 1.81859px 0px, rgb(248, 11, 11) -1.60229px 1.19694px 0px, rgb(248, 11, 11) -1.97998px 0.28224px 0px, rgb(248, 11, 11) -1.87291px -0.701566px 0px, rgb(248, 11, 11) -1.30729px -1.5136px 0px, rgb(248, 11, 11) -0.421592px -1.95506px 0px, rgb(248, 11, 11) 0.567324px -1.91785px 0px, rgb(248, 11, 11) 1.41734px -1.41108px 0px, rgb(248, 11, 11) 1.92034px -0.558831px 0px;
  padding-top: 2%;
}
.footer__fixed .telbtn .txt span {
  color: #fffc00;
}
.footer__fixed .telbtn .telnum {
  display: block;
  color: #fff;
  font-size: calc( 50 / 750 * 100vw );
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: rgb(248, 11, 11) 1px 0px 0px, rgb(248, 11, 11) 0.540302px 0.841471px 0px, rgb(248, 11, 11) -0.416147px 0.909297px 0px, rgb(248, 11, 11) -0.989992px 0.14112px 0px, rgb(248, 11, 11) -0.653644px -0.756802px 0px, rgb(248, 11, 11) 0.283662px -0.958924px 0px, rgb(248, 11, 11) 0.96017px -0.279415px 0px;
  filter: drop-shadow(1px 1px 1px rgba(34, 34, 34, 0.5));
  width: fit-content;
  margin-left: calc( 75 / 750 * 100vw );
  padding-top: 1%;
}
.footer__fixed .telbtn .hours {
  display: block;
  color: #fff;
  font-size: calc( 16 / 750 * 100vw );
  font-weight: 600;
  text-align: center;
  padding-top: 0.5%;
}

@media (min-width: 751px) {
  .footer__copyright {
    padding: 70px 0 calc( 70px + 171px );
  }
  .footer__copyright small {
    font-size: 3.2rem;
  }
  .footer__fixed .inner {
    padding: 15px 0;
  }
  .footer__fixed .mailbtn {
    width: 347px;
    height: 141px;
  }
  .footer__fixed .telbtn {
    background-image: url(../images/footer/telbtn.png);
    width: 636px;
    aspect-ratio: 636 / 141;
  }
  .footer__fixed .telbtn .txt {
    font-size: 2.8rem;
    padding-top: 7px;
  }
  .footer__fixed .telbtn .telnum {
    font-size: 6.2rem;
    text-shadow: rgb(248, 11, 11) 2px 0px 0px, rgb(248, 11, 11) 1.75517px 0.958851px 0px, rgb(248, 11, 11) 1.0806px 1.68294px 0px, rgb(248, 11, 11) 0.141474px 1.99499px 0px, rgb(248, 11, 11) -0.832294px 1.81859px 0px, rgb(248, 11, 11) -1.60229px 1.19694px 0px, rgb(248, 11, 11) -1.97998px 0.28224px 0px, rgb(248, 11, 11) -1.87291px -0.701566px 0px, rgb(248, 11, 11) -1.30729px -1.5136px 0px, rgb(248, 11, 11) -0.421592px -1.95506px 0px, rgb(248, 11, 11) 0.567324px -1.91785px 0px, rgb(248, 11, 11) 1.41734px -1.41108px 0px, rgb(248, 11, 11) 1.92034px -0.558831px 0px;
    filter: drop-shadow(0 3px 1px rgba(34, 34, 34, 0.5));
    margin-left: 133px;
    padding-top: 3px;
  }
  .footer__fixed .telbtn .hours {
    font-size: 2rem;
    font-weight: 700;
    padding-top: 0;
  }
}