@charset "UTF-8";
:root {
  --text-color: #333333;
  --text-green: #4E7102;
  --text-lightgreen: #15B746;
  --text-red: #EE2222;
  --shadow-color: rgba(0, 0, 0, 0.2);
  --white-color: #ffffff;
  --orange-color: #F16413;
  --green-color: #06C755;
  --blue-color: #29ABE3;
  --green-gradient: linear-gradient(90deg, #9BE006 0%, #88BF10 100%);
  --bg-beige: #FFF7E1;
  --bg-cream: #FCF2E6;
  --bg-white: #FEFBE9;
  --bg-green: #F4FFDD;
  --bg-gray: #6C6767;
  --bg-label: #82BC04;
  --bg-yellow: #FFD700;
  --background-color: #F8F8F8;
  --background-white: #FFF7DB;
  --background-footer: #85B52C;
  --border-orange: #E5A703;
  --border-gray: #BDBDBD;
  --accent-color: #FFD798;
  --line-color: #06C755;
  --font-jp: "Inter", sans-serif;
  --font-en: "Roboto Condensed", sans-serif;
}

html {
  font-size: 100%;
}

body {
  font-size: 1rem;
  font-family: var(--font-jp);
  color: var(--text-color);
  min-height: 100vh;
}

img {
  width: 100%;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  display: inline-block;
  color: var(--text-color);
}

address {
  font-style: normal;
}

.wrapper {
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: 3%;
}

@media (max-width: 768px) {
  .pc-br {
    display: none;
  }
}

.ssp-br {
  display: none;
}
@media (max-width: 499px) {
  .ssp-br {
    display: block;
  }
}

.header {
  width: 100%;
  position: relative;
  z-index: 999;
  background: var(--white-color);
}
@media (max-width: 1024px) {
  .header {
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
  }
}
.header-inner {
  max-width: 1400px;
  height: 100px;
  margin-inline: auto;
  padding-inline: 2%;
  display: flex;
  align-items: center;
  gap: clamp(20px, 1.5vw, 48px);
}
@media (max-width: 1024px) {
  .header-inner {
    justify-content: space-between;
    height: 70px;
  }
}
.header-logo {
  flex-shrink: 0;
  line-height: 0;
  height: clamp(60px, 5.5vw, 80px);
}
.header-logo img {
  width: clamp(180px, 18vw, 260px);
  display: block;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  justify-content: flex-end;
}
@media (max-width: 1024px) {
  .header-right {
    display: none;
  }
}
.header-time {
  font-size: 1.25rem;
  white-space: nowrap;
  text-align: center;
}
.header-btn {
  width: clamp(120px, 16vw, 190px);
  min-width: 0;
  height: 60px;
  padding-inline: clamp(8px, 1vw, 12px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 1vw, 15px);
  color: var(--white-color);
  font-size: clamp(0.75rem, 1vw, 1rem);
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 1;
  transition: all 0.5s;
}
.header-btn:hover {
  opacity: 0.8;
}
.header-btn img {
  width: clamp(26px, 2.4vw, 34px);
  height: clamp(26px, 2.4vw, 34px);
}
.header-tel {
  background-color: var(--orange-color);
}
.header-line {
  background-color: var(--line-color);
}
.header-mail {
  background-color: var(--blue-color);
}
.header-nav {
  background: var(--bg-yellow);
  height: 60px;
}
.header-nav.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
@media (max-width: 1024px) {
  .header-nav {
    display: none;
  }
}
.header-list {
  height: 60px;
  padding-block: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-list li a {
  font-size: 1.25rem;
  font-weight: 600;
  position: relative;
  padding-inline: 4px;
}
.header-list li a::before {
  position: absolute;
  content: "";
  background: var(--text-color);
  width: 100%;
  height: 1px;
  bottom: -3px;
  left: 0;
  transition: all 0.5s;
  transform: scaleX(0);
  transform-origin: left;
}
.header-list li a:hover::before {
  transform: scaleX(1);
}
.header-menu {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: var(--white-color);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.header-menu.is-active {
  opacity: 1;
  pointer-events: all;
}
.header-menu-list li {
  padding: 15px 20px;
  border-bottom: 1px solid var(--border-gray);
}
.header-menu-list a {
  font-size: 1rem;
  color: var(--text-color);
  font-weight: 600;
  transition: all 0.5s;
}
.header-menu-list a:hover {
  opacity: 0.7;
}
.header-menu-btns {
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 768px) {
  .header-menu-btns {
    flex-direction: column;
  }
}
.header-menu-btns .header-btn {
  width: 250px;
}
.header-menu-time {
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding-top: 40px;
  color: var(--orange-color);
}
@media (max-width: 499px) {
  .header-menu-time {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.header-menu-time span {
  background: var(--orange-color);
  color: var(--white-color);
  padding: 4px 8px;
}

.burger {
  display: none;
}
@media (max-width: 1024px) {
  .burger {
    --opacity: 1;
    --rotate: 0;
    --translate: .5rem;
    display: grid;
    place-items: center;
    width: 44px;
    aspect-ratio: 1;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1000;
  }
  .burger:hover {
    opacity: 0.7;
  }
  .burger.is-active {
    --opacity: 0;
    --rotate: 135deg;
    --translate: 0;
  }
  .burger span {
    display: block;
    width: 70%;
    height: 2px;
    background-color: var(--orange-color);
    grid-area: 1/1/-1/-1;
    transition: opacity 0.4s ease, rotate 0.4s ease, translate 0.4s ease;
  }
  .burger span:nth-child(1) {
    opacity: var(--opacity);
  }
  .burger span:nth-child(2) {
    translate: 0 calc(var(--translate) * -1);
    rotate: var(--rotate);
  }
  .burger span:nth-child(3) {
    translate: 0 var(--translate);
    rotate: calc(var(--rotate) * -1);
  }
}

.nav {
  width: 100%;
  height: 100%;
  padding: 70px 40px;
}

.footer {
  background: var(--background-footer);
  padding-block: clamp(56px, 7vw, 80px) 4%;
  color: var(--white-color);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: clamp(32px, 6vw, 80px);
}
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 24px;
  }
}
.footer-info {
  width: 45%;
}
@media (max-width: 768px) {
  .footer-info {
    width: 100%;
  }
}
.footer-logo {
  max-width: clamp(240px, 32vw, 360px);
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .footer-logo {
    width: 190px;
  }
}
.footer-logo img {
  width: 100%;
}
.footer-address {
  font-style: normal;
  line-height: 1.8;
  font-size: clamp(0.95rem, 1.6vw, 1.125rem);
}
.footer-nav {
  width: 45%;
}
@media (max-width: 768px) {
  .footer-nav {
    width: 100%;
  }
}
.footer-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 40px;
}
@media (max-width: 768px) {
  .footer-list {
    gap: 16px 20px;
  }
}
.footer-list a {
  display: flex;
  align-items: center;
  gap: 16px 20px;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 700;
  text-decoration: none;
  color: var(--white-color);
  transition: 0.3s;
}
@media (max-width: 768px) {
  .footer-list a {
    font-size: 0.95rem;
  }
}
.footer-list a:hover {
  opacity: 0.7;
}
.footer-list a span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--white-color);
  position: relative;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .footer-list a span {
    width: 18px;
    height: 18px;
  }
}
.footer-list a span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-40%, -50%);
  width: 7px;
  height: 9px;
  background: var(--text-green);
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.footer-copy {
  display: block;
  margin-top: 56px;
  font-size: 0.75rem;
  text-align: center;
}
@media (max-width: 768px) {
  .footer-copy {
    margin-top: 56px;
  }
}
.footer .recaptcha-text {
  font-size: 10px;
  color: var(--white-color);
  line-height: 1.6;
  text-align: right;
  margin-top: 40px;
}
.footer .recaptcha-text a {
  color: var(--white-color);
}

