@charset "utf-8";

/* ==========================================================================
   Main Visual (左揃え・背景切れ対策・左下緑三角帯の追加)
   ========================================================================== */
   .main-visual {
    position: relative;
    width: 100%;
    min-height: 970px;
    padding-top: 70px;
    padding-bottom: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-image: url("/asset/img/top/bg_main.webp");
    background-position: center top;
    background-repeat: repeat-x;
    background-size: auto 100%; 
  }
.main-visual::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, rgba(62, 243, 160, 0.7) 0%, rgba(34, 203, 142, 0.4) 100%);
  clip-path: polygon(0 40%, 100% 100%, 0 100%);
  z-index: 2;
  pointer-events: none;
}

.mv-bg-graphics {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 62%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.mv-ring-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.mv-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
  position: relative;
  z-index: 3;
}

.mv-content {
  width: 100%;
  max-width: 550px;
  text-align: left;
}

.mv-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
  padding: 0;
}

.en-title {
  display: block;
  width: 100%;
  margin-bottom: 50px;
  padding: 0;
}

.en-title img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}

.ja-sub {
  display: block;
  text-align: left;
  margin: 0;
  padding-left: 0;
}
@media screen and (max-width: 767px) {
  .main-visual {
    height: 600px;
    max-height: 600px;
    min-height:600px;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    background-image: 
      linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%),
      url("/asset/img/top/bg_main.webp");
      background-position: 
      center center,
      65% center;
      background-repeat: 
      no-repeat,
      no-repeat;
      background-size: 
      100% 100%,
      cover;
  }

  .main-visual::after {
    height: 70px;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
    background: linear-gradient(135deg, rgba(62, 243, 160, 0.7) 0%, rgba(34, 203, 142, 0.4) 100%);
    z-index: 2;
  }
  .mv-container {
    width: 100%;
    padding: 120px 80px 0 30px;
    z-index: 3;
  }

  .mv-content {
    width: 100%;
    max-width: 100%;
  }

  .en-title {
    margin-bottom: 30px;
  }
  .en-title img {
    width: 100%;
    height: auto;
  }
  .ja-sub {
    font-size: 14px;
    line-height: 1.8;
  }
}

/* ==========================================================================
   About Us Section (カンプ完全再現・白カード＆背景曲線・レスポンシブ対応)
   ========================================================================== */
   .about-section {
    position: relative;
    width: 100%;
    padding: 140px 0 310px;
    background-image: url("/asset/img/top/about_bg.webp");
    background-position: left top;
    background-repeat: no-repeat;
    background-size: cover; 
    background-color: #94FFBF;
    overflow: hidden;
  }
  
.about-container {
  display: flex;
  align-items: flex-start;
  gap: 100px;
  position: relative;
  z-index: 2;
}
  
.about-heading-side {
  width: 120px;
  flex-shrink: 0;
}
  
.side-text-en {
    color: #ffffff;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(0deg); 
    filter: drop-shadow(-5px 5px 5px rgba(0, 0, 0, 0.1));
    white-space: nowrap;
  }
  
  .about-main-content {
    flex: 1;
  }
  
  .about-catchphrase {
    display: block;
    margin-bottom: 30px;
  }

  .about-catchphrase span {
    background-color: #ffffff;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    padding: 11px 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    line-height: 1.8;
    border-radius: 10px;
  }
  
.about-white-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 55px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
  width: 100%;
}
  
.about-map-box {
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
}
  
.dx-map-img {
  width: 100%;
  height: auto;
}
  
.about-description {
  margin-bottom: 20px;
  text-align: justify;   
}
  
.about-cta {
  text-align: right;
}
  
.btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #009944; 
  color: #ffffff;
  padding: 14px 45px;
  border-radius: 30px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
  
