@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #231815;
}
body > div {
  width: 100%;
  font-size: 16px;
  line-height: 160%;
}

#wrapper {
  width: 100%;
}
#wrapper header {
  width: 100%;
  height: 54px;
  background-color: #D13840;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between; /* 要素を左右に分ける */
  align-items: center;
}
#wrapper header > div {
  max-width: 1280px;
  margin: 0 auto;
}
#wrapper header .logo {
  height: 24px;
  flex-shrink: 0;
}
#wrapper header .logo img {
  width: 214px;
}
#wrapper header .hamburger-menu {
  margin-left: auto;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  cursor: pointer;
}
#wrapper header .hamburger-menu span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
}

p {
  margin-bottom: 2em;
}
p.bold {
  font-weight: 800;
}

.image.img-full-width {
  width: 100%;
}
.image.w500 {
  width: 500px;
}
.image.center {
  margin: 0 auto;
  display: block;
}

.margin.bottom62 {
  margin-bottom: 62px;
}
.margin.bottom74 {
  margin-bottom: 74px;
}

.container {
  width: 700px;
  margin: 0 auto;
}

.board {
  padding: 55.45px;
}
.board.pink {
  background-image: url("../img/bg_pink.svg");
  background-size: 2528px;
}

.font08 {
  font-size: 0.8em;
}

.flex {
  display: flex;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

td.pc, th.pc {
  display: table-cell;
}

#main_v_c {
  padding: 35px 0;
}

#section_1 {
  margin-top: 54px;
  margin-bottom: 79px;
}
#section_1 h1 {
  font-size: 1.25em;
  margin-bottom: 2.8em;
}

#section_2 {
  padding: 0 0 56px;
  margin-bottom: 38px;
}
#section_2 > .container.border {
  border-bottom: 1px solid #B3B3B3;
  margin-bottom: 50px;
  padding-bottom: 25px;
}
#section_2 table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 61px;
}
#section_2 table tr {
  background-color: #FFFAEF;
}
#section_2 table tr td {
  text-align: center;
  padding: 5px;
}
#section_2 table tr:nth-child(odd) {
  background-color: #FEF1D3;
}
#section_2 .company {
  font-weight: 800;
  margin-bottom: 30px;
}
#section_2 .company .name {
  font-size: 1em;
}
#section_2 .company div {
  font-size: 0.875em;
}
#section_2 .facebook a {
  display: block;
  background-image: url(../img/facebook.png);
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 24px;
  padding-left: 30px;
  text-decoration: none;
  color: #231815;
  font-weight: 800;
}
#section_2 .facebook a:hover {
  text-decoration: underline;
}

.side-menu {
  position: fixed;
  top: 0;
  right: -100%; /* 初期状態で画面外に隠す */
  width: 375px;
  height: 100%;
  background-color: #D13840; /* 背景色 */
  color: #fff;
  box-shadow: -5px 0 10px rgba(0, 0, 0, 0.3);
  transition: right 0.3s ease; /* アニメーション */
  z-index: 1000;
  overflow-y: auto; /* メニューが長い場合にスクロール可能にする */
}
.side-menu ul {
  list-style: none;
  padding: 20px 0 0;
  margin-top: 23px;
  border-bottom: 1px solid #D76167;
}
.side-menu ul li {
  text-align: center;
  border-top: 1px solid #D76167;
}
.side-menu ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1em;
  line-height: 556%;
  display: block;
}
.side-menu ul li a.active {
  font-weight: bold;
  text-decoration: underline;
}
.side-menu.open {
  right: 0; /* メニューを表示 */
}

.close-btn {
  position: absolute; /* メニューの右上に配置 */
  top: 10px;
  right: 10px;
  width: 30px; /* ハンバーガーメニューと同じ幅 */
  height: 24px; /* ハンバーガーメニューと同じ高さ */
  background-color: transparent; /* 背景を透明に */
  color: #fff; /* テキスト色 */
  border: none; /* ボーダーなし */
  font-size: 46px; /* テキスト（×）サイズを調整 */
  cursor: pointer; /* ポインターアイコンを表示 */
  display: flex; /* ボタン内で×を中央揃え */
  justify-content: center;
  align-items: center;
}
.close-btn:focus {
  outline: none; /* フォーカス時の青い枠を削除 */
}

.section h1 {
  background-color: #D13840;
  font-size: 1.375em;
  font-weight: 800;
  color: #fff;
  padding: 18px 38px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  margin-bottom: 60px;
}
.section h2 {
  font-size: 0.98em;
  font-weight: 800;
  margin-bottom: 43px;
}
.section h3 {
  font-size: 1em;
  font-weight: 800;
  margin-bottom: 1em;
}
.section h3:before {
  content: "●";
  color: #F8B616;
  margin-right: 0.2em;
}
.section.type2 h1 {
  border: 0;
  border-left: 6px solid #D13840;
  font-size: 1.25em;
  background-color: #fff;
  color: #231815;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 5px 16px;
  line-height: 180%;
}