.fv {
  width: 100%;
  min-height: clamp(630px, 48.6vw, 710px);
  overflow: hidden;
  position: relative;
}
@media (max-width: 1024px) {
  .fv {
    margin-top: 70px;
    min-height: 550px;
  }
}
@media (max-width: 768px) {
  .fv {
    height: 560px;
    min-height: unset;
  }
}
.fv-inner {
  max-width: 1600px;
  width: 100%;
  margin-inline: auto;
  min-height: inherit;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .fv-inner {
    height: 100%;
    min-height: unset;
  }
}
.fv-pct {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  height: 100%;
}
.fv-pct img {
  height: 100%;
}
.fv-content {
  position: relative;
  z-index: 3;
  width: min(65.5vw, 944px);
  margin-left: clamp(32px, 6vw, 86px);
}
@media (max-width: 1024px) {
  .fv-content {
    width: min(88vw, 760px);
    margin-left: 30px;
  }
}
@media (max-width: 768px) {
  .fv-content {
    width: 100%;
    margin-left: 0;
    padding-inline: 16px;
  }
}
.fv-circle {
  position: absolute;
  width: clamp(520px, 70vw, 944px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media (max-width: 1280px) {
  .fv-circle {
    transform: translate(-50%, -50%) scale(1.08);
  }
}
@media (max-width: 1024px) {
  .fv-circle {
    width: clamp(620px, 76vw, 820px);
    top: 94%;
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 768px) {
  .fv-circle {
    width: clamp(360px, 84vw, 520px);
    top: 190px;
  }
}
@media (max-width: 499px) {
  .fv-circle {
    top: 160px;
  }
}
.fv-text {
  position: relative;
  z-index: 2;
  width: min(57.6vw, 830px);
  margin-inline: auto;
  padding-top: clamp(40px, 3.4vw, 64px);
  text-align: center;
}
@media (max-width: 1024px) {
  .fv-text {
    width: min(72vw, 720px);
    padding-top: 48px;
  }
}
@media (max-width: 768px) {
  .fv-text {
    width: 100%;
  }
}
.fv-copy {
  font-size: clamp(1.5rem, 2.2vw, 1.875rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  display: inline-block;
  text-align: center;
  padding-inline: 1em;
  position: relative;
  margin-bottom: 18px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .fv-copy {
    font-size: clamp(1.5rem, 2vw, 1.6rem);
    letter-spacing: 0.04em;
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .fv-copy {
    font-size: clamp(1.4rem, 3.2vw, 1.8rem);
    line-height: 1.4;
    margin-bottom: 12px;
  }
}
@media (max-width: 499px) {
  .fv-copy {
    font-size: clamp(1rem, 3.2vw, 1.4rem);
  }
}
.fv-copy::before, .fv-copy::after {
  position: absolute;
  content: "";
  width: 2rem;
  height: 3px;
  bottom: 15%;
  background-color: var(--text-lightgreen);
}
@media (max-width: 1024px) {
  .fv-copy::before, .fv-copy::after {
    width: 1.5rem;
  }
}
@media (max-width: 499px) {
  .fv-copy::before, .fv-copy::after {
    width: 1.1rem;
  }
}
.fv-copy::before {
  left: 0;
  transform: translateY(-50%) rotate(50deg);
}
.fv-copy::after {
  right: 0;
  transform: translateY(-50%) rotate(-50deg);
}
.fv-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  margin-bottom: clamp(28px, 2.5vw, 40px);
  position: relative;
}
@media (max-width: 1024px) {
  .fv-title {
    gap: 4px;
    margin-bottom: 28px;
  }
}
@media (max-width: 768px) {
  .fv-title {
    gap: 10px;
    margin-bottom: 48px;
    display: inline-flex;
  }
}
@media (max-width: 499px) {
  .fv-title {
    margin-top: 10px;
    gap: 16px;
  }
}
.fv-title-sub {
  font-size: clamp(2.75rem, 4.4vw, 4rem);
  line-height: 1;
}
@media (max-width: 1024px) {
  .fv-title-sub {
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    line-height: 1.1;
  }
}
@media (max-width: 768px) {
  .fv-title-sub {
    font-size: clamp(1.9rem, 5vw, 2.8rem);
    line-height: 1.15;
    text-align: center;
  }
}
@media (max-width: 499px) {
  .fv-title-sub {
    font-size: clamp(1.5rem, 5vw, 2.8rem);
  }
}
.fv-title-small {
  font-size: clamp(1.875rem, 2.5vw, 2.25rem);
  letter-spacing: 0.1em;
}
@media (max-width: 1024px) {
  .fv-title-small {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
  }
}
@media (max-width: 1024px) {
  .fv-title-small {
    font-size: 0.8em;
  }
}
.fv-title-main {
  display: inline-block;
  position: relative;
  z-index: 1;
  width: min(30vw, 520px);
}
@media (max-width: 1024px) {
  .fv-title-main {
    width: clamp(320px, 42vw, 470px);
  }
}
@media (max-width: 768px) {
  .fv-title-main {
    width: clamp(300px, 72vw, 420px);
  }
}
@media (max-width: 499px) {
  .fv-title-main {
    width: 260px;
  }
}
.fv-title-main img {
  width: 100%;
  display: block;
}
.fv-title-main::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3px;
  transform: translateX(-50%);
  width: 100%;
  height: 35px;
  background: #FFED00;
  z-index: -1;
}
@media (max-width: 1024px) {
  .fv-title-main::after {
    height: 26px;
    bottom: -2px;
  }
}
.fv-stamp {
  position: absolute;
  top: clamp(-114px, -7vw, -90px);
  left: clamp(-121px, -7vw, -90px);
  z-index: 4;
  width: clamp(120px, 10vw, 160px);
  aspect-ratio: 1/1;
}
@media (max-width: 1024px) {
  .fv-stamp {
    width: clamp(90px, 11vw, 120px);
    top: clamp(-72px, -7vw, -52px);
    left: clamp(-70px, -5vw, -48px);
  }
}
@media (max-width: 768px) {
  .fv-stamp {
    width: clamp(58px, 13vw, 82px);
    top: clamp(-58px, -7vw, -42px);
    left: clamp(-82px, -10vw, -58px);
  }
}
@media (max-width: 499px) {
  .fv-stamp {
    width: 55px;
    top: 24px;
    left: -27px;
  }
}
.fv-stamp img {
  width: 100%;
  display: block;
}
.fv-stamp-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
  color: var(--text-red);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  white-space: nowrap;
  font-size: clamp(2rem, 2.5vw, 2.25rem);
}
@media (max-width: 1024px) {
  .fv-stamp-text {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .fv-stamp-text {
    font-size: 1.1rem;
  }
}
@media (max-width: 499px) {
  .fv-stamp-text {
    font-size: 0.8rem;
  }
}
.fv-point {
  position: relative;
  z-index: 3;
  background: var(--white-color);
  width: min(57.6vw, 830px);
  max-width: 830px;
  border-radius: 0 15px 15px 0;
  box-shadow: 3px 4px 15px var(--shadow-color);
}
@media (max-width: 1024px) {
  .fv-point {
    width: min(70vw, 680px);
  }
}
@media (max-width: 768px) {
  .fv-point {
    width: min(97vw, 680px);
  }
}
@media (max-width: 499px) {
  .fv-point {
    width: 92%;
    padding: 12px 8px;
    gap: 6px;
  }
}
.fv-point-label {
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--orange-color);
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
  z-index: 2;
  position: absolute;
  width: clamp(105px, 9.5vw, 150px);
  font-size: clamp(0.75rem, 1.1vw, 1.1rem);
  left: clamp(18px, 2.5vw, 36px);
  bottom: clamp(34px, 4vw, 48px);
}
@media (max-width: 1024px) {
  .fv-point-label {
    width: 92px;
    font-size: 0.75rem;
    left: 12px;
  }
}
@media (max-width: 499px) {
  .fv-point-label {
    width: 78px;
    font-size: 0.68rem;
    left: 8px;
    bottom: 60px;
  }
}
.fv-point-label::after {
  content: "";
  position: absolute;
  right: clamp(-18px, -1.3vw, -12px);
  bottom: clamp(10px, 1.3vw, 21px);
  width: clamp(30px, 3vw, 52px);
  height: clamp(24px, 2.5vw, 42px);
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: rotate(28deg);
  background: var(--orange-color);
}
@media (max-width: 499px) {
  .fv-point-label::after {
    right: -10px;
    bottom: 8px;
    width: 18px;
    height: 18px;
  }
}
.fv-point-list {
  display: flex;
  width: clamp(480px, 42vw, 600px);
  justify-content: flex-end;
  margin-left: auto;
  padding-block: 20px;
}
@media (max-width: 1024px) {
  .fv-point-list {
    width: calc(100% - 120px);
    padding-block: 16px;
  }
}
@media (max-width: 499px) {
  .fv-point-list {
    margin-left: 72px;
    width: calc(100% - 72px);
  }
}
.fv-point-list li {
  flex: 1;
  min-width: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border-gray);
}
.fv-point-list li:last-of-type {
  border-right: none;
}
.fv-point-num {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--orange-color);
  font-size: clamp(1.5rem, 1.8vw, 1.875rem);
}
.fv-point-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.fv-point-green {
  color: var(--text-lightgreen);
  font-size: clamp(1.4rem, 2.08vw, 1.875rem);
  font-weight: bold;
}
@media (max-width: 1024px) {
  .fv-point-green {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .fv-point-green {
    font-size: 1.2rem;
    line-height: 1.2;
  }
}
@media (max-width: 499px) {
  .fv-point-green {
    font-size: 1rem;
    line-height: 1.2;
  }
}
.fv-point-black {
  color: var(--text-color);
  font-size: clamp(1rem, 1.67vw, 1.5rem);
  font-weight: 500;
}
@media (max-width: 1024px) {
  .fv-point-black {
    font-size: 1.1rem;
  }
}
@media (max-width: 768px) {
  .fv-point-black {
    font-size: 1rem;
  }
}
@media (max-width: 499px) {
  .fv-point-black {
    font-size: 0.875rem;
  }
}
.fv-service-list {
  position: relative;
  z-index: 3;
  width: clamp(520px, 60vw, 860px);
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 28px auto 0 20px;
}
@media (max-width: 1024px) {
  .fv-service-list {
    width: min(72vw, 700px);
    gap: 12px;
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .fv-service-list {
    width: 100%;
    margin: 20px 0 0;
    gap: 6px;
    padding-inline: 16px;
  }
}
.fv-service-list li {
  width: 25%;
  flex: 1;
  background: var(--green-gradient);
  height: 63px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  color: var(--white-color);
  border-radius: 15px;
}
@media (max-width: 1024px) {
  .fv-service-list li {
    height: 54px;
    font-size: 1.1rem;
    border-radius: 12px;
  }
}
@media (max-width: 768px) {
  .fv-service-list li {
    width: auto;
    flex: 1;
    height: 48px;
    font-size: 1rem;
    border-radius: 10px;
  }
}
@media (max-width: 499px) {
  .fv-service-list li {
    font-size: 0.875rem;
  }
}
.fv-mask {
  position: absolute;
  width: 100%;
  height: 71px;
  background: var(--white-color);
  bottom: 0;
  left: 0;
  z-index: 1;
}
@media (max-width: 1024px) {
  .fv-mask {
    height: 40px;
  }
}
.fv-worker {
  position: absolute;
  right: 0;
  bottom: 70px;
  z-index: 10;
  width: clamp(330px, 40vw, 596px);
  max-width: 596px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .fv-worker {
    width: clamp(220px, 30vw, 340px);
    right: -30px;
    bottom: 39px;
  }
}
@media (max-width: 768px) {
  .fv-worker {
    display: none;
  }
}
.fv-worker img {
  width: 100%;
  height: 100%;
}

.trouble {
  padding-top: 80px;
  text-align: center;
  /* タイトル */
}
@media (max-width: 1024px) {
  .trouble {
    padding-top: 40px;
  }
}
@media (max-width: 768px) {
  .trouble {
    padding-top: 20px;
  }
}
.trouble-inner {
  max-width: 1100px;
  margin-inline: auto;
}
.trouble-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  color: var(--white-color);
  font-weight: bold;
  background: var(--green-gradient);
  display: inline-block;
  padding: 0.15em 2.5em;
  border-radius: 20px;
  position: relative;
}
@media (max-width: 1024px) {
  .trouble-title {
    font-size: clamp(2rem, 3.4vw, 2.6rem);
    padding-inline: 2em;
    border-radius: 16px;
  }
}
@media (max-width: 768px) {
  .trouble-title {
    font-size: clamp(1.4rem, 4.8vw, 1.8rem);
    padding: 0.3em 2.2em;
    white-space: nowrap;
    border-radius: 12px;
  }
}
@media (max-width: 499px) {
  .trouble-title {
    padding: 0.35em 1.4em;
  }
}
.trouble-title::before, .trouble-title::after {
  position: absolute;
  content: "";
  width: 3rem;
  height: 3px;
  top: 54%;
  background-color: var(--white-color);
}
@media (max-width: 768px) {
  .trouble-title::before, .trouble-title::after {
    width: 1.8rem;
  }
}
@media (max-width: 499px) {
  .trouble-title::before, .trouble-title::after {
    width: 1.5rem;
  }
}
.trouble-title::before {
  left: 39px;
  transform: translateY(-50%) rotate(50deg);
}
@media (max-width: 1024px) {
  .trouble-title::before {
    left: 16px;
  }
}
@media (max-width: 768px) {
  .trouble-title::before {
    left: 18px;
  }
}
@media (max-width: 499px) {
  .trouble-title::before {
    left: 3px;
  }
}
.trouble-title::after {
  right: 39px;
  transform: translateY(-50%) rotate(-50deg);
}
@media (max-width: 1024px) {
  .trouble-title::after {
    right: 16px;
  }
}
@media (max-width: 768px) {
  .trouble-title::after {
    right: 18px;
  }
}
@media (max-width: 499px) {
  .trouble-title::after {
    right: 3px;
  }
}
.trouble-list {
  width: min(100%, 760px);
  margin-inline: auto;
  margin-bottom: 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(12px, 1.4vw, 20px) clamp(14px, 1.6vw, 24px);
}
@media (max-width: 1024px) {
  .trouble-list {
    width: min(100%, 550px);
  }
}
.trouble-item {
  height: clamp(42px, 4.5vw, 65px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.8vw, 40px);
  background-color: var(--white-color);
  border-radius: 10px;
  box-shadow: 0 5px 20px var(--shadow-color);
}
.trouble-item:nth-child(1), .trouble-item:nth-child(3) {
  grid-column: 1/span 6;
}
.trouble-item:nth-child(2), .trouble-item:nth-child(4) {
  grid-column: 7/span 6;
}
.trouble-item:nth-child(5) {
  grid-column: 4/span 6;
  justify-self: center;
  width: 100%;
  z-index: 2;
}
.trouble-item span {
  font-size: clamp(0.75rem, 1.3vw, 1.25rem);
  white-space: nowrap;
}
.trouble-item img {
  width: clamp(24px, 3.4vw, 50px);
  height: clamp(24px, 3.4vw, 50px);
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.trouble-images {
  position: relative;
  width: min(100%, 1100px);
  height: clamp(220px, 24vw, 300px);
  margin-inline: auto;
  margin-top: clamp(-8px, -0.8vw, -4px);
}
@media (max-width: 768px) {
  .trouble-images {
    margin-top: 24px;
    height: 180px;
  }
}
.trouble-image {
  position: absolute;
  top: 0;
  width: clamp(230px, 28vw, 330px);
}
@media (max-width: 768px) {
  .trouble-image {
    width: clamp(200px, 26vw, 300px);
  }
}
@media (max-width: 499px) {
  .trouble-image {
    width: 42%;
  }
}
.trouble-image img {
  width: 100%;
  display: block;
}
.trouble-image-left {
  left: 0;
  transform: rotate(-5deg);
  transform-origin: center;
}
.trouble-image-right {
  right: 0;
  transform: rotate(5deg);
  transform-origin: center;
}
.trouble-divider {
  position: absolute;
  left: 50%;
  top: clamp(50px, 6vw, 70px);
  transform: translateX(-50%);
  width: 1px;
  height: clamp(90px, 10vw, 120px);
  background: var(--text-color);
}
@media (max-width: 1024px) {
  .trouble-divider {
    top: 25px;
    height: 80px;
  }
}
@media (max-width: 499px) {
  .trouble-divider {
    top: 25px;
    height: 60px;
  }
}

.reason {
  padding-block: 70px;
  text-align: center;
  position: relative;
}
@media (max-width: 1024px) {
  .reason {
    padding-block: 50px;
  }
}
.reason::before {
  content: "";
  position: absolute;
  top: 266px;
  left: 0;
  bottom: 0;
  width: 100%;
  background: var(--bg-beige);
  -webkit-clip-path: polygon(0 6%, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 6%, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}
@media (max-width: 1024px) {
  .reason::before {
    top: 190px;
    -webkit-clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 100%);
  }
}
@media (max-width: 1024px) {
  .reason::before {
    top: 175px;
    -webkit-clip-path: polygon(0 3%, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 3%, 100% 0, 100% 100%, 0 100%);
  }
}
@media (max-width: 499px) {
  .reason::before {
    top: 160px;
    -webkit-clip-path: polygon(0 2%, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 2%, 100% 0, 100% 100%, 0 100%);
  }
}
.reason .reason-title, .reason .reason-list {
  position: relative;
  z-index: 1;
}
.reason .reason-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .reason .reason-title {
    font-size: clamp(2rem, 3.4vw, 2.6rem);
    margin-bottom: 24px;
  }
}
@media (max-width: 768px) {
  .reason .reason-title {
    font-size: clamp(1.4rem, 4.8vw, 1.8rem);
  }
}
.reason .reason-title .title-orange {
  display: inline-block;
  color: var(--orange-color);
}
.reason-icon {
  max-width: 900px;
  margin: 0 auto -60px;
  position: relative;
  display: flex;
  justify-content: flex-start;
  z-index: -1;
}
.reason-icon img {
  width: 100%;
  max-width: 400px;
  display: block;
  transform: rotate(-6deg);
}
@media (max-width: 1024px) {
  .reason-icon img {
    max-width: 280px;
  }
}
@media (max-width: 768px) {
  .reason-icon img {
    max-width: 250px;
  }
}
@media (max-width: 499px) {
  .reason-icon img {
    max-width: 200px;
  }
}
.reason-list {
  max-width: 888px;
  margin-inline: auto;
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 88px;
}
@media (max-width: 1024px) {
  .reason-list {
    max-width: 760px;
    gap: 72px;
  }
}
@media (max-width: 768px) {
  .reason-list {
    max-width: 500px;
    gap: 40px;
    padding-top: 90px;
  }
}
.reason-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .reason-item {
    flex-direction: column;
    gap: 20px;
  }
}
.reason-inner {
  width: 63%;
  background: var(--white-color);
  border-radius: 10px;
  text-align: left;
}
@media (max-width: 768px) {
  .reason-inner {
    width: 100%;
  }
}
.reason-pct {
  width: 42%;
  height: 225px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .reason-pct {
    width: 100%;
  }
}
.reason-pct img {
  height: 100%;
}
@media (max-width: 768px) {
  .reason-item--left {
    flex-direction: column-reverse;
  }
}
.reason-item--left .reason-inner {
  transform: translateY(39px);
  padding: 32px 94px 32px 48px;
}
@media (max-width: 1024px) {
  .reason-item--left .reason-inner {
    padding: 32px 123px 32px 32px;
  }
}
@media (max-width: 768px) {
  .reason-item--left .reason-inner {
    transform: translateY(0);
    padding: 20px 40px 32px 20px;
  }
}
@media (max-width: 499px) {
  .reason-item--left .reason-inner {
    padding: 20px 20px 24px 20px;
  }
}
.reason-item--left .reason-pct {
  margin-left: -40px;
}
@media (max-width: 768px) {
  .reason-item--left .reason-pct {
    margin-left: 0;
  }
}
.reason-item--right .reason-inner {
  padding: 32px 48px 32px 94px;
}
@media (max-width: 1024px) {
  .reason-item--right .reason-inner {
    padding: 32px 32px 32px 123px;
  }
}
@media (max-width: 768px) {
  .reason-item--right .reason-inner {
    padding: 20px 20px 32px 20px;
  }
}
@media (max-width: 499px) {
  .reason-item--right .reason-inner {
    padding: 20px 20px 24px 20px;
  }
}
.reason-item--right .reason-pct {
  transform: translateY(39px);
  margin-right: -40px;
}
@media (max-width: 768px) {
  .reason-item--right .reason-pct {
    margin-right: 0;
    transform: translateY(0);
  }
}
.reason h3 {
  color: var(--orange-color);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .reason h3 {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
  }
}
.reason-text {
  font-size: 1rem;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .reason-text {
    font-size: clamp(0.875rem, 1.4vw, 1rem);
  }
}
.reason .point {
  color: var(--orange-color);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 768px) {
  .reason .point {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
  }
}
.reason .point::after {
  content: "";
  max-width: 317px;
  background: var(--orange-color);
  height: 2px;
  flex: 1;
}
.reason .white-label {
  position: absolute;
  right: 60px;
  bottom: -35px;
  width: 150px;
  height: 150px;
  border: 3px solid var(--orange-color);
  border-radius: 50%;
  background: #fff;
  color: var(--orange-color);
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .reason .white-label {
    width: 90px;
    height: 90px;
    font-size: 1rem;
    right: 48px;
    bottom: -22px;
  }
}
@media (max-width: 768px) {
  .reason .white-label {
    width: 90px;
    height: 90px;
    font-size: 1rem;
    right: 40px;
    bottom: 16px;
  }
}
@media (max-width: 499px) {
  .reason .white-label {
    width: 72px;
    height: 72px;
    font-size: 0.75rem;
    right: 16px;
    bottom: 24px;
  }
}
.reason .orange-label {
  position: absolute;
  right: -46px;
  bottom: -75px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #fff;
  color: var(--white-color);
  background: var(--orange-color);
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .reason .orange-label {
    width: 90px;
    height: 90px;
    font-size: 1rem;
    right: -25px;
    bottom: -22px;
  }
}
@media (max-width: 768px) {
  .reason .orange-label {
    width: 90px;
    height: 90px;
    font-size: 1rem;
    right: 16px;
    bottom: 10px;
  }
}
@media (max-width: 499px) {
  .reason .orange-label {
    width: 72px;
    height: 72px;
    font-size: 0.75rem;
  }
}
.reason-item--04 {
  display: flex;
  align-items: flex-start;
}
.reason-item--04 .reason-pct {
  width: 42%;
  margin-right: -40px;
  height: 225px;
  position: relative;
  z-index: 1;
  transform: translateY(39px);
}
@media (max-width: 768px) {
  .reason-item--04 .reason-pct {
    width: 100%;
    margin-right: 0px;
    transform: translateY(0);
  }
}
.reason-item--04 .reason-pct img {
  height: 100%;
}
.reason-item--04 .reason-four {
  width: 63%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 768px) {
  .reason-item--04 .reason-four {
    width: 100%;
  }
}
.reason-item--04 .reason-inner {
  width: 100%;
  padding: 32px 48px 32px 98px;
}
@media (max-width: 768px) {
  .reason-item--04 .reason-inner {
    padding: 20px 20px 32px 20px;
  }
}
@media (max-width: 499px) {
  .reason-item--04 .reason-inner {
    padding: 20px 20px 24px 20px;
  }
}
.reason-item--04 .reason-img {
  display: flex;
  gap: 20px;
  margin-left: 98px;
}
@media (max-width: 768px) {
  .reason-item--04 .reason-img {
    margin-left: 0;
  }
}
.reason-item--04 .reason-img-item {
  width: calc(50% - 8px);
  height: 140px;
  overflow: hidden;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .reason-item--04 .reason-img-item {
    height: 120px;
  }
}
.reason-item--04 .reason-img-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.reason-text--narrow {
  width: 79%;
}

