@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;
  }
}

/**
 * 基本レイアウト
 */
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%;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .header {
    margin: 0 auto 40px;
  }
}
.header__title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background-color: #133b8b;
  padding: 20px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.header__title span {
  display: block;
  width: calc(100% - 40px);
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .header__title {
    font-size: 18px;
    padding: 15px;
    margin-bottom: 0px;
    letter-spacing: 0.03em;
    line-height: 1.5;
  }
  .header__title span {
    width: 100%;
  }
}
.header__text {
  width: 100%;
  padding: 10px 0;
  font-size: 12px;
  color: #fff;
  background-color: #152c66;
  margin: 0 auto 60px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .header__text {
    font-size: 12px;
    margin: 0 auto 30px;
    line-height: 1.5;
  }
}
.header__text span {
  display: block;
  width: calc(100% - 40px);
  max-width: 1000px;
  margin: 0 auto;
}
.header__subtitle {
  width: calc(100% - 40px);
  max-width: 1000px;
  font-size: 36px;
  color: #333;
  margin: 0 auto 25px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .header__subtitle {
    font-size: 26px;
    margin: 0 auto 20px;
    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: 1em;
}
.main__section-text:last-child {
  margin-bottom: 40px;
}
.main__section-text span {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .main__section-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  .main__section-text span {
    font-size: 13px;
  }
}
.main__section-text--note {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .main__section-text--note {
    font-size: 13px;
    margin-bottom: 30px;
  }
}
.main__section-list div {
  display: flex;
  flex-direction: row;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .main__section-list div {
    flex-direction: column;
  }
}
.main__section-list dt {
  font-weight: 700;
  min-width: 150px;
  flex-shrink: 0;
}
.main__section-list dd {
  margin-left: 0;
}
.main__section-list-item {
  margin-bottom: 10px;
}
.main__section-list-item:last-child {
  margin-bottom: 0;
}
.main__section-list-item-sub {
  font-size: 13px;
  color: #666;
}
@media screen and (max-width: 767px) {
  .main__section-list-item-sub {
    font-size: 12px;
  }
}

/* コンテンツブロック */
.content__blocks {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .content__blocks {
    margin-bottom: 30px;
  }
}
.content__block {
  display: flex;
  margin-bottom: 40px;
  background-color: #f3f3f3;
  padding: 35px;
  overflow: hidden;
}
.content__block:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .content__block {
    flex-direction: column;
    margin-bottom: 30px;
    padding: 25px;
  }
}
.content__image {
  flex: 0 0 40%;
}
.content__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .content__image {
    flex: none;
    height: 200px;
    margin-bottom: 15px;
  }
}
.content__content {
  flex: 1;
  padding: 0px 25px;
}
@media screen and (max-width: 767px) {
  .content__content {
    padding: 0;
  }
}
.content__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .content__title {
    font-size: 16px;
    line-height: 1.3;
  }
}
.content__text {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .content__text {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 12px;
    margin-bottom: 15px;
  }
}

/* フッター */
.footer {
  padding: 20px 0;
  margin: 50px auto 0;
  text-align: center;
  border-top: 1px solid #eee;
  background-color: #133b8b;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 15px 0;
    margin: 30px auto 0;
  }
}
.footer__copyright {
  font-size: 12px;
  color: #eee;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    font-size: 11px;
  }
}

/* ボタン */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}
.button--more {
  padding: 8px 26px;
  font-size: 14px;
  background-color: #133b8b;
  border: 1px solid #133b8b;
  color: white;
  align-self: flex-start;
  margin-top: auto;
}
@media screen and (min-width: 768px) {
  .button--more:hover {
    background-color: #fff;
    color: #133b8b;
  }
}
@media screen and (max-width: 767px) {
  .button--more {
    padding: 10px 20px;
    font-size: 13px;
    width: 100%;
    justify-content: center;
  }
}
.button--back {
  position: relative;
  display: inline-block;
  padding: 10px 100px;
  background-color: #fff;
  border: none;
  border-radius: 5px;
  border: 1px solid #133b8b;
  color: #133b8b;
  font-size: 16px;
  cursor: pointer;
}
.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;
  }
}
.button__container {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .button__container {
    margin-bottom: 30px;
  }
}

/**
 * ユーティリティクラス
 */
/* 画像 */
.u-img--responsive {
  max-width: 100%;
  height: auto;
  display: block;
}