#section_3 .flex {
  margin-bottom: 117px;
  display: flex;
  flex-direction: column; /* 縦に並べる */
  gap: 65px; /* 行の間隔を設定 */
}
#section_3 .flex .row {
  display: flex; /* 横並び配置 */
  justify-content: center; /* 横幅の中央揃え */
  gap: 10px; /* 画像間の隙間を設定 */
}
#section_3 .flex .single {
  display: flex; /* 横並びの役割を明確に */
  justify-content: center; /* 画像を中央揃え */
}
#section_3 .flex img {
  max-width: 100%; /* 画像が親要素を超えないよう調整 */
  height: auto; /* アスペクト比を維持 */
  flex: 1; /* 均等幅で調整 */
}
#section_3 .flex div {
  text-align: left; /* テキストを中央揃え */
}
#section_3 table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 61px;
  margin-top: 50px;
}
#section_3 table tr th {
  background-color: #FEF1D3;
}
#section_3 table tr th, #section_3 table tr td {
  text-align: center;
  padding: 5px;
  border: 2px solid #FCDA8B;
}

#section_4 {
  margin-bottom: 131px;
}
#section_4 dl {
  border-bottom: 1px solid #B3B3B3;
  padding-bottom: 1.5em;
  margin-bottom: 1.5em;
  letter-spacing: 3px;
}
#section_4 dl dt {
  font-weight: 800;
}
#section_4 dl dd ol {
  list-style-position: inside;
  font-size: 1.125em;
  color: #D13840;
  font-weight: 800;
}
#section_4 dl dd ol li {
  margin-bottom: 0.8em;
}

footer .copyright {
  text-align: center;
  font-size: 0.875em;
}
footer.board.pink {
  background-size: contain;
}

/* -------- 基本スタイルは既存のコード -------- */
/* スマホ対応用のスタイル */
@media (max-width: 768px) { /* 画面幅768px以下の場合 */
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  td.sp, th.sp {
    display: table-cell;
  }
  /* 全体のフォントサイズを少し小さくする */
  body > div {
    font-size: 16px;
  }
  p {
    text-align: justify;
  }
  .board {
    padding: 30px 30px 10px;
  }
  #wrapper header {
    /* ハンバーガーメニュー */
  }
  #wrapper header .hamburger-menu {
    margin: 0 10px 0 0; /* スマホでは余白を削除 */
  }
  .side-menu {
    width: 70%; /* サイドメニューがスマホ画面に収まるよう調整 */
  }
  .side-menu ul li a {
    font-size: 3vw;
  }
  /* ヘッダーの高さ調整 */
  #wrapper header {
    height: 50px; /* 高さを少し浅くする */
  }
  #wrapper header .logo {
    margin-left: 10px;
  }
  /* セクション内のテキストや画像の調整 */
  .container {
    width: 90%; /* コンテンツの幅を狭める */
    margin: 0 auto;
  }
  /* 画像の縦横比を保ちながら小さくする */
  .image.img-full-width {
    width: 100%;
    height: auto;
  }
  .image.w500 {
    width: 100%;
  }
  p.ps {
    font-size: 3.2vw;
  }
  .section h1 {
    font-size: 4vw;
    padding: 18px 38px;
    margin-bottom: 60px;
  }
  .section h2 {
    font-size: 0.98em;
    margin-bottom: 43px;
  }
  .section h3 {
    font-size: 1em;
    margin-bottom: 1em;
  }
  .section.type2 h1 {
    border-left: 6px solid #D13840;
    font-size: 1.25em;
    padding: 5px 16px;
    line-height: 180%;
  }
  #section_1 {
    margin-bottom: 5vw;
  }
  #section_1 h1 {
    font-size: 1.25em;
    margin-bottom: 7vw;
  }
  /* セクションのマージンを調整 */
  #section_1, #section_2, #section_3, #section_4 {
    margin-top: 60px; /* ヘッダー以下に余白を確保 */
  }
  /* タブレット向けのテーブルは横スクロール可能 */
  #section_2 {
    padding-bottom: 0;
    margin-bottom: 2vw;
  }
  #section_2 table {
    width: 100%;
    font-size: 0.9em; /* テーブル内のフォントサイズを小さく */
  }
  #section_2 table td {
    width: 33%;
  }
  #section_3 .flex {
    margin-bottom: 8vw;
  }
  #section_3 .flex div {
    font-size: 3.5vw;
  }
  #section_3 table {
    font-size: 2vw;
    line-height: 150%;
  }
  /* フッターのスタイル */
  footer.board.pink {
    padding: 30px 0;
  }
  footer .copyright {
    font-size: 12px; /* フォントサイズを小さく */
  }
}

/*# sourceMappingURL=main.css.map */
