@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

@media screen and (min-width: 901px) {
  .hidden-pc {
    display: none; /* パソコン表示で非表示にする */
  }
}

@media screen and (max-width: 767px) {
  .hidden-sp {
    display: none; /* スマートフォン表示で非表示にする */
  }
}

@media screen and (min-width: 768px) {
  .hidden-tb {
    display: none; /* タブレット表示で非表示にする */
  }
}

.inner {
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 901px) {
  .inner {
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1366px;
    margin-left: auto;
    margin-right: auto;
  }
}

.title {
  font-size: 30px;
  font-weight: bold;
  background-image: url(../img/title-line.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0 92%;
  letter-spacing: 3px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}
@media screen and (min-width: 901px) {
  .title {
    font-size: 40px;
    letter-spacing: 4px;
    margin-left: 70px;
  }
}

body {
  background: #F9F9F9;
  color: #555555;
  font-size: 16px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 500;
}

body.fixed {
  overflow: hidden;
}

/* ---------- 背景画像コンテンツ ---------- */
.container {
  height: 555px; /* 高さを指定600 */
  width: 100%; /* 幅を指定 */
  background-image: url(../img/FV.webp); /* 画像のパス */
  background-position: center; /* 画像の中央に配置 */
  background-size: cover; /* 画像を全て表示 */
  position: relative; /* 相対配置 */
  top: 0; /* 上から0px */
}
@media screen and (min-width: 901px) {
  .container {
    height: 768px;
    margin: 0; /* マージンをリセット */
    padding: 0; /* パディングをリセット */
    overflow: hidden;
    text-align: center;
  }
}

.no-bg {
  background: none !important; /* 背景画像を消す */
  height: auto; /* 高さを自動調整 */
  /* 他のプロパティに影響を与えないようにする */
  overflow: visible; /* 他のコンテンツが消えないように */
  position: relative;
}

/* .no-bg の影響を受けないように、drawer-content の位置を確保する */
.container.no-bg .drawer-content {
  position: fixed; /* 高さや幅の問題を回避するため */
  top: 50px;
  left: 0;
  width: 100%;
  height: 100%;
  background: #F9F9F9;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  z-index: 999; /* 他のコンテンツの上に表示するため */
}

/* ---------- ヘッダー ---------- */
.header {
  position: relative;
  background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  padding: 15px;
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; /* 要素を左右に配置 */
  align-items: center;
  position: fixed; /* 固定表示 */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; /* ヘッダーを最前面に表示 */
}
@media screen and (min-width: 901px) {
  .header {
    width: clamp(57.5rem, 94.5827232796vw, 80.75rem);
    padding: 20px 30px 20px 40px;
    margin: 20px;
    height: 90px;
    border-radius: 100px;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-52%);
            transform: translateX(-52%);
  }
}

.header__logo {
  text-align: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__logo a img {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.header__logo a:hover img {
  opacity: 0.7;
}
.header__logo img {
  width: 116px;
}
@media screen and (min-width: 901px) {
  .header__logo img {
    width: 169px;
  }
}

.header__nav {
  color: #3B4043;
  list-style: none;
}
.header__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 901px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 901px) {
  .header__nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 23px;
  }
}

.header__nav-item {
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 901px) {
  .header__nav-item {
    position: relative;
  }
  .header__nav-item:not(:last-child) a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: #3B4043;
    -webkit-transition: width 0.3s ease;
    transition: width 0.3s ease;
  }
  .header__nav-item:not(:last-child) a:hover::after {
    width: 100%;
  }
  .header__nav-item a {
    letter-spacing: 0.8;
    font-weight: 700;
    display: inline-block;
    white-space: nowrap;
    text-decoration: none;
    color: #3B4043;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
}

@media screen and (min-width: 901px) {
  .header__contact-button {
    cursor: pointer;
    width: 100%; /* 幅を100%に設定 */
    border: 2px solid #F7B560;
    border-radius: 45px;
    background: #F7B560;
    color: #FFFFFF;
    font-weight: 700;
    display: inline-block;
    text-align: center;
    -webkit-transition: background 0.3s ease, color 0.3s ease;
    transition: background 0.3s ease, color 0.3s ease;
  }
  .header__contact-button:hover {
    background: #ffffff;
    color: #F7B560;
  }
  .header__contact-button a {
    padding: 10px 22px;
    position: static; /* 下線アニメーションを無効化 */
    text-decoration: none; /* 下線を無効化 */
    color: inherit; /* 親の色を継承してホバー時に色が変わらないようにする */
  }
  .header__contact-button a::after {
    content: none; /* 下線の疑似要素を無効化 */
  }
}

@media screen and (min-width: 901px) {
  .header__open {
    display: none;
  }
}

.drawer-icon {
  position: relative; /*ボタン内側の基点となるためrelativeを指定*/
  width: 50px;
  height: 50px;
  z-index: 1001;
  /*ボタン内側*/
  /*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/
}
.drawer-icon span {
  top: 0;
  right: 5px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s; /*アニメーションの時間を指定*/
  position: absolute; /*ボタン内側の基点となるためrelativeを指定*/
  width: 45%;
  height: 2px;
  border-radius: 5px;
  background: #93C572; /*背景色を指定*/
  display: inline-block;
  -webkit-transition: top 0.4s linear, -webkit-transform 0.4s linear;
  transition: top 0.4s linear, -webkit-transform 0.4s linear;
  transition: transform 0.4s linear, top 0.4s linear;
  transition: transform 0.4s linear, top 0.4s linear, -webkit-transform 0.4s linear;
}
.drawer-icon span:nth-of-type(1) {
  top: 14px;
}
.drawer-icon span:nth-of-type(2) {
  top: 14px;
}
.drawer-icon span:nth-of-type(3) {
  top: 20px;
}
.drawer-icon span:nth-of-type(3)::after {
  content: "MENU";
  position: absolute;
  top: 5px;
  left: -3.5px;
  color: #93C572;
  font-size: 10px;
  text-transform: uppercase;
}
.drawer-icon.active span:nth-of-type(1) {
  top: 14px;
  left: 18px;
  -webkit-transform: translateY(6px) rotate(-40deg);
          transform: translateY(6px) rotate(-40deg);
}
.drawer-icon.active span:nth-of-type(2) {
  opacity: 0;
}
.drawer-icon.active span:nth-of-type(3) {
  top: 26px;
  left: 18px;
  -webkit-transform: translateY(-6px) rotate(40deg);
          transform: translateY(-6px) rotate(40deg);
}
.drawer-icon.active span:nth-of-type(3)::after {
  content: "close"; /*3つ目の要素のafterにClose表示を指定*/
  -webkit-transform: translateY(0) rotate(-40deg);
          transform: translateY(0) rotate(-40deg);
  top: 5px;
  left: 5px;
}

