@charset "UTF-8";
/* --------------------------------------------------------

 layout.css

---------------------------------------------------------*/
.inner {
  max-width: var(--max-width);
  min-width: 320px;
  padding-left: clamp(0.938rem, 3.333%, var(--space-40));
  padding-right: clamp(0.938rem, 3.333%, var(--space-40));
  margin: 0 auto;
}
.bg-pattern {
  background-color: #f1ede7;
  background-image: linear-gradient(90deg, #0000000d 1px, transparent 1px), linear-gradient(#0000000d 1px, transparent 1px);
  background-position: 10px 10px;
  background-size: 17px 17px;
}


/* Header
-----------------------------------------------------*/
.header {
  width: 100%;
  padding: 0.6rem 0 0.4rem;
  border-bottom: 1px solid #eee;
  background: var(--white);
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 1000;
}
.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .company-logo {
  display: flex;
  align-items: center;
  gap: var(--space-20);
}
.header .company-logo .logo {
  max-width: var(--size-120);
}
.header .company-logo .area {
  color: var(--green);
  font-size: clamp(var(--font-12), 1.5vw, var(--font-14));
  font-weight: 600;
}
.site-title {
  font-size: clamp(var(--font-26), 3.2vw, var(--font-40));
  font-weight: 900;
  line-height: 1.5;
}
.site-title a:hover {
  opacity: 0.75;
}
.header-contact {
  display: flex;
  align-items: center;
  gap: var(--space-10);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header-contact .tel {
  display: flex;
  align-items: center;
  gap: var(--space-10);
}
.tel-heading {
  width: 2em;
  color: var(--white);
  font-size: clamp(1rem, 1.6vw, var(--font-20));
  font-weight: 700;
  line-height: 1.2;
  padding: 0.5em 0.75em;
  border-radius: 6px;
  box-sizing: content-box;
  background: var(--red);
}
.tel-wrap {
  text-align: center;
  line-height: 1.2;
}
.icon-phone {
  display: inline-block;
  width: var(--size-24);
  height: var(--size-24);
  background: url(../images/icon-phone.svg) no-repeat;
  background-size: contain;
}
.tel-number {
  display: inline-block;
  color: var(--red);
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-variation-settings:"wdth" 100;
  font-size: clamp(var(--font-24), 7vw, var(--font-34));
}
.tel-time {
  display: block;
  font-size: var(--font-14);;
}
.btn-mail {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-10);
  color: var(--white);
  font-weight: 700;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-30);
  background: var(--red);
}
.btn-mail img {
  width: 2rem;
  height: 2rem;
}
@media screen and (max-width: 767px) {
  .header-contact {
    position: fixed;
    left: 0;
    bottom: 0;
    padding: 1rem;
    width: 100%;
    justify-content: space-between;
    background: #fffae6;
  }
  .header.is-hide .header-contact{
    transform: translateY(100%);
    opacity: 0;
  }
}  
@media screen and (min-width:768px) {
  .header.is-hide {
    transform: translateY(-100%);
    opacity: 0;
  }
}
@media screen and (max-width:1023px) {
  .btn-mail {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
  }
  .btn-mail span {
    display: none;
  }
}
@media screen and (min-width:1024px) {
  .btn-mail {
    margin-left: 1rem;
  }
}


/* Visual
-----------------------------------------------------*/
.visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 31.25rem;
  padding-top: var(--space-40);
  background: url(../images/visual.webp) no-repeat top center;
  background-size: cover;
  position: relative;
}
.visual::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
}
.visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lead {
  text-align: center;
  position: relative;
  z-index: 1;
}
.lead-heading {
  color: var(--lime);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.6;
  padding-bottom: var(--space-20);
  margin-bottom: var(--space-30);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  position: relative;
}
.lead-heading::after {
  display: block;
  content: "";
  width: 23.19%;
  height: 3px;
  position: absolute;
  top: 100%;
  left: 50%;
  border-radius: 1.5px;
  background: var(--lime);
  transform: translateX(-50%);
}
.lead-heading span {
  font-weight: 400;
}
.lead-text {
  color: var(--white);
  font-size: var(--font-20);
  font-weight: 600;
  line-height: 1.6;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 670px) {
  .lead-heading {
    font-size: 7vw;
  }
  .lead-text {
    font-size: 4vw;
  }
}


