@charset "utf-8";

.-wb {
	display: inline-block;
}

.-pc {
	display: block;
}

@media (max-width: 768px) {
	.-pc {
		display: none;
	}
}

.-sp {
	display: none;
}

@media (max-width: 768px) {
	.-sp {
		display: block;
	}
}

:root {
  --font-noto: "Noto Sans JP", sans-serif;
  --font-mon: "Montserrat", sans-serif;
}

body {
	position: relative;
  counter-reset: works_num 0;
}

body.noscroll {
	overflow: clip;
}

body, html {
	color: #333;
	/* overflow-x: hidden; */
  font-family: var(--font-noto);
}

main {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #fff;
  overflow-x: hidden;
}

/* ↓↓↓ header ↓↓↓ */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  background-color: #fff;
}
@media screen and (max-width: 1100px) {
  .header {
    top: 0;
  }
}

.header .wrap {
  display: flex;
  align-items: center;
  padding: 8px min(2.96875vw, 38px) 8px 8px;
  justify-content: space-between;
}

@media screen and (max-width: 1100px) {
  .header .wrap {
    padding: 0 15px 0 0;
    height: 64px;
  }
}

.header .wrap .logo-wrap {
  display: flex;
  column-gap: 4px;
}

.header .wrap .logo {
  display: block;
  width: 180px;
}

@media screen and (max-width: 1100px) {
  .header .wrap h1 {
    position: relative;
    z-index: 1;
  }
  .header .wrap .logo {
    position: relative;
    width: 126px;
    opacity: 1;
    transition: opacity ease .3s;
  }
}

.header .wrap .text {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 1100px) {
  .header .wrap .text {
    font-size: 1.0rem;
  }
}

.header .wrap .text .-red {
  color: #DB5B4D;
}

.header .wrap .togglebtn {
  position: relative;
  width: 32px;
  align-self: stretch;
  background-color: unset;
  border: unset;
  display: none;
  cursor: pointer;
  z-index: 1;
}
@media screen and (max-width: 1100px) {
  .header .wrap .togglebtn {
    display: block;
  }
}
.header .wrap .togglebtn .line {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #DB5B4D;
  left: 0;
  transition: width ease .3s, rotate ease .3s, top ease .3s, background-color ease .3s;
}
.header .wrap .togglebtn .line:nth-of-type(1) {
  top: 17px;
}
.header .wrap .togglebtn .line:nth-of-type(2) {
  top: 24px;
}
.header .wrap .togglebtn .line:nth-of-type(3) {
  top: 31px;
}
.header.active .wrap .togglebtn .line {
  width: 100%;
  top: 24px;
}
.header.active .wrap .togglebtn :is(.line:nth-of-type(1),.line:nth-of-type(2)) {
  rotate: 30deg;
}
.header.active .wrap .togglebtn .line:nth-of-type(3) {
  rotate: -30deg;
}

.header .wrap .r-wrap {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1100px) {
  .header .wrap .r-wrap {
    display: none;
  }
}

.sp-menu {
  display: none;
}

@media screen and (max-width: 1100px) {
  .sp-menu {
    width: 100%;
    position: fixed;
    display: block;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100dvh;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 5;
    translate: 0 -100%;
    transform: translateZ(0);
    transition: translate 300ms ease;
    backdrop-filter: blur(5px) brightness(50%);
  }

  .sp-menu::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 600px;
    background-color: #DB5B4D;
    top: 0;
    left: 0;
    z-index: -1;
  }

  .sp-menu.active {
    translate: 0 0%;
  }

  .sp-menu .wrap {
    width: 100%;
    height: 100%;
    overflow: scroll;
  }
}

.header .wrap .r-wrap .bg {
  display: none;
}



.header .wrap .list {
  width: fit-content;
  display: flex;
  column-gap: min(2.5vw, 32px);
  margin-right: min(2.5vw, 32px);
}
@media screen and (max-width: 1100px) {
  .sp-menu .list {
    position: relative;
    width: 280px;
    color: #fff;
    display: flex;
    flex-direction: column;
    margin-right: 0;
    padding-top: 112px;
    margin: 0 auto;
    z-index: 1;
  }
}

.header .wrap .item {
  width: fit-content;
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  transition: opacity 300ms ease;
}

@media screen and (min-width: 769px) {
  .header .wrap .item:hover {
    opacity: 0.5;
  }
}

@media screen and (max-width: 1100px) {
  .sp-menu .item {
    position: relative;
    width: 100%;
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    padding-bottom: 24px;
    transition: opacity 300ms ease;
    @media screen and (min-width: 769px) {
      &:hover {
        opacity: 0.5;
      }
    }
  }

  .sp-menu .item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 18px;
    height: 23px;
    background: url(../img/arrow_sp.svg) no-repeat;
    background-size: cover;
  }

  .sp-menu .item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
  }
}

.header .wrap .item + .item {
  position: relative;
}

.header .wrap .item + .item::after {
  content: '';
  position: absolute;
  translate: 0 -50%;
  left: -16px;
  top: 50%;
  width: 1px;
  height: 24px;
  background-color: #000;
}
@media screen and (max-width: 1100px) {
  .sp-menu .item +.item {
    padding-top: 24px;
  }

  .sp-menu .item + .item::after {
    content: '';
    position: absolute;
    translate: unset;
    top: 24px;
    left: unset;
    right: 0;
    width: 18px;
    height: 23px;
    background: url(../img/arrow_sp.svg) no-repeat;
    background-size: cover;
  }
}

.header .wrap .btn_wtap {
  display: none;
}

@media screen and (max-width: 1100px) {
  .sp-menu .btn_wtap {
    display: flex;
    width: 325px;
    margin: 40px auto 0;
    justify-content: space-between;
  }

  .sp-menu .btn_wtap .btn {
    width: 155px;
  }
}

.header .wrap .tel {
  display: flex;
  flex-direction: column;
  transition: opacity 300ms ease;
  @media screen and (min-width: 769px) {
    &:hover {
      opacity: 0.5;
    }
  }
}

@media screen and (max-width: 1100px) {
  .sp-menu .tel {
    display: flex;
    flex-direction: column;
    width: fit-content;
    margin: 16px auto 24px;
  }
}

.header .wrap .tel .num {
  font-size: min(2.5vw, 3.2rem);
  font-family: var(--font-mon);
  font-weight: 700;
  color: #DB5B4D;
  line-height: 1;
}

@media screen and (max-width: 1100px) {
  .sp-menu .tel .num {
    font-size: 3.2rem;
    font-family: var(--font-mon);
    font-weight: 700;
    color: #fff;
    line-height: 1;
  }
}

.header .wrap .tel .time {
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 1100px) {
  .sp-menu .tel .time {
    color: #fff;
    text-align: center;
  }
}
/* ↑↑↑ header ↑↑↑ */

.float-btn {
  position: fixed;
  display: flex;
  column-gap: 16px;
  bottom: -1px;
  right: 28px;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .float-btn {
    position: fixed;
    display: flex;
    column-gap: 13px;
    translate: -50% 0;
    bottom: -4px;
    right: unset;
    left: 50%;
    z-index: 2;
  }
}