.btn-more::after {
  content: "";
  display: inline-block;
  width: 8px;          
  height: 12px;        
  margin-left: 17px;   
  background-image: url("/asset/img/common/arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
  
.btn-more:hover {
  background-color: #008039; 
  opacity: 1;
  transform: translateY(-5px);
}
@media screen and (max-width: 767px) {
  
  .about-section {
    padding: 60px 0 110px;
    background-image: 
      linear-gradient(to bottom, rgba(142, 254, 219, 1) 0%, rgba(142, 254, 219, 0) 100%),
      url("/asset/img/top/about_bg.webp");
    background-position: center top , center top;
    background-repeat: no-repeat , no-repeat;
    background-size: cover , cover;
  }
  
  .about-container {
    flex-direction: column;
    gap: 30px;
    padding: 0 30px;
  }
  
  .about-heading-side {
    width: 100%;
    margin-bottom: 0;
  }
  
  .side-text-en {
    color: #ffffff;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    transform: none;
    filter: drop-shadow(-5px 5px 5px rgba(0, 0, 0, 0.1));
    text-align: left;
    display: block;
    width: 100%;
  }
  
  .about-main-content {
    width: 100%;
  }
  
  .about-catchphrase {
    margin-bottom: 20px;
    width: 100%;
  }

  .about-catchphrase span {
    padding: 7px 10px;
    display: inline;
  }
  
  .about-white-card {
    padding: 35px 25px;
  }
  
  .about-map-box {
    margin-bottom: 30px;
  }
  
  .about-description {
    margin-bottom: 45px;
  }
  
  .about-cta {
    text-align: center;
    width: 100%;
  }
  
  .btn-more {
    width: 100%;
    max-width: 100%;
    padding: 15px 0;
    border-radius: 40px;
  }
  .btn-more::after {
    margin-left: 15px;
    width: 10px;
    height: 13px;
  }
}

/* ==========================================================================
   Our Business Section (ジグザグ・オーバーラップ・縦書きテキスト完全再現)
   ========================================================================== */
   .business-section {
    position: relative;
    width: 100%;
    padding: 130px 0 200px;
    background-image: url("/asset/img/top/business_bg.webp");
    background-position: center top;
    background-repeat: repeat-y;
    background-size: 100% auto; 
    overflow: hidden;
  }
    .business-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
  }
  
  .business-heading-side {
    position: absolute;
    top: 20px;
    right: 60px;
    width: 120px;
    z-index: 1;
  }
  .side-text-business {
    color: #009944; 
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(0deg);
    white-space: nowrap;
  }
  
  .business-card {
    width: 100%;
    margin-bottom: 200px;
    display: flex;
    flex-direction: column;
  }
  .business-card:last-child {
    margin-bottom: 0;
  }

  .business-header-block {
    width: 100%;
    margin-bottom: 35px;
  }
  .business-card.is-even .business-header-block {
    width: auto;
    margin: 0 0 35px 370px;
  }
  .business-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
  }
  .deco-dot {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-image: url("/asset/img/common/dot_icon.svg");
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 10px;
    background-color: transparent;
    border-radius: 0;
  }

.business-visual {
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  position: relative;
}
.business-card.is-odd .business-visual,
.business-card.is-odd2 .business-visual {
  left: -270px;
}
.business-card.is-even .business-visual {
  right: -370px;
}
.business-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.business-white-box {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 700px; 
}
.business-card.is-odd .business-white-box {
  margin-top: -70px; 
  margin-left: 240px;
  margin-right: auto;
}
.business-card.is-odd2 .business-white-box {
  margin-top: -175px; 
  margin-left: 420px;
  margin-right: auto;
}
.business-card.is-even .business-white-box {
  margin-left: 0;
  margin-top: -340px;
}
.business-text {
  margin-bottom: 30px;
  text-align: justify;
}
.btn-detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #009944;
  background-color: #ffffff;
  color: #009944;
  padding: 11px 45px;
  border-radius: 30px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}