/* ---------- ドロワーコンテンツ ---------- */
.drawer-content {
  position: fixed;
  top: 50px; /* ヘッダーの高さの下に設定 */
  right: 0; /* 右上に配置 */
  width: 100%;
  height: calc(100% - 50px); /* ヘッダーの高さ分を差し引く */
  padding: 0 20px 30px;
  z-index: 999; /* ヘッダーの下に表示されるように設定 */
  background: #F9F9F9;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  -webkit-transform: translate(100%, -100%);
          transform: translate(100%, -100%); /* 右上に隠す */
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: -webkit-transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1); /* 滑らかな動きに調整 */
}
.drawer-content.active {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0); /* 画面内に表示 */
}
.drawer-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.drawer-content li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #93C572;
  cursor: pointer; /* カーソルをポインタにする */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* aタグのクリック範囲を拡大 */
}
.drawer-content li a {
  display: block; /* aタグ全体をクリック可能にする */
  width: 100%; /* li全体をカバー */
  height: 100%; /* li全体をカバー */
  text-decoration: none;
  color: inherit; /* リンクの色を継承 */
  list-style: none;
  padding: 16px 0; /* パディングをliからaタグに移動 */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.drawer-content li::before {
  content: "";
  position: absolute;
  width: 25px;
  border: 1px solid #93C572;
  top: 50%;
  right: 0;
}
.drawer-content li::after {
  content: "";
  position: absolute;
  width: 9px;
  border: 1px solid #93C572;
  right: 0;
  top: 25px;
  border-radius: 2px;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
}
.drawer-content li:hover {
  background-color: #f0f0f0;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.title-ja {
  font-weight: 700;
  color: #3B4043;
}

.title-en {
  font-size: 12px;
  margin-left: 10px;
  color: #F7B560;
}

.drawer-info {
  color: #93C572;
  margin-top: 10px;
  text-align: center;
}

.drawer-info__text {
  font-size: 14px;
  font-weight: 700;
}

.drawer-info-tel {
  font-size: 20px;
  font-weight: 700;
  color: #93C572;
}

.drawer-info__g2 {
  margin-top: 5px;
}

.drawer-info__button {
  margin: 18px auto 0 auto; /* 上に25px、左右は中央寄せ、下は0 */
  width: 300px;
  height: 48px;
  border-radius: 45px;
  background: #F7B560;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* Flexboxを有効にする */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* 水平方向の中央揃え */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 垂直方向の中央揃え */
  padding: 0; /* paddingをリセット */
  text-align: center;
  -webkit-transition: background 0.4s, color 0.4s;
  transition: background 0.4s, color 0.4s;
}
.drawer-info__button:hover {
  background: #ffffff;
  color: #F7B560;
  border: 2px solid #F7B560;
}

/* ---------- ファーストビュー ---------- */
.fv {
  width: 100%;
  height: 600px; /* 画面全体を占める */
  overflow: hidden;
  position: absolute; /* PCでは絶対位置に変更 */
  top: 0;
  left: 0;
}
@media screen and (min-width: 901px) {
  .fv {
    height: 800px;
  }
}

.fv__content {
  position: absolute;
  top: 55%;
  left: 52%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); /* 両軸で中央揃え */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 5px; /* ロゴとテキストの間のスペース */
  width: 100%;
}
@media screen and (min-width: 901px) {
  .fv__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    top: 53%;
    left: 50%;
    max-width: 1000px;
  }
}

.fv__image img {
  width: 75px; /* ロゴのサイズ */
  height: auto; /* アスペクト比を維持する */
}
@media screen and (min-width: 901px) {
  .fv__image img {
    width: 203px;
  }
}

.fv__text {
  font-size: 25px;
  font-weight: 700;
  color: #93C572;
  letter-spacing: 3.75px;
}
@media screen and (min-width: 901px) {
  .fv__text {
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    font-size: 48px;
    letter-spacing: 7.5px;
  }
}
@media screen and (min-width: 1200px) {
  .fv__text {
    font-size: 50px;
  }
}

/*スクロールダウン全体の場所*/
.scrolldown {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  bottom: 30%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); /* 両軸で中央揃え */
  /*矢印の動き1秒かけて永遠にループ*/
  -webkit-animation: arrowmove 2s ease-in-out infinite;
          animation: arrowmove 2s ease-in-out infinite;
  /*Scrollテキストの描写*/
  /* 矢印の描写 */
}
@media screen and (max-width: 767px) {
  .scrolldown {
    display: none;
  }
}
.scrolldown span {
  /*テキストの形状*/
  font-family: "Archivo Narrow", sans-serif;
  color: #F9F9F9;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  font-size: 14px;
}
.scrolldown::before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: -75px;
  right: 20px;
  /*矢印の形状*/
  width: 3px;
  height: 20px;
  background: #F9F9F9;
  -webkit-transform: skewX(-31deg);
          transform: skewX(-31deg);
}
.scrolldown::after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: -75px;
  right: 26px;
  /*矢印の形状*/
  width: 3px;
  height: 65px;
  background: #F9F9F9;
}

/*スクロール↓下からの距離が変化して全体が下→上→下に動く*/
@-webkit-keyframes arrowmove {
  0% {
    bottom: 10%;
  }
  50% {
    bottom: 12%;
  }
  100% {
    bottom: 10%;
  }
}
@keyframes arrowmove {
  0% {
    bottom: 10%;
  }
  50% {
    bottom: 12%;
  }
  100% {
    bottom: 10%;
  }
}
/* ---------- アバウトabout ---------- */
.about {
  padding-top: 40px;
  padding-bottom: 45px;
}
@media screen and (min-width: 901px) {
  .about {
    padding-top: 50px;
    padding-bottom: 40px;
  }
}

@media screen and (min-width: 901px) {
  .about__inner {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
  }
}

.about__contents {
  margin: 0 auto;
}

.about__group1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.about__group2 {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 901px) {
  .about__group2 {
    margin-top: 15px;
  }
}

.image-1 {
  margin-left: 34px;
}
@media screen and (min-width: 901px) {
  .image-1 {
    margin-left: 0;
  }
}
.image-1 img {
  width: 63px;
}
@media screen and (min-width: 901px) {
  .image-1 img {
    width: 200px;
  }
}

.image-2 {
  margin-right: 42px;
  margin-top: 10px;
}
@media screen and (min-width: 901px) {
  .image-2 {
    margin-right: 0;
    margin-top: 36px;
  }
}
.image-2 img {
  width: 57px;
}
@media screen and (min-width: 901px) {
  .image-2 img {
    width: 181px;
  }
}

.about__box {
  margin-top: 10px;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 901px) {
  .about__box {
    margin-top: -145px;
  }
}

@media screen and (min-width: 901px) {
  .box__logo {
    margin-bottom: 50px;
  }
}
.box__logo img {
  width: 232px;
}
@media screen and (min-width: 901px) {
  .box__logo img {
    width: 314px;
  }
}

.box__lead {
  font-weight: bold;
  line-height: 2;
  margin-top: 22px;
}
@media screen and (min-width: 901px) {
  .box__lead {
    margin-top: 15px;
  }
}

.image-3 {
  margin-left: 45px;
}
@media screen and (min-width: 901px) {
  .image-3 {
    margin-left: 110px;
    margin-bottom: 0;
  }
}
.image-3 img {
  width: 86px;
}
@media screen and (min-width: 901px) {
  .image-3 img {
    width: 200px;
  }
}

.image-4 {
  margin-right: 58px;
}
@media screen and (min-width: 901px) {
  .image-4 {
    margin-right: 22px;
  }
}
.image-4 img {
  width: 97px;
}
@media screen and (min-width: 901px) {
  .image-4 img {
    width: 235px;
  }
}

/* 初期状態は非表示 */
.fadeIn01, .fadeIn02, .fadeIn03, .fadeIn04 {
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  opacity: 0;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
}

.fadeIn01.visible {
  -webkit-animation-name: fadeIn01;
          animation-name: fadeIn01;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  opacity: 0;
}