.float-btn .btn {
  width: 200px;
  transition: opacity 300ms ease;
  @media screen and (min-width:769px) {
    &:hover {
      opacity: 0.5;
    }
  }
}

.float-btn .btn.layout {
  aspect-ratio: 200 / 64;
  border: 1px solid #fff;
  background-color: #DB5B4D;
  transition: background-color 300ms ease;
  
  picture {
    display: block;
    width: 100%;
    height: 100%;
  }

  @media screen and (min-width:769px) {
    &:hover {
      background-color: #333;
      opacity: 1;
    }
  }
}

@media screen and (max-width: 768px) {
  .float-btn .btn {
    width: 166px;
  }

  .float-btn .btn.layout {
    aspect-ratio: 166 / 64;
    border: 1px solid #fff;
    background-color: #DB5B4D;
  }
}

/* ↓↓↓ fv ↓↓↓ */
.fv {
  position: relative;
  padding-top: 120px;
  z-index: 1;
}

@media (max-width: 768px) {
  .fv {
    position: relative;
    padding-top: 50px;
    z-index: 1;
    overflow: hidden;
  }
}

.fv .inner {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  container-type: inline-size;
}

@media (max-width: 768px) {
  .fv .inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    container-type: inline-size; 
  }
}

.fv .inner .fv_head {
  position: relative;
  display: block;
  margin-left: 1.328125cqw;
  width: 52.96875cqw;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .fv .inner .fv_head {
    margin-left: 0;
    width: 375px;
  }
}

.fv .inner .fv_head::after {
  content: '';
  position: absolute;
  top: -14.6875cqw;
  right: 15.859375cqw;
  width: 39.453125cqw;
  height: 39.453125cqw;
  background: url(../img/fv-head_deco.png) no-repeat;
  background-size: cover;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .fv .inner .fv_head::after {
    top: -131px;
    right: 136px;
    width: 339px;
    height: 339px;
    background: url(../img/fv-head_deco.png) no-repeat;
    background-size: contain;
    z-index: -1;
  }
}

.fv .inner .copy_wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 41.875cqw;
}

@media screen and (max-width: 768px) {
  .fv .inner .copy_wrap {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .fv .copy_wrap {
    display: block;
    margin-top: 24px;
  }
}

.fv .copy_wrap .text01 {
  font-size: 1.25cqw;
  font-weight: 700;
  color: #DB5B4D;
}

@media screen and (max-width: 768px) {
  .fv .copy_wrap .text01 {
    font-size: 16px;
    margin-left: 25px;
  }
}

.fv .copy_wrap .text02 {
  font-size: 1.875cqw;
  font-weight: 700;
  padding: 0.3125cqw 1.25cqw 0.46875cqw;
  margin-top: 0.3125cqw;
  background-color: #333333;
  line-height: 1.4;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .fv .copy_wrap .text02 {
    width: fit-content;
    font-size: 1.8rem;
    padding: 7px 10px 7px 25px;
    letter-spacing: 0.1em;
  }
}

.fv .copy_wrap .img_wrap {
  position: relative;
  display: flex;
  gap: 1.25cqw;
  margin-top: 1.25cqw;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .fv .copy_wrap .img_wrap {
    width: 100%;
    max-width: 345px;
    flex-direction: column;
    gap: 8px;
    margin: 16px auto 0;
  }
}

.fv .copy_wrap .img {
  width: 12.5cqw;
  height: fit-content;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 768px) {
  .fv .copy_wrap .img {
    width: 100%;
  }
}

.fv .splide {
  margin-top: max(-6.640625cqw, -85px);
}

@media screen and (max-width: 768px) {
  .fv .splide {
    margin-top: -64px;
  }
}

.fv .splide .splide__slide {
  width: 76.5625vw;
}

@media screen and (max-width: 768px) {
  .fv .splide .splide__slide {
    width: 305px;
  }
}

/* ↑↑↑ fv ↑↑↑ */

/* ↓↓↓ intro ↓↓↓ */
.intro {
  width: 100%;
  margin-top: 100px;
}

.intro .inner {
  max-width: 1280px;
  margin: 0 auto;
  container-type: inline-size;
}

@media screen and (max-width: 768px) {
  .intro .inner {
    max-width: 100%;
  }
}

.intro .inner .img_wrap {
  position: relative;
  padding-inline: 12.812499999999998cqw 19.84375cqw;
}

@media screen and (max-width: 768px) {
  .intro .inner .img_wrap {
    padding-inline: 15px 26px;
  }
}

.intro .inner .img_wrap .img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .intro .inner .img_wrap .img {
    display: block;
    width: 334px;
    margin: 0 auto;
  }
}

.intro .inner .img_wrap .arrow_wrap {
  position: absolute;
  translate: -50% 0;
  top: 26.5625cqw;
  left: 50%;
  width: 3.125cqw;
  height: 0;
  overflow: hidden;
  transition: height 300ms ease;
}

.intro .inner .img_wrap .arrow_wrap.-active {
  height: 5.859375cqw;
}

@media screen and (max-width: 768px) {
  .intro .inner .img_wrap .arrow_wrap {
    top: 310px;
    width: 40px;
    height: 0;
    overflow: hidden;
  }

  .intro .inner .img_wrap .arrow_wrap.-active {
    height: 89px;
  }
}

.intro .inner .img_wrap .arrow_wrap .arrow {
  display: block;
  width: 100%;
  height: 5.859375cqw;
}

@media screen and (max-width: 768px) {
  .intro .inner .img_wrap .arrow_wrap .arrow  {
    height: 89px;
  }
}

.intro .inner .content {
  position: relative;
  width: 100%;
  margin-top: 7.34375cqw;
  padding: 5cqw 0 5.625cqw;
  z-index: 0;
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .intro .inner .content {
    margin-top: 24px;
    padding: 51px 17px 56px;
    z-index: 0;
  }
}

.intro .inner .content::after {
  content: '';
  position: absolute;
  translate: -50% 0;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  background-color: #DB5B4D;
  z-index: -1;
}

.intro .inner .content .text01 {
  position: relative;
  font-size: 1.875cqw;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.1em;
  padding-bottom: 0.625cqw;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .intro .inner .content .text01 {
    font-size: 1.8rem;
    padding-bottom: 8px;
  }
}

.intro .inner .content .text01::after {
  content: '';
  position: absolute;
  translate: -50% 0;
  bottom: -0.625cqw;
  left: 50%;
  width: 52.81249999999999cqw;
  height: 1.171875cqw;
  background: url(../img/intro_line.svg) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .intro .inner .content .text01::after {
    bottom: -8px;
    width: 298px;
    height: 15px;
    background: url(../img/intro_line_sp.svg) no-repeat;
    background-size: cover;
  }
}

.intro .inner .content .logo {
  display: block;
  width: 32.96875cqw;
  height: fit-content;
  margin: 2.34375cqw auto 0;
}

@media screen and (max-width: 768px) {
  .intro .inner .content .logo {
    display: block;
    width: 256px;
    height: fit-content;
    margin: 38px auto 0;
  }
}

.intro .inner .content .text02 {
  font-size: 2.5cqw;
  font-weight: 900;
  color: #fff;
  text-align: center;
  letter-spacing: 0.1em;
  margin-top: 3.125cqw;
}

