@charset "UTF-8";
/* ====================================
   Service Page Sections
   ==================================== */

/* ==========================================================================
   Base & Common Settings (Service Page Specific)
   ========================================================================== */
main {
  padding-top: 225px;
}

.section-padding {
  padding-top: 0;
  padding-bottom: 80px;
}

@media (max-width: 768px) {
  main {
    padding-top: 100px;
  }
  .section-padding {
    padding-bottom: 80px;
  }
}

/* ==========================================================================
   Page Header (Title)
   ========================================================================== */
.page-header {
  padding-bottom: 130px;
  background-color: #fff;
}
.page-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: none;
  padding-bottom: 0;
}

.page-title {
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
  color: #333;
}
.page-title .ja {
  font-family: 'Noto Sans JP', sans-serif;
  display: block;
  font-size: 24px;
  color: #008fcc;
  margin-top: 25px;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.breadcrumbs {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  display: flex;
  align-items: center;
  margin-left: 40px; 
  margin-bottom: 10px;
}
.breadcrumbs a {
  text-decoration: none;
  color: #333;
  transition: opacity 0.3s;
  font-weight: 700;
}
.breadcrumbs a:hover {
  opacity: 0.7;
}
.breadcrumbs .current {
  color: #333;
}
.breadcrumbs span:not(.current) {
  font-size: 0;
  display: inline-block;
  width: 75px;
  height: 1px;
  background-color: #000;
  margin: 0 10px;
}

@media (max-width: 768px) {
  .page-header {
    padding-bottom: 50px;
  }

  .page-header__inner {
    flex-direction: column;
    align-items: flex-start; 
    gap: 20px;
  }
  
  .page-title {
    font-size: 60px;
  }
  
  .breadcrumbs {
    margin-left: 0;
    margin-bottom: 0;
    flex-wrap: wrap;
  }
  
  .breadcrumbs span:not(.current) {
    width: 30px;
    margin: 0 10px;
  }
}

/* ====================================
   Service Page Styles
   ==================================== */

/* ------------------------------------
   Common Styles
   ------------------------------------ */
.service-heading {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 30px;
  color: #333;
}

.service-desc {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

/* ====================================
   01. Service Intro
   ==================================== */
.service-intro {
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding-bottom: 120px;
  overflow: hidden;
}

.service-intro__container {
  width: 50%;
  margin: 0;
  max-width: none;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-left: max(20px, calc((100vw - 1340px) / 2));
  padding-right: 40px; 
}

.service-intro__text {
  width: 100%;
  max-width: 100%; 
  padding-left: 0;
}

.service-intro__text .service-heading {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #333;
}
.service-intro__text .service-desc {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
  text-align: justify;
}
.service-intro__text .service-desc a {
  color: #1699d1;
}
.service-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 30px;
  border: 1px solid #333;
  color: #333;
  font-size: 17px;
  font-weight: 600;
  background-color: #fff;
}

.service-intro__img {
  position: relative; 
  width: 50%;
  aspect-ratio: 820 / 615;
  height: auto;
  flex-shrink: 0;
  padding-left: 30px;
}

.service-intro__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: left center;
}

@media (max-width: 768px) {
  .service-intro {
    flex-direction: column-reverse;
    padding-top: 0;
    padding-bottom: 50px;
  }

  .service-intro__container {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .service-intro__img {
    width: 100%;
    margin-bottom: 30px;
  }
  
  .service-intro__text .service-heading {
    font-size: 32px;
  }
}


/* ====================================
   02. Features
   ==================================== */
.service-features__container {
  display: flex;
  align-items: flex-start; 
  justify-content: space-between;
  gap: 70px;
}
.service-features__images {
  width: 50%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 15px;
}
.sf-img-main {
  grid-column: 1 / 3;
}
.service-features__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-features__text {
  width: 50%;
}
.service-features__text .service-heading {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  margin-top: -10px;
  margin-bottom: 45px;
  color: #333;
}
.service-features__text .service-desc {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.8;
  color: #333;
  margin-bottom: 35px;
  text-align: justify;
}
.feature-list {
  list-style: none;
  padding: 0;
  font-size: 17px;
  font-weight: 700;
  color: #333;
}
.feature-list li {
  margin-bottom: 10px;
  padding-left: 15px;
  position: relative;
}
.feature-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #008fcc;
}

