@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=noto+sans+JP+New:wght@300;400;500;700;900&display=swap");
:root {
  --font-fam: 'GenJyuuGothic';
  --theme-color: #fff;
  --font-color: #574544;
}

@view-transition {
  navigation: auto;
}
body,
input,
textarea {
  font-family: var(--font-fam), sans-serif;
  color: var(--font-color);
}

body {
  width: 100%;
  overflow-x: clip;
  position: relative;
  line-break: strict;
  font-size: clamp(1.4rem, 1.36vw, 1.6rem);
  font-weight: 500;
  line-height: 1.8;
}
body::before {
  content: "";
  background: url(../img/index/fv/fv_bg.png) no-repeat;
  background-size: cover;
  background-position: top center;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

main {
  overflow-x: clip;
}

img {
  width: 100%;
}

.br-sp {
  display: block;
}
@media (min-width: 1024px) {
  .br-sp {
    display: none;
  }
}
.br-pc {
  display: none;
}
@media (min-width: 1024px) {
  .br-pc {
    display: block;
  }
}

.header {
  width: 100%;
  padding-block: 20px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
}
@media (min-width: 1024px) {
  .header {
    padding-block: 20px 14px;
    background-color: #fff;
    position: sticky;
    top: 0;
    left: 0;
  }
}
.header .logo {
  width: clamp(17.681rem, 17.26vw, 23.575rem);
  margin-inline: auto;
}
@media (min-width: 1100px) {
  .header .logo {
    margin-left: 0;
    width: clamp(15rem, 14.64vw, 23.575rem);
  }
}

@media (min-width: 1100px) {
  .header__inner {
    padding-inline: clamp(2rem, 2.6vw, 4rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.header__nav {
  display: flex;
}
@media (max-width: 1099px) {
  .header__nav {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    background-color: #fff;
    padding-inline: 20px;
    padding-top: 60px;
    padding-bottom: 95px;
    flex-direction: column;
    justify-content: flex-end;
    gap: 40px;
    transition: top 0.6s;
    z-index: 990;
  }
}
@media (min-width: 1100px) {
  .header__nav {
    justify-content: flex-start;
    align-items: center;
    gap: clamp(2rem, 1.56vw, 4rem);
  }
}
@media (max-width: 1099px) {
  .header__nav.active {
    top: 0%;
  }
}
.header__nav--btn-lst {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
}
@media (min-width: 1100px) {
  .header__nav--btn-lst {
    order: 2;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: clamp(1.6rem, 1.25vw, 3rem);
  }
}
.header__nav--btn-lst li {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 1100px) {
  .header__nav--btn-lst li {
    gap: 4px;
  }
}
.header__nav--btn-lst li small {
  display: block;
  font-size: 1.4rem;
  line-height: 1;
  text-align: center;
}
@media (min-width: 1100px) {
  .header__nav--btn-lst li small {
    font-size: clamp(0.7rem, 0.68vw, 1.1rem);
    white-space: nowrap;
  }
}
.header__nav--btn-lst li a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(1.8rem, 1.75vw, 2rem);
  height: 59px;
  background-color: #F5EF9F;
  border: solid 1px #574544;
  border-radius: 100px;
  position: relative;
}
@media (min-width: 1100px) {
  .header__nav--btn-lst li a {
    height: clamp(4rem, 3.9vw, 5rem);
    padding-block: 16px;
    font-size: clamp(1.2rem, 1.17vw, 1.8rem);
  }
}
@media (min-width: 1280px) {
  .header__nav--btn-lst li a {
    font-size: clamp(1.8rem, 1.4vw, 2rem);
  }
}
.header__nav--btn-lst li a::after {
  content: "";
  display: block;
  width: 7px;
  min-width: 7px;
  height: 7px;
  min-height: 7px;
  border-right: solid 1px #574544;
  border-bottom: solid 1px #574544;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(-45deg);
  transition: border-color 0.2s;
}
@media (min-width: 1100px) {
  .header__nav--btn-lst li a::after {
    right: clamp(1rem, 0.97vw, 2rem);
  }
}
@media (min-width: 1100px) {
  .header__nav--btn-lst li a span {
    display: none;
  }
}
@media (min-width: 1100px) {
  .header__nav--btn-lst li a.contact-btn {
    width: clamp(12.8rem, 10vw, 21.5rem);
  }
}
@media (min-width: 1280px) {
  .header__nav--btn-lst li a.contact-btn {
    width: clamp(17.681rem, 13.81vw, 21.5rem);
  }
}
.header__nav--btn-lst li a.contact-btn {
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}
.header__nav--btn-lst li a.contact-btn:hover {
  background-color: #574544;
  color: #fff;
}
.header__nav--btn-lst li a.contact-btn:hover::after {
  border-right-color: #fff;
  border-bottom-color: #fff;
}
.header__nav--btn-lst li a.tel-btn {
  font-size: clamp(2.8rem, 2.73vw, 3.2rem);
  line-height: 1;
}
@media (min-width: 1024px) {
  .header__nav--btn-lst li a.tel-btn {
    pointer-events: none;
  }
}
@media (min-width: 1100px) {
  .header__nav--btn-lst li a.tel-btn {
    background-color: transparent;
    border: none;
    height: auto;
    padding-block: 0;
    font-weight: bold;
    font-size: clamp(2rem, 1.95vw, 2.8rem);
    white-space: nowrap;
  }
}
@media (min-width: 1280px) {
  .header__nav--btn-lst li a.tel-btn {
    font-size: clamp(2.8rem, 2.18vw, 3.2rem);
  }
}
.header__nav--btn-lst li a.tel-btn::before {
  content: "";
  background: url(../img/common/icon-tel.svg) no-repeat;
  background-size: 100%;
  display: block;
  width: 27px;
  min-width: 27px;
  height: 27px;
  min-height: 27px;
  margin-right: 10.2px;
}
@media (min-width: 1100px) {
  .header__nav--btn-lst li a.tel-btn::before {
    content: none;
  }
}
@media (min-width: 1100px) {
  .header__nav--btn-lst li a.tel-btn::after {
    content: none;
  }
}
.header__nav--link-lst {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1.6rem;
  font-weight: bold;
}
@media (min-width: 1100px) {
  .header__nav--link-lst {
    order: 1;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: clamp(1.2rem, 1.17vw, 1.8rem);
    font-size: clamp(1.2rem, 0.93vw, 1.6rem);
  }
}
@media (min-width: 1400px) {
  .header__nav--link-lst {
    gap: clamp(3rem, 2.34vw, 6rem);
  }
}
.header__nav--link-lst li {
  --icon-width: 25px;
  --icon-height: 25px;
}
@media (min-width: 1100px) {
  .header__nav--link-lst li {
    --icon-width: 18px;
    --icon-height: 18px;
  }
}
@media (min-width: 1280px) {
  .header__nav--link-lst li {
    --icon-width: 25px;
    --icon-height: 25px;
  }
}
.header__nav--link-lst li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}
@media (min-width: 1100px) {
  .header__nav--link-lst li a {
    flex-direction: column;
    gap: 5px;
  }
}
@media (min-width: 1024px) {
  .header__nav--link-lst li a:hover::before {
    transform: translateY(-8px);
  }
}
.header__nav--link-lst li:nth-of-type(1) a::before {
  content: "";
  display: block;
  background: url(../img/common/header/icon01.svg) no-repeat;
  background-size: 100%;
  width: var(--icon-width);
  min-width: var(--icon-width);
  height: var(--icon-height);
  min-height: var(--icon-height);
}
.header__nav--link-lst li:nth-of-type(2) a::before {
  content: "";
  display: block;
  background: url(../img/common/header/icon02.svg) no-repeat;
  background-size: 100%;
  width: var(--icon-width);
  min-width: var(--icon-width);
  height: var(--icon-height);
  min-height: var(--icon-height);
}
.header__nav--link-lst li:nth-of-type(3) a::before {
  content: "";
  display: block;
  background: url(../img/common/header/icon03.svg) no-repeat;
  background-size: 100%;
  width: var(--icon-width);
  min-width: var(--icon-width);
  height: var(--icon-height);
  min-height: var(--icon-height);
}
.header__nav--link-lst li:nth-of-type(4) a::before {
  content: "";
  display: block;
  background: url(../img/common/header/icon04.svg) no-repeat;
  background-size: 100%;
  width: var(--icon-width);
  min-width: var(--icon-width);
  height: var(--icon-height);
  min-height: var(--icon-height);
}
.header__nav--link-lst li:nth-of-type(5) a::before {
  content: "";
  display: block;
  background: url(../img/common/header/icon05.svg) no-repeat;
  background-size: 100%;
  width: var(--icon-width);
  min-width: var(--icon-width);
  height: var(--icon-height);
  min-height: var(--icon-height);
}
.header__nav--link-lst li:nth-of-type(6) a::before {
  content: "";
  display: block;
  background: url(../img/common/header/icon06.svg) no-repeat;
  background-size: 100%;
  width: var(--icon-width);
  min-width: var(--icon-width);
  height: var(--icon-height);
  min-height: var(--icon-height);
}
.header__nav--link-lst li:nth-of-type(7) a::before {
  content: "";
  display: block;
  background: url(../img/common/header/icon07.svg) no-repeat;
  background-size: 100%;
  width: var(--icon-width);
  min-width: var(--icon-width);
  height: var(--icon-height);
  min-height: var(--icon-height);
}

.fix--sp {
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding-inline: 10px;
  z-index: 999;
}
@media (min-width: 1100px) {
  .fix--sp {
    display: none;
  }
}
.fix--sp ul {
  width: calc(100% - 50px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.fix--sp ul li:has(.contact-btn) {
  width: calc(100% - 50px);
}
.fix--sp ul li a.contact-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  background-color: #F5EF9F;
  border: solid 1px #574544;
  border-radius: 100px;
  font-size: 1.4rem;
  width: 100%;
  position: relative;
}
.fix--sp ul li a.contact-btn::after {
  content: "";
  display: block;
  width: 7px;
  min-width: 7px;
  height: 7px;
  min-height: 7px;
  border-right: solid 1px #574544;
  border-bottom: solid 1px #574544;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(-45deg);
}
.fix--sp ul li a.tel-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #F5EF9F;
  border: solid 1px #574544;
}
.fix--sp ul li a.tel-btn img {
  width: 22.19px;
}

#menu {
  display: block;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 5px;
  border: solid 1px #574544;
  position: relative;
}
#menu span {
  width: 16px;
  height: 1px;
  background-color: #574544;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.2s, top 0.2s, opacity 0.2s;
}
#menu span:nth-of-type(1) {
  top: calc(50% - 7px);
}
#menu span:nth-of-type(3) {
  top: calc(50% + 7px);
}
#menu.active span:nth-of-type(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
#menu.active span:nth-of-type(2) {
  opacity: 0;
}
#menu.active span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.footer {
  --inner-margin: 20px;
}
@media (min-width: 768px) {
  .footer {
    --inner-margin: 7.5%;
  }
}
@media (min-width: 1280px) {
  .footer {
    --inner-margin: 15%;
  }
}
.footer {
  background-color: #F5EF9F;
  padding-top: clamp(4rem, 3.9vw, 5rem);
  padding-bottom: clamp(1.5rem, 1.46vw, 3rem);
}
.footer .copy {
  margin-top: 48px;
  font-size: clamp(1.2rem, 1.17vw, 1.6rem);
  font-weight: normal;
  padding-inline: 30px;
}
@media (min-width: 1024px) {
  .footer .copy {
    text-align: center;
    margin-top: 26px;
  }
}
.footer .inner {
  display: flex;
  flex-direction: column;
  gap: clamp(4rem, 3.9vw, 7.8rem);
}
@media (min-width: 1280px) {
  .footer .inner {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

.footer--detail {
  padding-inline: clamp(2rem, 1.95vw, 4rem);
  background-color: #fff;
  border-radius: 20px;
  padding-top: clamp(2.9rem, 2.83vw, 4rem);
  padding-bottom: clamp(2rem, 1.95vw, 4rem);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 2.92vw, 4rem);
}
@media (min-width: 1024px) {
  .footer--detail {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
@media (min-width: 1280px) {
  .footer--detail {
    width: 75.25%;
  }
}
.footer--detail .logo {
  width: 275.04px;
}
@media (min-width: 1024px) {
  .footer--detail .logo {
    width: 257px;
  }
}
.footer--detail p {
  margin-top: clamp(1.8rem, 1.75vw, 3.6rem);
  font-size: clamp(1.8rem, 1.75vw, 2rem);
}
.footer--detail ul {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
}
.footer--detail ul li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.footer--detail ul li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  line-height: 1.6;
  gap: 10px;
  font-size: clamp(2.4rem, 2.34vw, 2.8rem);
  font-weight: bold;
}
@media (min-width: 1024px) {
  .footer--detail ul li a {
    pointer-events: none;
  }
}
.footer--detail ul li a::before {
  content: "";
  display: block;
  background: url(../img/common/icon-tel.svg) no-repeat;
  background-size: 100%;
  width: 25px;
  height: 25px;
  aspect-ratio: 1/1;
}
.footer--detail ul li a small {
  display: block;
  padding-left: calc(clamp(3.79rem, 3.7vw, 5.777rem) + clamp(1.41rem, 1.37vw, 2.12rem));
  width: 100%;
  font-size: clamp(1rem, 0.97vw, 1.6rem);
  font-weight: normal;
  transform: translateY(-12px);
}
.footer--detail ul + span {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2px;
  background-color: rgba(245, 239, 159, 0.5);
  font-size: clamp(1.4rem, 1.36vw, 1.6rem);
  font-weight: normal;
  text-align: center;
}
@media (min-width: 768px) {
  .footer--detail ul + span {
    width: fit-content;
    padding-inline: 6px;
  }
}
.footer--detail .map {
  width: 100%;
}
@media (min-width: 1024px) {
  .footer--detail .map {
    width: 425px;
  }
}
.footer--detail .map iframe {
  width: 100% !important;
  height: auto;
  aspect-ratio: 3.15/2.37;
}

.footer--link {
  padding-inline: 20px;
}
@media (min-width: 1280px) {
  .footer--link {
    padding-inline: 0;
    width: calc(100% - (75.25% + clamp(4rem, 3.9vw, 7.8rem)));
  }
}
.footer--link .link {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer--link .link li a {
  width: fit-content;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  font-size: 1.6rem;
  position: relative;
  transition: opacity 0.2s;
}
.footer--link .link li a::after {
  content: "";
  display: block;
  width: 7px;
  min-width: 7px;
  height: 7px;
  min-height: 7px;
  border-right: solid 1px #574544;
  border-bottom: solid 1px #574544;
  transition: border-color 0.2s;
  transform: rotate(-45deg);
}
@media (min-width: 1024px) {
  .footer--link .link li a:hover {
    opacity: 0.7;
  }
}
.footer--link .btn--lst {
  margin-top: 30px;
}
@media (min-width: 1280px) {
  .footer--link .btn--lst {
    margin-top: 20px;
  }
}
.footer--link .btn--lst .contact-btn {
  max-width: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(1.8rem, 1.75vw, 2rem);
  height: 59px;
  background-color: #574544;
  border: solid 1px #574544;
  color: #fff;
  border-radius: 100px;
  position: relative;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}
@media (min-width: 1024px) {
  .footer--link .btn--lst .contact-btn:hover {
    background-color: #fff;
    color: #574544;
  }
  .footer--link .btn--lst .contact-btn:hover::after {
    border-right-color: #574544;
    border-bottom-color: #574544;
  }
}
@media (min-width: 1100px) {
  .footer--link .btn--lst .contact-btn {
    height: clamp(4rem, 3.9vw, 5rem);
    padding-block: 16px;
    font-size: clamp(1.2rem, 1.17vw, 1.8rem);
  }
}
@media (min-width: 1280px) {
  .footer--link .btn--lst .contact-btn {
    font-size: clamp(1.8rem, 1.4vw, 2rem);
  }
}
.footer--link .btn--lst .contact-btn::after {
  content: "";
  display: block;
  width: 7px;
  min-width: 7px;
  height: 7px;
  min-height: 7px;
  border-right: solid 1px #fff;
  border-bottom: solid 1px #fff;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(-45deg);
  transition: border-color 0.2s;
}
@media (min-width: 1100px) {
  .footer--link .btn--lst .contact-btn::after {
    right: clamp(1rem, 0.97vw, 2rem);
  }
}
@media (min-width: 1100px) {
  .footer--link .btn--lst .contact-btn span {
    display: none;
  }
}
.footer--link .btn--lst .contact-btn.tel-btn {
  font-size: clamp(2.8rem, 2.73vw, 3.2rem);
  line-height: 1;
}
@media (min-width: 1024px) {
  .footer--link .btn--lst .contact-btn.tel-btn {
    pointer-events: none;
  }
}
@media (min-width: 1100px) {
  .footer--link .btn--lst .contact-btn.tel-btn {
    background-color: transparent;
    border: none;
    height: auto;
    padding-block: 0;
    font-weight: bold;
    font-size: clamp(2rem, 1.95vw, 2.8rem);
    white-space: nowrap;
  }
}
@media (min-width: 1280px) {
  .footer--link .btn--lst .contact-btn.tel-btn {
    font-size: clamp(2.8rem, 2.18vw, 3.2rem);
  }
}
.footer--link .btn--lst .contact-btn.tel-btn::before {
  content: "";
  background: url(../img/common/icon-tel.svg) no-repeat;
  background-size: 100%;
  display: block;
  width: 27px;
  min-width: 27px;
  height: 27px;
  min-height: 27px;
  margin-right: 10.2px;
}
@media (min-width: 1100px) {
  .footer--link .btn--lst .contact-btn.tel-btn::before {
    content: none;
  }
}
@media (min-width: 1100px) {
  .footer--link .btn--lst .contact-btn.tel-btn::after {
    content: none;
  }
}
.footer--link .btn--lst .instagram-btn {
  margin-top: 28px;
  display: block;
  width: 45px;
  aspect-ratio: 1/1;
}
@media (min-width: 1280px) {
  .footer--link .btn--lst .instagram-btn {
    margin-top: 20px;
  }
}

#top-back {
  display: none;
  width: 55px;
  position: fixed;
  right: 10px;
  bottom: 96px;
  z-index: 11;
  cursor: pointer;
}
@media (min-width: 1280px) {
  #top-back {
    width: 98px;
    right: clamp(2rem, 1.95vw, 4rem);
    bottom: clamp(4rem, 3.9vw, 7.6rem);
  }
}
#top-back img {
  transition: opacity 0.3s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#top-back img.hover {
  opacity: 0;
}
@media (min-width: 1024px) {
  #top-back:hover .active {
    opacity: 0;
  }
  #top-back:hover .hover {
    opacity: 1;
  }
}