@media screen and (max-width: 768px) {
  .intro .inner .content .text02 {
    font-size: 2.4rem;
    letter-spacing: 0.1em;
    margin-top: 24px;
  }
}

.intro .inner .content .text02 .-large {
  font-size: 3.75cqw;
}

@media screen and (max-width: 768px) {
  .intro .inner .content .text02 .-large {
    font-size: 3.2rem;
  }
}

.intro .inner .content .deco {
  position: absolute;
  translate: 0 -50%;
  top: 50%;
  left: 0;
  width: 6.328125cqw;
}

@media screen and (max-width: 768px) {
  .intro .inner .content .deco {
    width: 72px;
  }
}
/* ↑↑↑ intro ↑↑↑ */

/* ↓↓↓ feature ↓↓↓ */
.feature {
  margin-top: 160px;
}

@media screen and (max-width: 768px) {
  .feature {
    margin-top: 100px;
  }
}

.feature .inner {
  max-width: 1280px;
  margin: 0 auto;
  container-type: inline-size;
}

@media screen and (max-width: 768px) {
  .feature .inner {
    max-width: 100%;
  }
}

.feature .inner .ttl {
  position: relative;
  font-size: 3.75cqw;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
  color: #333333;
}

@media screen and (max-width: 768px) {
  .feature .inner .ttl {
    font-size: 3.2rem;
  }
}

.feature .inner .ttl::after {
  content: '';
  position: absolute;
  translate: -50% 0;
  bottom: -1.875cqw;
  left: 50%;
  width: 6.25cqw;
  height: 0.625cqw;
  background-color: #DB5B4D;
}

@media screen and (max-width: 768px) {
  .feature .inner .ttl::after {
    bottom: -24px;
    width: 64px;
    height: 8px;
  }
}

.feature .inner .container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.875cqw;
  margin-top: 6.875cqw;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .feature .inner .container {
    width: 324px;
    gap: 12px;
    margin: 64px auto 0;
  }
}

.feature .inner .container .card {
  display: block;
  width: 25.624999999999996cqw;
  height: fit-content;
}

@media screen and (max-width: 768px) {
  .feature .inner .container .card {
    width: 156px;
    height: fit-content;
  }
}

.feature .inner .service {
  display: flex;
  gap: 3.125cqw;
  position: relative;
  margin-top: -7.8125cqw;
  padding-top: 9.609375cqw;
  z-index: 0;
}

@media screen and (max-width: 768px) {
  .feature .inner .service {
    flex-direction: column-reverse;
    gap: 0;
    margin-top: -40px;
    padding: 88px 0 18px;
  }
}

.feature .inner .service::after {
  content: '';
  position: absolute;
  translate: -50% 0;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  background-color: #DB5B4D;
  z-index: -1;
}

.feature .inner .service .img {
  position: relative;
  width: 45.9375cqw;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .feature .inner .service .img {
    position: relative;
    width: 100%;
    z-index: 1;
    padding-right: 26px;
  }
}

.feature .inner .service .text_wrap {
  width: 40.546875cqw;
  margin-top: 6.5625cqw;
}

@media screen and (max-width: 768px) {
  .feature .inner .service .text_wrap {
    width: 100%;
    margin-top: 0;
    padding-inline: 27px;
  }
}

.feature .inner .service .text_wrap .text01 {
  position: relative;
  font-size: 2.5cqw;
  font-weight: 700;
  color: #fff;
  line-height: 1.75;
  padding: 2.5cqw 0.625cqw;
}

@media screen and (max-width: 768px) {
  .feature .inner .service .text_wrap .text01 {
    width: fit-content;
    font-size: 2.4rem;
    padding: 0 42px;
    text-align: center;
    margin: 0 auto;
  }
}

.feature .inner .service .text_wrap .text01::after,
.feature .inner .service .text_wrap .text01::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 13.75cqw;
  height: 2.03125cqw;
  background: url(../img/service_deco.svg) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .feature .inner .service .text_wrap .text01::after,
  .feature .inner .service .text_wrap .text01::before {
    content: '';
    position: absolute;
    top: unset;
    bottom: 9px;
    left: 0;
    width: 34px;
    height: 81px;
    background: url(../img/service_deco_sp.svg) no-repeat;
    background-size: cover;
  }
}

.feature .inner .service .text_wrap .text01::before {
  top: unset;
  bottom: 0;
  scale: 1 -1;
}

@media screen and (max-width: 768px) {
  .feature .inner .service .text_wrap .text01::before {
    top: unset;
    bottom: 9px;
    left: unset;
    right: 0;
    scale: -1 1;
  }
}

.feature .inner .service .text_wrap .text02 {
  font-size: 1.5625cqw;
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #fff;
  margin-top: 2.5cqw;
}

@media screen and (max-width: 768px) {
  .feature .inner .service .text_wrap .text02 {
    font-size: 1.6rem;
    line-height: 2;
    margin-top: 24px;
    text-align: justify;
    word-break: break-all;
  }
}

.feature .inner .service .deco {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 69.296875cqw;
}

@media screen and (max-width: 768px) {
  .feature .inner .service .deco {
    position: absolute;
    translate: -50% 0;
    bottom: 0;
    right: unset;
    left: 50%;
    width: 101.6%;
  }
}

.feature .inner .block {
  position: relative;
  height: 39.84375cqw;
  padding: 7.8125cqw 24.140625cqw 13.28125cqw;
  z-index: 0;
}

@media screen and (max-width: 768px) {
  .feature .inner .block {
    position: relative;
    height: 520px;
    padding: 80px 13px 154px;
  }
}

.feature .inner .block::after {
  content: '';
  position: absolute;
  translate: -50% -50%;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100%;
  background: url(../img/feature-block_img.jpg) no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .feature .inner .block::after {
    background: url(../img/feature-block_img_sp.jpg) no-repeat;
    background-size: cover;
    background-position: center center;
  }
}

.feature .inner .block .text01 {
  width: fit-content;
  font-size: 1.5625cqw;
  font-weight: 700;
  padding: 0.3125cqw 1.25cqw 0.390625cqw;
  background-color: #fff;
  letter-spacing: 0.1em;
  color: #DB5B4D;
  margin: 0 auto;
  border-radius: 20px;
}

@media screen and (max-width: 768px) {
  .feature .inner .block .text01 {
    font-size: 2.0rem;
    padding: 4px 16px 5px;
  }
}

.feature .inner .block .text02 {
  font-size: 3.125cqw;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
  margin-top: 1.25cqw;
}

@media screen and (max-width: 768px) {
  .feature .inner .block .text02 {
    font-size: 2.8rem;
    margin-top: 16px;
  }
}

.feature .inner .block .text02 .-marker {
  display: inline-block;
  background-color: #fff;
  color: #DB5B4D;
  padding: 0.234375cqw 0.390625cqw 0.46875cqw;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .feature .inner .block .text02 .-marker {
    padding: 3px 5px 6px;
  }
}

.feature .inner .block .form_btn {
  position: absolute;
  translate: -50% 0;
  bottom: -5.46875cqw;
  left: 50%;
  display: block;
  width: 66.875cqw;
  aspect-ratio: 856 / 140;
  background-color: #DB5B4D;
  transition: background-color 300ms ease;
}