@media (max-width: 768px) {
  .service-features__container {
    flex-direction: column;
  }
  .service-features__images,
  .service-features__text {
    width: 100%;
  }
  .service-features__text .service-heading {
    font-size: 32px;
  }
}


/* ====================================
   03. Mesh Guide
   ==================================== */
.mesh-guide {
  background-color: transparent;
  margin-bottom: 120px;
}
.mesh-guide__inner {
  background-color: #eaf8ff;
  padding: 60px 60px 65px;
  text-align: center;
}
.mesh-guide__head {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
}
.mesh-guide__title {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 700;
  height: 73px;
  padding: 0 60px;
  background-color: #1699d1;
  color: #fff;
  -webkit-clip-path: polygon(30px 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 30px 100%, 0 50%);
  clip-path: polygon(30px 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 30px 100%, 0 50%);
}
.mesh-grid {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  margin-bottom: 35px;
  background-color: #fff;
  padding: 5px;
  border-radius: 8px;
}
.mesh-item {
  flex: 1;
  padding: 50px 20px;
  text-align: center;
  border-radius: 8px;
}
.mesh-grid .mesh-item:first-child {
  background-color: #fcefb4;
}
.mesh-grid .mesh-item:nth-child(2) {
  background-color: #fae588;
}
.mesh-grid .mesh-item:last-child {
  background-color: #f9dc5c;
}

.mesh-item__icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 30px;
}
.grid-icon {
  display: block;
  width: 62px;
  height: 62px;
}
.mesh-item__name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1;
}
.mesh-item__desc {
  font-size: 21px;
  line-height: 1;
  font-weight: 700;
}
.mesh-guide__note p {
  display: inline-block;
  background-color: #fff;
  padding: 0 5%;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  max-width: 750px;
  height: 50px;
  line-height: 50px;
  border: 1px solid #000;
}
@media (max-width: 768px) {
  .mesh-guide__inner {
    padding: 30px 20px;
  }
  .mesh-guide__title {
    font-size: 18px;
    height: 60px;
    padding: 0 40px;
    -webkit-clip-path: polygon(20px 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 20px 100%, 0 50%);
    clip-path: polygon(20px 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 20px 100%, 0 50%);
  }
  .mesh-grid {
    flex-direction: column;
  }
}



/* ====================================
   04. Service List
   ==================================== */
.service-list-sec {
  padding-bottom: 120px;
}
   .service-list-sec .section-head {
  font-size: 32px;
  font-weight: 700;
  border-bottom: 1px solid #000;
  padding-bottom: 20px;
  margin-bottom: 40px; 
}

.service-list-sec .section-head__ja {
  font-size: inherit;
  font-weight: inherit;
  border-left: none;
  padding-left: 0;
  margin-bottom: 0;
  line-height: 1.1;
}

.service-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
  padding-bottom: 50px;
  margin-bottom: 50px;
}
.service-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* ------------------------------------
   Left: Content
   ------------------------------------ */
.service-row__content {
  width: 46%;
}

.service-num {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 10px;
  line-height: 1;
  font-weight: 600;
}

.service-num .txt {
  font-size: 22px;
  color: #eb6877;
}

.service-num .num {
  font-size: 42px;
  color: #eb6877;
}

.service-row__title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
}

.service-desc {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
  font-weight: 500;
}

.price-table-wrap {
  margin-top: 20px;
  background-color: transparent;
  padding: 0;
  border-radius: 0;
}

.price-table-wrap .price-head {
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 20px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background-color: #fff;
  border: 1px solid #ddd;
}
.price-table th, .price-table td {
  border: 1px solid #ccc;
  padding: 10px 15px;
  text-align: center;
  font-size: 17px;
  font-weight: 600;
}
.price-table th {
  background-color: #eee;
  width: 50%;
}

.price-note {
  font-size: 17px;
  font-weight: 600;
  margin-top: 25px;
  line-height: 2;
}