.cta {
  background: var(--orange-color);
  padding: clamp(40px, 5vw, 56px) 4% clamp(40px, 4vw, 48px);
  text-align: center;
}
@media (max-width: 768px) {
  .cta {
    padding: 40px 3%;
  }
}
.cta-phrase {
  color: var(--white-color);
  font-weight: bold;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  line-height: 1;
  margin-bottom: 20px;
  position: relative;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  padding-inline: clamp(2rem, 4vw, 3rem);
  flex-wrap: nowrap;
}
@media (max-width: 768px) {
  .cta-phrase {
    font-size: clamp(0.9rem, 2.6vw, 1.05rem);
    padding-inline: 1.5rem;
    gap: 4px;
    margin-bottom: 16px;
  }
}
@media (max-width: 499px) {
  .cta-phrase {
    flex-direction: column;
    gap: 10px;
    font-size: 1.1rem;
    line-height: 1.5;
    padding-inline: 0;
  }
}
.cta-phrase::before, .cta-phrase::after {
  position: absolute;
  content: "";
  width: clamp(2rem, 4vw, 3rem);
  height: 2px;
  top: 54%;
  background-color: var(--white-color);
}
@media (max-width: 768px) {
  .cta-phrase::before, .cta-phrase::after {
    width: 1.5rem;
  }
}
@media (max-width: 499px) {
  .cta-phrase::before, .cta-phrase::after {
    display: none;
  }
}
.cta-phrase::before {
  left: -8px;
  transform: translateY(-50%) rotate(50deg);
}
@media (max-width: 768px) {
  .cta-phrase::before {
    left: -4px;
  }
}
.cta-phrase::after {
  right: -8px;
  transform: translateY(-50%) rotate(-50deg);
}
@media (max-width: 768px) {
  .cta-phrase::after {
    right: -4px;
  }
}
.cta-label {
  background: var(--white-color);
  color: var(--orange-color);
  padding: 8px;
}
@media (max-width: 768px) {
  .cta-label {
    padding: 6px 8px;
    line-height: 1.2;
  }
}
.cta-text {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  color: var(--white-color);
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .cta-text {
    margin-bottom: 20px;
    font-size: clamp(0.875rem, 1vw, 1rem);
  }
}
.cta-box {
  background: var(--white-color);
  max-width: 1200px;
  margin-inline: auto;
  border-radius: 20px;
  overflow: hidden;
}
.cta-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
  padding-block: clamp(32px, 4vw, 48px) 32px;
}
@media (max-width: 768px) {
  .cta-inner {
    gap: 20px;
    padding-inline: 3%;
  }
}
@media (max-width: 499px) {
  .cta-inner {
    flex-direction: column;
  }
}
.cta-info {
  width: 45%;
  max-width: 480px;
  color: var(--orange-color);
}
@media (max-width: 768px) {
  .cta-info {
    width: 52%;
    max-width: none;
  }
}
@media (max-width: 499px) {
  .cta-info {
    width: 90%;
  }
}
.cta-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  text-align: left;
  font-weight: bold;
  position: relative;
  padding-bottom: 16px;
}
@media (max-width: 768px) {
  .cta-title {
    font-size: clamp(1.25rem, 2.6vw, 1.5rem);
  }
}
@media (max-width: 499px) {
  .cta-title {
    text-align: center;
  }
}
.cta-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--text-color);
}
.cta-tel {
  display: flex;
  align-items: center;
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  gap: clamp(8px, 1.5vw, 16px);
  font-weight: bold;
  justify-content: flex-start;
  padding-top: 16px;
  margin-bottom: 16px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .cta-tel {
    font-size: clamp(1.25rem, 4vw, 1.7rem);
  }
}
@media (max-width: 499px) {
  .cta-tel {
    justify-content: center;
  }
}
.cta-tel a {
  color: var(--orange-color);
  transition: all 0.5s;
}
.cta-tel a:hover {
  opacity: 0.7;
}
.cta-time {
  font-size: clamp(0.9rem, 1.5vw, 1.25rem);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}
