@charset "UTF-8";

/* * {
  outline: 2px solid blue;
} */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: rgb(255, 255, 255);
  margin: 0 auto;
  font-family: YuMincho, Hiragino Mincho ProN, serif;
  max-width: 480px;
	  color: 292929;
}


/* リンク設定 */
a {
  color: inherit;
  text-decoration: none;
  transition-duration: 0.5s;
}

/* 画像 */
img {
  max-width: 100%;
  height: auto;
}

h1 {
  font-size: 10px;
  font-weight: 100;
}

h2 {
  font-size: 24px;
  font-weight: normal;
  color: #5a4b41;
 font-size: 22px;
}

.subheading {
  font-size: 16px;
  color: #d28b38;
  text-align: center;
}

h3 {
  font-size: 20px;
}

/* ------------------------------
   フェードアップ演出
------------------------------ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

.delay-3 {
  transition-delay: 0.6s;
}

.delay-4 {
  transition-delay: 0.8s;
}

.delay-5 {
  transition-delay: 1.0s;
}

.delay-6 {
  transition-delay: 1.2s;
}

.delay-7 {
  transition-delay: 1.4s;
}

.delay-8 {
  transition-delay: 1.6s;
}

.delay-9 {
  transition-delay: 1.8s;
}

.delay-10 {
  transition-delay: 2.0s;
}

.delay-11 {
  transition-delay: 2.2s;
}

/*----------------------------
scroll_left ｜左から出現
----------------------------*/
.fade-up-left {
  -webkit-transition: 0.8s ease-in-out;
  -moz-transition: 0.8s ease-in-out;
  -o-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  transform: translateX(-30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.fade-up-left.on {
  opacity: 1.0;
  filter: alpha(opacity=100);
  -moz-opacity: 1.0;
  transform: translateX(0);
}

/*----------------------------
scroll_right ｜右から出現
----------------------------*/
.fade-up-right {
  -webkit-transition: 0.8s ease-in-out;
  -moz-transition: 0.8s ease-in-out;
  -o-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  transform: translateX(30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.fade-up-right.on {
  opacity: 1.0;
  filter: alpha(opacity=100);
  -moz-opacity: 1.0;
  transform: translateX(0);
}

/*----------------------------
zoom-in ｜ズームイン
----------------------------*/
/* 初期状態（非表示＋縮小） */
.zoom-in {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* 表示状態（拡大して表示） */
.zoom-in.on,
.zoom-in.active {
  opacity: 1;
  transform: scale(1);
}


/* ---------------------------------------------
---------ヘッダー------------------------------ */
.header-top img {
  width: 340px;
  height: auto;
}

.scroll-nav .header-top img {
  width: 340px;
  height: auto;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

/* ヘッダーの全体レイアウト調整 */
.hamburger-header {
  width: 100%;
  max-width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

/* ヘッダー上部（ロゴとハンバーガー） */
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  box-sizing: border-box;
}

/* ロゴエリア調整 */
.no-flex {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: calc(100% - 80px);
  /* ボタン分の余白 */
}

.scroll-nav .scroll-nav-none {
  display: none;
}

/* ハンバーガーメニュー */
.menu-toggle-button {
  position: relative;
  z-index: 1001;
  width: 60px;
  height: 60px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.menu-toggle-wrapper {
  position: relative;
  width: 30px;
  height: 20px;
  margin: 20px auto;
}

.menu-toggle-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #646464;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu-toggle-line:nth-child(1) {
  top: 0;
}

.menu-toggle-line:nth-child(2) {
  top: 9px;
}

.menu-toggle-line:nth-child(3) {
  top: 18px;
}

.menu-toggle-button.active .menu-toggle-line {
  background-color: #fff;
}

.menu-toggle-button.active .menu-toggle-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle-button.active .menu-toggle-line:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.menu-toggle-button.active .menu-toggle-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.slideout-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  visibility: hidden;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 900;
}

.slideout-nav.active {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.slideout-nav-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #555;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.slideout-nav.active .slideout-nav-bg {
  opacity: 1;
}

.slideout-nav-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 5vh 10vw;
  overflow-y: auto;
}

.slideout-nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.slideout-nav-item {
  position: relative;
  margin-bottom: 2vh;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.slideout-nav.active .slideout-nav-item {
  opacity: 1;
  transform: translateY(0);
}

.slideout-nav.active .slideout-nav-item:nth-child(1) {
  transition-delay: 0.2s;
}

.slideout-nav.active .slideout-nav-item:nth-child(2) {
  transition-delay: 0.3s;
}

.slideout-nav.active .slideout-nav-item:nth-child(3) {
  transition-delay: 0.4s;
}

.slideout-nav.active .slideout-nav-item:nth-child(4) {
  transition-delay: 0.5s;
}

.slideout-nav.active .slideout-nav-item:nth-child(5) {
  transition-delay: 0.6s;
}

.slideout-nav.active .slideout-nav-item:nth-child(6) {
  transition-delay: 0.7s;
}

.slideout-nav-link {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.slideout-nav-contact {
  margin-top: auto;
  padding-left: 60px;
  padding-bottom: 35px;
  color: #fff;
  font-size: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0.9s;
}

.slideout-nav.active .slideout-nav-contact {
  opacity: 1;
  transform: translateY(0);
}

.slideout-nav-address,
.slideout-nav-tel {
  margin: 5px 0;
}


/* 初期状態：非表示 */
.sub-menu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
}

/* 開いた状態（.open が付与されたとき） */
.slideout-nav-item.open .sub-menu {
  max-height: 1000px;
  /* 適宜調整 */
  opacity: 1;
  visibility: visible;
  background-color: #3f382f;
  /* 落ち着いた茶系 */
  border-radius: 4px;
  padding: 5px 10px;
  margin-top: 5px;
}

/* サブメニュー内リンクの装飾 */
.sub-menu li a {
  display: block;
  color: #fff;
  /* 白文字で視認性UP */
  text-decoration: none;
  padding: 8px 10px;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.sub-menu li:last-child a {
  border-bottom: none;
}

/* ハンバーガーのライン（初期：白） */
.menu-toggle-line {
  background-color: #fff;
  transition: background-color 0.3s ease;
}

/* スクロール後に追加するクラス */
.header-colored .menu-toggle-line {
  background-color: #646464;
  /* メイン画像を過ぎたら濃いグレー */
}

/* 矢印アイコン */
.fa-solid {
  margin-left: 16px;
  transition: transform 0.3s ease;
  color: #fff;
}

/* open時は上向きに回転 */
.slideout-nav-item.open .fa-solid {
  transform: rotate(180deg);
}

/* ---------------------------------------
--------スライダー--------------------- */
/* スライダーの基本設定 */
.main-visual {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.mv-slider {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  height: 100%;
  position: relative;
}

/* オーバーレイ */
.swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  /* 黒＋30%の暗さ */
  z-index: 1;
}

/* 画像はオーバーレイの下 */
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 0;
}

/* 文字とボタンを画像の上に重ねる */
.mv-overlay-text {
  width: 100%;
  position: absolute;
  z-index: 2;
  color: #fff;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  padding: 0 20px;
}

.slide-main {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 10px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.slide-sub {
  font-size: 14px;
  line-height: 1.5;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

/* ボタン配置 */
.mv-btn {
  display: flex;
  justify-content: center;
  /* 中央揃え */
  align-items: center;
  flex-wrap: wrap;
  /* 横幅が足りないとき折り返し */
  gap: 12px;
  /* ボタン同士の余白 */
  margin-top: 24px;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 24px;
  font-size: 14px;
  text-decoration: none;
  border-radius: 4px;
  text-align: center;
  width: 70%;
}

.btn-primary {
  background-color: #5b5046;
  color: #fff;
  border: 1px solid #bdaea5;
}

.btn-secondary {
  border: 1px solid #7A6A58;
  color: #7A6A58;
  background: #fff;
}

/* モバイルで下に固定 */
.sp-fixed-reserve {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.sp-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 3px 0;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.sp-btn--web {
  background-color: #5b5046;
}

.sp-btn--tel {
  background-color: #7A6A58;
}

.sp-btn img {
  width: 20px;
  height: 20px;
}

.sp-btn__icon {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  margin-right: 5px;
  margin-top: 10px;
  margin-bottom: 12px;
}

/* ---------------------------------------
--------TOPに戻るボタン--------------------- */
.back-to-top {
  position: fixed;
  bottom: 60px;
  right: 20px;
  z-index: 999;
  display: block;
  width: 60px;
  height: 60px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

/* 画像に余白を付けたければここで調整 */
.back-to-top img {
  width: 100%;
  height: auto;
}


/* ---------------------------------
--------お知らせ--------------------- */
.news-section {
  max-width: 100%;
  margin: 30px auto;
  padding: 10px 20px
}

.news-heading {
  margin-bottom: 0;
  text-align: center;
}

.news-subheading {
  margin-top: 4px;
  margin-bottom: 20px;
  text-align: center;
}

.news-list {
  margin: 0;
  padding: 0;
}

.news-item {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #e0e0e0;
  padding: 10px 20px
}

.news-item dt {
  width: 100%;
  font-size: 14px;
  color: #333;
}

.news-item .news-category {
  margin-left: 10px;
  font-size: 14px;
  color: #333;
}

.news-item dd {
  margin: 0;
  font-size: 14px;
  color: #292929;
  flex: 1;
}

.news-more {
  text-align: center;
  margin-top: 30px;
}

.news-link {
  font-size: 13px;
  color: #292929;
  text-decoration: none;
  border-bottom: 1px solid #292929;
  padding-bottom: 2px;
}

/* -------------------------------------------------------
-------------「ヒロ・デンタルクリニック」診療理念--------- */
/* 基本レイアウト設定 */
.philosophy-wrapper02 {
  padding-top: 440px;
  background: linear-gradient(135deg, #fff, #f5e9dc, #fffcf9);
  position: relative;
  z-index: 5;
}

.philosophy-text02 {
  position: sticky;
  width: 90%;
  margin: 0 auto;
  top: 50%;
  translate: 0 -50%;
  z-index: 6;
}

.philosophy-text02::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  backdrop-filter: blur(1px);
  /* 少し強調 */
  -webkit-backdrop-filter: blur(1px);
  filter: blur(8px);
  -webkit-filter: blur(8px);
  box-shadow: 0 0 40px 30px rgba(255, 255, 255, 0.85);
  /* 濃く・広げる */
  -webkit-box-shadow: 0 0 40px 30px rgba(255, 255, 255, 0.85);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
}

.philosophy-text02::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 40%;
  left: 50%;
  translate: -50% -50%;
  width: 350px;
  height: 500px;
  /* border-radius: 50%; */
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9));
  -webkit-filter: blur(60px);
  filter: blur(60px);
}

.philosophy-text02 h2,
.philosophy-text02 .subheading {
  text-align: center;
  position: relative;
  z-index: 7;
}

.shadow {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.philosophy-lead02 {
  color: #5b5046;
  margin: 20px 0 30px 0;
  line-height: 1.5;
  text-align: center;
  position: relative;
  z-index: 7;
}

.philosophy-desc02 {
  width: 100%;
  color: #333;
  margin: 10px auto;
  position: relative;
  z-index: 7;
}

.center {
  text-align: center;
  margin-top: 20px;
  position: relative;
  z-index: 7;
}

.font-size20 {
  font-size: 20px;
  border-bottom: 4px solid rgba(247, 234, 196, 0.9);
}

.size18 {
  font-size: 18px;
  font-weight: 500;
}

.philosophy-text02 .btn-detail {
  display: inline-block;
  padding: 10px 60px;
  background-color: #2e2e2e;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 15px;
}

.philosophy-content02 {
  margin-top: -100px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
  z-index: 4;
}

/* 画像のスタイル */
.philosophy-image02 {
  display: flex;
  flex-direction: column;
  /* 画像を縦並びに */
  gap: 10px;
  /* 画像間のスペース */
  padding-bottom: 100px;
  position: relative;
  z-index: 0 !important;
}

.philosophy-image02 picture {
  position: relative;
  z-index: 0;
}

.right-images {
  position: absolute;
  right: 0;
  top: 0;
}

.philosophy-image02 img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
}

.images1 {
  width: 110px;
  height: auto;
  margin-left: 10px;
  margin-top: -240px;
  position: relative;
  z-index: 1;
}

.images2 {
  width: 130px;
  height: auto;
  margin-top: -50px;
  margin-left: 20px;
}

.images3 {
  width: 130px;
  height: auto;
  margin-top: 320px;
  margin-left: 15px;
}

.images5 {
  width: 110px;
  height: auto;
  margin-top: 120px;
}

.images4 {
  width: 110px;
  height: auto;
  margin-top: 230px;
  margin-left: 30px;
}

.images6 {
  width: 130px;
  height: auto;
  margin-left: 20px;
  margin-top: 160px;
}

.images7 {
  width: 125px;
  height: auto;
  margin-left: 12px;
  margin-top: 260px;
}


/* ---------------------------------------
--------伊勢崎　ヒロデンタルクリニックの特徴--------------------- */
.feature-section {
  width: 100%;
  margin: 0 auto;
  padding-top: 60px;
}

.feature-heading {
  text-align: center;
  margin-bottom: 35px;
}

.feature-section h2 {
  text-align: center;
  font-weight: normal;
}

.feature-section .subheading {
  text-align: center;
}

/* === スクロール領域 === */
.feature-scroll-wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.feature-scroll {
  width: 90%;
  margin: 0 auto;
}

/* === 各カード === */
.feature-card {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 55px;
}

.feature-number {
  position: relative;
}

.feature-number::after {
  content: "01";
  line-height: .75;
  letter-spacing: 0;
  font-size: 135px;
  font-weight: 900;
  font-style: normal;
  color: rgba(91, 80, 70, 0.3);
  position: absolute;
  top: 13px;
  right: 0;
  z-index: -1;
}

.number02::after {
  content: "02";
}

.number03::after {
  content: "03";
}

.number04::after {
  content: "04";
}

.feature-card-img {
  width: 100%;
  height: auto;
}

.feature-card-img img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3);
}

.feature-card-text {
  padding-top: 35px;
  line-height: 1.7;
 color: #333;
}

.feature-card-text h3 {
  color: #5b5046;
  padding-bottom: 15px;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

    .feature-underLine {
        font-size: 18px;
        border-bottom: 4px solid rgba(247, 234, 196, 0.9);
    }

/* ------------------------------
   ヒロデンタルクリニックの治療が伊勢崎の方々に選ばれる理由
------------------------------ */
.reasons-section {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 80px 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 241, 224, 0.7), rgba(255, 255, 255, 0.9)),
    url(https://hirodentalclinic.com/wp-content/uploads/2025/06/slide-image01.jpeg) no-repeat center center / cover;
}

.reasons-section h2 {
  text-align: center;
}

.reasons-section .subheading {
  text-align: center
}

.reason-list {
  max-width: 100%;
  margin: 20px auto;
}

.reason-block {
  padding: 0 30px;
}

.reason-block .reason-image img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  margin: 30px auto;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
}

.reason-title {
  font-size: 18px;
  font-weight: bold;
  color: #5b5046;
  margin-bottom: 10px;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.reason-text p {
  font-size: 15px;
  color: #2e2e2e;
  line-height: 1.7;
}

.weight600 {
  font-weight: 600;
  border-bottom: 4px solid rgba(247, 234, 196, 0.9);
}

/* ------------------------------
   理事長あいさつセクション 全体レイアウト
------------------------------ */
.greeting-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  margin: 50px auto;
}

/* 親要素で左右に並べる */
.greeting-content {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

/* ------------------------------
   上側画像ブロック（理事長あいさつ）
------------------------------ */
.greeting-image {
  width: 90%;
  height: auto;
  margin: 0 auto;
}

.greeting-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
}



/* ------------------------------
   下側テキストブロック（理事長あいさつ）
------------------------------ */
.greeting-text {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  background-color: #fff;
  position: relative;
}

.greeting-text::before {
  content: '';
  width: calc(100% - 100px);
  height: 235px;
  background: rgba(155, 141, 128, 0.1);
  position: absolute;
  top: 35%;
  left: 0;
  z-index: 0;
  /* clip-path: polygon(0 25%, 100% 0, 100% 75%, 0% 100%); */
}

.greeting-text::after {
  content: '';
  width: calc(100% - 30px);
  height: 240px;
  background: rgba(155, 141, 128, 0.1);
  position: absolute;
  top: 28%;
  right: 0;
  z-index: 0;
  /* clip-path: polygon(0 25%, 100% 0, 100% 75%, 0% 100%); */
}

.greeting-geading {
  position: relative;
}

.greeting-geading::before {
  content: '';
  width: 130px;
  height: 130px;
  background: rgba(221, 188, 125, 0.15);
  border-radius: 50%;
  position: absolute;
  top: 0%;
  right: 0px;
  z-index: 0;
  filter: blur(5px);
  /* ぼかしを強調 */
}

.greeting-text h2 {
  margin: 25px 0 5px 0;
  text-align: center;
}

.greeting-text .subheading {
  text-align: center;
}

.greeting-lead {
  font-size: 20px;
  color: #5b5046;
  margin: 25px 0 20px 0;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.greeting-desc {
  color: #333;
  margin-bottom: 32px;
}

.text-align-end {
  text-align: end;
}

.greeting-btn {
  text-align: center;
  margin: 20px 0;
}

.btn-detail {
  display: inline-flex;
  align-items: center;
  background-color: #2e2e2e;
  color: #fff;
  padding: 10px 50px;
  font-size: 14px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.btn-icon {
  margin-left: 14px;
  font-size: 8px;
  transition: transform 0.3s ease;
}


/* ---------------------------------------
--------日本歯科医師会からのお知らせ--------------------- */
.announcement-section {
  width: 100%;
  margin: 0 auto;
  background: linear-gradient(135deg, #f0e5d8, #ffffff, #F3F0EE);
  position: relative;
}

.announcement-section::before {
  content: '';
  width: 300px;
  height: 250px;
  border-radius: 50%;
  position: absolute;
  left: 5%;
  top: -7%;
  background-image:
    linear-gradient(0deg, rgba(210, 190, 160, 0.2) 1px, rgba(0, 0, 0, 0) 0),
    linear-gradient(90deg, rgba(210, 190, 160, 0.2) 1px, rgba(0, 0, 0, 0) 0);
  background-size: 20px 20px;
  background-position: center;
  z-index: 1;
}

.announcement-section::after {
  content: '';
  width: 250px;
  height: 250px;
  border-radius: 50%;
  position: absolute;
  right: 0;
  bottom: -20%;
  background-image:
    linear-gradient(0deg, rgba(210, 190, 160, 0.2) 1px, rgba(0, 0, 0, 0) 0),
    linear-gradient(90deg, rgba(210, 190, 160, 0.2) 1px, rgba(0, 0, 0, 0) 0);
  background-size: 20px 20px;
  background-position: center;
  z-index: 1;
}

.width1300 {
  width: 90%;
  margin: 0 auto;
  padding: 50px 0;
}

.announcement-content h2 {
  text-align: center;
  margin-bottom: 20px;
}

.announcement-content p {
  margin-top: 20px;
 color: #333;
}

/* ----当院の医療安全への取り組みについて --------------------
 舌下免疫療法を行っている患者様へのお願い--------------------- */
.notice-section {
  max-width: 100%;
  margin: 70px auto;
  padding: 0 10px;
  position: relative;
  z-index: 10;
}

.notice-row {
  width: 100%;
  margin: 20px auto;
}

.notice-box {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 9px rgba(0, 0, 0, 0.3);
  padding: 20px 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  width: 100%;
  position: relative;
}

.arrow-btn {
  position: absolute;
  width: 28px;
  height: 28px;
  bottom: 10px;
  right: 16px;
  border: 1px dashed #bdaea5;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s, transform 0.3s;
}

.arrow-btn span {
  color: #5d3b32;
  font-size: 8px;
}

.notice-box h2 {
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  font-size: 20px;
}

.notice-box p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  text-align: start;
}

.notice-box .red {
  color: #c00;
  font-weight: 600;
}

/*---------------------------------------------
----- 当院の新型ウィルス対策について ------------*/
.virus-secsion {
  width: 100%;
  margin: 0 auto;
  padding: 60px 0;
  background: linear-gradient(135deg, #fff, #bdaea531, #fff);
  position: relative;
 color: #333;	
}

.virus-secsion::before {
  position: absolute;
  content: "";
  width: 90%;
  height: 600px;
  bottom: 0;
  left: 0;
  background-image: repeating-linear-gradient(45deg,
      rgba(218, 189, 125, 0.2),
      /* ゴールドベースの薄色 */
      rgba(218, 189, 125, 0.2) 5px,
      rgba(255, 255, 255, 0) 5px,
      rgba(255, 255, 255, 0) 10px);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  z-index: 0;
}

.virus-secsion h2 {
  text-align: center;
}

.virus-desc {
  margin-top: 20px;
  padding: 0 15px;
}

.virus-contents {
  max-width: 90%;
  margin: 20px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  /* ブロック間に余白 */
}

.virus-block {
  flex: 1 1 48%;
  box-sizing: border-box;
  /* box-shadow: 0 4px 12px rgba(0,0,0,0.06); */
}

.virus-block img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  box-shadow: 0px 0px 6px 0px #5d3b32;
  border-radius: 10px;
}

.virus-block h3 {
  text-align: center;
  margin-bottom: 15px;
  color: #555;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.virus-block ul {
  width: 90%;
  margin: 0 auto;
  list-style: disc;
  padding-left: 16px;
  line-height: 1.8;
  color: #333;
}

.virus-block ul li::marker {
  color: #8c6342;
  /* リストマーク「・」だけを茶色に */
}

.virus-block-text {
  line-height: 1.8;
  color: #333;
}

/* 採用・提携先医療機関 背景色 */
.back-ground {
  width: 100%;
  margin: 0 auto;
  padding: 40px 0;
  background: #ECE8E1;
  position: relative;
}

.back-ground::before {
  content: '';
  width: 100%;
  height: 900px;
  background: rgba(122, 106, 88, 0.5);
  position: absolute;
  top: 9%;
  left: 0;
  z-index: 0;
  clip-path: polygon(0 35% 35%, 100% 0, 100% 65%, 0% 100%);
  z-index: 0;
}

/* ------------------------------
   採用情報セクション 全体レイアウト
------------------------------ */
.recruit-wrapper {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 25px 0;
  position: relative;
  z-index: 10;
}

.recruit-content {
  width: 90%;
  height: 100%;
  margin: 0 auto;
  box-shadow: -4px 5px 5px rgba(0, 0, 0, 0.05);
}

/* 上側画像ブロック（採用情報） */
.recruit-image {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  /* border-radius: 10px; */
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.3);
}

.recruit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 下側テキストブロック（採用情報） */
.recruit-text {
  width: 100%;
  padding: 20px;
  text-align: center;
  position: relative;
  background: #f0ece5;
}

.recruit-desc {
  color: #333;
  margin: 10px 0;
}

/* ボタン */
.recruit-btn,
.takasaki-button {
  text-align: center;
}

.btn-detail {
  display: inline-flex;
  align-items: center;
  background-color: #2e2e2e;
  color: #fff;
  padding: 8px 50px;
  font-size: 14px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  margin: 20px 0;
}

.btn-icon {
  margin-left: 14px;
  font-size: 8px;
  transition: transform 0.3s ease;
}

/* ------------------------------
   提携先医療機関セクション 全体レイアウト
------------------------------ */
.takasaki-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 25px 0;
}

.takasaki-content {
  width: 90%;
  margin: 0 auto;
  box-shadow: 4px 5px 5px rgba(0, 0, 0, 0.05);
}

/* 上側画像ブロック（提携先医療機関） */
.takasaki-image {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  /* border-radius: 10px; */
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.3);
}

.takasaki-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 下側テキストブロック（採用情報） */
.takasaki-text {
  width: 100%;
  padding: 30px 20px 20px 20px;
  text-align: center;
  position: relative;
  background: #f0ece5;
}

.takasaki-text h2 {
	font-size: 22px;
}

.takasaki-btn {
  display: inline-flex;
  align-items: center;
  background-color: #2e2e2e;
  color: #fff;
  padding: 5px 40px;
  font-size: 14px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  margin: 20px 0;
}

.btn-icon {
  margin-left: 14px;
  font-size: 8px;
  transition: transform 0.3s ease;
}

/* ---------------------------------------
--------診療案内--------- */
/* 全体セクションのスタイル */
.treatment-section {
  width: 100%;
  padding: 40px 0;
  background:
    linear-gradient(103deg, rgba(255, 255, 255, 0.9), rgba(247, 234, 196, 0.7), rgba(255, 255, 255, 0.9)),
    url(https://hirodentalclinic.com/wp-content/uploads/2025/06/gaigan.jpeg) no-repeat center center / cover;
}

.treatment-section h2 {
  text-align: center;
}

.treatment-section .subheading {
  text-align: center;
}

.treatment-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  /* 横並び・自動調整 */
  gap: 30px;
  width: 100%;
  margin: 50px auto;
}

.treatment-card {
  width: 90%;
  margin: 0 auto;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.treatment-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.treatment-card h3 {
  color: #5a4b41;
  margin-bottom: 10px;
  text-align: center;
    border-bottom: 2px solid rgba(247, 234, 196, 0.9);
  line-height: 1.7;
}

.treatment-card p {
  font-size: 16px;
  color: #333;
}

/* ---------------------------------------
--------症例紹介--------------------- */
.case-section {
  width: 100%;
  margin: 0 auto;
  /* background: #f9f9f9; */
  padding: 40px 0 50px 0;
  position: relative;
  z-index: 10;
}

.case-section::before {
  content: '';
  width: 100%;
  height: 1450px;
  position: absolute;
  top: 6%;
  left: 0;
  background-image:
    linear-gradient(0deg, rgba(210, 190, 160, 0.2) 1px, rgba(0, 0, 0, 0) 0),
    linear-gradient(90deg, rgba(210, 190, 160, 0.2) 1px, rgba(0, 0, 0, 0) 0);
  background-size: 20px 20px;
  background-position: center;
  z-index: 2;
}

.case-section::after {
  content: '';
  width: 100%;
  height: 930px;
  background: rgba(122, 106, 88, 0.5);
  position: absolute;
  top: 22%;
  left: 0;
  z-index: 0;
  clip-path: polygon(0 20%, 100% 0, 100% 80%, 0% 100%);
}

.case-heading h2,
.case-heading .subheading {
  text-align: center;
  margin-bottom: 10px;
}

.case-list {
  width: 90%;
  margin: 30px auto;
  position: relative;
  z-index: 3;
}

.case-block {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 30px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.3);
}

.case-title {
  margin: 15px 0 10px 0;
  color: #5a4b41;
  font-weight: bold;
  text-align: center;
}

.case-image {
  width: 100%;
  margin: 0 auto;
}

.case-img {
  position: relative;
  /* width: 300px; */
  height: 120px;
  margin: 15px auto;
}

.case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.case-img::before {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 2px 8px;
  font-size: 12px;
  border-radius: 4px;
  z-index: 10;
}

.case-img.before::before {
  content: 'Before';
}

.case-img.after::before {
  content: 'After';
}

/* ボタンリンク */
.case-block-btn {
  text-align: center;
}

.case-block-btn a {
  margin: 16px 0 20px 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid #5b5046;
  background-color: transparent;
  color: #5b5046;
  border-radius: 5px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.case-block-btn a::after {
  content: "▶";
  transition: transform 0.3s ease;
  font-size: 8px;
}

/* ---------------------------------------
--------ピックアップ診療--------- */
.pickup-block-bgColor {
  width: 100%;
  position: relative;
  z-index: 10;
}

.pickup-block-bgColor::before {
  content: '';
  width: 100%;
  /* 画面幅いっぱいに広げる */
  height: 115px;
  background: rgba(122, 106, 88, 0.2);
  position: absolute;
  bottom: 7%;
  left: 0;
  /* 左端に配置 */
  z-index: 12;
}

.pickup-section {
  width: 100%;
  position: relative;
	color: #333;
}

.pickup-section::before {
  content: '';
  width: 100%;
  height: 1666px;
  background: rgba(122, 106, 88, 0.1);
  position: absolute;
  top: 5%;
  left: 0;
  z-index: 0;
  /* clip-path: polygon(100% 30%, 0 10%, 0 70%, 100% 90%); */
}

.pickup-section::after {
  content: '';
  width: 85%;
  height: 1354px;
  background-image: repeating-linear-gradient(45deg, rgba(122, 106, 88, 0.2), rgba(122, 106, 88, 0.2) 5px, rgba(255, 255, 255, 0) 5px, rgba(255, 255, 255, 0) 10px);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  position: absolute;
  bottom: -4%;
  right: 0;
  z-index: 1;
}

.pickup-title {
  text-align: center;
}

.pickup-block,
.pickup-reverse {
  position: relative;
  width: 100%;
  height: auto;
  margin: 50px auto;
  padding: 0 15px;
  z-index: 5;
}

/* テキストエリア */
.pickup-content {
  width: 100%;
  height: 500px;
  padding: 30px 15px;
  position: relative;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.05) 3px 5px 5px;
  text-align: left;
  z-index: 2;
}

.pickup-text {
  position: relative;
  z-index: 10;
}

/* 背景画像 */
.pickup-text::before {
  content: "";
  position: absolute;
  top: 65px;
  right: 0;
  width: 90%;
  height: 210px;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 1) 10%, rgba(255, 255, 255, 0) 50%),
    /* 左側を白くぼやけさせる */
    url("http://hirodentalclinic.com/wp-content/uploads/2025/06/staff.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
}

.pickup-text::after {
  content: '';
  width: 120px;
  height: 120px;
  background: rgba(221, 188, 125, 0.15);
  border-radius: 50%;
  position: absolute;
  top: -64%;
  right: -25px;
  z-index: 0;
  filter: blur(5px);
}

.pickup-lead {
  border-bottom: 7px solid rgba(247, 234, 196, 0.9);
}

.gold {
  font-size: 22px;
  color: #d28b38;
}

.pickup-text h3 {
  color: #5b5046;
  position: relative;
  z-index: 10;
  font-size: 27px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	margin-top: 7px;
}

.pickup-text-image {
  width: 100%;
  height: 230px;
  position: relative;
  z-index: 11;
}

.image_left {
  position: absolute;
  top: 70px;
  left: 0px;
  width: 150px;
  height: 100px;
}

.image_right {
  width: 120px;
  height: 70px;
  position: absolute;
  bottom: 0;
  left: 22%;
}

.pickup-text-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* リスト */
.pickup-list-center {
  position: absolute;
  top: 82%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* 親要素の中央に配置 */
  width: 100%;
  /* 親要素の幅を100%に */
  z-index: 100;
  /* 他の要素より前面に配置 */
  display: flex;
  justify-content: center;
  /* 横方向に中央揃え */
}

.pickup-list01 {
  display: flex;
  /* フレックスボックスを使用 */
  flex-direction: column;
  /* 縦並びにする */
  align-items: flex-start;
  /* アイコンと文字を左揃え */
  padding: 0;
  margin: 0;
  list-style: none;
  width: auto;
  /* 幅を内容に合わせる */
}

.pickup-list01 li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 5px;
  /* アイテム間の間隔を調整 */
  color: #2e2e2e;
  font-size: 15px;
  line-height: 24px;
  white-space: nowrap;
  /* 改行を防ぐ */
}