@media screen and (min-width: 769px) {
  .feature .inner .block .form_btn:hover {
    background-color: #333333;
  }
}

@media screen and (max-width: 768px) {
  .feature .inner .block .form_btn {
    bottom: -90px;
    width: 324px;
    aspect-ratio: 324 / 180;
  }
}

.feature .inner .block .form_btn .btn_text {
  display: block;
  width: 100%;
}
/* ↑↑↑ feature ↑↑↑ */

/* ↓↓↓ works ↓↓↓ */
.works {
  position: relative;
  margin: 200px auto 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .works {
    margin: 190px auto 0;
  }
}
.works .inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  container-type: inline-size;
}

@media screen and (max-width: 768px) {
  .works .inner {
    max-width: 100%;
  }
}

.works .inner::after {
  content: '';
  position: absolute;
  translate: -50% 0;
  top: 3.90625cqw;
  left: 50%;
  width: 102.34375cqw;
  height: 18.359375cqw;
  background: url(../img/works_text.svg) no-repeat;
  background-size: cover;
  z-index: -1;
}
@media (max-width: 768px) {
  .works .inner::after {
    top: 66px;
    width: 103.2%;
    aspect-ratio: 387 / 70;
    height: fit-content;
    background: url(../img/works_text_sp.svg) no-repeat;
    background-size: cover;
    z-index: -1;
  }
}
.works .inner .ttl {
  position: relative;
  font-size: 3.75cqw;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .works .inner .ttl {
    font-size: 3.2rem;
  }
}

.works .inner .ttl::after {
  content: '';
  position: absolute;
  translate: -50% 0;
  bottom: -1.875cqw;
  left: 50%;
  width: 6.25cqw;
  height: 0.625cqw;
  background-color: #DB5B4D;
}

@media screen and (max-width: 768px) {
  .works .inner .ttl::after {
    bottom: -24px;
    width: 64px;
    height: 8px;
  }
}


.works .inner .works_list {
  display: flex;
  flex-wrap: wrap;
  width: 80.625cqw;
  gap: 1.875cqw;
  margin: 6.25cqw auto 0;
}
@media screen and (max-width: 768px) {
  .works .inner .works_list {
    gap: 12px;
    margin: 64px auto 0;
    width: 91.73333333333333%;
  }
}
.works .inner .works_list .item {
  position: relative;
  width: 25.625cqw;
  cursor: pointer;
	counter-increment: works_num 1;
}
@media screen and (max-width: 768px) {
  .works .inner .works_list .item {
    width: calc((100% - 12px)/2);
  }
}
.works .inner .works_list .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 5cqw;
  height: 5cqw;
  background: url(../img/works-item_deco.svg) no-repeat;
  background-size: cover;
}
.works .inner .works_list .item .img {
  transition: opacity ease .3s;
}
@media screen and (min-width: 769px) {
  .works .inner .works_list .item .img:hover {
    opacity: .7;
  }
}

@media screen and (max-width: 768px) {
  .works .inner .works_list .item::after {
    width: 40px;
    height: 40px;
    background: url(../img/works-item_deco_sp.svg) no-repeat;
    background-size: cover;
  }
}
.works .inner .works_list .item .num {
  position: absolute;
  font-size: 3.125cqw;
  font-family: var(--font-mon);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #fff;
  top: 0.625cqw;
  left: 0.625cqw;
}
@media screen and (max-width: 768px) {
  .works .inner .works_list .item .num {
    font-size: 3.2rem;
    top: 8px;
    left: 6px;
  }
}
.works .inner .works_list .item .num:before {
	content: counter(works_num,decimal-leading-zero);
}
/* ↑↑↑ works ↑↑↑ */

/* ↓↓↓ modal ↓↓↓ */
.modal__bg {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: rgba(98, 98, 98, 0);
  opacity: 0;
  visibility: hidden;
  transition: opacity ease .3s, visibility ease .3s;
  backdrop-filter: blur(5px) brightness(50%);
  top: 0;
  left: 0;
  z-index: 11;
}
.modal__bg.active {
  opacity: 1;
  visibility: visible;
}
.modal_wrap {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: translateZ(0px);
  z-index: 11;
}
.modal_wrap .modal_container {
  position: relative;
  max-width: 1280px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  container-type: inline-size;
}
.modal_wrap .close_btn {
  position: absolute;
  width: 5cqw;
  translate: 40.3125cqw  0;
  height: auto;
  aspect-ratio: 1/1;
  background-color: #DB5B4D;
  cursor: pointer;
  top: 7.8125cqw;
  right: 50%;
  z-index: 1;
  transition: background-color 300ms ease;
}

@media screen and (min-width: 769px) {
  .modal_wrap .close_btn:hover {
    background-color: #333333;
  }
}

@media screen and (max-width: 768px) {
  .modal_wrap .close_btn {
    width: 48px;
    top: 83px;
    translate: calc(154/375*100vw) 0;
  }
}
.modal_wrap .close_btn::before {
  content: '';
  position: absolute;
  width: 1.40625cqw;
  aspect-ratio: 1/1;
  background-image: url(../img/modal_close.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  translate: -50% -50%;
  top: 50%;
  left: 50%;
}
@media screen and (max-width: 768px) {
  .modal_wrap .close_btn::before {
    width: 21px;
  }
}
.modal_wrap .scroll_wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-top: 7.8125cqw;
}
.modal_wrap .scroll_wrap::-webkit-scrollbar{
  display: none;
}
@media screen and (max-width: 768px) {
  .modal_wrap .scroll_wrap {
    padding-top: 83px;
  }
}
.modal_wrap .modal_slider {
  width: 80.625cqw;
  height: fit-content;
  background: #FFFFFF;
  padding: 6.875cqw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .modal_wrap .modal_slider {
    width: calc(308/375*100vw);
    padding: 56px 24px 24px;
  }
}
.modal_wrap .modal_slider::before {
  content: '';
  position: absolute;
  width: 0.78125cqw;
  height: 7.34375cqw;
  translate: 0 100%;
  bottom: 0;
  left: 0;
}
.modal_wrap .modal_slider .splide__track {
  width: 100%;
  height: fit-content;
}
.modal_wrap .modal_slider .splide__slide {
  height: fit-content;
}
.modal_wrap .modal_slider .splide__slide .inner {
  height: fit-content;
  /* overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none; */
}
/* .modal_wrap .modal_slider .splide__slide .inner::-webkit-scrollbar{
  display: none;
} */
.modal_wrap .splide__arrow {
  position: absolute;
  width: 7.34375cqw;
  height: auto;
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 50%;
  border: 2px solid #DB5B4D;
  opacity: 1;
  display: block;
  cursor: pointer;
  transform-origin: center;
  top: 50%;
  transition: background-color 300ms ease;
}

.modal_wrap .splide__arrow::after {
  content: '';
  position: absolute;
  translate: -50% -50%;
  top: 50%;
  left: 50%;
  width: 2.65625cqw;
  height: 2.03125cqw;
  mask-image: url(../img/arrow.svg);
  mask-size: 2.65625cqw 2.03125cqw;
  mask-repeat: no-repeat;
  background-color: #DB5B4D;
  transition: background-color 300ms ease;
}