@media (max-width: 768px) {
  .cta-time {
    font-size: clamp(0.75rem, 1.4vw, 1rem);
    gap: 10px;
  }
}
@media (max-width: 499px) {
  .cta-time {
    justify-content: center;
  }
}
.cta-time span {
  background: var(--orange-color);
  color: var(--white-color);
  padding: 4px 8px;
}
.cta-tel-icon {
  width: clamp(34px, 4vw, 50px);
  height: clamp(34px, 4vw, 50px);
  background: url("../img/tel-icon2.webp") no-repeat center/contain;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .cta-tel-icon {
    width: clamp(28px, 3.5vw, 42px);
    height: clamp(28px, 3.5vw, 42px);
  }
}
.cta-btns {
  display: grid;
  gap: 20px;
  width: 35%;
  padding-block: 16px;
}
@media (max-width: 768px) {
  .cta-btns {
    width: 44%;
    flex-shrink: 0;
  }
}
@media (max-width: 499px) {
  .cta-btns {
    width: 90%;
  }
}
@media (max-width: 499px) {
  .cta-btns {
    padding-block: 0;
  }
}
.cta-link {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  height: clamp(72px, 8vw, 95px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-radius: 6px;
  color: var(--white-color);
  font-weight: 700;
  box-shadow: 5px 8px 15px var(--shadow-color);
  transition: all 0.5s;
}
@media (max-width: 768px) {
  .cta-link {
    gap: 8px;
    height: 60px;
    font-size: 1rem;
  }
}
.cta-link:hover {
  opacity: 0.7;
}
.cta::before {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
}
.cta-lead {
  font-size: clamp(1rem, 2vw, 1.5rem);
  padding-block: 16px;
  background: var(--accent-color);
}
@media (max-width: 499px) {
  .cta-lead {
    font-size: 0.75rem;
  }
}

.btn-line {
  background-color: var(--green-color);
}
.btn-line::before {
  background: url("../img/line-icon.webp") no-repeat center/contain;
}

.btn-mail {
  background: var(--blue-color);
}
.btn-mail::before {
  background: url("../img/mail-icon.webp") no-repeat center/contain;
}

.btn-line::before,
.btn-mail::before {
  width: clamp(40px, 5vw, 60px);
  height: clamp(40px, 5vw, 60px);
}

.review {
  padding-block: 70px;
  text-align: center;
  background: url("../img/review.webp") center/cover no-repeat;
}
@media (max-width: 768px) {
  .review {
    padding-block: 60px;
  }
}
.review-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: bold;
  letter-spacing: 0.1em;
  display: flex;
  gap: 20px;
  flex-direction: column;
  align-items: center;
  margin-bottom: 56px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .review-title {
    gap: 16px;
    margin-bottom: 48px;
  }
}
@media (max-width: 768px) {
  .review-title {
    gap: 14px;
    margin-bottom: 40px;
    line-height: 1.5;
  }
}
.review-icon {
  display: block;
  width: clamp(60px, 8vw, 80px);
  aspect-ratio: 1/1;
  background: url("../img/review-icon.webp") no-repeat center/contain;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .review .ti-widget,
.review .ti-reviews-container-wrapper,
.review .ti-reviews-container {
    max-width: 760px !important;
    margin-inline: auto !important;
  }
}
@media (max-width: 768px) {
  .review .ti-widget,
.review .ti-reviews-container-wrapper,
.review .ti-reviews-container {
    max-width: 500px !important;
  }
}
.review .google-review .ti-reviews-container {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px;
}
@media (max-width: 1024px) {
  .review .google-review .ti-reviews-container {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 760px;
    margin-inline: auto !important;
  }
}
@media (max-width: 768px) {
  .review .google-review .ti-reviews-container {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
}
.review .google-review .ti-review-item {
  height: 100%;
}
.review .google-review .ti-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.menu {
  padding-block: 85px 64px;
  text-align: center;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .menu {
    padding-block: 60px 40px;
  }
}
.menu-title {
  color: var(--orange-color);
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  margin-bottom: 20px;
}
.menu-phrase {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
}
.menu-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .menu-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 32px;
    max-width: 700px;
    margin-inline: auto;
  }
}
@media (max-width: 499px) {
  .menu-list {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }
}
.menu-item {
  border: 3px solid var(--border-orange);
  padding: 16px 10px 20px;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.menu-item img {
  height: 190px;
  border-radius: 24px;
}
.menu-item-title {
  font-size: 1.5rem;
  color: var(--orange-color);
  font-weight: bold;
}
.menu-text {
  text-align: left;
}

.price {
  padding-block: 56px 106px;
  background: var(--bg-cream);
}
@media (max-width: 768px) {
  .price {
    padding-bottom: 86px;
  }
}
@media (max-width: 499px) {
  .price {
    padding-bottom: 66px;
  }
}
.price-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(40px, 5vw, 56px);
}
.price-icon {
  display: block;
  width: clamp(150px, 24vw, 223px);
  height: auto;
  aspect-ratio: 223/111;
  background: url("../img/price-title-icon.webp") no-repeat center/contain;
  position: relative;
}
.price-title-inner {
  font-size: clamp(2rem, 3.4vw, 2.5rem);
  font-weight: bold;
  letter-spacing: 0.1em;
  padding-block: clamp(16px, 2.4vw, 24px);
  position: relative;
}
.price-title-inner::before, .price-title-inner::after {
  content: "";
  position: absolute;
  left: 50%;
  width: min(80vw, 550px);
  height: 2px;
  background: var(--text-green);
  transform: translateX(-50%);
}
.price-title-inner::before {
  top: 0;
}
.price-title-inner::after {
  bottom: 0;
}
.price-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-inline: auto;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .price-list {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
  }
}
@media (max-width: 499px) {
  .price-list {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}
.price-item {
  background: var(--white-color);
  box-shadow: 4px 4px 8px var(--shadow-color);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.price-card {
  border: 1px solid var(--border-orange);
  display: flex;
  flex-direction: column;
  text-align: center;
  border-radius: 20px;
  overflow: hidden;
}
.price-card-main {
  background: var(--bg-white);
  padding: 10px 10px 0 10px;
}
.price-card-title {
  display: flex;
  gap: clamp(8px, 1.6vw, 16px);
  justify-content: center;
  align-items: center;
  padding-block: clamp(14px, 2vw, 24px);
}
.price-card-title span {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--text-green);
}
.price-card-title img {
  width: clamp(32px, 4vw, 50px);
  height: clamp(32px, 4vw, 50px);
  flex-shrink: 0;
}
.price-card-label {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--white-color);
  background: var(--text-green);
  padding: clamp(8px, 1.2vw, 10px) 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.4vw, 12px);
}
.price-card-label::before, .price-card-label::after {
  content: "";
  width: clamp(1rem, 2vw, 1.5rem);
  height: 2px;
  background-color: var(--white-color);
}
.price-card-label::before {
  transform: translateY(-50%) rotate(50deg);
}
.price-card-label::after {
  transform: translateY(-50%) rotate(-50deg);
}
.price-card-price {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--orange-color);
  background: var(--bg-green);
  padding-block: clamp(12px, 1.8vw, 16px);
  font-weight: bold;
  line-height: 1.3;
}
.price-other-list {
  padding-block: clamp(14px, 2vw, 20px);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 20px);
}
.price-other-list li {
  list-style: disc;
  margin-left: clamp(0.8rem, 1.6vw, 1rem);
  font-size: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.5;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.price-other-list li::before {
  content: "・";
  position: absolute;
  left: clamp(-18px, -2vw, -24px);
}
.price-last-item {
  display: flex;
  gap: clamp(16px, 2.2vw, 32px);
  justify-content: space-between;
  align-items: center;
  background: var(--white-color);
  padding: clamp(20px, 3vw, 32px) clamp(16px, 2vw, 20px);
  border-radius: 20px;
  box-shadow: 4px 4px 8px var(--shadow-color);
}
@media (max-width: 1024px) {
  .price-last-item {
    max-width: 700px;
    margin-inline: auto;
  }
}
@media (max-width: 768px) {
  .price-last-item {
    gap: 12px;
    padding: 20px 14px;
  }
}
@media (max-width: 499px) {
  .price-last-item {
    max-width: 400px;
    flex-direction: column;
  }
}
.price-last-pct {
  width: 52%;
}
@media (max-width: 768px) {
  .price-last-pct {
    width: 42%;
  }
}
@media (max-width: 499px) {
  .price-last-pct {
    width: 100%;
  }
}
.price-last-pct img {
  height: auto;
}
@media (max-width: 1024px) {
  .price-last-pct img {
    height: 170px;
  }
}
@media (max-width: 768px) {
  .price-last-pct img {
    height: 160px;
  }
}
@media (max-width: 499px) {
  .price-last-pct img {
    height: 150px;
  }
}
.price-last-right {
  width: 48%;
}
@media (max-width: 768px) {
  .price-last-right {
    width: 58%;
  }
}
@media (max-width: 499px) {
  .price-last-right {
    width: 100%;
  }
}
.price-last-title {
  display: grid;
  grid-template-columns: clamp(46px, 6vw, 70px) 1fr;
  align-items: center;
  margin-bottom: clamp(14px, 2vw, 20px);
}
@media (max-width: 499px) {
  .price-last-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
}
@media (max-width: 499px) {
  .price-last-title img {
    width: 42px;
    height: auto;
    flex-shrink: 0;
  }
}
.price-last-lead {
  text-align: center;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--text-green);
}
@media (max-width: 499px) {
  .price-last-lead {
    text-align: left;
  }
}
.price-last-list {
  margin-left: clamp(18px, 2vw, 24px);
  font-size: clamp(1rem, 2vw, 1.5rem);
}
.price-last-list li {
  display: flex;
  gap: clamp(8px, 1.4vw, 16px);
  align-items: center;
  justify-content: flex-start;
  position: relative;
  line-height: 1.5;
}
.price-last-list li::before {
  content: "・";
  position: absolute;
  left: clamp(-18px, -2vw, -24px);
}
.price-last-name {
  width: 60%;
  white-space: nowrap;
}
.price-last-yen {
  width: 40%;
  text-align: left;
  white-space: nowrap;
}

