@charset "UTF-8";
/*************************************************
common-style
*************************************************/
:root {
  --pc-width: 1200;
}
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family:
    "Zen Kaku Gothic New", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
}

.img-box img {
  width: 100%;
}

.obj-fit img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.flex {
  display: flex;
}

.inner {
  width: 100%;
  max-width: calc(1200px + 4rem);
  margin: 0 auto;
  padding-inline: 2rem;
  transition: width 0.3s ease;
}
@media screen and (max-width: 1000px) {
  .inner {
    max-width: 1000px;
  }
}
@media screen and (max-width: 768px) {
  .inner {
    max-width: 750px;
  }
}

h2 {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
}

h3,
p,
li,
dt,
dd,
th,
td,
a {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  h3,
  p,
  li,
  dt,
  dd,
  th,
  td,
  a {
    font-size: 1.5rem;
  }
}

.out {
  font-family: "Outfit", sans-serif;
}

.ttl-wrap {
  position: relative;
  margin-bottom: 6rem;
  text-align: center;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .ttl-wrap {
    margin-bottom: 5rem;
  }
}
.ttl-wrap div {
  position: relative;
  display: inline-block;
  font-family: "Outfit", sans-serif;
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .ttl-wrap div {
    font-size: 4rem;
    margin-bottom: 1.5rem;
  }
}
.ttl-wrap div::before {
  content: "";
  width: 120%;
  height: 2.7rem;
  background: linear-gradient(
    135deg,
    rgb(232, 121, 20) 0%,
    rgb(255, 89, 6) 100%
  );
  position: absolute;
  top: 3rem;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  z-index: -1;
  transform-origin: left;
}
@media screen and (max-width: 768px) {
  .ttl-wrap div::before {
    height: 2.3rem;
    top: 2.5rem;
  }
}
.ttl-wrap h2 span {
  font-size: 2rem;
}

/* Common TTL */
.common-ttl {
  position: relative;
  display: grid;
  place-items: center;
  gap: 2rem;
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-size: 4.8rem;
  font-weight: 700;
  z-index: 1;
}
.common-ttl .main {
  position: relative;
  z-index: 1;
}
.common-ttl .main::before {
  content: "";
  width: 120%;
  height: 2.7rem;
  background: linear-gradient(
    135deg,
    rgb(232, 121, 20) 0%,
    rgb(255, 89, 6) 100%
  );
  position: absolute;
  top: 3rem;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  z-index: -1;
  transform-origin: left;
}
.common-ttl .sub {
  font-size: 1.6rem;
  letter-spacing: 1px;
  line-height: 1.4;
}
@media (hover: hover) {
  .common-ttl .sub a:hover {
    text-decoration: underline;
  }
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]:focus,
input[type="button"]:focus {
  outline-offset: -2px;
}

.wrap-hidden {
  overflow: hidden;
}
.wrap-hidden.visible {
  overflow: visible;
}

/*************************************************
アニメーション
*************************************************/
.fadeIn {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s,
    transform 0.5s;
}

.active {
  opacity: 1;
  transform: translateY(0);
}

.anime-ttl01 {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.anime-ttl01 span {
  min-width: 12px;
  display: inline-block;
  transform: translateY(100px);
  transition: transfrom 0.5s;
}

.ttl-wrap.visible div::before,
.common-ttl.visible .main::before {
  animation: gradientWidth01 0.6s ease-in-out forwards;
}

.wrap-concept h2.visible span::before {
  animation: gradientWidth02 0.6s ease-in-out forwards;
}
.wrap-concept h2.visible .txt02::before {
  animation-delay: 0.2s;
}

@keyframes gradientWidth01 {
  0% {
    transform: translateX(-50%) scaleX(0);
  }
  100% {
    transform: translateX(-50%) scaleX(1);
  }
}
@keyframes gradientWidth02 {
  0% {
    transform: translateX(0%) scaleX(0);
  }
  100% {
    transform: translateX(0%) scaleX(1);
  }
}
.btn-hov_b {
  transition: all 0.3s;
}
.btn-hov_b:hover {
  scale: 1.1;
}

.btn-hov_s {
  background: linear-gradient(
    135deg,
    rgb(232, 121, 20) 0%,
    rgb(255, 89, 6) 50%,
    rgb(232, 121, 20) 100%
  ) !important;
  background-position: 0% 50% !important;
  background-size: 200% auto !important;
  transition: all 0.3s;
}
.btn-hov_s:hover {
  background-position: 100% 50% !important;
  scale: 0.95;
}

.loading-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease-out;
}
.loading-container .logo {
  width: 20rem;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translateX(-50%);
}

.hidden {
  opacity: 0;
  pointer-events: none;
}

.cssload-thecube {
  width: 54px;
  height: 54px;
  margin: 0 auto;
  position: relative;
  transform: rotateZ(45deg);
  -o-transform: rotateZ(45deg);
  -ms-transform: rotateZ(45deg);
  -webkit-transform: rotateZ(45deg);
  -moz-transform: rotateZ(45deg);
}

.cssload-thecube .cssload-cube {
  position: relative;
  transform: rotateZ(45deg);
  -o-transform: rotateZ(45deg);
  -ms-transform: rotateZ(45deg);
  -webkit-transform: rotateZ(45deg);
  -moz-transform: rotateZ(45deg);
}

.cssload-thecube .cssload-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
}

.cssload-thecube .cssload-cube:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(255, 89, 6);
  animation: cssload-fold-thecube 2.76s infinite linear both;
  -o-animation: cssload-fold-thecube 2.76s infinite linear both;
  -ms-animation: cssload-fold-thecube 2.76s infinite linear both;
  -webkit-animation: cssload-fold-thecube 2.76s infinite linear both;
  -moz-animation: cssload-fold-thecube 2.76s infinite linear both;
  transform-origin: 100% 100%;
  -o-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  -webkit-transform-origin: 100% 100%;
  -moz-transform-origin: 100% 100%;
}

.cssload-thecube .cssload-c2 {
  transform: scale(1.1) rotateZ(90deg);
  -o-transform: scale(1.1) rotateZ(90deg);
  -ms-transform: scale(1.1) rotateZ(90deg);
  -webkit-transform: scale(1.1) rotateZ(90deg);
  -moz-transform: scale(1.1) rotateZ(90deg);
}

.cssload-thecube .cssload-c3 {
  transform: scale(1.1) rotateZ(180deg);
  -o-transform: scale(1.1) rotateZ(180deg);
  -ms-transform: scale(1.1) rotateZ(180deg);
  -webkit-transform: scale(1.1) rotateZ(180deg);
  -moz-transform: scale(1.1) rotateZ(180deg);
}

.cssload-thecube .cssload-c4 {
  transform: scale(1.1) rotateZ(270deg);
  -o-transform: scale(1.1) rotateZ(270deg);
  -ms-transform: scale(1.1) rotateZ(270deg);
  -webkit-transform: scale(1.1) rotateZ(270deg);
  -moz-transform: scale(1.1) rotateZ(270deg);
}

.cssload-thecube .cssload-c2:before {
  animation-delay: 0.35s;
  -o-animation-delay: 0.35s;
  -ms-animation-delay: 0.35s;
  -webkit-animation-delay: 0.35s;
  -moz-animation-delay: 0.35s;
}

.cssload-thecube .cssload-c3:before {
  animation-delay: 0.69s;
  -o-animation-delay: 0.69s;
  -ms-animation-delay: 0.69s;
  -webkit-animation-delay: 0.69s;
  -moz-animation-delay: 0.69s;
}

.cssload-thecube .cssload-c4:before {
  animation-delay: 1.04s;
  -o-animation-delay: 1.04s;
  -ms-animation-delay: 1.04s;
  -webkit-animation-delay: 1.04s;
  -moz-animation-delay: 1.04s;
}

@keyframes cssload-fold-thecube {
  0%,
  10% {
    transform: perspective(101px) rotateX(-180deg);
    opacity: 0;
  }
  25%,
  75% {
    transform: perspective(101px) rotateX(0deg);
    opacity: 1;
  }
  90%,
  100% {
    transform: perspective(101px) rotateY(180deg);
    opacity: 0;
  }
}
.u-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .u-pc {
    display: none !important;
  }
}

.u-pc-inlineblock {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .u-pc-inlineblock {
    display: none;
  }
}