@media screen and (max-width: 768px) {
  .modal_wrap .splide__arrow::after {
    width: 18px;
    height: 14px;
    mask-image: url(../img/arrow02.svg);
    mask-size: 18px 14px;
  }
}
@media screen and (min-width: 769px) {
  .modal_wrap .splide__arrow:hover {
    opacity: 1;
    background-color: #DB5B4D;
  }

  .modal_wrap .splide__arrow:hover::after {
    background-color: #fff;
  }
}
@media screen and (max-width: 768px) {
  .modal_wrap .splide__arrow {
    width: 48px;
  }
}
.modal_wrap .splide__arrow--prev {
  left: 5cqw;
}

.modal_wrap .splide__arrow.splide__arrow--prev::after {
  scale: -1 1;
}
.modal_wrap .splide__arrow--next {
  right: 5cqw;
}
@media screen and (max-width: 768px) {
  .modal_wrap .splide__arrow--prev {
    left: calc(8/375*100vw);
  }
  .modal_wrap .splide__arrow--next {
    right: calc(8/375*100vw);
  }
}
.modal_wrap .img_slider {
  position: relative;
  width: 100%;
}
.modal_wrap .img_slider .modal_num {
  position: absolute;
  font-size: 6.25cqw;
  font-family: var(--font-mon);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: 0.04em;
  color: #fff;
  top: 1.25cqw;
  left: 1.25cqw;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .modal_wrap .img_slider .modal_num {
    font-size: 3.2rem;
    top: 8px;
    left: 8px;
  }
}
.modal_wrap .modal_inner_slider {
  width: 100%;
}
.modal_wrap .modal_inner_slider .splide__slide {
  width: 100%;
}
.modal_wrap .modal_inner_slider .splide__slide .img {
  width: 100%;
  display: block;
}
.modal_wrap .modal_inner_slider .splide__pagination {
  display: flex;
  justify-content: center;
  gap: 0.3125cqw;
  bottom: -2.109375cqw;
  left: 0;
}
.modal_wrap .modal_inner_slider .splide__pagination li {
  line-height: 0;
}
@media screen and (max-width: 768px) {
  .modal_wrap .modal_inner_slider .splide__pagination {
    gap: 3px;
    bottom: -16px;
  }
}
.modal_wrap .modal_inner_slider .splide__pagination .splide__pagination__page {
  width: 2.421875cqw;
  height: 0.234375cqw;
  background-color: #9A9A9A;
  opacity: 0.5;
  margin: unset;
  border-radius: 0;
}
@media screen and (max-width: 768px) {
  .modal_wrap .modal_inner_slider .splide__pagination .splide__pagination__page {
    width: 22px;
    height: 2px;
  }
}
.modal_wrap .modal_inner_slider .splide__pagination .splide__pagination__page.is-active {
  transform: scale(1);
  background-color: #DB5B4D;
  opacity: 1;
}
.modal_wrap .modal_slider .img_slider+.block {
  margin-top: 7.938388625592417cqw;
}
.modal_wrap .modal_slider .block+.block {
  margin-top: 6.6350710900473935cqw;
}
@media screen and (max-width: 768px) {
  .modal_wrap .modal_slider .img_slider+.block {
    margin-top: 30px;
  }
  .modal_wrap .modal_slider .block+.block {
    margin-top: 48px;
  }
}
.modal_wrap .modal_slider .en_ttl {
  font-size: 1.5625cqw;
  font-family: var(--font-mon);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #DB5B4D;
  margin-top: 5cqw;
}
@media screen and (max-width: 768px) {
  .modal_wrap .modal_slider .en_ttl {
    font-size: 1.6rem;
    margin-top: 40px;
  }
}
.modal_wrap .modal_slider .head {
  font-size: 1.875cqw;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-top: 7.03125cqw;
  color: #DB5B4D;
}
@media screen and (max-width: 768px) {
  .modal_wrap .modal_slider .head {
    font-size: 1.8rem;
    line-height: 1.7777777777777777;
    margin-top: 16px;
  }
}
.modal_wrap .modal_slider .txt {
  width: 41.25cqw;
  font-size: 1.25cqw;
  font-family: var(--font-noto);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
  text-align: justify;
  margin-top: 1.875cqw;
}
@media screen and (max-width: 768px) {
  .modal_wrap .modal_slider .txt {
    width: 100%;
    font-size: 1.6rem;
    margin-top: 16px;
  }
  .modal_wrap .modal_slider .en_ttl+.txt {
    margin-top: 16px;
  }
}

.modal_wrap .modal_slider .value {
  position: absolute;
  top: 44.296875cqw;
  right: 0;
  width: 22.5cqw;
  background-color: #EFEFEF;
  padding: 2.5cqw 0 1.875cqw 1.875cqw; 
}

@media screen and (max-width: 768px) {
  .modal_wrap .modal_slider .value {
    position: relative;
    top: unset;
    right: unset;
    width: 260px;
    background-color: #EFEFEF;
    padding: 24px 0 24px 14px;
    margin-top: 40px; 
  }
}

.modal_wrap .modal_slider .value::after {
  content: '';
  position: absolute;
  translate: -50% 0;
  top: 0;
  left: 50%;
  width: 7.8125cqw;
  height: 0.625cqw;
  background-color: #DB5B4D;
}

@media screen and (max-width: 768px) {
  .modal_wrap .modal_slider .value::after {
    width: 100px;
    height: 4px;
  }
}

.modal_wrap .modal_slider .value .text {
  display: flex;
  gap: 1.25cqw;
  font-size: 1.25cqw;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .modal_wrap .modal_slider .value .text {
    display: flex;
    gap: 8px;
    font-size: 1.6rem;
  }
}

.modal_wrap .modal_slider .value .text + .text {
  margin-top: 1.25cqw;
}

@media screen and (max-width: 768px) {
  .modal_wrap .modal_slider .value .text + .text {
    margin-top: 16px;
  }
}

.modal_wrap .modal_slider .value .text .marker {
  display: block;
  height: fit-content;
  padding: 0.15625cqw 0.625cqw;
  color: #fff;
  background-color: #333333;
  border-radius: 16px;
}

@media screen and (max-width: 768px) {
  .modal_wrap .modal_slider .value .text .marker {
    padding: 2px 8px;
  }
}
.modal_wrap .modal_slider .services_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625cqw;
  margin-top: 1.25cqw;
}
@media screen and (max-width: 768px) {
  .modal_wrap .modal_slider .services_list {
    gap: 8px;
    margin-top: 16px;
  }
}
.modal_wrap .modal_slider .services_list .item {
  width: 16.25cqw;
  aspect-ratio: 208 / 40;
  font-size: 1.25cqw;
  font-family: var(--font-noto);
  font-weight: 500;
  letter-spacing: 0.04em;
  display: grid;
  justify-content: center;
  align-items: center;
  border: 1px solid #333333;
}
@media screen and (max-width: 768px) {
  .modal_wrap .modal_slider .services_list .item {
    width: calc((100% - 8px)/2);
    height: 44px;
    aspect-ratio: unset;
    font-size: 1.4rem;
    padding: 2px 5px;
    line-height: 1.285;
  }
}
/* ↑↑↑ modal ↑↑↑ */

