@charset "UTF-8";
* {
    padding: 0;
    margin: 0
}
.header-top {
    height: 30px;
    line-height: 30px;
    background-color: #87b2c2;
    z-index: 999;
    width: 100%;
    color: #fff;
    text-align: center;
    vertical-align: center;
    font-size: 11px;
    margin-top: 0;
    font-weight: normal;
}
.l-header__wrap {
    max-width: 82pc;
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px 5px;
}

/* トップボタン */
.nav_button.button-circle {
    border-radius: 20px;
}
.nav_button.button-reveal {
    overflow: hidden !important;
}
a.btn-gradient-01 {
    color: #fff;
    background-image: -webkit-gradient(linear, left top, right top, from(#e95f6f), to(#f39349));
    background-image: -webkit-linear-gradient(left, #e95f6f 0%, #f39349 100%);
    background-image: linear-gradient(45deg, #e9855f 0%, #e7ba56 100%);
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.nav_button {
    display: inline-block;
    position: relative;
    cursor: pointer;
    outline: none;
    white-space: nowrap;
    margin: 5px 10px;
    padding: 8px 22px;
    font-size: 1rem;
    line-height: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
}

/* main */
main {
  max-width: 1300px;
  margin: 0 auto;
}
section {
  margin: 50px 0;
  /* padding: 0 20px; */
}
.m_t {
  padding: 30px 0;
  line-height: 2;
  font-size: 1.3em;
}
/* main内ボタン*/
.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  text-decoration: none;
  color: #212529;
  border-radius: 0.5rem;
}

a.btn--yellow {
  color: #000;
  background-color: #fff100;
}

a.btn--yellow.btn--cubic {
  border-bottom: 5px solid #ccc100;
  box-shadow: 0 3px 0 #ccc100;
  transition: all 0.2s ease;
  position: relative;
  top: 0;
}

a.btn--yellow.btn--cubic:hover {
  top: 3px;
  box-shadow: none;
  color: #000;
  background: #fff20a;
}

a.btn-c {
  display: inline-block;
  font-size: 1rem;
  position: relative;
  padding: 1rem 4rem 1rem 3rem;
  border-radius: 100vh;
}

a.btn-c i.fa {
   margin-right: 1rem;
}

a.btn-c:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900; /* ← solid の場合必要 */
  font-size: 1.6rem;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  content: '\f054'; /* ← ▶ のUnicode */
}
.btn-wrapper {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

/* 見出しタイトル */
.section-title {
  text-align: center;
  /* padding: 40px 0; */
  padding: 60px 0 40px;
}

.section-title .ja {
  font-size: 2em!important;
  font-weight: bold;
  color: #333333;
  margin: 0;
  line-height: 1.2;
}

.section-title .en {
  font-size: 14px!important;
  color: #f5c623; /* 黄色 */
  margin-top: 4px;
  letter-spacing: 0.1em;
  font-family: 'Arial', sans-serif;
}

.fancy-yellow-underline {
    background-image: linear-gradient(transparent 60%, #f5c623 90%);
  background-repeat: no-repeat;
  background-size: 100% 1.5em;
  background-position: 0 100%;
}

/* 社内の声 */

.profile-card {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 30px;
  margin-bottom: 20px;
  /* max-width: 700px; */
  margin: 0 auto 20px;
  box-sizing: border-box;
  justify-content: center;
}
.profile-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 20px;
}
.profile-text {
  width: 100%;
}
.profile-text h3 {
  font-size: 1.2rem;
  margin: 0;
}
.profile-text .name {
  font-size: 0.9rem;
  color: #4caf50;
  /* border-bottom: 2px solid; */
  display: inline-block;
  margin: 5px 0 10px;
  padding-bottom: 2px;
}
.profile-text .description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
  border-top: 2px solid;
  padding-top: 10px;
  /* width: 98%; */
  font-weight: normal;
}
/* カラーバリエーション */
.profile-card.red .name {
  color: #e53935;
  border-color: #e53935;
}
.profile-card.green .name {
  color: #4caf50;
  border-color: #4caf50;
}
.profile-card.blue .name {
  color: #4B94CD;
  border-color: #4B94CD;
}
.profile-card.yellow .name {
  color: #E4BE24;
  border-color: #E4BE24;
}
.profile-card.purple .name {
  color: #955095;
  border-color: #955095;
}

.profile-card h3 {
      color: #333;
      font-size: 2em;
}
/* 線 */
.profile-card.red .description {
  border-color: #e53935;
}
.profile-card.green .description {
  border-color: #4caf50;
}
.profile-card.blue .description {
border-color: #4B94CD;
}
.profile-card.yellow .description {
 border-color: #E4BE24;
}
.profile-card.purple .description {
border-color: #955095;
}

.profile-card .name {
  font-weight: bold;
}

/* 2カラム */
.profile-container {
    display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px; /* カード間の隙間 */
  max-width: 1300px;
  /* margin: 0 auto;*/ 
}
.card2 {
    width: calc(50% - 20px); /* 横2つになるように */
  box-sizing: border-box;

}


/* 下位 */
    .copy-list {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 5px;
    }
    .copy-item {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding: 16px 0;
      border-bottom: 2px dashed #ddd;
    }
    .copy-text {
      flex: 1;
    }
    .catch {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 4px;
    }
    .description {
      font-size: 14px;
      color: #555;
    }
    .author {
      text-align: right;
      min-width: 140px;
    }
    .author-name {
      font-weight: bold;
      font-size: 16px;
    }
    .author-dept {
      font-size: 13px;
      margin-top: 2px;
    }
    .dept-green {
      color: #4caf50;
    }
    .dept-blue {
      color: #4B94CD;
    }
    .dept-red {
      color: #e53935;
    }
    .dept-yellow {
      color: #E4BE24;
    }


    .contact_wrapper {
    background: linear-gradient(-135deg, #5ebda5, #1f72ba);
    padding: 50px 0;
}
.contact_wrapper1 {
  width: 100vw;
  max-width: 100vw;
  margin: 0; /* ← margin: 0 auto; はやめる！ */
  padding: 50px 0;
  background: #EFF8FB;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 50px;
  margin-bottom: 50px;
  text-align: center;
}
.banner_sc {
  width: 900px;
}
.b_no {
   /* background-color: #fff!important;  */
}
.image-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    align-items: center; /* 子要素を縦方向の中心に揃えます */
    gap: 20px; /* 画像間の隙間でも可 */
}
.image-container img {
    max-width: 100%; /* 画像の最大幅を設定します */
    height: auto; /* 画像の縦横比を維持します */
}
.image-container a {
  display: inline-block;
}
.img_b {
        max-width: 800px;
}

/* レスポンシブ */
   @media screen and (min-width: 1400px) { 
    .mainimg4 {
        max-width: 1300px;
      }
      .copy-list {
        max-width: 1300px;
      }
      .img_b {
        width: 800px;
      }
   }
   @media screen and (max-width: 1401px) { 
      .m_t {
        padding: 30px 25px;
      }
   }
   @media screen and (max-width: 1250px) { 
    .image-container {
      display: block;
    }
    .image-item.second {
      margin: 20px; /* ← 2つ目だけに適用される */
    }
     .img_b {
        width: 700px;
      }
    }

     @media screen and (max-width: 1000px) { 
      .banner_sc {
        width: 100%;  
        max-width: 800px;
      }
     }
   
    /* 社内の声 スマホ */
    @media screen and (max-width: 750px) {
  .profile-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
  }

  .profile-card img {
    width: 70px;
    height: 70px;
    margin: 0 0 15px;
  }

  .profile-text h3 {
    font-size: 1.1rem;
  }

  .profile-text .name {
    font-size: 0.85rem;
    margin-bottom: 8px;
  }

  .profile-text .description {
    font-size: 0.9rem;
  }
  .card2 { 
        width: 100%;
  }
  .copy-list {
    padding: 0 35px;
  }
  /* バナー */
       .img_b {
        width: 500px;
      }
}

 @media screen and (max-width: 400px) {
    .copy-list {
    padding: 0 15px;
  }
 }



/* ===== PC & 共通 ===== */
.hero {
  display: flex;
  justify-content: center;
  padding: 0;
}

.hero-media {
  position: relative;
  width: clamp(320px, 80vw, 1300px); /* 80%で開始、最小・最大幅制御 */
  /* width: clamp(320px, 80vw, 1100px); */
}
     @media screen and (max-width: 1000px) { 
      .hero-media {
        width: 100%;
      }
     }

.hero-bg {
  display: block;
  width: 100%;
  height: auto; /* 比率維持 */
}

/* テキスト＆ボタンを背景上に載せる */
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;  /* 縦中央 */
  align-items: flex-start;  /* 左寄せ */
  text-align: left;
  padding: 5% 5% 5%; 
  left: 10%;
}

/* 見出し・本文・ボタンを画像サイズに比例させる */
.hero-title {
  margin: 0;
  line-height: 1.2;
  font-size: clamp(18px, 4vw, 50px);
  color: #000;
}
.hero-title span {
  color: #1e3786;
}

.hero-sub {
  margin-top: 0.5em;
  font-size: clamp(12px, 1.6vw, 18px);
  line-height: 1.8;
  max-width: 36em;
  margin-bottom: 1.5em;
  margin-left: 0.5em;
}

@media (max-width: 640px) {
  /* 背景画像を非表示 */
  .hero-bg {
    display: none;
  }
  .hero {
    background-color: #EFF8FB;
  }

  /* テキスト＆ボタンを中央寄せ */
  .hero-content {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 130px 0 40px;
  }

  /* タイトルを1行＆サイズアップ */
  .hero-title {
    font-size: 30px;       /* 好みでサイズ調整OK */
    white-space: nowrap;   /* 強制的に改行させない */
  }

  /* 見出しや本文の最大幅調整 */
  .hero-title,
  .hero-sub {
    max-width: 90%;
  }
  .hero-title span {
      font-size: 1em;
  }
}