.u-sm {
  display: block;
}
@media screen and (max-width: 1000px) {
  .u-sm {
    display: none;
  }
}
.u-sm-inlineblock {
  display: inline-block;
}
@media screen and (max-width: 1000px) {
  .u-sm-inlineblock {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-sp {
    display: block;
  }
}

.u-sp-inlineblock {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-sp-inlineblock {
    display: inline-block;
  }
}

.u-sp-inline {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-sp-inline {
    display: inline;
  }
}

.u-align--center {
  text-align: center;
}

.u-md {
  display: none;
}
@media screen and (max-width: 1000px) {
  .u-md {
    display: block;
  }
}

.u-pc-md {
  display: block;
}
@media screen and (max-width: 1000px) {
  .u-pc-md {
    display: none;
  }
}

/*************************************************
header
*************************************************/
header {
  position: absolute;
  width: 100%;
  padding: 1.6666666667vw 1.0416666667vw 1.5rem 8.4027777778vw;
  z-index: 999;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  header {
    padding-top: 2.6666666667vw;
    padding-right: 5.3333333333vw;
  }
}
header.fixed-active {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 2.4rem 1.0416666667vw 1.5rem 5.5555555556vw;
}
@media screen and (max-width: 768px) {
  header.fixed-active {
    padding: 5.3333333333vw 5.3333333333vw 1.5rem;
  }
}
header.is-megamenu-header {
  position: fixed;
  padding: 5.3333333333vw 5.3333333333vw 1.5rem;
  background-color: transparent;
}
header.is-megamenu-header .header-inner .logo {
  width: 20rem;
}
header.is-megamenu-header .header-inner .logo.white {
  display: none;
}
header.is-megamenu-header .header-inner .logo.black {
  display: block !important;
}
header a,
header p {
  color: #fff;
}
header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  header .header-inner {
    align-items: flex-start;
  }
}
header .logo {
  width: 18rem;
  margin-right: 2rem;
}
@media screen and (max-width: 768px) {
  header .logo {
    width: 15rem;
  }
}
header .logo.black {
  display: none;
}
header .flex {
  gap: 5.5rem;
  align-items: center;
}
header .nav01 ul {
  display: flex;
  gap: 2.4rem;
}
header .nav01 ul li a {
  font-size: 1.4rem;
  font-size: clamp(1rem, 14 / 1400 * 100vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0;
}
header .nav02 {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
header .nav02 .header-tel a {
  display: flex;
  font-size: min(1.6666666667vw, 2.4rem);
  line-height: 1;
  letter-spacing: 2px;
  font-weight: 700;
}
header .nav02 .header-tel a img {
  margin-top: 2px;
}
header .nav02 .header-tel p {
  text-align: center;
  font-size: min(0.8333333333vw, 1.2rem);
  letter-spacing: 0.6px;
}
header .nav02 .header-contact {
  width: calc(210 / var(--pc-width) * 100vw);
  min-width: 15rem;
  max-width: 21rem;
  aspect-ratio: 1 / 0.25;
  background: linear-gradient(
    135deg,
    rgb(232, 121, 20) 0%,
    rgb(255, 89, 6) 100%
  );
}
header .nav02 .header-contact a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1rem, 16 / var(--pc-width) * 100vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0;
}

.hamberger-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hamberger-wrap .ham-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hamberger-wrap p {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
}
.hamberger-wrap.under-hum .hambager .c-line {
  background-color: #000;
}
.hamberger-wrap.under-hum p {
  color: #000;
}
.hamberger-wrap.is-ham-open .hambager .c-line {
  background-color: #000;
}
.hamberger-wrap.is-ham-open .hambager .c-line:first-of-type {
  animation: line1-open var(--navTransition) forwards;
}
.hamberger-wrap.is-ham-open .hambager .c-line:nth-of-type(2) {
  animation: line2-open var(--navTransition) forwards;
}
.hamberger-wrap.is-ham-open .hambager .c-line:last-of-type {
  animation: line3-open var(--navTransition) forwards;
}
.hamberger-wrap.is-ham-open p {
  color: #000;
}

.hambager-content {
  position: relative;
  width: 2.9rem;
  height: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2px;
}

:root {
  --navTransition: 0.4s;
}

.hambager {
  width: 2.9rem;
  height: 1.6rem;
  position: relative;
  display: block;
  cursor: pointer;
}
.hambager .c-line {
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .hambager .c-line {
    width: 100%;
  }
}
.hambager .c-line:first-of-type {
  top: 0;
  animation: line1 var(--navTransition) forwards;
}
.hambager .c-line:nth-of-type(2) {
  top: 50%;
  animation: line2 var(--navTransition) forwards;
}
.hambager .c-line:last-of-type {
  top: 100%;
  animation: line3 var(--navTransition) forwards;
}

@keyframes line1 {
  0% {
    top: 50%;
    transform: rotate(45deg);
  }
  50% {
    transform: rotate(0);
    top: 50%;
  }
  100% {
    transform: rotate(0);
    top: 0;
  }
}
@keyframes line1-open {
  0% {
    transform: rotate(0);
    top: 0;
  }
  50% {
    transform: rotate(0);
    top: 50%;
  }
  100% {
    top: 50%;
    transform: rotate(45deg);
  }
}
@keyframes line2 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes line2-open {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes line3 {
  0% {
    top: 50%;
    transform: rotate(-45deg);
  }
  50% {
    transform: rotate(0);
    top: 50%;
  }
  100% {
    transform: rotate(0);
    top: 100%;
  }
}
@keyframes line3-open {
  0% {
    transform: rotate(0);
    top: 100%;
  }
  50% {
    transform: rotate(0);
    top: 50%;
  }
  100% {
    top: 50%;
    transform: rotate(-45deg);
  }
}
.mega-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100svh;
  padding-top: 10rem;
  transform: translateX(100%);
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  overflow: scroll;
  z-index: 998;
  transition: all 0.3s;
}
.mega-menu.is-megamenu-open {
  transform: translateX(0);
}
.mega-menu .mega-menu_inner {
  width: 80%;
  max-width: 50rem;
  margin: 0 auto;
}
.mega-menu .nav-area {
  margin-bottom: 8rem;
}
.mega-menu .nav-area nav ul li a {
  display: block;
  width: 100%;
  font-size: 1.8rem;
  letter-spacing: 2px;
  padding: 2rem 0;
  border-bottom: 1px solid #000;
}
.mega-menu .header-tel {
  margin-bottom: 3rem;
}
.mega-menu .header-tel a {
  display: flex;
  justify-content: center;
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: 2px;
  font-weight: 700;
  margin-right: 5.3333333333vw;
}
.mega-menu .header-tel a img {
  width: 25px;
  margin-top: 2px;
  margin-right: 5px;
}
.mega-menu .header-tel p {
  text-align: center;
  font-size: 1.4rem;
  letter-spacing: 0.6px;
}
.mega-menu .header-contact {
  width: 30rem;
  aspect-ratio: 1/0.25;
  background: linear-gradient(
    135deg,
    rgb(232, 121, 20) 0%,
    rgb(255, 89, 6) 100%
  );
}
.mega-menu .header-contact a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0;
  color: #fff;
}

/*************************************************
footer
*************************************************/
footer {
  position: relative;
  padding: 6rem 0 3rem;
  background: url(images/common/footer_bg.jpg) no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  footer {
    background: url(images/common/footer_bg_sp.png) no-repeat center/cover;
  }
}
footer p,
footer h5 {
  font-size: 1.5rem;
  letter-spacing: 0.5px;
  color: #fff;
}
footer .logo {
  width: 25rem;
  margin-bottom: 3.7rem;
}
footer .flex {
  gap: 16rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  footer .flex {
    flex-direction: column;
    gap: 4rem;
  }
}
footer .right h5 {
  font-weight: 500;
  margin-bottom: 1rem;
}
footer .to-top {
  position: absolute;
  top: -7.5rem;
  right: 0;
  width: 7.5rem;
  aspect-ratio: 1/1;
  background: linear-gradient(
    135deg,
    rgb(232, 121, 20) 0%,
    rgb(255, 89, 6) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

/*************************************************
top
*************************************************/
.mv {
  position: relative;
  width: 100vw;
  height: 100svh;
  min-height: 80rem;
  background: url(images/common/mv_pc.png) no-repeat top right/cover;
  margin-left: 4.1666666667vw;
  border-bottom-left-radius: 15rem;
}
@media screen and (max-width: 768px) {
  .mv {
    height: 57rem;
    min-height: auto;
    background: url(images/common/mv_pc.png) no-repeat center/cover;
    border-bottom-left-radius: 5rem;
  }
}
.mv .mv-content {
  padding-top: 13.1944444444vw;
  padding-left: 4.1666666667vw;
}
@media screen and (max-width: 768px) {
  .mv .mv-content {
    padding-top: 21.3333333333vw;
    padding-top: 8rem;
  }
}
.mv .mv-content .subttl-wrap {
  display: inline-block;
  background-color: #192130;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .mv .mv-content .subttl-wrap {
    margin-bottom: 1rem;
  }
}
.mv .mv-content .subttl-wrap .subttl {
  padding: 1rem 2rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
  background: linear-gradient(
    135deg,
    rgb(232, 121, 20) 0%,
    rgb(255, 89, 6) 100%
  );
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}
@media screen and (max-width: 768px) {
  .mv .mv-content .subttl-wrap .subttl {
    font-size: 1.8rem;
    padding: 1rem 0.7rem;
  }
}
.mv .mv-content .subttl-wrap .subttl .out {
  font-size: 2.9rem;
  margin: 0 0.3rem;
}
@media screen and (max-width: 768px) {
  .mv .mv-content .subttl-wrap .subttl .out {
    font-size: 2rem;
  }
}
.mv .mv-content h1 {
  font-size: 4.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 3.4rem;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.25));
}
@media screen and (max-width: 768px) {
  .mv .mv-content h1 {
    font-size: 3rem;
    line-height: 1.5;
    margin-bottom: 2.4rem;
  }
}
.mv .mv-content .logo {
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  /*width: calc(460 / 1400 * 100vw);*/
  width: 460px;
  max-width: 460px;
}
.mv .mv-content .logo img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .mv .mv-content .logo {
    width: 25rem;
  }
}
.mv .mv-content .logo img {
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.25));
}
@media screen and (max-width: 768px) {
  .mv .mv-content .logo img {
    width: 100%;
  }
}
.mv .mv-content .logo span {
  font-size: 4rem;
}
.mv .gekkeizyu {
  width: 60rem;
  position: absolute;
  left: 4.1666666667vw;
  bottom: 7.3rem;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
@media screen and (max-width: 768px) {
  .mv .gekkeizyu {
    width: 34rem;
    bottom: 15rem;
    bottom: 24%;
  }
}
.mv .contact-btn {
  width: 28.4rem;
  position: absolute;
  right: 12rem;
  bottom: 7.3rem;
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.25));
}
@media screen and (max-width: 768px) {
  .mv .contact-btn {
    right: 3rem;
    bottom: -2rem;
    width: 15rem;
    z-index: 3;
  }
}