@-webkit-keyframes fadeIn01 {
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn01 {
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.fadeIn02.visible {
  -webkit-animation-name: fadeIn02;
          animation-name: fadeIn02;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  opacity: 0;
}

@-webkit-keyframes fadeIn02 {
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn02 {
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.fadeIn03.visible {
  -webkit-animation-name: fadeIn03;
          animation-name: fadeIn03;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  opacity: 0;
}

@-webkit-keyframes fadeIn03 {
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn03 {
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.fadeIn04.visible {
  -webkit-animation-name: fadeIn04;
          animation-name: fadeIn04;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  opacity: 0;
}

@-webkit-keyframes fadeIn04 {
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn04 {
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
/* ---------- 活動紹介 Works ---------- */
.works {
  padding-top: 40px;
  padding-bottom: 88px;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1607843137);
          box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1607843137);
}
@media screen and (min-width: 901px) {
  .works {
    padding-top: min(5.8565153734vw, 75px);
    padding-right: min(3.6603221083vw, 50px);
    padding-bottom: min(5.8565153734vw, 80px);
    padding-left: min(0vw, 0px);
    border-radius: 0 100px 100px 0;
    margin-right: min(14.8609077599vw, 203px);
  }
}
@media screen and (min-width: 1367px) {
  .works {
    max-width: 1163px;
    border-radius: 100px;
    margin-inline: auto;
  }
}

.works__inner {
  overflow: hidden;
}
@media screen and (min-width: 901px) {
  .works__inner {
    max-width: 1366px;
    margin: 0;
  }
}

.works__title {
  margin-bottom: 30px;
}
@media screen and (min-width: 901px) {
  .works__title {
    font-size: 40px;
    margin-bottom: 25px;
    margin-left: 204px;
  }
}

.works-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px; /* タブ間の間隔 */
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .works-tab {
    max-width: 500px;
  }
}
@media screen and (min-width: 901px) {
  .works-tab {
    max-width: 620px;
    margin-left: 200px;
  }
}
@media screen and (min-width: 1200px) {
  .works-tab {
    gap: 19px;
  }
}
.works-tab li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1; /* 各タブを均等に成長させる */
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.works-tab li:hover a {
  background-color: #93C572;
  color: #FFF;
}
.works-tab li.active a {
  background: #93C572;
  color: #F9F9F9;
  border-radius: 10px;
}
@media screen and (min-width: 901px) {
  .works-tab li.active a {
    border-radius: 20px;
  }
}
.works-tab a {
  display: grid;
  place-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* 中央に配置 */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 中央に配置 */
  width: 100%; /* リンク全体をリストアイテムに広げる */
  height: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* パディングを含むようにする */
  text-decoration: none; /* リンクの下線を削除 */
  text-align: center;
  color: #F7B560;
  font-weight: bold;
  border-radius: 10px;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
  -webkit-transition: 0.3s;
  transition: 0.3s; /* 背景色の変更をスムーズに */
}
@media screen and (min-width: 901px) {
  .works-tab a {
    width: 140px;
    border-radius: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .works-tab a {
    width: 190px;
    height: 65px;
    font-size: 20px;
  }
}

.work03-ec {
  font-size: 14px;
}

/*エリアの表示非表示と形状*/
.area {
  visibility: hidden;
  opacity: 0; /*透過0*/
  height: 0;
  /*areaにis-activeというクラスがついた時の形状*/
}
.area.is-active {
  visibility: visible;
  height: auto;
  -webkit-animation-name: displayAnime;
          animation-name: displayAnime; /*ふわっと表示させるためのアニメーション*/
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.W1 {
  margin-top: 40px;
}
@media screen and (min-width: 901px) {
  .W1 {
    margin-top: 50px;
  }
}
@media screen and (min-width: 901px) {
  .W1 p {
    margin-left: 200px;
  }
}

@media screen and (min-width: 901px) {
  .W2 p {
    margin-left: 200px;
  }
}

@media screen and (min-width: 901px) {
  .W3 p {
    margin-left: 200px;
  }
}

.swiper-container {
  margin-top: 56px;
  width: 100%;
}
@media screen and (min-width: 901px) {
  .swiper-container {
    margin-top: 65px;
  }
}

/* スライドの動き等速 */
.swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear; /* 滑らかな動きに変更 */
}

.swiper-slide {
  text-align: center;
  width: 100%;
  /* 画像のサイズ調整 */
}
.swiper-slide img {
  display: block;
  width: 250px; /* SPでは幅250px */
  height: auto; /* 高さは自動で調整 */
  margin: 0 0; /* 375pxのときに余白をなくす */
}
@media screen and (min-width: 768px) {
  .swiper-slide img {
    width: 270px;
  }
}
@media screen and (min-width: 901px) {
  .swiper-slide img {
    width: 300px; /* PCでは幅300px */
  }
}

/* ---------- よくある質問 FAQ ---------- */
.faq {
  padding-top: 72px;
  padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .faq {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 901px) {
  .faq {
    padding-top: 110px;
  }
}

@media screen and (min-width: 901px) {
  .faq__inner {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1200px) {
  .faq__inner {
    min-width: 1040px;
  }
}

.faq__title {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}

.faq__accordion-box {
  position: relative; /* 枠線擬似要素用 */
  margin-top: 30px;
  border: 3px solid #8BC34A;
  border-radius: 30px;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 20px 0;
}
@media screen and (min-width: 768px) {
  .faq__accordion-box {
    padding: 10px 0;
    max-width: 960px;
    margin: auto;
    margin-top: 45px;
    border-radius: 50px;
    border: 3px solid #8BC34A;
  }
}
@media screen and (min-width: 901px) {
  .faq__accordion-box {
    padding: 15px 0;
  }
}
.faq__accordion-box::before, .faq__accordion-box::after {
  content: "";
  width: 6px; /* 幅を広げる */
  height: 16.3%; /* 高さを設定 */
  position: absolute;
  top: 50%; /* 上に合わせる */
  z-index: 999; /* ボーダーの上に表示 */
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #FFFFFF;
}
.faq__accordion-box::before {
  left: -3px; /* ボーダーの外側にずらす */
}
.faq__accordion-box::after {
  right: -3px; /* ボーダーの外側にずらす */
}

.accordion-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  cursor: pointer;
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .accordion-heading {
    padding: 0 40px;
    font-weight: bold;
  }
}

.q-icon,
.a-icon {
  font-family: "Archivo Narrow", sans-serif;
  color: #93C572;
  font-size: 25px;
}
@media screen and (min-width: 768px) {
  .q-icon,
  .a-icon {
    font-size: 35px;
  }
}

.a-icon {
  color: #F7B560;
}
@media screen and (min-width: 768px) {
  .a-icon {
    position: absolute; /* 親要素を基準に絶対位置指定 */
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); /* 上下中央に位置調整 */
    left: 40px; /* 必要に応じて調整 */
  }
}

.question {
  text-align: left;
  margin: 0 10px;
  font-weight: bold;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .question {
    font-size: 20px;
    margin: 0 20px;
  }
}

.accordion-toggle {
  position: relative;
  width: 15px; /* ボタンの幅を指定 */
  height: 15px; /* ボタンの高さを指定 */
  background: none;
  border: none; /* 必要に応じてボーダーを変更 */
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  /* プラスの横と縦 */
  /* プラスの縦線 */
  /* activeプラスの縦線非表示 */
}
@media screen and (min-width: 768px) {
  .accordion-toggle {
    width: 21px;
    height: 21px;
  }
}
.accordion-toggle::before, .accordion-toggle::after {
  content: "";
  position: absolute;
  background-color: #93C572; /* 線の色を指定 */
  width: 15px; /* 線の幅 */
  height: 3px; /* 線の太さ */
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .accordion-toggle::before, .accordion-toggle::after {
    width: 21px;
  }
}
.accordion-toggle::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.accordion-toggle.active::after {
  display: none;
}

.accordion-content {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height 0.4s ease-out;
  transition: max-height 0.4s ease-out;
  will-change: max-height; /* 最適化ヒント */
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .accordion-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    font-size: 17px;
    line-height: 1.6;
    padding: 0 40px;
  }
}
@media screen and (min-width: 901px) {
  .accordion-content {
    font-size: 20px;
  }
}

@media screen and (min-width: 768px) {
  .accordion-content-inner {
    padding-top: 20px; /* 余白を設定 */
    padding-bottom: 20px;
  }
}

.answer {
  text-align: left;
  line-height: 1.5;
  margin: 0; /* 動的変化を防ぐ */
}
@media screen and (min-width: 768px) {
  .answer {
    margin-left: 40px;
  }
}

/* ---------- お知らせ NEWS ---------- */
.news {
  padding-top: 27px;
  padding-bottom: 40px;
}
@media screen and (min-width: 901px) {
  .news {
    padding-top: 25px;
  }
}

@media screen and (min-width: 901px) {
  .news__inner {
    margin-left: auto;
    margin-right: auto;
  }
}

.news__container {
  padding-left: 15px;
  display: grid;
  grid-template-rows: auto auto 1fr; /*行*/
  grid-template-columns: 1fr; /*列*/
  height: 654px;
}
@media screen and (min-width: 901px) {
  .news__container {
    width: clamp(56.25rem, 85.1390922401vw, 72.6875rem);
    height: auto;
    grid-template-rows: 275px 0px 1fr; /*行のトラックの高さを半角スペースで区切って指定*/
    grid-template-columns: 400px 1fr; /*列のトラックの高さを半角スペースで区切って指定*/
    -webkit-column-gap: 80px;
       -moz-column-gap: 80px;
            column-gap: 80px;
    margin-left: auto;
    padding-left: 0;
  }
}
@media screen and (min-width: 1367px) {
  .news__container {
    margin-inline: auto;
  }
}

@media screen and (min-width: 901px) {
  .news__head {
    padding-top: 100px;
    justify-self: center; /* 左側で中央揃え */
    grid-column: 1/2; /* 左列1-2に配置 */
    grid-row: 1/2; /* 左行1-2に配置 */
  }
}

.news__title {
  text-align: left;
}
@media screen and (min-width: 901px) {
  .news__title {
    margin-left: 0;
  }
}

.news__content-text {
  margin-top: 24px;
  line-height: 1.6;
  padding-right: 15px;
}
@media screen and (min-width: 901px) {
  .news__content-text {
    margin-top: 35px;
    padding-right: 0;
  }
}

.news__content-list {
  margin-top: 30px;
  padding: 25px 20px;
  width: 100%;
  background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1607843137);
          box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1607843137);
  border-radius: 50px 0 0 50px;
  grid-row: 2/3;
}
@media screen and (min-width: 901px) {
  .news__content-list {
    border-radius: 50px;
    grid-column: 2/3; /* 右列に2-3に配置 */
    grid-row: 1/4; /* 右行に1-4に配置 */
    border-radius: 100px 0 0 100px;
    padding: 75px 50px;
  }
}
@media screen and (min-width: 1367px) {
  .news__content-list {
    border-radius: 100px;
    padding: 80px 40px;
  }
}

.news__item {
  display: block; /* flexを解除して通常のブロック要素に戻す */
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; /* ホバー時のアニメーション */
}
.news__item:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05); /* ホバー時に拡大 */
}
.news__item:nth-of-type(2) {
  margin-block: 30px;
}
@media screen and (min-width: 901px) {
  .news__item:nth-of-type(2) {
    margin-block: 32px;
  }
}

.news__item-link {
  display: block;
  width: 100%;
}

.news__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* 日付とカテゴリタグを横並びにするためにflexを使用 */
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; /* ラップして改行できるようにする（必要に応じて） */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* アイテムの垂直方向の位置を調整 */
  margin: 0; /* 不要なマージンを削除 */
  padding: 0; /* 不要なパディングを削除 */
}