.fv {
  overflow-x: clip;
  position: relative;
}
.fv h1 {
  margin-inline: auto;
  width: clamp(17rem, 13.28vw, 24.789rem);
}

.fv--container {
  padding-top: 115px;
  padding-bottom: 107px;
}
@media (min-width: 1024px) {
  .fv--container {
    padding-top: 105px;
    padding-bottom: 135px;
  }
}

.fv--box {
  margin-top: -56px;
  background: url(../img/index/fv/fv_sp.png) no-repeat;
  background-size: 355px auto;
  background-position: center;
  margin-inline: auto;
  width: 100%;
  height: 320px;
}
@media (min-width: 1024px) {
  .fv--box {
    margin-top: -115px;
    background: url(../img/index/fv/fv_pc.png) no-repeat;
    background-size: 793.84px auto;
    background-position: center;
    height: 526.64px;
  }
}
.fv--box .loop-box {
  transform: translateY(124px);
}
@media (min-width: 1024px) {
  .fv--box .loop-box {
    transform: translateY(168px);
  }
}
.fv--box .loop-txt {
  position: relative;
  z-index: 0;
  overflow: clip;
  display: flex;
  align-items: center;
  gap: clamp(2.4rem, 2.34vw, 5.1rem);
  width: max-content;
  animation: loop-txt 40s linear infinite;
}
.fv--box .loop-txt li {
  flex-shrink: 0;
  width: 792px;
  min-width: 792px;
}
@media (min-width: 1024px) {
  .fv--box .loop-txt li {
    width: 1520px;
    min-width: 1520px;
  }
}

.fv--results {
  margin-top: 52px;
  width: 335px;
  height: 46px;
  background-color: #F5EF9F;
  border: solid 1px #574544;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  padding-bottom: 25px;
  margin-inline: auto;
}
@media (min-width: 1100px) {
  .fv--results {
    width: clamp(33.5rem, 30.45vw, 45rem);
    height: clamp(4.6rem, 4.18vw, 6.809rem);
    position: absolute;
    top: 40px;
    left: 66px;
    margin-top: 0;
    padding-bottom: clamp(2.5rem, 2.27vw, 3.5rem);
  }
}
.fv--results p {
  width: fit-content;
  margin-inline: auto;
  font-size: 1.8rem;
  font-weight: bold;
}
@media (min-width: 1100px) {
  .fv--results p {
    font-size: clamp(1.8rem, 1.63vw, 2.4rem);
  }
}
.fv--results p strong {
  display: inline-block;
  margin-inline: 8px;
  font-size: 5.2rem;
  font-weight: 900;
  color: #fff;
  text-shadow: -1px -1px 0 #574544, 1px -1px 0 #574544, -1px 1px 0 #574544, 1px 1px 0 #574544;
  -webkit-text-stroke: 2px #574544;
  transform: translateY(4px);
}
@media (min-width: 1100px) {
  .fv--results p strong {
    font-size: clamp(5.2rem, 4.72vw, 7.2rem);
  }
}

.fv--msg {
  width: 320px;
  margin-inline: auto;
}
@media (min-width: 1100px) {
  .fv--msg {
    width: min(21.33vw, 320px);
    position: absolute;
    top: 36px;
    right: 40px;
  }
}

.loop-img {
  position: relative;
  z-index: 5;
  margin-top: -20px;
  overflow: clip;
  display: flex;
  align-items: center;
  width: max-content;
  animation: loop-img 80s linear infinite;
  transform: translateX(-100%);
}
@media (min-width: 1024px) {
  .loop-img {
    margin-top: -45px;
  }
}
.loop-img li {
  flex-shrink: 0;
  width: 1920px;
  min-width: 1920px;
}
@media (min-width: 1024px) {
  .loop-img li {
    width: 3350px;
    min-width: 3350px;
  }
}
.loop-img--products .loop-img {
  margin-top: clamp(10rem, 9.76vw, 20rem);
  overflow-x: clip;
}

@keyframes loop-txt {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-25%);
  }
}
@keyframes loop-img {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}
:root {
  --inner-margin: 40px;
  --inner-max: 1200px;
}
@media (min-width: 768px) {
  :root {
    --inner-margin: 7.5%;
  }
}
@media (min-width: 1280px) {
  :root {
    --inner-margin: 15%;
  }
}

.inner {
  width: min(100% - var(--inner-margin), var(--inner-max));
  margin-left: auto;
  margin-right: auto;
  transition: width 0.2s;
}

.ttl {
  font-size: clamp(2rem, 1.95vw, 3.2rem);
  font-weight: bold;
  display: flex;
  flex-direction: column;
}
.ttl strong {
  font-size: clamp(7.9rem, 7.71vw, 13rem);
  font-weight: bold;
  letter-spacing: -1.8px;
  color: #F5EF9F;
  -webkit-text-stroke: 1px #574544;
  line-height: 1.2;
}

.cta-tel {
  margin-top: 100px;
  --inner-max: 810px;
}
@media (min-width: 1024px) {
  .cta-tel {
    margin-top: 65px;
  }
}
.cta-tel .inner {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 1.95vw, 4rem);
}
.cta-tel a {
  width: 100%;
  display: block;
  margin-inline: auto;
  max-width: 636px;
}
@media (min-width: 1024px) {
  .cta-tel a {
    pointer-events: none;
  }
}

.top--bnr {
  margin-top: clamp(10rem, 9.76vw, 20rem);
  --inner-max: 1019px;
}
.top--bnr ul {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 1.95vw, 6rem);
}
@media (min-width: 1024px) {
  .top--bnr ul {
    flex-direction: row;
  }
}
.top--bnr ul li a {
  transition: opacity 0.2s;
}
.top--bnr ul li a img {
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.16));
}
@media (min-width: 1024px) {
  .top--bnr ul li a:hover {
    opacity: 0.7;
  }
}

.about {
  padding-top: clamp(10rem, 9.76vw, 20rem);
}
.about .inner {
  display: flex;
  flex-direction: column;
  gap: clamp(4.5rem, 4.39vw, 7.5rem);
}
@media (min-width: 1024px) {
  .about .inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.about .txt {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (min-width: 1024px) {
  .about .txt {
    width: calc(50% - 59px);
  }
}
.about .txt .btn--lst {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 1.95vw, 2.55rem);
}
@media (min-width: 1024px) {
  .about .txt .btn--lst {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media (min-width: 1024px) {
  .about .txt .btn--lst li {
    width: calc((100% - clamp(2rem, 1.95vw, 2.55rem)) / 2);
  }
}
.about .txt .btn--lst li a {
  font-size: 1.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px #574544;
  background-color: #F5EF9F;
  padding-block: clamp(1.5rem, 1.46vw, 1.7rem) clamp(1.4rem, 1.36vw, 1.5rem);
  border-radius: 4px;
  position: relative;
  transition: background-color 0.2s, color 0.2s;
}
.about .txt .btn--lst li a::after {
  content: "";
  display: block;
  width: 7px;
  min-width: 7px;
  height: 7px;
  min-height: 7px;
  border-right: solid 1px #574544;
  border-bottom: solid 1px #574544;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(-45deg);
  transition: border-color 0.2s;
}
@media (min-width: 1100px) {
  .about .txt .btn--lst li a::after {
    right: clamp(1rem, 0.97vw, 2rem);
  }
}
@media (min-width: 1024px) {
  .about .txt .btn--lst li a:hover {
    background-color: #574544;
    color: #fff;
  }
  .about .txt .btn--lst li a:hover::after {
    border-right-color: #fff;
    border-bottom-color: #fff;
  }
}
.about img {
  display: block;
}
@media (min-width: 1024px) {
  .about img {
    width: calc(50% - 16px);
  }
}

@media (max-width: 767px) {
  .support {
    --inner-margin: 20px;
  }
}
.support {
  padding-top: clamp(10rem, 9.76vw, 20.2rem);
}
.support .ttl {
  text-align: center;
  position: relative;
  z-index: 5;
}
.support .btn {
  font-size: 1.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px #574544;
  background-color: #F5EF9F;
  padding-block: 15px 14px;
  border-radius: 4px;
  position: relative;
  width: calc(100% - 20px);
  margin-inline: auto;
  transition: background-color 0.2s, color 0.2s;
}
@media (min-width: 768px) {
  .support .btn {
    max-width: 254.5px;
  }
}
@media (min-width: 1024px) {
  .support .btn {
    margin-top: -25px;
  }
}
.support .btn::after {
  content: "";
  display: block;
  width: 7px;
  min-width: 7px;
  height: 7px;
  min-height: 7px;
  border-right: solid 1px #574544;
  border-bottom: solid 1px #574544;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(-45deg);
  transition: border-color 0.2s;
}
@media (min-width: 1100px) {
  .support .btn::after {
    right: clamp(1rem, 0.97vw, 2rem);
  }
}
@media (min-width: 1024px) {
  .support .btn:hover {
    background-color: #574544;
    color: #fff;
  }
  .support .btn:hover::after {
    border-right-color: #fff;
    border-bottom-color: #fff;
  }
}

.support--contents {
  position: relative;
  z-index: 0;
  background-color: rgba(245, 239, 159, 0.49);
  border-radius: clamp(1rem, 0.97vw, 2rem);
  padding-inline: 10px;
  padding-top: 100px;
  padding-bottom: 215px;
  transform: translateY(-52px);
  position: relative;
}
@media (min-width: 1024px) {
  .support--contents {
    padding-inline: clamp(2.5rem, 2.44vw, 5rem);
    padding-top: 124.5px;
    padding-bottom: 52px;
    transform: translateY(-100px);
  }
}
.support--contents::after {
  content: "";
  display: block;
  background: url(../img/index/support/img_sp.png) no-repeat;
  background-size: 100%;
  width: clamp(33.5rem, 26.17vw, 43.304rem);
  height: clamp(20.595rem, 16.08vw, 23.82rem);
  position: absolute;
  bottom: -21.2px;
  right: 10px;
}
@media (min-width: 1024px) {
  .support--contents::after {
    background: url(../img/index/support/img_pc.png) no-repeat;
    background-size: 100%;
    bottom: calc(clamp(4rem, 3.9vw, 8.6rem) * -1);
    right: calc(clamp(2.5rem, 2.44vw, 5.1rem) * -1);
  }
}
.support--contents ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 33.5px 7px;
  counter-reset: num 0;
}
@media (min-width: 1024px) {
  .support--contents ul {
    gap: 30.2px 25px;
  }
}
.support--contents ul li {
  width: calc((100% - 7px) / 2);
  background-color: #fff;
  border-radius: 20px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-block: 40px 18px;
  text-align: center;
  min-height: 100px;
  counter-increment: num 1;
  position: relative;
}
@media (min-width: 1024px) {
  .support--contents ul li {
    width: calc((100% - 50px) / 3);
    padding-inline: clamp(1.5rem, 1.46vw, 3rem);
    justify-content: flex-start;
    gap: clamp(1rem, 0.97vw, 2rem);
    padding-block: 6px 0;
    min-height: clamp(9rem, 8.78vw, 10.5rem);
  }
}
.support--contents ul li:nth-of-type(2) {
  position: relative;
}
@media (min-width: 1024px) {
  .support--contents ul li:nth-of-type(2) {
    gap: clamp(1.4rem, 1.36vw, 2.8rem);
  }
}
.support--contents ul li:nth-of-type(2)::after {
  content: "";
  display: block;
  background: url(../img/index/support/icon-point.png) no-repeat;
  background-size: 100%;
  width: clamp(4.485rem, 4.37vw, 6.343rem);
  height: clamp(5.604rem, 5.47vw, 7.9rem);
  position: absolute;
  top: -32px;
  right: 6px;
}
@media (min-width: 1024px) {
  .support--contents ul li:nth-of-type(2)::after {
    top: 50%;
    right: clamp(1rem, 0.97vw, 1.65rem);
    transform: translateY(-50%);
  }
}
.support--contents ul li::before {
  content: counter(num);
  display: block;
  font-size: clamp(5rem, 4.88vw, 6rem);
  line-height: 1;
  font-weight: bold;
  color: #F5EF9F;
  -webkit-text-stroke: 1px #574544;
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 1024px) {
  .support--contents ul li::before {
    position: static;
    transform: none;
  }
}
.support--contents ul li p {
  font-size: clamp(1.8rem, 1.75vw, 2.4rem);
  font-weight: bold;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  .support--contents ul li p {
    text-align: left;
  }
}
.support--contents ul li p small {
  font-size: clamp(1.4rem, 1.36vw, 1.6rem);
  font-weight: bold;
}
.support--contents ul li p span {
  font-size: clamp(1.4rem, 1.36vw, 2rem);
  font-weight: bold;
}

.works {
  padding-top: clamp(10rem, 9.76vw, 20rem);
}

.works--lst {
  margin-top: clamp(3rem, 2.92vw, 6rem);
}
.works--lst > ul {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 15px;
}
@media (min-width: 900px) {
  .works--lst > ul {
    gap: 12px;
  }
}
.works--lst > ul li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(0.6rem, 0.58vw, 1.2rem);
  aspect-ratio: 1/1;
  width: calc((100% - 15px) / 2);
  padding-block: clamp(1.7rem, 1.66vw, 2rem);
  padding-inline: clamp(1.5rem, 1.46vw, 2rem);
  background-color: rgba(245, 239, 159, 0.5);
  border-radius: 20px;
}
@media (min-width: 900px) {
  .works--lst > ul li {
    width: calc((100% - 48px) / 5);
  }
}
.works--lst > ul li p {
  font-size: clamp(1.6rem, 1.56vw, 2rem);
}

.works--archive {
  margin-top: clamp(8rem, 7.81vw, 9.9rem);
}
.works--archive h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-size: clamp(3.8rem, 3.71vw, 5.2rem);
  font-weight: bold;
  color: #F5EF9F;
  -webkit-text-stroke: 1px #574544;
  line-height: 1.2;
}
.works--archive h3::before {
  content: "";
  display: block;
  background: url(../img/index/works/icon.svg) no-repeat;
  background-size: 100%;
  width: clamp(6rem, 5.85vw, 7rem);
  height: clamp(6rem, 5.85vw, 7rem);
  aspect-ratio: 1/1;
}
.works--archive .btn--lst {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 1.95vw, 2.55rem);
}
@media (min-width: 1024px) {
  .works--archive .btn--lst {
    max-width: 630px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    margin-inline: auto;
  }
}
@media (min-width: 1024px) {
  .works--archive .btn--lst li {
    width: calc((100% - clamp(2rem, 1.95vw, 2.55rem)) / 2);
  }
}
.works--archive .btn--lst li a {
  font-size: 1.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px #574544;
  background-color: #F5EF9F;
  padding-block: 15px 14px;
  border-radius: 4px;
  position: relative;
  transition: background-color 0.2s, color 0.2s;
}
.works--archive .btn--lst li a::after {
  content: "";
  display: block;
  width: 7px;
  min-width: 7px;
  height: 7px;
  min-height: 7px;
  border-right: solid 1px #574544;
  border-bottom: solid 1px #574544;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(-45deg);
  transition: border-color 0.2s;
}
@media (min-width: 1100px) {
  .works--archive .btn--lst li a::after {
    right: clamp(1rem, 0.97vw, 2rem);
  }
}
@media (min-width: 1024px) {
  .works--archive .btn--lst li a:hover {
    background-color: #574544;
    color: #fff;
  }
  .works--archive .btn--lst li a:hover::after {
    border-right-color: #fff;
    border-bottom-color: #fff;
  }
}

.works--slider {
  margin-top: clamp(8rem, 7.81vw, 10rem);
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  overflow: hidden;
}
.works--slider__track {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 1.46vw, 3rem);
  width: max-content;
  animation: worksSlider 30s linear infinite;
}
.works--slider .item {
  flex-shrink: 0;
  width: auto;
  height: clamp(24rem, 23.43vw, 32rem);
}
.works--slider .item img {
  border-radius: 20px;
  display: block;
  width: auto;
  height: 100%;
  object-fit: contain;
}