.form_btn_wrap {
  max-width: 1280px;
  margin: 0 auto;
  container-type: inline-size;
}

.form_btn_wrap .form_btn {
  position: relative;
  display: block;
  width: 66.875cqw;
  aspect-ratio: 856 / 140;
  background-color: #DB5B4D;
  transition: background-color 300ms ease;
  margin: 100px auto 0;
}

@media screen and (min-width: 769px) {
  .form_btn_wrap .form_btn:hover {
    background-color: #333333;
  }
}

@media screen and (max-width: 768px) {
  .form_btn_wrap .form_btn {
    width: 324px;
    aspect-ratio: 324 / 180;
    margin: 64px auto 0;
  }
}

.form_btn_wrap .form_btn .btn_text {
  display: block;
  width: 100%;
}

/* ↓↓↓ flow ↓↓↓ */
.flow {
  margin-top: 160px;
}

@media screen and (max-width: 768px) {
  .flow {
    padding: 0 25px;
    margin-top: 100px;
  }
}

.flow .inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  container-type: inline-size;
  z-index: 0;
}

@media screen and (max-width: 768px) {
  .flow .inner {
    max-width: 100%;
  }
}

.flow .inner::after {
  content: '';
  position: absolute;
  top: 3.125cqw;
  left: 0;
  width: 13.593749999999998cqw;
  height: 58.359375cqw;
  background: url(../img/flow_text.svg) no-repeat;
  background-size: cover;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .flow .inner::after {
    content: '';
    position: absolute;
    top: 10px;
    left: -24px;
    width: 15.466666666666667%;
    aspect-ratio: 58 / 249;
    height: fit-content;
    background: url(../img/flow_text_sp.svg) no-repeat;
    background-size: cover;
  }
}

.flow .inner .ttl {
  position: relative;
  font-size: 3.75cqw;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
  color: #333333;
}

@media screen and (max-width: 768px) {
  .flow .inner .ttl {
    font-size: 3.2rem;
  }
}

.flow .inner .ttl::after {
  content: '';
  position: absolute;
  translate: -50% 0;
  bottom: -1.875cqw;
  left: 50%;
  width: 6.25cqw;
  height: 0.625cqw;
  background-color: #DB5B4D;
}

@media screen and (max-width: 768px) {
  .flow .inner .ttl::after {
    bottom: -24px;
    width: 64px;
    height: 8px;
  }
}

.flow .inner .step_wrap {
  position: relative;
  width: 70.625cqw;
  margin: 6.875cqw auto 0;
  z-index: 0;
}

@media screen and (max-width: 768px) {
  .flow .inner .step_wrap {
    position: relative;
    width: 100%;
    margin: 64px auto 0;
    z-index: 0;
  }
}

.flow .inner .step_wrap::after {
  content: '';
  position: absolute;
  translate: -50% 0;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background-color: #DB5B4D;
  z-index: -1;
}

.flow .inner .step_wrap .step {
  display: flex;
}

.flow .inner .step_wrap .step + .step {
  margin-top: 2.5cqw;
}

@media screen and (max-width: 768px) {
  .flow .inner .step_wrap .step + .step {
    margin-top: 32px;
  }
}

.flow .inner .step_wrap .step .num_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 8.75cqw;
  background-color: #DB5B4D;
}

@media screen and (max-width: 768px) {
  .flow .inner .step_wrap .step .num_wrap {
    width: 56px;
  }
}

.flow .inner .step_wrap .step .num_wrap .text {
  font-size: 1.875cqw;
  font-family: var(--font-mon);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .flow .inner .step_wrap .step .num_wrap .text {
    font-size: 1.6rem;
  }
}

.flow .inner .step_wrap .step .num_wrap .num {
  font-size: 4.375cqw;
  font-family: var(--font-mon);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .flow .inner .step_wrap .step .num_wrap .num {
    font-size: 3.6rem;
  }
}

.flow .inner .step_wrap .step .content {
  width: 61.875cqw;
  padding: 3.125cqw 5cqw;
  background-color: #EFEFEF;
}

@media screen and (max-width: 768px) {
  .flow .inner .step_wrap .step .content {
    width: calc(100% - 56px);
    padding: 32px 24px;
    background-color: #EFEFEF;
  }
}

.flow .inner .step_wrap .step .content .head {
  font-size: 1.875cqw;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #DB5B4D;
}

@media screen and (max-width: 768px) {
  .flow .inner .step_wrap .step .content .head {
    font-size: 2.0rem;
  }
}

.flow .inner .step_wrap .step .content .text {
  font-size: 1.25cqw;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-top: 1.25cqw;
}

@media screen and (max-width: 768px) {
  .flow .inner .step_wrap .step .content .text {
    font-size: 1.6rem;
    margin-top: 12px;
  }
}

.flow .inner .step_wrap .step .content .btn {
  display: block;
  width: 27.5cqw;
  aspect-ratio: 352 / 64;
  background-color: #DB5B4D;
  margin-top: 1.25cqw;
  transition: background-color 300ms ease;
}

@media screen and (min-width: 769px) {
  .flow .inner .step_wrap .step .content .btn:hover {
    background-color: #333333;
  }
}

@media screen and (max-width: 768px) {
  .flow .inner .step_wrap .step .content .btn {
    width: 220px;
    aspect-ratio: 220 / 64;
    margin-top: 12px;
  }
}

.flow .inner .step_wrap .step .content .btn .img {
  display: block;
  width: 100%;
}

.flow .inner .step_wrap .block {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 904 / 80;
  background-color: #DB5B4D;
  margin-top: 4.6875cqw;
}

@media screen and (max-width: 768px) {
  .flow .inner .step_wrap .block {
    width: 100%;
    height: 64px;
    aspect-ratio: unset;
    background-color: #DB5B4D;
    margin-top: 32px;
  }
}

.flow .inner .step_wrap .block + .step {
  margin-top: 4.6875cqw;
}

@media screen and (max-width: 768px) {
  .flow .inner .step_wrap .block + .step {
    margin-top: 32px;
  }
}

.flow .inner .step_wrap .block.-after {
  background-color: #fff;
  border: 0.3125cqw solid #DB5B4D;
}

@media screen and (max-width: 768px) {
  .flow .inner .step_wrap .block.-after {
    border: 4px solid #DB5B4D;
  }
}

.flow .inner .step_wrap .block .text {
  font-size: 2.5cqw;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .flow .inner .step_wrap .block .text {
    font-size: 2.4rem;
  }
}

.flow .inner .step_wrap .block.-after .text {
  color: #DB5B4D;
}

/* ↑↑↑ flow ↑↑↑ */

/* ↓↓↓ form ↓↓↓ */
.form-area {
  position: relative;
	width: 100%;
	padding-inline: 32px;
  margin: 160px auto 0;
  z-index: 1;
  background-color: #EFEFEF;
}
.form-area.confirm,.form-area.thanks {
  min-height: calc(100dvh - min(12.1875vw, 156px));
}
@media screen and (max-width: 768px) {
  .form-area.confirm,.form-area.thanks {
    min-height: calc(100dvh - 56px);
  }
}
.form-area.confirm,.form-area.thanks {
  padding-top: min(7.8125vw,100px);
  margin-top: unset;
}
@media (max-width: 768px) {
	.form-area {
    position: relative;
    width: 100%;
    padding-inline: 25px;
    margin: 80px auto 0;
    z-index: 1;
    background-color: #EFEFEF;
	}
  .form-area.confirm,.form-area.thanks {
    padding-top: 80px;
  }
}

