@charset "UTF-8";
/* リキッドレイアウト対応のための設定 */
body {
  color: #043518;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

/*  PCとSPの表示非表示の切り替え */
/*(md)px以上で表示*/
.pc-only {
  display: none;
}

/*モバイルのみ表示*/

/*画像の縦横比設定*/
img {
  display: block;
  width: 100%;
  height: auto;
}

/* aタグのスタイルリセット*/
a {
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
html {
  /* ベースのフォントサイズ */
  font-size: 16px;
  /* スマートフォン 375px以下 */
  /* タブレット 376px~inner */
  /* PC inner以上 */
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* Set core html defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  font: inherit;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  -webkit-appearance: none; /* Safari など */
  -moz-appearance: none;
       appearance: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/*addressタグのフォントリセット*/
address {
  font-style: normal;
}

/* わたしたちについて
***************************************************************/
.about {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.about__body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.about__img img {
  width: 100%;
  height: 30rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 0.625rem 0.625rem 0;
}

.about__textbox {
  padding: 1.25rem;
}

.about__heading {
  font-size: 1rem;
}

.about__text {
  font-size: 1rem;
}

/*アクセシビリティ・視差効果減の方のため
***************************************************************/
/*トップページ・活動報告セクション
***************************************************************/
.activity-report {
  padding-block: 2rem;
}

.activity-report__list {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 1.8125rem;
  gap: 1rem;
}

.activity-report__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 19.0625rem;
  margin-inline: auto;
  padding-inline: 1.125rem 1.25rem;
  padding-block: 1.875rem;
  border: 1px solid #999;
  border-radius: 0.3125rem;
  background-color: #fff;
}

/* ===== YouTube画像 ===== */
.activity-report__youtube {
  width: 100%;
  margin-inline: auto;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
}

.activity-report__item iframe {
  display: block;
  aspect-ratio: 305/159;
  width: 100%;
  height: auto;
}

.activity-report__heading {
  color: #333;
  font-weight: normal;
  font-size: 1rem;
  line-height: 1.19;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.activity-report__btn {
  margin-top: 1.5rem;
  text-align: center;
}

/*トップページ・活動報告ボタン
***************************************************************/
.btn-activity {
  display: inline-block;
  position: relative;
  min-width: 16.25rem;
  padding-inline: 2.3125rem;
  padding-block: 0.6875rem;
  border: 1px solid #1A1E82;
  background-color: #fff;
  -webkit-box-shadow: 5px 5px 0px 0 rgb(26, 30, 130);
          box-shadow: 5px 5px 0px 0 rgb(26, 30, 130);
  text-align: center;
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}

.btn-activity:hover {
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
  -webkit-box-shadow: unset;
          box-shadow: unset;
}

.btn-activity .btn-activity__text {
  display: inline-block;
  color: #333;
  font-weight: 900;
  font-size: 1rem;
}

/* ===== アイコン・Note ===== */
.btn-activity .icon-note {
  position: relative;
  padding-right: 2.0625rem;
}

.btn-activity .icon-note::after {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  aspect-ratio: 22/21;
  width: 1.375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/sns/note.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}

/* ===== アイコン・youtube ===== */
.btn-activity .icon-youtube {
  position: relative;
  padding-right: 1.9375rem;
}

.btn-activity .icon-youtube::after {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  aspect-ratio: 22/15;
  width: 1.375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/sns/youtube.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}

/* ===== ボタン矢印 ===== */
.btn-activity .arrow {
  display: inline-block;
  width: 6.8px;
  height: 9.7px;
}

.btn-activity .arrow::before,
.btn-activity .arrow::after {
  position: absolute;
  top: calc(50% - 1px);
  right: 1.25rem;
  width: 8px;
  height: 2px;
  -webkit-transform-origin: calc(100% - 1px) 50%;
          transform-origin: calc(100% - 1px) 50%;
  border-radius: 9999px;
  background-color: #333333;
  content: "";
}

.btn-activity .arrow::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.btn-activity .arrow::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* アクセシビリティ・動きを控える設定のユーザーには色の変化を無効 */
/*コンタクトボタン
***************************************************************/
.btn-contact {
  display: inline-block;
  position: relative;
  min-width: 17.3125rem;
  padding-inline: 2rem 2.0625rem;
  padding-block: 0.625rem 0.625rem;
  border-bottom: 5px solid #043518;
  background-color: #B8CE52;
  text-align: center;
}

.btn-contact::before {
  display: block;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  content: "";
}

.btn-contact span {
  display: inline-block;
  position: relative;
  padding-right: 2.1875rem;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.11em;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.btn-contact span::after {
  z-index: 10;
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.6875rem;
  height: 0.75rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #fff;
  content: "";
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.btn-contact span::before {
  z-index: 5;
  position: absolute;
  top: 60%;
  right: -0.1875rem;
  width: 0.6875rem;
  height: 0.75rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: rgba(153, 153, 153, 0.4);
  content: "";
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/* ===== 後援会入会ボタン ===== */
.btn-contact.btn-contact--join {
  background-color: #21A000;
}

/*ボタン・もっとみる
***************************************************************/
.btn {
  display: inline-block;
  min-width: 11.3125rem;
  padding-inline: 2.5rem;
  padding-block: 0.5rem;
  border: 1px dashed #333;
  text-align: center;
}

.btn span {
  display: inline-block;
  position: relative;
  padding-right: 2.4375rem;
  color: #333;
  font-weight: 700;
  font-size: 0.75rem;
}

.btn span::after {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  aspect-ratio: 1/1;
  width: 1.125rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/btn-arrow.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease;
}
/*お問い合わせ・ステップ
***************************************************************/
.contact-steps {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1.9375rem;
  margin-block: 0.625rem 1.75rem;
  gap: 3.125rem; /* 丸同士の間隔 */
  list-style: none;
}

/* 丸 */
.contact-steps li {
  display: grid;
  position: relative;
  place-content: center;
  width: 4.625rem;
  height: 4.625rem;
  border: 4px solid #B8CE52;
  border-radius: 50%;
  background: #fff;
  text-align: center;
}

.contact-steps .num {
  color: #043518;
  font-size: 0.5rem;
}

.contact-steps .label {
  font-size: 0.625rem;
}

/* 該当ページ */
.contact-steps .is-current {
  background-color: #B8CE52;
}

.contact-steps .is-current span {
  color: #fff;
}

/* 丸の間のコネクタ */
.contact-steps li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -100%;
  width: 3.875rem;
  height: 0.0625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 0.1875rem;
  background: #B8CE52;
  content: "";
}

/*お問い合わせ
***************************************************************/
.contact {
  padding-bottom: 4.1875rem;
}

/* === リード文 === */
.contact__info {
  margin-top: 1.5rem;
  color: #043518;
  font-size: 0.75rem;
  text-align: center;
}

/* ===== フォーム ===== */
table {
  width: 100%;
  max-width: 40rem;
  margin-top: 2.5rem;
  margin-inline: auto;
  color: #333;
  text-align: left;
}

tr + tr {
  padding-top: 1.5rem;
}

tr,
td,
th {
  display: block;
}

th a {
  color: #333;
  text-decoration: underline;
}

/* ===== プレースホルダー ===== */
::-webkit-input-placeholder {
  color: #999;
  font-size: 0.875rem;
}
::-moz-placeholder {
  color: #999;
  font-size: 0.875rem;
}
:-ms-input-placeholder {
  color: #999;
  font-size: 0.875rem;
}
::-ms-input-placeholder {
  color: #999;
  font-size: 0.875rem;
}
::placeholder {
  color: #999;
  font-size: 0.875rem;
}

/* ===== 入力項目、テキストエリア ===== */
input[type=text],
input[type=email],
textarea {
  display: block;
  width: 100%;
  margin-top: 0.5rem;
  padding-inline: 1rem;
  padding-block: 1rem;
  border-radius: 0.5rem;
  background-color: #F3F3F3;
}

th {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
}

/* ===== 入力欄フォーカス時 ===== */
input:focus,
textarea:focus {
  outline: 2px solid #043518;
}

/* ===== チェックボックス ===== */
input[type=checkbox] {
  position: relative;
  top: 3px;
  width: 20px;
  height: 20px;
  border: 1px solid #999;
  border-radius: 4px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-top: 0.5rem;
}

/* チェック群の並びと間隔 */
.checks {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  row-gap: 1.25rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 0.5rem;
}

label {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}

/* 既存のカスタムチェックと衝突しないよう微調整 */
input[type=checkbox] {
  top: 0;
  margin: 0;
}

input[type=checkbox]:checked {
  border: 1px solid #B8CE52;
  background: #B8CE52;
}

input[type=checkbox]:checked:before {
  position: absolute;
  top: 2px;
  left: 5px;
  width: 9px;
  height: 15px;
  -webkit-transform: rotate(50deg);
          transform: rotate(50deg);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: "";
}

/* ===== プライバシーポリシー ===== */
.contact__privacy {
  padding-bottom: 1rem;
}

/* ===== 送信ボタン ===== */
.contact__submit {
  margin-top: 3.5rem;
  text-align: center;
}

input[type=submit] {
  min-width: 21.25rem;
  margin-top: 3.5rem;
  padding-inline: 1rem;
  padding-block: 1rem;
  border: 1px solid #625C60;
  border-radius: 9999px;
  color: #333;
  font-weight: 500;
  font-size: 1rem;
  -webkit-transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

input[type=submit]:hover {
  border: 1px solid #B8CE52;
  background-color: #B8CE52;
  color: #fff;
}

/*お問い合わせ・確認画面
***************************************************************/
.contact__confirmation {
  padding-bottom: 4.1875rem;
}

.contact__confirmation td {
  padding-block: 1.5rem;
  border-bottom: 1px solid #000;
}

.contact__confirmation input[type=button] {
  display: block;
  min-width: 21.25rem;
  margin-top: 1.4375rem;
  margin-inline: auto;
  padding-inline: 1rem;
  padding-block: 1rem;
  color: #333;
  font-weight: 500;
  font-size: 1rem;
}

.contact__confirmationtr tr {
  padding-block: 1rem;
  border-bottom: 1px solid #333;
}

/*お問い合わせ・サンクス画面
***************************************************************/
.contact__thanks-text {
  margin-top: 1.5rem;
  color: #333;
  font-size: 0.75rem;
  text-align: center;
}

.contact__thanks-text02 {
  width: 100%;
  max-width: 40rem;
  margin-top: 1.5rem;
  margin-inline: auto;
  color: #333;
  font-size: 1rem;
}

/* ===== サイトトップへボタン ===== */
.contact__link {
  margin-top: 2.5625rem;
  text-align: center;
}

.contact__link span {
  position: relative;
  padding-left: 1.6875rem;
  color: #043518;
  font-size: 1rem;
}

.contact__link span::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.0625rem;
  height: 1.3125rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #043518;
  content: "";
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/*フローティングバナー
***************************************************************/
.floating {
  display: none;
}

.floating__text span {
  display: none;
}

/* ===== SNS ===== */

.floating__sns a img {
  display: none;
}

/* フッター
***************************************************************/
footer {
  padding-top: 3.5rem;
  overflow: clip;
  -webkit-box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.3);
  text-align: center;
}

.footer__top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 2.9375rem;
}

/* ===== フッターロゴ ===== */
.footer__logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 13.5625rem;
  margin-inline: auto;
  gap: 0.3125rem;
}

.footer__logo .footer-name {
  aspect-ratio: 172/64;
  max-width: 10.75rem;
}

.footer__logo .footer-zushi {
  aspect-ratio: 80/116;
  max-width: 2.5rem;
}

.footer__logo .footer-name,
.footer__logo .footer-zushi {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/* ===== 後援会事務所 ===== */
.footer__adress {
  margin-top: 1.5rem;
  font-weight: 500;
  font-size: 0.75rem;
  text-align: center;
}

/* ===== フッターメニュー ===== */
.footer__nav {
  margin-top: 2.9375rem;
}

.footer__nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.3125rem;
}

.footer__address-tel a {
  color: #333;
}

.footer__nav-item a {
  color: #043518;
  font-size: 0.75rem;
}

/* ===== SNSロゴ・SP ===== */
.footer__sns.sp-only {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2.9375rem;
  margin-top: 2.9375rem;
  gap: 0.9375rem;
}

.footer__sns.sp-only a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.1875rem;
  height: 2.1875rem;
}

/* ===== SNSロゴ・PC ===== */
.footer__sns.pc-only {
  display: none;
}

/* ===== プライバシーポリシー・SP ===== */
.footer__privacy-policy {
  margin-top: 2.9375rem;
}

.footer__privacy-policy a {
  color: #043518;
  font-size: 0.75rem;
}

/* ===== お問い合わせボタン ===== */
.footer__contact-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 2.9375rem;
  gap: 1.5rem;
}

/* ===== footer__bottom ===== */
.footer__bottom {
  margin-inline: calc(50% - 50vw);
  padding-inline: calc(50vw - 50%);
  padding-block: 0.3125rem 0.375rem;
  background-color: #B8CE52;
  text-align: center;
}

/* ===== プライバシーポリシー・PC ===== */
.footer__bottom a {
  display: none;
}

.footer small {
  display: block;
  font-size: 0.8125rem;
}

/* ファーストビュー
***************************************************************/
.fv {
  position: relative;
  aspect-ratio: 375/546;
  margin-top: 1rem;
  padding-top: 79vw;
  background-image: url(../images/top/fv-sp.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.fv__text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: calc(50% - 50vw);
  padding-inline: 1rem 2.9375rem;
  padding-block: 0.8125rem 0.75rem;
  background-color: #B8CE52;
  color: #fff;
  font-weight: 900;
  font-size: 1.75rem;
  line-height: 1.2142857143;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3000000119);
  -webkit-clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
}

.fv__heading {
  padding-block: 1.875rem;
}

.fv__name {
  aspect-ratio: 427/158;
  width: 26.6875rem;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ハンバーガーメニュー
***************************************************************/
.hamburger {
  z-index: 9999;
  width: 1.5rem;
  padding: 0;
}

.hamburger span {
  display: block;
  position: relative;
  width: 1.5rem;
  height: 0.125rem;
  background-color: #333;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
}

.hamburger span:nth-child(2) {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.hamburger.is-openSP span:nth-child(1) {
  top: 0.4375rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.hamburger.is-openSP span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-openSP span:nth-child(3) {
  top: -0.8125rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* ヘッダー
***************************************************************/
.header {
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3.25rem;
}

.header__inner,
.header__logo,
.header__logo-link,
.header__nav,
.header__nav-list,
.header__nav-item,
.header__nav-link {
  height: inherit;
}

.inner.header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__logo-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  z-index: 9999;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo-link .zushi {
  aspect-ratio: 28/40;
  width: 1.75rem;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.header__logo-link .name {
  z-index: 9999;
  aspect-ratio: 112/41;
  width: 4.9375rem;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.header__nav {
  display: none;
}

.header__nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
}

.header__nav-link {
  display: grid;
  place-items: center;
  color: #043518;
  font-size: 1rem;
}

.header__nav-item.header__nav-item--contact {
  display: grid;
  place-items: center;
}

/** スクロールででてくるヘッダー **/
.header__sticky {
  visibility: visible;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.75);
  -webkit-animation: slideDown 0.5s ease-in-out;
          animation: slideDown 0.5s ease-in-out;
  opacity: 1;
}

@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
/* inner
***************************************************************/
.inner {
  width: 100%;
  max-width: 31.25rem;
  margin-inline: auto;
  padding-right: 16px;
  padding-left: 16px;
}

/*トップページ・イントロダクション
***************************************************************/
.intro {
  padding-top: 1.5rem;
  padding-bottom: 15.875rem;
  background-image: url(../images/top/intro-bg-sp.png);
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
}

.intro__heading {
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 1.6;
  text-align: center;
}

.intro__body {
  padding-top: 1.5rem;
}

.intro__text {
  font-weight: 700;
  font-size: 1rem;
  line-height: 2;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.intro__text + .intro__text {
  margin-top: 1rem;
}

/* ニュース
***************************************************************/
.news {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.news__content {
  padding-block: 2rem;
  border-radius: 1.25rem;
  background-color: lightcyan;
}

.content__meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
  row-gap: 0.625rem;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.content__tag-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
  row-gap: 0.625rem;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.content__tag {
  padding-inline: 0.625rem;
  padding-block: 0 0.125rem;
  border: 1px solid black;
  border-radius: 0.3125rem;
}

.content__heading a {
  display: block;
  position: relative;
  padding-left: 0.3125rem;
  padding-block: 1.25rem;
  border-bottom: 1px solid;
  color: black;
  font-weight: 500;
}

.content__heading a:hover {
  color: rgb(2, 49, 85);
}

.content__heading a::after {
  display: grid;
  position: absolute;
  top: 50%;
  right: 0;
  place-content: center;
  width: 2.5rem;
  height: 2.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid;
  border-radius: 9999px;
  content: "›";
  font-weight: 500;
  font-size: 1.25rem;
}

.content__heading a:hover::after {
  color: rgb(2, 49, 85);
}

.sidebar {
  padding-block: 2.5rem;
}

.sidebar__link {
  color: black;
}

/*共通項目・各ページの上部余白
***************************************************************/
.page-top {
  padding-top: 5.625rem;
}

/*政策紹介
***************************************************************/
.policy {
  padding-bottom: 4.375rem;
}

.policy__intro {
  max-width: 37.5rem;
  margin-top: 2.375rem;
  margin-inline: auto;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
}

.policy__main {
  margin-top: 3rem;
}

/* ===== タブボタンリスト ===== */
.policy-tablist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  gap: 0.3125rem;
}

/* ===== タブボタン ===== */
.policy-tab__img {
  aspect-ratio: 1/1;
  width: 10.375rem;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid #B8CE52;
  border-radius: 9999px;
  background-color: #fff;
  -webkit-filter: drop-shadow(2px 2px 20px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(2px 2px 20px rgba(0, 0, 0, 0.1));
}

.policy-tab.is-active .policy-tab__img {
  border: 3px solid #043518;
}

/* ===== パネル ===== */
.policy-panels {
  margin-top: 3rem;
  padding-inline: 1rem;
  padding-block: 2.0625rem 4.5625rem;
  background-color: #fff;
  -webkit-filter: drop-shadow(3px 4px 26px rgba(0, 0, 0, 0.11));
          filter: drop-shadow(3px 4px 26px rgba(0, 0, 0, 0.11));
}

.policy-panels__heading-wrap {
  text-align: center;
}

.policy-panels__heading span {
  display: inline-block;
  position: relative;
  color: #043518;
  font-weight: 700;
  font-size: 1.125rem;
}

.policy-panels__heading span::before {
  display: block;
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}

/* ===== パネル・地域交通の充実 ===== */
.policy-panels__heading.policy-panels__heading--traffic span::before {
  top: 50%;
  left: -5.8125rem;
  aspect-ratio: 217/154;
  width: 4.8125rem;
  max-width: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(/images/policy/traffic.webp);
}

/* ===== パネル・儲かる農業 ===== */
.policy-panels__heading.policy-panels__heading--farming span::before {
  top: 50%;
  left: -5rem;
  aspect-ratio: 170/131;
  width: 4.375rem;
  max-width: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(/images/policy/farming.webp);
}

/* ===== パネル・地域産業 ===== */
.policy-panels__heading.policy-panels__heading--local-industry span::before {
  top: 0;
  left: -4.375rem;
  aspect-ratio: 230/123;
  width: 4.8125rem;
  max-width: 100%;
  background-image: url(/images/policy/local-industry.webp);
}

/* ===== パネル・道の駅 ===== */
.policy-panels__heading.policy-panels__heading--roadside-station span::before {
  top: 50%;
  left: -5.8125rem;
  aspect-ratio: 218/123;
  width: 5rem;
  max-width: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(/images/policy/roadside-station.webp);
}

/* ===== パネル・内容 ===== */
.policy-panels__main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 1.6875rem;
  gap: 2.6875rem;
}

.policy-panels__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}

.policy-panels__img {
  aspect-ratio: 463/348;
  width: 19.375rem;
  max-width: 100%;
}

.policy-panels__img img {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.policy-panels__textbox {
  width: 100%;
  max-width: 32.1875rem;
}

.policy-panels__text {
  font-weight: 500;
  font-size: 1rem;
  text-align: justify;
  text-justify: inter-ideograph;
}

/*プライバシーポリシー
***************************************************************/
.privacy {
  padding-bottom: 5.3125rem;
}

.privacy__main {
  margin-top: 2.125rem;
}

.privacy__main-intro,
.privacy__text {
  color: #333;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.38;
}

.privacy__textbox {
  margin-top: 2.75rem;
}

.privacy__text + .privacy__text {
  margin-top: 0.625rem;
}

.privacy__contact {
  color: #333;
}

/* ===== リンク ===== */
.privacy__text a,
.privacy__contact a {
  border-bottom: 1px solid;
  color: #043518;
}

/*共通項目（トップ、プロフィール）プロフィール画像
***************************************************************/
.profile-img {
  aspect-ratio: 238/277;
  width: 14.875rem;
  max-width: 100%;
}

.profile-img img {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/*プロフィールページ
***************************************************************/
.profile {
  padding-bottom: 4.875rem;
}

.profile__body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2rem;
  gap: 2.6875rem;
}

.profile__name {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.19;
}

.profile__name ruby rt {
  font-size: 1rem;
}

.profile__text {
  margin-top: 1.9375rem;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
}

/* ===== 名前の由来 ===== */
.profile__origin {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 20.625rem;
  margin-top: 4.875rem;
  margin-inline: auto;
  padding-inline: 1.8125rem;
  padding-block: 3rem 6.25rem;
  gap: 1rem;
  border: 1px solid #B8CE52;
  border-radius: 999px;
  background-color: #F8F8F8;
}

.profile__origin::before {
  display: block;
  position: absolute;
  top: -2.875rem;
  left: 50%;
  width: 1px;
  height: 2.875rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #B8CE52;
  content: "";
}

.profile__origin-img img {
  aspect-ratio: 109/156;
  width: 6.8125rem;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.profile__origin-heading {
  font-weight: 700;
  font-size: 1.0625rem;
}

.profile__origin-text {
  max-width: 18.75rem;
  margin-top: 1rem;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

/*プロフィールページ・略歴セクション
***************************************************************/
.record {
  padding-bottom: 2rem;
}

.record__list {
  margin: 0;
  padding-top: 1rem;
}

.record__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-block: 0.5rem;
  gap: 2.5625rem;
}

.record__item.record__item--p {
  padding-block: 0.5rem 1rem;
}

/*  節目破線の時の余白  */
.record__item.record__item--dotline {
  padding-block: 1rem 0.5rem;
}

.record__year {
  position: relative;
  width: 4rem;
  padding-right: 0.625rem;
  font-size: 1.125rem;
}

.record__body {
  position: relative;
  width: 76%;
  max-width: 100%;
}

/* 縦ライン */
.record__item::after {
  z-index: -1;
  position: absolute;
  top: 1.6875rem;
  left: 3.25rem;
  height: 100%;
  inline-size: 1px;
  background: #333;
  content: "";
}

/* 縦ライン・最後のみ破線 */
.record__item.record__item--last::after {
  height: 100%;
  background: repeating-linear-gradient(to bottom, #333 0, #333 0.25rem, transparent 0.25rem, transparent 0.5rem);
}

/* 点 */
.record__year span::before {
  display: block;
  z-index: 1;
  position: absolute;
  top: 0.375rem;
  right: -3%;
  inline-size: 16px;
  block-size: 16px;
  border-radius: 50%;
  background: #D2E8E5;
  content: "";
}

/* 年号脇の横線  */
.record__year::after {
  position: absolute;
  top: 0.875rem;
  right: -2.1875rem;
  width: 2.1875rem;
  height: 1px;
  background: #333;
  content: "";
}

/*  節目破線  */
.record__body.dotline::before {
  display: block;
  position: absolute;
  top: -1rem;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ccc;
  background: repeating-linear-gradient(to right, #ccc 0, #ccc 0.125rem, transparent 0.125rem, transparent 0.25rem);
  content: "";
}

.record__title {
  font-weight: 700;
  font-size: 1rem;
}

.record__text {
  padding-top: 0.625rem;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  text-align: justify;
  text-justify: inter-ideograph;
}

/* ===== 画像 ===== */
.record__img {
  aspect-ratio: 341/190;
  width: 100%;
  max-width: 21.3125rem;
  margin-top: 1.5rem;
}

.record__img.record__img--m {
  aspect-ratio: 348/231;
  max-width: 21.75rem;
}

.record__img.record__img--l {
  aspect-ratio: 341/190;
  max-width: 21.3125rem;
}

.record__img img {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/*共通項目（セクションタイトル）
***************************************************************/
.section-heading {
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-block: 0.6875rem;
  background: -webkit-gradient(linear, left top, right top, from(rgb(184, 206, 82)), color-stop(40%, transparent));
  background: linear-gradient(90deg, rgb(184, 206, 82) 0%, transparent 40%);
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 1.9;
  text-align: center;
}

/* スマホメニュー
***************************************************************/
.sp-nav {
  z-index: 9998;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding-inline: 2rem;
  padding-block: 1.875rem;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  background-color: white;
  -webkit-transition: -webkit-transform 0.5s 0s ease;
  transition: -webkit-transform 0.5s 0s ease;
  transition: transform 0.5s 0s ease;
  transition: transform 0.5s 0s ease, -webkit-transform 0.5s 0s ease;
}

.sp-nav.is-openSP {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.sp-nav__items {
  display: grid;
  grid-template-columns: 1fr;
  width: 18.4375rem;
  margin-top: 4.625rem;
  margin-inline: auto;
  gap: 1rem;
}

.sp-nav__item a {
  display: block;
  position: relative;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ddd;
  color: #043518;
  font-weight: 500;
  font-size: 0.9375rem;
}

.sp-nav__item a::before,
.sp-nav__item a::after {
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 10.7px;
  height: 2px;
  -webkit-transform-origin: calc(100% - 1px) 50%;
          transform-origin: calc(100% - 1px) 50%;
  border-radius: 9999px;
  background-color: #333333;
  content: "";
}

.sp-nav__item a::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.sp-nav__item a::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* ===== コンタクトボタン ===== */
.sp-nav__contact {
  margin-top: 1rem;
  text-align: center;
}

/* ===== SNS ===== */
.sp-nav__sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1.5rem;
  gap: 0.9375rem;
}

.sp-nav__sns-link img {
  aspect-ratio: 1/1;
  width: 2.75rem;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/*準備中
***************************************************************/
.standby {
  margin-block: 9.375rem;
}

/*トップページ・コンタクトセクション
***************************************************************/
.top-contact {
  padding-block: 5.8125rem;
  background-color: rgba(184, 206, 82, 0.25);
}

.top-contact__text {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.56;
}

.top-contact__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 3.5rem;
  gap: 1.5rem;
}

/*トップページ・政策紹介セクション
***************************************************************/
.top-policy {
  padding-block: 1.5625rem 4rem;
  background: rgba(184, 206, 82, 0.25);
}

.top-policy__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1rem;
  margin-inline: auto;
  gap: 0.3125rem;
}

.top-policy__img {
  aspect-ratio: 1/1;
  width: 10.375rem;
  max-width: 100%;
  border: 3px solid #B8CE52;
  border-radius: 9999px;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.1);
}

.top-policy__img img {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-policy__text {
  z-index: 1;
  position: relative;
  font-weight: 700;
  font-size: 1.25rem;
  text-align: center;
}

/* ===== 小見出し ===== */
.top-policy__text.top-policy__text--traffic,
.top-policy__text.top-policy__text--senior {
  margin-top: -5.625rem;
}

.top-policy__text.top-policy__text--childcare {
  margin-top: -6.25rem;
}

.top-policy__text.top-policy__text--local-industry,
.top-policy__text.top-policy__text--prevention {
  margin-top: -7.8125rem;
}

.top-policy__btn {
  margin-top: 1.8125rem;
  text-align: center;
}

/*トップページ・プロフィール
***************************************************************/
.top-profile {
  padding-block: 2.75rem 2rem;
}

.top-profile__body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2.6875rem;
}

.top-profile__name {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.19;
}

.top-profile__name ruby rt {
  font-size: 1.125rem;
}

.top-profile__text {
  margin-top: 0.625rem;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.75;
}

/* ===== ボタン ===== */
.top-profile__btn {
  margin-top: 1.625rem;
  text-align: center;
}
@media screen and (min-width: 780px) {
  .pc-only {
    display: block;
  }
  .sp-only {
    display: none;
  }
  html {
    font-size: 1.3333333333vw;
  }
  .about {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .about__body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .about__img {
    width: 60%;
    border-radius: 0 0.625rem 0.625rem 0;
  }
  .about__textbox {
    width: 40%;
    max-width: calc(-10% + 31.25rem);
    margin: 0 2.5rem 0 3.75rem;
    padding: 1.875rem 0 0;
  }
  .activity-report {
    padding-block: 4rem 4rem;
  }
  .activity-report__list {
    row-gap: 0.9375rem;
    margin-top: 7.0625rem;
    gap: 2.5rem;
  }
  .activity-report__item {
    width: 100%;
    max-width: 43.75rem;
  }
  .activity-report__heading {
    font-size: 1.25rem;
  }
  .activity-report__btn {
    margin-top: 2.5rem;
  }
  .btn {
    min-width: 17.3125rem;
    padding-inline: 1.875rem 1.875rem;
    padding-block: 0.375rem 0.4375rem;
    -webkit-transition: border 0.3s ease;
    transition: border 0.3s ease;
  }
  .btn span {
    padding-right: 2.875rem;
    font-size: 1.125rem;
  }
  .btn:hover span::after {
    right: -0.3125rem;
  }
  .contact-steps {
    margin-top: 3.8125rem;
    gap: 5rem;
  }
  .contact-steps li {
    width: 6.25rem;
    height: 6.25rem;
  }
  .contact-steps .num {
    font-size: 0.6875rem;
  }
  .contact-steps .label {
    font-size: 0.8125rem;
  }
  .contact-steps li:not(:last-child)::after {
    right: -100%;
    width: 5.5rem;
  }
  .contact {
    padding-bottom: 8rem;
  }
  .contact__info {
    margin-top: 2.5rem;
    font-size: 1rem;
  }
  table {
    margin-top: 5rem;
  }
  tr + tr {
    padding-top: 2rem;
  }
  .checks {
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
    row-gap: 0.75rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  input[type=submit] {
    min-width: 15rem;
    margin-top: 4rem;
    padding-block: 1.5rem;
  }
  .contact__confirmation {
    padding-bottom: 8rem;
  }
  .contact__confirmation input[type=button] {
    min-width: 15rem;
    margin-top: 2rem;
    padding-block: 1.5rem;
  }
  .contact__thanks-text {
    margin-top: 2.5rem;
    font-size: 1rem;
  }
  .contact__thanks-text02 {
    margin-top: 5rem;
  }
  .contact__link {
    margin-top: 3.3125rem;
  }
  .floating {
    z-index: 9999;
    position: fixed;
    right: 1vw;
    bottom: 2vw;
    padding-inline: 0.125rem;
    padding-block: 1rem;
    border: 3px solid #B8CE52;
    background-color: #fff;
    text-align: center;
  }
  .floating__text {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .floating__text span {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-bottom: 2.625rem;
    color: #043518;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.19;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
  .floating__text span::after {
    display: inline-block;
    position: absolute;
    top: 7.8125rem;
    left: 50%;
    width: 0.8125rem;
    height: 1.6875rem;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background-image: url(../images/float-arrow.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    content: "";
  }
  .floating__sns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 1rem;
    gap: 0.3125rem;
  }
  .floating__sns a {
    display: inline-block;
  }
  .floating__sns a img {
    display: inline-block;
    width: 2.5rem;
    height: 2.5rem;
  }
  footer {
    padding-top: 5.5rem;
  }
  .footer__top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .footer__logo {
    gap: 0.3125rem;
  }
  .footer__adress {
    margin-top: 2.25rem;
    font-size: 0.875rem;
    text-align: left;
  }
  .footer__nav {
    margin-top: 0;
  }
  .footer__nav-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2.375rem;
  }
  .footer__nav-item a {
    font-weight: 500;
    font-size: 0.875rem;
  }
  .footer__sns.sp-only {
    display: none;
  }
  .footer__sns.sp-only a {
    display: none;
  }
  .footer__sns.pc-only {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 2.25rem;
    gap: 0.75rem;
  }
  .footer__sns.pc-only a {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 2.1875rem;
    height: 2.1875rem;
  }
  .footer__privacy-policy {
    display: none;
  }
  .footer__contact-list {
    margin-top: 0;
  }
  .footer__bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .footer__bottom a {
    display: block;
    color: #043518;
    font-size: 0.75rem;
  }
  .fv {
    aspect-ratio: 1440/668;
    margin-top: 2.1875rem;
    padding-top: 10vw;
    background-image: url(../images/top/fv.webp);
  }
  .fv__text {
    padding-inline: 13vw 4.5625rem;
    padding-block: 1rem;
    font-size: 4.0625rem;
    line-height: 1.2615384615;
    -webkit-clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
  }
  .fv__heading {
    padding-left: 3.75rem;
    padding-block: 6.25rem;
  }
  .header {
    height: 5.8125rem;
  }
  .inner.header__inner {
    width: 84.9375rem;
    max-width: 100%;
  }
  .header__logo-link {
    gap: 0.3125rem;
  }
  .header__logo-link .zushi {
    aspect-ratio: 40/58;
    width: 2.5rem;
    max-width: 100%;
  }
  .header__logo-link .name {
    aspect-ratio: 172/64;
    width: 10.75rem;
  }
  .header__nav {
    display: block;
  }
  .inner {
    max-width: 1250px;
    padding-right: 25px;
    padding-left: 25px;
  }
  .intro {
    padding-top: 4.625rem;
    padding-bottom: 22.75rem;
    background-image: url(../images/top/intro-bg.png);
    background-position: center;
  }
  .intro__heading {
    font-size: 1.5rem;
    line-height: 1.3333333333;
  }
  .intro__body {
    width: 100%;
    max-width: 42.5rem;
    margin-inline: auto;
    padding-top: 2.5rem;
  }
  .news {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .news__content {
    width: 70%;
    padding-block: 5rem;
    border-radius: 1.25rem 0 0 1.25rem;
  }
  .sidebar {
    width: 30%;
    padding-block: 5rem;
    border-radius: 0 1.25rem 1.25rem 0;
    background-color: lightcyan;
  }
  .page-top {
    padding-top: 8.25rem;
  }
  .policy {
    padding-bottom: 6.25rem;
  }
  .policy__intro {
    margin-top: 2.4375rem;
    font-size: 1.25rem;
    line-height: 1.9;
  }
  .policy__main {
    margin-top: 2.875rem;
  }
  .policy-tablist {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    gap: 1.5rem;
  }
  .policy-tab__img {
    width: 12.5rem;
  }
  .policy-panels {
    margin-top: 6.625rem;
    padding-inline: 5.6875rem;
    padding-block: 5.1875rem 7.6875rem;
  }
  .policy-panels__heading span {
    padding-inline: 2.5rem;
    font-size: 1.5rem;
  }
  .policy-panels__heading.policy-panels__heading--traffic span::before {
    left: -13.5625rem;
    width: 13.5625rem;
  }
  .policy-panels__heading.policy-panels__heading--farming span::before {
    left: -12.5rem;
    width: 10.625rem;
  }
  .policy-panels__heading.policy-panels__heading--local-industry span::before {
    top: 50%;
    left: -14.375rem;
    width: 14.375rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .policy-panels__heading.policy-panels__heading--roadside-station span::before {
    left: -12.5rem;
    width: 13.625rem;
  }
  .policy-panels__main {
    margin-top: 5.6875rem;
    gap: 3.5625rem;
  }
  .policy-panels__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 2.375rem;
  }
  .policy-panels__item:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .policy-panels__img {
    width: 28.9375rem;
  }
  .privacy {
    padding-bottom: 5.25rem;
  }
  .privacy__main {
    max-width: 62.5rem;
    margin-top: 3.6875rem;
    margin-inline: auto;
  }
  .privacy__textbox {
    margin-top: 1.8125rem;
  }
  .profile-img {
    aspect-ratio: 411/476;
    width: 25.6875rem;
  }
  .profile {
    padding-bottom: 4rem;
  }
  .profile__body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 4rem;
    gap: 6.375rem;
  }
  .profile__name {
    font-size: 4rem;
  }
  .profile__name ruby rt {
    font-size: 2.5rem;
  }
  .profile__text {
    margin-top: 3.375rem;
  }
  .profile__origin {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 57.625rem;
    margin-top: 8.8125rem;
    margin-inline: auto;
    padding-inline: 5.4375rem;
    padding-block: 3.4375rem;
    gap: 1.5rem;
  }
  .profile__origin-text {
    max-width: 100%;
  }
  .record {
    padding-bottom: 5.9375rem;
  }
  .record__list {
    padding-top: 4rem;
    padding-left: 1.4375rem;
  }
  .record__item {
    padding-block: 0.9375rem;
    gap: 8.75rem;
  }
  .record__item.record__item--p {
    padding-block: 0.9375rem 2.5rem;
  }
  .record__item.record__item--dotline {
    padding-block: 2.5rem 0.9375rem;
  }
  .record__year {
    width: 5.875rem;
    font-size: 1.5rem;
  }
  .record__item::after {
    top: 1.875rem;
    left: 5.3125rem;
  }
  .record__item.record__item--last::after {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #333), color-stop(1.25rem, transparent)), repeating-linear-gradient(to bottom, #333 0, #333 0.25rem, transparent 0.25rem, transparent 0.5rem);
    background: linear-gradient(to bottom, #333 0 1.25rem, transparent 1.25rem 100%), repeating-linear-gradient(to bottom, #333 0, #333 0.25rem, transparent 0.25rem, transparent 0.5rem);
    background-position: 0 0, 0 1.25rem;
    background-size: 100% 100%, 100% calc(100% - 1.25rem);
    background-repeat: no-repeat;
  }
  .record__year span::before {
    top: 0.625rem;
    right: 0;
  }
  .record__year::after {
    top: 1.125rem;
    right: -6.1875rem;
    width: 6.25rem;
  }
  .record__body.dotline::before {
    top: -2.5rem;
    background: repeating-linear-gradient(to right, #ccc 0, #ccc 0.1875rem, transparent 0.1875rem, transparent 0.375rem);
  }
  .record__title {
    font-size: 1.125rem;
  }
  .record__text {
    font-size: 1.125rem;
    line-height: 2.1;
  }
  .section-heading {
    padding-block: 2.5625rem;
    font-size: 2.5rem;
    line-height: 1;
  }
  .section-heading span {
    display: inline-block;
  }
  .sp-nav {
    display: none;
  }
  .top-contact {
    padding-block: 4rem;
  }
  .top-contact__text {
    line-height: 1.9;
    text-align: center;
  }
  .top-contact__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 3.6875rem;
    gap: 1.25rem;
  }
  .top-policy {
    padding-block: 5rem 6.8125rem;
  }
  .top-policy__list {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 4rem;
    gap: 1.125rem;
  }
  .top-policy__img {
    width: 100%;
    max-width: 17.9375rem;
  }
  .top-policy__btn {
    margin-top: 3.25rem;
  }
  .top-profile {
    padding-block: 4.25rem 3.6875rem;
  }
  .top-profile__body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 4.125rem;
    gap: 6.625rem;
  }
  .top-profile__name {
    font-size: 5rem;
    line-height: 1;
  }
  .top-profile__name ruby rt {
    font-size: 2.125rem;
  }
  .top-profile__text {
    margin-top: 3.125rem;
    line-height: 2.38;
  }
  .top-profile__btn {
    margin-top: 2.5rem;
    text-align: left;
  }
}
@media screen and (prefers-reduced-motion: reduce) and (min-width: 780px) {
  .btn:hover span::after {
    right: 0;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media (any-hover: hover) {
  a:hover {
    opacity: 0.8;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    -webkit-animation-duration: 1ms !important;
            animation-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    -webkit-transition-duration: 1ms !important;
            transition-duration: 1ms !important;
  }
  .btn-activity:hover {
    -webkit-transform: none;
            transform: none;
    -webkit-box-shadow: 5px 5px 0px 0 rgb(26, 30, 130);
            box-shadow: 5px 5px 0px 0 rgb(26, 30, 130);
  }
}
/*# sourceMappingURL=map/styles.css.map */