.works {
  padding-block: clamp(64px, 8vw, 100px) clamp(56px, 7vw, 92px);
  text-align: center;
}
.works-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: bold;
  display: inline-block;
  letter-spacing: 0.1em;
  margin-bottom: clamp(32px, 4vw, 46px);
  position: relative;
}
.works-title::after {
  position: absolute;
  content: "";
  width: clamp(180px, 24vw, 288px);
  height: 4px;
  background: var(--orange-color);
  bottom: -19px;
  left: 50%;
  transform: translateX(-50%);
}
.works-lead {
  font-size: clamp(1.25rem, 3vw, 2.25rem);
  font-weight: bold;
  color: var(--white-color);
  background: var(--orange-color);
  letter-spacing: 0.1em;
  padding: clamp(10px, 1.5vw, 16px) clamp(48px, 6vw, 70px);
  border-radius: 100px;
  margin-bottom: clamp(32px, 4vw, 43px);
  position: relative;
}
@media (max-width: 768px) {
  .works-lead {
    font-size: clamp(1rem, 4vw, 1.25rem);
    line-height: 1.5;
    padding: 12px 44px;
    letter-spacing: 0.06em;
    margin-bottom: 32px;
    max-width: 700px;
  }
}
@media (max-width: 499px) {
  .works-lead {
    font-size: 0.95rem;
    line-height: 1.5;
    letter-spacing: 0.02em;
    padding: 10px 25px;
    max-width: 400px;
  }
}
.works-lead::before, .works-lead::after {
  position: absolute;
  content: "";
  width: clamp(24px, 3vw, 42px);
  height: clamp(24px, 3vw, 42px);
  border-radius: 999px;
  background: var(--white-color);
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .works-lead::before, .works-lead::after {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 499px) {
  .works-lead::before, .works-lead::after {
    width: 16px;
    height: 16px;
  }
}
.works-lead::before {
  left: 35px;
}
@media (max-width: 768px) {
  .works-lead::before {
    left: 10px;
  }
}
.works-lead::after {
  right: 35px;
}
@media (max-width: 768px) {
  .works-lead::after {
    right: 10px;
  }
}
.works-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 20px;
}
@media (max-width: 768px) {
  .works-list {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin-inline: auto;
    gap: 24px;
  }
}
@media (max-width: 499px) {
  .works-list {
    max-width: 400px;
  }
}
.works-item {
  position: relative;
  background: var(--bg-green);
  padding: 24px 14px 20px;
  border-radius: 20px;
  box-shadow: 0 4px 5px var(--shadow-color);
}
@media (max-width: 768px) {
  .works-item {
    padding-inline: 24px;
  }
}
.works-head {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 18px);
  margin-bottom: 14px;
  max-width: 555px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .works-head {
    gap: 24px;
  }
}
@media (max-width: 499px) {
  .works-head {
    gap: 8px;
  }
}
.works-case {
  width: clamp(56px, 6vw, 70px);
  height: clamp(56px, 6vw, 70px);
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1;
  color: var(--white-color);
  background: var(--bg-label);
  box-shadow: inset 0 0 0 2px var(--white-color), 0 4px 5px var(--shadow-color);
}
@media (max-width: 768px) {
  .works-case {
    width: clamp(48px, 11vw, 58px);
    height: clamp(48px, 11vw, 58px);
  }
}
.works-en, .works-num {
  font-family: var(--font-en);
  font-style: italic;
  line-height: 1;
}
.works-en {
  font-size: clamp(0.75rem, 1vw, 1rem);
}
@media (max-width: 768px) {
  .works-en {
    font-size: clamp(0.625rem, 2vw, 0.75rem);
  }
}
.works-num {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}
@media (max-width: 768px) {
  .works-num {
    font-size: clamp(1rem, 4vw, 1.4rem);
  }
}
.works-name {
  font-size: clamp(1.125rem, 2vw, 1.75rem);
  font-weight: 500;
  flex: 1;
  position: relative;
}
@media (max-width: 768px) {
  .works-name {
    text-align: left;
    font-size: 1.25rem;
    padding-left: 8px;
  }
}
@media (max-width: 499px) {
  .works-name {
    font-size: clamp(1rem, 3.2vw, 1.25rem);
    padding-left: 4px;
  }
}
.works-name::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -13px;
  transform: translateX(-50%);
  width: 90%;
  height: 3px;
  background: var(--bg-label);
}
@media (max-width: 1024px) {
  .works-name::after {
    width: 100%;
  }
}
.works-images {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  max-width: 555px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .works-images {
    justify-content: center;
    gap: 16px;
  }
}
@media (max-width: 499px) {
  .works-images {
    gap: 10px;
  }
}
.works-image-item {
  position: relative;
}
@media (max-width: 768px) {
  .works-image-item {
    width: 50%;
  }
}
.works-image-item img {
  height: clamp(150px, 15vw, 186px);
}