/* Container
-----------------------------------------------------*/
.container{
  padding-bottom: var(--space-40);
}
.btn-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 50rem;
  height: var(--size-80);
  color: var(--white); 
  font-size: clamp(1rem, 4.3vw, var(--font-24));
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  margin: var(--space-60) auto 0;
  padding-right: 1rem;
  border-radius: var(--radius-10);
  background-color: var(--red);
  background-image: url(../images/icon-circle-arr.svg);
  background-position: right var(--space-20) center;
  background-repeat: no-repeat;
  transition: all 0.25s;
  animation: bound 3s infinite;
}
.btn-contact:hover {
  color: var(--red);
  border: 2px solid var(--red);
  border-radius: var(--radius-40);
  background-color: #fceae9;
}
@keyframes bound {
  0% { transform:translateY(0) }
  5% { transform:translateY(0) }
  10% { transform:translateY(0) }
  20% { transform:translateY(-15px) }
  25% { transform:translateY(0) }
  30% { transform:translateY(-8px) }
  50% { transform:translateY(0) }
  100% { transform:translateY(0) }
}
@media screen and (max-width: 767px) {
  .container{
    padding-bottom: var(--space-10);
  }
  .btn-contact {
    margin-top: var(--space-30);
  }
}
@media screen and (min-width: 768px) {
  .btn-contact br {
    display: none;
  }
}


/* Service List
-----------------------------------------------------*/
.service-nav {
  width: 100%;
  position: relative;
  z-index: 2;
  margin: -3.125rem 0 var(--space-50);
}
.service-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-20);
}
.service {
  display: flex;
  flex-direction: column;
  width: calc(50% - var(--space-10));
  max-width: 30rem;
  border: 3px solid var(--green);
  border-radius: 1rem;
  background: var(--white);
  transition: 0.15s ease;
}
.service:hover {
  transform: translateY(-5px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}
.service-main {
  display: flex;
  align-items: center;
  gap: var(--space-20) 5%;
  padding: 1rem;
}
.service-icon {
  width: clamp(var(--size-80), 18vw, var(--size-120));
  height: clamp(var(--size-80), 18vw, var(--size-120));
  border-radius: 50%;
  background: var(--lime);
  position: relative;
}
.service-icon img {
  width: 85%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.service-heading {
  width: calc(100% - calc(clamp(var(--size-80), 18vw, var(--size-120)) + 5%));
  color: var(--green);
  font-size: clamp(1rem, 4.3vw, var(--font-20));
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
.service-heading span {
  display: block;
}
.service-foot {
  text-align: center;
  height: 1.563rem;
  margin-top: auto;
  border-radius: 0 0 0.5rem 0.5rem;
  background: var(--green);
}
.arrow-btm {
  position: relative;
  display: inline-block;
}
.arrow-btm::before,
.arrow-btm::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: calc(50% - 1.5px);
  width: 0.188rem;
  height: 0.75rem;
  border-radius: 9999px;
  background-color: var(--white);
  transform-origin: 50% calc(100% - 1.5px);
}
.arrow-btm::before {
  transform: rotate(45deg);
}
.arrow-btm::after {
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .service{
    width: 100%;
  }
}

/* contents
-----------------------------------------------------*/
.contents {
  border-radius: var(--radius-20);
  margin-bottom: var(--space-60);
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.contents-heading {
  color: var(--white);
  font-size: clamp(1rem, 4.2vw, var(--font-30));
  font-weight: 900;
  text-align: center;
  padding: 0.75rem;
  border-radius: var(--radius-20) var(--radius-20) 0 0;
  background: var(--orange);
}
.contents-inner {
  max-width: calc(1000px + 3.75rem);
  padding: min(5%,var(--space-30)) min(5%,var(--space-30)) min(10%,var(--space-60));
  margin: 0 auto;
}
.contents-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-20) var(--space-30);
}
.contents-img-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 5px;
}
.contents-img {
  max-width: 25rem;
  flex: 1;
}
.contents-img._large {
  max-width: 50.313rem;
}
.contents-img img {
  object-fit: cover;
}
.contents-box {
  padding: var(--space-20) min(5%,var(--space-30)) var(--space-30);
  border: 0.25rem solid #cadfc7;
}
.contents-box + .contents-box {
  margin-top: var(--space-30);
}
.contents-main + .contents-box {
  margin-top: var(--space-30);
}
.contents-title {
  color: var(--green);
  font-size: clamp(1rem, 4.3vw, var(--font-24));
  font-weight: 700;
  text-align: center;
  padding-bottom: var(--space-10);
  margin-bottom: var(--space-30);
  position: relative;
}
.contents-title::after {
  display: block;
  content: "";
  width: 14.06%;
  height: 3px;
  position: absolute;
  top: 100%;
  left: 50%;
  background: var(--green);
  transform: translateX(-50%);
}
.box-column {
  display: flex;
  align-items: center;
  gap: var(--space-20) var(--space-30);
}
.box-column p {
  width: calc(50% - var(--space-30));
}
.contents-fig {
  width: 50%;
}
span.strong {
  font-weight: 700;
}
span.small {
  display: inline-block;
  font-size: var(--font-13);
  padding-top: 1rem;
}
@media screen and (max-width: 767px) {
  .contents-img-wrap {
    flex-direction: column;
    align-items: center;
  }
  .contents-main {
    flex-direction: column-reverse; 
  }
  .contents-box + .contents-box {
    margin-top: var(--space-10);
  }
  .box-column {
    flex-direction: column;
  }
  .box-column p,
  .contents-fig {
    width: 100%;
  }
}