.news__date {
  font-family: "Archivo Narrow", sans-serif;
  font-size: 14px;
  margin-right: 18px;
}
@media screen and (min-width: 901px) {
  .news__date {
    font-size: 16px;
  }
}

.news__category {
  width: 96px;
  height: auto;
  font-size: 14px;
  background: #93C572 0% 0% no-repeat padding-box;
  border-radius: 5px;
  display: inline-block;
  padding: 5px;
  color: #FFFFFF;
}

.news__date:hover,
.news__category:hover {
  opacity: 0.6; /* 半透明にする */
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease; /* スムーズな変化 */
}

.news__text {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
  padding-bottom: 0.25em;
  display: inline-block; /* 行ごとに適切に処理するため */
  position: relative;
  overflow: hidden;
  -webkit-line-clamp: 2; /* 最大2行に制限 */
  line-clamp: 2;
  /* ホバー時に下線が広がる */
  /* PCサイズ */
}
.news__text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0; /* テキスト幅に合わせて下線の幅が100%に */
  height: 2px;
  background-color: #555555;
  -webkit-transition: width 0.4s ease-out;
  transition: width 0.4s ease-out; /* アニメーション設定 */
}
.news__text:hover::after {
  width: 100%; /* 下線がテキストの長さに合わせて広がる */
}
@media screen and (min-width: 901px) {
  .news__text {
    font-size: 20px;
    -webkit-line-clamp: 1;
    line-clamp: 1; /* PCで1行表示 */
  }
}

.news__btn {
  display: grid;
  place-items: center;
  justify-items: center;
  width: 100%; /* 幅を100%に設定 */
  max-width: 300px; /* 最大幅を300pxに設定 */
  height: 70px;
  margin-top: 30px;
  margin-inline: 22px auto;
  font-size: 20px;
  font-family: "Archivo Narrow", sans-serif;
  letter-spacing: 2px;
  color: #93C572;
  background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 2px solid #93C572;
  border-radius: 50px;
  grid-row: 3/4;
  grid-column: 1/3;
  cursor: pointer;
  -webkit-transition: background 0.4s, color 0.4s;
  transition: background 0.4s, color 0.4s;
}
.news__btn:hover {
  background: #93C572;
  color: #FFF;
}
@media screen and (min-width: 901px) {
  .news__btn {
    margin-top: 35px;
    top: 0px;
    justify-self: center; /* 左側で中央揃え */
    grid-column: 1/2; /* 右側に配置 */
  }
}
@media screen and (min-width: 1200px) {
  .news__btn {
    margin-top: 58px;
    margin-inline: 52px auto;
  }
}

/* ---------- アクセス access ---------- */
.access {
  padding-top: 65px;
  padding-bottom: 40px;
}
@media screen and (min-width: 901px) {
  .access {
    padding-top: 65px;
    padding-bottom: 80px;
  }
}

.access__title {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-inline: auto;
}

.access__container {
  margin-top: 40px;
  margin-inline: auto;
  background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border-radius: 50px;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  width: 100%;
  overflow: hidden; /* はみ出しを隠す */
  display: grid; /* グリッドレイアウト */
  grid-template-columns: 140px 1fr;
  max-width: 960px; /* 最大幅の制約を追加 */
}
@media (min-width: 901px) and (max-width: 960px) {
  .access__container {
    grid-template-rows: 300px 300px; /*行のトラックの高さを半角スペースで区切って指定*/
    grid-template-columns: 250px 1fr; /*列のトラックの高さを半角スペースで区切って指定*/
  }
}
@media screen and (min-width: 768px) {
  .access__container {
    border-radius: 100px;
    grid-template-rows: 300px 300px; /*行のトラックの高さを半角スペースで区切って指定*/
    grid-template-columns: 250px 1fr; /*列のトラックの高さを半角スペースで区切って指定*/
  }
}
@media screen and (min-width: 1200px) {
  .access__container {
    max-width: 960px;
  }
}

.access__contentA {
  list-style: none;
  border-top-left-radius: 50px;
  background-color: #93C572;
  float: left;
}
@media screen and (min-width: 768px) {
  .access__contentA {
    grid-row: 1/3;
    grid-column: 1/2;
    padding: 0;
    border-radius: 100px 0 0 100px;
    font-size: 20px;
  }
}
.access__contentA li {
  margin-left: 20px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .access__contentA li {
    font-size: 20px;
    margin-left: 50px;
  }
}
.access__contentA a {
  font-size: 12px;
  font-weight: bold;
  text-decoration: underline;
  color: #555555;
}
@media screen and (min-width: 768px) {
  .access__contentA a {
    font-size: 16px;
  }
}

.company-name {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .company-name {
    margin-top: 40px;
  }
}
@media screen and (min-width: 901px) {
  .company-name {
    margin-top: 78px;
  }
}

.address {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .address {
    margin-top: 20px;
  }
}

.phone-number {
  margin-top: 65px;
}
@media screen and (min-width: 768px) {
  .phone-number {
    margin-top: 20px;
  }
}

.business-hours {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .business-hours {
    margin-top: 20px;
  }
}

.google-map {
  margin-top: 40px;
  line-height: 25px;
}
@media screen and (min-width: 768px) {
  .google-map {
    margin-top: 58px;
    line-height: 40px;
  }
}

.access__contentB {
  margin-top: 31px;
  margin-bottom: 76px;
}
@media screen and (min-width: 768px) {
  .access__contentB {
    margin-top: 40px;
  }
}
@media screen and (min-width: 901px) {
  .access__contentB {
    margin-top: 80px;
  }
}
@media screen and (min-width: 768px) {
  .access__contentB {
    grid-row: 1/2;
    grid-column: 2/3;
  }
}
.access__contentB p {
  font-size: 14px;
  padding: 0 0 25px 20px;
}
@media screen and (min-width: 768px) {
  .access__contentB p {
    font-size: 16px;
    padding: 0 0 26px 50px;
  }
}

.access__contentC {
  grid-column: 1/3;
  padding-bottom: 0; /* 余計な下部の余白を削除 */
  overflow: hidden; /* はみ出しを隠す */
}
@media screen and (min-width: 768px) {
  .access__contentC {
    grid-row: 2/3;
    grid-column: 2/3;
  }
}
.access__contentC iframe {
  display: block; /* iframeの高さを親要素に合わせる */
  width: 100%;
  height: 249px; /* 固定高さを設定 */
}
@media screen and (min-width: 768px) {
  .access__contentC iframe {
    width: 100%;
    height: 100%;
  }
}

