@charset "UTF-8";

/* =========================
   FV
   ========================= */

.fv-section {
    position: relative;
    width: 100%;
    min-height: calc(100vw * 1000 / 2500) ;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    background: url('/wp-content/uploads/2026/04/fv_pc5.jpg') no-repeat center center;
    background-size: cover;
}

.fv-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: flex-end;
}

.fv-text-content {
    width: 50%;
    color: #333;
}

.fv-main-copy {
    font-size: clamp(2.25rem, 3vw, 3.5rem);
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 20px;
    white-space:nowrap;
}

.fv-main-copy .highlight {
    background: linear-gradient(transparent 60%, #aee3d2 60%);
    display: inline-block;
}

.fv-sub-copy {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 40px;
    line-height: 1.4;
}

.fv-lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    background-color: #3b9e7d;
    color: #fff;
    padding: 15px 80px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    border:1px solid #fff;
}

.btn-primary:hover {
    opacity: 0.8;
}

@media (max-width: 959px) {
    .fv-section {
        background-image: url('/wp-content/uploads/2026/04/fv_sp5.jpg');
        background-repeat: no-repeat;
        background-position: top center;
        background-size: 100% auto;
        
        display: block;
        height: auto;
        padding-top: 66%;
        background-color: #004d40;
    }
    .fv-lead-text {
        font-size:0.87rem;
    }
    .fv-sub-copy {
        margin-bottom:20px;	
    }
    .fv-text-content {
        width: 100%;
        padding: 20px 20px;
        background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 10%); 
        color: #333;
        box-sizing: border-box;
    }

    .fv-main-copy {
        font-size: 1.8rem;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}
/* =========================
   service
   ========================= */
.l_section__service {
  background-color: #2b4e64;
  color: #ffffff;
}

.l_service__inner {
  padding-top: calc(150 / 16 * 1rem);
  padding-bottom: calc(50 / 16 * 1rem);
}

.service__flex_container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.service__content_wrap {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  margin-bottom: 3.875rem;
  font-weight: 500;
}

.service__content_wrap__right {
  width: 100%;
  position: static;
  margin-bottom: 1.5rem;
}

.service__content_wrap__right img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

.service__content_wrap__left {
  width: 100% !important;
}

.service__sub_text {
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.service__content_wrap__left h3 {
  font-weight: bold;
  line-height: 1.2;
  font-size: 1.25rem;
  padding-bottom: 1.0625rem;
  margin-bottom: 1.0625rem;
  position: relative;
}

.service__content_wrap__left h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
}

.service__content_wrap--01 .service__content_wrap__left h3::after {
  background: #ffdfb3;
}
.service__content_wrap--02 .service__content_wrap__left h3::after {
  background: #d0e3c5;
}

.service__content_wrap--01 .service__sub_text span {
  color: #ffdfb3;
  text-shadow: 1px 3px 1px #333;
}
.service__content_wrap--02 .service__sub_text span {
  color: #d0e3c5;
  text-shadow: 1px 3px 1px #333;
}

@media (max-width: 959px) {
  .service__flex_container {
    flex-direction: column;
    align-items: center;
  }
}

/* =========================
   feature
   ========================= */
.l_section__feature {
  background-color: #fefff4;
  padding: 100px 5%;
  overflow: hidden;
}

.feature_contents {
  max-width: 1100px;
  margin: 80px auto 0;
}

.feature_block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.feature_block.is-reverse {
  flex-direction: row-reverse;
}

.feature_text {
  width: 50%;
}

.feature_number {
  font-family: serif;
  font-size: 2rem;
  color: #43a686;
  display: block;
  border-bottom: 2px solid #43a686;
  width: fit-content;
  margin-bottom: 20px;
}

.feature_text h3 {
  font-size: 1.8rem;
  color: #333;
  line-height: 1.5;
  margin-bottom: 10px;
}

.feature_text p {
  line-height: 1.8;
  color: #666;
}