.pickup-list01 li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: #d28b38;
  /* ゴールド系カラー */
  font-size: 14px;
}

/* ボタン */
.pickup-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 140px;
}

.pickup-btn a {
  display: inline-block;
  padding: 8px 40px;
  background-color: #2e2e2e;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 13px;
  text-align: center;
  box-sizing: border-box;
}

/* 根管治療 */
.root-text {
  text-align: end;
}

.root-text::before {
  content: "";
  position: absolute;
  top: 65px;
  left: 0;
  width: 90%;
  height: 210px;
  background-image: linear-gradient(to left, rgba(255, 255, 255, 1) 10%, rgba(255, 255, 255, 0) 50%),
    /* 右側を白くぼやけさせる */
    url("http://hirodentalclinic.com/wp-content/uploads/2025/06/staff.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
}

.root-text::after {
  content: '';
  width: 120px;
  height: 120px;
  background: rgba(221, 188, 125, 0.15);
  border-radius: 50%;
  position: absolute;
  top: -64%;
  left: -25px;
  z-index: 0;
  filter: blur(5px);
}


.root-image_left {
  position: absolute;
  top: 70px;
  right: 0;
  width: 150px;
  height: 100px;
}

.root-image_right {
  width: 120px;
  height: 70px;
  position: absolute;
  bottom: 0;
  right: 22%;
}

/* ---------------------------------------
--------ヒロ・デンタルクリニックについて--------- */
/* 親ラッパー */
.clinic-sention {
  width: 100%;
  margin: 0 auto;
  padding: 60px 0;
  background: linear-gradient(135deg, #fff, #F7F7F7, #fff);
}

.clinic-sention h2 {
  text-align: center;
}

.clinic-sention-flex {
  width: 100%;
  margin: 20px auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  /* スマホ対応 */
}

/* 医院情報 */
.clinic-info {
  width: 90%;
  margin: 0 auto;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* 1行ごとの医院データ */
.clinic-data {
  display: flex;
  border-bottom: 1px solid #ccc;
  padding: 15px 0;
  font-size: 15px;
  color: #333;
  align-items: flex-start;
}

/* 左ラベル部分 */
.clinic-data dt {
  width: 30%;
  font-weight: bold;
  color: #7A6A58;
  flex-shrink: 0;
  padding-left: 10px;
  margin-right: 10px;
  border-left: 2px solid #7A6A58;
}

/* 内容部分 */
.clinic-data dd {
  width: 70%;
  margin: 0;
  line-height: 1.7;
}

.clinic-time-table {
  width: 95%;
  margin: 0 auto;
}

/* 右側：地図 */
.clinic-map {
  margin: 0 auto;
  overflow: hidden;
}

/* iframeのサイズ調整（スマホにも対応） */
.clinic-map iframe {
  width: 300px;
  height: 300px;
  width: 100%;
  border-radius: 5px;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* マイナ受付 */
.maina-img {
  width: 90%;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.brown {
  text-align: center;
  color: #7A6A58;
}

/* ---------------------------------------
--------フォトギャラリー--------------------- */
.photo-gallery .swiper-slide {
  width: 250px;
  /* 表示幅に応じて調整可 */
  height: auto;
}

.photoSwiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.photo-gallery .swiper-slide img {
  width: 100%;
  height: 180px;
  display: block;
  object-fit: cover;
}

/* ---------------------------------
--------フッター--------------------- */
footer {
  width: 100%;
  background:
    linear-gradient(135deg, rgba(122, 106, 88, 0.9), rgba(38, 23, 13, .7), rgba(38, 23, 13, .7)),
    url(https://hirodentalclinic.com/wp-content/uploads/2025/06/slide-image01.jpeg) no-repeat center center / cover;
  padding-bottom: 57px;
  padding-top: 18px;
  margin-top: 20px;
}

/* フッターの表 */
.time-table {
  border: 1px solid #ddd;
  border-collapse: separate;
  overflow: hidden;
  border-spacing: 0;
  text-align: center;
  background: #fff;
  margin-bottom: 20px;
  width: 100%;
  font-family: serif;
  color: #646464;
}

.time-table th,
.time-table td {
  padding: 15px 5px;
  vertical-align: middle;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  line-height: 1;
  font-weight: normal;
}

.time-table th:last-child,
.time-table td:last-child {
  border-right: none;
}

.time-table tr:last-child th,
.time-table tr:last-child td {
  border-bottom: none;
}

.time-table th {
  background: #F3F0EE;
  color: #646464;
}

.time-table th.bg01 {
  background: #fff;
  color: #333;
}

.time-table th:first-child {
  width: 33%;
}

.time-table th:last-child {
  width: 12%;
}

.time-table td {
  width: calc(55% / 6);
  color: #ad9180;
}

.time-table.f-time-table th {
  background: #F9F6EC;
  color: #ad9180;
}

.time-table.f-time-table th.bg01 {
  background: #fff;
  color: #333;
}

.time-table.wide th:first-child {
  width: 25%;
}

.time-table.wide th:last-child {
  width: 10%;
}

.Saturday p {
  text-align: center;
  color: #fff;
}

/* ----------フッターの表ここまで ------------*/

.inner {
  width: 90%;
  margin: 0 auto;
  padding-top: 15px;
}

.f-logo img {
  width: 90%;
  height: auto;
  margin: 0 auto;
}

.info {
  width: 90%;
  margin: 0 auto;
  color: #fff;
}

.address,
.parking {
  margin: 15px 0;
}

/* ロゴ */
.car::before {
  content: '';
  display: inline-block;
  width: 27px;
  height: 27px;
  padding-bottom: 10px;
  background-image: url(https://hirodentalclinic.com/wp-content/uploads/2025/06/car02.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-right: 10px;
}

.parking::before {
  content: '';
  display: inline-block;
  width: 27px;
  height: 27px;
  padding-bottom: 10px;
  background-image: url(https://hirodentalclinic.com/wp-content/uploads/2025/06/parking02.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-right: 10px;
}

.foot-right {
  width: 90%;
  margin: 10px auto;
}

.foot-right img {
  margin-top: 25px;
}

iframe {
  width: 100%;
  height: 250px;
  margin: 20px 0;
}

/* フッターのメニュー */
.category {
  width: 100%;
  font-size: 14px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 35px;
  /* 上下24px、左右10pxの余白 */
  padding: 20px;
  box-sizing: border-box;
  line-height: 1.8;
}

.category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category li {
  margin-bottom: 6px;
}

.category a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
}

/* 表示順制御（gridではorderで順番が変わる） */
.category1 {
  order: 1;
}

.category3 {
  order: 2;
}

.category2 {
  order: 3;
}

.category2-2 {
  order: 4;
}

.small {
  background: #2e2e2e;
  color: #fff;
  font-size: 14px;
  text-align: center;
}

.btn-primary02,
.btn-secondary02 {
  display: inline-block;
  padding: 12px 24px;
  font-size: 14px;
  text-decoration: none;
  border-radius: 4px;
  text-align: center;
  width: 70%;
}

.btn-primary02 {
  background: #5b5046;
  color: #fff;
  border: 1px solid #bdaea5;
}

.btn-secondary02 {
  border: 1px solid #7A6A58;
  color: #5b5046;
  background: #fff;
}