/* Contact
-----------------------------------------------------*/
.contact {
  padding-bottom: var(--space-10);
  background: var(--orange);
}
.contact-heading {
  color: var(--white);
  font-size: clamp(var(--font-20), 5vw, var(--font-40));
  font-weight: 900;
  padding: var(--space-30) 0 var(--space-20);
  text-align: center;
}
.contact-block {
  padding: var(--space-30) min(5%,var(--space-50));
  margin-bottom: var(--space-30);
  border-radius: var(--radius-20);
  background: var(--white);
}
.contact-title {
  color: var(--green);
  font-size: clamp(var(--font-18), 5vw, var(--font-30));
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--space-20);
}
.contact-title span {
  display: block;
  font-size: 1.5rem;
}
.contact-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-30);
}
.contact .img {
  max-width: 20rem;
}
.contact .tel-wrap {
  margin-bottom: var(--space-30);
}
.contact .tel-company {
  font-size: clamp(1rem, 4vw, var(--font-20));
  font-weight: 700;
  margin-bottom: var(--space-10);
}
.contact .icon-phone {
  width: clamp(1rem, 7vw, 2.813rem);
  height: clamp(1rem, 7vw, 2.813rem);
}
.contact .tel-number {
  font-size: clamp(var(--font-24), 10vw, var(--font-60));
  margin-bottom: 0.5rem;
}
.contact .tel-time {
  color: var(--red);
  font-size: clamp(var(--font-14), 4vw, var(--font-18));
  font-weight: 600;
}
.call-notice {
  font-size: clamp(var(--font-14), 3vw, 1rem);
  line-height: 1.5;
}


/* Thanks
-----------------------------------------------------*/
.thanks {
  padding-top: calc(var(--header-height) + var(--space-40));
}
.thanks-inner {
  padding: var(--space-30) min(5%,var(--space-40));
  border-radius: var(--radius-20);
  background: var(--white);
}
.thanks-title {
  color: var(--green);
  font-size: clamp(var(--font-24), 6vw, var(--font-34));
  font-weight: 700;
  border-bottom: 3px solid var(--green);
  padding-bottom: var(--space-10);
  margin-bottom: var(--space-40);
}
.thanks-text p {
  margin-bottom: 1em;
}
.thanks-text .sign {
  font-weight: 600;
  padding-top: 1rem;
}
.thanks-text .sign span {
  font-size: var(--font-15);
  font-weight: 400;
}


/* Footer
-----------------------------------------------------*/
.footer {
  padding: var(--space-40) 0 var(--space-30);
  margin-top: auto;
  background: var(--white);
}
.footer-logo {
  width: 12.5rem;
  margin-bottom: var(--space-10);
}
.footer-company {
  margin-bottom: var(--space-20);
}
.footer-company .name {
  font-size: 1.125rem;
  font-weight: 700;
}
.footer-menu {
  display: flex;
  gap: 0 var(--space-30);
  margin-bottom: var(--space-20);
}
.footer-menu li a {
  font-size: 0.938rem;
  text-decoration: underline;
}
.footer-menu li a:hover {
  opacity: 0.75;
}
.footer-btm {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.pmark {
  display: flex;
  align-items: center;
  gap: var(--space-10);
}
.pmark-logo {
  width: 3rem;
  height: 3rem;
}
.pmark-text {
  color: var(--navy);
  font-size: 0.813rem;
  line-height: 1.4;
}
.copyright {
  font-size: 0.813rem;
  text-align: right;
}
@media screen and (max-width: 539px) {
  .footer-menu,
  .footer-btm {
    flex-direction: column;
  }
  .footer-menu {
    margin-bottom: var(--space-30);
  }
  .footer-btm {
    align-items: center;
    gap: var(--space-20) 0;
  }
}