@keyframes worksSlider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - clamp(1.5rem, 1.46vw, 3rem) / 2));
  }
}
@media (max-width: 767px) {
  .staff {
    --inner-margin: 20px;
  }
}
.staff {
  padding-top: clamp(10rem, 9.76vw, 20rem);
}
.staff .ttl {
  margin-left: 20px;
  position: relative;
  z-index: 5;
}
@media (min-width: 768px) {
  .staff .ttl {
    width: fit-content;
    margin-inline: auto;
    text-align: center;
  }
}
.staff .ttl::after {
  content: "";
  display: block;
  background: url(../img/index/staff/txt-tap.svg) no-repeat;
  background-size: 100%;
  width: clamp(12.662rem, 9.89vw, 17.036rem);
  height: clamp(12.282rem, 9.59vw, 16.525rem);
  min-width: clamp(12.662rem, 9.89vw, 17.036rem);
  min-height: clamp(12.282rem, 9.59vw, 16.525rem);
  position: absolute;
  right: 15px;
  top: 0;
}
@media (min-width: 768px) {
  .staff .ttl::after {
    right: calc(clamp(15rem, 14.64vw, 20rem) * -1);
  }
}
@media (min-width: 1024px) {
  .staff .ttl::after {
    background: url(../img/index/staff/txt-click.svg) no-repeat;
    background-size: 100%;
  }
}
@media (min-width: 1280px) {
  .staff .ttl::after {
    top: clamp(3.2rem, 2.5vw, 6.2rem);
  }
}

.staff--lst {
  position: relative;
  z-index: 0;
  background-color: rgba(245, 239, 159, 0.49);
  border-radius: clamp(1rem, 0.97vw, 2rem);
  padding-inline: 10px;
  padding-top: 75px;
  padding-bottom: clamp(3rem, 2.92vw, 6rem);
  transform: translateY(-58px);
}
@media (min-width: 1024px) {
  .staff--lst {
    padding-inline: clamp(2.5rem, 2.44vw, 5rem);
    padding-top: 124.5px;
    transform: translateY(-100px);
  }
}
.staff--lst ul {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px 19px;
}
@media (min-width: 1024px) {
  .staff--lst ul {
    gap: clamp(3rem, 2.92vw, 5rem);
  }
}
.staff--lst ul li {
  width: calc((100% - 19px) / 2);
}
@media (min-width: 1024px) {
  .staff--lst ul li {
    width: calc((100% - clamp(3rem, 2.92vw, 5rem) * 3) / 4);
  }
}
.staff--lst ul li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(0.6rem, 0.78vw, 1.2rem);
}
.staff--lst ul li a p {
  text-align: center;
  font-size: clamp(1.4rem, 1.36vw, 2.2rem);
  font-weight: bold;
  line-height: 1.4;
}

.products {
  padding-top: clamp(5rem, 4.88vw, 15rem);
}
.products .ttl strong {
  font-size: clamp(7.9rem, 7.71vw, 13rem);
}

.products--dl {
  margin-top: 55px;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: clamp(2.6rem, 2.53vw, 4rem) 15px;
}
.products--dl dl {
  border-radius: 10px;
  background-color: #fff;
}
.products--dl dl dt {
  width: 100%;
  height: clamp(5rem, 4.88vw, 7.4rem);
  font-size: clamp(1.8rem, 1.75vw, 2.4rem);
  font-weight: bold;
  line-height: 1.6;
  background-color: #F5EF9F;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-inline: clamp(1.5rem, 1.46vw, 3rem);
}
.products--dl dl dt span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}
.products--dl dl dd {
  background-color: #fff;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.products--dl dl.eco-cute {
  width: 100%;
}
.products--dl dl.eco-cute dt {
  position: relative;
}
.products--dl dl.eco-cute dt::before {
  content: "";
  display: block;
  background: url(../img/index/products/img01-02.png) no-repeat;
  background-size: 100%;
  width: 58.76px;
  height: 41.54px;
  position: absolute;
  top: -35px;
  left: 10px;
}
@media (min-width: 1024px) {
  .products--dl dl.eco-cute dt::before {
    left: auto;
    right: clamp(3rem, 2.92vw, 6rem);
  }
}
@media (min-width: 1280px) {
  .products--dl dl.eco-cute dt::before {
    width: 88.67px;
    height: 62.68px;
    top: -49px;
  }
}
.products--dl dl.eco-cute dt span {
  width: fit-content;
  margin-inline: auto;
}
.products--dl dl.eco-cute dt span::after {
  content: "";
  display: block;
  background: url(../img/index/products/img01.png) no-repeat;
  background-size: 100%;
  width: clamp(8rem, 7.81vw, 10rem);
  height: clamp(8rem, 7.81vw, 10rem);
  aspect-ratio: 1/1;
  position: absolute;
  bottom: 0;
  right: calc(clamp(9.9rem, 9.66vw, 13.3rem) * -1);
}
.products--dl dl.eco-cute dd > ul {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
}
.products--dl dl.eco-cute dd > ul > li {
  width: 50%;
  font-size: clamp(1.6rem, 1.56vw, 2rem);
  text-align: center;
  padding-block: 10px;
}
@media (min-width: 1024px) {
  .products--dl dl.eco-cute dd > ul > li {
    width: 20%;
  }
}
@media (min-width: 1024px) {
  .products--dl dl.eco-cute dd > ul > li:empty {
    display: none;
  }
}
.products--dl dl.eco-cute dd > ul > li:nth-of-type(n+3) {
  border-top: solid 1px rgba(87, 69, 68, 0.5);
}
@media (min-width: 1024px) {
  .products--dl dl.eco-cute dd > ul > li:nth-of-type(n+3) {
    border-top: none;
  }
}
.products--dl dl.eco-cute dd > ul > li:nth-of-type(odd) span {
  border-right: solid 1px rgba(87, 69, 68, 0.5);
}
@media (min-width: 1024px) {
  .products--dl dl.eco-cute dd > ul > li:nth-last-of-type(2) span {
    border-right: none !important;
  }
}
.products--dl dl.eco-cute dd > ul > li span {
  display: block;
  text-align: center;
}
@media (min-width: 1024px) {
  .products--dl dl.eco-cute dd > ul > li span {
    border-right: solid 1px rgba(87, 69, 68, 0.5);
  }
}
.products--dl dl.eco-cute dd > ul > li a {
  padding-block: 8px;
  background-color: transparent;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: background-color 0.2s;
}
@media (min-width: 1024px) {
  .products--dl dl.eco-cute dd > ul > li a {
    width: calc(100% - 15px);
    margin-inline: auto;
  }
}
@media (min-width: 1024px) {
  .products--dl dl.eco-cute dd > ul > li a:hover {
    background-color: #F5EF9F;
  }
}
.products--dl dl.hi dt span::after {
  content: "";
  display: block;
  background: url(../img/index/products/img02.png) no-repeat;
  background-size: 100%;
  width: clamp(6rem, 5.85vw, 10rem);
  height: clamp(6rem, 5.85vw, 10rem);
  aspect-ratio: 1/1;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 1023px) {
  .products--dl dl.hi dt span::after {
    right: -10px;
  }
}
.products--dl dl.air-con dt span::after {
  content: "";
  display: block;
  background: url(../img/index/products/img03.png) no-repeat;
  background-size: 100%;
  width: clamp(6rem, 5.85vw, 10rem);
  height: clamp(6rem, 5.85vw, 10rem);
  aspect-ratio: 1/1;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 1023px) {
  .products--dl dl.air-con dt span::after {
    right: -10px;
  }
}
.products--dl dl.heating dt span::after {
  content: "";
  display: block;
  background: url(../img/index/products/img04.png) no-repeat;
  background-size: 100%;
  width: clamp(6rem, 5.85vw, 10rem);
  height: clamp(6rem, 5.85vw, 10rem);
  aspect-ratio: 1/1;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 1023px) {
  .products--dl dl.heating dt span::after {
    right: -10px;
  }
}
.products--dl dl.water-heater dt span::after {
  content: "";
  display: block;
  background: url(../img/index/products/img05.png) no-repeat;
  background-size: 100%;
  width: clamp(6rem, 5.85vw, 10rem);
  height: clamp(6rem, 5.85vw, 10rem);
  aspect-ratio: 1/1;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 1023px) {
  .products--dl dl.water-heater dt span::after {
    right: -15px;
  }
}
.products--dl dl.solar-panels dt span::after {
  content: "";
  display: block;
  background: url(../img/index/products/img06.png) no-repeat;
  background-size: 100%;
  width: clamp(8.4rem, 8.2vw, 14rem);
  height: clamp(6rem, 5.85vw, 10rem);
  aspect-ratio: 1/1;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 1023px) {
  .products--dl dl.solar-panels dt span::after {
    right: -15px;
  }
}
@media (min-width: 1024px) {
  .products--dl dl.solar-panels dt span::after {
    right: -10px;
  }
}
.products--dl dl.battery dt span::after {
  content: "";
  display: block;
  background: url(../img/index/products/img07.png) no-repeat;
  background-size: 100%;
  width: clamp(6rem, 5.85vw, 10rem);
  height: clamp(6rem, 5.85vw, 10rem);
  aspect-ratio: 1/1;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 1023px) {
  .products--dl dl.battery dt span::after {
    right: -10px;
  }
}
.products--dl dl.sanitary dt span::after {
  content: "";
  display: block;
  background: url(../img/index/products/img08.png) no-repeat;
  background-size: 100%;
  width: clamp(11.6rem, 11.32vw, 23.2rem);
  height: clamp(5rem, 4.88vw, 10rem);
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media (max-width: 1023px) {
  .products--dl dl.sanitary dt span::after {
    right: -10px;
  }
}
.products--dl dl.kitchen dt span::after {
  content: "";
  display: block;
  background: url(../img/index/products/img09.png) no-repeat;
  background-size: 100%;
  width: clamp(12.5rem, 12.2vw, 21rem);
  height: clamp(6rem, 5.85vw, 10rem);
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media (max-width: 1023px) {
  .products--dl dl.kitchen dt span::after {
    right: -10px;
  }
}
.products--dl dl.sanitary dt, .products--dl dl.kitchen dt {
  height: clamp(8.2rem, 8vw, 11rem);
}
.products--dl dl.column {
  width: calc((100% - 15px) / 2);
}
@media (min-width: 1024px) {
  .products--dl dl.column {
    width: calc((100% - 30px) / 3);
    height: auto;
  }
}
.products--dl dl.column dd {
  padding-bottom: 20px;
}
.products--dl dl.column-pc {
  width: 100%;
}
@media (min-width: 1024px) {
  .products--dl dl.column-pc {
    width: calc((100% - 15px) / 2);
  }
}
.products--dl dl.column-pc dd {
  padding-bottom: 20px;
}
.products--dl dl.column dd, .products--dl dl.column-pc dd {
  padding-top: 16px;
}
.products--dl dl.column dd > ul, .products--dl dl.column-pc dd > ul {
  display: flex;
  flex-direction: column;
  padding-inline: clamp(1.5rem, 1.46vw, 2.15rem);
}
.products--dl dl.column dd > ul > li > span, .products--dl dl.column-pc dd > ul > li > span {
  font-size: clamp(1.6rem, 1.56vw, 2rem);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 11px;
}
@media (min-width: 1024px) {
  .products--dl dl.column dd > ul > li > span, .products--dl dl.column-pc dd > ul > li > span {
    padding-inline: 8px;
  }
}
.products--dl dl.column dd > ul > li > span::before, .products--dl dl.column-pc dd > ul > li > span::before {
  content: "";
  width: clamp(1rem, 0.97vw, 1.2rem);
  height: clamp(1rem, 0.97vw, 1.2rem);
  border-radius: 2px;
  background-color: #574544;
}
.products--dl dl.column dd > ul > li > a, .products--dl dl.column-pc dd > ul > li > a {
  background-color: transparent;
  border-radius: 5px;
  font-size: clamp(1.6rem, 1.56vw, 2rem);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 11px;
  width: 100%;
  height: 100%;
  transition: background-color 0.2s;
}
@media (min-width: 1024px) {
  .products--dl dl.column dd > ul > li > a, .products--dl dl.column-pc dd > ul > li > a {
    padding-inline: 8px;
  }
}
.products--dl dl.column dd > ul > li > a::before, .products--dl dl.column-pc dd > ul > li > a::before {
  content: "";
  width: clamp(1rem, 0.97vw, 1.2rem);
  height: clamp(1rem, 0.97vw, 1.2rem);
  border-radius: 2px;
  background-color: #574544;
}
@media (min-width: 1024px) {
  .products--dl dl.column dd > ul > li > a:hover, .products--dl dl.column-pc dd > ul > li > a:hover {
    background-color: #F5EF9F;
  }
}
.products--dl dl.column dd > ul > li > ul, .products--dl dl.column-pc dd > ul > li > ul {
  padding-left: calc(clamp(1rem, 0.97vw, 1.2rem) + 11px);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
}
@media (min-width: 1024px) {
  .products--dl dl.column dd > ul > li > ul, .products--dl dl.column-pc dd > ul > li > ul {
    margin-top: 6px;
    gap: clamp(2rem, 1.95vw, 4rem);
  }
}
.products--dl dl.column dd > ul > li > ul li, .products--dl dl.column-pc dd > ul > li > ul li {
  width: fit-content;
}
.products--dl dl.column dd > ul > li > ul li a, .products--dl dl.column-pc dd > ul > li > ul li a {
  background-color: transparent;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.2s;
}
@media (min-width: 1024px) {
  .products--dl dl.column dd > ul > li > ul li a, .products--dl dl.column-pc dd > ul > li > ul li a {
    padding-inline: 10px;
  }
}
@media (min-width: 1024px) {
  .products--dl dl.column dd > ul > li > ul li a:hover, .products--dl dl.column-pc dd > ul > li > ul li a:hover {
    background-color: #F5EF9F;
  }
}

.products--payment {
  margin-top: clamp(10rem, 9.76vw, 20rem);
  position: relative;
  z-index: 0;
  background-color: rgba(245, 239, 159, 0.49);
  border-radius: clamp(1rem, 0.97vw, 2rem);
  padding-inline: 10px;
  padding-block: clamp(2rem, 1.95vw, 4rem);
}
@media (min-width: 1024px) {
  .products--payment {
    padding-inline: clamp(2.5rem, 2.44vw, 5rem);
  }
}
.products--payment > p {
  font-size: clamp(1.6rem, 1.56vw, 2rem);
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
}
.products--payment > p span {
  font-size: clamp(2.4rem, 2.34vw, 3.2rem);
  font-weight: bold;
}
.products--payment > p strong {
  font-size: clamp(2.4rem, 2.34vw, 3.2rem);
  font-weight: bold;
  color: #D24C19;
}
.products--payment ul {
  margin-top: clamp(1.6rem, 1.56vw, 3.8rem);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px clamp(1.1rem, 1.07vw, 2rem);
}
.products--payment ul li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(0.6rem, 0.58vw, 1.2rem);
  width: calc((100% - clamp(1.1rem, 1.07vw, 2rem)) / 2);
  border-radius: 10px;
  background-color: #fff;
  padding-block: clamp(1.5rem, 1.46vw, 2.5rem);
  padding-inline: clamp(1.2rem, 1.17vw, 2.1rem);
}
@media (min-width: 1024px) {
  .products--payment ul li {
    width: calc((100% - clamp(1.1rem, 1.07vw, 2rem) * 3) / 4);
  }
}
.products--payment ul li p {
  font-size: clamp(1.6rem, 1.56vw, 2.4rem);
  font-weight: bold;
}
.products--payment ul li img {
  display: block;
  width: auto;
  height: clamp(6.4rem, 6.25vw, 10rem);
}

.contact {
  padding-top: clamp(10rem, 9.76vw, 20rem);
}

.contact--dl {
  margin-top: clamp(4rem, 3.9vw, 4.6rem);
  display: flex;
  flex-direction: column;
  gap: clamp(4.2rem, 4.1vw, 6rem);
}
@media (min-width: 1024px) {
  .contact--dl {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media (min-width: 1024px) {
  .contact--dl dl {
    width: calc((100% - clamp(4.2rem, 4.1vw, 6rem)) / 2);
  }
}
.contact--dl dl dt {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(1.8rem, 1.75vw, 2.4rem);
  font-weight: bold;
  background-color: #F5EF9F;
  width: 100%;
  height: clamp(5rem, 4.88vw, 7.4rem);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding-top: 4px;
}
.contact--dl dl dd div {
  padding-inline: 10px;
  padding-top: clamp(1.6rem, 1.56vw, 3rem);
  padding-bottom: clamp(2rem, 1.95vw, 3rem);
  background-color: #fff;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.contact--dl dl dd ul li {
  width: fit-content;
  margin-inline: auto;
}
.contact--dl dl dd ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  line-height: 1.6;
  gap: clamp(1.41rem, 1.37vw, 2.12rem);
  font-size: clamp(3.6rem, 3.51vw, 5.6rem);
  font-weight: bold;
}
.contact--dl dl dd ul li a::before {
  content: "";
  display: block;
  background: url(../img/common/icon-tel.svg) no-repeat;
  background-size: 100%;
  width: clamp(3.79rem, 3.7vw, 5.777rem);
  height: clamp(3.79rem, 3.7vw, 5.777rem);
  aspect-ratio: 1/1;
}
.contact--dl dl dd ul li small {
  display: block;
  padding-left: calc(clamp(3.79rem, 3.7vw, 5.777rem) + clamp(1.41rem, 1.37vw, 2.12rem));
  width: 100%;
  font-size: clamp(1rem, 0.97vw, 1.6rem);
  font-weight: normal;
  transform: translateY(-12px);
}
.contact--dl dl dd p {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2px;
  background-color: rgba(245, 239, 159, 0.5);
  font-size: clamp(1.4rem, 1.36vw, 2rem);
  font-weight: normal;
  text-align: center;
}
@media (min-width: 768px) {
  .contact--dl dl dd p {
    width: fit-content;
    margin-inline: auto;
    padding-inline: 16px;
  }
}
@media (min-width: 1024px) {
  .contact--dl dl.tel a {
    pointer-events: none;
  }
}
.contact--dl dl.form dd a {
  max-width: 490px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: clamp(1.8rem, 1.75vw, 2.8rem);
  background-color: #F5EF9F;
  border: solid 1px #574544;
  border-radius: 100px;
  padding-block: clamp(1.4rem, 1.36vw, 2.2rem);
  position: relative;
  transition: background-color 0.2s, color 0.2s;
}
.contact--dl dl.form dd a::before {
  content: "";
  display: block;
  background-image: url(../img/common/icon-mail.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 26.48px;
  height: 20.37px;
  transition: background-image 0.2s;
}
@media (min-width: 1024px) {
  .contact--dl dl.form dd a::before {
    width: 45.58px;
    height: 35.06px;
  }
}
.contact--dl dl.form dd a::after {
  content: "";
  display: block;
  width: clamp(0.7rem, 0.58vw, 1.1rem);
  min-width: clamp(0.7rem, 0.58vw, 1.1rem);
  height: clamp(0.7rem, 0.58vw, 1.1rem);
  min-height: clamp(0.7rem, 0.58vw, 1.1rem);
  border-right: solid 1px #574544;
  border-bottom: solid 1px #574544;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(-45deg);
  transition: border-color 0.2s;
}
@media (min-width: 1100px) {
  .contact--dl dl.form dd a::after {
    border-right-width: 2px;
    border-bottom-width: 2px;
    right: clamp(2.9rem, 2.83vw, 5rem);
  }
}
@media (min-width: 1024px) {
  .contact--dl dl.form dd a:hover {
    background-color: #574544;
    color: #fff;
  }
  .contact--dl dl.form dd a:hover::before {
    background-image: url(../img/common/icon-mail-hover.svg);
  }
  .contact--dl dl.form dd a:hover::after {
    border-right-color: #fff;
    border-bottom-color: #fff;
  }
}
.contact--dl dl.form dd img {
  display: block;
  margin-top: clamp(2rem, 1.95vw, 2.9rem);
  width: clamp(7.153rem, 6.98vw, 10.526rem);
  margin-left: auto;
  margin-right: clamp(1rem, 0.97vw, 2rem);
}

.instagram {
  padding-top: clamp(10rem, 9.76vw, 20rem);
}
.instagram .ttl {
  text-align: center;
  transform: translateX(-10px);
}
@media (min-width: 768px) {
  .instagram .ttl {
    transform: none;
  }
}
.instagram .ttl strong {
  font-size: clamp(7.2rem, 7.03vw, 13rem);
}
.instagram .ttl span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 0.97vw, 1.5rem);
}
@media (min-width: 1024px) {
  .instagram .ttl span {
    margin-top: clamp(0.8rem, 0.78vw, 1.6rem);
  }
}
.instagram .ttl span::before {
  content: "";
  display: block;
  background: url(../img/common/icon-instagram.svg) no-repeat;
  background-size: 100%;
  width: clamp(2.5rem, 2.44vw, 4rem);
  height: clamp(2.5rem, 2.44vw, 4rem);
  aspect-ratio: 1/1;
  transform: translateY(1px);
}
.instagram .inner {
  position: relative;
}
.instagram .inner::after {
  content: "";
  display: block;
  background: url(../img/common/dennosuke02.png) no-repeat;
  background-size: 100%;
  width: 71.63px;
  height: 80px;
  min-width: 71.63px;
  min-height: 80px;
  margin-top: 40px;
  margin-left: 10px;
}
@media (min-width: 1280px) {
  .instagram .inner::after {
    width: 100px;
    min-width: 100px;
    height: 112px;
    min-height: 112px;
    position: absolute;
    bottom: 0;
    left: -10px;
  }
}
.instagram .inner p {
  margin-top: 40px;
  font-size: clamp(1.6rem, 1.56vw, 2rem);
  position: relative;
}
@media (min-width: 768px) {
  .instagram .inner p {
    text-align: center;
  }
}
.instagram .inner p::after {
  content: "";
  display: block;
  background: url(../img/common/ecokyun.png) no-repeat;
  background-size: 100%;
  width: clamp(10.5rem, 10.25vw, 18.4rem);
  height: clamp(8rem, 7.81vw, 14rem);
  position: absolute;
  right: -10px;
  bottom: 0;
}
@media (min-width: 1024px) {
  .instagram .inner p::after {
    bottom: -10px;
  }
}
.instagram .btn {
  margin-top: clamp(6rem, 5.85vw, 8rem);
  font-size: 1.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px #574544;
  background-color: #F5EF9F;
  padding-block: 15px 14px;
  border-radius: 4px;
  position: relative;
  transition: background-color 0.2s, color 0.2s;
}
@media (min-width: 768px) {
  .instagram .btn {
    max-width: 254.5px;
    margin-inline: auto;
  }
}
.instagram .btn::after {
  content: "";
  display: block;
  width: 7px;
  min-width: 7px;
  height: 7px;
  min-height: 7px;
  border-right: solid 1px #574544;
  border-bottom: solid 1px #574544;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(-45deg);
  transition: border-color 0.2s;
}
@media (min-width: 1100px) {
  .instagram .btn::after {
    right: clamp(1rem, 0.97vw, 2rem);
  }
}
@media (min-width: 1024px) {
  .instagram .btn:hover {
    background-color: #574544;
    color: #fff;
  }
  .instagram .btn:hover::after {
    border-right-color: #fff;
    border-bottom-color: #fff;
  }
}

.instagram--container {
  background-color: #fff;
  background: linear-gradient(to bottom, transparent 0%, transparent calc(0% + clamp(6rem, 5.85vw, 12rem)), #fff calc(0% + clamp(6rem, 5.85vw, 12rem)), #fff 100%);
  padding-bottom: clamp(10.3rem, 10.05vw, 20rem);
}

.instagram--lst {
  margin-top: 40.5px;
  max-width: 1100px;
  margin-inline: auto;
}
.instagram--lst > ul {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 1.46vw, 2rem);
}
.instagram--lst > ul li {
  width: calc((100% - clamp(1.5rem, 1.46vw, 2rem)) / 2);
}
@media (min-width: 1024px) {
  .instagram--lst > ul li {
    width: calc((100% - clamp(1.5rem, 1.46vw, 2rem) * 3) / 4);
  }
}
.instagram--lst > ul li a {
  transition: opacity 0.2s;
}
@media (min-width: 1024px) {
  .instagram--lst > ul li a:hover {
    opacity: 0.7;
  }
}

.breadcrumb {
  padding-top: 115px;
  width: min(100% - var(--inner-margin), var(--inner-max));
  margin-left: auto;
  margin-right: auto;
  transition: width 0.2s;
}
@media (min-width: 1024px) {
  .breadcrumb {
    padding-top: 40px;
  }
}
.breadcrumb--container {
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F5EF9F;
  border-radius: 5px;
  padding-inline: clamp(1rem, 0.97vw, 2rem);
  padding-block: clamp(0.4rem, 0.39vw, 0.8rem);
}
.breadcrumb ul {
  line-height: 1.4;
  display: inline;
}
.breadcrumb ul li {
  display: inline;
}
.breadcrumb ul li:nth-of-type(n+2)::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  min-width: 5px;
  min-height: 5px;
  border-right: solid 1px #574544;
  border-bottom: solid 1px #574544;
  transform: translateY(calc(clamp(0.2rem, 0.19vw, 0.4rem) * -1)) rotate(-45deg);
  margin-inline: clamp(0.9rem, 0.87vw, 1.2rem);
}
.breadcrumb ul li a {
  display: inline-block;
  transition: opacity 0.2s;
}
.breadcrumb ul li a:hover {
  opacity: 0.7;
}