/* ---------- コンタクトセクション ---------- */
.contact {
  padding-top: 35px;
  padding-bottom: 50px;
}
@media screen and (min-width: 901px) {
  .contact {
    padding-top: 80px;
    padding-bottom: 120px;
  }
}

.single-contact {
  padding-top: 75px;
}
@media screen and (min-width: 901px) {
  .single-contact {
    padding-top: 156px;
  }
}

.contact__contet {
  width: 100%;
  max-width: 960px;
  height: auto;
  margin: auto;
  padding: 40px 0 25px 0;
  text-align: center;
  background: #F7B560 0% 0% no-repeat padding-box;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1607843137);
  border-radius: 50px;
  color: #FFFFFF;
}
@media screen and (min-width: 901px) {
  .contact__contet {
    padding: 40px 0;
  }
}

.t-main {
  margin-top: 5px;
  font-size: 30px;
  font-weight: bold;
}
@media screen and (min-width: 901px) {
  .t-main {
    margin-top: 5px;
    font-size: 40px;
  }
}

.t-sub {
  font-size: 18px;
  margin-top: 8px;
  margin-bottom: 15px;
  line-height: 1.5;
}
@media screen and (min-width: 901px) {
  .t-sub {
    margin-top: 25px;
  }
}

.contact__btn {
  background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  color: #93C572;
  border: 2px solid #93C572;
  border-radius: 50px;
  display: inline-block;
  padding: 18px;
  text-align: center;
  width: 100%; /* 幅を100%に設定 */
  max-width: 300px; /* 最大幅を300pxに設定 */
  margin: auto;
  cursor: pointer;
  -webkit-transition: background 0.4s, color 0.4s;
  transition: background 0.4s, color 0.4s;
}
.contact__btn a {
  font-size: 20px;
  letter-spacing: 2px;
  text-decoration: none;
  font-weight: bold;
}
.contact__btn:hover {
  background: #93C572;
  color: #FFF;
}
@media screen and (min-width: 901px) {
  .contact__btn {
    margin-top: 22px;
  }
}

.contact__info {
  margin-top: 10px;
}
@media screen and (min-width: 901px) {
  .contact__info {
    margin-top: 33px;
  }
}

@media screen and (min-width: 901px) {
  .contact__info-g1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.info-tel {
  font-size: 25px;
  font-weight: bold;
  text-decoration: none;
  color: #FFFFFF;
}

.contact__info-g2 {
  margin-top: 10px;
}
@media screen and (min-width: 901px) {
  .contact__info-g2 {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.info-text {
  margin-top: 12px;
  font-size: 20px;
  line-height: 1.7;
}
@media screen and (min-width: 901px) {
  .info-text {
    margin-top: 6px;
  }
}

/* ---------- フッターfooter ---------- */
.footer {
  background: #fff;
  padding-top: 45px;
}
@media screen and (min-width: 901px) {
  .footer {
    padding-top: 74px;
  }
}

@media screen and (min-width: 901px) {
  .footer__inner {
    max-width: 1034px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 901px) {
  .footer__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
}
@media screen and (min-width: 901px) {
  .footer__info {
    gap: 40px;
  }
}

.f-add {
  margin-top: -2px;
}

.footer__logo a img {
  width: 202px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer__logo a:hover img {
  opacity: 0.7;
}

.footer__nav {
  margin-top: 20px;
}
@media screen and (min-width: 901px) {
  .footer__nav {
    margin-top: 0;
  }
}
.footer__nav ul {
  list-style: none;
}
@media screen and (min-width: 901px) {
  .footer__nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
}
.footer__nav a {
  position: relative;
  color: #555555;
  font-weight: bold;
  letter-spacing: 0.8px;
  line-height: 1.7;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease; /* ここでホバー時のトランジションを追加 */
}
.footer__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: #3B4043;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.footer__nav a:hover::after {
  width: 100%;
}

.sns-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end; /* 右寄せ */
  margin-top: 30px;
  gap: 20px;
  text-align: center;
}
@media screen and (min-width: 901px) {
  .sns-btn {
    margin-top: -55px;
  }
}
.sns-btn li {
  display: inline-block;
}
.sns-btn li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex; /* クリック可能領域を確保 */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px; /* ボタンサイズ */
  height: 50px; /* ボタンサイズ */
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.29);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.29); /* 影の設定 */
  background: #FFFFFF; /* 背景色の設定 */
  border-radius: 50%; /* 円形にする */
  -webkit-transition: background 0.3s ease, -webkit-transform 0.3s ease;
  transition: background 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, background 0.3s ease;
  transition: transform 0.3s ease, background 0.3s ease, -webkit-transform 0.3s ease; /* アニメーションの設定 */
}
.sns-btn li a:hover {
  background: #F0F0F0; /* ホバー時の背景色 */
  -webkit-transform: scale(1.1);
          transform: scale(1.1); /* ホバー時に1.1倍に拡大 */
}
.sns-btn li a img {
  width: 25px; /* アイコンのサイズ */
}

.copyright {
  font-family: "Archivo Narrow", sans-serif;
  margin-top: 40px;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 901px) {
  .copyright {
    margin-top: 18px;
    font-size: 16px;
  }
}

/* ---------- パンくずリストbreadcrumb ---------- */
.breadcrumb {
  padding-top: 20px;
  padding-bottom: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  white-space: nowrap;
  overflow: hidden;
}
@media screen and (min-width: 901px) {
  .breadcrumb {
    padding-top: 138px;
    padding-bottom: 82px;
    padding-left: 165px;
  }
}
.breadcrumb a {
  color: #000000;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 150px;
  line-height: 1.5;
}
.breadcrumb a:hover {
  color: #555555;
}

.breadcrumb-separator {
  width: 6px;
  height: 6px;
  margin: 0 8px;
  position: relative;
}
.breadcrumb-separator::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #93C572;
  border-right: 1px solid #93C572;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  top: 50%;
  right: 50%;
}

/* ---------- お問い合わせページ ---------- */
.contact-form {
  padding-bottom: 60px;
}
@media screen and (min-width: 901px) {
  .contact-form {
    padding-top: 10px;
    padding-bottom: 160px;
  }
}

.contact-form__inner {
  padding-left: 15px;
  padding-right: 15px;
  margin: auto;
}
@media screen and (min-width: 901px) {
  .contact-form__inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.contact-form__text {
  margin-top: 10px;
  line-height: 1.7;
}
@media screen and (min-width: 901px) {
  .contact-form__text {
    margin-left: 165px;
    margin-bottom: 50px;
  }
}

@media screen and (min-width: 901px) {
  .contact-form__title {
    margin-top: -20px;
    margin-left: 165px;
    margin-bottom: 10px;
  }
}

.contact-form__content {
  width: 100%;
  margin-top: 32px;
  padding: 31px 20px;
  background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1607843137);
          box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1607843137);
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 901px) {
  .contact-form__content {
    max-width: 960px;
    margin: auto;
    padding: 65px 180px;
    border-radius: 100px;
    gap: 30px;
  }
}

.form-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 子要素を上下中央に揃える */
  font-size: 20px;
  font-weight: bold;
}

.form-field__tag {
  display: inline-block;
  width: 35px;
  height: 22px;
  font-size: 12px;
  line-height: 22px; /* 高さと一致させてテキストを中央揃え */
  color: #FFF;
  background: #93C572;
  border-radius: 5px;
  text-align: center;
  margin-left: 10px; /* 必要ならスペースを追加 */
}

.form-select::-ms-expand {
  display: none; /* IE での矢印を非表示に */
}

.custom-select-wrapper {
  position: relative;
  z-index: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 100%;
}
@media screen and (min-width: 901px) {
  .custom-select-wrapper {
    margin-top: 10px;
  }
}

.custom-select {
  position: relative;
  display: inline-block;
}

.custom-select-trigger {
  position: relative;
  display: block;
  width: 300px;
  height: 50px;
  padding: 1rem 0 1rem 1.25rem;
  font-size: 16px;
  color: #CBCBCB;
  background: #fff;
  border-radius: 5px;
  cursor: pointer;
  border: 1px solid #93C572;
  margin-top: 15px;
}
@media screen and (min-width: 901px) {
  .custom-select-trigger {
    width: 400px;
  }
}
.custom-select-trigger:after {
  position: absolute;
  display: block;
  content: "";
  width: 13px;
  height: 13px;
  top: 50%;
  right: 25px;
  margin-top: -3px;
  border-bottom: 3px solid #93C572;
  border-right: 3px solid #93C572;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform-origin: 50% 0;
          transform-origin: 50% 0;
}

