@charset "UTF-8";
/**
 * Webフォント
 */
/* Google Fonts のローカルオーバーライド
 * Google Fontsからのインポートは削除し、HTMLで読み込む方式に変更
 * font-display: swap を使用して、フォント読み込み中はシステムフォントで表示
 */
@font-face {
  font-family: "Zen Maru Gothic";
  font-style: normal;
  font-weight: 400;
  font-display: swap; /* フォント読み込み中はシステムフォントで表示 */
  src: local("Zen Maru Gothic");
}
@font-face {
  font-family: "Zen Maru Gothic";
  font-style: normal;
  font-weight: 700;
  font-display: swap; /* フォント読み込み中はシステムフォントで表示 */
  src: local("Zen Maru Gothic");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  font-display: swap; /* フォント読み込み中はシステムフォントで表示 */
  src: local("Noto Sans JP");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  font-display: swap; /* フォント読み込み中はシステムフォントで表示 */
  src: local("Noto Sans JP");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  font-display: swap; /* フォント読み込み中はシステムフォントで表示 */
  src: local("Noto Sans JP");
}
/**
 * リセットCSS
 */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  position: relative;
  font-size: 16px;
  line-height: 1.5;
  color: #4B2413;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
}

html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #4B2413;
}

img {
  max-width: 100%;
  height: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

br.pc-only {
  display: inline;
}
@media screen and (max-width: 767px) {
  br.pc-only {
    display: none;
  }
}

br.sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  br.sp-only {
    display: inline;
  }
}

/**
 * 基本レイアウト - bosaiページ
 */
body {
  background-color: #fff;
  color: #333;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .container {
    padding: 0 15px;
  }
}

/**
 * 共通コンポーネント
 */
/* ヘッダー */
.header {
  margin: 0 auto 60px;
  position: relative;
  display: block;
  width: 100%;
  max-width: 1000px;
  padding: 20px 0;
  text-align: center;
  background-color: #fee144;
}
@media screen and (max-width: 767px) {
  .header {
    margin: 0 auto 40px;
  }
}
.header__visual {
  display: inline-block;
  text-align: center;
}
.header__visual img {
  width: 450px;
  height: auto;
}

.header__subtitle {
  width: calc(100% - 40px);
  max-width: 1000px;
  font-size: 36px;
  color: #333;
  margin: 0 auto 60px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .header__subtitle {
    font-size: 26px;
    margin: 0 auto 40px;
    width: calc(100% - 40px);
  }
}

/* メインコンテンツ */
.main {
  width: calc(100% - 40px);
  max-width: 1000px;
  margin: 0 auto 60px;
  padding-bottom: 20px;
  /* ダウンロードセクション */
}
@media screen and (max-width: 767px) {
  .main {
    width: calc(100% - 40px);
    margin: 0 auto 40px;
    padding-bottom: 20px;
  }
}
.main__section {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .main__section {
    margin-bottom: 40px;
  }
}
.main__section-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  border-left: 5px solid #133b8b;
  padding-left: 10px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .main__section-title {
    font-size: 20px;
    margin-bottom: 12px;
    padding-left: 8px;
  }
}
.main__section-text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .main__section-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
  }
}
.main__section-text--note {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 30px;
}
.main__section-text a {
  text-decoration: underline;
}
.main__section-text a:hover {
  text-decoration: none;
}
.main__video-container {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .main__video-container {
    flex-direction: column;
  }
}
.main__video-container-item {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .main__video-container-item {
    width: 100%;
  }
}
.main__video-container-item iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.main__download-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: 40px;
  color: #333;
}
@media screen and (max-width: 767px) {
  .main__download-title {
    font-size: 16px;
  }
}
.main__download-note {
  line-height: 1.6;
  margin-bottom: 60px;
  margin-top: 60px;
  background-color: #f3f3f3;
  border-radius: 8px;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .main__download-note {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    border-radius: 0px;
    font-size: 15px;
    padding: 20px 15px;
    margin-bottom: 40px;
    margin-top: 40px;
  }
}
.main__download-note a {
  text-decoration: underline;
}
.main__download-note a:hover {
  text-decoration: none;
}
.main__download-container {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .main__download-container {
    flex-direction: column;
  }
}
.main__download-container img {
  width: 400px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .main__download-container img {
    width: 100%;
  }
}
.main__download-container-item {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .main__download-container-item {
    flex-direction: column;
  }
}
.main__download-container-item img {
  width: 200px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .main__download-container-item img {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .main__download-container--col3 img {
    width: 100%;
  }
}
.main__download-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 30px;
}
.main__download-list li {
  margin-bottom: 10px;
}
.main__download-list li:last-child {
  margin-bottom: 0;
}
.main__download-list li a {
  text-decoration: underline;
}
.main__download-list li a:hover {
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .main__download-list li a {
    font-size: 15px;
  }
}

/* ボタン */
.button__container--back {
  text-align: center;
  margin-bottom: 40px;
}

.button--back {
  position: relative;
  display: inline-block;
  padding: 10px 100px;
  background-color: #fff;
  border: 1px solid #133b8b;
  border-radius: 5px;
  color: #133b8b;
  font-size: 16px;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
}
.button--back svg {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.button--back svg path {
  transition: fill 0.3s;
}
@media screen and (min-width: 768px) {
  .button--back:hover {
    background-color: #133b8b;
    color: #fff;
  }
  .button--back:hover svg path {
    fill: #fff;
  }
}
@media screen and (max-width: 767px) {
  .button--back {
    padding: 8px 40px;
    font-size: 15px;
    width: calc(100% - 40px);
    border: 2px solid #133b8b;
  }
}

/* ユーティリティクラス */
.u-img--responsive {
  max-width: 100%;
  height: auto;
}

/* PC/SPでの表示切り替え */
@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}

/* フッター */
.footer {
  background-color: #133b8b;
  padding: 20px 0;
  text-align: center;
  margin-top: 60px;
}
.footer__copyright {
  font-size: 14px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    margin-top: 40px;
    padding: 15px 0;
  }
}