.page-ttl {
  font-size: clamp(4rem, 3.9vw, 7rem);
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  color: #F5EF9F;
  -webkit-text-stroke: 1px #574544;
  position: relative;
}
.page-ttl span {
  position: relative;
  z-index: 5;
}
.page-ttl::before {
  content: "";
  display: block;
  background: url(../img/page/ttl_bg_sp.png) repeat-x;
  background-size: 360px auto;
  width: 100vw;
  height: 32px;
  position: absolute;
  top: -20px;
  left: 48%;
  transform: translateX(-50%);
}
@media (min-width: 1280px) {
  .page-ttl::before {
    top: calc(clamp(6rem, 4.68vw, 9rem) * -1);
    background: url(../img/page/ttl_bg_pc.png) repeat-x;
    background-size: 50% auto;
    height: clamp(6.8rem, 6.64vw, 13.6rem);
  }
}
.page-ttl + p {
  margin-top: 36px;
  font-size: clamp(1.6rem, 1.56vw, 1.8rem);
  line-height: 1.8;
  text-align: center;
}

@media (max-width: 767px) {
  ._contact {
    --inner-margin: 20px;
  }
}
._contact .page-ttl + p {
  text-align: left;
}
@media (min-width: 768px) {
  ._contact .page-ttl + p {
    text-align: center;
  }
}
._contact {
  padding-top: clamp(4.8rem, 4.68vw, 10rem);
  padding-bottom: clamp(10.2rem, 9.96vw, 20rem);
}
._contact article {
  margin-top: clamp(10rem, 9.76vw, 16.9rem);
  background-color: rgba(245, 239, 159, 0.5);
  border-radius: 10px;
  position: relative;
  padding-block: clamp(3.5rem, 3.41vw, 6.8rem) clamp(2rem, 1.95vw, 3.5rem);
  padding-inline: 10px;
}
@media (min-width: 1024px) {
  ._contact article {
    padding-inline: clamp(2.5rem, 2.44vw, 5rem);
  }
}
._contact article h2 {
  width: 100%;
  font-size: clamp(2.4rem, 2.34vw, 3.2rem);
  font-weight: bold;
  text-align: center;
  position: absolute;
  top: calc(clamp(2.2rem, 2.14vw, 3rem) * -1);
  left: 50%;
  transform: translateX(-50%);
}
._contact article + article {
  margin-top: clamp(11.7rem, 11.42vw, 21.9rem);
}
._contact article._contact--tel ul {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 1024px) {
  ._contact article._contact--tel ul {
    flex-direction: row;
    gap: clamp(2.3rem, 2.24vw, 4.6rem);
  }
}
._contact article._contact--tel ul li {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 200px;
  background-color: #fff;
  height: clamp(9.7rem, 9.47vw, 15.2rem);
  position: relative;
  border: solid 1px #F5EF9F;
}
@media (min-width: 1024px) {
  ._contact article._contact--tel ul li {
    width: calc((100% - clamp(2.3rem, 2.24vw, 4.6rem)) / 2);
  }
}
._contact article._contact--tel ul li small {
  font-size: clamp(0.9rem, 0.87vw, 1.6rem);
  font-weight: normal;
  position: absolute;
  bottom: clamp(1rem, 0.97vw, 1.5rem);
  left: calc(50% - 10px);
  transform: translateX(-50%);
}
._contact article._contact--tel ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1.3rem, 1.26vw, 2.1rem);
  font-size: clamp(3.5rem, 3.41vw, 5.6rem);
  font-weight: bold;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  ._contact article._contact--tel ul li a {
    pointer-events: none;
  }
}
._contact article._contact--tel ul li a::before {
  content: "";
  display: block;
  background: url(../img/common/icon-tel.svg) no-repeat;
  background-size: 100%;
  width: clamp(3.684rem, 3.59vw, 5.777rem);
  height: clamp(3.684rem, 3.59vw, 5.777rem);
  min-width: clamp(3.684rem, 3.59vw, 5.777rem);
  min-height: clamp(3.684rem, 3.59vw, 5.777rem);
  aspect-ratio: 1/1;
}
._contact article._contact--tel p {
  margin-top: clamp(2rem, 1.95vw, 4rem);
  font-size: clamp(1.4rem, 1.36vw, 2rem);
  text-align: center;
  font-weight: normal;
}
._contact article._contact--mail {
  padding-inline: 20px;
}
@media (min-width: 1024px) {
  ._contact article._contact--mail {
    padding-inline: clamp(2.5rem, 2.44vw, 5rem);
  }
}
._contact article._contact--mail > p {
  font-size: clamp(1.6rem, 1.56vw, 1.8rem);
  text-align: center;
  line-height: 1.8;
  background-color: #fff;
  border-radius: 10px;
  margin-inline: auto;
  padding-block: clamp(1.8rem, 1.75vw, 2.2rem);
  padding-inline: clamp(2rem, 1.95vw, 3rem);
}
@media (min-width: 1024px) {
  ._contact article._contact--mail > p {
    width: fit-content;
  }
}