.before {
  background: var(--bg-gray);
  color: var(--white-color);
}

.after {
  background: var(--white-color);
  color: var(--text-color);
}

.before,
.after {
  padding-inline: clamp(8px, 1.5vw, 14px);
  font-size: clamp(0.75rem, 1vw, 1rem);
  line-height: 1.5;
  position: absolute;
  top: 0;
  left: 0;
}

.choose {
  background: linear-gradient(#F5F5F5, #F4FFDD);
  text-align: center;
  padding-block: clamp(56px, 7vw, 68px) clamp(64px, 7vw, 78px);
}
.choose-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: normal;
  position: relative;
  margin-bottom: clamp(56px, 7vw, 79px);
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .choose-title {
    font-size: clamp(1.35rem, 4.6vw, 1.7rem);
    line-height: 1.5;
    letter-spacing: 0.02em;
  }
}
.choose-title::after {
  position: absolute;
  content: "";
  width: clamp(180px, 30vw, 288px);
  height: 4px;
  background: var(--bg-label);
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .choose-title::after {
    bottom: -19px;
  }
}
.choose-title-green {
  color: var(--text-green);
  font-size: clamp(2rem, 3.4vw, 2.5rem);
  font-weight: bold;
}
@media (max-width: 768px) {
  .choose-title-green {
    font-size: clamp(1.6rem, 5.4vw, 1.9rem);
  }
}
.choose-list {
  display: flex;
  flex-direction: column;
  gap: clamp(44px, 6vw, 60px);
  align-items: center;
}
@media (max-width: 768px) {
  .choose-list {
    max-width: 500px;
    margin-inline: auto;
    gap: 32px;
  }
}
.choose-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(20px, 4vw, 48px);
}
@media (max-width: 768px) {
  .choose-item {
    flex-direction: column;
  }
}
.choose-item:nth-child(even) {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .choose-item:nth-child(even) {
    flex-direction: column;
  }
}
.choose-inner {
  width: 44%;
  text-align: left;
}
@media (max-width: 768px) {
  .choose-inner {
    width: 100%;
  }
}
.choose-label {
  color: var(--bg-label);
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid var(--bg-label);
  position: relative;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .choose-label {
    font-size: 0.875rem;
    padding: 3px 8px;
  }
}
.choose-label::before {
  content: "";
  position: absolute;
  left: 37px;
  bottom: -2px;
  width: 11px;
  height: 2px;
  background-color: #f4ffdd;
  z-index: 2;
}
@media (max-width: 768px) {
  .choose-label::before {
    left: 30px;
    width: 9px;
  }
}
.choose-label::after {
  content: "";
  position: absolute;
  left: 36px;
  bottom: -34px;
  width: 1px;
  height: 34px;
  background-color: var(--bg-label);
  transform: rotate(-52deg);
  transform-origin: top;
  z-index: 2;
}
@media (max-width: 768px) {
  .choose-label::after {
    left: 29px;
    height: 28px;
    bottom: -28px;
  }
}
.choose-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(10px, 2vw, 20px);
}
@media (max-width: 768px) {
  .choose-head {
    justify-content: flex-start;
    gap: 10px;
  }
}
.choose-name {
  font-size: clamp(1.2rem, 3.2vw, 2rem);
  color: var(--text-green);
}
@media (max-width: 768px) {
  .choose-name {
    font-size: 1.5rem;
  }
}
.choose-icon {
  width: clamp(56px, 7vw, 83px);
  height: clamp(56px, 7vw, 83px);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .choose-icon {
    width: 52px;
    height: 52px;
  }
}
.choose-text {
  font-size: clamp(0.95rem, 1.6vw, 1.25rem);
}
.choose-image {
  width: 54%;
}
@media (max-width: 768px) {
  .choose-image {
    width: 100%;
  }
}

