@charset "utf-8";

header,footer {
  font-family: "sofia-pro", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.15em;
}
body p{
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
}
body h2 {
  font-family: "sofia-pro", sans-serif;
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 0.1em;
}
body h3 {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 15px;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.12em;
}


/* ヘッダーを固定 */
.fixed-header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: white; /* 必要に応じて背景色を設定 */
  z-index: 1000; /* 他の要素の上に表示されるようにする */
}


/* ヘッダー、フッター */
  nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
  }
  nav ul li {
    margin-left: 32px;
  }
  nav ul li a {
    text-decoration: none;
    font-size: 16px;
  }
  nav ul li a:hover {
    color: #a5a5a5;
  }
  .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 10px 10px;
  }
  .container2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 0px 40px;
  }
  footer {
    background-color: #333333;
    color: #ffffff;
  }


/* インナーラップ */
.innerWrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 10px; /* 横方向のパディングを追加 */
}
.innerWrap2 {
max-width: 750px;
margin: 0 auto;
}

/* フッター */
.copyright {
  letter-spacing: 0.1em;
    margin: 0 auto;
    text-align: center;
  }
footer p{
  font-size: 15px;
  font-weight: 300;
  padding:20px 0 30px;
  margin-top: 30px;
}


/* ハンバーガーメニュー */
.hamburger-menu {
  display: none; /* 初期は非表示 */
  cursor: pointer;
}
.hamburger-menu img {
  width: 22px;
  height: 22px;
}

/* オーバーレイメニューのスタイル */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e8e8e8; /* 背景を不透明なグレーに設定 */
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.overlay nav ul {
  list-style: none;
  padding: 0;
  text-align: center;
}
.overlay nav ul li {
  margin: 30px 0; /* リストアイテムの間にスペースを追加 */
}
.overlay nav ul li a {
  color: #333333;
  font-family: "sofia-pro", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  text-decoration: none;
}
.overlay-close-button {
  font-family: "Noto Sans JP";
  font-weight: 100;
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 50px;
  color: #333333;
  cursor: pointer;
}

.fadeUpTrigger {
  opacity: 0;
  transform: translateY(40px); /* 要素を下に40px移動させる */
  transition: opacity 1s, transform 1s; /* opacityとtransformを2秒かけて変化させる */
}

.fadeUpTrigger.show {
  opacity: 1;
  transform: translateY(0); /* 元の位置に戻す */
}






.innerWrap h2 {
  color: #333333;
  padding-top: 180px;
  margin-bottom: 30px;
}

.line {
  border-top: 1px solid black;
  margin-bottom: 10px;
}



/* カテゴリー */
.industry h3{
  padding-top:18px;
  padding-right:8px;
}
.medium h3{
  padding-top:18px;
  padding-right:8px;
}
.category-btn {
  white-space: nowrap; /* ボタン内のテキストを1行に維持 */
  font-family: "Noto Sans JP", sans-serif;
  display: inline-block;
  padding: 0.5rem 1.1rem;
  margin: 0.5rem 0.5rem 0.5rem 0;
  border: 1px solid #333333;
  border-radius: 50px;
  background: #fff;
  color: #333333;
  cursor: pointer;
  font-size: 12px;
  text-align: center;
}

.category-btn:hover {
  background: #f0f0f0;
}

.category-btn.selected {
  background: #333333;
  color: #fff;
  border-color: #333333;
}

.category-btn.all-selected {
  background: #333333;
  color: #fff;
  border-color: #333333;
}

.industry {
  display: flex;
  margin-top: 10px;
}

.medium {
  display: flex;
  margin-bottom: 50px;
}
.industry, .medium {
  flex-wrap: wrap; /* コンテンツが折り返されるように */
}

/* 記事 */
.innerWrap2 h3 {
  font-size: 26px;
  padding: 50px 0 20px;
  letter-spacing: 0.05em;
}
.innerWrap2 p {
  font-size: 15px;
  font-weight: 350;
  letter-spacing: 0.05em;
}
.line2 {
  border-top: 1px solid #a5a5a5;
  margin: 20px 0 40px;
}
.category-btn2 {
  font-family: "Noto Sans JP", sans-serif;
  display: inline-block;
  padding: 0.4rem 1rem;
  margin: 20px 0 25px;
  border: 1px solid #333333;
  border-radius: 50px;
  background: #fff;
  color: #333333;
  font-size: 12px;
  text-align: center;
}

.portfolio-item {
  display: flex;
}

.label-column{
  display: flex;
  flex-direction: column;
  flex-basis: 130px; /* ラベルの幅を固定（必要に応じて調整） */
  margin-top: 18px;
}

.value-column {
  display: flex;
  flex-direction: column;
  flex-basis: 300px; /* ラベルの幅を固定（必要に応じて調整） */
  margin-top: 18px;
}

.label-column p{
  font-size: 13px;
  font-family: "sofia-pro", sans-serif;
  font-weight: 500;
  padding:4px
}

.value-column p{
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  padding:4px;
}
.Text{
  line-height: 1.8;
}
.Text p{
  font-size: 14px;
}
.innerWrap2 img {
  width: 100%;
  height: auto;
  }





  /* レスポンシブデザイン *//* 下層ページにもコピー */
@media (min-width: 1025px) {
  .hamburger-menu {
      display: none; /* 1024px以上ではハンバーガーメニューを非表示 */
  }
}

/* 下層ページにもコピー */
@media screen and (max-width: 1024px) {
  .container{
    padding: 20px;
  }
  .logo {
    width: 340px;
  }
  .desktop-nav {
    display: none;
  }
  .hamburger-menu {
    display: block;
  }
  .overlay nav ul {
    display: flex;
    flex-direction: column; /* リストアイテムを縦に並べる */
    align-items: center;
  }
  .hamburger-menu img{
    width: 40px;
    height:auto;
  }
}


@media screen and (max-width: 764px) {
  .innerWrap{
    padding: 0 15px;
    }
  .innerWrap2 {
    padding: 0 15px;
    }
  .innerWrap h2 {
    font-size: 30px;
    color: #333333;
    padding-top: 140px;
    margin-bottom: 15px;
  }
  .industry h3, .medium h3 {
    flex: 0 0 auto; /* タイトルを1行に固定 */
    text-align: center;
    width: 100%;
    padding: 9px 0;
  }
  .category-btn {
    padding: 0.5rem 1.0rem;
    margin: 0.3rem 0.3rem 0.3rem 0;
    font-size: 12px;
  }
  .innerWrap2 h3 {
    font-size: 20px;
    padding: 22px 0 11px;
    line-height:1.5;
  }
  .Text p{
    font-size: 13px;
    line-height: 1.6;
  }
  .label-column p{
    font-size: 12px;
  }
  .value-column p{
    font-size: 12px;
  }
  .line2 {
    border-top: 1px solid #a5a5a5;
    margin: 15px 0 30px;
  }
  .category-btn2 {
    padding: 0.4rem 1rem;
    margin: 20px 0 25px;
    border: 1px solid #333333;
    border-radius: 50px;
    font-size: 11px;
  }  
  .medium {
    display: flex;
    margin-bottom: 35px;
  }
}