.mail-form {
  margin-top: clamp(3rem, 2.92vw, 6rem);
}
.mail-form input {
  font-family: var(--font-fam), sans-serif;
}
.mail-form input[type=checkbox] {
  appearance: none;
  display: none;
}
.mail-form input[type=radio] {
  appearance: none;
  display: none;
}
.mail-form label {
  position: relative;
}
.mail-form label:has(input[type=checkbox]) {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 1.8rem;
  width: fit-content;
  margin-inline: auto;
}
.mail-form label:has(input[type=checkbox])::before {
  content: "";
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  aspect-ratio: 1/1;
  background-color: #fff;
  border: solid 1px #574544;
  border-radius: 5px;
}
.mail-form label:has(input[type=checkbox])::after {
  content: "";
  width: 8px;
  height: 16px;
  min-width: 8px;
  min-height: 16px;
  border-right: solid 2px #F36A36;
  border-bottom: solid 2px #F36A36;
  opacity: 0;
  position: absolute;
  left: 8px;
  top: calc(50% - 2px);
  transform: translateY(-50%) rotate(45deg);
}
.mail-form label:has(input[type=checkbox]:checked)::after {
  opacity: 1;
}
.mail-form label:has(input[type=radio]) {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.mail-form label:has(input[type=radio])::before {
  content: "";
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  aspect-ratio: 1/1;
  background-color: #fff;
  border: solid 1px #574544;
  border-radius: 50%;
}
.mail-form label:has(input[type=radio])::after {
  content: "";
  width: 14px;
  height: 14px;
  min-width: 14px;
  min-height: 14px;
  aspect-ratio: 1/1;
  background-color: #F36A36;
  border-radius: 50%;
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
}
.mail-form label:has(input[type=radio]:checked)::after {
  opacity: 1;
}
.mail-form input[type=text] {
  width: 100%;
  height: 50px;
  border-radius: 10px;
  border: solid 1px #F5EF9F;
  padding-inline: 10px;
  font-size: clamp(1.6rem, 1.56vw, 1.8rem);
}
.mail-form textarea {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  min-height: clamp(15rem, 14.64vw, 20rem);
  border-radius: 10px;
  border: solid 1px #F5EF9F;
  padding: 10px;
  font-size: clamp(1.6rem, 1.56vw, 1.8rem);
}
.mail-form .privacy-txt {
  margin-top: 36px;
  font-size: 1.8rem;
  text-align: center;
  word-break: keep-all;
  line-height: 1.4;
}
.mail-form .privacy-txt a {
  color: #F36A36;
  text-decoration: underline;
}
.mail-form .privacy-chk {
  margin-top: 36px;
}
.mail-form .submit-area {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .mail-form .submit-area {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
.mail-form .submit-area .submit-btn {
  width: 100%;
  position: relative;
}
.mail-form .submit-area .submit-btn::after {
  content: "";
  display: block;
  width: 7px;
  min-width: 7px;
  height: 7px;
  min-height: 7px;
  border-right: solid 1px #574544;
  border-bottom: solid 1px #574544;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(-45deg);
  transition: border-color 0.2s;
}
@media (min-width: 1100px) {
  .mail-form .submit-area .submit-btn::after {
    right: clamp(1rem, 0.97vw, 2rem);
  }
}
.mail-form .submit-area .submit-btn input[type=submit] {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F5EF9F;
  border: solid 1px #574544;
  border-radius: 5px;
  font-size: 1.8rem;
  font-weight: 500;
  transition: background-color 0.2s, color 0.2s;
}
@media (min-width: 768px) {
  .mail-form .submit-area .submit-btn {
    max-width: 254.5px;
  }
}
.mail-form .submit-area .submit-btn:hover::after {
  border-right-color: #fff;
  border-bottom-color: #fff;
}
.mail-form .submit-area .submit-btn:hover input[type=submit] {
  background-color: #574544;
  color: #fff;
}
.mail-form .submit-area .back-btn {
  width: 100%;
  position: relative;
}
.mail-form .submit-area .back-btn::after {
  content: "";
  display: block;
  width: 7px;
  min-width: 7px;
  height: 7px;
  min-height: 7px;
  border-right: solid 1px #574544;
  border-bottom: solid 1px #574544;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(-45deg);
  transition: border-color 0.2s;
}
@media (min-width: 1100px) {
  .mail-form .submit-area .back-btn::after {
    right: clamp(1rem, 0.97vw, 2rem);
  }
}
.mail-form .submit-area .back-btn input[type=button] {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F5EF9F;
  border: solid 1px #574544;
  border-radius: 5px;
  font-size: 1.8rem;
  font-weight: 500;
  transition: background-color 0.2s, color 0.2s;
}
@media (min-width: 768px) {
  .mail-form .submit-area .back-btn {
    max-width: 254.5px;
  }
}
.mail-form .submit-area .back-btn:hover::after {
  border-right-color: #fff;
  border-bottom-color: #fff;
}
.mail-form .submit-area .back-btn:hover input[type=button] {
  background-color: #574544;
  color: #fff;
}
@media (min-width: 1024px) {
  .mail-form dl {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
  }
}
.mail-form dl + dl {
  margin-top: clamp(3rem, 2.92vw, 4rem);

}
.mail-form dl:nth-of-type(1) dt {
  min-height: 100%;
}
.mail-form dl dt {
  font-size: clamp(1.6rem, 1.56vw, 1.8rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 1024px) {
  .mail-form dl dt {
    min-height: 50px;
    width: 280px;
  }
}
.mail-form dl dt.required::after {
  content: "必須";
  display: block;
  background-color: #F36A36;
  font-size: 1.2rem;
  width: fit-content;
  border-radius: 50px;
  color: #fff;
  padding-inline: 8px;
}
.mail-form dl dd {
  padding-top: 12px;
  font-size: clamp(1.6rem, 1.56vw, 1.8rem);
}
@media (min-width: 1024px) {
  .mail-form dl dd {
    padding-top: 0;
    width: calc(100% - 300px);
  }
}
.mail-form dl dd ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.confirm .mail-form {
  margin-top: clamp(2rem, 1.95vw, 4rem);
}
.confirm ._contact--mail {
  margin-top: clamp(6rem, 5.85vw, 9rem);
}
.confirm ._contact--mail dl dt {
  min-height: 100%;
}
.confirm .err {
  color: red;
}
.confirm .completion {
  display: block;
  font-size: clamp(1.6rem, 1.56vw, 1.8rem);
  text-align: center;
  line-height: 1.8;
}

.privacypolicy {
  margin-top: clamp(6rem, 5.85vw, 10rem);
  line-height: 2;
}
.privacypolicy p,
.privacypolicy a,
.privacypolicy span {
  display: block;
  font-size: clamp(1.4rem, 1.36vw, 1.6rem);
}
.privacypolicy h2 {
  font-size: clamp(1.8rem, 1.75vw, 2.4rem);
}
.privacypolicy h2 + p {
  margin-top: clamp(2.4rem, 2.34vw, 3.6rem);
}
.privacypolicy dl {
  padding-top: clamp(4rem, 3.9vw, 6rem);
}
.privacypolicy dt {
  font-size: clamp(1.8rem, 1.75vw, 2rem);
  font-weight: bold;
  padding-bottom: clamp(1.2rem, 1.17vw, 1.8rem);
  border-bottom: solid 1px #574544;
}
.privacypolicy dd {
  padding-top: clamp(1.6rem, 1.56vw, 2.4rem);
}
.privacypolicy dd + dt {
  margin-top: clamp(4.5rem, 4.39vw, 6rem);
}
.privacypolicy dd > * + * {
  margin-top: clamp(1.6rem, 1.56vw, 2.4rem);
}
.privacypolicy dd ul li a {
  color: #F56363;
  text-decoration: underline;
  width: fit-content;
  display: block;
  transition: opacity 0.2s, text-decoration-color 0.2s;
}
@media (min-width: 1024px) {
  .privacypolicy dd ul li a:hover {
    text-decoration-color: transparent;
  }
}

@media (max-width: 767px) {
  ._ecocute {
    --inner-margin: 20px;
  }
}
._ecocute {
  padding-top: clamp(4.8rem, 4.68vw, 10rem);
}
._ecocute .contact {
  padding-bottom: clamp(10rem, 9.76vw, 20rem);
}
._ecocute .contact--dl .form a {
  font-size: clamp(2rem, 1.95vw, 2.8rem);
}

._ecocute--int {
  margin-top: clamp(8rem, 7.81vw, 14.2rem);
  background-color: #fff;
  border-radius: 10px;
  padding-top: 14px;
  padding-inline: 20px;
  padding-bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 2.92vw, 6rem);
}
@media (min-width: 1024px) {
  ._ecocute--int {
    padding: clamp(2.5rem, 2.44vw, 5rem) clamp(2.5rem, 2.44vw, 4.5rem);
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
  }
}
._ecocute--int .image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media (min-width: 1024px) {
  ._ecocute--int .image {
    width: calc((100% - clamp(3rem, 2.92vw, 6rem)) / 2);
  }
}
._ecocute--int .image ul {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: clamp(0.6rem, 0.58vw, 1rem);
  padding-inline: clamp(1.8rem, 1.75vw, 3rem);
}
._ecocute--int .image ul li {
  line-height: 1.2;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  width: calc((100% - clamp(0.6rem, 0.58vw, 1rem)) / 2);
  background-color: #F5EF9F;
  border-radius: 100px;
  border: solid 1px #574544;
  padding: 8px;
  padding-top: 10px;
}
@media (min-width: 1024px) {
  ._ecocute--int .image ul li {
    font-size: clamp(1.5rem, 1.46vw, 1.8rem);
  }
}
._ecocute--int .txt {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
@media (min-width: 1024px) {
  ._ecocute--int .txt {
    width: 50%;
    height: auto;
  }
}
._ecocute--int .txt::after {
  content: "";
  display: block;
  background: url(../img/common/ecokyun02.png) no-repeat;
  background-size: 100%;
  width: 110px;
  height: 98px;
  min-width: 110px;
  min-height: 98px;
  margin-left: auto;
  margin-right: 0;
}
._ecocute--int .txt p {
  font-size: clamp(1.6rem, 1.56vw, 1.8rem);
  line-height: 1.8;
}

.slide--contents {
  margin-top: clamp(9.8rem, 9.57vw, 19.8rem);
}
.slide--contents dl dt {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(2.4rem, 2.34vw, 3.2rem);
  font-weight: bold;
  background-color: #F5EF9F;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding-block: 14px;
}
.slide--contents dl dd .slide--img {
  width: 100vw;
  display: block;
  overflow-x: scroll;
  scrollbar-width: none;
}
@media (min-width: 768px) {
  .slide--contents dl dd .slide--img {
    width: 100%;
  }
}
.slide--contents dl dd .slide--img img {
  display: block;
  width: clamp(67.6rem, 180.26vw, 120rem);
}
@media (min-width: 768px) {
  .slide--contents dl dd .slide--img img {
    width: 100%;
  }
}
.slide--contents dl dd .sp_none {
  display: block;
  margin-block: 10px;
  width: 211.34px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .slide--contents dl dd .sp_none {
    display: none;
  }
}
.slide--contents dl dd small {
  margin-top: 8px;
  font-size: clamp(1.4rem, 1.36vw, 1.6rem);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  line-height: 1.6;
}

._ecocute--system dl dd ul {
  margin-top: clamp(1.6rem, 1.56vw, 3.4rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1.6rem, 1.56vw, 3.8rem);
}
@media (min-width: 1024px) {
  ._ecocute--system dl dd ul {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
._ecocute--system dl dd ul li {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: clamp(0.7rem, 0.68vw, 1rem);
  font-size: clamp(1.8rem, 1.75vw, 2rem);
  font-weight: bold;
}
@media (min-width: 1024px) {
  ._ecocute--system dl dd ul li {
    width: calc((100% - clamp(1.6rem, 1.56vw, 3.8rem) * 3) / 4);
  }
}
._ecocute--system dl dd ul li span {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #574544;
  border-radius: 50%;
  font-size: clamp(2rem, 1.95vw, 2.4rem);
  line-height: 1;
  width: clamp(2.8rem, 2.73vw, 3.4rem);
  height: clamp(2.8rem, 2.73vw, 3.4rem);
  min-width: clamp(2.8rem, 2.73vw, 3.4rem);
  min-height: clamp(2.8rem, 2.73vw, 3.4rem);
  color: #fff;
  padding-bottom: 1px;
}
@media (min-width: 768px) {
  ._ecocute--system dl dd ul li span {
    padding-bottom: 0;
  }
}

._ecocute--guide {
  max-width: 880px;
  margin-inline: auto;
}

._ecocute--type {
  max-width: 880px;
  margin-inline: auto;
}

._ecocute--help {
  margin-top: 42.66vw;
  background-color: #DAF9F2;
  position: relative;
  padding-top: clamp(24rem, 23.43vw, 28rem);
  padding-bottom: 32vw;
}
@media (min-width: 1024px) {
  ._ecocute--help {
    padding-bottom: clamp(12rem, 11.71vw, 18rem);
    margin-top: clamp(16rem, 15.62vw, 30.2rem);
  }
}
._ecocute--help::before {
  content: "";
  display: block;
  background: url(../img/page/ecocute/bg-help.png) no-repeat;
  background-size: 100%;
  width: 100%;
  height: 5.33vw;
  position: absolute;
  top: -3.74vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
@media (min-width: 1024px) {
  ._ecocute--help::before {
    background-size: 100% clamp(4rem, 3.9vw, 8rem);
    height: clamp(4rem, 3.9vw, 8rem);
    top: calc(clamp(3.5rem, 3.41vw, 7.5rem) * -1);
  }
}
._ecocute--help::after {
  content: "";
  display: block;
  background: url(../img/page/ecocute/bg-line.png) no-repeat;
  background-size: 100% 10.66vw;
  width: 100%;
  height: 10.66vw;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
@media (min-width: 1024px) {
  ._ecocute--help::after {
    background-size: 100%;
    background-position: bottom center;
    height: clamp(6rem, 5.85vw, 8rem);
    bottom: -1px;
  }
}
._ecocute--help .inner {
  position: relative;
  z-index: 5;
}
._ecocute--help h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: clamp(28.071rem, 27.41vw, 45.01rem);
  margin-inline: auto;
  gap: 28.9px;
  position: absolute;
  top: calc(clamp(6rem, 5.85vw, 9.1rem) * -1);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
@media (min-width: 1024px) {
  ._ecocute--help h2 {
    gap: 20px;
  }
}
._ecocute--help h2::before {
  content: "";
  display: block;
  background: url(../img/common/ecokyun03.png) no-repeat;
  background-size: 100%;
  width: clamp(16.4rem, 16.01vw, 20.9rem);
  height: clamp(11rem, 10.74vw, 14rem);
  min-width: clamp(16.4rem, 16.01vw, 20.9rem);
  min-height: clamp(11rem, 10.74vw, 14rem);
}
._ecocute--help dl {
  max-width: 1100px;
  margin-inline: auto;
  border-radius: 10px;
  border: solid 1px #F36A36;
}
._ecocute--help dl dt {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(2rem, 1.95vw, 2.8rem);
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  background-color: #F36A36;
  color: #fff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding-block: 8px;
}
._ecocute--help dl dd {
  background-color: #fff;
  padding-block: 30px;
  padding-inline: 20px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
@media (min-width: 1024px) {
  ._ecocute--help dl dd {
    padding-inline: clamp(3.4rem, 3.32vw, 6.8rem);
  }
}
._ecocute--help dl dd strong {
  width: fit-content;
  display: block;
  font-size: clamp(2rem, 1.95vw, 2.8rem);
  font-weight: bold;
  color: #F36A36;
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-inline: auto;
}
._ecocute--help dl dd ul {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 0.97vw, 2rem) 10px;
}
@media (min-width: 1024px) {
  ._ecocute--help dl dd ul {
    flex-direction: row;
    justify-content: space-betweens;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}
._ecocute--help dl dd ul li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: clamp(1.6rem, 1.56vw, 1.8rem);
  font-weight: bold;
  gap: clamp(1rem, 0.97vw, 1.5rem);
}
@media (min-width: 1024px) {
  ._ecocute--help dl dd ul li {
    width: calc((100% - 20px) / 3);
  }
}
._ecocute--help dl dd ul li::before {
  content: "";
  display: block;
  background: url(../img/page/ecocute/icon-chk.svg) no-repeat;
  background-size: 100%;
  width: clamp(2.5rem, 2.44vw, 3rem);
  height: clamp(2.5rem, 2.44vw, 3rem);
  min-width: clamp(2.5rem, 2.44vw, 3rem);
  min-height: clamp(2.5rem, 2.44vw, 3rem);
}
._ecocute--help .tips {
  max-width: 514px;
  margin-inline: auto;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: clamp(3rem, 2.92vw, 4rem);
}
@media (min-width: 768px) {
  ._ecocute--help .tips {
    flex-direction: row;
  }
}
._ecocute--help .tips .img_box {
  width: 250px;
  min-width: 250px;
}
._ecocute--help .tips p {
  font-size: clamp(1.6rem, 1.56vw, 1.8rem);
  text-align: center;
}
@media (min-width: 768px) {
  ._ecocute--help .tips p {
    text-align: left;
    width: calc(100% - (250px + clamp(3rem, 2.92vw, 4rem)));
  }
}
._ecocute--help .tips p span {
  font-weight: bold;
  color: #F36A36;
}

._ecocute--line {
  padding-top: clamp(5.6rem, 5.46vw, 6.2rem);
  position: relative;
  z-index: 5;
  background: linear-gradient(#f5ef9f 0%, rgba(245, 239, 159, 0) 100%);
}
@media (min-width: 1024px) {
  ._ecocute--line .page-ttl {
    margin-top: 32px;
  }
}
._ecocute--line .page-ttl img {
  width: clamp(31.4rem, 30.66vw, 53.2rem);
  position: relative;
  z-index: 5;
}
._ecocute--line .page-ttl::before {
  content: "";
  display: block;
  background: url(../img/page/ttl_bg02_sp.png) repeat-x;
  background-size: 360px auto;
  width: 100vw;
  height: 60px;
  position: absolute;
  top: -20px;
  left: 48%;
  transform: translateX(-50%);
}
@media (min-width: 1280px) {
  ._ecocute--line .page-ttl::before {
    top: calc(clamp(6rem, 4.68vw, 9rem) * -1);
    background: url(../img/page/ttl_bg02_pc.png) repeat-x;
    background-size: 50% auto;
    height: clamp(6.8rem, 6.64vw, 13.6rem);
  }
}
._ecocute--line .pickup-txt {
  margin-top: 26px;
  width: clamp(29rem, 37.76vw, 51.5rem);
  margin-inline: auto;
}
@media (min-width: 768px) {
  ._ecocute--line .pickup-txt {
    margin-top: 20px;
  }
}
._ecocute--line__lst {
  margin-top: clamp(2.6rem, 2.53vw, 4.6rem);
}
._ecocute--line__lst > li {
  padding-inline: 10px;
  background-color: var(--bg-color);
}
@media (min-width: 1024px) {
  ._ecocute--line__lst > li {
    padding-inline: clamp(2.5rem, 2.44vw, 5rem);
  }
}
._ecocute--line__lst > li .heading {
  width: fit-content;
  margin-inline: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: clamp(1rem, 0.97vw, 1.45rem);
}
._ecocute--line__lst > li .heading::before {
  content: "";
  display: block;
  width: clamp(5rem, 4.88vw, 7rem);
  height: clamp(5rem, 4.88vw, 7rem);
  min-width: clamp(5rem, 4.88vw, 7rem);
  min-height: clamp(5rem, 4.88vw, 7rem);
}
._ecocute--line__lst > li .heading h3 {
  font-size: clamp(2.4rem, 2.34vw, 3.2rem);
}
._ecocute--line__lst > li .heading span {
  color: var(--heading-color);
  font-size: clamp(3.2rem, 3.12vw, 4.8rem);
  font-weight: bold;
}
._ecocute--line__lst > li.repair {
  position: relative;
  --heading-color: #14BB95;
  --bg-color: #E5FCDB;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding-block: clamp(2rem, 1.95vw, 5rem) calc(50px + 5.33vw);
}
@media (min-width: 1024px) {
  ._ecocute--line__lst > li.repair {
    padding-bottom: clamp(6rem, 5.85vw, 10rem);
  }
}
._ecocute--line__lst > li.repair::after {
  content: "";
  display: block;
  background: url(../img/page/ecocute/bg-repair.png) no-repeat;
  background-size: 100% 5.33vw;
  width: 100%;
  height: 5.33vw;
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 1024px) {
  ._ecocute--line__lst > li.repair::after {
    background-size: 100%;
    height: clamp(3rem, 2.92vw, 5rem);
  }
}
._ecocute--line__lst > li.repair .heading::before {
  background: url(../img/page/ecocute/icon-repair.svg) no-repeat;
  background-size: 100%;
}
._ecocute--line__lst > li.repair > ul {
  margin-top: clamp(2rem, 1.95vw, 5rem);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: clamp(2rem, 1.95vw, 2.59rem);
}
@media (min-width: 1024px) {
  ._ecocute--line__lst > li.repair > ul {
    flex-direction: row;
    align-items: stretch;
  }
}
._ecocute--line__lst > li.repair > ul li {
  width: 100%;
  border-radius: 10px;
  background-color: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding-block: 20px;
  padding-inline: 10px;
}
@media (min-width: 1024px) {
  ._ecocute--line__lst > li.repair > ul li {
    flex-direction: column;
    gap: clamp(2rem, 1.95vw, 3rem);
    padding-block: clamp(2rem, 1.95vw, 4rem);
    width: calc((100% - clamp(2rem, 1.95vw, 2.59rem) * 2) / 3);
  }
}
._ecocute--line__lst > li.repair > ul li img {
  width: clamp(7.917rem, 7.73vw, 19rem);
}
._ecocute--line__lst > li.repair > ul li:nth-of-type(2) p {
  margin-top: 0;
}
._ecocute--line__lst > li.repair > ul li p {
  font-size: clamp(2rem, 1.95vw, 2.4rem);
  font-weight: bold;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  ._ecocute--line__lst > li.repair > ul li p {
    margin-top: clamp(0.5rem, 0.48vw, 1rem);
    text-align: center;
  }
}
._ecocute--line__lst > li.repair > ul li p span {
  font-size: clamp(2.4rem, 2.34vw, 2.8rem);
  color: #F36A36;
}
._ecocute--line__lst > li.repair > ul li p small {
  font-size: clamp(1.4rem, 1.36vw, 1.8rem);
}
._ecocute--line__lst > li.exchange {
  --heading-color: #F36A36;
  --bg-color: #F5EF9F;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding-bottom: clamp(2rem, 1.95vw, 5rem);
}
._ecocute--line__lst > li.exchange .heading::before {
  background: url(../img/page/ecocute/icon-exchange.svg) no-repeat;
  background-size: 100%;
}
._ecocute--line__lst > li.exchange > ul {
  margin-top: clamp(2rem, 1.95vw, 5rem);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: clamp(2rem, 1.95vw, 2.59rem);
}
@media (min-width: 1024px) {
  ._ecocute--line__lst > li.exchange > ul {
    flex-direction: row;
    align-items: stretch;
  }
}
._ecocute--line__lst > li.exchange > ul li {
  width: 100%;
  border-radius: 10px;
  background-color: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  padding-block: 20px;
  padding-inline: 10px;
}
@media (min-width: 1024px) {
  ._ecocute--line__lst > li.exchange > ul li {
    gap: clamp(2rem, 1.95vw, 3rem);
    padding-inline: clamp(2rem, 1.95vw, 2.8rem);
    padding-block: clamp(2rem, 1.95vw, 4rem);
    width: calc(100% - clamp(2rem, 1.95vw, 2.59rem) / 2);
  }
}
._ecocute--line__lst > li.exchange > ul li img {
  width: 110px;
}
@media (min-width: 1024px) {
  ._ecocute--line__lst > li.exchange > ul li img {
    width: clamp(18rem, 17.57vw, 23.75rem);
  }
}
._ecocute--line__lst > li.exchange > ul li > p {
  font-size: 2.4rem;
  text-align: center;
  font-weight: bold;
  line-height: 1.6;
}
._ecocute--line__lst > li.exchange > ul li > p strong {
  display: block;
  font-size: clamp(2.4rem, 2.34vw, 2.8rem);
  color: #F36A36;
  font-weight: bold;
}
._ecocute--line__lst > li.exchange > ul li > p small {
  margin-top: 10px;
  font-weight: bold;
  display: block;
  font-size: clamp(1.6rem, 1.56vw, 1.8rem);
}
._ecocute--line__lst > li.exchange > ul li > p span {
  font-size: clamp(1.8rem, 1.75vw, 2rem);
  font-weight: bold;
  color: #F36A36;
}
._ecocute--line__lst > li.exchange > ul li .txt {
  display: block;
  background-color: rgba(245, 239, 159, 0.5);
  border-radius: 10px;
  padding-inline: clamp(1rem, 0.97vw, 2rem);
  padding-block: 16px;
  width: 100%;
  text-align: center;
}
._ecocute--line__lst > li.exchange > ul li .txt p {
  font-weight: bold;
  font-size: clamp(2rem, 1.95vw, 2.4rem);
  line-height: 1.4;
}
@media (max-width: 1023px) {
  ._ecocute--line__lst > li.exchange > ul li .txt p.lh01 {
    line-height: 1.2;
  }
}
@media (max-width: 1023px) {
  ._ecocute--line__lst > li.exchange > ul li .txt p.lh02 {
    line-height: 1.4;
  }
}
._ecocute--line__lst > li.exchange > ul li .txt p strong {
  color: #F36A36;
  font-size: clamp(2rem, 1.95vw, 2.4rem);
  font-weight: bold;
}
._ecocute--line__lst > li.exchange > ul li .txt p strong .span01 {
  font-size: clamp(3.8rem, 3.71vw, 4.2rem);
}
._ecocute--line__lst > li.exchange > ul li .txt p strong .span02 {
  font-size: clamp(2.8rem, 2.73vw, 3.2rem);
}

._ecocute--character {
  background-color: #fff;
  padding-top: clamp(10rem, 9.76vw, 16.9rem);
  padding-bottom: clamp(10rem, 9.76vw, 20rem);
}
._ecocute--character .page-ttl {
  font-size: clamp(2.4rem, 2.34vw, 3.2rem);
  font-weight: bold;
  line-height: 1.6;
  color: unset;
  -webkit-text-stroke: 0px;
}
._ecocute--character .box {
  margin-top: clamp(5.2rem, 5.07vw, 9.2rem);
  padding-inline: 10px;
}
@media (min-width: 1024px) {
  ._ecocute--character .box {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media (min-width: 1024px) {
  ._ecocute--character .box .seat {
    width: calc((100% - 50px) / 2);
  }
}
._ecocute--character .box .intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
@media (min-width: 1024px) {
  ._ecocute--character .box .intro {
    justify-content: space-between;
    width: min(34%, 400px);
    margin-inline: auto;
  }
}
._ecocute--character .box .intro .img_box {
  width: 240px;
  margin-top: 130px;
  position: relative;
}
@media (min-width: 1024px) {
  ._ecocute--character .box .intro .img_box {
    margin-top: 45px;
    width: 270px;
  }
}
._ecocute--character .box .intro .img_box::before {
  content: "";
  display: block;
  background: url(../img/page/ecocute/fukidashi.svg) no-repeat;
  background-size: 100%;
  width: clamp(11.466rem, 11.19vw, 13.3rem);
  height: clamp(7.937rem, 7.75vw, 8.972rem);
  min-width: clamp(11.466rem, 11.19vw, 13.3rem);
  min-height: clamp(7.937rem, 7.75vw, 8.972rem);
  position: absolute;
  top: -70px;
  left: -48px;
}
@media (min-width: 1024px) {
  ._ecocute--character .box .intro .img_box::before {
    top: -45px;
    left: -87px;
  }
}
._ecocute--character .box .intro strong {
  width: 100%;
  font-size: clamp(1.8rem, 1.75vw, 2rem);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F5EF9F;
  border-radius: 10px;
  padding-block: 6px;
}
._ecocute--character .box .intro p {
  font-size: clamp(1.6rem, 1.56vw, 1.8rem);
  line-height: 1.8;
}

@media (max-width: 767px) {
  ._company {
    --inner-margin: 20px;
  }
}
._company {
  padding-top: clamp(4.8rem, 4.68vw, 10rem);
}
._company .contact {
  padding-top: clamp(5rem, 4.88vw, 13rem);
  padding-bottom: clamp(10rem, 9.76vw, 20rem);
}
._company--message {
  padding-top: clamp(8rem, 7.81vw, 12rem);
  padding-inline: 10px;
}
@media (min-width: 1024px) {
  ._company--message {
    padding-inline: 0;
  }
}
._company--message .box {
  display: flex;
  flex-direction: column;
  gap: clamp(4rem, 3.9vw, 4.8rem);
}
@media (min-width: 1024px) {
  ._company--message .box {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media (min-width: 1024px) {
  ._company--message .box .img_box {
    margin-top: clamp(3rem, 2.92vw, 5.5rem);
    width: calc(50% - clamp(4rem, 3.9vw, 4.8rem));
    padding-right: clamp(2.5rem, 2.44vw, 5rem);
  }
}
@media (min-width: 1024px) {
  ._company--message .box .txt-area {
    width: 50%;
  }
}
._company--message .box .txt-area .txt {
  margin-top: clamp(1.8rem, 1.75vw, 2.4rem);
}
@media (min-width: 1024px) {
  ._company--message .box .txt-area .txt {
    padding-right: clamp(1.5rem, 1.46vw, 3rem);
  }
}
._company--message .box .txt-area .txt p {
  font-size: clamp(1.6rem, 1.56vw, 1.8rem);
}
._company--message .box .txt-area .txt p + p {
  margin-top: 18px;
}
._company--message .box .txt-area .txt strong {
  margin-top: clamp(2.6rem, 2.53vw, 3.6rem);
  display: block;
  text-align: right;
  font-size: clamp(2rem, 1.95vw, 2.4rem);
  font-weight: 500;
}

._company--about {
  padding-top: clamp(8rem, 7.81vw, 18rem);
  padding-inline: 10px;
}
@media (min-width: 1024px) {
  ._company--about {
    padding-inline: 0;
  }
}
._company--about__dl {
  margin-top: 36px;
}
._company--about__dl dl {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 1024px) {
  ._company--about__dl dl {
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 5px 0;
  }
}
._company--about__dl dl dt {
  font-size: clamp(1.6rem, 1.56vw, 1.8rem);
  background-color: #F5EF9F;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding-inline: 10px;
  padding-block: clamp(1.2rem, 1.17vw, 1.8rem);
}
@media (min-width: 1024px) {
  ._company--about__dl dl dt {
    width: 297px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 10px;
    padding-inline: clamp(2rem, 1.95vw, 4rem);
  }
}
._company--about__dl dl dd {
  font-size: clamp(1.6rem, 1.56vw, 1.8rem);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding-inline: 10px;
  padding-block: clamp(1.2rem, 1.17vw, 1.8rem);
  background-color: #fff;
}
@media (min-width: 1024px) {
  ._company--about__dl dl dd {
    width: calc(100% - 297px);
    border-bottom-left-radius: 0;
    border-top-right-radius: 10px;
    padding-inline: clamp(2rem, 1.95vw, 4rem);
  }
}
._company--about__dl dl dd + dt {
  margin-top: 15px;
}
@media (min-width: 1024px) {
  ._company--about__dl dl dd + dt {
    margin-top: 0;
  }
}

._company--history {
  padding-top: clamp(8rem, 7.81vw, 18rem);
  padding-inline: 10px;
}
._company--history .box {
  margin-top: clamp(1.8rem, 1.75vw, 2.4rem);
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1024px) {
  ._company--history .box {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
._company--history ul {
  margin-top: clamp(1.8rem, 1.75vw, 2.4rem);
  display: flex;
  flex-direction: column;
  gap: 47px;
  padding-left: 10px;
}
@media (min-width: 1024px) {
  ._company--history ul {
    gap: 28px;
    padding-left: 14px;
  }
}
._company--history ul li {
  font-size: clamp(1.6rem, 1.56vw, 1.8rem);
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  gap: 30px;
  position: relative;
}
@media (min-width: 1024px) {
  ._company--history ul li:nth-of-type(1) dl dd {
    margin-left: -9px;
  }
}
._company--history ul li::before {
  content: "";
  display: block;
  background-color: #F5EF9F;
  border: solid 1px #574544;
  width: 15px;
  height: 15px;
  min-width: 15px;
  min-height: 15px;
  border-radius: 50%;
  transform: translateY(2px);
  z-index: 5;
}
._company--history ul li:not(:nth-last-of-type(1))::after {
  content: "";
  display: block;
  width: 1px;
  height: 190%;
  background-color: #574544;
  position: absolute;
  left: 7.25px;
  top: 9px;
  z-index: 0;
}
@media (min-width: 1024px) {
  ._company--history ul li dl {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: clamp(2.5rem, 2.44vw, 5rem);
  }
}
@media (min-width: 1024px) {
  ._company--history .img_box {
    margin-top: clamp(3rem, 2.92vw, 5.5rem);
    width: 48%;
    padding-right: clamp(1rem, 0.97vw, 1.5rem);
  }
}
@media (min-width: 1280px) {
  ._company--history .img_box {
    width: 50%;
  }
}

._company--recruit {
  padding-top: clamp(8rem, 7.81vw, 18rem);
}
._company--recruit .ttl {
  text-align: center;
  position: relative;
  z-index: 5;
}
._company--recruit .box {
  position: relative;
  z-index: 0;
  background-color: #fff;
  border-radius: clamp(1rem, 0.97vw, 2rem);
  padding-inline: 10px;
  padding-top: 75px;
  padding-bottom: clamp(3rem, 2.92vw, 6rem);
  transform: translateY(-58px);
}
@media (min-width: 1024px) {
  ._company--recruit .box {
    padding-inline: clamp(2.5rem, 2.44vw, 5rem);
    padding-top: 124.5px;
    transform: translateY(-100px);
  }
}
._company--recruit .box > p {
  text-align: center;
}
._company--recruit__dl {
  margin-top: 36px;
}
._company--recruit__dl dl {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 1024px) {
  ._company--recruit__dl dl {
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 5px 0;
  }
}
._company--recruit__dl dl dt {
  font-size: clamp(1.6rem, 1.56vw, 1.8rem);
  background-color: #F5EF9F;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding-inline: 10px;
  padding-block: clamp(1.2rem, 1.17vw, 1.8rem);
}
@media (min-width: 1024px) {
  ._company--recruit__dl dl dt {
    width: 297px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 10px;
    padding-inline: clamp(2rem, 1.95vw, 4rem);
  }
}
._company--recruit__dl dl dd {
  font-size: clamp(1.6rem, 1.56vw, 1.8rem);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding-inline: 10px;
  padding-block: clamp(1.2rem, 1.17vw, 1.8rem);
  background-color: rgba(245, 239, 159, 0.2);
}
@media (min-width: 1024px) {
  ._company--recruit__dl dl dd {
    width: calc(100% - 297px);
    border-bottom-left-radius: 0;
    border-top-right-radius: 10px;
    padding-inline: clamp(2rem, 1.95vw, 4rem);
  }
}
._company--recruit__dl dl dd + dt {
  margin-top: 15px;
}
@media (min-width: 1024px) {
  ._company--recruit__dl dl dd + dt {
    margin-top: 0;
  }
}
._company--recruit .btn {
  margin-top: 40px;
  font-size: 1.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px #574544;
  background-color: #F5EF9F;
  padding-block: 15px 14px;
  border-radius: 4px;
  position: relative;
  transition: background-color 0.2s, color 0.2s;
}
@media (min-width: 768px) {
  ._company--recruit .btn {
    max-width: 254.5px;
    margin-inline: auto;
  }
}
._company--recruit .btn::after {
  content: "";
  display: block;
  width: 7px;
  min-width: 7px;
  height: 7px;
  min-height: 7px;
  border-right: solid 1px #574544;
  border-bottom: solid 1px #574544;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(-45deg);
  transition: border-color 0.2s;
}
@media (min-width: 1100px) {
  ._company--recruit .btn::after {
    right: clamp(1rem, 0.97vw, 2rem);
  }
}
@media (min-width: 1024px) {
  ._company--recruit .btn:hover {
    background-color: #574544;
    color: #fff;
  }
  ._company--recruit .btn:hover::after {
    border-right-color: #fff;
    border-bottom-color: #fff;
  }
}

@media (max-width: 767px) {
  ._works {
    --inner-margin: 40px;
  }
}
._works {
  padding-top: clamp(4.8rem, 4.68vw, 10rem);
}
._works .contact {
  padding-top: clamp(9rem, 8.78vw, 18rem);
  padding-bottom: clamp(10rem, 9.76vw, 20rem);
}
._works .anchor {
  margin-top: 36px;
}
._works .anchor strong {
  display: block;
  font-size: clamp(2rem, 1.95vw, 2.4rem);
  font-weight: bold;
  text-align: center;
}
._works .anchor ul {
  margin-top: clamp(2.8rem, 2.73vw, 3.6rem);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 1024px) {
  ._works .anchor ul {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 630px;
    gap: clamp(2rem, 1.95vw, 4rem);
  }
}
@media (min-width: 1024px) {
  ._works .anchor ul li {
    width: calc((100% - clamp(2rem, 1.95vw, 4rem)) / 2);
  }
}
._works .anchor ul li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  background-color: #F5EF9F;
  border: solid 1px #574544;
  border-radius: 100px;
  line-height: 1;
  padding: 5px;
  font-size: clamp(1.8rem, 1.75vw, 2rem);
  font-weight: bold;
  position: relative;
  transition: color 0.2s, background-color 0.2s;
}
@media (min-width: 1024px) {
  ._works .anchor ul li a:hover {
    color: #fff;
    background-color: #574544;
  }
  ._works .anchor ul li a:hover::after {
    border-right-color: #fff;
    border-bottom-color: #fff;
  }
}
._works .anchor ul li a::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
}
._works .anchor ul li a[href="#eco-cute"]::before {
  background: url(../img/page/works/icon-eco-cute.svg) no-repeat;
  background-size: 100%;
}
._works .anchor ul li a[href="#others"]::before {
  background: url(../img/page/works/icon-others.svg) no-repeat;
  background-size: 100%;
}
._works .anchor ul li a::after {
  content: "";
  display: block;
  width: 7px;
  min-width: 7px;
  height: 7px;
  min-height: 7px;
  border-right: solid 1px #574544;
  border-bottom: solid 1px #574544;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
  transition: border-color 0.2s;
}
@media (min-width: 1100px) {
  ._works .anchor ul li a::after {
    right: clamp(1rem, 0.97vw, 2rem);
  }
}

._works--contents {
  padding-top: clamp(8rem, 7.81vw, 10rem);
}
._works--contents h2 {
  font-size: clamp(2.4rem, 2.34vw, 3.2rem);
  font-weight: bold;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
._works--contents h2::before {
  content: "";
  display: block;
  width: 70px;
  height: 70px;
  min-width: 70px;
  min-height: 70px;
}
._works--contents h2 + p {
  margin-top: 36px;
  text-align: center;
  font-size: clamp(1.6rem, 1.56vw, 1.8rem);
}
._works--contents ul {
  margin-top: clamp(7.4rem, 7.22vw, 9.6rem);
  display: flex;
  flex-direction: column;
  gap: clamp(6rem, 5.85vw, 10rem);
}
@media (min-width: 1024px) {
  ._works--contents ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(6rem, 5.85vw, 10rem) clamp(1.6rem, 1.56vw, 2.7rem);
  }
}
@media (min-width: 1024px) {
  ._works--contents ul li {
    width: calc((100% - clamp(1.6rem, 1.56vw, 2.7rem) * 3) / 4);
  }
}
._works--contents ul li img {
  aspect-ratio: 1/1;
  object-fit: contain;
  background-color: #fff;
}
._works--contents ul li .detail {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
._works--contents ul li .detail .area {
  display: block;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  border: solid 1px #574544;
  border-radius: 5px;
  background-color: #fff;
  padding-inline: 9px;
}
._works--contents ul li .detail .name {
  display: block;
  font-size: 2rem;
}
._works--contents ul li h3 {
  margin-top: 10px;
  font-size: 2rem;
  font-weight: 500;
}
._works--contents ul li .switch {
  cursor: pointer;
  margin-top: 12px;
  height: 55px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 500;
  background-color: #F5EF9F;
  border-radius: 10px;
  border: solid 1px #574544;
  padding-inline: clamp(1rem, 0.97vw, 1.5rem);
  position: relative;
  padding-top: 2px;
}
._works--contents ul li .switch span {
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
._works--contents ul li .switch span::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #574544;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  transition: transform 0.2s, opacity 0.2s;
}
._works--contents ul li .switch span::after {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  background-color: #574544;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.2s, opacity 0.2s;
}
._works--contents ul li .switch.active span::before {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(45deg);
}
._works--contents ul li .switch.active span::after {
  transform: translate(-50%, -50%) rotate(-90deg);
}
._works--contents ul .detail-dl {
  display: none;
}
._works--contents ul .detail-dl dl {
  margin-top: 15px;
  border: solid 1px #E5C234;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
}
._works--contents ul .detail-dl dl dt {
  background-color: #F5EF9F;
  font-size: 1.6rem;
  width: 39.4%;
  padding: 8px;
}
@media (min-width: 1024px) {
  ._works--contents ul .detail-dl dl dt {
    width: 132px;
  }
}
._works--contents ul .detail-dl dl dt:nth-of-type(n+2) {
  border-top: solid 1px #E5C234;
}
._works--contents ul .detail-dl dl dd {
  font-size: 1.6rem;
  background-color: #fff;
  width: 60.6%;
  padding: 8px;
}
@media (min-width: 1024px) {
  ._works--contents ul .detail-dl dl dd {
    width: calc(100% - 132px);
  }
}
._works--contents ul .detail-dl dl dd:nth-of-type(n+2) {
  border-top: solid 1px #E5C234;
}
._works--contents ul .detail-dl dl dd img {
  width: 48%;
  max-width: 100px;
}
@media (min-width: 1024px) {
  ._works--contents ul .detail-dl dl dd img {
    width: 100%;
  }
}
._works--contents._works--eco-cute h2::before {
  background: url(../img/page/works/icon-eco-cute.svg) no-repeat;
  background-size: 100%;
}
._works--contents._works--others {
  margin-top: 20px;
}
@media (min-width: 1024px) {
  ._works--contents._works--others {
    margin-top: clamp(5rem, 4.88vw, 10rem);
  }
}
._works--contents._works--others h2::before {
  background: url(../img/page/works/icon-others.svg) no-repeat;
  background-size: 100%;
}

@media (max-width: 767px) {
  ._support {
    --inner-margin: 20px;
  }
}
._support {
  padding-top: clamp(4.8rem, 4.68vw, 10rem);
}
._support .contact {
  padding-top: clamp(10rem, 9.76vw, 19.6rem);
  padding-bottom: clamp(10rem, 9.76vw, 20rem);
}
._support .catch {
  margin-inline: auto;
  margin-top: 60px;
  padding-inline: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1.48rem, 1.44vw, 1.53rem);
  position: relative;
  width: fit-content;
}
._support .catch::after {
  content: "";
  display: block;
  background: url(../img/common/dennosuke03.png) no-repeat;
  background-size: 100%;
  width: clamp(5.649rem, 5.51vw, 6.684rem);
  height: clamp(6.8rem, 6.64vw, 8rem);
}
@media (min-width: 768px) {
  ._support .catch::after {
    position: absolute;
    top: 50%;
    right: -63px;
    transform: translateY(-50%);
  }
}
._support .catch p {
  width: min(100% - (clamp(1.48rem, 1.44vw, 1.53rem) + clamp(5.649rem, 4.69vw, 6.684rem)), 412.67px);
  margin-inline: auto;
  text-align: center;
  font-size: clamp(2rem, 1.95vw, 2.4rem);
  font-weight: bold;
  border-block: solid 3px #F5EF9F;
  padding-block: clamp(0.6rem, 0.58vw, 0.8rem);
  line-height: 1.6;
  white-space: nowrap;
  padding-inline: 32px;
}
@media (min-width: 768px) {
  ._support .catch p {
    width: fit-content;
    padding-inline: 19px;
  }
}
@media (min-width: 768px) {
  ._support .catch p .br-sp {
    display: none;
  }
}

._support--point {
  padding-top: clamp(9.88rem, 9.64vw, 13.8rem);
}
._support--point .ttl-wrap {
  width: 100%;
  height: clamp(5.1rem, 4.98vw, 6.4rem);
  border-radius: 10px;
  background-color: rgba(245, 239, 159, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}
._support--point .ttl-wrap h2 {
  text-align: center;
  font-size: clamp(2.4rem, 2.34vw, 3.2rem);
  font-weight: bold;
  line-height: 1;
  height: clamp(10rem, 9.76vw, 15.2rem);
}
._support--point .ttl-wrap h2 span {
  font-size: clamp(1.6rem, 1.56vw, 2.4rem);
}
._support--point .ttl-wrap h2 strong {
  font-size: clamp(7rem, 6.83vw, 10rem);
  font-weight: bold;
  color: #F5EF9F;
  -webkit-text-stroke: 1px #574544;
}
@media (min-width: 768px) {
  ._support--point .ttl-wrap h2 strong {
    margin-inline: 5px;
  }
}
._support--point__lst {
  margin-top: clamp(11.1rem, 10.83vw, 19rem);
  display: flex;
  flex-direction: column;
  gap: clamp(10rem, 9.76vw, 18.8rem) clamp(2rem, 1.95vw, 4rem);
  counter-reset: num 0;
}
@media (min-width: 1024px) {
  ._support--point__lst {
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
  }
}
._support--point__lst > li {
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding-bottom: 20px;
  padding-inline: 10px;
  padding-top: clamp(5rem, 4.88vw, 6.2rem);
  position: relative;
  counter-increment: num 1;
}
@media (min-width: 1024px) {
  ._support--point__lst > li {
    padding-inline: clamp(2.5rem, 2.44vw, 5rem);
  }
}
._support--point__lst > li h3 {
  position: absolute;
  top: calc(clamp(4.7rem, 4.58vw, 6.8rem) * -1);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  font-size: clamp(2.4rem, 2.34vw, 3.2rem);
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(2rem, 1.95vw, 4rem);
}
._support--point__lst > li h3::before {
  content: counter(num);
  display: block;
  font-size: clamp(7rem, 6.83vw, 10rem);
  font-weight: bold;
  line-height: 1;
  color: #F5EF9F;
  -webkit-text-stroke: 1px #574544;
}
._support--point__lst > li > .box p {
  text-align: center;
  font-size: clamp(1.6rem, 1.56vw, 1.8rem);
}
._support--point__lst > li > .box img {
  display: block;
}
@media (min-width: 1024px) {
  ._support--point__lst > li:nth-of-type(1) {
    padding-bottom: clamp(2rem, 1.95vw, 4rem);
  }
}
@media (min-width: 1024px) {
  ._support--point__lst > li:nth-of-type(1) {
    width: calc((100% - clamp(2rem, 1.95vw, 4rem)) / 2);
  }
}
._support--point__lst > li:nth-of-type(1) > .box img {
  margin-inline: auto;
  margin-top: clamp(2.8rem, 2.73vw, 3.6rem);
}
@media (min-width: 1024px) {
  ._support--point__lst > li:nth-of-type(1) > .box img {
    max-height: 198px;
    width: auto;
  }
}
@media (min-width: 1024px) {
  ._support--point__lst > li:nth-of-type(2) {
    padding-bottom: clamp(3rem, 2.92vw, 4rem);
    width: calc((100% - clamp(2rem, 1.95vw, 4rem)) / 2);
  }
}
._support--point__lst > li:nth-of-type(2) > .box img {
  margin-inline: auto;
  margin-top: clamp(2.8rem, 2.73vw, 3.6rem);
}
@media (min-width: 1024px) {
  ._support--point__lst > li:nth-of-type(2) > .box img {
    max-height: 198px;
    width: auto;
  }
}
@media (min-width: 1024px) {
  ._support--point__lst > li:nth-of-type(3) {
    padding-bottom: clamp(3rem, 2.92vw, 5rem);
  }
}
._support--point__lst > li:nth-of-type(3) .img_box {
  margin-top: clamp(2.8rem, 2.73vw, 3.6rem);
  margin-inline: auto;
  max-width: 792px;
}
@media (max-width: 1023px) {
  ._support--point__lst > li:nth-of-type(4) h3 {
    font-size: 2rem;
  }
}
._support--point__lst > li:nth-of-type(4) h3::after {
  content: "";
  display: block;
  background: url(../img/common/dennosuke04.png) no-repeat;
  background-size: 100%;
  width: clamp(4.997rem, 4.87vw, 6.626rem);
  height: clamp(6rem, 5.85vw, 8rem);
}
@media (min-width: 1024px) {
  ._support--point__lst > li:nth-of-type(4) {
    padding-bottom: clamp(3rem, 2.92vw, 6rem);
  }
}
._support--point__lst > li:nth-of-type(4) .lst {
  margin-top: clamp(2.8rem, 2.73vw, 3.6rem);
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 2.92vw, 4.9rem) clamp(2rem, 1.95vw, 4rem);
}
@media (min-width: 1024px) {
  ._support--point__lst > li:nth-of-type(4) .lst {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
._support--point__lst > li:nth-of-type(4) .lst > li {
  border-radius: 10px;
  background-color: rgba(245, 239, 159, 0.5);
  padding: 10px;
}
@media (min-width: 1024px) {
  ._support--point__lst > li:nth-of-type(4) .lst > li {
    padding: clamp(1.5rem, 1.46vw, 3rem);
    width: calc((100% - clamp(2rem, 1.95vw, 4rem)) / 2);
  }
}
._support--point__lst > li:nth-of-type(4) .lst > li h4 {
  text-align: center;
  font-size: clamp(2rem, 1.95vw, 2.4rem);
  font-weight: bold;
}
._support--point__lst > li:nth-of-type(4) .lst > li .wrap {
  margin-top: clamp(1.1rem, 1.07vw, 2rem);
}
@media (min-width: 1024px) {
  ._support--point__lst > li:nth-of-type(4) .lst > li .wrap {
    max-height: clamp(27.5rem, 26.85vw, 33rem);
    min-height: clamp(27.5rem, 26.85vw, 33rem);
  }
}
._support--point__lst > li:nth-of-type(4) .lst > li:nth-of-type(1) .wrap {
  border-radius: 10px;
  background-color: #FFFFFF;
  padding: 20px;
}
@media (min-width: 1024px) {
  ._support--point__lst > li:nth-of-type(4) .lst > li:nth-of-type(1) .wrap {
    padding-block: 32px;
    padding-inline: 26px;
  }
}
._support--point__lst > li:nth-of-type(4) .lst > li:nth-of-type(1) .wrap strong {
  display: block;
  color: #F36A36;
  font-size: clamp(2.4rem, 2.34vw, 4rem);
  text-align: center;
  line-height: 1;
}
._support--point__lst > li:nth-of-type(4) .lst > li:nth-of-type(1) .wrap strong span {
  margin-left: 5px;
  font-size: clamp(7.2rem, 7.03vw, 12rem);
}
._support--point__lst > li:nth-of-type(4) .lst > li:nth-of-type(1) .wrap small {
  text-align: center;
  font-size: clamp(1.6rem, 1.56vw, 1.8rem);
  display: block;
}
._support--point__lst > li:nth-of-type(4) .lst > li:nth-of-type(1) .wrap p {
  margin-top: clamp(1.9rem, 1.85vw, 3.2rem);
  width: fit-content;
  font-size: clamp(1.6rem, 1.32vw, 1.8rem);
  border-radius: 5px;
  background-color: rgba(245, 239, 159, 0.5);
  padding: 8px 10px;
  text-align: left;
  line-height: 1.6;
  position: relative;
  text-align: center;
}
@media (min-width: 768px) {
  ._support--point__lst > li:nth-of-type(4) .lst > li:nth-of-type(1) .wrap p {
    margin-inline: auto;
    text-align: left;
  }
}
@media (min-width: 1024px) {
  ._support--point__lst > li:nth-of-type(4) .lst > li:nth-of-type(1) .wrap p {
    margin-left: 0;
    padding: 8px 15px;
    margin-left: clamp(2.1rem, 2.05vw, 3.7rem);
  }
}
._support--point__lst > li:nth-of-type(4) .lst > li:nth-of-type(1) .wrap p::before {
  content: "";
  display: block;
  background: url(../img/common/dennosuke05.png) no-repeat;
  background-size: 100%;
  width: clamp(8.532rem, 8.33vw, 10.501rem);
  height: clamp(6.5rem, 6.34vw, 8rem);
  min-width: clamp(8.532rem, 8.33vw, 10.501rem);
  min-height: clamp(6.5rem, 6.34vw, 8rem);
  position: absolute;
  top: 48%;
  right: calc(clamp(9.6rem, 12vw, 13.4rem) * -1);
  transform: translateY(-50%);
}
._support--point__lst > li:nth-of-type(4) .lst > li:nth-of-type(2) .wrap dl dt {
  font-size: clamp(1.8rem, 1.75vw, 2rem);
  font-weight: bold;
  text-align: center;
  background-color: #F5EF9F;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding-block: clamp(0.4rem, 0.39vw, 0.7rem) clamp(0.3rem, 0.29vw, 0.5rem);
}
._support--point__lst > li:nth-of-type(4) .lst > li:nth-of-type(2) .wrap dl dd {
  background-color: #fff;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 10px;
  text-align: center;
}
@media (min-width: 1024px) {
  ._support--point__lst > li:nth-of-type(4) .lst > li:nth-of-type(2) .wrap dl dd {
    padding-block: clamp(1.5rem, 1.46vw, 2.1rem);
    padding-inline: clamp(2rem, 1.95vw, 4rem);
  }
}
._support--point__lst > li:nth-of-type(4) .lst > li:nth-of-type(2) .wrap dl dd + dt {
  margin-top: clamp(1rem, 0.97vw, 2rem);
}
._support--point__lst > li:nth-of-type(4) .lst > li:nth-of-type(2) .wrap dl dd strong {
  font-weight: bold;
  font-size: 2rem;
  color: #F36A36;
  line-height: 1.2;
}
._support--point__lst > li:nth-of-type(4) .lst > li:nth-of-type(2) .wrap dl dd strong span {
  font-size: 4.2rem;
}
._support--point__lst > li:nth-of-type(4) .lst > li:nth-of-type(2) .wrap dl dd p {
  font-size: clamp(1.6rem, 1.56vw, 1.8rem);
  line-height: 1.4;
}
@media (min-width: 1024px) {
  ._support--point__lst > li:nth-of-type(4) .lst > li:nth-of-type(2) .wrap dl dd p {
    display: inline;
  }
}
._support--point__lst > li:nth-of-type(4) .lst > li:nth-of-type(3) .wrap {
  border-radius: 10px;
  background-color: #FFFFFF;
  padding: 20px;
}
@media (min-width: 1024px) {
  ._support--point__lst > li:nth-of-type(4) .lst > li:nth-of-type(3) .wrap {
    padding-block: 32px;
    padding-inline: 26px;
  }
}
._support--point__lst > li:nth-of-type(4) .lst > li:nth-of-type(3) .wrap .txt {
  display: flex;
  justify-content: center;
  align-items: center;
}
._support--point__lst > li:nth-of-type(4) .lst > li:nth-of-type(3) .wrap .txt strong {
  font-weight: bold;
  display: block;
  color: #F36A36;
  font-size: clamp(2.4rem, 2.34vw, 4rem);
  text-align: center;
  line-height: 1.2;
}
._support--point__lst > li:nth-of-type(4) .lst > li:nth-of-type(3) .wrap .txt strong span {
  margin-left: 5px;
  font-size: clamp(7.2rem, 7.03vw, 12rem);
}
._support--point__lst > li:nth-of-type(4) .lst > li:nth-of-type(3) .wrap small {
  text-align: center;
  font-size: clamp(1.6rem, 1.56vw, 1.8rem);
  display: block;
}
._support--point__lst > li:nth-of-type(4) .lst > li:nth-of-type(3) .wrap p {
  margin-top: 18px;
  font-size: clamp(1.6rem, 1.32vw, 1.8rem);
  border-radius: 5px;
  background-color: rgba(245, 239, 159, 0.5);
  padding: 8px 10px;
  text-align: left;
  line-height: 1.6;
  position: relative;
  text-align: center;
}
@media (min-width: 1024px) {
  ._support--point__lst > li:nth-of-type(4) .lst > li:nth-of-type(3) .wrap p {
    margin-top: 15px;
    padding: 8px 15px;
  }
}
._support--point__lst > li:nth-of-type(4) .lst > li:nth-of-type(4) .wrap {
  border-radius: 10px;
  background-color: #FFFFFF;
  padding: 20px;
}
@media (min-width: 1024px) {
  ._support--point__lst > li:nth-of-type(4) .lst > li:nth-of-type(4) .wrap {
    padding-block: 32px;
    padding-inline: 26px;
  }
}
._support--point__lst > li:nth-of-type(4) .lst > li:nth-of-type(4) .wrap strong {
  display: block;
  color: #F36A36;
  font-size: clamp(2.4rem, 2.34vw, 4rem);
  text-align: center;
  line-height: 1;
}
._support--point__lst > li:nth-of-type(4) .lst > li:nth-of-type(4) .wrap strong span {
  margin-left: 5px;
  font-size: clamp(4.8rem, 4.68vw, 7.2rem);
}
._support--point__lst > li:nth-of-type(4) .lst > li:nth-of-type(4) .wrap small {
  text-align: center;
  font-size: clamp(1.6rem, 1.56vw, 1.8rem);
  display: block;
}
._support--point__lst > li:nth-of-type(4) .lst > li:nth-of-type(4) .wrap > p {
  margin-top: 18px;
  font-size: clamp(1.6rem, 1.32vw, 1.8rem);
  border-radius: 5px;
  background-color: rgba(245, 239, 159, 0.5);
  padding: 8px 10px;
  text-align: left;
  line-height: 1.6;
  position: relative;
  text-align: center;
}
@media (min-width: 1024px) {
  ._support--point__lst > li:nth-of-type(4) .lst > li:nth-of-type(4) .wrap > p {
    padding: 8px 15px;
  }
}
._support--point__lst > li:nth-of-type(4) .lst > li:nth-of-type(4) .wrap .tel-box {
  width: fit-content;
  margin-top: 23px;
  position: relative;
}
@media (min-width: 768px) {
  ._support--point__lst > li:nth-of-type(4) .lst > li:nth-of-type(4) .wrap .tel-box {
    margin-inline: auto;
  }
}
@media (min-width: 1024px) {
  ._support--point__lst > li:nth-of-type(4) .lst > li:nth-of-type(4) .wrap .tel-box {
    margin-left: 0;
    margin-top: 17px;
    padding-left: clamp(2.5rem, 2.44vw, 4.5rem);
  }
}
._support--point__lst > li:nth-of-type(4) .lst > li:nth-of-type(4) .wrap .tel-box::after {
  content: "";
  display: block;
  background: url(../img/common/dennosuke06.png) no-repeat;
  background-size: 100%;
  width: clamp(4.712rem, 4.6vw, 6.524rem);
  height: clamp(6.5rem, 6.34vw, 9rem);
  position: absolute;
  top: 50%;
  right: -52px;
  transform: translateY(-50%);
}
@media (min-width: 1024px) {
  ._support--point__lst > li:nth-of-type(4) .lst > li:nth-of-type(4) .wrap .tel-box::after {
    right: -120px;
  }
}
._support--point__lst > li:nth-of-type(4) .lst > li:nth-of-type(4) .wrap .tel-box p {
  font-size: clamp(1.6rem, 1.56vw, 1.8rem);
  text-align: left;
}
._support--point__lst > li:nth-of-type(4) .lst > li:nth-of-type(4) .wrap .tel-box a {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  ruby-position: under;
  font-size: clamp(2.8rem, 2.73vw, 3.2rem);
  line-height: 1.2;
}
@media (min-width: 1024px) {
  ._support--point__lst > li:nth-of-type(4) .lst > li:nth-of-type(4) .wrap .tel-box a {
    pointer-events: none;
  }
}
._support--point__lst > li:nth-of-type(4) .lst > li:nth-of-type(4) .wrap .tel-box a::before {
  content: "";
  display: inline-block;
  background: url(../img/common/icon-tel.svg) no-repeat;
  background-size: 100%;
  width: clamp(2.874rem, 2.8vw, 3.093rem);
  height: clamp(2.874rem, 2.8vw, 3.093rem);
  min-width: clamp(2.874rem, 2.8vw, 3.093rem);
  min-height: clamp(2.874rem, 2.8vw, 3.093rem);
  margin-right: 8px;
  transform: translateY(4px);
}
._support--point__lst > li:nth-of-type(4) .lst > li:nth-of-type(4) .wrap .tel-box a ruby rt {
  font-size: 1.2rem;
  letter-spacing: -2px;
}
._support--point__lst > li:nth-of-type(4) .lst > li:nth-of-type(4) .wrap .tel-box a ruby rt.pt02 {
  letter-spacing: -18px;
}
@media (min-width: 1024px) {
  ._support--point__lst > li:nth-of-type(5) {
    padding-bottom: clamp(3rem, 2.92vw, 5rem);
  }
}
._support--point__lst > li:nth-of-type(5) .contents {
  max-width: 737px;
  margin-inline: auto;
  margin-top: clamp(2.8rem, 2.73vw, 3.6rem);
  background-color: rgba(245, 239, 159, 0.5);
  border-radius: 10px;
  overflow: clip;
}
@media (min-width: 1024px) {
  ._support--point__lst > li:nth-of-type(5) .contents {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  ._support--point__lst > li:nth-of-type(5) img {
    width: calc(50% - 16px);
  }
}
._support--point__lst > li:nth-of-type(5) .lst {
  padding-inline: 20px;
  padding-block: 23px;
}
@media (min-width: 1024px) {
  ._support--point__lst > li:nth-of-type(5) .lst {
    width: 50%;
    padding-block: clamp(2.3rem, 2.24vw, 3.2rem);
    padding-inline: clamp(2.5rem, 2.44vw, 5rem);
  }
}
._support--point__lst > li:nth-of-type(5) .lst li {
  font-size: clamp(1.6rem, 1.56vw, 1.8rem);
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  gap: 5px;
  line-height: 1.8;
}
._support--point__lst > li:nth-of-type(5) .lst li::before {
  content: "";
  display: block;
  border-radius: 2px;
  width: clamp(1rem, 0.97vw, 1.2rem);
  height: clamp(1rem, 0.97vw, 1.2rem);
  min-width: clamp(1rem, 0.97vw, 1.2rem);
  min-height: clamp(1rem, 0.97vw, 1.2rem);
  background-color: #574544;
}
@media (min-width: 1024px) {
  ._support--point__lst > li:nth-of-type(6) {
    padding-bottom: clamp(2rem, 1.95vw, 4rem);
  }
}
@media (min-width: 1024px) {
  ._support--point__lst > li:nth-of-type(6) {
    width: calc((100% - clamp(2rem, 1.95vw, 4rem)) / 2);
  }
}
._support--point__lst > li:nth-of-type(6) > .box img {
  margin-inline: auto;
  margin-top: clamp(2.8rem, 2.73vw, 3.6rem);
  width: 56.8vw;
}
@media (min-width: 1024px) {
  ._support--point__lst > li:nth-of-type(6) > .box img {
    max-height: 198px;
    width: auto;
  }
}
@media (min-width: 1024px) {
  ._support--point__lst > li:nth-of-type(7) {
    padding-bottom: clamp(3rem, 2.92vw, 4rem);
    width: calc((100% - clamp(2rem, 1.95vw, 4rem)) / 2);
  }
}
._support--point__lst > li:nth-of-type(7) > .box img {
  margin-inline: auto;
  margin-top: clamp(2.8rem, 2.73vw, 3.6rem);
}
@media (min-width: 1024px) {
  ._support--point__lst > li:nth-of-type(7) > .box img {
    max-height: 198px;
    width: auto;
  }
}
@media (min-width: 1024px) {
  ._support--point__lst > li:nth-of-type(8) {
    padding-bottom: clamp(3rem, 2.92vw, 5rem);
  }
}
._support--point__lst > li:nth-of-type(8) > .box .lst {
  margin-top: clamp(2.8rem, 2.73vw, 3.6rem);
  display: flex;
  flex-direction: column;
  gap: 20px 22px;
}
@media (min-width: 1024px) {
  ._support--point__lst > li:nth-of-type(8) > .box .lst {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}
._support--point__lst > li:nth-of-type(8) > .box .lst li {
  background-color: #F5EF9F;
  border-radius: 10px;
  overflow: clip;
}
@media (min-width: 1024px) {
  ._support--point__lst > li:nth-of-type(8) > .box .lst li {
    width: calc((100% - 44px) / 3);
  }
}
._support--point__lst > li:nth-of-type(8) > .box .lst li strong {
  display: block;
  font-size: clamp(1.8rem, 1.75vw, 2rem);
  padding-block: 3px 2px;
  font-weight: bold;
  text-align: center;
}

._support--staff {
  padding-top: clamp(10rem, 9.76vw, 19.6rem);
}
._support--staff .ttl {
  text-align: center;
}
._support--staff .ttl + p {
  margin-top: 32px;
  text-align: center;
  font-size: clamp(1.4rem, 1.36vw, 1.6rem);
}
._support--staff--container {
  background-color: #fff;
  background: linear-gradient(to bottom, transparent 0%, transparent calc(0% + clamp(6rem, 5.85vw, 12rem)), #fff calc(0% + clamp(6rem, 5.85vw, 12rem)), #fff 100%);
  padding-bottom: clamp(4rem, 3.9vw, 10rem);
}

#staff-lst {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1024px) {
  #staff-lst {
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  #staff-lst li {
    width: calc((100% - 60px) / 4);
  }
}
#staff-lst li .name {
  width: 144.39px;
  margin-inline: auto;
  margin-bottom: 19px;
}
@media (min-width: 1024px) {
  #staff-lst li .name {
    width: 139.35px;
  }
}
#staff-lst li .img_box {
  padding-inline: 10px;
  position: relative;
}
@media (min-width: 1024px) {
  #staff-lst li .img_box {
    padding-inline: clamp(1.2rem, 1.17vw, 2.6rem);
  }
}
#staff-lst li dl {
  margin-top: 20px;
}
#staff-lst li dl dt {
  background-color: var(--dt-color);
  color: #fff;
  padding-inline: 10px;
  padding-block: 3px 2px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  font-size: clamp(1.6rem, 1.56vw, 1.8rem);
}
#staff-lst li dl dd {
  padding-inline: 10px;
  padding-block: 10px 9px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  font-size: clamp(1.6rem, 1.56vw, 1.8rem);
}
#staff-lst li#staff-tt {
  --dt-color: #6DA7DB;
}
#staff-lst li#staff-st {
  --dt-color: #6EBEBA;
}
#staff-lst li#staff-ki {
  --dt-color: #E68484;
}
#staff-lst li#staff-ns {
  --dt-color: #EBAA58;
}
#staff-lst .animation01 {
  transform-origin: center;
  opacity: 0;
}
#staff-lst .animation01-wrap {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  opacity: 1;
  transform: translateX(-50%) translateY(-200px);
}
#staff-lst .animation02 {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50px) scale(0.8);
  opacity: 0;
}
#staff-lst .animation03 {
  position: relative;
  z-index: 10;
  opacity: 0;
  transform: scale(0.6);
}

#staff-lst.active .animation01 {
  animation: animation01 1.5s forwards;
}
#staff-lst.active .animation01-wrap {
  animation: animation01-wrap 1.5s forwards;
}
#staff-lst.active .animation02 {
  animation: animation02 0.5s forwards;
  animation-delay: 1s;
}
#staff-lst.active .animation03 {
  animation: animation03 0.5s forwards;
  animation-delay: 1.5s;
}