.custom-select.opened .custom-select-trigger:after {
  margin-top: 3px;
  -webkit-transform: rotate(-135deg) translateY(-50%);
          transform: rotate(-135deg) translateY(-50%);
}

.custom-options {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  right: 0;
  min-width: 100%;
  border-radius: 5px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background: #F9F9F9;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
  border: 1px solid #93C572;
  z-index: 100;
}

.custom-select.opened .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.option-hover:before {
  background: #f9f9f9;
}

.custom-option {
  position: relative;
  display: block;
  padding: 16px 20px;
  font-size: 1rem;
  font-weight: bold;
  color: #93C572;
  cursor: pointer;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.custom-option:not(:last-of-type)::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 285px;
  left: 10px;
  -webkit-transform: none;
          transform: none;
  height: 3px;
  border-width: 0;
  background-image: linear-gradient(to right, #707070, #707070 8px, transparent 8px);
  background-size: 10px 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
}
@media screen and (min-width: 901px) {
  .custom-option:not(:last-of-type)::after {
    width: 380px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.custom-option:hover,
.custom-option.selection {
  background: #93C572;
  color: #fff;
}

.has-error .custom-select-trigger {
  border: 1px solid #D53838;
  border-radius: 5px;
}

.has-error .custom-select-trigger:after {
  position: absolute;
  display: block;
  content: "";
  width: 13px;
  height: 13px;
  top: 50%;
  right: 25px;
  margin-top: -3px;
  border-bottom: 3px solid #D53838;
  border-right: 3px solid #D53838;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform-origin: 50% 0;
          transform-origin: 50% 0;
}

input.wpcf7-not-valid, textarea.wpcf7-not-valid, select.wpcf7-not-valid {
  border: 1px solid #D53838;
}

.wpcf7 form .wpcf7-response-output {
  display: none;
}

form.wpcf7-form.init dl:nth-of-type(1) {
  padding-top: 40px !important;
}

/* Contact Form 7のフォーム全体にフォントを適用 */
.wpcf7 {
  /* フォーム内の各入力フィールド */
  /* ラベルやテキストエリアにも適用 */
  /* 送信ボタンのフォント適用 */
}
.wpcf7 form {
  font-family: "Yu Gothic", "游ゴシック", sans-serif;
}
.wpcf7 input,
.wpcf7 select,
.wpcf7 textarea,
.wpcf7 button {
  font-family: "Yu Gothic", "游ゴシック", sans-serif;
}
.wpcf7 label {
  font-family: "Yu Gothic", "游ゴシック", sans-serif;
}
.wpcf7 .wpcf7-submit,
.wpcf7 .wpcf7-form-control.wpcf7-submit {
  font-family: "Yu Gothic", "游ゴシック", sans-serif;
}

.form-text {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #93C572;
  background: #FFF;
  padding: 17px 20px;
}
@media screen and (min-width: 901px) {
  .form-text {
    width: 500px;
  }
}

.form-textarea {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #93C572;
  background: #FFF;
  padding: 17px 20px;
}

.send-btn {
  cursor: pointer;
  width: 100%;
  max-width: 200px;
  height: 50px;
  border: 2px solid #93C572;
  border-radius: 50px;
  padding: 10px;
  color: #93C572;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 1.6px;
  line-height: 1.7;
  display: block;
  margin: auto;
  text-align: center;
  -webkit-transition: background 0.4s, color 0.4s;
  transition: background 0.4s, color 0.4s;
}
.send-btn:hover {
  background: #93C572;
  color: #FFF;
}

.thanks__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}

.thanks__title {
  font-size: 20px;
  font-weight: bold;
  color: #555555;
}

.thanks__text {
  margin-top: 25px;
  color: #555555;
}

.thanks__info-group1 {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  color: #93C572;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 901px) {
  .thanks__info-group1 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.thanks__info-group2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  color: #93C572;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 901px) {
  .thanks__info-group2 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.thanks__info-item {
  font-size: 14px;
  font-weight: bold;
}
@media screen and (min-width: 901px) {
  .thanks__info-item {
    font-size: 20px;
  }
}

.thanks__info-number {
  font-size: 20px;
  font-weight: bold;
}
@media screen and (min-width: 901px) {
  .thanks__info-number {
    font-size: 30px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

/* ---------- category.htmlお知らせ一覧ページ ---------- */
@media screen and (min-width: 901px) {
  .category__title {
    margin-top: -15px;
    margin-left: 165px;
  }
}

.category-nav {
  margin-top: 18px;
  margin-bottom: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px; /* タブ間の間隔 */
  overflow-x: auto; /* 横スクロールを有効化 */
  white-space: nowrap; /* リストが折り返されないようにする */
}
@media screen and (min-width: 901px) {
  .category-nav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 16px;
    max-width: 960px;
    padding: 45px 0px;
    margin: auto;
    overflow-x: hidden; /* PC版ではスクロールを無効化 */
  }
}
.category-nav li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto; /* 横に並べるために固定サイズに */
  min-width: 125px; /* 縮みすぎを防ぐための最小幅 */
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.category-nav li:hover a {
  background-color: #93C572;
  color: #FFF;
}
.category-nav a {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* フレックスボックスに変更 */
  place-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* 中央に配置 */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 中央に配置 */
  width: 100%; /* リンク全体をリストアイテムに広げる */
  height: 45px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* パディングを含むようにする */
  text-decoration: none; /* リンクの下線を削除 */
  text-align: center;
  color: #F7B560;
  font-weight: bold;
  border-radius: 50px;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  background: #FFF;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.category-nav a.is-active {
  background: #93C572;
  color: #F9F9F9;
  border-radius: 50px;
}
@media screen and (min-width: 901px) {
  .category-nav a.is-active {
    border-radius: 100px;
  }
}
@media screen and (min-width: 901px) {
  .category-nav a {
    border-radius: 100px;
  }
}

.category__lists {
  width: 100%;
  height: auto;
  border-radius: 50px;
  background: #ffffff;
  -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1607843137);
          box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1607843137);
  margin: auto;
  padding: max(7.8333333333vw, 47px) 3.3333333333vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 901px) {
  .category__lists {
    max-width: 960px;
    border-radius: 100px;
    padding: 80px 50px 50px;
    gap: 50px;
  }
}

.contents__list-item {
  position: relative; /* tag位置決めするために */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease; /* アニメーションの設定 */
}
.contents__list-item:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05); /* ホバー時に拡大 */
}
@media screen and (min-width: 901px) {
  .contents__list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row; /* 横並び */
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

a.category__item {
  position: relative;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; /* 画像とテキストを垂直方向に揃える */
  width: 100%;
  margin: 0;
  padding: 0;
  text-decoration: none;
  display: block;
}
@media screen and (min-width: 901px) {
  a.category__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 37px;
    max-width: 860px;
    margin: auto;
  }
}

