@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/* 全体共通 */
body {
  font-family: "Noto Sans JP", sans-serif;
  background-color: white;
}
/* リンク属性の初期値を設定 */
a {
  color: black;
  text-decoration: none;
}
/* セクション間の上下余白の初期値を設定 */
section {
  padding-top: 120px;
  padding-bottom: 120px;
}
/* ボタンの初期値を設定 */
.btn {
  font-size: 18px;
  border: solid 1px #000000; /* 線を入れる */
  border-radius: 100px; /* 角を丸く */
  display: inline-block; /* 高さを出す */
  width: 270px; /* 横幅 */
  line-height: 50px;
  text-align-last: center;
  transition: 0.2s;
  margin-top: 20px;
  margin-left: 16px; /* ボタン間の左側に16pxの余白を追加 */
}
/* btnにカーソルが当たった時の処理 */
.btn:hover {
  color: #c1c1c1;
  border: solid 1px #c1c1c1;
  transition: 0.2s;
}

/* ヘッダー */
header {
  background-color: #6e95a0;
  width: 100%;
  position: fixed;
  z-index: 1000; /* 他の要素より高い値を設定 */
}
.navbar-brand {
  font-size: 30px;
  font-weight: 700;
}
.navbar-brand:hover {
  color: rgba(57, 57, 57, 0.7);
  transition: all 0.35s ease;
}
.navbar-nav {
  font-size: 18px;
  font-weight: 600;
}
.link1:hover {
  color: rgba(57, 57, 57, 0.7);
  transition: all 0.35s ease;
}
.link2:hover {
  color: rgba(57, 57, 57, 0.7);
  transition: all 0.35s ease;
}
.link3:hover {
  color: rgba(57, 57, 57, 0.7);
  transition: all 0.35s ease;
}
.link4:hover {
  color: rgba(57, 57, 57, 0.7);
  transition: all 0.35s ease;
}

/* メインビジュアル */
.Main_Section {
  background-image: url(../images/%E3%83%9B%E3%83%BC%E3%83%A0.jpeg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.bg-light-transparent {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 10px; /* 角を10pxの半径で丸くする */
}
.Main_Section h3 {
  font-size: 46px;
  font-weight: 700;
}
.Main_Section p {
  font-size: 27px;
  font-weight: 700;
}

.custom-table {
  width: 100%; /* テーブル全体の幅を指定 */
  table-layout: fixed; /* 固定レイアウトを使用 */
}
.custom-table th,
.custom-table td {
  width: 65%; /* 各セルの幅を50%に指定 */
  padding: 10px; /* セル内の余白を設定 */
  text-align: center; /* テキストを中央揃え */
}

/* 会社概要セクション */
.Company .sub_title {
  font-size: 52px;
  font-weight: 700;
}
.Company .text {
  font-size: 25px;
  margin-top: 35px;
}

/* 事業内容セクション */
.Service img {
  border-radius: 10px; /* 角を丸く */
  width: 100%;
}
.Service .sub_title {
  font-size: 40px;
  font-weight: 700;
}
.Service .text {
  font-size: 25px;
  margin-top: 35px;
}
.Service .Pricing {
  position: relative;
  overflow: hidden;
}
.Service .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(37, 39, 71, 0.7);
  padding: 30px;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transition: all 0.35s ease;
}
.Service .Pricing:hover .overlay {
  opacity: 1;
}
.Service img {
  transition: all 0.35s ease;
}

/* 問い合わせセクション */
.Contact img {
  border-radius: 10px; /* 角を丸く */
  width: 100%;
}
.Contact .sub_title {
  font-size: 40px;
  font-weight: 700;
}
.Contact .text {
  font-size: 25px;
  margin-top: 35px;
}
/* フッターセクション */
footer {
  background-color: #a7a7a7;
}
footer .logo {
  padding-top: 20px;
  font-size: 20px;
  font-weight: 500;
}
footer ul {
  padding-top: 11px;
  font-size: 17px;
  font-weight: 500;
}
footer p {
  padding-top: 11px;
  font-size: 12px;
  font-weight: 500;
}
.logo:hover {
  color: rgba(57, 57, 57, 0.7);
  transition: all 0.35s ease;
}
footer .link1 a:hover {
  color: rgba(57, 57, 57, 0.7);
  transition: all 0.35s ease;
}
footer .link2 a:hover {
  color: rgba(57, 57, 57, 0.7);
  transition: all 0.35s ease;
}
footer .link3 a:hover {
  color: rgba(57, 57, 57, 0.7);
  transition: all 0.35s ease;
}