.feature_image {
  width: 45%;
}

.feature_image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* スマホ対応 */
@media (max-width: 959px) {
  .feature_block,
  .feature_block.is-reverse {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 80px;
  }
  .feature_text,
  .feature_image {
    width: 100%;
  }
}

/* =========================
   customer
   ========================= */
.l_section__case {
  background: linear-gradient(to bottom, #fefff4 0%, #6bc0c3 100%);
  position: relative;
  z-index: 0;
}

.l_section__case:before {
  top: 10%;
  left: 2%;
  background: url("../image/case_dec02.png") no-repeat;
}

.l_section__case:after {
  bottom: 5%;
  right: 2%;
  background: url("../image/case_dec01.png") no-repeat;
}

.l_section__case:before,
.l_section__case:after {
  content: "";
  position: absolute;
  width: 500px;
  aspect-ratio: 25/16;
  background-size: contain;
  z-index: -1;
  opacity: 0.5;
}

@media (max-width: 959px) {
  .l_section__case:before,
  .l_section__case:after {
    width: 250px;
  }
  .l_section__case:before {
    top: 10%;
    left: -15%;
  }
  .l_section__case:after {
    bottom: 0%;
    right: -10%;
  }
}
.l_case__inner {
  padding-top: calc(80 / 16 * 1rem);
  padding-bottom: calc(80 / 16 * 1rem);
}

.l_case__inner p {
  margin-bottom: 30px;
}
/* 
.l_case__list {
  display: flex;
  flex-wrap: wrap;
  gap: calc(20 / 16 * 1rem);
  justify-content: center;
  align-items: center;
}

.l_case__list li {
  width: 20%;
}

.l_case__list img {
  width: 100%;
  height: 100%;
}
 */
/* =========================
   about
   ========================= */
.l_section__aboutUs {
  background: url("../image/about_bg.jpg");
  background-size: 35rem;
}

.l_aboutUs__inner {
  padding-top: calc(80 / 16 * 1rem);
  padding-bottom: calc(80 / 16 * 1rem);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: calc(40 / 16 * 1rem);
}

@media (max-width: 959px) {
  .l_aboutUs__inner {
    flex-direction: column;
  }
}
.l_aboutUs__title_wrap {
  margin-inline: auto;
}

.aboutUs__content {
  text-align: left;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 2rem 4rem;
  display: block;
  border-radius: 10px;
}

@media (max-width: 959px) {
  .aboutUs__content {
    width: 100%;
    padding: 2rem 2rem;
  }
}
.aboutUs__table tr {
  border-bottom: 1px solid #ccc;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  display: block;
  vertical-align: top;
}

.aboutUs__table th {
  min-width: 100px;
}

/* =========================
   contact
   ========================= */
.l_section__contact {
  background-color: #414554;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.l_section__contact::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 80vw;
  aspect-ratio: 1/2;
  background-color: #fff;
  border-radius: 0 100% 100% 0/0 50% 50% 0;
  z-index: 1;
}

.l_section__contact::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 120%;
  background-image: url("../image/cta_dec01.png");
  background-repeat: repeat;
  background-size: 100px;
  opacity: 0.03;
  pointer-events: none;
}

.l_contact__inner {
  padding-top: calc(80 / 16 * 1rem);
  padding-bottom: calc(80 / 16 * 1rem);
  position: relative;
  z-index: 2;
  color: #333a4d;
}

.l_contact__cta_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.l_contact__cta_wrap > div {
  width: 70%;
}

.l_contact__cta_wrap a {
  width: inherit;
  margin-inline: auto;
}

.l_contact__cta_wrap a {
  display: inline-block;
  perspective: 1000px;
}

.l_contact__cta_wrap a img {
  display: block;
  transition: transform 0.6s ease;
  backface-visibility: hidden;
}

.l_contact__cta_wrap a:hover img {
  transform: rotateY(360deg);
}