.category__item-img {
  border-radius: 20px;
  text-align: center;
  margin: 0;
  padding: 0;
  overflow: hidden; /* 画像が拡大してもはみ出さないようにする */
}
@media screen and (min-width: 901px) {
  .category__item-img {
    text-align: left;
  }
}
.category__item-img img {
  width: 100%; /* 基本スタイル */
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 20px;
  aspect-ratio: 3/2; /* 3:2 の縦横比に揃える */
}
.category__item-img img.no-image {
  max-width: 600px;
}
@media screen and (min-width: 901px) {
  .category__item-img img {
    width: 230px;
    height: 150px;
    -o-object-fit: cover;
       object-fit: cover; /* 必要なら保持 */
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease; /* アニメーションの設定 */
  }
  .category__item-img img:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05); /* ホバー時に拡大 */
  }
  .category__item-img img.no-image {
    width: 230px; /* PC時のサイズ */
    height: 150px; /* PC時のサイズ */
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.no-image {
  display: block;
  width: 600px; /* 必要なサイズに変更 */
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover; /* 中央トリミング */
  border-radius: 10px; /* 必要であれば角丸 */
}

.category__tag {
  font-size: 14px;
  color: #FFFFFF;
  background: #93C572;
  border-radius: 5px;
  display: block;
  padding: 4px 8px;
  color: #FFFFFF;
  position: absolute;
  top: 10px;
  right: 15px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .category__tag {
    right: 20px;
  }
}
@media screen and (min-width: 901px) {
  .category__tag {
    top: 0;
    left: calc(50% - 55px);
    max-width: 100px;
  }
}

.category__item-body {
  width: 100%;
  height: auto;
  text-align: center;
  position: absolute; /* PC版では相対位置に変更 */
  background: rgba(255, 255, 255, 0.8); /* 白い透明背景 */
  border-radius: 0px 0px 20px 20px;
  color: #555555;
  bottom: 0; /* 下部に配置 */
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 10px 15px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.category__item-body:hover {
  color: rgba(85, 85, 85, 0.7);
}
@media screen and (min-width: 901px) {
  .category__item-body {
    width: 100%;
    max-width: 100%;
    height: 100%;
    text-align: left; /* テキストを左揃え */
    position: static; /* PC版でのテキストの配置 */
    background: none;
    padding: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    gap: 10px;
  }
}

.category__item-date {
  font-size: 12px;
  font-family: "Archivo Narrow", sans-serif;
  text-align: left;
  color: #555555;
  letter-spacing: 0.6;
  line-height: 1.6;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (min-width: 901px) {
  .category__item-date {
    font-size: 14px;
    line-height: 2;
  }
}

.category__tag:hover,
.category__item-date:hover {
  opacity: 0.6; /* 半透明にする */
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease; /* スムーズな変化 */
}

.category__item-title {
  font-size: 14px;
  font-weight: bold;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 最大2行まで表示 */
  -webkit-box-orient: vertical;
  white-space: normal; /* nowrapを解除して改行を許可する */
}
@media screen and (min-width: 901px) {
  .category__item-title {
    font-size: 20px;
    max-width: 400px; /* PC表示時の最大幅を設定（30文字分に合わせる） */
    white-space: nowrap; /* PCでは1行に制限 */
    overflow: hidden; /* 内容がオーバーフローしたら隠す */
    text-overflow: ellipsis; /* オーバーフローした部分に省略記号を表示 */
    display: block; /* スマホ用の-webkit-boxを解除 */
  }
}
@media screen and (min-width: 1367px) {
  .category__item-title {
    max-width: 550px; /* PC表示時の最大幅を設定（30文字分に合わせる） */
  }
}

.category__item-text {
  display: none; /* スマホ表示で非表示 */
}
@media screen and (min-width: 901px) {
  .category__item-text {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* 行数を3行に制限 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; /* 超えた部分に「...」を表示 */
    white-space: normal; /* 改行を有効にする */
    max-width: 550px; /* 最大幅を設定（10文字分） */
    font-size: 14px !important; /* パソコン表示時のフォントサイズ */
    text-align: left; /* 左揃え */
  }
}

@media screen and (min-width: 901px) {
  .category-contact {
    padding-top: 175px;
    padding-bottom: 112px;
  }
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style-type: none;
  padding: 10px;
  margin: 0;
  /* 現在のページ番号にスタイルを当てる */
  /* 前後リンクの矢印をスタイル化 */
  /* 左矢印のスタイル */
  /* 左矢印のスタイル */
  /* 右矢印のスタイル */
  /* ホバー時の矢印の色変更 */
}
.pagination a, .pagination span { /* ページ番号やリンクにスタイルを適用 */
  width: 50px;
  height: 50px;
  font-family: "Archivo Narrow", sans-serif;
  color: #93C572;
  text-decoration: none;
  background-color: #FAFAFA;
  border: 1px solid #F0F3F5;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  font-weight: bold; /* ページ番号を太字に */
}
.pagination a:hover, .pagination span:hover {
  background: #93C572;
  color: #FFFFFF;
}
.pagination .current {
  background-color: #93C572; /* ハイライト色 */
  color: #FFFFFF; /* 白文字 */
  pointer-events: none; /* 現在のページ番号はクリック不可 */
}
.pagination .page-prev, .pagination .page-next {
  position: relative;
}
.pagination .page-prev::before,
.pagination .page-next::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-top: 2px solid #93C572;
  border-right: 2px solid #93C572;
  position: absolute;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease; /* スムーズなホバー効果 */
}
.pagination .page-prev::before {
  -webkit-transform: rotate(-135deg) translateY(-50%);
          transform: rotate(-135deg) translateY(-50%); /* 左矢印 */
  top: 35%;
  left: 50%; /* 中央揃え */
}
.pagination .page-next::before {
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%); /* 右矢印 */
  top: 50%;
  right: 50%; /* 中央揃え */
}
.pagination .page-prev:hover::before,
.pagination .page-next:hover::before {
  border-color: #FFFFFF; /* ホバー時の矢印線の色を白に変更 */
}

/* ---------- single.htmlお知らせ詳細ページ ---------- */
.single__header {
  max-width: 960px;
  margin-inline: auto;
}

.single__title {
  margin-top: 18px;
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 2.5px;
  line-height: 1.7;
}
@media screen and (min-width: 901px) {
  .single__title {
    margin-top: -10px;
    font-size: 40px;
  }
}

.single__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 901px) {
  .single__label {
    margin-top: 10px;
  }
}

.single__date {
  letter-spacing: 0.8px;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 16px;
  color: #707070;
}

.single__category {
  display: inline-block;
  background: #93C572;
  border-radius: 5px;
  font-size: 14px;
  text-align: center;
  color: #FFF;
  cursor: pointer; /* 親要素にカーソルを指アイコンに変更 */
}
.single__category a { /* カテゴリリンクのスタイリング */
  display: block; /* リンクをブロック化して親要素全体をクリック可能に */
  color: #FFF; /* テキストカラー */
  text-decoration: none;
  padding: 5px 8px;
}

.single__content {
  margin-top: 40px;
  padding: 30px 18px;
  background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1607843137);
          box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1607843137);
  border-radius: 50px;
}
@media screen and (min-width: 901px) {
  .single__content {
    margin-top: 50px;
    border-radius: 100px;
    padding: 50px 180px;
    max-width: 960px;
    margin-inline: auto;
  }
}

.single__image {
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 35px;
  max-width: 600px;
  margin-inline: auto;
}
.single__image img {
  border-radius: 20px;
  width: 100%;
  aspect-ratio: 4/2.5;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 1;
}
@media screen and (min-width: 901px) {
  .single__image img {
    height: 392px;
  }
}

.no_bullets {
  margin-top: 20px;
  border: 2px solid #93C572;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border-radius: 20px;
  padding: 10px 15px;
}
@media screen and (min-width: 901px) {
  .no_bullets {
    padding: 18px 28px;
  }
}

.toc_title {
  font-size: 20px;
  font-weight: bold;
  color: #555555;
}

.toc_list {
  margin: 15px 0;
  letter-spacing: 0.7px;
  counter-reset: list-counter;
}
.toc_list a {
  font-size: 14px;
  font-weight: bold;
}
@media screen and (min-width: 901px) {
  .toc_list a {
    font-size: 16px;
    margin-left: 20px;
  }
}
.toc_list li {
  counter-increment: list-counter;
}
.toc_list ul li {
  list-style-type: disc;
  color: #93C572;
  margin-left: 30px;
}
@media screen and (min-width: 901px) {
  .toc_list ul li {
    margin-left: 50px;
  }
}
.toc_list ul li a {
  color: #555555;
}

.toc_depth_1 {
  font-weight: bold; /* 太字 */
  color: #F7B560;
  /* 番号の後に "." を追加する */
}
.toc_depth_1::after {
  content: "."; /* 番号の後に「.」を追加 */
  margin-right: 5px; /* 番号とタイトルの間にスペースを追加 */
}

/* 目次H3見出しタイトルのスタイル */
.toc_depth_2 {
  display: none; /* 番号を非表示にする */
}