/* ------------------------------------
   Right: Images
   ------------------------------------ */
.service-row__images {
  width: 48%;
}
.service-row__images img {
  width: 100%;
  height: auto;
  display: block;
}

.service-row__images.grid-type {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.sv-img-main {
  grid-column: 1 / 3;
}

.service-point-list {
  font-size: 17px;
  font-weight: 600;
  line-height: 2;
}

@media (max-width: 768px) {
  .service-row {
    flex-direction: column;
  }
  .service-row__content,
  .service-row__images {
    width: 100%;
  }
  .service-row__content {
    margin-bottom: 30px;
  }
}

/* ====================================
   05. Material Sales
   ==================================== */
.service-materials {
  padding-bottom: 120px;
}
.service-materials .service-heading {
  display: block;
  width: 100%;
  font-size: 32px;
  font-weight: 700;
  color: #333;
  border-bottom: 1px solid #000;
  padding-bottom: 20px;
  margin-bottom: 40px; 
}
.service-materials__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.service-materials__content {
  width: 46%;
}
.service-materials__img {
  width: 48%;
}
.service-materials__img img {
  width: 100%;
  height: auto;
}

.material-list {
  margin-bottom: 50px;
  font-size: 17px;
  font-weight: 600;
  line-height: 2;
}

.material-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 470px;
  height: 70px;
  padding: 0 15px;
  border: 1px solid #333;
  text-align: center;
  text-decoration: none;
  color: #333;
  font-weight: 700;
  transition: all 0.3s;
  background-color: #fff;
  border-radius: 5px;
}
.material-btn:hover {
  background-color: #333;
  color: #fff;
}
.material-btn .icon-cart {
  margin-right: 10px;
  margin-top: -1px;
}
.material-btn .icon-cart .cartB {
  display: block;
}
.material-btn .icon-cart .cartW {
  display: none;
}
.material-btn:hover .icon-cart .cartB {
  display: none;
}
.material-btn:hover .icon-cart .cartW {
  display: block;
}

@media (max-width: 768px) {
  .service-materials__container {
    flex-direction: column-reverse;
  }
  .service-materials__content,
  .service-materials__img {
    width: 100%;
  }
  .service-materials .service-heading {
    font-size: 24px;
    margin-bottom: 30px;
  }
}

/* ====================================
   06. Contact Info
   ==================================== */
.service-contact-info {
  padding-bottom: 80px;
}

.sci-box {
  max-width: 1080px;
  margin: 0 auto;
  border: 1px solid #000;
  padding: 50px 12%;
  text-align: center;
  background-color: #fff;
}

.sci-title {
  font-size: 32px;
  font-weight: 700;
  padding: 0 25px 20px;
  margin-bottom: 35px;
  border-bottom: 1px solid #000;
  display: inline-block;
  line-height: 1;
}

.sci-desc {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  text-align: left;
  padding-bottom: 30px;
  margin-bottom: 40px;
  border-bottom: 1px solid #000;
}

.sci-desc .highlight {
  font-weight: 600;
  background: linear-gradient(transparent 60%, #fff799 60%);
  background-color: #fff799;
}

.sci-desc a {
  color: #008fcc;
  text-decoration: underline;
  transition: opacity 0.3s;
}
.sci-desc a:hover {
  opacity: 0.7;
  text-decoration: none;
}

.sci-alert {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  border: none;
  background-color: transparent;
  padding: 0;
  text-align: left;
}

.sci-alert__icon {
  display: block;
  width: 90px;
  height: 90px;
  flex-shrink: 0;
}

.sci-alert__text {
  font-size: 16px;
  line-height: 1.6;
  font-weight:500;
}

.sci-alert__text strong {
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
}

@media (max-width: 768px) {
  .sci-box {
    padding: 30px 20px;
    width: auto;
    margin: 0 15px;
  }
  
  .sci-title {
    font-size: 24px;
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  
  .sci-desc {
    font-size: 15px;
    text-align: justify;
  }
  
  .sci-alert {
    flex-direction: column;
    text-align: center;
  }
  
  .sci-alert__icon {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }
}