@keyframes animation01 {
  0% {
    opacity: 1;
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(1080deg);
  }
}
@keyframes animation01-wrap {
  0% {
    transform: translateX(-50%) translateY(-200px);
  }
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0;
  }
}
@keyframes animation02 {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-50px) scale(0.8);
  }
  80% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}
@keyframes animation03 {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
._support--flow {
  padding-top: clamp(10rem, 9.76vw, 19.6rem);
}
._support--flow .ttl {
  text-align: center;
  position: relative;
  z-index: 5;
  line-height: 1.4;
}
._support--flow--contents {
  position: relative;
  z-index: 0;
  background-color: rgba(245, 239, 159, 0.49);
  border-radius: clamp(1rem, 0.97vw, 2rem);
  padding-inline: 10px;
  padding-top: 100px;
  padding-bottom: clamp(2rem, 1.95vw, 5rem);
  transform: translateY(-52px);
  position: relative;
}
@media (min-width: 1024px) {
  ._support--flow--contents {
    padding-inline: clamp(2.5rem, 2.44vw, 5rem);
    padding-top: 124.5px;
    padding-bottom: 52px;
    transform: translateY(-100px);
  }
}
._support--flow--contents p {
  font-size: clamp(1.6rem, 1.56vw, 1.8rem);
  text-align: center;
}
._support--flow__lst {
  margin-top: clamp(4.9rem, 4.78vw, 7.4rem);
  display: flex;
  flex-direction: column;
  gap: 47.7px;
  counter-reset: num 0;
}
@media (min-width: 1024px) {
  ._support--flow__lst {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: clamp(2rem, 1.95vw, 4rem);
  }
}
._support--flow__lst li {
  border-radius: 10px;
  border: solid 1px #F5EF9F;
  background-color: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  padding-block: 11px;
  padding-left: 90px;
  position: relative;
  counter-increment: num 1;
}
@media (min-width: 1024px) {
  ._support--flow__lst li {
    padding-top: 50px;
    padding-left: 0;
    width: calc((100% - clamp(2rem, 1.95vw, 4rem) * 4) / 5);
    aspect-ratio: 1/1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: clamp(1rem, 0.97vw, 1.8rem);
  }
}
._support--flow__lst li::before {
  content: counter(num);
  display: block;
  font-size: 6.9rem;
  line-height: 1;
  font-weight: bold;
  color: #F5EF9F;
  -webkit-text-stroke: 1px #574544;
  position: absolute;
  top: 25%;
  left: 22px;
  transform: translateY(-50%);
}
@media (min-width: 1024px) {
  ._support--flow__lst li::before {
    top: -14%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6.3rem;
  }
}
._support--flow__lst li:not(:nth-last-of-type(1))::after {
  content: "";
  width: 32.31px;
  height: 12.32px;
  min-width: 32.31px;
  min-height: 12.32px;
  border-top: solid 12.32px #574544;
  border-left: solid 16.105px transparent;
  border-right: solid 16.105px transparent;
  position: absolute;
  bottom: -52%;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 1024px) {
  ._support--flow__lst li:not(:nth-last-of-type(1))::after {
    width: clamp(0.75rem, 0.73vw, 1.513rem);
    height: clamp(2rem, 1.95vw, 3.968rem);
    min-width: clamp(0.75rem, 0.73vw, 1.513rem);
    min-height: clamp(2rem, 1.95vw, 3.968rem);
    border-left: solid clamp(0.75rem, 0.73vw, 1.513rem) #574544;
    border-right: none;
    border-top: solid calc(clamp(2rem, 1.95vw, 3.968rem) / 2) transparent;
    border-bottom: solid calc(clamp(2rem, 1.95vw, 3.968rem) / 2) transparent;
    top: 50%;
    left: auto;
    right: calc(clamp(1.5rem, 1.46vw, 2.8rem) * -1);
    transform: translateY(-50%);
  }
}
._support--flow__lst li img {
  width: clamp(7rem, 6.83vw, 12rem);
}
._support--flow__lst li p {
  font-size: clamp(1.8rem, 1.75vw, 2rem);
  font-weight: bold;
}
._support--flow__dl {
  margin-top: clamp(4rem, 3.9vw, 6rem);
}
._support--flow__dl dt {
  font-size: clamp(2rem, 1.95vw, 2.4rem);
  font-weight: bold;
  text-align: center;
  background-color: #F36A36;
  color: #fff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding-block: 8px 6px;
}
._support--flow__dl dd {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #fff;
  border: solid 1px #F36A36;
  padding: clamp(2.8rem, 2.73vw, 3.6rem) clamp(2rem, 1.95vw, 4rem);
}
._support--flow__dl dd .lst {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 0.97vw, 2rem);
}
._support--flow__dl dd .lst li {
  font-size: clamp(1.6rem, 1.56vw, 1.8rem);
  font-weight: bold;
  gap: clamp(1rem, 0.97vw, 1.5rem);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
._support--flow__dl dd .lst li::before {
  content: "";
  display: block;
  background: url(../img/page/support/flow/icon-chk.svg) no-repeat;
  background-size: 100%;
  width: clamp(2.5rem, 2.44vw, 3rem);
  height: clamp(2.5rem, 2.44vw, 3rem);
  min-width: clamp(2.5rem, 2.44vw, 3rem);
  min-height: clamp(2.5rem, 2.44vw, 3rem);
  transform: translateY(2px);
}
@media (min-width: 1024px) {
  ._support--flow__dl dd .lst li::before {
    transform: none;
  }
}

.subsidy {
  padding-top: clamp(11.7rem, 11.42vw, 2.2rem);
}
.subsidy .inner {
  background-color: #fff;
  border-radius: 10px;
  padding-bottom: 20px;
  padding-inline: 10px;
  padding-top: clamp(5rem, 4.88vw, 6.2rem);
  position: relative;
}
@media (min-width: 1024px) {
  .subsidy .inner {
    padding-inline: clamp(2.5rem, 2.44vw, 5rem);
    padding-bottom: clamp(3rem, 2.92vw, 5rem);
  }
}
.subsidy .inner h2 {
  position: absolute;
  top: calc(clamp(2.2rem, 2.14vw, 3rem) * -1);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  font-size: clamp(2.4rem, 2.34vw, 3.2rem);
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(2rem, 1.95vw, 4rem);
}
.subsidy .inner h2 + p {
  text-align: center;
  font-size: clamp(1.6rem, 1.56vw, 1.8rem);
}
.subsidy .inner h2 + p a {
  color: #F56363;
  text-decoration: underline;
  transition: opacity 0.2s, text-decoration-color 0.2s;
}
@media (min-width: 1024px) {
  .subsidy .inner h2 + p a:hover {
    opacity: 0.7;
    text-decoration-color: transparent;
  }
}
.subsidy ul {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 1.95vw, 3.6rem);
}
@media (min-width: 1024px) {
  .subsidy ul {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media (min-width: 1024px) {
  .subsidy ul li {
    width: calc((100% - clamp(2rem, 1.95vw, 3.6rem)) / 2);
  }
}
.subsidy ul + p {
  margin-top: clamp(2rem, 1.95vw, 4rem);
  font-size: clamp(1.8rem, 1.49vw, 2.4rem);
  border-radius: 5px;
  background-color: rgba(245, 239, 159, 0.5);
  padding: 8px 10px;
  text-align: center;
  line-height: 1.6;
  position: relative;
}
@media (min-width: 1024px) {
  .subsidy ul + p {
    padding: 8px 15px;
  }
}