.form-area .inner {
  max-width: 856px;
  container-type: inline-size;
  margin: 0 auto;
  padding: 120px 0 160px;
}
@media (max-width: 768px) {
  .form-area .inner {
    max-width: 100%;
    padding: 80px 0;
  }
}
.form-area .inner .conts_ttl {
  position: relative;
  font-size: 5.607476635514018cqw;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
  color: #333333;
}

@media screen and (max-width: 768px) {
  .form-area .inner .conts_ttl {
    font-size: 3.2rem;
  }
}

.form-area .inner .conts_ttl::after {
  content: '';
  position: absolute;
  translate: -50% 0;
  bottom: -2.803738317757009cqw;
  left: 50%;
  width: 9.345794392523365cqw;
  height: 0.9345794392523363cqw;
  background-color: #DB5B4D;
}

@media screen and (max-width: 768px) {
  .form-area .inner .conts_ttl::after {
    bottom: -24px;
    width: 64px;
    height: 8px;
  }
}

.form-area .form_box {
	margin: 7.476635514018691cqw auto 0;
}
@media (max-width: 768px) {
	.form-area .form_box {
    margin-top: 32px;
	}
}

.form-area .lead {
  font-size: 2.102803738317757cqw;
	font-weight: 500;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
	.form-area .lead {
		font-size: 1.4rem;
	}
}
.form-area.thanks .lead {
	text-align: center;
}
.form-area .lead .req {
	font-size: 1.6355140186915886cqw;
	color: #ED4F44;
}
@media screen and (max-width: 768px) {
  .form-area .lead .req {
    font-size: 1.4rem;
  }
}
.form-area .lead+.sub-lead {
  margin-top: 1.8691588785046727cqw;
}
@media screen and (max-width: 768px) {
  .form-area .lead+.sub-lead {
    margin-top: 16px;
  }
}
.form-area .sub-lead {
  font-size: 1.8691588785046727cqw;
  font-family: var(--font-noto);
  font-weight: 500;
}
@media (max-width: 768px) {
	.form-area .sub-lead {
		font-size: 1.4rem;
	}
}
.form-area.thanks .sub-lead {
	text-align: center;
}
.form-area .form {
	margin-top: 9.345794392523365cqw;
}
@media screen and (max-width: 768px) {
  .form-area .form {
    margin-top: 40px;
  }
}
.form-area.thanks .form,
.form-area.confirm .form {
	margin-top: 30px;
}

@media (max-width: 768px) {
	.form-area .form {
		margin-top: 40px;
	}
}

.form-area .form .item {
	margin-top: 3.7383177570093453cqw;
	font-size: 1.8691588785046727cqw;
	display: flex;
	align-items: center;
  gap: 8px 4.672897196261682cqw;
}
@media (max-width: 768px) {
	.form-area .form .item {
    flex-direction: column;
		margin-top: 25px;
	}
}

.form-area .form .item:first-of-type {
	margin-top: 0;
}

.form-area .form .item .ttl {
  width: 19.042056074766357cqw;
  align-self: flex-start;
  padding-top: 0.49800796812749004cqw;
}

@media (max-width: 768px) {
	.form-area .form .item .ttl {
		width: 100%;
	}
}

.form-area .form .item .ttl.ttl-top {
	align-self: flex-start;
}

.form-area .form .item .ttl p {
	height: 100%;
  font-size: 1.7928286852589643cqw;
  font-weight: 500;
	display: flex;
}
@media screen and (max-width: 768px) {
  .form-area .form .item .ttl p {
    font-size: 1.44rem;
  }
}
.form-area .form .item .cont {
  font-size: 1.4940239043824701cqw;
  font-family: var(--font-noto);
  font-weight: 500;
  letter-spacing: 0.04em;
	flex: 1;
	display: flex;
	flex-wrap: wrap;
	gap: 1.1952191235059761cqw 3.187250996015936cqw;
}
.form-area .form .item .cont.date .txt {
  width: 100%;
}
.form-area .form .item .cont.schedule{
	width: 100%;
	display: flex;
  flex-direction: column;
	gap: 1.1952191235059761cqw 2.9880478087649402cqw;
}
@media (max-width: 768px) {
	.form-area .form .item .cont {
		width: 100%;
    font-size: 1.4rem;
		gap: 8px 16px;
		flex-wrap: wrap;
	}
}

.form-area .form .item .cont input[type="text"],
.form-area .form .item select {
  width: 37.38317757009346cqw;
  max-width: 37.38317757009346cqw;
	height: 4.672897196261682cqw;
  color: #000;
	flex: 1;
  border-radius: 0px;
  border: unset;
  background-color: #fff;
	padding: 0.5841121495327103cqw 2.102803738317757cqw 0.46728971962616817cqw;
}
@media screen and (max-width: 768px) {
  .form-area .form .item .cont input[type="text"],
  .form-area .form .item select {
    max-width: unset;
    min-height: unset;
    height: 36px;
    padding: 5px 10px 4px;
  }
  .form-area .form .item .cont.schedule input[type="text"] {
    width: 58px;
  }
}

.form-area .form .item .req-mark {
  font-size: 1.4940239043824701cqw;
  font-family: var(--font-noto);
  font-weight: 500;
	color: #ED4F44;
}
@media screen and (max-width: 768px) {
  .form-area .form .item .req-mark {
    font-size: 1.5rem;
  }
}

.form-area .form .item input[type="radio"],
.form-area .form .item input[type="checkbox"] {
	margin-right: .3em;
	accent-color: #ED4F44;
  border-radius: 0px;
}

.form-area .form .item .select-wrap {
	position: relative;
	max-width: 320px;
	flex: 1;
	display: flex;
}

.form-area .form .item .cont.mail input[type="text"],
.form-area .form .item .cont.address input[type="text"] {
	max-width: unset;
}

.form-area .form .item select {
  width: 80px;
}

@media screen and (max-width: 768px) {
  .form-area .form .item select {
    width: 70px;
  }
}

.form-area .form .error {
  width: 100%;
  font-size: 1.593625498007968cqw;
	font-family: var(--font-noto);
	color: #DB5B4D;
  margin-top: 0.9960159362549801cqw;
}
@media screen and (max-width: 768px) {
  .form-area .form .error {
    font-size: 1.6rem;
    margin-top: 8px;
  }
}

.form-area .form .error+.error {
	margin-top: 0.29880478087649404cqw;
}
@media screen and (max-width: 768px) {
  .form-area .form .error+.error {
    margin-top: 3px;
  }
}

.form-area .form .item .cont.file input.file-name {
  width: 22.111553784860558cqw;
	cursor: default;
}
@media screen and (max-width: 768px) {
  .form-area .form .item .cont.file input.file-name {
    width: 145px;
  }
}
.form-area .form .cont.file .file-wrap {
	display: flex;
  flex-wrap: wrap;
	gap: 0.9960159362549801cqw;
}
@media screen and (max-width: 768px) {
  .form-area .form .cont.file .file-wrap {
    gap: 8px;
  }
}