.question {
  background: var(--background-color);
  padding: clamp(56px, 7vw, 72px) 4%;
  text-align: center;
}
@media (max-width: 768px) {
  .question {
    padding-block: 64px;
  }
}
@media (max-width: 499px) {
  .question {
    padding-block: 56px;
  }
}
.question-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.question-title-jp {
  color: var(--text-color);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: normal;
  letter-spacing: 0.1em;
}
.question-title-en {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--orange-color);
  font-weight: normal;
  letter-spacing: 0.12em;
}
.question-list {
  max-width: 900px;
  margin-inline: auto;
  display: grid;
  gap: clamp(20px, 3vw, 40px);
  text-align: left;
}
.question-item {
  padding: clamp(20px, 3vw, 32px) clamp(18px, 5vw, 48px);
  background: var(--white-color);
  border-radius: 20px;
}
@media (max-width: 768px) {
  .question-item {
    padding: 20px 16px;
  }
}
.question .faq-question, .question .faq-answer {
  display: grid;
  grid-template-columns: clamp(34px, 5vw, 45px) 1fr;
  -moz-column-gap: clamp(12px, 2vw, 20px);
       column-gap: clamp(12px, 2vw, 20px);
  align-items: center;
}
@media (max-width: 768px) {
  .question .faq-question, .question .faq-answer {
    grid-template-columns: 34px 1fr;
  }
}
.question .faq-question {
  margin-bottom: 16px;
}
.question .faq-answer {
  align-items: center;
}
.question .faq-icon {
  width: clamp(34px, 5vw, 45px);
  height: clamp(34px, 5vw, 45px);
  font-size: clamp(1rem, 2vw, 1.25rem);
  border-radius: 50%;
  display: grid;
  place-items: center;
  line-height: 1;
}
.question .faq-icon-q {
  background: var(--orange-color);
  color: var(--white-color);
}
.question .faq-icon-a {
  border: 2px solid var(--orange-color);
  color: var(--orange-color);
}