.single__body h2 {
  font-size: 20px;
  font-weight: bold !important;
  position: relative;
  display: inline-block;
  margin-top: 35px;
  margin-bottom: 30px;
  padding-bottom: 3px;
}
@media screen and (min-width: 901px) {
  .single__body h2 {
    font-size: 24px;
    margin-top: 70px;
    margin-bottom: 25px;
  }
}
.single__body h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px; /* 下線の太さ */
  background-color: #93C572; /* 下線の色 */
}
.single__body h3 {
  font-size: 18px;
  color: #555555;
  font-weight: bold !important;
  border-left: 12px solid #93C572; /* 緑色の10px縦線 */
  padding-left: 10px; /* 縦線とテキストの間にスペースを確保 */
  margin-top: 60px;
  margin-bottom: 10px; /* 下に余白 */
}
@media screen and (min-width: 901px) {
  .single__body h3 {
    font-size: 20px;
    margin-top: 45px;
  }
}
.single__body span#H2, .single__body span#H2-2 {
  font-size: 20px;
  font-weight: bold !important;
}
@media screen and (min-width: 901px) {
  .single__body span#H2, .single__body span#H2-2 {
    font-size: 24px;
  }
}
.single__body span#H3H3, .single__body span#H3H3-2 {
  font-size: 18px;
  font-weight: bold !important;
}
@media screen and (min-width: 901px) {
  .single__body span#H3H3, .single__body span#H3H3-2 {
    font-size: 20px;
  }
}

/* .wp-block-list の ul にスタイルを適用して「・」を表示する */
ul.wp-block-list {
  list-style-type: disc !important; /* 「・」を表示 */
  padding: 0 20px 20px !important; /* 左にスペースを追加して調整 */
}
@media screen and (min-width: 901px) {
  ul.wp-block-list {
    padding: 0 20px 35px !important;
  }
}

.content-with-image {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 901px) {
  .content-with-image {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; /* アイテムを中央揃え */
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; /* アイテム間にスペースを追加 */
  }
}

.image {
  margin-top: 20px;
}
@media screen and (min-width: 901px) {
  .image {
    margin-top: 80px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-left: 20px;
  }
}
.image img {
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 20px;
  width: 100%;
}
@media screen and (min-width: 901px) {
  .image img {
    width: 290px;
    height: 286px;
  }
}

.wp-block-image {
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 20px;
  max-width: 600px;
  margin: auto;
}
.wp-block-image img {
  border-radius: 20px;
  width: 100%;
  aspect-ratio: 4/4;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 1;
}
@media screen and (min-width: 901px) {
  .wp-block-image img {
    width: 290px;
    height: 286px;
  }
}

.back-to-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* フレックスボックスを使用 */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* 水平方向に中央揃え */
  width: 100%; /* 親要素の幅を指定 */
  margin-top: 40px;
  max-width: 300px;
  margin-inline: auto;
}
@media screen and (min-width: 901px) {
  .back-to-list {
    margin-top: 108px;
  }
}
.back-to-list a {
  display: block;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 2px;
  text-align: center;
  background: #FFF;
  color: #93C572;
  border: 2px solid #93C572;
  border-radius: 50px;
  padding: 20px; /* クリック可能領域を広げる */
  width: 100%; /* 親要素の幅に合わせる */
  -webkit-transition: background 0.4s, color 0.4s;
  transition: background 0.4s, color 0.4s;
}
.back-to-list a:hover {
  background: #93C572;
  color: #FFF;
}

/* ---------- 新着ポップアップ---------- */
.popup__news {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* パディングが要素の幅に含まれる */
  width: 145px;
  height: auto;
  background: #F7B560 0% 0% no-repeat padding-box;
  border: 3px solid #F7B560;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 10px;
  opacity: 1;
  color: #FFF;
  display: inline-block;
  position: absolute;
  top: 500px;
  left: 20px; /* スマホでは画面の左下に配置 */
  text-align: left;
  z-index: 2; /* 他の要素の上に表示するためにz-indexを設定 */
  /* 共通のトランジション（ホバー＋フェードイン・アウト）設定 */
  -webkit-transition: background 0.4s ease-out, color 0.4s ease-out, opacity 0.4s ease-out, -webkit-transform 0.4s ease-out;
  transition: background 0.4s ease-out, color 0.4s ease-out, opacity 0.4s ease-out, -webkit-transform 0.4s ease-out;
  transition: background 0.4s ease-out, color 0.4s ease-out, opacity 0.4s ease-out, transform 0.4s ease-out;
  transition: background 0.4s ease-out, color 0.4s ease-out, opacity 0.4s ease-out, transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
}
@media screen and (min-width: 901px) {
  .popup__news {
    width: 337px;
    height: 109px;
    top: 640px;
    left: auto; /* 左下から右下に変更 */
    right: 45px; /* 右下に配置 */
    border-radius: 20px;
  }
}
.popup__news.show {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.popup__news.hide {
  opacity: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%); /* 左にスライドして消える */
}
@media screen and (min-width: 901px) {
  .popup__news.hide {
    -webkit-transform: translateX(100%);
            transform: translateX(100%); /* 右にスライドして消える */
  }
}
.popup__news:hover {
  background: #FFF;
  color: #F7B560;
}

.popup__news-link {
  display: block; /* クリック可能な領域を広げる */
  padding: 6px 8px; /* 余白の設定 */
  text-decoration: none; /* 必要に応じて下線を外す */
  color: inherit; /* テキスト色を親から継承 */
}
@media screen and (min-width: 901px) {
  .popup__news-link {
    padding: 15px;
  }
}

/* タイトルと日付の横並び (スマホ) */
.popup__news-head,
.popup__news-date {
  display: inline-block;
  vertical-align: middle;
  /* タイトルと日付を縦並びに変更 (PC) */
}
@media screen and (min-width: 901px) {
  .popup__news-head,
  .popup__news-date {
    display: block;
  }
}

/* ポップアップのコンテンツスタイル */
.popup__news-head {
  font-family: "Archivo Narrow", sans-serif;
  font-size: 14px;
  font-weight: bold;
  margin-right: 5px;
}
@media screen and (min-width: 901px) {
  .popup__news-head {
    font-size: 20px;
  }
}

.popup__news-date {
  font-family: "Archivo Narrow", sans-serif;
  font-size: 10px;
}
@media screen and (min-width: 901px) {
  .popup__news-date {
    margin: 5px 0;
    font-size: 12px;
  }
}

.popup__news-title {
  max-width: 100%; /* 親要素の幅に対してフルに使用 */
  font-size: 12px;
  font-weight: bold;
  overflow: hidden; /* 内容がオーバーフローしたら隠す */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 2行で制限 */
  overflow: hidden; /* コンテンツがオーバーフローした際に隠す */
  white-space: normal; /* 折り返しを許可 */
}
@media screen and (min-width: 901px) {
  .popup__news-title {
    font-size: 16px;
    margin-top: 0;
    -webkit-line-clamp: 1; /* PCでは1行に制限 */
    line-clamp: 1;
  }
}

/* ---------- 404ページ---------- */
.page-404 {
  text-align: center;
  padding: 60px 15px;
}
@media screen and (min-width: 901px) {
  .page-404 {
    padding: 160px 40px;
  }
}

.content404 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.page-title {
  font-size: 135px;
  font-weight: bold;
  color: #93C572;
  text-align: center; /* 中央揃え */
  margin: 0; /* マージンをリセット */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* 影を追加 */
}
@media screen and (min-width: 901px) {
  .page-title {
    font-size: 180px;
  }
}

.page-subtitle {
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
}
@media screen and (min-width: 901px) {
  .page-subtitle {
    font-size: 24px;
  }
}

.error-404 {
  font-size: 14px;
  line-height: 1.6;
}
@media screen and (min-width: 901px) {
  .error-404 {
    font-size: 20px;
  }
}

.back-home404 {
  display: inline-block; /* ボタンをインラインブロックに */
  background: #FFF;
  border: 2px solid #93C572;
  color: #93C572;
  border-radius: 50px;
  padding: 10px 35px; /* パディングを追加 */
  text-align: center; /* テキストを中央揃え */
  text-decoration: none; /* デフォルトの下線を削除 */
  font-size: 18px;
  margin-top: 40px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease; /* ホバー時のトランジション */
}
@media screen and (min-width: 901px) {
  .back-home404 {
    margin-top: 80px;
  }
}
.back-home404:hover {
  background: #93C572; /* ホバー時の背景色 */
  color: #FFF; /* ホバー時のテキスト色 */
}