.form-area .form .cont.file label {
	min-width: 15.936254980079681cqw;
	height: 36px;
	font-size: 1.4940239043824701cqw;
	text-align: center;
	color: #fff;
	background-color: #DB5B4D;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	padding: 0.697211155378486cqw 2.49003984063745cqw;
	transition: opacity ease .3s;
}
@media (min-width: 769px) {
	.form-area .form .cont.file label:hover {
		opacity: .7;
	}
}
@media screen and (max-width: 768px) {
  .form-area .form .cont.file label {
    min-width: 119px;
    font-size: 1.2rem;
    padding: 9px 16px;
  }
}

.form-area .form .cont.file label input[type="file"] {
	display: none;
}

.form-area .form .cont.file .form-area .form .cont textarea,
.form-area .form textarea {
	min-height: 18.227091633466134cqw;
	flex: 1;
	border: unset;
  border-radius: unset;
	padding: 0.49800796812749004cqw 0.9960159362549801cqw 0.398406374501992cqw;
}
@media screen and (max-width: 768px) {
  .form-area .form .cont.file .form-area .form .cont textarea,
  .form-area .form textarea {
    height: 131px;
    padding: 5px 10px 4px;
  }
}

.form-area .form-btn-block {
	display: flex;
	justify-content: center;
	gap: 1.9920318725099602cqw;
	margin: 4.780876494023905cqw auto 0;
}

@media screen and (max-width: 768px) {
	.form-area .form-btn-block {
		flex-direction: column;
		gap: 10px;
    margin: 32px auto 0;
	}
}

.form-btn-block .btn {
	position: relative;
	margin: 0 auto;
	cursor: pointer;
	transition: opacity ease .3s;
}

@media screen and (min-width: 769px) {
	.form-btn-block .btn:hover {
		opacity: .7;
	}
}

.form-area :is(button, .send button, .backpage) {
  width: 36.45418326693227cqw;
	height: 8.864541832669323cqw;
	font-size: 1.9920318725099602cqw;
	font-family: var(--shingo-r);
	text-align: center;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #DB5B4D;
	border: unset;
	cursor: pointer;
}
@media screen and (max-width: 768px) {
  .form-area :is(button, .send button, .backpage) {
    width: 272px;
    height: 77px;
    font-size: 1.6rem;
  }
}

.form-btn-block .back button {
	background-color: #333;
}

.form-btn-block .btn::before,
.form-btn-block .btn::after {
	content: '';
	position: absolute;
	width: 9px;
	width: 0.8964143426294822;
	height: 1px;
	background-color: #fff;
	right: 1.294820717131474cqw;
}
@media screen and (max-width: 768px) {
  .form-btn-block .btn::before,
  .form-btn-block .btn::after {
    width: 9px;
    right: 19px;   
  }
}

.form-btn-block .btn::before {
	transform: rotate(45deg);
	top: 4.083665338645418cqw;
}
.form-btn-block .btn::after {
	transform: rotate(-45deg);
	top: 4.681274900398407cqw;
}
.form-btn-block .back .btn::before {
	transform: rotate(-45deg);
	top: 4.083665338645418cqw;
	left: 1.294820717131474cqw;
}
.form-btn-block .back .btn::after {
	transform: rotate(45deg);
	top: 4.681274900398407cqw;
	left: 1.294820717131474cqw;
}
@media screen and (max-width: 768px) {
  .form-btn-block .btn::before {
    top: 34px;
  }
  .form-btn-block .btn::after {
    top: 40px;
  }
  .form-btn-block .back .btn::before {
    top: 34px;
    left: 19px;
  }
  .form-btn-block .back .btn::after {
    top: 40px;
    left: 19px;
  }
}

.form-area .form .form-note {
  font-family: var(--font-noto);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
	display: block;
	text-align: justify;
	text-indent: -1rem;
	padding-left: 1rem;
	margin: 3.386454183266932cqw auto 0;
}
@media screen and (max-width: 768px) {
  .form-area .form .form-note {
    font-size: 1.4rem;
    line-height: 1.8571428571428572;
    margin: 32px;
  }
}

.form-area .form-note {
	font-size: 1.4940239043824701cqw;
  font-family: var(--font-noto);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
	display: block;
	text-align: justify;
	word-break: break-all;
	text-indent: -1em;
	padding-left: 1em;
	margin: 3.386454183266932cqw auto 0;
}
@media screen and (max-width: 768px) {
  .form-area .form-note {
    font-size: 1.4rem;
    line-height: 1.8571428571428572;
    margin-top: 32px;
  }
}
/* ↑↑↑ form ↑↑↑ */

footer {
  width: 100%;
  background-color: #fff;
}

footer .inner {
  display: flex;
  justify-content: space-between;
  padding: 48px min(9.6875cqw, 124px) 64px min(7.03125cqw, 90px);
}

@media screen and (max-width: 768px) {
  footer .inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 24px 24px;
  }
}

footer .inner .l-block {
  width: 551px;
}

@media screen and (max-width: 768px) {
  footer .inner .l-block {
    width: 100%;
  }
}

footer .inner .l-block .logo {
  display: block;
  width: 479px;
}

@media screen and (max-width: 768px) {
  footer .inner .l-block .logo {
    width: 260px;
    margin: 0 auto;
  }
}

footer .inner .l-block .head {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 13px 0 0 34px;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  footer .inner .l-block .head {
    margin: 40px 0 0;
  }
}

footer .inner .l-block .address-wrap {
  margin: 40px 0 0 34px;
}

@media screen and (max-width: 768px) {
  footer .inner .l-block .address-wrap {
    margin: 32px 0 0;
  }
}

footer .inner .l-block .address-wrap .address {
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

footer .inner .l-block .address-wrap .address + .address {
  margin-top: 10px;
}

footer .inner .r-block {
  width: 158px;
  margin-top: 25px;
}

@media screen and (max-width: 768px) {
  footer .inner .r-block {
    width: 100%;
    margin-top: 40px;
  }
}

footer .inner .link-wrap a {
  position: relative;
  display: block;
  width: fit-content;
  font-size: 1.4rem;
  font-weight: 700;
  color: #DB5B4D;
  letter-spacing: 0.1em;
  transition: opacity 300ms ease;
}

@media screen and (min-width: 769px) {
  footer .inner .link-wrap a:hover {
    opacity: 0.5;
  }
}

footer .inner .link-wrap a::after {
  content: '';
  position: absolute;
  translate: 0 -50%;
  top: 50%;
  right: -26px;
  width: 20px;
  height: 14px;
  background: url(../img/outlink.svg) no-repeat;
}

footer .inner .link-wrap a + a {
  margin-top: 10px;
}

footer .inner .r-block small {
  display: block;
  width: fit-content;
  font-family: var(--font-mon);
  font-weight: 300;
  font-size: 1.4rem;
  margin: 154px 0 0 auto;
}

@media screen and (max-width: 768px) {
  footer .inner .r-block small {
    margin: 40px auto 0;
  }
}