.contact {
  padding-block: 92px;
  background: var(--bg-cream);
}
@media (max-width: 1024px) {
  .contact {
    padding-block: 60px;
  }
}
.contact-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.contact-title-jp {
  color: var(--text-color);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: normal;
  letter-spacing: 0.1em;
}
.contact-title-en {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--text-green);
  font-weight: normal;
  letter-spacing: 0.12em;
}
.contact-box {
  width: min(100%, 1000px);
  background-color: var(--white-color);
  margin-inline: auto;
  padding: 48px 72px;
  border-radius: 20px;
}
@media (max-width: 1024px) {
  .contact-box {
    padding: 48px 32px;
  }
}
@media (max-width: 768px) {
  .contact-box {
    padding: 40px 24px;
  }
}
@media (max-width: 499px) {
  .contact-box {
    padding: 40px 16px;
  }
}
.contact-box p {
  margin: 0;
}
.contact-box .recaptcha-policy {
  margin-top: 12px;
}
.contact-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: center;
  -moz-column-gap: 48px;
       column-gap: 48px;
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  .contact-row {
    grid-template-columns: 1fr;
    row-gap: 16px;
    margin-bottom: 20px;
  }
}
.contact-row--textarea {
  align-items: start;
}
.contact-label {
  font-weight: 600;
  font-size: 1rem;
}
.contact-input, .contact-select, .contact-textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--border-gray);
  border-radius: 6px;
  background: var(--white-color);
  color: var(--text-color);
  font-size: 1rem;
}
.contact-select {
  color: var(--text-color);
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  padding-right: 48px;
  background-image: url("data:image/svg+xml;utf8,<svg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'><polyline points='5,7 10,12 15,7' fill='none' stroke='%239CA3AF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}
.contact-select option {
  color: var(--text-color);
}
.contact-textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-submit-wrap,
.contact .box {
  text-align: center;
  margin-top: 32px;
}
.contact-submit {
  min-width: 280px;
  padding: 24px 32px;
  border: none;
  border-radius: 999px;
  background-color: var(--orange-color);
  color: var(--white-color);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.5s;
}
@media (max-width: 768px) {
  .contact-submit {
    min-width: 200px;
    padding-block: 16px;
  }
}
.contact-submit:hover {
  opacity: 0.7;
}
.contact .must {
  color: var(--white-color);
  background: var(--orange-color);
  margin-left: 8px;
  padding: 4px 8px;
  font-size: 0.75rem;
}
.contact .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.contact .contact-select.is-placeholder {
  color: var(--text-lightgray);
}
.contact .wpcf7-spinner {
  display: none;
}
.contact .recaptcha-policy {
  font-size: 10px;
  color: #999;
  text-align: right;
  line-height: 1.6;
  margin-top: 12px;
}

.company {
  padding-top: clamp(56px, 7vw, 67px);
  text-align: center;
}
.company-title {
  color: var(--text-green);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: clamp(48px, 7vw, 84px);
  position: relative;
}
.company-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 148px;
  height: 3px;
  background: linear-gradient(90deg, #FBFFFC 0%, #4E7102 50%, #FBFFFC 100%);
}
.company-table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto clamp(56px, 8vw, 93px);
  border-collapse: collapse;
}
@media (max-width: 768px) {
  .company-table {
    max-width: 500px;
  }
}
.company-table tr {
  border-bottom: 1px solid var(--border-gray);
}
@media (max-width: 768px) {
  .company-table tr {
    display: grid;
    grid-template-columns: 1fr;
  }
}
.company-table th,
.company-table td {
  padding: clamp(12px, 2vw, 14px) 12px;
  font-size: clamp(0.95rem, 1.8vw, 1.125rem);
  line-height: 1.7;
  text-align: left;
  vertical-align: top;
}
@media (max-width: 768px) {
  .company-table th,
.company-table td {
    padding: 12px 8px;
  }
}
.company-table th {
  width: 60%;
  color: var(--text-green);
  font-weight: normal;
}
@media (max-width: 768px) {
  .company-table th {
    padding-bottom: 4px;
    width: 100%;
  }
}
.company-table td {
  width: 40%;
}
@media (max-width: 768px) {
  .company-table td {
    padding-top: 4px;
    width: 100%;
  }
}
.company-map {
  width: 100%;
  height: clamp(280px, 45vw, 430px);
}
@media (max-width: 499px) {
  .company-map {
    height: 240px;
  }
}
.company .first-address {
  padding-bottom: 14px;
}

.link {
  background: var(--background-white);
  padding: clamp(32px, 5vw, 48px) clamp(24px, 4vw, 40px);
}
.link-box {
  max-width: 980px;
  margin-inline: auto;
  padding: clamp(24px, 4vw, 40px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--orange-color);
  border-radius: 15px;
  background: var(--white-color);
  position: relative;
  gap: clamp(20px, 3vw, 40px);
}
@media (max-width: 768px) {
  .link-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 24px;
    gap: 22px;
  }
}
.link-box::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 107px;
  background: var(--text-green);
}
@media (max-width: 768px) {
  .link-box::after {
    display: none;
  }
}
.link-left {
  width: 50%;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  position: relative;
}
@media (max-width: 768px) {
  .link-left {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
}
.link-icon {
  width: clamp(56px, 7vw, 88px);
  height: clamp(56px, 7vw, 88px);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .link-icon {
    width: 48px;
    height: 48px;
  }
}
.link-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.link-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.link-phrase-sub {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  font-weight: bold;
}
@media (max-width: 768px) {
  .link-phrase-sub {
    font-size: 0.9rem;
  }
}
.link-phrase {
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  font-weight: bold;
  line-height: 1.35;
  letter-spacing: 0.06em;
}
.link-phrase span {
  color: var(--text-green);
}
@media (max-width: 768px) {
  .link-phrase {
    font-size: clamp(1.35rem, 4vw, 1.75rem);
  }
}
.link-btn {
  min-width: clamp(220px, 28vw, 350px);
  padding: clamp(16px, 2vw, 22px) 24px;
  background: var(--text-green);
  color: var(--white-color);
  text-align: center;
  margin-inline: auto;
  border-radius: 15px;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: bold;
  letter-spacing: 10%;
  transition: all 0.5s;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .link-btn {
    width: 100%;
    max-width: 320px;
    min-width: 0;
    padding: 16px 20px;
    font-size: 1rem;
  }
}
.link-btn::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--white-color);
  border-right: 2px solid var(--white-color);
  transform: rotate(45deg);
  position: absolute;
  right: 24px;
}
@media (max-width: 768px) {
  .link-btn::after {
    right: 15px;
  }
}
.link-btn:hover {
  opacity: 0.8;
}
/*# sourceMappingURL=main.css.map */