.bg-wrap {
  background: linear-gradient(
    135deg,
    rgb(255, 255, 255) 0%,
    rgb(240, 240, 240) 100%
  );
}

/* Wrap Concept */
.wrap-concept {
  position: relative;
  padding: 13.4rem 0 10rem;
  margin-bottom: 5rem;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .wrap-concept {
    padding: 6rem 0 8rem;
  }
}
.wrap-concept h2 {
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 4.5rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .wrap-concept h2 {
    font-size: 2.2rem;
    margin-bottom: 3.5rem;
    letter-spacing: 0;
  }
}
.wrap-concept h2 .textBand {
  position: relative;
  display: inline-block;
  color: #fff;
}
.wrap-concept h2 .textBand::before {
  content: "";
  position: absolute;
  top: calc(50% + 0.2rem);
  left: 0;
  translate: 0 -50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgb(232, 121, 20) 0%,
    rgb(255, 89, 6) 100%
  );
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
}
.wrap-concept h2 .textBand.txt01::before {
  width: 100%;
  height: 100%;
}

.wrap-concept .textColor {
  color: #fc5e09;
}

.wrap-concept p {
  max-width: 60rem;
}
.wrap-concept p + p {
  margin-top: 4rem;
}

.wrap-concept .big-tshirt {
  position: absolute;
  top: 50%;
  right: -4.7rem;
  translate: 0 -50%;
  width: min(41.6666666667vw, 60rem);
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}
@media screen and (max-width: 1000px) {
  .wrap-concept .big-tshirt {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

/* Wrap Reason */
.wrap-reason {
  position: relative;
  padding-bottom: 13rem;
}

.reason-content {
  position: relative;
  z-index: 1;
  background-color: #fff;
  border-radius: 2rem;
  box-shadow: 0 0.5rem 1rem rgba(151, 151, 151, 0.5);
  padding: 5.6rem 7rem 6rem;
}

.reason-content__ttl {
  display: grid;
  place-items: center;
  font-size: 3.6rem;
  color: #fc5e09;
  margin-bottom: 4.5rem;
}

.reason-content__ttl .sub {
  color: #1a1a1a;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  position: relative;
}
.reason-content__ttl .sub::before,
.reason-content__ttl .sub::after {
  content: "";
  position: absolute;
  top: 0.2rem;
  width: 0.2rem;
  height: 1.8rem;
  background-color: currentColor;
}
.reason-content__ttl .sub::before {
  left: -1.5rem;
  transform: rotate(-30deg);
}
.reason-content__ttl .sub::after {
  right: -1rem;
  transform: rotate(30deg);
}

.reason-content__ttl .main {
  text-decoration: underline;
  text-underline-offset: 0.8rem;
  text-decoration-thickness: 0.3rem;
}
.wrap_gallery {
  position: relative;
  width: 100%;
  z-index: 1;
}
.wrap_gallery .swiper-wrapper {
  transition-timing-function: linear !important;
}
.wrap_gallery .swiper-wrapper .swiper-slide img {
  width: 100%;
}
.wrap_gallery .message {
  width: 73.5rem;
  position: absolute;
  bottom: -15rem;
  left: 50%;
  transform: translate(-50%);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .wrap_gallery .message {
    width: 47rem;
    bottom: -11rem;
  }
}

/* Wrap Instagram */
.wrap-instagram {
  position: relative;
  background: url(images/common/service_bg01.svg) no-repeat top/101% #f3f2f7;
  padding: 27rem 0 18rem;
}

/* 外枠（グラデーション背景） */
.instagram-gallery-wrap {
  margin-top: 3.5rem;
	padding: 1.5rem 0;
  background: url(images/common/instagram_bg.png) center / cover no-repeat;
}

/* 内側の白カード */
.instagram-splide {
  display: flex;
	gap: 1rem;
}

.instagram-slide{
	max-width: 30rem;
}

/* カード全体 */
.instagram-card {
  display: block;
  background: #fff;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

/* 画像 */
.instagram-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* カード位置調整 */
.instagram-card {
  position: relative;
}











/* Wrap Voice */
.wrap-voice {
  position: relative;
  background-color: #f3f2f7;
  padding: 0 0 18rem;
}
.wrap-voice .common-ttl {
  margin-bottom: 5rem;
}
.voice {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.voice-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 2rem;
  box-shadow: 0 0.5rem 1rem rgba(151, 151, 151, 0.5);
	position: relative;
}
.voice-item::before{
	content: "";
	background-color: #fff;
	width: 5rem;
	aspect-ratio: 1 / 1;
	border-radius: 100%;
	position: absolute;
	top: -3.8rem;
	left: 50%;
	translate: -50% 0;
}
.voice-item::after{
	content: "";
	background: linear-gradient(
    135deg,
    rgb(232, 121, 20) 0%,
    rgb(255, 89, 6) 100%
  );
	width: 3rem;
	aspect-ratio: 1 / 1;
	border-radius: 100%;
	position: absolute;
	top: -2.8rem;
	left: 50%;
	translate: -50% 0;
}
.voice-item__inner {
  padding: 2rem 2rem 3rem;
}

.voice-item__img {
  border-radius: 2rem;
  overflow: hidden;
}
.voice-item__img img {
  width: 100%;
}
.voice-item__ttl {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.45;
  margin-top: 1.5rem;
  letter-spacing: -0.02em;
}
.voice-item__ttl .textColor {
  color: #fc5e09;
}
.voice-item__content p {
  margin-top: 1.5rem;
}
.voice-price__ttl {
  font-size: 1.8rem;
  font-weight: 700;
}
.voice-price {
  background: #eb7715;
  background: linear-gradient(90deg, #eb7715 0%, #fb5a09 100%);
  border-radius: 0 0 2rem 2rem;
  padding: 0 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
}
.voice-price__ttl {
  color: #fc5e09;
  font-size: 1.2rem;
  font-weight: 700;
  background-color: #1a1a1a;
  border-radius: 50vh;
  padding: 0.5rem 1.5rem;
  line-height: 1;
  translate: 0 -50%;
}
.voice-price__item {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.voice-price__price {
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1;
  margin-top: 0.5rem;
}
.voice-price__price span {
  font-size: 1.8rem;
}
.voice-price__price::after {
  content: "";
  width: 100%;
  height: 0.2rem;
  background-color: #fff;
  border-radius: 50vh;
  display: block;
  margin-top: 0.4rem;
}

.wrap-service {
  position: relative;
  padding: 0 0 30rem;
  background-color: #f3f2f7;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .wrap-service {
    padding: 17rem 0 15rem;
  }
}

.wrap-service .ttl-wrap {
  margin-bottom: 7rem;
}
@media screen and (max-width: 768px) {
  .wrap-service .ttl-wrap {
    margin-bottom: 5rem;
  }
}
.wrap-service .flex {
  width: 115.8rem;
  margin: 0 auto;
  flex-wrap: wrap;
  -moz-column-gap: 5.5rem;
  column-gap: 5.5rem;
  row-gap: 6rem;
}
@media screen and (max-width: 768px) {
  .wrap-service .flex {
    width: 100%;
  }
}
.wrap-service .flex .box {
  width: calc(33.3333333333% - 3.6666666667rem);
}
@media screen and (max-width: 768px) {
  .wrap-service .flex .box {
    width: 90%;
    margin: 0 auto;
  }
}
.wrap-service .flex .box .img-box {
  margin-bottom: 0.5rem;
}
.wrap-service .flex .box .ttl {
  position: relative;
  display: flex;
  margin-bottom: 1.7rem;
  z-index: 0;
}
.wrap-service .flex .box .ttl img {
  position: absolute;
  top: -2.5rem;
  width: 9rem;
  padding: 1rem 1rem 0 0;
  background-color: #f3f2f7;
  border-top-right-radius: 5px;
}
.wrap-service .flex .box .ttl h3 {
  position: relative;
  padding-left: 7.5rem;
  z-index: 1;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.3;
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgb(232, 121, 20) 0%,
    rgb(255, 89, 6) 100%
  );
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}
@media screen and (max-width: 768px) {
  .wrap-service .flex .box .ttl h3 {
    font-size: 2rem;
    padding-left: 8.5rem;
  }
}
.wrap-service .flex .box p {
  line-height: 1.5;
}
.wrap-service .txt-slider {
  position: absolute;
  bottom: 7rem;
  width: 100%;
	z-index: 2;
}
@media screen and (max-width: 768px) {
  .wrap-service .txt-slider {
    bottom: 0;
  }
}
.wrap-service .txt-slider .swiper-wrapper {
  transition-timing-function: linear !important;
}
.wrap-service .txt-slider .swiper-wrapper .swiper-slide img {
  width: 100%;
}

.wrap-service::after {
  content: "";
  width: 100%;
  height: auto;
  aspect-ratio: 1440 / 155;
  background-image: url(images/common/service_bg02.svg);
  background-size: 100% auto;
  position: absolute;
  bottom: 0;
  left: 0;
	z-index: 1;
}


/* Wrap Lineup */
.wrap-lineup {
  position: relative;
  padding: 1rem 0 30rem;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .wrap-lineup {
    padding: 14rem 0 15rem;
  }
}
.wrap-lineup .ttl-wrap {
  margin-bottom: 7rem;
}
.wrap-lineup .flex {
  flex-wrap: wrap;
  -moz-column-gap: 3rem;
  column-gap: 3rem;
  row-gap: 5rem;
}
@media screen and (max-width: 768px) {
  .wrap-lineup .flex {
    row-gap: 7rem;
  }
}
.wrap-lineup .flex .item {
  width: calc(33.3333333333% - 2rem);
}
@media screen and (max-width: 768px) {
  .wrap-lineup .flex .item {
    width: 100%;
  }
}
.wrap-lineup .flex .item .item-img_wrapper {
  display: flex;
  gap: 1rem;
  width: 100%;
  height: 300px;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .wrap-lineup .flex .item .item-img_wrapper {
    margin-bottom: 1rem;
  }
}
.wrap-lineup .flex .item .item-img_wrapper .main-image,
.wrap-lineup .flex .item .item-img_wrapper .swiper-slide {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.wrap-lineup .flex .item .item-img_wrapper .main-image {
  width: 300px;
  height: 100%;
}
.wrap-lineup .flex .item .item-img_wrapper .main-image a {
  display: block;
  height: 100%;
}
.wrap-lineup .flex .item .item-img_wrapper .thumbnails-container {
  position: relative;
  width: 70px;
  height: 100%;
}
.wrap-lineup
  .flex
  .item
  .item-img_wrapper
  .thumbnails-container
  .swiper-thumbnails {
  height: 100%;
}
.wrap-lineup
  .flex
  .item
  .item-img_wrapper
  .thumbnails-container
  .swiper-thumbnails
  .swiper-button-next::after,
.wrap-lineup
  .flex
  .item
  .item-img_wrapper
  .thumbnails-container
  .swiper-thumbnails
  .swiper-button-prev::after {
  display: none;
}
.wrap-lineup
  .flex
  .item
  .item-img_wrapper
  .thumbnails-container
  .swiper-thumbnails
  .swiper-button-next {
  top: auto;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 17px;
  background-color: rgba(255, 255, 255, 0.7);
}
.wrap-lineup
  .flex
  .item
  .item-img_wrapper
  .thumbnails-container
  .swiper-thumbnails
  .swiper-button-prev {
  top: 0;
  left: 0;
  margin-top: 0;
  width: 100%;
  height: 17px;
  background-color: rgba(255, 255, 255, 0.7);
}
.wrap-lineup .flex .item .name {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .wrap-lineup .flex .item .name {
    font-size: 1.8rem;
  }
}
.wrap-lineup .flex .item .price {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.wrap-lineup .flex .item .price span {
  font-size: 1.2rem;
}
.wrap-lineup .flex .item .text {
  line-height: 1.5;
  margin-bottom: 2.2rem;
  min-height: 10rem;
}
@media screen and (max-width: 768px) {
  .wrap-lineup .flex .item .text {
    margin-bottom: 1.5rem;
  }
}
.wrap-lineup .flex .item .variant-color,
.wrap-lineup .flex .item .variant-size {
  margin-bottom: 1rem;
}
.wrap-lineup .flex .item .variant-color dl dt,
.wrap-lineup .flex .item .variant-size dl dt {
  position: relative;
  padding: 0.8rem 0;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background-color: #192130;
}
.wrap-lineup .flex .item .variant-color dl dt::before,
.wrap-lineup .flex .item .variant-size dl dt::before {
  content: "";
  width: 14px;
  aspect-ratio: 1/0.55;
  background: url(images/common/icon-arrow01_vertical.svg) no-repeat
    center/contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 3rem;
}
@media screen and (max-width: 768px) {
  .wrap-lineup .flex .item .variant-color dl dt,
  .wrap-lineup .flex .item .variant-size dl dt {
    font-size: 1.6rem;
  }
}
.wrap-lineup .flex .item .variant-color dl dd,
.wrap-lineup .flex .item .variant-size dl dd {
  padding: 1.5rem 0;
}
@media screen and (max-width: 768px) {
  .wrap-lineup .flex .item .variant-color dl dd img,
  .wrap-lineup .flex .item .variant-size dl dd img {
    width: 100%;
  }
}
.wrap-lineup .flex .item .variant-color dl.open dt::before,
.wrap-lineup .flex .item .variant-size dl.open dt::before {
  top: 35%;
  rotate: 180deg;
}
.wrap-lineup .flex .item .variant-size {
  margin-bottom: 2rem;
}
.wrap-lineup .flex .item .item-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  width: 100%;
  aspect-ratio: 1/0.14;
  border-radius: 100vmax;
  background: linear-gradient(
    135deg,
    rgb(232, 121, 20) 0%,
    rgb(255, 89, 6) 100%
  );
  font-weight: 700;
  color: #fff;
}
.wrap-lineup .flex .item .item-btn img {
  width: 2.1rem;
}

/* Other Product */
.other-product {
  position: relative;
  margin-top: 10rem;
  z-index: 1;
	background-color: #182131;
	border-radius: 2rem;
	padding: 5rem 3.5rem 3.5rem;
	color: #fff;
}
.other-product::before {
  content: "";
  position: absolute;
  top: 3rem;
  left: 50%;
	translate: -50% 0;
  width: calc(1010 / 1110 * 100vw);
	max-width: 1090px;
	height: auto;
	aspect-ratio: 1010 / 192;
	background-image: url(images/common/bg_lineup.svg);
	background-repeat: no-repeat;
	background-size: 100% 100%;
}
.other-product__ttl {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
	text-align: center;
	text-decoration: underline;
	text-underline-offset: .8rem;
	text-decoration-thickness: .2rem;
	position: relative;
}
.other-product__list {
  display: grid;
	grid-template-columns: repeat(5, 1fr);
  flex-wrap: wrap;
  gap: .8rem;
	margin-top: 4.5rem;
	position: relative;
}
.other-product__list::before {
  content: "NEW";
  position: absolute;
  top: 0;
  left: 0;
  width: 4.8rem;
	height: auto;
	aspect-ratio: 1 / 1;
	background: linear-gradient(
    135deg,
    rgb(232, 121, 20) 0%,
    rgb(255, 89, 6) 100%
  );
	font-size: 1.4rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	border-radius: 100%;
	translate: -50% -50%;
}
.other-product__item__img {
  width: 100%;
	height: auto;
}
.other-product__text {
  margin-top: 3rem;
	display: flex;
	justify-content: center;
	align-items: center;
}
.other-product__text p {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.7;
	text-align: center;
	border: solid .2rem #fff;
	border-radius: 2rem;
	padding: 1rem 2rem;
	max-width: 65rem;
}
.other-product__text a{
	color: #fc5e09;
	text-decoration: underline;
	text-underline-offset: .3rem;
}
@media(hover: hover){
	.other-product__text a:hover{
		text-decoration: none;
	}
}

/* Wrap Flow */
.wrap-flow {
  position: relative;
  padding: 11.7rem 0 30rem;
  background:
    url(images/common/flow_bg.svg) no-repeat bottom/contain,
    linear-gradient(135deg, rgb(246, 237, 221) 0%, rgb(255, 255, 255) 100%);
}
@media screen and (max-width: 768px) {
  .wrap-flow {
    padding: 10rem 0 18rem;
    background:
      url(images/common/flow_bg_sp.svg) no-repeat bottom/101%,
      linear-gradient(135deg, rgb(246, 237, 221) 0%, rgb(255, 255, 255) 100%);
  }
}
.wrap-flow::before {
  position: absolute;
  top: -10.4166666667vw;
  left: 0;
  content: "";
  width: 100%;
  aspect-ratio: 1/0.15;
  background: url(images/common/lineup_bg.svg) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .wrap-flow::before {
    top: -16vw;
    aspect-ratio: 1/0.22;
    background: url(images/common/lineup_bg_sp.svg) no-repeat center/cover;
  }
}
.wrap-flow .ttl-wrap {
  margin-bottom: 7rem;
}
@media screen and (max-width: 768px) {
  .wrap-flow .ttl-wrap {
    margin-bottom: 7rem;
  }
}
.wrap-flow .block {
  position: relative;
	display: flex;
  flex-wrap: wrap;
	align-items: flex-start;
  justify-content: space-between;
  max-width: 106rem;
  margin: 0 auto;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .wrap-flow .block {
    gap: 7rem;
  }
}
.wrap-flow .block .flow-line {
  width: 15.35rem;
  position: absolute;
  top: 11.5rem;
  left: 46.65rem;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .wrap-flow .block .flow-line {
    display: none;
  }
}
.wrap-flow .block .box {
  position: relative;
  width: 90%;
  max-width: 48.6rem;
  padding: 3.5rem 2rem 2rem;
  background-color: #f6f3e7;
  border: 4px solid #fff;
  border-radius: 10px;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .wrap-flow .block .box {
    width: 100%;
    padding: 10rem 1rem 2rem;
  }
}
.wrap-flow .block .box::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 8rem;
  height: 2rem;
  background-color: #f6f3e7;
}
.wrap-flow .block .box .img-box {
  position: absolute;
}
.wrap-flow .block .box .number {
  font-size: 4rem;
  font-weight: 700;
  position: absolute;
  top: -2.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.wrap-flow .block .box h3 {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  color: #ff5906;
  margin-bottom: 1.5rem;
}
.wrap-flow .block .box p {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .wrap-flow .block .box p {
    line-height: 1.5;
  }
}
.wrap-flow .block .box:first-of-type {
  max-height: 27.5rem;
}
@media screen and (max-width: 768px) {
  .wrap-flow .block .box:first-of-type {
    max-height: none;
  }
}
.wrap-flow .block .box:first-of-type .img-box {
  width: 14.8rem;
  top: -6.6rem;
  left: -2.2rem;
}
@media screen and (max-width: 768px) {
  .wrap-flow .block .box:first-of-type .img-box {
    width: 8rem;
    top: 3rem;
    left: 50%;
    transform: translateX(-50%);
  }
}
.wrap-flow .block .box:first-of-type .contact {
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .wrap-flow .block .box:first-of-type .contact {
    margin-top: 2rem;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
.wrap-flow .block .box:first-of-type .contact .tel a {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
}
.wrap-flow .block .box:first-of-type .contact .tel p {
  font-size: 1.1rem;
}
.wrap-flow .block .box:first-of-type .contact .btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 23rem;
  aspect-ratio: 1/0.21;
  border-radius: 100vmax;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(
    135deg,
    rgb(232, 121, 20) 0%,
    rgb(255, 89, 6) 100%
  );
}
@media screen and (max-width: 768px) {
  .wrap-flow .block .box:first-of-type .contact .btn {
    width: 100%;
    aspect-ratio: 1/0.17;
  }
}
.wrap-flow .block .box:first-of-type .contact .btn::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
  width: 2.2rem;
  aspect-ratio: 1/0.55;
  background: url(images/common/icon-arrow01.svg) no-repeat center/contain;
}
.wrap-flow .block .box:nth-of-type(2) {
  max-height: 22.4rem;
  margin-top: 10.5rem;
  margin-bottom: 5.1rem;
}
@media screen and (max-width: 768px) {
  .wrap-flow .block .box:nth-of-type(2) {
    max-height: none;
    margin: 0;
  }
}
.wrap-flow .block .box:nth-of-type(2) .img-box {
  width: 13.1rem;
  top: -10.1rem;
  right: -4.2rem;
}
@media screen and (max-width: 768px) {
  .wrap-flow .block .box:nth-of-type(2) .img-box {
    width: 6rem;
    top: 3rem;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
.wrap-flow .block .box:nth-of-type(3) {
  max-height: 24.5rem;
}
@media screen and (max-width: 768px) {
  .wrap-flow .block .box:nth-of-type(3) {
    max-height: none;
  }
}
.wrap-flow .block .box:nth-of-type(3) .img-box {
  width: 12rem;
  top: -5.1rem;
  left: -2.2rem;
}
@media screen and (max-width: 768px) {
  .wrap-flow .block .box:nth-of-type(3) .img-box {
    width: 6.5rem;
    top: 3rem;
    left: 50%;
    transform: translateX(-50%);
  }
}
.wrap-flow .block .box:nth-of-type(3) .cash {
  position: relative;
  background-color: #fff;
  border-radius: 5px;
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
}
@media screen and (max-width: 768px) {
  .wrap-flow .block .box:nth-of-type(3) .cash {
    padding: 1rem 1.5rem 5rem;
    display: flex;
    gap: 2rem;
  }
}
.wrap-flow .block .box:nth-of-type(3) .cash h4 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .wrap-flow .block .box:nth-of-type(3) .cash h4 {
    font-size: 1.5rem;
  }
}
.wrap-flow .block .box:nth-of-type(3) .cash p {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .wrap-flow .block .box:nth-of-type(3) .cash p {
    font-size: 1.4rem;
  }
}
.wrap-flow .block .box:nth-of-type(3) .cash img {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 20rem;
}
@media screen and (max-width: 768px) {
  .wrap-flow .block .box:nth-of-type(3) .cash img {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
.wrap-flow .block .box:nth-of-type(4) {
  margin-top: 11rem;
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 768px) {
  .wrap-flow .block .box:nth-of-type(4) {
    margin: 0;
  }
}
.wrap-flow .block .box:nth-of-type(4) .img-box {
  width: 9.3rem;
  top: -8rem;
  right: -1.3rem;
}
@media screen and (max-width: 768px) {
  .wrap-flow .block .box:nth-of-type(4) .img-box {
    width: 8.5rem;
    top: 3rem;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
.wrap-flow .block .box:nth-of-type(5) {
}
@media screen and (max-width: 768px) {
  .wrap-flow .block .box:nth-of-type(5) {
    max-height: none;
  }
}
.wrap-flow .block .box:nth-of-type(5) .img-box {
  width: 18.2rem;
  top: -7.4rem;
  left: -3.7rem;
}
@media screen and (max-width: 768px) {
  .wrap-flow .block .box:nth-of-type(5) .img-box {
    width: 12.5rem;
    top: 3rem;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
.wrap-flow .block .box:nth-of-type(6) {
  margin-top: 11rem;
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 768px) {
  .wrap-flow .block .box:nth-of-type(6) {
    margin: 0;
  }
}
.wrap-flow .block .box:nth-of-type(6) .img-box {
  width: 21.6rem;
  bottom: -3.7rem;
  right: -11.1rem;
}
@media screen and (max-width: 768px) {
  .wrap-flow .block .box:nth-of-type(5) .img-box {
    width: 12.5rem;
    top: 3rem;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

.wrap_faq {
  position: relative;
  margin-top: -1px;
  padding: 10rem 0 13.3rem;
  background: url(images/common/faq_bg.svg) no-repeat top/cover;
}
@media screen and (max-width: 768px) {
  .wrap_faq {
    padding: 5rem 0 6rem;
    background: url(images/common/faq_bg_sp.svg) no-repeat top/cover;
  }
}
.wrap_faq .ttl-wrap div {
  color: #fff;
}
.wrap_faq .ttl-wrap h2 {
  color: #fff;
}
.wrap_faq .qa-list {
  max-width: 80rem;
  margin: 0 auto;
}
.wrap_faq .qa-list .qa {
  padding: 0 3rem;
  margin-bottom: 2rem;
  background-color: #323542;
  border-radius: 5px;
  box-shadow:
    4px 4px 8px rgba(0, 0, 0, 0.25),
    -5px -4px 8px rgba(255, 255, 255, 0.18);
}
@media screen and (max-width: 768px) {
  .wrap_faq .qa-list .qa {
    padding: 0 1rem;
  }
}
.wrap_faq .qa-list .qa:last-of-type {
  margin-bottom: 0;
}
.wrap_faq .qa-list .qa dt,
.wrap_faq .qa-list .qa dd {
  display: flex;
  gap: 2rem;
  color: #fff;
  padding: 1.5rem 0;
}
@media screen and (max-width: 768px) {
  .wrap_faq .qa-list .qa dt,
  .wrap_faq .qa-list .qa dd {
    gap: 1rem;
  }
}
.wrap_faq .qa-list .qa dt {
  position: relative;
  align-items: center;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .wrap_faq .qa-list .qa dt {
    max-width: 30rem;
    align-items: flex-start;
  }
}
.wrap_faq .qa-list .qa dt::before {
  content: "";
  width: 16px;
  aspect-ratio: 1/0.55;
  background: url(images/common/icon-arrow01_vertical.svg) no-repeat
    center/contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 3rem;
}
@media screen and (max-width: 768px) {
  .wrap_faq .qa-list .qa dt::before {
    width: 12px;
    top: 2.7rem;
    transform: none;
    right: -2rem;
  }
}
@media screen and (max-width: 768px) {
  .wrap_faq .qa-list .qa dt img {
    width: 2.5rem;
    margin-top: 1px;
  }
}
.wrap_faq .qa-list .qa dd {
  align-items: flex-start;
  border-top: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .wrap_faq .qa-list .qa dd img {
    width: 2.5rem;
  }
}
.wrap_faq .qa-list .qa.open dt::before {
  top: 35%;
  rotate: 180deg;
}

.wrap_form {
  margin-top: -1px;
  padding: 16.8rem 0 17rem;
  background: url(images/common/form_bg.svg) no-repeat top/contain;
}
@media screen and (max-width: 768px) {
  .wrap_form {
    padding: 15rem 0 15rem;
    background: url(images/common/form_bg_sp.svg) no-repeat top/101%;
  }
}
.wrap_form .txt {
  text-align: center;
  margin-bottom: 3.4rem;
}
@media screen and (max-width: 768px) {
  .wrap_form .form-rocess {
    position: relative;
    width: 100%;
    z-index: 2;
  }
}
.wrap_form .simulation_wrap {
  padding: 5rem 0;
  background-color: #f3f2f7;
}
@media screen and (max-width: 768px) {
  .wrap_form .simulation_wrap {
    padding: 10rem 0 4rem;
    margin-top: -16rem;
    width: 100vw;
    margin-left: -5vw;
  }
}
.wrap_form .simulation_wrap .add-wrap .btn-add {
  width: 100%;
  font-size: 1.8rem;
  font-weight: 500;
  color: #ff5906;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.wrap_form .simulation_wrap .add-wrap .btn-add img {
  margin-top: 2px;
}
.wrap_form .simulation_wrap .simu-content {
  position: relative;
  padding: 3rem 4rem;
  width: 90%;
  max-width: 92rem;
  margin: 0 auto 3rem;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .wrap_form .simulation_wrap .simu-content {
    padding: 3rem 1.5rem 1rem;
  }
}
.wrap_form .simulation_wrap .simu-content:first-child {
  padding-top: 8rem;
}
.wrap_form .simulation_wrap .simu-content:nth-child(n + 2) {
  margin-top: 6rem;
  padding-top: 5rem;
}
@media screen and (max-width: 768px) {
  .wrap_form .simulation_wrap .simu-content:nth-child(n + 2) {
    margin-top: 4rem;
    padding-top: 3rem;
  }
}
.wrap_form .simulation_wrap .simu-content input,
.wrap_form .simulation_wrap .simu-content select {
  font-size: 1.6rem;
  font-weight: 500;
  border: 1px solid #777;
}
.wrap_form .simulation_wrap .simu-content .select-wrap {
  position: relative;
}
.wrap_form .simulation_wrap .simu-content .select-wrap::before {
  content: "";
  width: 13px;
  aspect-ratio: 1/0.55;
  background: url(images/common/icon-arrow01_vertical_bl.svg) no-repeat
    center/contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 3rem;
}
.wrap_form .simulation_wrap .simu-content .select-wrap select {
  width: 42.4rem;
  padding: 1.3rem 2.3rem;
}
@media screen and (max-width: 768px) {
  .wrap_form .simulation_wrap .simu-content .select-wrap select {
    width: 100%;
  }
}
.wrap_form .simulation_wrap .simu-content .btn-chart {
  position: relative;
  width: 27.7rem;
  aspect-ratio: 1/0.17;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgb(232, 121, 20) 0%,
    rgb(255, 89, 6) 100%
  );
  color: #fff;
  padding-right: 3rem;
}
.wrap_form .simulation_wrap .simu-content .btn-chart::before {
  content: "";
  width: 2.4rem;
  aspect-ratio: 1/1.08;
  background: url(images/common/icon_pdf.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2.4rem;
}
.wrap_form .simulation_wrap .simu-content .delete-product {
  position: absolute;
  top: 0rem;
  right: 0rem;
  width: 3rem;
  aspect-ratio: 1/1;
  background: url(images/common/icon-delete.svg) no-repeat center/contain;
}
.wrap_form .simulation_wrap .simu-content .simu-step01,
.wrap_form .simulation_wrap .simu-content .simu-step02,
.wrap_form .simulation_wrap .simu-content .simu-step03 {
  margin-bottom: 2rem;
}
.wrap_form .simulation_wrap .simu-content .simu-step01 .ttl,
.wrap_form .simulation_wrap .simu-content .simu-step02 .ttl,
.wrap_form .simulation_wrap .simu-content .simu-step03 .ttl {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: #fff;
  background-color: #192130;
  padding: 1.5rem 2.5rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .wrap_form .simulation_wrap .simu-content .simu-step01 .ttl,
  .wrap_form .simulation_wrap .simu-content .simu-step02 .ttl,
  .wrap_form .simulation_wrap .simu-content .simu-step03 .ttl {
    font-size: 2rem;
    line-height: 1.5;
    padding: 1rem 2rem;
  }
}
.wrap_form .simulation_wrap .simu-content .simu-step01 .explan,
.wrap_form .simulation_wrap .simu-content .simu-step02 .explan,
.wrap_form .simulation_wrap .simu-content .simu-step03 .explan {
  line-height: 1.5;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .wrap_form .simulation_wrap .simu-content .simu-step01 .explan,
  .wrap_form .simulation_wrap .simu-content .simu-step02 .explan,
  .wrap_form .simulation_wrap .simu-content .simu-step03 .explan {
    margin-bottom: 3rem;
  }
}
.wrap_form .simulation_wrap .simu-content .simu-step01 .item-list {
  flex-wrap: wrap;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .wrap_form .simulation_wrap .simu-content .simu-step01 .item-list {
    gap: 1rem;
  }
}
.wrap_form .simulation_wrap .simu-content .simu-step01 .item-list button {
  width: calc(33.3333333333% - 1.6666666667rem);
  padding: 1rem 1.5rem;
  border: 1px solid #777;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .wrap_form .simulation_wrap .simu-content .simu-step01 .item-list button {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
}
.wrap_form .simulation_wrap .simu-content .simu-step01 .item-list button:hover {
  border: 2px solid #ff5906;
}
.wrap_form
  .simulation_wrap
  .simu-content
  .simu-step01
  .item-list
  button
  .img-box {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .wrap_form
    .simulation_wrap
    .simu-content
    .simu-step01
    .item-list
    button
    .img-box {
    width: 45%;
  }
}
.wrap_form
  .simulation_wrap
  .simu-content
  .simu-step01
  .item-list
  button
  .img-box
  img {
  width: 20rem;
}
@media screen and (max-width: 768px) {
  .wrap_form
    .simulation_wrap
    .simu-content
    .simu-step01
    .item-list
    button
    .img-box
    img {
    width: 100%;
  }
}
.wrap_form .simulation_wrap .simu-content .simu-step01 .item-list button .name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .wrap_form
    .simulation_wrap
    .simu-content
    .simu-step01
    .item-list
    button
    .name {
    font-size: 1.5rem;
  }
}
.wrap_form
  .simulation_wrap
  .simu-content
  .simu-step01
  .item-list
  button
  .name
  span {
  font-size: 1.4rem;
}
.wrap_form
  .simulation_wrap
  .simu-content
  .simu-step01
  .item-list
  button
  .price {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .wrap_form
    .simulation_wrap
    .simu-content
    .simu-step01
    .item-list
    button
    .price {
    font-size: 1.6rem;
  }
}
.wrap_form
  .simulation_wrap
  .simu-content
  .simu-step01
  .item-list
  button
  .price
  span {
  font-size: 1.2rem;
}
.wrap_form
  .simulation_wrap
  .simu-content
  .simu-step01
  .item-list
  button.active {
  border: 2px solid #ff5906;
}
.wrap_form .simulation_wrap .simu-content .simu-step02 {
  margin-top: -2rem;
  padding-top: 10rem;
}
@media screen and (max-width: 768px) {
  .wrap_form .simulation_wrap .simu-content .simu-step02 {
    margin-top: -5rem;
    padding-top: 10rem;
  }
}
.wrap_form .simulation_wrap .simu-content .simu-step02 .block {
  position: relative;
  padding: 2.5rem 2rem;
  border: 2px solid #192130;
  border-radius: 5px;
  margin-bottom: 2rem;
}
.wrap_form .simulation_wrap .simu-content .simu-step02 .block:nth-child(n + 2) {
  margin-top: 4rem;
}
.wrap_form .simulation_wrap .simu-content .simu-step02 .block .delete-block {
  position: absolute;
  top: 0rem;
  right: 0rem;
  width: 3rem;
  aspect-ratio: 1/1;
  background: url(images/common/icon-delete.svg) no-repeat center/contain;
}
.wrap_form .simulation_wrap .simu-content .simu-step02 .block .color-wrap p,
.wrap_form .simulation_wrap .simu-content .simu-step02 .block .size-wrap p {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .wrap_form .simulation_wrap .simu-content .simu-step02 .block .color-wrap p,
  .wrap_form .simulation_wrap .simu-content .simu-step02 .block .size-wrap p {
    font-size: 1.8rem;
  }
}
.wrap_form .simulation_wrap .simu-content .simu-step02 .block .color-wrap {
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .wrap_form .simulation_wrap .simu-content .simu-step02 .block .color-wrap {
    margin-bottom: 3rem;
  }
}
.wrap_form
  .simulation_wrap
  .simu-content
  .simu-step02
  .block
  .color-wrap
  .flex {
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .wrap_form
    .simulation_wrap
    .simu-content
    .simu-step02
    .block
    .color-wrap
    .flex {
    flex-direction: column;
    gap: 1rem;
  }
}
.wrap_form .simulation_wrap .simu-content .simu-step02 .block .size-wrap .flex {
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}
.wrap_form
  .simulation_wrap
  .simu-content
  .simu-step02
  .block
  .size-wrap
  .flex
  .box {
  width: calc(20% - 0.96rem);
  border: 1px solid #777;
}
@media screen and (max-width: 768px) {
  .wrap_form
    .simulation_wrap
    .simu-content
    .simu-step02
    .block
    .size-wrap
    .flex
    .box {
    width: calc(50% - 1.2rem);
  }
}
.wrap_form
  .simulation_wrap
  .simu-content
  .simu-step02
  .block
  .size-wrap
  .flex
  .box
  p {
  font-size: 1.8rem;
  text-align: center;
  background-color: #dfdfdf;
  border-bottom: 1px solid #777;
}
.wrap_form
  .simulation_wrap
  .simu-content
  .simu-step02
  .block
  .size-wrap
  .flex
  .box
  div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1.5rem 2rem;
  font-size: 1.6rem;
}
.wrap_form
  .simulation_wrap
  .simu-content
  .simu-step02
  .block
  .size-wrap
  .flex
  .box
  div
  input {
  width: 9.4rem;
  padding: 0.4rem 0 0.4rem 5rem;
}
@media screen and (max-width: 768px) {
  .wrap_form
    .simulation_wrap
    .simu-content
    .simu-step02
    .block
    .size-wrap
    .flex
    .box
    div
    input {
    width: 8rem;
  }
}
.wrap_form .simulation_wrap .simu-content .simu-step03 {
  margin-bottom: 3rem;
}
.wrap_form .simulation_wrap .simu-content .simu-step03 .print-position p,
.wrap_form .simulation_wrap .simu-content .simu-step03 .hukurozume p {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.wrap_form .simulation_wrap .simu-content .simu-step03 .print-position {
  gap: 6rem;
  margin-bottom: 2.8rem;
}
@media screen and (max-width: 768px) {
  .wrap_form .simulation_wrap .simu-content .simu-step03 .print-position {
    position: relative;
  }
}
.wrap_form .simulation_wrap .simu-content .simu-step03 .print-position .left {
  max-width: 42rem;
}
@media screen and (max-width: 768px) {
  .wrap_form .simulation_wrap .simu-content .simu-step03 .print-position .left {
    width: 15rem;
  }
}
.wrap_form
  .simulation_wrap
  .simu-content
  .simu-step03
  .print-position
  .left
  .checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.wrap_form
  .simulation_wrap
  .simu-content
  .simu-step03
  .print-position
  .left
  .checkboxes
  div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.wrap_form
  .simulation_wrap
  .simu-content
  .simu-step03
  .print-position
  .left
  .checkboxes
  div
  label {
  font-size: 1.6rem;
  font-weight: 500;
}
.wrap_form .simulation_wrap .simu-content .simu-step03 .print-position .right {
  width: 28rem;
}
@media screen and (max-width: 768px) {
  .wrap_form
    .simulation_wrap
    .simu-content
    .simu-step03
    .print-position
    .right {
    width: 20rem;
    position: absolute;
    top: 6rem;
    right: 0;
  }
}
.wrap_form .simulation_wrap .simu-content .simu-step03 .hukurozume .flex {
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .wrap_form .simulation_wrap .simu-content .simu-step03 .hukurozume .flex {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.wrap_form .simulation_wrap .simu-content .simu-step03 .hukurozume .flex div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.wrap_form .simulation_wrap .simu-content .simu-step03 .hukurozume label {
  font-size: 1.6rem;
  font-weight: 500;
}
.wrap_form .simulation_wrap .btn-result {
  width: 92rem;
  aspect-ratio: 1/0.09;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 7.5rem auto 0;
  background: linear-gradient(
    135deg,
    rgb(232, 121, 20) 0%,
    rgb(255, 89, 6) 100%
  );
  font-size: 2rem;
  letter-spacing: 1px;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .wrap_form .simulation_wrap .btn-result {
    width: 90%;
    aspect-ratio: 1/0.18;
    margin-top: 5rem;
    font-size: 1.6rem;
  }
}
.wrap_form .result-wrap {
  position: relative;
  margin-bottom: 12rem;
}
@media screen and (max-width: 768px) {
  .wrap_form .result-wrap {
    margin-bottom: 8rem;
  }
}
.wrap_form .result-wrap::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 70px 119.5px 0 119.5px;
  border-color: #f3f2f7 transparent transparent transparent;
  position: absolute;
  bottom: -5rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .wrap_form .result-wrap::before {
    bottom: -4rem;
  }
}
.wrap_form .result-wrap .result-arrow {
  width: 12.1rem;
  margin: 2rem auto 3rem;
}
.wrap_form .result-wrap .result-content {
  max-width: 84rem;
  margin: 0 auto;
  background-color: #f3f2f7;
}
@media screen and (max-width: 768px) {
  .wrap_form .result-wrap .result-content {
    width: 100vw;
    margin-left: -5vw;
  }
}
.wrap_form .result-wrap .result-content .ttl {
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
  color: #fff;
  background-color: #192130;
  padding: 2.7rem 0;
}
@media screen and (max-width: 768px) {
  .wrap_form .result-wrap .result-content .ttl {
    font-size: 2rem;
    padding: 2rem 0;
  }
}
.wrap_form .result-wrap .result-content .block_wrap {
  padding: 3rem 4.5rem 6rem;
}
@media screen and (max-width: 768px) {
  .wrap_form .result-wrap .result-content .block_wrap {
    padding: 3rem 1rem 6rem;
  }
}
.wrap_form .result-wrap .result-content .block {
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .wrap_form .result-wrap .result-content .block {
    margin-bottom: 2rem;
  }
}
.wrap_form .result-wrap .result-content .block .name {
  font-size: 1.8rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #000;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 768px) {
  .wrap_form .result-wrap .result-content .block .name {
    font-size: 1.4rem;
  }
}
.wrap_form .result-wrap .result-content .block .group {
  padding-left: 5rem;
  justify-content: space-between;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .wrap_form .result-wrap .result-content .block .group {
    padding-left: 0;
  }
}
.wrap_form .result-wrap .result-content .block .group:last-of-type {
  margin-bottom: 0;
}
.wrap_form .result-wrap .result-content .block .group p {
  font-size: 1.4rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .wrap_form .result-wrap .result-content .block .group p {
    font-size: 1.2rem;
  }
}
.wrap_form .result-wrap .result-content .block .group p span {
  font-size: 1.8rem;
  font-weight: 500;
  margin-left: 2rem;
}
@media screen and (max-width: 768px) {
  .wrap_form .result-wrap .result-content .block .group p span {
    font-size: 1.2rem;
    margin-left: 0.5rem;
  }
}
.wrap_form .result-wrap .result-content .block .group .child {
  flex-basis: 60%;
}
@media screen and (max-width: 768px) {
  .wrap_form .result-wrap .result-content .block .group .child {
    flex-basis: 57%;
  }
}
.wrap_form .result-wrap .result-content .block .group .child div {
  display: flex;
  justify-content: space-between;
}
.wrap_form .result-wrap .result-content .block .group .child div p {
  flex-basis: 27%;
}
@media screen and (max-width: 768px) {
  .wrap_form .result-wrap .result-content .block .group .child div p {
    flex-basis: 33%;
  }
}
.wrap_form
  .result-wrap
  .result-content
  .block
  .group
  .child
  div
  p:first-of-type {
  flex-basis: 37%;
}
.wrap_form
  .result-wrap
  .result-content
  .block
  .group
  .child
  div
  p:last-of-type {
  text-align: end;
}
@media screen and (max-width: 768px) {
  .wrap_form
    .result-wrap
    .result-content
    .block
    .group
    .child
    div
    p:last-of-type {
    flex-basis: 25%;
  }
}
.wrap_form .result-wrap .result-content .block .group .child div p span {
  margin-left: 0;
}
.wrap_form .result-wrap .result-content .block .item-total {
  justify-content: flex-end;
  align-items: center;
  gap: 11rem;
  padding-top: 1.5rem;
  border-top: 1px solid #aaa9ad;
  margin-left: 5rem;
}
@media screen and (max-width: 768px) {
  .wrap_form .result-wrap .result-content .block .item-total {
    margin-left: 0;
    gap: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .wrap_form .result-wrap .result-content .block .item-total {
    padding-top: 1rem;
  }
}
.wrap_form .result-wrap .result-content .block .item-total p {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .wrap_form .result-wrap .result-content .block .item-total p {
    font-size: 1.6rem;
  }
}
.wrap_form .result-wrap .result-content .block .item-total p span {
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .wrap_form .result-wrap .result-content .block .item-total p span {
    font-size: 1.8rem;
  }
}
.wrap_form .result-wrap .result-content .block.print-position p,
.wrap_form .result-wrap .result-content .block.option p {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .wrap_form .result-wrap .result-content .block.print-position p,
  .wrap_form .result-wrap .result-content .block.option p {
    font-size: 1.4rem;
  }
}
.wrap_form .result-wrap .result-content .block.print-position p span,
.wrap_form .result-wrap .result-content .block.option p span {
  font-size: 1.8rem;
  font-weight: 500;
}
.wrap_form .result-wrap .result-content .block.option {
  margin-bottom: 6rem;
}
.wrap_form .result-wrap .result-content .total-price {
  justify-content: flex-end;
  align-items: end;
  gap: 14.6rem;
  padding: 2rem 2rem 1.8rem;
  color: #fff;
  background: linear-gradient(
    135deg,
    rgb(232, 121, 20) 0%,
    rgb(255, 89, 6) 100%
  );
}
@media screen and (max-width: 768px) {
  .wrap_form .result-wrap .result-content .total-price {
    gap: 2rem;
    padding: 1.5rem 2rem 1rem;
  }
}
.wrap_form .result-wrap .result-content .total-price p {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .wrap_form .result-wrap .result-content .total-price p {
    font-size: 1.5rem;
  }
}
.wrap_form .result-wrap .result-content .total-price p span {
  font-size: 1.5rem;
}
.wrap_form .result-wrap .result-content .total-price p.price {
  font-size: 3rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .wrap_form .result-wrap .result-content .total-price p.price {
    font-size: 2.4rem;
  }
}
.wrap_form .contact-wrap h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #192130;
  text-align: center;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .wrap_form .contact-wrap h2 {
    font-size: 2rem;
  }
}
.wrap_form .contact-wrap form {
  width: 76rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .wrap_form .contact-wrap form {
    width: 100%;
  }
}
.wrap_form .contact-wrap form table {
  table-layout: fixed;
  width: 100%;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .wrap_form .contact-wrap form table {
    margin-bottom: 4rem;
  }
}
.wrap_form .contact-wrap form table tr {
  display: block;
  padding: 2rem;
}
.wrap_form .contact-wrap form table tr:nth-child(odd) {
  background-color: #f3f2f7;
}
.wrap_form .contact-wrap form table tr:last-child th {
  padding-top: 1rem;
  vertical-align: baseline;
}
@media screen and (max-width: 768px) {
  .wrap_form .contact-wrap form table tr:last-child th {
    padding-top: 0;
  }
}
.wrap_form .contact-wrap form table tr th,
.wrap_form .contact-wrap form table tr td {
  font-size: 1.6rem;
  letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
  .wrap_form .contact-wrap form table tr th,
  .wrap_form .contact-wrap form table tr td {
    display: block;
    width: 100%;
  }
}
.wrap_form .contact-wrap form table tr th {
  width: 40%;
  vertical-align: middle;
  font-weight: 600;
  position: relative;
}
@media screen and (max-width: 768px) {
  .wrap_form .contact-wrap form table tr th {
    width: 100%;
    padding-bottom: 1rem;
    display: flex;
    gap: 2rem;
    align-items: center;
  }
}
.wrap_form .contact-wrap form table tr th span {
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 4em;
  font-size: 1.2rem;
  color: #fff;
  padding: 0.1rem 1rem;
  background-color: #ff370a;
  border-radius: 2px;
}
@media screen and (max-width: 768px) {
  .wrap_form .contact-wrap form table tr th span {
    position: static;
    transform: none;
    font-size: 1rem;
  }
}
.wrap_form .contact-wrap form table tr td input,
.wrap_form .contact-wrap form table tr td textarea {
  width: 48.5rem;
  background-color: #fafafa;
  border: 1px solid #192130;
  border-radius: 5px;
  padding: 1rem 1.5rem;
  font-size: 1.6rem;
  letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
  .wrap_form .contact-wrap form table tr td input,
  .wrap_form .contact-wrap form table tr td textarea {
    width: 100%;
  }
}
.wrap_form .contact-wrap form .btn-submit {
  position: relative;
  width: 35rem;
  aspect-ratio: 1/0.21;
  display: flex;
  align-self: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  background: linear-gradient(
    135deg,
    rgb(232, 121, 20) 0%,
    rgb(255, 89, 6) 100%
  );
  border-radius: 100vmax;
  margin: 0 auto;
}
.wrap_form .contact-wrap form .btn-submit::before {
  content: "";
  width: 10px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10rem;
}



.wrap-contact{
	padding: 0 0 17rem;
}

.contact-wrap{
	background-color: #f3f2f7;
	margin-top: 3.5rem;
	padding: 4.5rem 2rem 4rem;
}

.tel-cta{

}

.contact-form{
	width: 100%;
	max-width: 85rem;
	margin-top: 8rem;
	margin-inline: auto;
	display: grid;
	gap: 3rem;
}


/* 各行 */
.contact-form__item {
  display: grid;
  grid-template-columns: 25rem 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form__item-ttl{
	position: relative;
	padding-left: 6rem;
	align-self: center;
}
/* 必須バッジ */
.contact-form .must{
  position: absolute;
	left: 0;
  line-height: 1;
  color: #fff;
  padding: .4rem .6rem;
  background-color: #ff6000;
  border-radius: 2px;
  vertical-align: middle;
}


.contact-form__item-radio{
	display: flex;
	gap: 2rem;
}
.contact-form__item-radio label{
	font-size: 1.8rem;
	font-weight: 700;
	display: flex;
	align-items: center;
}

.contact-form__item.textarea-wrap .contact-form__item-ttl{
	align-self: flex-start;
	padding-top: 2rem;
}

/* ラベル共通 */
.contact-form__item-ttl {
  position: relative;
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #192130;
}

/* 入力欄エリア */
.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  background-color: #fafafa;
  border: 1px solid #e6e6e6;
  font-size: 1.8rem;
	font-weight: 700;
  letter-spacing: 1px;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"]{
	height: 6rem;
	border-radius: 50vh;
	padding: 0 3rem;
}

.contact-form textarea {
  min-height: 24rem;
	border-radius: 3rem;
  resize: vertical;
	padding: 3rem;
}

/* フォーカス */
.contact-form input[type="text"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ff5906;
  box-shadow: 0 0 0 3px rgba(255, 89, 6, 0.12);
  background-color: #fff;
}

.contact-form input[type="radio"] {
  width: 2rem;
  height: 2rem;
  margin: 0;
	margin-right: 1rem;
  accent-color: #ff5906;
  flex-shrink: 0;
}

/* 送信ボタン */
.contact-form .btn-submit {
  position: relative;
  width: 100%;
  min-height: 7.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2.6rem auto 0;
  padding: 0 3rem;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  background: linear-gradient(
    135deg,
    rgb(232, 121, 20) 0%,
    rgb(255, 89, 6) 100%
  );
  cursor: pointer;
}

/* プレースホルダー */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
}

/* SP */
@media screen and (max-width: 768px) {
  .wrap-contact {
    padding: 0 0 12rem;
  }

  .contact-wrap {
    padding: 3.5rem 1.5rem 3rem;
  }

  .contact-form {
    margin-top: 5rem;
  }

  .contact-form > div {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 1.8rem 1.4rem;
  }

  .contact-form > div > p,
  .contact-form > div > label:first-child {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding-top: 0;
    font-size: 1.5rem;
  }

  .contact-form > div > p span,
  .contact-form > div > label:first-child span {
    margin-left: 0;
    font-size: 1rem;
    padding: 0.3rem 0.8rem;
  }

  .contact-form > div:first-child label {
    font-size: 1.5rem;
    align-items: flex-start;
  }

  .contact-form textarea {
    min-height: 16rem;
  }

  .contact-form .btn-submit {
    width: 100%;
    min-height: 6.4rem;
    margin-top: 4rem;
    font-size: 1.6rem;
  }

  .contact-form .btn-submit::before {
    left: 2.2rem;
  }
}




.wrap_thanks {
  padding: 15rem 0 20rem;
  background: url(images/common/form_bg.svg) no-repeat top/contain;
}
@media screen and (max-width: 768px) {
  .wrap_thanks {
    background: url(images/common/form_bg_sp.svg) no-repeat top/contain;
    padding: 10rem 0;
  }
}
.wrap_thanks h2 {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .wrap_thanks h2 {
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 4rem;
  }
}
.wrap_thanks .text {
  text-align: center;
  line-height: 2;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .wrap_thanks .text {
    text-align: left;
    line-height: 1.7;
    margin-bottom: 2rem;
  }
}
.wrap_thanks .contact-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  background-color: #192130;
  max-width: 60rem;
  padding: 4rem 2rem;
  margin: 6rem auto 4rem;
}
@media screen and (max-width: 768px) {
  .wrap_thanks .contact-tel {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1rem;
    margin: 4rem 0 2rem;
  }
}
.wrap_thanks .contact-tel p,
.wrap_thanks .contact-tel a {
  color: #fff;
}
.wrap_thanks .contact-tel .txt {
  font-size: 1.8rem;
}
.wrap_thanks .contact-tel a {
  display: flex;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 2px;
  font-weight: 700;
}
.wrap_thanks .contact-tel a img {
  margin-top: 2px;
}
.wrap_thanks .contact-tel p {
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 0.6px;
}
.wrap_thanks .btn-wrap {
  text-align: center;
}
.wrap_thanks .btn-wrap .btn-prev {
  position: relative;
  font-weight: 700;
  text-align: center;
  color: #ff5906;
}
.wrap_thanks .btn-wrap .btn-prev::before {
  content: "";
  width: 10px;
  aspect-ratio: 1/1;
  background: linear-gradient(
    135deg,
    rgb(232, 121, 20) 0%,
    rgb(255, 89, 6) 100%
  );
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -2rem;
}

/**
 * Swiper 8.1.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 25, 2022
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #232215;
}

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

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal
  > .swiper-wrapper
  > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(
    --swiper-pagination-bullet-width,
    var(--swiper-pagination-bullet-size, 8px)
  );
  height: var(
    --swiper-pagination-bullet-height,
    var(--swiper-pagination-bullet-size, 8px)
  );
  display: inline-block;
  border-radius: 50%;
  background: transparent;
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 1);
  border: 1px solid #232215;
}

button.swiper-pagination-bullet {
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #232215;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet,
.swiper-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  display: inline-block;
  transition:
    0.2s transform,
    0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition:
    0.2s transform,
    0.2s left;
}

.swiper-horizontal.swiper-rtl
  > .swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition:
    0.2s transform,
    0.2s right;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-horizontal
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-next + .swiper-slide,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  backface-visibility: hidden;
  overflow: hidden;
}