.btn-detail::after {
  content: "";
  display: inline-block;
  width: 12px;          
  height: 18px;        
  margin-left: 20px;   
  background-image: url("/asset/img/common/arrow_g.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.btn-detail:hover {
  background-color: #009944;
  color: #ffffff;
  transform: translateY(-5px);
}
.btn-detail:hover::after {
  content: "";
  display: inline-block;
  width: 12px;          
  height: 18px;        
  margin-left: 20px;   
  background-image: url("/asset/img/common/arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  
  .business-section {
    padding: 60px 0 100px;
    background-size: cover;
    background-position: center top;
  }
  
  .business-container {
    width: 100%;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
  }
  
  .business-heading-side {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    margin-bottom: 30px;
  }
  
  .side-text-business {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    transform: none;
    white-space: normal;
    text-align: left;
  }
  
  .business-card {
    margin-bottom: 80px;
  }
  
  .business-card.is-even .business-header-block {
    width: 100%;
    margin: 0 0 25px 0;
  }
  
  .business-header-block {
    margin-bottom: 25px;
  }
  
  .business-title {
    margin-bottom: 15px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
  
  .deco-dot {
    width: 25px;
    height: 25px;
    margin-right: 0;
  }
    
  .business-visual {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    left: 0 !important; 
    right: 0 !important; 
    margin: 0 auto;
  }
  
  .business-white-box {
    background-color: rgba(255, 255, 255, 0.95);
    width: calc(100% - 10px);
    max-width: 100%;
    margin: -45px auto 0 auto !important;
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    z-index: 10;
  }
  
  .business-text {
    margin-bottom: 20px;
  }
  
  .business-white-box {
    text-align: center;
  }
  .btn-detail {
    width: 100%;
    max-width: 100%;
    padding: 13px 0;
    border: 2px solid #009944;
    border-radius: 40px;
  }
  
  .btn-detail::after,
  .btn-detail:hover::after {
    margin-left: 15px;
    width: 10px;
    height: 13px;
  }
}
/* ==========================================================================
   News Section (カンプ完全再現・横並び・ボタン共通矢印仕様)
   ========================================================================== */
   .news-section {
    width: 100%;
    padding: 100px 0 160px;
  }
  
  .news-header {
    width: 100%;
    margin: 0 0 60px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  
  .news-main-title {
    color: #009944;
    margin-bottom: 10px;
  }
  
  .news-sub-title {
    color: #009944;
  }
  
  .news-btn-block {
    margin: 0 0 30px;
  }
  .btn-news-all {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background-color: #009944;
      color: #ffffff;
      padding: 14px 45px;
      border-radius: 30px;
      transition: transform 0.3s ease;
  }
  
  .btn-news-all::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 12px;
    margin-left: 17px;
    background-image: url(/asset/img/common/arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
  
.btn-news-all:hover {
  background-color: #008039; 
  opacity: 1;
  transform: translateY(-5px);
}
  
  .news-list-container {
    width: 100%;
    border-top: 1px solid #BFBFBF;
  }
  
  .news-item {
    border-bottom: 1px solid #BFBFBF;
  }
  
  .news-link {
    display: flex;
    align-items: center;
    padding: 24px 10px;
    transition: background-color 0.3s ease;
  }
  
  .news-date {
    font-size: 16px;
    color: #989898;
    font-weight: 600;
    width: 150px;
    flex-shrink: 0;
  }
  
  .news-category {
    display: inline-block;
    background-color: #CCF7D8;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    padding: 3px 30px 4px;
    border-radius: 12px;
    text-align: center;
    margin-right: 40px;
    flex-shrink: 0;
  }
  
  .news-text-title {
    flex: 1;
  }
  
  .news-link:hover .news-text-title {
    color: #009944;
  }

  @media screen and (max-width: 767px) {
  
    .news-section {
      padding: 0 0 60px;
    }
    
    .news-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 30px;
      padding: 0;
    }
    
    .news-main-title {
      margin-bottom: 10px;
    }
        
    .news-btn-block {
      margin: 20px 0 0;
      width: calc(100% - 180px);
    }
    
    .btn-news-all {
      font-size: 14px;
      padding: 11px 0;
      width: 100%;
    }
    
    .btn-news-all::after {
      width: 10px;
      height: 15px;
    }
    
    .news-list-container {
      padding: 0;
    }
    
    .news-link {
      flex-wrap: wrap; 
      align-items: center;
      padding: 20px 0;
    }
    
    .news-date {
      font-size: 14px;
      line-height: 1.3;
      width: auto;
      margin-right: 20px;
      margin-bottom: 10px;
    }
    .news-category {
      font-size: 13px;
      line-height: 1.3;
      padding: 3px 18px 4px;
      border-radius: 12px;
      margin-right: 0;
      margin-bottom: 10px;
    }
    
    .news-text-title {
      flex: none;
      width: 100%;
    }
  }


  
  