/* ========================================================
   Custom Properties
=========================================================*/
:root {
  --text-color: #333;
  --main-color-green: #69ac4f;
  --sub-color-green: #629b6e;
  --sub-color-dark-green: #57795e;
  --sub-color-yellow: #ffde61;
  --sub-color-pink: #e3948f;

  --bg-color-beige: #f9f7f1;
  --bg-color-gray: #f6f6f6;
  --bg-color-general: #fbfaf4;

  --gray-color: #e5e5e5;
  --line-color: #e5e5e5;

  --margin-xxl: 120px;
  --margin-xl: 80px;
  --margin-l: 56px;
  --margin-m: 48px;
  --margin-ms: 32px;
  --margin-s: 24px;
  --margin-xs: 16px;

  --margin-bottom-last-section: 160px;
}

@media (max-width: 767.98px) {
  :root {
    --margin-xxl: 80px;
    --margin-xl: 60px;
    --margin-l: 40px;
    --margin-m: 32px;
    --margin-ms: 24px;
    --margin-s: 16px;
    --margin-xs: 8px;

    --margin-bottom-last-section: 120px;
  }
}

/* ========================================================
   Keyframe Animations
=========================================================*/
/* 下からフェードイン */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 下の非表示領域から上にスライド */
@keyframes slideUpFromBottom {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

/* ふわっと表示（拡大なし） */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ふわふわ浮遊（deco_03用：大きめ） */
@keyframes floating03 {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* ふわふわ浮遊（deco_04用：中くらい） */
@keyframes floating04 {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ふわふわ浮遊（キャラクター用：小さめ） */
@keyframes floatingCharacter {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

/* ふわふわ浮遊（キャラクター デスクトップ用：回転維持） */
@keyframes floatingCharacterPC {
  0%,
  100% {
    transform: rotate(-4.863deg) translateY(-69%);
  }

  50% {
    transform: rotate(-4.863deg) translateY(calc(-69% - 5px));
  }
}

/* キャラクター：下から上ににょきっと */
@keyframes slideUpCharacter {
  from {
    opacity: 0;
    transform: rotate(-4.863deg) translateY(50%);
  }

  to {
    opacity: 1;
    transform: rotate(-4.863deg) translateY(-69%);
  }
}

/* キャラクター（スマホ）：下から上ににょきっと */
@keyframes slideUpCharacterSP {
  from {
    opacity: 0;
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================================
   Common
=========================================================*/
html {
  font-size: 62.5%;
  box-sizing: border-box;
}

body {
  font-family:
    "fot-rodin-pron", "Hiragino Kaku Gothic ProN", "ヒラギゴ ProN W3", Arial,
    nc3Jp, sans-serif;
  background: #fff;
  color: var(--text-color);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ドロワーメニューが開いた時にbodyのスクロールを防ぐ */
body.drawer-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

@media (min-width: 1280px) {
  body {
    font-size: 1.6rem;
  }
}

section {
  position: relative;
  z-index: 2;
}

p {
  line-height: 1.7;
}

@media (max-width: 991.98px) {
  p {
    line-height: 1.7;
  }
}

@media (min-width: 576px) {
  .xs {
    display: none !important;
  }
}

@media (max-width: 575.98px) {
  .xsnon {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .sp {
    display: none !important;
  }
}

@media (max-width: 991.98px) {
  .pc {
    display: none !important;
  }
}

/* 薬剤師向けページのみ1310px以下でハンバーガーメニュー */
@media (min-width: 992px) and (max-width: 1309.98px) {
  body.pharmacist .header_right.pc,
  body.page-template-pharmacists .header_right.pc,
  body.single-pharmacist_news .header_right.pc,
  body[class*="pharmacist"] .header_right.pc {
    display: none !important;
  }

  body.pharmacist .hamburger.sp,
  body.page-template-pharmacists .hamburger.sp,
  body.single-pharmacist_news .hamburger.sp,
  body[class*="pharmacist"] .hamburger.sp {
    display: block !important;
  }

  body.pharmacist .drawer.sp,
  body.page-template-pharmacists .drawer.sp,
  body.single-pharmacist_news .drawer.sp,
  body[class*="pharmacist"] .drawer.sp {
    display: block !important;
  }
}

@media (min-width: 1310px) {
  body.pharmacist .sp,
  body.page-template-pharmacists .sp,
  body.single-pharmacist_news .sp,
  body[class*="pharmacist"] .sp {
    display: none !important;
  }
}

@media (max-width: 767.98px) {
  .sp_left {
    text-align: left;
  }
}

.br_sp {
  display: inline;
}

@media (min-width: 968px) {
  .br_sp {
    display: none;
  }
}

.flex_columns {
  display: flex;
  gap: 5vw;
  align-items: center;
  justify-content: space-between;
}

.flex_columns-center {
  align-items: center;
  justify-content: center;
  gap: 24px;
}

@media (max-width: 991.98px) {
  .flex_columns {
    flex-wrap: wrap;
    gap: 24px;
  }

  .flex_column {
    width: 100% !important;
  }
}

@media (min-width: 992px) {
  .row_reverse {
    flex-direction: row-reverse;
  }
}

@media (max-width: 991.98px) {
  .col_reverse {
    flex-direction: column-reverse;
  }
}

.deco {
  position: absolute;
}

.ft_serif {
  font-family: "Noto Serif JP", serif;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-s {
  margin-top: var(--margin-s) !important;
}

.mt-ms {
  margin-top: var(--margin-ms) !important;
}

.mt-m {
  margin-top: var(--margin-m) !important;
}

.mt-l {
  margin-top: var(--margin-l) !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-l {
  margin-bottom: var(--margin-l) !important;
}

.mb-m {
  margin-bottom: var(--margin-m) !important;
}
.mb-ms {
  margin-bottom: var(--margin-ms) !important;
}

.mb-s {
  margin-bottom: var(--margin-s) !important;
}

.mb-xs {
  margin-bottom: var(--margin-xs) !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.fw-700 {
  font-weight: 700;
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.mt-auto {
  margin-top: auto;
}

.pt-16 {
  padding-top: 16px;
}

.w-100 {
  width: 100%;
}

.h-36 {
  height: 36px;
}

.fs-12 {
  font-size: 1.2rem;
}

.p-0 {
  padding: 0;
}
/* ========================================================
   Components
=========================================================*/

/* Container
-----------------------------------*/
.container {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
}

.container.is_slim {
  max-width: 1000px;
}

@media (max-width: 575.98px) {
  .container {
    width: 90%;
  }
}

.last_section {
  padding-bottom: var(--margin-bottom-last-section) !important;
}

/* Title
-----------------------------------*/
.section_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: var(--margin-l);
  position: relative;
}

@media (max-width: 767.98px) {
  .section_title {
    align-items: flex-start;
  }

  .section_title.is_align_center {
    align-items: center;
  }
}

.section_title_en {
  font-family: "Ubuntu", sans-serif;
  font-size: clamp(44px, calc((68 / 1440) * 100vw), 68px);
  font-weight: 700;
  letter-spacing: 3.4px;
  color: rgba(255, 222, 97, 0.6);
  line-height: 1;
}

body.pharmacist .section_title_en {
  color: #bbe1ad;
}

body.pharmacist .news_category {
  background-color: var(--main-color-green);
  color: #ffffff;
}

.section_title_ja {
  font-size: clamp(22px, calc((28 / 1440) * 100vw), 28px);
  font-weight: 600;
  letter-spacing: 2.8px;
  color: var(--text-color);
  position: relative;
  z-index: 1;
  margin-top: -16px;
  line-height: 1;
}

.section_title.is_large {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-bottom: var(--margin-l);
}

.section_title.is_large .en {
  font-size: clamp(48px, calc((106 / 1440) * 100vw), 106px);
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1;
  color: #e1f1fd;
}

.section_title.is_large .ja {
  font-size: clamp(24px, calc((32 / 1440) * 100vw), 32px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: var(--main-color);
}

/* Box
-----------------------------------*/
.box {
  background-color: #fff;
  border-radius: 24px;
  padding: var(--margin-m);
  box-shadow: 0 4px 24px 0 rgba(172, 171, 164, 0.2);
}

@media (max-width: 767.98px) {
  .box {
    padding: var(--margin-m) var(--margin-ms);
  }
}

.box.is_no_bs {
  box-shadow: none !important;
  border: none !important;
}

.box.is_bg_beige {
  background-color: var(--bg-color-beige);
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.14);
}

.box.is_bg_gray {
  background-color: var(--bg-color-gray);
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.14);
}

.box.is_thin {
  padding: var(--margin-s) var(--margin-ms);
}

.box_title {
  font-size: clamp(2rem, calc((24 / 1440) * 100vw), 2.4rem);
  font-weight: 700;
  color: var(--text-color);
  padding-bottom: 10px;
  margin-bottom: 16px;
  border-bottom: 1px dashed var(--main-color-green);
}

.box_title.is_no_bb {
  border-bottom: none;
}

.box_title.is_dot_line {
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 24px;
}

.box_title.is_dot_line::after {
  content: "";
  position: absolute;
  bottom: -4px;
  height: 3px;
  left: 0;
  width: 100%;
  background: radial-gradient(
      circle closest-side,
      rgba(44, 148, 22, 0.5) 90%,
      #0000
    )
    0 / 9px 100%;
}

.box_title_note {
  position: relative;
  font-size: clamp(1.8rem, calc((24 / 1440) * 100vw), 2.4rem);
  font-weight: 700;
  color: var(--text-color);
  padding-bottom: 10px;
  margin-bottom: 16px;
  border-bottom: 1px dashed var(--line-color);
  padding-left: 24px;
}

.box_title_note::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--main-color-green);
}

.page_main_content p.box_txt {
  font-size: 1.6rem;
  font-family:
    "fot-rodin-pron", "Hiragino Kaku Gothic ProN", "ヒラギゴ ProN W3", Arial,
    nc3Jp, sans-serif;
  margin-bottom: 16px;
}

.page_main_content p.section_txt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  margin-bottom: var(--margin-l);
  line-height: 1.9;
  letter-spacing: 0.03em;
  font-weight: 500;
}

@media (max-width: 767.98px) {
  .page_main_content p.section_txt {
    font-size: 1.6rem;
  }
}

/* List
-----------------------------------*/
.list_green_dot {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.list_green_dot li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 4px;
}

.list_green_dot li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--main-color-green);
}

.list_mark_green {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.list_mark_green li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 4px;
}

.list_mark_green li a {
  color: var(--main-color-green);
  text-decoration: underline;
}

.list_mark_green > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--main-color-green);
}

/* 緑番号付きのol */
.list_ol_green {
  counter-reset: list-ol-green;
  padding-left: 0;
  margin: 0;
  margin-top: 8px;
}

.list_ol_green li {
  list-style: none;
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  line-height: 1.6;
}

.list_ol_green li::before {
  counter-increment: list-ol-green;
  content: counter(list-ol-green) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--main-color-green);
  font-weight: 700;
}

/* 外部リンクカード（徳島県バナー用） */
.link_card {
  display: block;
  text-decoration: none;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 16px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  background: #fff;
}

.link_card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.link_card_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  color: var(--main-color-green);
  font-weight: 700;
}

.link_card_body {
  display: grid;
  grid-template-columns: 140px 1fr 32px;
  gap: 16px;
  align-items: center;
}

.link_card_thumb {
  border-radius: 8px;
  overflow: hidden;
}

.link_card_thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.link_card_title {
  font-size: 1.6rem;
  margin: 0 0 4px;
  color: var(--text-color);
}

.link_card_desc {
  margin: 0;
  font-size: 1.4rem;
  color: #666;
  line-height: 1.7;
}

.link_card_icon {
  width: 32px;
  height: 32px;
}

/* 災害対策：モバイルファーマシーギャラリー */
.disaster_gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.disaster_gallery_item {
  text-align: center;
}

.disaster_gallery_image {
  border-radius: 12px;
  overflow: hidden;
  background: #f7f7f7;
}

.disaster_gallery_image img {
  width: 100%;
  height: auto;
  display: block;
}

.disaster_gallery_caption {
  margin-top: 8px;
  font-size: 1.4rem;
  color: #555;
  line-height: 1.5;
}

@media screen and (max-width: 900px) {
  .disaster_gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 560px) {
  .disaster_gallery {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 640px) {
  .link_card_body {
    grid-template-columns: 1fr;
  }

  .link_card_thumb {
    max-width: 260px;
  }

  .link_card_icon {
    justify-self: flex-end;
  }
}

.is_center {
  text-align: center!important;
}

.link_external {
  color: var(--main-color-green);
  text-decoration: underline;
}

.image_caption {
  text-align: center;
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 1.4rem;
  color: #666;
}

.test_item_image_container {
  margin-top: var(--margin-ms);
  margin-bottom: var(--margin-ms);
  max-width: 400px;
}

.image_rounded {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: block;
}

.box_title_with_line {
  font-size: clamp(20px, calc((24 / 1440) * 100vw), 24px) !important;
  font-weight: 600;
  color: var(--text-color);
  padding: 8px 0;
  border-bottom: 1px dashed var(--line-color);
  margin-bottom: 14px;
}

/* Heading
-----------------------------------*/
.heading_h2 {
  font-size: clamp(22px, calc((30 / 1440) * 100vw), 32px) !important;
  font-weight: 700;
  color: var(--text-color);
  padding: 8px 10px;
  position: relative;
  margin-bottom: 24px;
}

.heading_h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: #e5e5e5;
  border-radius: 3px;
}

@media (max-width: 767.98px) {
  .heading_h2 {
    padding: 8px;
  }
}

.heading_h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 180px;
  height: 6px;
  background-color: #ffeba0;
  z-index: 1;
  border-radius: 3px;
}

body.pharmacist .heading_h2::before {
  background-color: #fbb3af;
}

.heading_h3 {
  font-size: clamp(2.2rem, calc((24 / 1400) * 100vw), 2.4rem);
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.heading_h3::before {
  content: "";
  width: 24px;
  height: 24px;
  border: 7px solid var(--main-color-green);
  border-radius: 50%;
  flex-shrink: 0;
  box-sizing: border-box;
  margin-top: 7px;
}

/* Button
-----------------------------------*/
button {
    cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 34px 10px 24px;
  font-size: 1.6rem;
  font-weight: 500;
  border-radius: 100vmax;
  transition: background-color 0.3s ease;
  white-space: nowrap;
  position: relative;
  text-decoration: none !important;
  cursor: pointer;
}

.btn span {
  letter-spacing: 0.06em;
  transition: letter-spacing 0.3s ease;
}

.btn:hover span {
  letter-spacing: 0.1em;
}

.btn:visited {
  color: inherit;
}

/* ボタンに矢印を追加 */
.btn::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background-image: url("../images/btn_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}

.btn:hover::after {
  transform: translateY(-50%) translateX(4px);
}

/* ボタンカラーバリエーション */
.btn_green {
  background-color: var(--main-color-green);
  color: #fff;
}

.btn_green:hover {
  background-color: #7bc060;
  /* 少し明るいグリーン */
  color: #fff;
}

.btn_green:visited {
  color: #fff;
}

.btn_dark_green {
  background-color: var(--sub-color-dark-green);
  color: #fff;
}

.btn_dark_green:hover {
  background-color: #68906f;
  /* 少し明るいダークグリーン */
  color: #fff;
}

.btn_dark_green:visited {
  color: #fff;
}

.btn_pink {
  background-color: var(--sub-color-pink);
  color: #fff;
}

.btn_pink:hover {
  background-color: #eba59f;
  /* 少し明るいピンク */
  color: #fff;
}

.btn_pink:visited {
  color: #fff;
}

/* 戻るボタン（左矢印） */
.btn_back {
  min-width: 200px;
  padding-left: 40px;
}

.btn_back::after {
  content: "";
  position: absolute;
  left: 16px;
  right: auto;
  top: 50%;
  transform: translateY(-50%) scaleX(-1);
  width: 15px;
  height: 15px;
  background-image: url("../images/btn_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}

.btn_back:hover::after {
  transform: translateY(-50%) scaleX(-1) translateX(4px);
}

/* Button Wrapper for centering */
.btn_wrapper {
  display: flex;
  justify-content: center;
}

/* Button with Icon (アイコン＋テキスト＋矢印ボタン) */
.btn_with_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 300px;
  padding: 10px 34px 10px 16px;
  font-size: 1.6rem;
  font-weight: 500;
  border-radius: 100vmax;
  transition: background-color 0.3s ease;
  white-space: nowrap;
  position: relative;
  text-decoration: none !important;
}

.btn_with_icon_icon {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn_with_icon_icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.btn_with_icon span {
  letter-spacing: 0.06em;
  transition: letter-spacing 0.3s ease;
}

.btn_with_icon:hover span {
  letter-spacing: 0.1em;
}

.btn_with_icon:visited {
  color: inherit;
}

.btn_with_icon::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background-image: url("../images/btn_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}

.btn_with_icon:hover::after {
  transform: translateY(-50%) translateX(4px);
}

.button_center {
  text-align: center;
}

.is_wide {
  min-width: 240px;
}

.is_fullwide {
  width: 100%;
}

.is_no_arrow::after {
  display: none;
}

/* Color Variations */
.btn_with_icon.btn_green {
  background-color: var(--main-color-green);
  color: #fff;
}

.btn_with_icon.btn_green:hover {
  background-color: #7bc060;
  color: #fff;
}

.btn_with_icon.btn_green:visited {
  color: #fff;
}

.btn_with_icon.btn_yellow {
  background-color: #ffde61;
  color: var(--text-color);
}

.btn_with_icon.btn_yellow:hover {
  background-color: #ffe889;
  color: var(--text-color);
}

.btn_with_icon.btn_yellow:visited {
  color: var(--text-color);
}

/* Icon Link (アイコン＋テキストリンク)
-----------------------------------*/
.icon_link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.icon_link:hover {
  color: var(--main-color-green);
}

.icon_link_icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.icon_link:hover .icon_link_icon {
  transform: translateX(4px);
}

.icon_link_icon svg {
  width: 100%;
  height: 100%;
}

.icon_link_text {
  line-height: 1.2;
}

/* ページボタンラッパー */
.page_button_wrapper {
  margin-top: var(--margin-m);
  display: flex;
  justify-content: center;
}

@media (max-width: 767.98px) {
  .btn_arrow {
    padding-right: 36px;
  }

  .btn_arrow::after {
    right: 12px;
    font-size: 1.4rem;
  }

  .btn_back {
    min-width: 180px;
    padding-left: 36px;
  }

  .btn_back::after {
    left: 12px;
  }
}

/* Page Header
-----------------------------------*/
.page_header {
  padding: var(--margin-ms) 0;
  position: relative;
}

.page_header_centered,
.single .page_header,
.archive .page_header {
  padding: var(--margin-l) 0;
}

.page_header::before {
  content: "";
  display: block;
  background: url("../images/ph_deco.svg") no-repeat center left / contain;
  aspect-ratio: 336 / 265;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24vw;
  z-index: 1;
}

body.pharmacist .page_header::before {
  background: url("../images/ph_deco_pharmacist.svg") no-repeat center left /
    contain;
}

@media (max-width: 967.98px) {
  .page_header::before {
    width: vw;
    max-width: 336px;
  }
}

.page_header_content {
  display: grid;
  grid-template-columns: 1fr clamp(320px, calc((560 / 1440) * 100vw), 560px);
  gap: 60px;
  align-items: center;
}

.page_header_left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.page_header_centered .page_header_content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page_header_centered .page_title {
  margin-bottom: 0;
  align-items: center;
  text-align: center;
}

@media (max-width: 967.98px) {
  .page_header_left {
    width: 100%;
  }
}

.page_title {
  font-size: 4.6rem;
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.3;
}

.page_subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-color);
  margin-top: 16px;
  margin-bottom: 0;
  opacity: 0.8;
}

.page_header_centered .page_subtitle {
  margin-top: 8px;
  text-align: center;
}

.page_header_nav {
  display: flex;
  gap: 16px;
  row-gap: 8px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.page_header_nav_link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page_header_nav_link::before {
  content: "";
  width: 17px;
  height: 17px;
  background-image: url("../images/ico_arrow_circle.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(90deg);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.page_header_nav_link:hover {
  color: var(--main-color-green);
}

.page_header_nav_link:hover::before {
  transform: rotate(90deg) translateX(4px);
}

.page_header_right {
  width: 100%;
  position: relative;
  z-index: 2;
  max-width: clamp(320px, calc((560 / 1440) * 100vw), 560px);
}

.page_header_right::before {
  content: "";
  position: absolute;
  top: calc(-40 / 560 * 100%);
  left: calc(-11 / 560 * 100%);
  width: 15%;
  height: auto;
  aspect-ratio: 84 / 91;
  background-image: url("../images/ph_img_deco01.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}

.page_header_right::after {
  content: "";
  position: absolute;
  bottom: calc(-28 / 560 * 100%);
  right: calc(54 / 560 * 100%);
  width: 7.14%;
  height: auto;
  aspect-ratio: 1 / 1;
  background-image: url("../images/ph_img_deco02.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}

.page_header_image {
  width: 100%;
  height: auto;
  aspect-ratio: 560 / 290;
  object-fit: cover;
  border-radius: 24px;
}

@media (max-width: 968px) {
  .page_header_content {
    grid-template-columns: 1fr;
    gap: var(--margin-m);
  }

  .page_header_content {
    display: flex;
    flex-direction: column-reverse;
  }

  .page_header_right {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .page_title {
    font-size: 2.8rem;
  }

  .page_header_nav_link {
    font-size: 1.4rem;
  }
}

/* Page Deco
-----------------------------------*/
.section_deco_green_right {
  position: relative;
}

.section_deco_green_right::before {
  content: "";
  position: absolute;
  display: block;
  background-image: url("../images/activity_deco.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 12vw;
  aspect-ratio: 178 / 409;
  top: var(--margin-xxl);
  right: 0;
  z-index: -1;
}

.section_deco_yellow_left {
  position: relative;
}
.section_deco_yellow_left::after {
  content: "";
  position: absolute;
  display: block;
  background-image: url("../images/page_deco_general_left_yellow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 12vw;
  aspect-ratio: 178 / 409;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: -1;
}

@media (max-width: 767.98px) {
  .section_deco_green_right::before {
    width: 40vw;
  }
  .section_deco_yellow_left::after {
    width: 40vw;
  }
}

/* ========================================================
   Header
=========================================================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: transparent;
  transition: all 0.3s ease;
}

/* スクロール時のヘッダー */
header.scrolled {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  transition: padding 0.3s ease;
}

@media (max-width: 767.98px) {
  .header_container {
    padding: 8px 16px;
  }
}

header.scrolled .header_container {
  padding: 12px 24px;
}

@media (max-width: 767.98px) {
  header.scrolled .header_container {
    padding: 8px 16px;
  }
}

.header_logo {
  width: 320px;
  flex-shrink: 0;
  transition: width 0.3s ease;
}

header.scrolled .header_logo {
  width: 240px;
}

@media (max-width: 767.98px) {
  .header_logo {
    width: 220px;
  }

  header.scrolled .header_logo {
    width: 220px;
  }
}

/* Header Right (2段構成エリア)
-----------------------------------*/
.header_right {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.header_top_buttons {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  overflow: hidden;
  max-height: 40px;
  opacity: 1;
  transition:
    max-height 0.3s ease,
    opacity 0.3s ease,
    margin 0.3s ease;
}

/* スクロール時に上段ボタンを非表示 */
header.scrolled .header_top_buttons {
  max-height: 0;
  opacity: 0;
  margin: 0;
}

.header_bottom {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}

.header_bottom .btn {
  width: 195px;
  height: 40px;
  padding: 0;
}

.header_nav {
  flex: 1;
}

.header_nav_list {
  display: flex;
  gap: 32px;
  list-style: none;
  justify-content: flex-end;
}

.header_nav_list > li {
  position: relative;
}

.header_nav_list a {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-color);
  transition: color 0.3s ease;
  display: block;
  padding: 8px 0;
}

.header_nav_list > li > a:hover {
  color: var(--main-color-green);
}

/* Header Child Navigation */
.header_nav_child {
  position: absolute;
  top: calc(100% + 24px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 16px;
  min-width: 260px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;
  z-index: 200;
}

/* hover領域を拡張（親から子への移動時に消えないように） */
.header_nav_child::after {
  content: "";
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  height: 24px;
  background-color: transparent;
}

/* 吹き出しの三角形 */
.header_nav_child::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #fff;
  filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.05));
  z-index: 1;
}

.header_nav_parent:hover .header_nav_child {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.header_nav_child li {
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px dashed var(--line-color);
}

.header_nav_child li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.header_nav_child a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 5px 16px;
  font-size: 1.4rem;
  font-weight: 500;
  white-space: nowrap;
  border-radius: 8px;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
  position: relative;
}

.header_nav_child a::after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("../images/ico_arrow_circle.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  margin-left: 8px;
}

.header_nav_child a:hover {
  color: var(--main-color-green);
}

.header_nav_child a:hover::after {
  transform: translateX(4px);
}

/* 2カラムレイアウト - 薬局業務支援・各種資料専用 */
.header_nav_child.header_nav_child_wide {
  min-width: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 24px;
}

.header_nav_child.header_nav_child_wide > li {
  padding: 0 0 16px 0 !important;
  margin: 0 0 16px 0 !important;
  border: none !important;
  border-bottom: 1px dashed var(--line-color) !important;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
}

.header_nav_child.header_nav_child_wide > li:last-child {
  border-bottom: none !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.header_nav_child.header_nav_child_wide .header_nav_group_label {
  padding: 0 24px 0 0;
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--main-color-green);
  pointer-events: none;
  display: flex;
  align-items: flex-start;
}

.header_nav_child.header_nav_child_wide ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.header_nav_child.header_nav_child_wide ul li {
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

.header_nav_child.header_nav_child_wide a {
  padding: 0;
  font-size: 1.4rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.header_nav_child.header_nav_child_wide a::after {
  content: "";
  width: 18px;
  height: 18px;
  background-image: url("../images/ico_arrow_circle.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  margin-left: 0;
}

.header_nav_child.header_nav_child_wide a:hover {
  color: var(--main-color-green);
}

.header_nav_child.header_nav_child_wide a:hover::after {
  transform: translateX(4px);
}

/* グループラベル（その他の場所で使用される場合） */
.header_nav_group_label {
  font-size: 1.2rem;
  font-weight: 700;
  color: #999;
  padding: 8px 16px 4px;
  margin-top: 8px;
  pointer-events: none;
  border-bottom: none !important;
  margin-bottom: 4px !important;
}

.header_nav_group_label:first-child {
  margin-top: 0;
}

/* ========================================================
   Hamburger Menu
=========================================================*/
.hamburger {
  width: 48px;
  height: 48px;
  position: relative;
  z-index: 101;
}

.hamburger_checkbox {
  display: none;
}

.hamburger_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
  background-color: var(--main-color-green);
  border-radius: 50%;
}

.hamburger_icon span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 1.5px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.hamburger_icon span:nth-child(1) {
  top: 16px;
}

.hamburger_icon span:nth-child(2) {
  top: 23px;
}

.hamburger_icon span:nth-child(3) {
  top: 30px;
}

.hamburger_checkbox:checked ~ .hamburger_icon span:nth-child(1) {
  top: 23px;
  transform: translateX(-50%) rotate(45deg);
}

.hamburger_checkbox:checked ~ .hamburger_icon span:nth-child(2) {
  opacity: 0;
}

.hamburger_checkbox:checked ~ .hamburger_icon span:nth-child(3) {
  top: 23px;
  transform: translateX(-50%) rotate(-45deg);
}

/* ハンバーガーメニューが開いた時のheader背景色 */
header:has(.hamburger_checkbox:checked) {
  background-color: rgba(255, 255, 255, 0.95) !important;
}

/* Fixed Bottom Buttons (SP)
-----------------------------------*/
/* Fixed bottom buttons - 削除済み（ドロワーメニュー内に移動） */

/* ========================================================
   Drawer Menu
=========================================================*/
.drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.98);
  z-index: 99;
  transition: right 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.drawer.open {
  right: 0;
}

@media (min-width: 768px) {
  .drawer {
    width: 400px;
    right: -400px;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15);
  }

  .drawer.open {
    right: 0;
  }
}

.drawer_content {
  padding: 80px 32px 80px;
  min-height: 100%;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .drawer_content {
    padding: 100px 32px 32px;
  }
}

.drawer_logo {
  display: block;
  width: 200px;
  margin-bottom: 40px;
}

.drawer_menu {
  list-style: none;
}

.drawer_menu > li {
  border-bottom: 1px dashed var(--line-color);
}

.drawer_menu > li > a {
  display: block;
  padding: 16px 0;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-color);
  position: relative;
}

.drawer_menu_toggle {
  display: block;
  width: 100%;
  padding: 20px 0;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-color);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
}

.drawer_menu_toggle::before,
.drawer_menu_toggle::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 16px;
  height: 2px;
  background-color: var(--text-color);
  transition: transform 0.3s ease;
}

.drawer_menu_toggle::before {
  transform: translateY(-50%);
}

.drawer_menu_toggle::after {
  transform: translateY(-50%) rotate(90deg);
}

.drawer_menu_parent.open .drawer_menu_toggle::before {
  transform: translateY(-50%) rotate(180deg);
}

.drawer_menu_parent.open .drawer_menu_toggle::after {
  transform: translateY(-50%) rotate(180deg);
}

/* Toggle wrapper for link + icon pattern */
.drawer_menu_toggle_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.drawer_menu_link {
  flex: 1;
  padding: 20px 0;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-color);
  text-decoration: none;
}

.drawer_menu_toggle_icon {
  position: relative;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}

.drawer_menu_toggle_icon::before,
.drawer_menu_toggle_icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  background-color: var(--text-color);
  transition: transform 0.3s ease;
}

.drawer_menu_toggle_icon::before {
  transform: translate(-50%, -50%);
}

.drawer_menu_toggle_icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.drawer_menu_parent.open .drawer_menu_toggle_icon::before {
  transform: translate(-50%, -50%) rotate(180deg);
}

.drawer_menu_parent.open .drawer_menu_toggle_icon::after {
  transform: translate(-50%, -50%) rotate(180deg);
}

.drawer_menu_child {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.drawer_menu_parent.open .drawer_menu_child {
  max-height: 1200px;
}

.drawer_menu_child li {
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.drawer_menu_child a {
  display: block;
  padding: 16px 20px;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-color);
  position: relative;
}

/* Drawer グループラベル */
.drawer_menu_group_label {
  font-size: 1.3rem;
  font-weight: 700;
  color: #999;
  padding: 12px 20px 4px;
  pointer-events: none;
  border-top: none !important;
}

.drawer_menu_group_label:first-child {
  padding-top: 8px;
}

.drawer_buttons {
  display: flex;
  flex-direction: row;
  gap: 8px;
  padding: 16px 0;
  margin-bottom: 0;
  justify-content: center;
}

.drawer_buttons .btn {
  flex: 1;
  max-width: 300px;
  justify-content: center;
  font-size: 1.2rem;
  padding: 8px 12px;
  height: auto;
  min-height: 36px;
}

@media (min-width: 768px) {
  .drawer_buttons {
    padding: 16px 12px;
  }
}

.drawer_buttons .btn span {
  font-size: 1.6rem;
  line-height: 2.3;
}

.drawer_icon_links {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 16px;
  padding: 16px 0;
  margin-top: auto;
  justify-content: center;
}

/* ========================================================
   Footer
=========================================================*/
footer {
  color: #fff;
  position: relative;
}

.footer_container {
  background-color: var(--sub-color-green);
  position: relative;
  z-index: 5;
}

.footer_content {
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  align-items: start;
}

.footer_left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer_logo {
  width: 280px;
}

.footer_logo img {
  width: 100%;
  height: auto;
  display: block;
}

.footer_info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer_address,
.footer_tel,
.footer_fax {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
}

.footer_tel a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer_tel a:hover {
  opacity: 0.7;
}

.footer_address {
  margin-bottom: 8px;
}

.footer_nav {
  display: flex;
  gap: clamp(40px, 6vw, 80px);
  justify-content: center;
}

.footer_nav_column {
  display: flex;
  flex-direction: column;
}

.footer_nav_list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.footer_nav_list a {
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.footer_nav_list a:hover {
  opacity: 0.7;
}

.footer_nav_child a {
  font-size: 15px;
}

.footer_nav_child a::before {
  content: "- ";
  color: #bdbdbd;
}

.footer_right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.footer_right .btn {
  width: 240px;
}

.footer_right .btn::after {
  filter: brightness(0) invert(1);
}

.footer_copyright {
  background-color: var(--sub-color-dark-green);
  text-align: center;
  padding: 24px 0;
}

.footer_copyright p {
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
}

footer::before {
  content: url(../images/footer_deco.svg);
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-96%);
  z-index: 1;
}

body.pharmacist footer::before {
  content: url(../images/footer_deco_p.svg);
  left: unset;
  right: 0;
  z-index: 1;
}

@media (max-width: 1400px) {
  .footer_content {
    display: grid;
    grid-template-columns: auto auto;
    gap: 40px 60px;
    justify-content: center;
    align-items: start;
  }

  .footer_left {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .footer_address {
    margin-bottom: 0;
  }

  .footer_nav {
    justify-content: center;
    grid-column: 1;
    grid-row: 2;
  }

  .footer_right {
    align-items: flex-start;
    grid-column: 2;
    grid-row: 2;
  }
}

@media (max-width: 991.98px) {
  .footer_content {
    gap: 32px;
  }

  .footer_nav {
    gap: 40px;
  }
}

@media (max-width: 767.98px) {
  .footer_content {
    padding: 24px;
    gap: 24px;
  }

  .footer_left {
    flex-direction: column;
  }

  .footer_address,
  .footer_tel,
  .footer_fax {
    text-align: center;
  }

  .footer_logo {
    width: 200px;
  }

  .footer_nav {
    display: none;
  }

  .footer_right {
    display: none;
  }

  .footer_right .btn {
    width: 100%;
  }

  .footer_copyright {
    padding: 20px 0;
  }

  .footer_copyright p {
    font-size: 1rem;
  }
}

/* ========================================================
   Main Content
=========================================================*/
main {
  margin-top: 110px;
}

@media (max-width: 767.98px) {
  main {
    margin-top: 64px;
  }
}

/* ========================================================
   Page Container
=========================================================*/
.page_container {
  padding: var(--margin-xl) 0;
}

.page_content {
  max-width: 800px;
}

/* ========================================================
   Front Page
=========================================================*/

/* FV
-----------------------------------*/
.fv {
  position: relative;
  padding-top: 72px;
  z-index: 10;
}

.fv_content {
  position: relative;
  max-width: calc(1300px + (70 / 1440) * 100vw * 2);
  margin: 0 auto;
  padding: 0 calc((70 / 1440) * 100vw);
}

@media (min-width: 1440px) {
  .fv_content {
    max-width: 1300px;
    padding: 0;
  }
}

.fv_txt {
  font-size: 3.9rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 24px;
  position: relative;
  z-index: 5;

  /* ページロードアニメーション */
  animation: fadeInUp 1s ease-out forwards;
}

.fv_txt span {
  color: var(--main-color-green);
  font-weight: 700;
}

.fv_image_wrapper {
  position: relative;
  width: 100%;
}

.fv_image {
  width: 100%;
  height: auto;
  z-index: 3;
}

.fv_image_img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 3;
  border-radius: 24px;
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .fv_image_img {
    border-radius: 20;
  }
}

.fv_br {
  display: none;
}

.fv_br_sp {
  display: none;
}

@media (max-width: 1260px) {
  .fv_br {
    display: block;
  }
}

@media (max-width: 767.98px) {
  .fv_br_sp {
    display: block;
  }
}

/* FV Search Buttons
-----------------------------------*/
.fv_search_buttons {
  display: flex;
  margin-top: -40px;
  position: relative;
  z-index: 10;
  margin-left: auto;
  margin-right: auto;
  width: 900px;
  height: 149px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.14);
}

/* 緊急避妊薬コメントアウト時限定 */
.fv_search_buttons {
  width: 740px;
}

.fv_search_btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 32px;
  gap: 12px;
  color: #fff;
  height: 149px;
  flex-shrink: 0;
  position: relative;
}

.fv_search_btn img {
  flex-shrink: 0;
}

.fv_search_btn.ecp {
  gap: 8px;
}

.fv_search_btn:hover,
.fv_search_btn:visited {
  color: #fff;
}

.fv_search_btn:visited {
  color: #fff;
}

.fv_search_btn img {
  transition: transform 0.3s ease;
}

.fv_search_btn:hover img {
  transform: scale(1.08);
}

.fv_search_btn:first-child {
  width: 260px;
  background-color: var(--main-color-green);
}

.fv_search_btn:not(:first-child) {
  width: calc((900px - 260px) / 4);
  background-color: var(--sub-color-green);
}

/* セパレータ（2番目以降のボタン間のみ） */
.fv_search_btn:nth-child(n + 3)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 113px;
  background-color: rgba(255, 255, 255, 0.5);
}

.fv_search_btn img {
  width: 48px;
  height: 48px;
}

.fv_search_btn span {
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  transition: letter-spacing 0.3s ease;
  line-height:1.3;
  letter-spacing: 0.04em;
}

.fv_search_btn:hover span {
  letter-spacing: 0.08em;
}

.fv_search_btn:first-child span {
  font-size: 2.4rem;
  letter-spacing: 0.08em;
}

.fv_search_btn:first-child:hover span {
  letter-spacing: 0.12em;
}

@media (max-width: 1099.98px) {
  .fv_search_buttons {
    margin-top: 40px;
  }
}

@media (max-width: 998px) {
  .fv_search_buttons {
    flex-direction: column;
    margin-top: 24px;
    padding: 0 5%;
    width: auto;
    height: auto;
    gap: 8px;
    border-radius: 0;
    box-shadow: none;
  }

  .fv_search_btn {
    flex-direction: row;
    width: 100% !important;
    height: 64px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 0 24px;
    padding-right: 48px;
    gap: 16px;
    justify-content: flex-start;
  }

  .fv_search_btn::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background-image: url("../images/btn_arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0) invert(1);
  }

  .fv_search_btn:nth-child(n + 3)::before {
    display: none;
  }

  .fv_search_btn img {
    width: 32px;
    height: 32px;
  }

  .fv_search_btn span {
    font-size: 1.6rem;
  }

  .fv_search_btn:first-child span {
    font-size: 1.8rem;
  }
}

@media (max-width: 767.98px) {
  .fv {
    padding-top: 40px;
  }

  .fv_content {
    padding: 0 5%;
  }

  .fv_txt {
    font-size: 2.4rem;
    margin-bottom: 16px;
  }
}

/* FV Decoration
-----------------------------------*/
.fv_deco_01 {
  position: absolute;
  width: 28.31%;
  top: 0;
  right: 5%;
  aspect-ratio: 1 / 1;
  transform: translateY(-45%);
  z-index: 1;
}

body:not(.pharmacist) .fv_deco_01 {
  transform: translateY(-5%);
  right: 10%;
}

@media (max-width: 1260px) {
  body:not(.pharmacist) .fv_deco_01 {
    transform: translateY(35%);
  }
}

@media (max-width: 767.98px) {
  body:not(.pharmacist) .fv_deco_01 {
    transform: translateY(15%);
  }
}

.fv_deco_02 {
  position: absolute;
  width: 14.62%;
  bottom: 0;
  left: 0;
  z-index: 4;
  transform: translateY(50%);
}

.fv_deco_03 {
  position: absolute;
  width: 6.15%;
  top: -28px;
  left: 4.85%;
  z-index: 4;

  /* ページロードアニメーション */
  animation:
    fadeIn 1s ease-out forwards,
    floating03 3s ease-in-out 1s infinite;
  opacity: 0;
}

body.pharmacist .fv_deco_03 {
  aspect-ratio: 165 / 191;
  width: 11.39vw;
  max-width: 165px;
  top: -20%;
  left: -2%;
}

@media (max-width: 991.98px) {
  body.pharmacist .fv_deco_03 {
    width: 19.39vw;
    max-width: 140px;
    top: -5%;
  }
}

.fv_deco_04 {
  position: absolute;
  width: 3.62%;
  bottom: -12px;
  right: 4.31%;
  z-index: 4;

  /* ページロードアニメーション */
  animation:
    fadeIn 1s ease-out forwards,
    floating04 3s ease-in-out 2.5s infinite;
  opacity: 0;
}

body.pharmacist .fv_deco_04 {
  aspect-ratio: 191 / 180;
  width: 13.64vw;
  max-width: 191px;
  bottom: -10%;
  right: -2%;
}

.fv_character {
  width: 100.652px;
  transform: rotate(-4.863deg) translateY(-69%);
  flex-shrink: 0;
  aspect-ratio: 100.65/142.14;
  position: absolute;
  top: 0;
  right: 5.38%;
  z-index: 2;

  /* ページロードアニメーション */
  animation:
    slideUpCharacter 1s ease-out forwards,
    floatingCharacterPC 3s ease-in-out 1s infinite;
  opacity: 0;
}

body.pharmacist .fv_character_logo {
  display: none;
}

@media (max-width: 991.98px) {
  .fv_deco_01 {
    width: 60%;
    max-width: 230px;
  }

  .fv_deco_02 {
    width: 25%;
  }

  .fv_deco_03 {
    width: 10%;
    top: 3%;
    left: -5%;
  }

  .fv_deco_04 {
    display: none;
  }

  .fv_character {
    width: 80px;
    top: unset;
    bottom: -5%;
    right: -10px;
    z-index: 4;
    transform: rotate(0deg) translateY(0);
    animation:
      fadeIn 1s ease-out forwards,
      floatingCharacter 3s ease-in-out 1s infinite;
  }

  .fv_character_info {
    position: absolute;
    bottom: 0;
    right: 65px;
    z-index: 4;
    animation: fadeIn 1s ease-out forwards;
  }

  .fv_character_logo {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 5px;
  }

  .fv_character_logo span {
    font-size: 1rem;
    text-align: center;
    font-weight: 500;
    color: #fff;
    line-height: 1.4;
  }

  .fv_character_logo img {
    width: 86px;
    aspect-ratio: 106 / 23;
  }
}

/* ========================================================
   News
=========================================================*/
.news {
  padding: var(--margin-xl) 0;
  position: relative;
}

/* News Tabs */
.news_tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.news_tab {
  padding: 0 20px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #ababab;
  background-color: transparent;
  border-radius: 100vmax;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

@media (max-width: 767.98px) {
  .news_tab {
    padding: 0 8px;
  }
}

.news_tab:hover {
  color: var(--main-color-green);
}

.news_tab.active {
  background-color: transparent;
  color: var(--main-color-green);
}

.news_list_wrapper {
  transition: opacity 0.3s ease;
}

.news_bg {
  position: absolute;
  width: 45.83vw;
  bottom: 0;
  right: 0;
}

.news_deco_sp {
  position: absolute;
  width: 20vw;
  top: 5%;
  right: 0;
  transform: scale(-1, 1);
  z-index: 1;
}

@media (max-width: 768px) {
  .news_bg {
    width: 90%;
  }
}

body.pharmacist .news_deco {
  position: absolute;
  width: 31.86vw;
  top: var(--margin-xl);
  left: 0;
  z-index: 1;
}

@media (max-width: 991.98px) {
  body.pharmacist .news_deco {
    display: none;
  }
}

.news_container {
  position: relative;
  z-index: 2;
}

.news_left {
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .news_container {
    display: flex;
    gap: 60px;
    align-items: stretch;
  }

  .news_left {
    width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

.news_right {
  flex: 1;
}

@media (min-width: 768px) {
  .news .section_title {
    align-items: flex-start;
    margin-bottom: var(--margin-m);
  }
}

.news .section_title_en {
  font-size: clamp(48px, calc((60 / 1440) * 100vw), 60px);
}

.news_list {
  list-style: none;
}

@media (max-width: 767.98px) {
  .news_list {
    margin-bottom: var(--margin-m);
  }
}

.news_item {
  border-bottom: 1px dashed var(--line-color);
}

body.pharmacist .news_item:first-child {
  border-top: 1px dashed var(--line-color);
}

.news_link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
  transition: opacity 0.3s ease;
  min-height: 60px;
}

.news_date {
  font-family: "Ubuntu", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-color);
  flex-shrink: 0;
  width: 100px;
}

.news_category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 98px;
  padding: 6px 8px;
  background-color: var(--sub-color-yellow);
  border-radius: 100vmax;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-color);
  flex-shrink: 0;
  line-height: 1;
}

.news_title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-color);
  line-height: 1.6;
  transition: color 0.3s ease;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news_link:hover .news_title {
  color: var(--main-color-green);
}

.news_meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news_empty {
  display: block;
  padding: 20px 0;
  text-align: center;
  color: #999;
  font-size: 1.6rem;
}

.news_button {
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .news_button {
    justify-content: flex-start;
    margin-top: var(--margin-m);
  }
}

.news_button .btn {
  width: 240px;
}

@media (max-width: 991.98px) {
  .news_button .btn {
    width: 100%;
    max-width: 240px;
  }

  .news_link {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
  }
}

@media (max-width: 767.98px) {
  .news {
    padding: var(--margin-xl) 0;
  }

  .news_container {
    flex-direction: column;
  }

  .section_title {
    margin-bottom: var(--margin-m);
  }

  .news_left {
    width: 100%;
  }

  .news_right {
    width: 100%;
  }

  .news_meta {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .news_date {
    font-size: 1.4rem;
  }

  .news_category {
    padding: 4px 8px;
    font-size: 1.4rem;
  }

  .news_title {
    font-size: 1.6rem;
    width: 100%;
  }

  .news_button {
    justify-content: center;
    margin-top: var(--margin-s);
  }
}

/* ========================================================
   Pharmacist Main Content
=========================================================*/
.pharmacist_main_content {
  padding: var(--margin-xl) 0;
  background-color: var(--bg-color-gray);
  position: relative;
  z-index: 2;
}

.pharmacist_main_content .container {
  position: relative;
  z-index: 3;
}

.pharmacist_deco_01 {
  position: absolute;
  width: 16.43vw;
  top: 0;
  right: 0;
}

@media (max-width: 991.98px) {
  .pharmacist_deco_01 {
    width: 38vw;
    top: 0;
    right: 0;
  }
}

.accordion_item {
  margin-bottom: 24px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 4px 24px 0 rgba(172, 171, 164, 0.2);
  overflow: hidden;
  position: relative;
  z-index: 3;
}

.accordion_item:first-child {
  margin-top: 0;
}

.accordion_item:last-child {
  margin-bottom: 0;
}

.accordion_header {
  width: 100%;
  display: flex;
  align-items: center;
  background: #fff;
  gap: 16px;
  padding: 24px 32px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid var(--line-color);
}

.accordion_header:hover .accordion_title {
  color: var(--main-color-green);
}

/* Pharmacy info section items */
.pharmacy_info_item {
  background: #fff;
  margin-bottom: 24px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 4px 24px 0 rgba(172, 171, 164, 0.2);
  overflow: hidden;
}

@media (max-width: 767.98px) {  
  .pharmacy_info_item {
    gap: 12px;
  }
}

.pharmacy_info_item:last-child {
  margin-bottom: 0;
}

.pharmacy_info_header {
  width: 100%;
  display: flex;
  align-items: center;
  background: #fff;
  gap: 16px;
  padding: 24px 32px;
  border-bottom: 1px solid var(--line-color);
}

@media (max-width: 767.98px) {
  .pharmacy_info_header {
    padding: 20px 16px;
    gap: 12px;
  }
}

.pharmacy_info_content {
  display: block;
}

.pharmacy_info_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.pharmacy_info_icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Pharmacy info area buttons */
.pharmacy_info_area_buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 32px;
}

@media (max-width: 1439.98px) {
  .pharmacy_info_area_buttons {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pharmacy_info_area_btn {
  background-color: var(--main-color-green);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 24px 16px 16px;
  font-size: 1.6rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
}
.pharmacy_info_area_btn:link,
.pharmacy_info_area_btn:visited {
  color: #ffffff;
}

.pharmacy_info_area_btn:hover {
  background-color: var(--sub-color-dark-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: #ffffff;
}

.pharmacy_info_area_btn_title {
  display: block;
  line-height: 1.6;
  font-size: 1.8rem;
}

.pharmacy_info_area_btn_cities {
  display: block;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.5;
  opacity: 0.9;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  overflow-wrap: break-word;
}

.pharmacy_info_area_btn_cities span {
  white-space: nowrap;
}

@media (max-width: 767.98px) {
  .pharmacy_info_area_buttons {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 16px;
  }

  .pharmacy_info_area_btn {
    padding: 20px 16px 14px;
    gap: 8px;
  }

  .pharmacy_info_area_btn_title {
    font-size: 1.6rem;
  }

  .pharmacy_info_area_btn_cities {
    padding-top: 6px;
    font-size: 1.4rem;
  }
}

.accordion_title {
  flex: 1;
  font-size: clamp(22px, calc((26 / 1400) * 100vw), 26px);
  font-weight: 700;
  color: var(--text-color);
  text-align: left;
}

.accordion_toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--text-color);
  transition: transform 0.3s ease;
}

.accordion_item.open .accordion_toggle {
  transform: rotate(180deg);
}

.accordion_content {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
  position: relative;
}

.accordion_section {
  padding: 24px 0;
  margin: 0 32px;
  border-bottom: 1px dashed var(--line-color);
}

.accordion_section:last-of-type {
  border-bottom: none;
}

.accordion_section_title {
  font-size: clamp(1.8rem, calc((22 / 1400) * 100vw), 2.2rem);
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.accordion_section_title::before {
  content: "";
  width: 24px;
  height: 24px;
  border: 7px solid var(--main-color-green);
  border-radius: 50%;
  flex-shrink: 0;
  box-sizing: border-box;
}

.accordion_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.accordion_link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  background-color: var(--bg-color-gray);
  border-radius: 14px;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-color);
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.accordion_link:hover {
  color: var(--main-color-green);
}

.accordion_link:hover img {
  transform: translateX(4px);
}

.accordion_link img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.accordion_link.for_members span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.accordion_link.for_members span::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("../images/ico_lock.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.accordion_note {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  font-size: 1.5rem;
  color: #999;
  margin-bottom: 16px;
}

.accordion_note img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Pharmacists Grid (薬剤師向けページ共通) */
.pharmacists_section {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #e5e5e5;
}

.pharmacists_section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.pharmacists_section .heading_h3 {
  margin-bottom: 24px;
}

.pharmacists_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pharmacists_link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  background-color: var(--bg-color-gray);
  border-radius: 14px;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-color);
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.pharmacists_link:hover {
  color: var(--main-color-green);
}

.pharmacists_link:hover img {
  transform: translateX(4px);
}

.pharmacists_link img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.pharmacists_link.for_members span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.pharmacists_link.for_members span::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("../images/ico_lock.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .accordion_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pharmacists_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.98px) {
  .pharmacist_main_content {
    padding: var(--margin-l) 0;
  }

  .accordion_item {
    margin-bottom: 16px;
    border-radius: 12px;
  }

  .accordion_header {
    padding: 20px 16px;
    gap: 12px;
  }

  .accordion_icon {
    width: 32px;
    height: 32px;
  }

  .accordion_title {
    font-size: 1.8rem;
  }

  .accordion_toggle {
    width: 28px;
    height: 28px;
  }

  .accordion_section {
    padding-bottom: 24px;
    margin: 0 16px;
  }

  .accordion_section:first-of-type {
    padding-top: 24px;
  }

  .accordion_section_title {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .accordion_grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .accordion_link {
    padding: 12px 16px;
    font-size: 1.5rem;
  }

  .accordion_note {
    justify-content: center;
    margin: 0 0 16px 0;
    font-size: 1.4rem;
  }

  .pharmacists_section {
    padding-bottom: 24px;
    margin-bottom: 24px;
  }

  .pharmacists_section .heading_h3 {
    margin-bottom: 16px;
  }

  .pharmacists_grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pharmacists_link {
    padding: 12px 16px;
    font-size: 1.5rem;
  }

  /* レスポンシブテーブル（縦積みレイアウト） */
  .table_responsive th,
  .table_responsive td {
    padding: 12px 16px;
    font-size: 1.4rem;
  }

  .table_responsive th {
    display: block;
    width: 100% !important;
    text-align: left;
  }

  .table_responsive td {
    display: block;
    width: 100% !important;
  }

  .table_responsive tr {
    display: block;
  }

  .download_links {
    flex-direction: column;
    gap: 12px;
  }
}

/* ========================================================
   Pharmacist Banners
=========================================================*/
.pharmacist_banners {
  padding-bottom: var(--margin-xxl);
  background-color: var(--bg-color-gray);
}

.pharmacist_banners_grid {
  display: flex;
  gap: 32px;
}

.pharmacist_banner {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  border-radius: 24px;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.14);
  text-align: center;
  position: relative;
  cursor: default;
  overflow: visible;
}

.banner_content {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: visible;
}

.banner_content .btn {
  align-self: flex-start;
  flex-shrink: 0;
  width: 320px;
}

.banner_buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.banner_buttons .btn {
  flex: 1;
  width: auto;
}

.banner_note {
  font-size: 1.4rem;
  color: #999;
  line-height: 1.6;
}

.banner_columns {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
}

.banner_text {
  flex: 1;
  padding-right: 30%;
  /* 画像の幅分のスペースを確保 */
}

.banner_image {
  position: absolute;
  top: -50px;
  right: 0;
  width: 30%;
  aspect-ratio: 45 / 61;
}

.banner_image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 8px;
  position: relative;
  z-index: 1;
}

.banner_image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background-color: #f7dfdd;
  border-radius: 8px;
  transform: translate(3px, -3px) rotate(3.18deg);
  z-index: 0;
  pointer-events: none;
  aspect-ratio: 45 / 61;
}

.banner_subtitle {
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.8rem);
  font-weight: 600;
  color: var(--text-color);
}

.banner_title {
  font-size: clamp(1.8rem, 1.5rem + 1vw, 2.4rem);
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 16px;
  line-height: 1.4;
}

.banner_description {
  font-size: clamp(1.3rem, 1.1rem + 0.5vw, 1.6rem);
  font-weight: 500;
  color: var(--text-color);
  line-height: 1.6;
}

/* 1180px以下: スマホ表示 */
@media (max-width: 1180px) {
  .banner_columns {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .banner_text {
    padding-right: 0;
    text-align: center;
  }

  .banner_subtitle,
  .banner_title,
  .banner_description {
    text-align: center;
  }

  .banner_image {
    position: relative;
    width: 120px;
    top: 0 !important;
  }

  .banner_image::before {
    aspect-ratio: 45 / 61;
    width: 120px;
  }

  .banner_content .btn {
    width: 100%;
  }

  .banner_title {
    white-space: normal;
    margin-bottom: 12px;
  }

  .banner_note {
    font-size: clamp(1rem, 0.9rem + 0.3vw, 1.2rem);
  }

  .banner_buttons {
    flex-direction: column;
    width: 100%;
  }

  .banner_buttons .btn {
    width: 100%;
  }

  .banner_recruit .banner_image::before {
    aspect-ratio: 33 / 32;
  }
}

/* 988px〜585px: 縦並びのPC表示 */
@media (min-width: 585px) and (max-width: 988px) {
  .pharmacist_banners_grid {
    flex-direction: column;
    gap: 16px;
  }

  .banner_columns {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
    position: relative;
  }

  .banner_text {
    flex: 1;
    padding-right: 30%;
    text-align: left;
  }

  .banner_subtitle,
  .banner_title,
  .banner_description {
    text-align: left;
  }

  .banner_image {
    position: absolute;
    right: 0;
    width: 28%;
    max-width: 150px;
  }

  .banner_image::before {
    aspect-ratio: 45 / 61;
    width: 100%;
  }

  .banner_recruit .banner_image {
    width: 25%;
    max-width: 150px;
  }

  .banner_recruit .banner_text {
    padding-right: 27%;
  }

  .banner_recruit .banner_description {
    margin-bottom: 40px;
  }

  .banner_content .btn {
    width: 320px;
  }

  .banner_buttons {
    display: flex;
    flex-direction: row;
    gap: 16px;
  }

  .banner_buttons .btn {
    flex: 1;
    width: auto;
  }

  .banner_title {
    white-space: normal;
  }

  .banner_note {
    font-size: 1.4rem;
  }
}

/* 480px以下: 再度スマホ表示 */
@media (max-width: 584.98px) {
  .banner_columns {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .banner_text {
    padding-right: 0;
    text-align: center;
  }

  .banner_subtitle,
  .banner_title,
  .banner_description {
    text-align: center;
  }

  .banner_image {
    position: relative;
    width: 120px;
    top: 0;
  }

  .banner_image::before {
    aspect-ratio: 45 / 61;
    width: 120px;
  }

  .banner_content .btn {
    width: 100%;
  }

  .banner_title {
    white-space: normal;
    margin-bottom: 12px;
  }

  .banner_note {
    font-size: clamp(1rem, 0.9rem + 0.3vw, 1.2rem);
  }

  .banner_buttons {
    flex-direction: column;
    width: 100%;
  }

  .banner_buttons .btn {
    width: 100%;
  }

  .banner_recruit .banner_image::before {
    aspect-ratio: 33 / 32;
  }
}

.banner_journal {
  background-color: #f6f1f1;
  overflow: visible;
}

.banner_journal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 23.85%;
  /* 155px / 650px */
  aspect-ratio: 155 / 154;
  background-image: url("../images/banner_journal_deco.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
}

.banner_recruit {
  background-color: #fff;
}

.banner_recruit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 23.85%;
  /* 155px / 650px */
  aspect-ratio: 155 / 154;
  background-image: url("../images/banner_recruit_deco.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
}

.banner_recruit .banner_image {
  aspect-ratio: 33 / 32;
  top: -80px;
}

.banner_recruit .banner_text {
  padding-right: 0;
}

.banner_recruit .banner_subtitle {
  color: rgba(105, 172, 79, 0.8);
  font-family: "Ubuntu", sans-serif;
}

.banner_recruit .banner_image::before {
  aspect-ratio: 33 / 32;
  background-color: #b2e2d0;
}

.pharmacist_banner_text {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* バナーグリッドを480px以下で縦並び */
@media (max-width: 584.98px) {
  .pharmacist_banners_grid {
    flex-direction: column;
    gap: 16px;
  }

  .pharmacist_banner {
    padding: 32px 24px;
  }

  .pharmacist_banner_text {
    font-size: 1.6rem;
  }
}

/* Pharmacist Deco Base
-----------------------------------*/
.pharmacist_deco_base_01,
.pharmacist_deco_base_02 {
  position: relative;
}

.pharmacist_deco_base_01::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/pharmacists_deco01.svg) no-repeat center center /
    contain;
  top: 0;
  right: 0;
  width: 16.43vw;
  aspect-ratio: 230 / 258;
  z-index: 1;
}

@media (max-width: 991.98px) {
  .pharmacist_deco_base_01::before {
    width: 38vw;
    top: 0;
    right: 0;
  }
}

.pharmacist_deco_base_02::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/pharmacists_deco02.svg) no-repeat center center /
    contain;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  aspect-ratio: 174 / 362;
  z-index: 1;
  width: 12.43vw;
}

@media (max-width: 991.98px) {
  .pharmacist_deco_base_02::before {
    width: 25vw;
  }
}

/* ========================================================
   About
=========================================================*/
.about {
  padding: var(--margin-xl) 0;
  background-color: #fff;
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 72vw;
  height: 100%;
  background-color: var(--bg-color-beige);
  border-radius: 80px 0 0 80px;
  z-index: 0;
}

@media (max-width: 768px) {
  .about::before {
    width: 100%;
    border-radius: 32px;
  }
}

.about_deco {
  position: absolute;
  width: 8vw;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
}

@media (max-width: 768px) {
  .about_deco {
    display: none;
  }
}

.about_container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .about_container {
    display: flex;
    gap: 60px;
    align-items: stretch;
  }
}

.about_left {
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .about_left {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
}

.about_right {
  flex: 1;
}

@media (min-width: 768px) {
  .about .section_title {
    align-items: flex-start;
    margin-bottom: var(--margin-m);
  }
}

.about_description {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2;
  color: var(--text-color);
}

.about_button {
  display: flex;
}

@media (min-width: 768px) {
  .about_button {
    justify-content: flex-start;
    margin-top: var(--margin-m);
  }
}

.about_button .btn {
  width: 240px;
}

.about_images {
  position: relative;
  width: 100%;
  aspect-ratio: 467 / 435;
}

.about_image_01,
.about_image_02 {
  position: absolute;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: contain;
}

.about_image_01 {
  width: 73.73%;
  /* 321px / 467px */
  top: 0;
  right: 0;
  z-index: 1;
}

.about_image_02 {
  width: 50%;
  /* 174px / 467px */
  bottom: 0;
  left: 0;
  z-index: 2;
}

@media (max-width: 991.98px) {
  .about {
    padding: var(--margin-l) 0;
  }

  .about_content {
    flex-direction: column;
    gap: 32px;
  }

  .about_description {
    font-size: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .about_container {
    padding: 0 5%;
    flex-direction: column;
    display: flex;
  }

  .about_left {
    width: 100%;
    order: 2;
    display: block;
  }

  .about_right {
    width: 100%;
    order: 1;
    margin-bottom: var(--margin-m);
  }

  .about_content {
    gap: 24px;
  }

  .about_description {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: var(--margin-m);
  }

  .about_button {
    justify-content: center;
    margin-top: 0;
  }

  .about_button .btn {
    width: 100%;
    max-width: 240px;
  }

  .about_images {
    max-width: 400px;
    margin: 0 auto;
    aspect-ratio: 64 / 47;
  }

  .about_image_02 {
    width: 39%;
  }
}

/* ========================================================
   Activity
=========================================================*/
.activity {
  padding: var(--margin-xxl) 0;
  position: relative;
}

.activity_character {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
}

.activity_character_image {
  width: 134px;
  aspect-ratio: 134 / 189;
}

@media (max-width: 767.98px) {
  .activity_character {
    flex-direction: column;
    width: 94px;
    top: 56px;
    right: 5%;
  }

  .activity_character_image {
    width: 94px;
  }
}

.activity_character_image img {
  animation: floatingCharacter 3s ease-in-out infinite;
}

.activity_character_balloon .logo {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 10px;
}

.activity_character_balloon .logo img {
  width: 106px;
  aspect-ratio: 106 / 23;
}

.activity_character_balloon .logo span {
  font-size: 1.1rem;
  font-weight: 500;
  color: #5c5c5c;
  line-height: 1.4;
}

.balloon {
  background-image: url("../images/balloon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  padding: 30px;
  display: inline-block;
}

.balloon span {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-color);
  line-height: 1.5;
  text-align: center;
}

.activity .section_title {
  align-items: flex-start;
}

.activity_container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 calc((70 / 1440) * 100vw);
  position: relative;
}

.activity_deco {
  position: absolute;
  width: 12vw;
  top: var(--margin-xxl);
  right: 0;
  z-index: 1;
}

@media (max-width: 767.98px) {
  .activity_deco {
    width: 40vw;
  }
}

.activity_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  z-index: 2;
  position: relative;
}

.activity_card {
  display: block;
  position: relative;
}

.activity_card_image {
  width: 100%;
  aspect-ratio: 364 / 214;
  overflow: hidden;
  position: relative;
  border-radius: 24px 24px 24px 0;
}

.activity_card_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.activity_card:hover .activity_card_image img {
  transform: scale(1.05);
}

.activity_card_title_wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 85%;
  background-color: #ffffff;
  border-radius: 0 20px 0 0;
  padding: 16px 16px 8px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 1;
}

.activity_card_title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--main-color-green);
  line-height: 1.4;
  margin: 0;
  flex: 1;
}

.activity_card_description {
  margin-top: 12px;
  padding: 0 8px 0 8px;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-color);
  line-height: 1.7;
}

.activity_card_title_wrapper .activity_card_icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  display: block;
}

.activity_card:hover .activity_card_title_wrapper .activity_card_icon {
  transform: translateX(4px);
}

.activity_card_title_wrapper::before,
.activity_card_title_wrapper::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url('../images/activity_card_corner.svg');
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.activity_card_title_wrapper::before {
  top: 0;
  left: 0;
  transform: translateY(-95%);
}

.activity_card_title_wrapper::after {
  bottom: -1px;
  right: 0;
  transform: translateX(98%);
}

@media (max-width: 991.98px) {
  .activity {
    padding: var(--margin-xl) 0;
  }

  .activity_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 767.98px) {
  .activity_container {
    padding: 0 5%;
  }

  .activity_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .activity_card_title_wrapper {
    padding: 12px 16px;
  }

  .activity_card_description {
    margin-top: 12px;
    padding: 0 16px 16px 16px;
    font-size: 1.4rem;
  }

  .activity_card_icon {
    width: 20px;
    height: 20px;
  }
}

/* ========================================================
   Fixed Side Buttons (PC)
=========================================================*/
.fixed_side_buttons {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex !important;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  pointer-events: none;
}

.fixed_side_buttons.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.fixed_side_btn {
  writing-mode: vertical-rl;
  padding: 16px 0;
  border-radius: 8px 0 0 8px;
  min-height: 160px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
  transition:
    padding-left 0.3s ease,
    filter 0.3s ease;
  position: relative;
  flex-shrink: 0;
  white-space: nowrap;
}

.fixed_side_btn::after {
  content: none;
}

.fixed_side_btn:hover {
  filter: brightness(0.95);
  padding-left: 8px;
}

.fixed_side_btn span {
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
  transition: transform 0.3s ease;
  padding: 0 8px;
}

.fixed_side_btn:hover span {
  letter-spacing: 0.1em;
  transform: translateX(-8px);
}

@media (max-width: 998px) {
  .fixed_side_buttons {
    display: none !important;
  }
}

/* ========================================================
   Page Top Button
=========================================================*/
footer {
  position: relative;
}

.page_top_btn {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-72%);
  width: 180px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 3;
  transition: transform 0.3s ease;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.page_top_btn:hover {
  transform: translateX(-50%) translateY(calc(-72% - 4px));
}

/* アーカイブページでは非表示 */
.archive-news .page_top_btn {
  display: none;
}

.page_top_text {
  font-family: "Ubuntu", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--sub-color-green);
  background: none;
  padding: 0;
  margin-bottom: 4px;
  position: relative;
  z-index: 10;
  letter-spacing: 0.1em;
}

.page_top_character {
  width: 100px;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

@media (max-width: 767.98px) {
  .page_top_btn {
    width: 60px;
    transform: translateX(-50%) translateY(-75%);
  }

  .page_top_btn:hover {
    transform: translateX(-50%) translateY(calc(-75% - 8px));
  }

  .page_top_text {
    font-size: 10px;
  }

  .page_top_character {
    width: 60px;
  }
}

/* ========================================================
   Breadcrumb
=========================================================*/
.breadcrumb_wrapper {
  padding: 6px 0;
  background-color: #dff1d7;
  width: 100%;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.3rem;
}

.breadcrumb_item {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a.breadcrumb_item:hover {
  color: var(--main-color-green);
}

.breadcrumb_separator {
  width: 8px;
  height: 1px;
  background-color: var(--text-color);
  display: inline-block;
}

@media (max-width: 767.98px) {
  .breadcrumb_wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .breadcrumb {
    font-size: 1.2rem;
    flex-wrap: nowrap;
    white-space: nowrap;
  }

  .breadcrumb_item {
    flex-shrink: 0;
  }
}

/* ========================================================
   News Archive
=========================================================*/
.news_archive {
  padding: var(--margin-l) 0;
  background-color: #fff;
}

.news_archive .news_tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.news_archive .news_tab {
  padding: 0 20px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #ababab;
  background-color: transparent;
  border: none;
  border-radius: 100vmax;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}

.news_archive .news_tab:hover {
  color: var(--main-color-green);
}

.news_archive .news_tab.active {
  background-color: transparent;
  color: var(--main-color-green);
}

.news_archive .news_list_wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.news_archive .news_list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  width: 100%;
}

.news_archive .news_item {
  border-bottom: 1px dashed var(--line-color);
}

.news_archive .news_item:first-child {
  border-top: 1px dashed var(--line-color);
}

.news_archive .news_link {
  display: flex;
  gap: 16px;
  padding: 8px 0;
  transition: opacity 0.3s ease;
  min-height: 60px;
  text-decoration: none;
  width: 100%;
}

.news_archive .news_link:hover {
  opacity: 0.7;
}

.news_archive .news_link:hover .news_title {
  color: var(--main-color-green);
}

.news_archive .news_meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news_archive .news_date {
  font-family: "Ubuntu", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-color);
  flex-shrink: 0;
  width: 100px;
}

.news_archive .news_category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 98px;
  padding: 6px 8px;
  background-color: var(--sub-color-yellow);
  border-radius: 100vmax;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-color);
  flex-shrink: 0;
  line-height: 1;
}

.news_archive .news_title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-color);
  line-height: 1.6;
  transition: color 0.3s ease;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}

.news_archive .news_empty {
  display: block;
  padding: 20px 0;
  text-align: center;
  color: #999;
  font-size: 1.6rem;
}

.pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 60px;
  text-align: center;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-color);
  text-decoration: none;
  background-color: #f6f6f6;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.pagination a:hover {
  background-color: var(--main-color-green);
  color: #fff;
  border-color: var(--main-color-green);
}

.pagination .current {
  background-color: var(--main-color-green);
  color: #fff;
  border-color: var(--main-color-green);
  font-weight: 700;
}

.pagination .prev,
.pagination .next {
  position: relative;
}

/* SVG矢印アイコン */
.pagination .arrow-icon {
  display: inline-block;
  width: 9px;
  height: auto;
  vertical-align: middle;
}

/* hover時に白色SVGを表示 */
.pagination a:hover .arrow-prev {
  content: url('../images/prev_w.svg');
}

.pagination a:hover .arrow-next {
  content: url('../images/next_w.svg');
}

.pagination .dots {
  border: none;
  background: none;
  color: #999;
}

@media (max-width: 767.98px) {
  .news_archive {
    padding: var(--margin-m) 0;
  }

  .news_archive .news_tab {
    padding: 0 8px;
  }

  .news_archive .news_link {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .news_archive .news_date {
    width: auto;
  }

  .news_archive .news_category {
    width: auto;
    min-width: 98px;
  }

  .news_archive .news_title {
    width: 100%;
  }

  .pagination {
    gap: 6px;
    margin-top: 40px;
  }

  .pagination a,
  .pagination span {
    width: 32px;
    height: 32px;
    font-size: 1.3rem;
    border-width: 1.5px;
  }

  .pagination .arrow-icon {
    width: 8px;
  }
}

/* ========================================================
   Page Content
=========================================================*/
.page_main_content {
  background-color: #fff;
  padding-bottom: var(--margin-bottom-last-section);
}

.page_main_content section {
  padding: var(--margin-l) 0;
  overflow-x: hidden;
}

.page_main_content p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
}

.page_main_content strong {
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
}

.page_main_content p a {
  color: var(--main-color-green);
  text-decoration: nonte;
}

/* Back to Parent */
.back_to_parent {
  text-align: center;
}

@media (max-width: 767.98px) {
  .page_main_content section {
    padding: var(--margin-m) 0;
  }
}

.bg_color_general {
  background-color: var(--bg-color-general);
}

.bg_color_pharmacist {
  background-color: var(--bg-color-gray);
}

.bg_yellow_dots {
  background-color: #ffeeac;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.3) 20%,
    transparent 20%
  );
  background-size: 8px 8px;
}

.bg_green_dots {
  background-color: #ddefd0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.3) 20%,
    transparent 20%
  );
  background-size: 8px 8px;
}

.image_deco_general,
.image_deco_pharmacist {
  position: relative;
}

.image_deco_general::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 29.97%;
  aspect-ratio: 1 / 1;
  background: url(../images/kaiei_deco02.svg) no-repeat center center;
  background-size: contain;
  transform: translate(30%, -30%);
}

.image_deco_pharmacist::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 29.97%;
  aspect-ratio: 1 / 1;
  background: url(../images/pharmacist_deco01.svg) no-repeat center center;
  background-size: contain;
  transform: translate(30%, -30%);
}

.image_deco_general::after,
.image_deco_pharmacist::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20.25%;
  aspect-ratio: 1 / 1;
  background-size: contain;
  background: url(../images/kaiei_deco03.svg) no-repeat center center;
  transform: translate(-30%, 0);
}

/* ========================================================
   Information Center Description
=========================================================*/
.information_center_description {
  padding: var(--margin-xxl) 0;
  background-color: #fff;
  margin: 0 auto;
}

.information_center_description_content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.information_center_description_text {
  flex: 1;
}

.information_center_description_title {
  font-size: clamp(2.4rem, calc((36 / 1440) * 100vw), 3.6rem);
  font-weight: 700;
  line-height: 1.9;
  margin-bottom: var(--margin-s);
  position: relative;
  z-index: 2;
}

.information_center_description_title span {
  position: relative;
  padding-bottom: 8px;
}

@media (max-width: 498.98px) {
  .information_center_description_title span {
    display: block;
  }
}

.information_center_description_title span:after {
  position: absolute;
  content: "";
  display: block;
  bottom: -4px;
  height: 3px;
  left: 0;
  width: 100%;
  background: radial-gradient(
      circle closest-side,
      rgba(44, 148, 22, 0.5) 90%,
      #0000
    )
    0 / 9px 100%;
}

.information_center_description_title::before {
  content: "";
  position: absolute;
  background: url(../images/kaiei_deco01.svg) no-repeat center center;
  top: 0;
  left: 0;
  width: 92px;
  aspect-ratio: 1 / 1;
  z-index: -1;
  transform: translate(-60%, -20%);
}
  

.information_center_description_title {
  font-size: clamp(2.4rem, calc((36 / 1440) * 100vw), 3.6rem);
  font-weight: 700;
  line-height: 1.9;
  margin-bottom: var(--margin-s);
  position: relative;
  z-index: 2;
}

.information_center_description_paragraph {
  font-size: clamp(1.6rem, calc((18 / 1440) * 100vw), 1.8rem);
  line-height: 2;
  color: var(--text-color);
}

.information_center_description_image {
  flex: 0 0 316px;
  position: relative;
}

.information_center_description_image img {
  width: 100%;
  border-radius: 16px;
}

.information_center_description_character {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100px;
}

.information_center_description_character img {
  width: 100%;
}

@media screen and (max-width: 960px) {
  .information_center_description {
    padding: var(--margin-xl) 0;
  }

  .information_center_description_content {
    flex-direction: column;
    gap: 32px;
    margin-bottom: var(--margin-m);
  }

  .information_center_description_image {
    flex: 0 0 auto;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .information_center_description_character {
    width: 80px;
    bottom: -6px;
    right: -6px;
  }
}

/* ========================================================
   Aboutus - Greeting
=========================================================*/
.greeting_content {
  display: grid;
  grid-template-columns: 1fr 204px;
  gap: 5vw;
  align-items: start;
  margin-bottom: var(--margin-m);
}

.greeting_left .heading_h2 {
  margin-bottom: var(--margin-m);
}

.greeting_text {
  font-size: 1.6rem;
  line-height: 2;
}

.greeting_signature {
  margin-top: 24px;
  text-align: right;
  font-weight: 700;
}

.greeting_image {
  width: 100%;
}

.greeting_image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

/* greeting画像の装飾サイズ調整（画像が60%なので装飾を約1.67倍に） */
.greeting_image.image_deco_general::before {
  width: 50%;
}

@media (max-width: 767.98px) {
  .greeting_image.image_deco_general::before {
    width: 30%;
  }
}

.greeting_image.image_deco_general::after {
  width: 33.75%;
}

@media (max-width: 967.98px) {
  .greeting_content {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .greeting_left {
    display: contents;
  }

  .greeting_left .heading_h2 {
    order: 1;
    width: 100%;
    margin-bottom: 0;
  }

  .greeting_image {
    max-width: 204px;
    margin: 0 auto;
    order: 2;
  }

  .greeting_text {
    order: 3;
  }

  .greeting_signature_br {
    display: inline;
  }
}

/* ========================================================
   Aboutus - Access
=========================================================*/
.access_list {
  display: flex;
  flex-direction: column;
}

.access_title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-color);
}

/* 住所ブロック */
.access_address_block {
  margin-bottom: 24px;
}

.access_postal {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 4px;
}

.access_building {
  font-size: 1.8rem;
}

/* お問い合わせボックス */
.contact_boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contact_title {
  font-size: clamp(1.8rem, calc((20 / 1400) * 100vw), 2rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.contact_info {
  font-size: 1.6rem;
  line-height: 1.8;
}

.contact_floor {
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 12px;
}

.contact_tel,
.contact_fax,
.contact_email {
  margin-bottom: 8px;
}

.access_content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.access_line {
  border: none;
  border-top: 1px dashed var(--line-color);
  margin: 24px 0;
}

.access_info {
  font-size: 1.6rem;
  line-height: 1.8;
}

.access_address,
.access_tel,
.access_email,
.access_hours {
  margin-bottom: 4px;
}

.access_email {
  display: flex;
  align-items: center;
  gap: 8px;
}

.access_email::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../images/ico_mail.svg");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.access_email a,
.access_tel a,
.access_hours a {
  color: var(--main-color-green);
  text-decoration: underline;
}

.access_label {
  display: inline-block;
  background-color: var(--sub-color-yellow);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 1.2rem;
  font-weight: 700;
  margin-left: 8px;
}

.access_transportation{

}
.access_schedule {
  margin-top: 24px;
  border-top: 1px dashed var(--line-color);
  padding-top: 16px;
  border-radius: 8px;
}

.access_transportation h4,
.access_schedule h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 16px;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 8px;
}

.access_transportation h4{
  margin-top:0;
}

.access_transportation h4::before,
.access_schedule h4::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 4px solid var(--main-color-green);
  border-radius: 50%;
  flex-shrink: 0;
  box-sizing: border-box;
}

.access_transportation h5,
.access_schedule h5 {
  font-size: clamp(1.6rem, calc((18 / 1400) * 100vw), 1.8rem);
  font-weight: 700;
  margin-top: 8px;
  margin-bottom: 4px;
  color: var(--text-color);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.access_transportation h5::before,
.access_schedule h5::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: var(--main-color-green);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 9px;
}

.access_transportation ul {
  list-style: none;
  padding-left: 0;
  margin: 8px 0;
}

.access_transportation li {
  margin-bottom: 4px;
}

.access_map {
  width: 100%;
}

.access_map iframe {
  width: 100%;
  height: 300px;
  border-radius: 8px;
}

/* ========================================================
   Branch (支部組織)
=========================================================*/
.branch_list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.branch_item {
  display: flex;
  flex-direction: column;
}

.branch_areas {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.branch_area {
  display: inline-block;
  padding: 4px 16px;
  background-color: var(--bg-color-general);
  border-radius: 4px;
  font-size: 1.6rem;
  color: var(--text-color);
}

.branch_link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-color);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.branch_link:hover {
  color: var(--main-color-green);
}

.branch_link::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("../images/ico_arrow_circle.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

@media (max-width: 967.98px) {
  .contact_boxes {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .access_content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 767.98px) {

  .access_title {
    font-size: 1.8rem;
  }
}

/* ========================================================
   News Detail
=========================================================*/
.post_detail {
  padding: var(--margin-l) 0 var(--margin-bottom-last-section);
  background-color: var(--bg-color-beige);
}

.post_detail_inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 48px;
  background-color: #fff;
  border-radius: 16px;
  position: relative;
  z-index: 2;
}

.post_detail_meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.post_detail_date {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-color);
}

.post_detail_category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 98px;
  padding: 6px 8px;
  background-color: var(--sub-color-yellow);
  border-radius: 100vmax;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-color);
  flex-shrink: 0;
  line-height: 1;
}

.post_detail_title {
  font-size: clamp(2.2rem, calc((26 / 1440) * 100vw), 2.6rem);
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--gray-color);
}

.post_detail_content {
  font-size: 1.6rem;
  line-height: 1.9;
  color: var(--text-color);
  margin-bottom: 60px;
}

/* 本文内の見出し */
.post_detail_content h2,
.post_detail_content .heading_h2 {
  font-size: clamp(2rem, calc((24 / 1440) * 100vw), 2.4rem);
  font-weight: 700;
  color: var(--text-color);
  padding: 16px;
  position: relative;
  margin-bottom: 24px;
  margin-top: 48px;
}

.post_detail_content h2::after,
.post_detail_content .heading_h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: #e5e5e5;
  border-radius: 3px;
}

.post_detail_content h2::before,
.post_detail_content .heading_h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 180px;
  height: 6px;
  background-color: #ffeba0;
  z-index: 1;
  border-radius: 3px;
}

.post_detail_content h3,
.post_detail_content .heading_h3 {
  font-size: clamp(1.8rem, calc((22 / 1400) * 100vw), 2.2rem);
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 16px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.post_detail_content h3::before,
.post_detail_content .heading_h3::before {
  content: "";
  width: 24px;
  height: 24px;
  border: 7px solid var(--main-color-green);
  border-radius: 50%;
  flex-shrink: 0;
  box-sizing: border-box;
}

.post_detail_content h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 12px;
  margin-top: 32px;
  padding-left: 12px;
  border-left: 4px solid var(--main-color-green);
}

/* 本文内のリスト */
.post_detail_content ul,
.post_detail_content ol {
  margin: 24px 0;
  padding-left: 16px;
}

@media (max-width: 767.98px) {
  .post_detail_content ul,
  .post_detail_content ol {
    padding-left: 8px;
  }
}

.post_detail_content ul li,
.post_detail_content ol li {
  margin-bottom: 12px;
  line-height: 1.8;
}

.post_detail_content ul li {
  position: relative;
  padding-left: 20px;
  list-style: none;
}

.post_detail_content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  background-color: var(--main-color-green);
  border-radius: 50%;
}

.post_detail_content ol {
  counter-reset: list-counter;
}

.post_detail_content ol li {
  position: relative;
  padding-left: 24px;
  list-style: none;
  counter-increment: list-counter;
}

.post_detail_content ol li::before {
  content: counter(list-counter) ".";
  position: absolute;
  left: 0;
  font-weight: 600;
  color: var(--main-color-green);
}

/* 入れ子リスト（2段階目） */
.post_detail_content ul ul,
.post_detail_content ol ol,
.post_detail_content ul ol,
.post_detail_content ol ul {
  margin-top: 12px;
  margin-bottom: 12px;
}

.post_detail_content ul ul li::before {
  width: 8px;
  height: 2px;
  border-radius: 0;
  top: 0.8em;
  background-color: var(--main-color-green);
}

.post_detail_content ol ol {
  counter-reset: list-counter-nested;
}

.post_detail_content ol ol li {
  counter-increment: list-counter-nested;
  padding-left: 28px;
}

.post_detail_content ol ol li::before {
  content: "(" counter(list-counter-nested) ")";
  color: var(--main-color-green);
  font-weight: 500;
}

/* 本文内のリンク */
.post_detail_content a {
  color: var(--main-color-green);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.3s ease;
}

.post_detail_content a:hover {
  opacity: 0.7;
}

/* 本文内の段落 */
.post_detail_content p {
  margin-bottom: 20px;
}

.post_detail_content p:last-child {
  margin-bottom: 0;
}

/* 本文内の画像 */
.post_detail_content img {
  max-width: 600px;
  width: 100%;
  height: auto;
  margin: 32px 0;
  border-radius: 8px;
}

.post_detail_content figure {
  margin: 32px 0;
}

.post_detail_content figcaption {
  font-size: 1.4rem;
  color: #666;
  text-align: center;
  margin-top: 8px;
}

/* 画像ギャラリー（連続する画像を自動グループ化） */
.post_detail_content .image-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0;
}

.post_detail_content .image-gallery img,
.post_detail_content .image-gallery figure {
  flex: 1 1 calc(50% - 8px);
  min-width: 200px;
  margin: 0;
}

@media (max-width: 767.98px) {
  .post_detail_content .image-gallery {
    gap: 12px;
  }

  .post_detail_content .image-gallery img,
  .post_detail_content .image-gallery figure {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* 戻るボタン */
.post_detail_back {
  margin-top: 60px;
  text-align: center;
}

/* page_top_btnを非表示 */
.single-news .page_top_btn {
  display: none;
}

@media (max-width: 767.98px) {
  .post_detail {
    padding: var(--margin-m) 0 var(--margin-bottom-last-section);
  }

  .post_detail_inner {
    padding: var(--margin-m) var(--margin-ms);
  }

  .post_detail_meta {
    gap: 12px;
    margin-bottom: 20px;
  }

  .post_detail_date {
    font-size: 1.3rem;
  }

  .post_detail_category {
    width: auto;
    min-width: 98px;
    padding: 6px 8px;
    font-size: 1.2rem;
  }

  .post_detail_title {
    font-size: 2.2rem;
    margin-bottom: 32px;
    padding-bottom: 20px;
  }

  .post_detail_content {
    font-size: 1.5rem;
    margin-bottom: 48px;
  }

  .post_detail_content h2,
  .post_detail_content .heading_h2 {
    font-size: 1.8rem;
    padding: 8px;
    margin-top: 40px;
  }

  .post_detail_content h3,
  .post_detail_content .heading_h3 {
    font-size: 1.8rem;
    margin-top: 32px;
  }

  .post_detail_content h4 {
    font-size: 1.6rem;
    margin-top: 24px;
  }

  .post_detail_back {
    margin-top: 48px;
  }
}

/* ========================================================
   Kaiei Pharmacy Page (調剤薬局ページ)
=========================================================*/

/* Description Section */
.kaiei_description {
  padding: var(--margin-xxl) 0;
  background-color: #fff;
  max-width: 1160px;
  margin: 0 auto;
}

.kaiei_description_content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.kaiei_description_text {
  flex: 1;
}

.kaiei_description_title {
  font-size: clamp(2.4rem, calc((36 / 1440) * 100vw), 3.6rem);
  font-weight: 700;
  line-height: 1.9;
  margin-bottom: var(--margin-s);
  position: relative;
  z-index: 2;
}

.kaiei_description_title span {
  position: relative;
  padding-bottom: 8px;
}

.kaiei_description_title span:after {
  position: absolute;
  content: "";
  display: inline-block;
  bottom: -4px;
  height: 3px;
  left: 0;
  width: 100%;
  background: radial-gradient(
      circle closest-side,
      rgba(44, 148, 22, 0.5) 90%,
      #0000
    )
    0 / 9px 100%;
}

.kaiei_description_title::before {
  content: "";
  position: absolute;
  background: url(../images/kaiei_deco01.svg) no-repeat center center;
  top: 0;
  left: 0;
  width: 92px;
  aspect-ratio: 1 / 1;
  z-index: -1;
  transform: translate(-60%, -20%);
}

.kaiei_description_paragraph {
  font-size: clamp(1.6rem, calc((18 / 1440) * 100vw), 1.8rem);
  line-height: 2;
  color: var(--text-color);
}

.kaiei_description_image {
  flex: 0 0 316px;
  position: relative;
}

.kaiei_description_image img {
  width: 100%;
  border-radius: 16px;
}

.kaiei_description_character {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100px;
}

.kaiei_description_character img {
  width: 100%;
}

/* Activity Section */
.kaiei_activity {
  padding: var(--margin-xxl) 0;
  background-color: var(--bg-color-beige);
}

.kaiei_activity_subsection {
  margin-bottom: var(--margin-l);
}

.kaiei_activity_subsection:last-child {
  margin-bottom: 0;
}

.kaiei_activity_subtitle {
  margin-bottom: var(--margin-xs);
}

.kaiei_activity_desc {
  font-size: clamp(1.6rem, calc((18 / 1440) * 100vw), 1.8rem);
  margin-bottom: var(--margin-s);
}

/* Card Grid */
.kaiei_card_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.kaiei_card_grid_wide {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.kaiei_card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.kaiei_card_image {
  position: relative;
  width: 100%;
  aspect-ratio: 339 / 178;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

.kaiei_card_number {
  position: absolute;
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  color: var(--main-color-green);
  top: 0;
  left: 0;
  background: #fff;
  padding: 4px 12px 8px 8px;
  font-weight: 700;
  border-radius: 0 0 11px 0;
  font-size: 2.2rem;
  z-index: 1;
}

.kaiei_card_body {
  padding: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.kaiei_card_title {
  font-size: clamp(2rem, calc((23 / 1440) * 100vw), 2.3rem);
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--main-color-green);
}

.kaiei_card_text {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

.kaiei_card_arrow {
  align-self: flex-end;
  text-align: right;
  color: var(--main-color-green);
  font-size: 2rem;
  font-weight: 700;
}

.kaiei_card_body .icon_link {
  align-self: flex-end;
  margin-top: 8px;
}

/* Access Section */
.kaiei_access {
  padding: var(--margin-xxl) 0;
  background-color: #ffeeac;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.3) 20%,
    transparent 20%
  );
  background-size: 8px 8px;
}

/* Documents Section */
.kaiei_documents {
  padding: var(--margin-l) 0 var(--margin-bottom-last-section);
}

.kaiei_documents_list {
  list-style: none;
}

.kaiei_documents_item {
  border-bottom: 1px dashed var(--line-color);
}

.kaiei_documents_link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  color: var(--text-color);
}

.kaiei_documents_name {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.6rem;
}

.kaiei_pdf_badge {
  background: #d32f2f;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
}

.btn_download {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #f6f6f6;
  padding: 4px 16px;
  border-radius: 100vmax;
  font-size: 1.4rem;
  color: var(--text-color);
  white-space: nowrap;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.btn_download.is_white {
  background-color: #fff;
  border: 1px solid #ababab;
}

.btn_download:hover {
  opacity: 0.8;
  color: var(--main-color-green);
}

.download_icon {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.download_text {
  flex: 1;
  text-align: center;
}

.kaiei_documents_empty {
  font-size: 1.6rem;
  color: #999;
  text-align: center;
  padding: var(--margin-m) 0;
}

/* Responsive */
@media (max-width: 967.98px) {
  .kaiei_description_content {
    flex-direction: column;
    gap: 40px;
  }

  .kaiei_description_image {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .kaiei_description_character {
    width: 80px;
    bottom: -10px;
    right: -10px;
  }

  .kaiei_card_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .kaiei_card_grid_wide {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.98px) {
  .kaiei_description_title {
    font-size: 2.2rem;
  }

  .kaiei_description_paragraph {
    font-size: 1.5rem;
  }

  .kaiei_card_grid {
    grid-template-columns: 1fr;
  }

  .kaiei_card_grid_wide {
    grid-template-columns: 1fr;
  }

  .kaiei_documents_link {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .kaiei_documents_name {
    font-size: 1.5rem;
  }
}

/* Banners */
.banners {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

.banner {
  flex: 0 0 auto;
  max-width: 300px;
}

.banner a {
  display: block;
  transition: all 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.banner a:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.banner img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}

/* ========================================================
   Anti-Doping Page (アンチ・ドーピング活動ページ)
=========================================================*/

/* Section */
.antidoping_news {
  background: var(--bg-color-beige);
}

/* .antidoping_section_contact uses .bg_yellow_dots common class */

/* News Section */
.antidoping_news_content {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
}

.antidoping_news_left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.antidoping_news_left .heading_h2 {
  margin-bottom: 0;
  padding: 0;
  font-size: clamp(2.2rem, calc((28 / 1440) * 100vw), 2.8rem);
}

.antidoping_news_left .heading_h2::before,
.antidoping_news_left .heading_h2::after {
  display: none;
}

.antidoping_news_left .btn {
  width: 170px;
  height: 40px;
  padding: 0;
}

.antidoping_news_right {
  flex: 1;
}

.antidoping_news_right .btn.sp {
  display: none;
}

/* Sports Pharmacist Section */
.antidoping_pharmacist_content {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 32px;
  align-items: start;
}

.antidoping_pharmacist_text {
  flex: 1;
}

.antidoping_pharmacist_logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.antidoping_pharmacist_logo img {
  max-width: 100%;
  height: auto;
}

/* Logo (deprecated - for backward compatibility) */
.antidoping_logo {
  margin-top: 24px;
  text-align: center;
}

.antidoping_logo img {
  max-width: 200px;
  height: auto;
}

/* Hotline Section */
.antidoping_hotline_content {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.antidoping_hotline_text {
  flex: 1;
}

.antidoping_hotline_image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.antidoping_hotline_image img {
  width: 100%;
  border-radius: 16px;
}

/* Button Group */
.antidoping_button_group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Two Column Cards */
.antidoping_cards_row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.antidoping_contact_buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.antidoping_contact_time {
  font-size: 1.4rem;
  color: #666;
  text-align: center;
  margin-bottom: 0;
}

/* Contact Notes with Character */
.antidoping_contact_notes_wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.antidoping_contact_notes {
  flex: 1;
}

.antidoping_contact_notes p {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

/* Contact Character (same as activity_character) */
.contact_character {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-shrink: 0;
}

.contact_character_image {
  width: 100px;
  aspect-ratio: 134 / 189;
}

.contact_character_image img {
  animation: floatingCharacter 3s ease-in-out infinite;
}

.antidoping_contact_notes ul,
.antidoping_contact_notes ol {
  margin: 0;
  padding-left: 24px;
}

.antidoping_contact_notes ul li,
.antidoping_contact_notes ol li {
  font-size: 1.4rem;
  line-height: 1.8;
}

/* ========================================================
  Test Center
======================================================== */

.tc_main_content {
  background: var(--bg-color-beige);
}

/* News Section */
.tc_news {
  padding: var(--margin-l) 0;
}

/* Cards Grid */
.tc_grid_4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: var(--margin-l);
}
.tc_grid_3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tc_card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
.tc_card_img {
  width: 100%;
  aspect-ratio: 260/130;
  object-fit: cover;
  flex-shrink: 0;
}
.tc_card_content {
  padding: var(--margin-xs);
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 160px;
}
.tc_card_title {
  font-size: clamp(1.8rem, calc((22 / 1400) * 100vw), 2.2rem);
  font-weight: 700;
  margin: 0 0 10px 0;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--line-color);
  flex-shrink: 0;
}
.tc_card_links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  row-gap: 4px;
}
.tc_card_links li {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
}
.tc_card_links li a {
  color: var(--text-color);
  font-size: 1.6rem;
  text-decoration: none;
  transition:
    color 0.3s,
    transform 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.tc_card_links li a::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("../images/ico_arrow_circle.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.tc_card_links li a:hover {
  color: var(--main-color-green);
}
.tc_card_links li a:hover::after {
  transform: translateX(4px);
}
.tc_card_button {
  margin-top: auto;
  padding-top: 16px;
}
.tc_card_button .btn {
  width: 100%;
  height: 40px;
  font-size: 15px;
}

/* Downloads Section */
.tc_downloads {
  background: #fff;
  padding: 60px 0;
}
.tc_dl_title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.tc_dl_desc {
  margin-bottom: 32px;
}

/* Table Yellow - Common Parts */
.table_yellow {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-top: 1px solid var(--line-color);
}
.table_yellow th,
.table_yellow td {
  border-bottom: 1px solid var(--line-color);
  padding: 20px 24px;
  vertical-align: middle;
}
.table_yellow th {
  background-color: #fff4d0; /* Yellowish bg */
  font-weight: 700;
  width: 300px;
  text-align: left;
  border-left: 1px solid var(--line-color);
}

/* Test Center tables: header to top-align items */
.test_item_section .table_yellow th {
  vertical-align: top;
}
.table_yellow td {
  border-right: 1px solid var(--line-color);
}
.table_yellow td {
  /* Simple table cell - content can be wrapped in div if needed */
}
.table_yellow_content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.table_yellow .icon_link {
  font-size: 1.6rem;
}

/* About Section */
.tc_about {
  padding: 80px 0;
}
.tc_about_content {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: flex-start;
}
.tc_about_img {
  width: 100%;
  border-radius: 24px;
}

/* Registration Table */
/* Table Green - Common Parts */
.table_green {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.table_green th,
.table_green td {
  border: 1px solid #ddd;
  padding: 16px 24px;
}

.table_downloads th,
.table_downloads td {
  padding: 10px 16px;
  font-size: 1.6rem;
}

.table_green th {
  background-color: #eaf5e6; /* Light green bg */
  font-weight: 700;
  text-align: center;
}

.table_downloads th {
  text-align: left;
  width: 50%;
  white-space: nowrap;
}

.table_green td {
  vertical-align: middle;
}

.download_links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.tc_iso_logos {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.tc_iso_logos img {
  height: 80px;
  width: auto;
}

@media (max-width: 767.98px) {
  .tc_iso_logos img {
    height: 60px;
  }
}

/* Access Section (Bottom) */

.tc_access {
  padding-bottom: var(--margin-bottom-last-section) !important;
}

.tc_access_section {
  background-color: #ffeeac; /* Yellowish access bg */
  padding: 60px 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.4) 20%,
    transparent 20%
  );
  background-size: 10px 10px;
  padding-bottom: var(--margin-bottom-last-section) !important;
}
.tc_access_box {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  display: flex;
  gap: 40px;
}
.tc_access_info {
  flex: 1;
}
.tc_access_map {
  flex: 1;
  height: 300px;
  background: #eee;
  border-radius: 12px;
  overflow: hidden;
}
.tc_access_title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.tc_access_details p {
  margin-bottom: 12px;
  line-height: 1.8;
}
.tc_access_icon {
  color: var(--main-color-green);
  margin-right: 8px;
}

/* Decorative Elements */
.tc_deco_circle_top {
  position: absolute;
  top: 150px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: #fdfae7;
  border-radius: 50%;
  z-index: -1;
}

/* Responsive */
@media (max-width: 991px) {
  .tc_grid_4,
  .tc_grid_3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .tc_about_content {
    grid-template-columns: 1fr;
  }
  .tc_access_box {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .tc_card_links li {
    font-size: 1.6rem;
  }
  .table_yellow th,
  .table_yellow td {
    display: block;
    width: 100%;
    padding: 16px;
    border-right: 1px solid var(--line-color);
    border-left: 1px solid var(--line-color);
  }
  .table_yellow th {
    border-bottom: 1px solid var(--line-color);
    padding-bottom: 16px;
  }
  .table_yellow td {
    border-top: none;
    border-bottom: 1px solid var(--line-color);
  }
  .tc_grid_4,
  .tc_grid_3 {
    grid-template-columns: 1fr;
  }
  /* Table Green - スマホで横スクロール */
  .table_green_wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table_green_wrapper .table_green {
    min-width: 480px;
    display: table;
    font-size: 1.2rem;
  }
  .table_green_wrapper .table_green th,
  .table_green_wrapper .table_green td {
    display: table-cell;
    white-space: normal;
    padding: 8px 12px;
  }

  /* モーダル内のテーブルはさらにコンパクトに */
  .inspection-items-modal-body .table_green_wrapper .table_green {
    min-width: 100%;
    font-size: 1.1rem;
  }
  .inspection-items-modal-body .table_green_wrapper .table_green th,
  .inspection-items-modal-body .table_green_wrapper .table_green td {
    padding: 6px 8px;
  }

  /* モーダル内のテーブルは横スクロールのため、通常のテーブルレイアウトを維持 */
  .water-shop-table-wrapper .table_green {
    display: table;
  }

  .water-shop-table-wrapper .table_green th,
  .water-shop-table-wrapper .table_green td {
    display: table-cell;
    width: auto;
  }
  .tc_card_content {
    padding: 20px;
  }
  .tc_card_title {
    padding-bottom: 10px;
  }
  .tc_card_links {
    gap: 10px;
  }
  .tc_card_links li {
    font-size: 1.4rem;
  }
}

.antidoping_link_section {
  background-color: var(--bg-color-beige);
  padding-bottom: var(--margin-bottom-last-section) !important;
}

/* Link Card - Common Component */
.link_card {
  display: flex;
  align-items: center;
  gap: 24px;
  background-color: #fff;
  border-radius: 24px;
  padding: var(--margin-ms);
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  text-decoration: none;
  position: relative;
}

.link_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px 0 rgba(172, 171, 164, 0.3);
}

.link_card_image {
  flex: 0 0 180px;
  width: 180px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.link_card_image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.link_card_divider {
  width: 1px;
  height: 60px;
  background: repeating-linear-gradient(
    to bottom,
    var(--line-color) 0,
    var(--line-color) 4px,
    transparent 4px,
    transparent 8px
  );
  flex-shrink: 0;
}

.link_card_content {
  flex: 1;
  padding-right: 48px;
}

.link_card_title {
  font-size: clamp(1.6rem, calc((18 / 1400) * 100vw), 1.8rem);
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 8px;
  margin-top: 0;
}

.link_card_text {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #666;
  margin: 0;
}

.link_card_arrow {
  position: absolute;
  top: 50%;
  right: var(--margin-m);
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.link_card_arrow img {
  width: 100%;
  height: 100%;
}

/* Link List */
.antidoping_link_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Responsive */
@media (max-width: 967.98px) {
  .antidoping_news_content {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .antidoping_news_left .heading_h2 {
    text-align: center;
  }

  .antidoping_news_left .btn.pc {
    display: none;
  }

  .antidoping_news_right .btn.sp {
    display: block;
    width: 80%;
    margin: 24px auto 0;
    text-align: center;
  }

  .antidoping_pharmacist_content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .antidoping_pharmacist_logo img {
    max-width: 200px;
  }

  .antidoping_hotline_content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .antidoping_hotline_image img {
    max-width: 400px;
  }

  .antidoping_cards_row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .antidoping_contact_cards {
    grid-template-columns: 1fr;
  }

  .link_card {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 56px;
  }

  .link_card_image {
    width: 100%;
    height: auto;
    flex: 0 0 auto;
    align-self: center;
  }

  .link_card_image img {
    margin: 0 auto;
  }

  .link_card_divider {
    display: none;
  }

  .link_card_content {
    padding-right: 0;
  }

  .link_card_arrow {
    right: var(--margin-ms);
    bottom: 16px;
    top: auto;
    transform: none;
  }
}

@media (max-width: 767.98px) {
  .page_subtitle {
    font-size: 1.5rem;
  }

  .page_header_nav_list {
    gap: 8px 12px;
  }

  .page_header_nav_list li a {
    font-size: 1.3rem;
  }

  .antidoping_button_group {
    flex-direction: column;
  }

  .btn_download {
    margin: 0 auto;
    justify-content: center;
  }

  .antidoping_contact_notes_wrapper {
    flex-direction: column;
    gap: 24px;
  }

  .link_card {
    padding: var(--margin-m) var(--margin-ms);
    padding-bottom: 56px;
  }
}

/* ========================================================
   Water Shop List Modal
=========================================================*/
.water-shop-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.water-shop-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.water-shop-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.water-shop-modal-content {
  position: relative;
  background-color: #fff;
  border-radius: 8px;
  max-width: 95%;
  max-height: 90vh;
  width: 1200px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.water-shop-modal.active .water-shop-modal-content {
  transform: scale(1);
}

.water-shop-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 1px solid var(--line-color);
}

.water-shop-modal-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-color);
  margin: 0;
}

.water-shop-modal-close {
  background: none;
  border: none;
  font-size: 3rem;
  line-height: 1;
  color: var(--text-color);
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.water-shop-modal-close:hover {
  color: var(--main-color-green);
}

.water-shop-modal-body {
  padding: 32px;
  overflow-y: auto;
  flex: 1;
}

.water-shop-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* PCでは横スクロールなし、モバイルでは横スクロール可能 */
@media (min-width: 768px) {
  .water-shop-table-wrapper {
    overflow-x: visible;
  }

  .water-shop-table-wrapper .table_green {
    width: 100%;
    font-size: 15px;
  }

  .water-shop-table-wrapper .table_green th,
  .water-shop-table-wrapper .table_green td {
    white-space: normal;
    font-size: 15px;
    padding: 12px 20px;
  }

  /* 列幅の最適化 */
  .water-shop-table-wrapper .table_green th:nth-child(1),
  .water-shop-table-wrapper .table_green td:nth-child(1) {
    width: 25%;
  }

  .water-shop-table-wrapper .table_green th:nth-child(2),
  .water-shop-table-wrapper .table_green td:nth-child(2) {
    width: 50%;
  }

  .water-shop-table-wrapper .table_green th:nth-child(3),
  .water-shop-table-wrapper .table_green td:nth-child(3) {
    width: 25%;
  }
}

/* モバイルでは横スクロール可能にする */
@media (max-width: 767.98px) {
  .water-shop-table-wrapper .table_green {
    min-width: 600px;
  }

  .water-shop-table-wrapper .table_green th,
  .water-shop-table-wrapper .table_green td {
    white-space: nowrap;
  }
}

@media (max-width: 767.98px) {
  .water-shop-modal-content {
    width: 95%;
    max-height: 95vh;
  }

  .water-shop-modal-header {
    padding: 20px 24px;
  }

  .water-shop-modal-title {
    font-size: 1.8rem;
  }

  .water-shop-modal-close {
    font-size: 2.5rem;
    width: 36px;
    height: 36px;
  }

  .water-shop-modal-body {
    padding: 24px 16px;
  }

  /* モーダル内のテーブルのパディングを調整 */
  .water-shop-table-wrapper .table_green th,
  .water-shop-table-wrapper .table_green td {
    padding: 12px 16px;
    font-size: 1.2rem;
  }
}

/* ========================================================
   Inspection Items Modal Styles
======================================================== */
.inspection-items-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.inspection-items-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.inspection-items-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.inspection-items-modal-content {
  position: relative;
  background-color: #fff;
  border-radius: 8px;
  max-width: 95%;
  max-height: 90vh;
  width: 800px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
  z-index: 1;
}

.inspection-items-modal.active .inspection-items-modal-content {
  transform: scale(1);
}

.inspection-items-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 1px solid var(--line-color);
}

.inspection-items-modal-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-color);
  margin: 0;
}

.inspection-items-modal-close {
  background: none;
  border: none;
  font-size: 3.6rem;
  line-height: 1;
  color: var(--text-color);
  cursor: pointer;
  padding: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.inspection-items-modal-close:hover {
  color: var(--main-color-green);
}

.inspection-items-modal-body {
  padding: 32px;
  overflow-y: auto;
  flex: 1;
}

.inspection-items-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.inspection-items-list li {
  padding: 12px 16px;
  background-color: var(--bg-color-general);
  border-radius: 4px;
  font-size: 1.5rem;
  color: var(--text-color);
}

/* Responsive */
@media (max-width: 767px) {
  .inspection-items-modal-content {
    width: calc(100% - 32px);
    max-height: 80vh;
  }

  .inspection-items-modal-header {
    padding: 16px 20px;
  }

  .inspection-items-modal-title {
    font-size: 1.8rem;
  }

  .inspection-items-modal-close {
    font-size: 3rem;
    width: 30px;
    height: 30px;
  }

  .inspection-items-modal-body {
    padding: 20px;
  }

  .inspection-items-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .inspection-items-list li {
    padding: 10px 12px;
    font-size: 1.4rem;
  }
}

/* Inline Inspection Items (table in-page)
-----------------------------------*/
.inspection-items-inline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.inspection-items-inline li {
  padding: 12px 16px;
  background-color: var(--bg-color-general);
  border-radius: 4px;
  font-size: 1.5rem;
  color: var(--text-color);
  border: 1px solid #e5e5e5;
}

@media (max-width: 767px) {
  .inspection-items-inline {
    grid-template-columns: 1fr;
  }
}

/* ========================================================
   Flow Tabs Styles (フロータブ)
======================================================== */
.flow_tabs {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  margin-bottom: 0;
  border-bottom: 2px solid #e5e5e5;
}

.flow_tab {
  padding: 16px 32px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #666;
  background-color: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  bottom: -2px;
}

.flow_tab:hover {
  color: var(--main-color-green);
}

.flow_tab.active {
  color: var(--main-color-green);
  border-bottom-color: var(--main-color-green);
}

.flow_tab_content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.flow_tab_content.active {
  display: block;
}

@media (max-width: 767px) {
  .flow_tabs {
    gap: 8px;
    margin-top: 24px;
  }

  .flow_tab {
    padding: 12px 20px;
    font-size: 1.4rem;
  }
}

/* ========================================================
   Flow Timeline Styles (検査の流れ)
======================================================== */
.flow_timeline {
  margin-top: 40px;
  position: relative;
}

.flow_timeline::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 32px;
  bottom: 32px;
  width: 5px;
  background-color: #e5e5e5;
  z-index: 1;
}

.flow_step {
  display: flex;
  gap: 32px;
  position: relative;
  align-items: center;
}

.flow_step:not(:last-child) {
  margin-bottom: 0;
}

/* Left Column - Number and Line */
.flow_step_left {
  flex: 0 0 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.flow_step_number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--main-color-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 700;
  z-index: 2;
  flex-shrink: 0;
}

/* Right Column - Content */
.flow_step_right {
  flex: 1;
  padding: 24px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  border-bottom: 1px dashed var(--line-color);
  min-height: 100px;
}

.flow_step:last-child .flow_step_right {
  border-bottom: none;
}

.flow_step_title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-color);
  margin: 0;
  flex: 0 0 250px;
  line-height: 1.2;
}

.flow_step_content {
  flex: 1;
}

.flow_step_text {
  font-size: 1.5rem;
  line-height: 1.8;
  color: var(--text-color);
  margin: 0 0 16px 0;
}

.flow_step_content ul {
  margin: 12px 0;
  padding-left: 0;
  list-style: none;
}

.flow_step_content ul li {
  font-size: 1.5rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 4px;
  padding-left: 14px;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.flow_step_content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  background-color: #999;
  border-radius: 50%;
}

.flow_step_text:last-child {
  margin-bottom: 0;
}

.flow_step_note {
  display: inline-block;
  margin-top: 4px;
}

.text_italic {
  font-style: italic;
}

.superscript {
  font-size: 0.75em;
  vertical-align: super;
}

/* Flow Buttons */
.flow_step_buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.flow_step_buttons .btn {
  height: 40px;
  font-size: 15px;
}

/* Contract Apply Box (契約申し込みボックス) */
.contract_apply_box {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  padding: 12px;
  background-color: #f9f9f9;
  border-radius: 6px;
  border: 1px solid #e5e5e5;
  font-size: 1.4rem;
  max-width: 500px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

.contract_apply_qr {
  flex: 0 0 80px;
}

.qr_code_image {
  width: 80px;
  height: 80px;
  display: block;
  border-radius: 4px;
  border: 1px solid #e5e5e5;
}

.contract_apply_info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contract_apply_label {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 2px;
}

.contract_apply_link {
  font-size: 1.3rem;
  color: var(--main-color-green);
  text-decoration: underline;
  word-break: break-all;
  transition: color 0.3s ease;
  display: inline-block;
}

.contract_apply_link:hover {
  color: var(--sub-color-green);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 767px) {
  .flow_timeline::before {
    left: 25px;
  }

  .flow_step {
    gap: 20px;
    align-items: flex-start;
  }

  .flow_step_left {
    flex: 0 0 50px;
  }

  .flow_step_number {
    width: 50px;
    height: 50px;
    font-size: 2rem;
    margin-top: 10px;
  }

  .flow_step_right {
    padding: 24px 0 24px 0;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .flow_step_title {
    font-size: 1.8rem;
    flex: none;
    padding-top: 0;
  }

  .flow_step_text {
    font-size: 1.4rem;
  }

  .flow_step_content ul li {
    font-size: 1.4rem;
    padding-left: 14px;
  }

  .flow_step_content ul li::before {
    top: 0.65em;
  }

  .flow_step_buttons {
    flex-direction: column;
    gap: 10px;
  }

  .contract_apply_box {
    flex-direction: column;
    gap: 12px;
    padding: 12px;
  }

  .contract_apply_qr {
    flex: none;
  }

  .qr_code_image {
    width: 80px;
    height: 80px;
    margin: 0 auto;
  }

  .contract_apply_info {
    text-align: center;
  }

  .contract_apply_label {
    font-size: 1.2rem;
  }

  .contract_apply_link {
    font-size: 1.2rem;
  }
}

/* ========================================================
   Journal (県薬だより) Styles
======================================================== */

/* Latest Issue Section */
.journal_latest_content {
  display: flex;
  gap: 60px;
  margin-top: 40px;
}

.journal_latest_slider {
  flex: 0 0 260px;
  max-width: 260px;
}

.journal_slider {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  padding-bottom: 40px;
}

.journal_slider .swiper-wrapper {
  border-radius: 8px;
}

.journal_slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.journal_slider .swiper-slide a {
  display: block;
  width: 100%;
  cursor: pointer;
  transition: opacity 0.3s;
}

.journal_slider .swiper-slide a:hover {
  opacity: 0.8;
}

.journal_slide_image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.journal_slider .swiper-button-prev,
.journal_slider .swiper-button-next {
  color: #999;
  width: 30px;
  height: 30px;
  transition: color 0.2s ease;
}

.journal_slider .swiper-button-prev:after,
.journal_slider .swiper-button-next:after {
  font-size: 1.8rem;
}

.journal_slider .swiper-button-prev:hover,
.journal_slider .swiper-button-next:hover {
  color: #666;
}

.journal_slider .swiper-pagination {
  bottom: 10px;
  position: absolute;
}

.journal_slider .swiper-pagination-bullet {
  background: #ccc;
  opacity: 0.6;
  width: 8px;
  height: 8px;
  transition: all 0.2s ease;
}

.journal_slider .swiper-pagination-bullet-active {
  background: #999;
  opacity: 1;
}

.journal_slider_note {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-top: 8px;
}

.journal_latest_info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.journal_latest_header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.journal_latest_title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-color);
  margin: 0;
  line-height: 1.4;
}

.journal_publication_date {
  font-size: 1.4rem;
  color: #666;
  margin: 0;
}

.journal_toc_wrapper {
  margin-top: 8px;
}

.journal_toc_text {
  font-size: 1.4rem;
  line-height: 1.8;
  color: var(--text-color);
  max-height: 280px;
  overflow-y: auto;
  padding-right: 8px;
}

/* カスタムスクロールバー */
.journal_toc_text::-webkit-scrollbar {
  width: 6px;
}

.journal_toc_text::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.journal_toc_text::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.journal_toc_text::-webkit-scrollbar-thumb:hover {
  background: #999;
}

.journal_button_section {
  margin-top: auto;
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
}

.journal_note {
  font-size: 1.4rem;
  color: #666;
  margin-top: 8px;
}

/* Responsive */
@media (max-width: 767px) {
  .journal_latest_content {
    flex-direction: column;
    gap: 32px;
  }

  .journal_latest_slider {
    flex: none;
    max-width: 100%;
  }

  .journal_latest_title {
    font-size: 2rem;
  }
}

/* ======================================
   Journal Backnumber (バックナンバー)
   ====================================== */

.journal_backnumber_list {
  list-style: none;
  padding: 0;
}

.journal_backnumber_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px;
  border-bottom: 1px dashed var(--line-color);
}

.journal_backnumber_main {
  flex: 1;
  min-width: 0;
}

.journal_backnumber_title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-color);
  margin: 0;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.journal_backnumber_date {
  font-size: 1.4rem;
  font-weight: 400;
  color: #666;
}

.journal_backnumber_download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 32px;
  background-color: var(--main-color-green);
  color: #fff;
  text-decoration: none;
  border-radius: 100vmax;
  font-size: 1.6rem;
  font-weight: 700;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.journal_backnumber_download:hover {
  background-color: #7bc060;
  color: #fff;
}

.journal_backnumber_download:visited {
  color: #fff;
}

.journal_backnumber_download_icon {
  width: 16px;
  height: 16px;
}

.no_posts {
  text-align: center;
  font-size: 1.6rem;
  color: #666;
  padding: 60px 0;
}

@media (max-width: 767px) {
  .journal_backnumber_item {
    gap: 12px;
    padding: 12px 8px;
  }

  .journal_backnumber_title {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    font-size: 1.6rem;
  }

  .journal_backnumber_date {
    font-size: 1.2rem;
  }

  .journal_backnumber_download {
    padding: 10px 16px;
    font-size: 1.3rem;
    gap: 4px;
    flex-shrink: 0;
  }

  .journal_backnumber_download_icon {
    width: 14px;
    height: 14px;
  }
}

/* ======================================
   Image Lightbox (画像拡大表示)
   ====================================== */

.image_lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}

.image_lightbox.active {
  display: flex;
}

.image_lightbox_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.image_lightbox_content {
  position: relative;
  z-index: 10001;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image_lightbox_close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  color: #333;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.image_lightbox_close:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

.image_lightbox_image {
  max-width: 100%;
  max-height: calc(90vh - 60px);
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.image_lightbox_title {
  color: #fff;
  font-size: 1.6rem;
  margin-top: 16px;
  text-align: center;
}

@media (max-width: 767px) {
  .image_lightbox_close {
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    font-size: 1.8rem;
  }

  .image_lightbox_title {
    font-size: 1.4rem;
  }
}

/* ======================================
   Bioclean Slider (無菌調剤室スライダー)
   ====================================== */

.bioclean_slider {
  width: 100%;
  max-width: 560px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.bioclean_slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
}

.bioclean_slide_image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.bioclean_slider .swiper-pagination {
  bottom: 12px;
}

.bioclean_slider .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.6;
  width: 10px;
  height: 10px;
}

.bioclean_slider .swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1;
}

@media (max-width: 767px) {
  .bioclean_slider {
    max-width: 100%;
  }
}

/* =======================================================
   Form Styles
======================================================== */

/* レイアウトコンテナ */
.form-container {
  max-width: 800px;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

.smf-form--business .top_row{
  border-top:1px solid #ddd!important;
}

.smf-form--business .bottom_row{
  margin-bottom: var(--margin-s)!important;
}

.smf-form--business .form_example{
  font-size: 1.3rem;
  color: #666;
  line-height: 1.7;
  margin-top: 4px;
}

/* 確認画面では入力例を非表示 */
form.snow-monkey-form[data-screen="confirm"] .smf-form--business .form_example{
  display: none;
}

.smf-form--business h2{
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.smf-form--business h2::before{
  content: "●";
  color: var(--main-color-green);
  padding-right: 8px;
}

/* タイトル */
.form-title {
  text-align: center;
  font-size: clamp(22px, calc((30 / 1440) * 100vw), 32px);
  margin-bottom: var(--margin-l);
  font-weight: 700;
  position: relative;
  color: var(--text-color);
  padding: 8px 10px 16px;
}

.form-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 6px;
  background-color: #fbb3af;
  border-radius: 3px;
}

.btn-submit,
.smf-action .smf-button-control__control {
  background: var(--main-color-green);
  color: #fff;
  border: none;
  padding: 9px 60px;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: var(--margin-s);
}

.btn-submit:hover,
.smf-action .smf-button-control__control:hover {
  background: var(--sub-color-green);
}

/* Snow Monkey Form Styles */
.smf-form .smf-text-control__control {
  width: 100%;
}

.smf-item label {
    cursor: auto !important;
}

.smf-item__description {
  font-size: 1.4rem!important;
}

.screen-reader-text {
  display: none;
}

.smf-form--business .smf-item__col {
  padding: 24px 16px;
}

.smf-form--business .smf-item__col p.has-medium-font-size{
  font-size: 1.6rem!important;
  font-family: "Noto Sans JP", sans-serif;
}

.smf-item__controls .wp-block-columns.is-layout-flex {
  margin-bottom: 4px;
  display: flex;
  gap: 8px;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .smf-item__controls .wp-block-columns.is-layout-flex {
    font-size: 1.4rem;
  }
}
.lebel_required .smf-item__label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: nowrap;
}

.lebel_required .smf-item__label::before {
  content: "必須";
  color: #fff;
  background: #e3948f;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 500;
  padding: 3px 8px;
  flex-shrink: 0;
  line-height: 1.3;
  display: inline-block;
  min-width: 36px;
  text-align: center;
  margin-top: 2px; /* ラベルテキストの最初の行と高さを合わせる */
}

.lebel_required .smf-item__label__text {
  flex: 1;
  line-height: 1.6;
  /* 以前のpaddingとbeforeを削除 */
}

.smf-complete-content {
  margin-top: 40px;
}

.smf-progress-tracker {
  margin-bottom: var(--margin-m);
}

.smf-label {
  margin-bottom: 6px;
}

@media (min-width: 640px) {
  .smf-form--business .smf-item__col--label {
    flex: 0 0 300px;
    max-width: 300px;
  }
}

@media (max-width: 639.98px) {
  .smf-progress-tracker__item .smf-progress-tracker__item__text {
    font-size: 1.4rem;
  }
  
  /* スマホでの必須マーク調整 */
  .lebel_required .smf-item__label::before {
    font-size: 11px;
    padding: 2px 6px;
    min-width: 32px;
  }
}

/* =======================================================
  アクセシビリティと視覚的調整
======================================================== */

.smf-text-control__control:focus,
.smf-textarea-control__control:focus {
  outline: 2px solid var(--main-color-green);
  outline-offset: 2px;
  border-color: var(--main-color-green);
}

.lebel_required.error .smf-item__label::before {
  background: #dc3545;
  animation: shake 0.3s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-2px); }
  75% { transform: translateX(2px); }
}

/* ========================================================
   Apply Page (入会・申請ページ)
=========================================================*/

/* Intro Section */
.apply_intro {
  padding: var(--margin-xxl) 0;
  max-width: 1160px;
  margin: 0 auto;
}

.apply_intro_content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.apply_intro_text {
  flex: 1;
}

.apply_intro_title {
  font-size: clamp(2.4rem, calc((36 / 1440) * 100vw), 3.6rem);
  font-weight: 700;
  line-height: 1.9;
  margin-bottom: var(--margin-s);
  position: relative;
  z-index: 2;
}

.apply_intro_title span {
  position: relative;
  padding-bottom: 8px;
}

.apply_intro_title span:after {
  position: absolute;
  content: "";
  display: inline-block;
  bottom: -4px;
  height: 3px;
  left: 0;
  width: 100%;
  background: radial-gradient(
      circle closest-side,
      rgba(44, 148, 22, 0.5) 90%,
      #0000
    )
    0 / 9px 100%;
}

.apply_intro_title::before {
  content: "";
  position: absolute;
  background: url(../images/apply_deco01.svg) no-repeat center center;
  top: 0;
  left: 0;
  width: 92px;
  aspect-ratio: 1 / 1;
  z-index: -1;
  transform: translate(-60%, -20%);
}

.apply_intro_paragraph {
  font-size: clamp(1.6rem, calc((16 / 1440) * 100vw), 1.6rem);
  line-height: 2;
  color: var(--text-color);
}

.apply_intro_image {
  flex: 0 0 360px;
  position: relative;
}

.apply_intro_image img {
  width: 100%;
  border-radius: 16px;
}

.apply_intro_character {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100px;
}

.apply_intro_character img {
  width: 100%;
}

/* Responsive */
@media (max-width: 967.98px) {
  .apply_intro_content {
    flex-direction: column;
    gap: 40px;
  }

  .apply_intro_image {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .apply_intro_character {
    width: 80px;
    bottom: -10px;
    right: -10px;
  }
}

@media (max-width: 767.98px) {
  .apply_intro_title {
    font-size: 2.2rem;
  }

  .apply_intro_paragraph {
    font-size: 1.5rem;
  }
}

/* Membership Benefits Section */
.apply_membership {
  padding: var(--margin-xxl) 0;
}

.apply_membership_content {
  max-width: 1160px;
  margin: 0 auto;
}

.benefits_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefits_list li {
  padding-left: 32px;
  position: relative;
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--text-color);
}

.benefits_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  background-image: url("../images/ico_check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.benefits_list li a {
  color: var(--main-color-green);
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.benefits_list li a:hover {
  opacity: 0.7;
}

@media (max-width: 767.98px) {
  .benefits_list li {
    font-size: 1.4rem;
    padding-left: 28px;
  }

  .benefits_list li::before {
    width: 18px;
    height: 18px;
    top: 3px;
  }
}

/* Flow Section */
.apply_flow {
  padding: var(--margin-xxl) 0;
}

.apply_flow_content {
  max-width: 1160px;
  margin: 0 auto;
}

/* Fee Section */
.apply_fee {
  padding: var(--margin-xxl) 0;
}

.apply_fee_content {
  max-width: 1160px;
  margin: 0 auto;
}

.table_fee {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--margin-m);
}

.table_fee thead tr {
  background-color: transparent;
}

.table_fee th {
  padding: 16px;
  text-align: left;
  font-size: 1.6rem;
  font-weight: 700;
  border: 1px solid #e0e0e0;
}

.table_fee td {
  padding: 16px;
  border: 1px solid #e0e0e0;
  font-size: 1.5rem;
  background-color: #fff;
}

.table_fee td:nth-child(2) {
  text-align: right;
}

.table_fee tr:nth-child(even) td {
  background-color: #f9f9f9;
}

.fee_summary {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: var(--margin-s);
}

.fee_summary_item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e0e0e0;
}

.fee_summary_label {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
  white-space: nowrap;
}

.fee_summary_amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
}

.fee_summary_optional {
  font-size: 1.3rem;
  font-weight: 400;
  color: #666;
}

.payment_method {
  margin-bottom: var(--margin-l);
}

.payment_method h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 12px;
}

.payment_method p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: var(--text-color);
}

@media (max-width: 767.98px) {
  .table_fee {
    font-size: 1.3rem;
  }

  .table_fee th,
  .table_fee td {
    padding: 12px 8px;
    font-size: 1.3rem;
  }

  .fee_summary {
    flex-direction: column;
    gap: 8px;
  }

  .fee_summary_item {
    flex-wrap: wrap;
    gap: 6px;
  }

  .fee_summary_label {
    font-size: 1.4rem;
  }

  .fee_summary_amount {
    font-size: 1.4rem;
  }

  .fee_summary_optional {
    font-size: 1.2rem;
  }

  .payment_method h3 {
    font-size: 1.6rem;
  }
}

/* ======================================
   Books Page Styles
   ====================================== */

/* Books Accordion */
.books_accordion_item {
  margin-bottom: 24px;
  border-radius: 8px;
}

.books_accordion_header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background-color: var(--bg-color-gray);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-radius: 12px;
}

.books_accordion_header:hover {
  background-color: #f0f0f0;
}

.books_accordion_title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-color);
}

.books_accordion_toggle {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.books_accordion_item.active .books_accordion_toggle {
  transform: rotate(180deg);
}

.books_accordion_toggle svg {
  width: 24px;
  height: 24px;
  color: var(--text-color);
}

.books_accordion_content {
  height: 0;
  overflow: hidden;
  margin-top: 0;
  transition: height 0.3s ease, margin-top 0.3s ease;
}

.books_accordion_item.active .books_accordion_content {
  margin-top: var(--margin-s);
}

/* Books Table */
.books_accordion_content .table_wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.books_table {
  min-width: 600px;
}

.books_table th,
.books_table td {
  padding: 10px;
  font-size: 1.5rem;
  white-space: nowrap;
}

.books_table th:nth-child(2),
.books_table td:nth-child(2) {
  white-space: normal;
}

.books_table td {
  background-color: #fff;
}

.books_table tbody tr:nth-child(even) td {
  background-color: #f9f9f9;
}

/* Publisher Links */
.publisher_links {
  margin-top: var(--margin-xl);
}

.publisher_links .heading_h3 {
  margin-bottom: 20px;
}

.publisher_list {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.publisher_list li {
  padding: 0;
  margin: 0;
}

/* Order Section */
.order_section {
  padding: var(--margin-xl) 0;
  border-radius: 8px;
}

.order_method {
  margin-bottom: var(--margin-l);
}

.order_method:last-child {
  margin-bottom: 0;
}

.order_method .heading_h3 {
  margin-bottom: 16px;
}

.order_method .section_txt {
  margin-bottom: 20px;
}

.download_buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Books Contact Section */
.books_contact {
  padding: var(--margin-xl) 0;
}

.books_contact .box {
  text-align: center;
}

.books_contact p {
  margin-bottom: 8px;
}

.books_contact .access_email {
  margin-top: 16px;
}

.books_contact .access_email a {
  color: var(--color-green);
  text-decoration: none;
  font-weight: 700;
}

.books_contact .access_email a:hover {
  text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 767.98px) {
  .books_accordion_header {
    padding: 16px;
  }

  .books_accordion_title {
    font-size: 1.6rem;
  }

  .books_accordion_toggle svg {
    width: 20px;
    height: 20px;
  }

  .books_accordion_item.active .books_accordion_content {
    padding: 16px;
  }

  .books_table {
    min-width: 500px;
  }

  .books_table th,
  .books_table td {
    padding: 12px 8px;
    font-size: 1.3rem;
  }

  /* 書籍名列のみ改行を許可 */
  .books_table td:nth-child(2) {
    white-space: normal;
    min-width: 150px;
  }
  .download_buttons {
    flex-direction: column;
  }

  .payment_method p {
    font-size: 1.4rem;
  }

  .publisher_list {
    row-gap: 16px;
  }
}

/* ======================================
   Recruit Page Styles
   ====================================== */

/* Recruit Search Form */
.recruit_search_section {
  padding: var(--margin-xl) 0;
}

.recruit_search_table th {
  width: 200px;
  background: var(--bg-color-gray);
  font-weight: 700;
  text-align: left;
  vertical-align: top;
}

.recruit_search_table th,
.recruit_search_table td {
  padding: 32px;
}

@media (max-width: 767.98px) {
  .recruit_search_table th,
  .recruit_search_table td {
    padding: 16px;
  }
}

.recruit_search_table td {
  vertical-align: top;
}

.search_form_group {
  margin-bottom: 32px;
}

.search_form_group:last-of-type {
  margin-bottom: 0;
}

.search_form_label {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-color);
}

.search_area_group {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

@media (max-width: 767.98px) {
  .search_area_group {
    flex-direction: column;
  }
}

.search_area_group_title {
  font-size: 1.5rem;
  margin-bottom: 2px;
  color: #8c8c8c;
}

.search_form_checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.search_checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 1.5rem;
}

.search_checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  cursor: pointer;
}

.search_form_button_wrapper {
  margin-top: 40px;
  text-align: center;
}

.btn_recruit_search {
  min-width: 240px;
}

/* Recruit About Section */
.recruit_about_section {
  padding: var(--margin-xl) 0;
}

.section_txt_wrapper {
  margin-bottom: var(--margin-l);
}

/* Recruit Search Results */
.recruit_search_result {
  background: var(--bg-color-gray);
  padding-top: var(--margin-l);
}

.search_conditions {
  border: 1px dashed #ababab;
  padding: 20px 24px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.search_conditions_title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-color);
}

.search_conditions_text {
  font-size: 1.5rem;
  color: var(--text-color);
}

.search_result_count {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--text-color);
}

.recruit_cards {
  display: grid;
  gap: 32px;
  margin-bottom: var(--margin-l);
}

.recruit_card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.14);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.recruit_card:before{
  content: '';
  position: absolute;
  background: url(../images/recruit_card_deco.svg) no-repeat center center / contain;
  top: 0;
  right: 0;
  width: 200px;
  height: 184px;
  display: block;
  z-index: 1;
}

@media (min-width: 768px) {
  .recruit_card {
    flex-direction: row;
  }
}

.recruit_card_left {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: var(--margin-ms);
  position: relative;
  z-index: 2;
}

.recruit_card_right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  padding: var(--margin-ms);
  width: 40%;
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .recruit_card_right {
    width: 100%;
    align-items: flex-start;
  }

  .recruit_card_right .btn {
    width: 100%;
  }
}

.recruit_card_right .btn {
  margin-bottom: 0;
  margin-top: auto;
}

.recruit_card_header {
  border-bottom: 1px dashed #cbcbcb;
  padding-bottom: 12px;
  margin-bottom: 8px;
}

.recruit_card_header .recruit_card_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin-bottom: 8px;
}

.recruit_card_tags{
  margin-bottom: 16px;
}

.recruit_card_highlights{
  margin-bottom: 8px;
}

.recruit_card_highlights p{
  font-size: 1.4rem;
  color: var(--text-color);
  line-height: 1.7;
}

.recruit_card_header .recruit_tag{
  background: rgba(223, 241, 215, 0.7);
}

.recruit_card_title {
  font-size: clamp(2rem, calc((26 / 1440) * 100vw), 2.6rem);
  font-weight: 700;
  color: var(--text-color);
  line-height: 1;
  margin-bottom: 8px;
}

.recruit_card_address {
  font-size: 1.4rem;
  color: #808080;
}

.recruit_tag {
  display: inline-block;
  padding: 1px 16px;
  background: var(--color-green-light);
  color: var(--color-green);
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 3px;
  border: 1px solid var(--LINE_GRAY, #e5e5e5);
  background: #f7f7f7;
}

.recruit_card_info {
  display: grid;
  gap: 8px;
}

.recruit_card_info_item {
  display: flex;
  gap: 14px;
}

.recruit_card_info_item strong {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 122px;
  height: 100%;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-color);
  border-radius: 2px;
  background: rgba(223, 241, 215, 0.7);
}

.recruit_card_info_item p {
  display: flex;
  align-items: center;
  width: calc(100% - 122px);
  min-height: 40px;
  font-size: 1.4rem;
  line-height: 1.7;
  color: var(--text-color);
}

@media (max-width: 767px) {
  .recruit_card_info {
    padding-top: 16px;
  }
  .recruit_card_info_item {
    flex-direction: column;
    gap: 0;
  }

  .recruit_card_info_item strong {
    width: 100%;
    height: auto;
    min-height: 32px;
    justify-content: flex-start;
    padding-left: 8px;
  }

  .recruit_card_info_item p {
    width: 100%;
    height: 100%;
    min-height: 32px;
  }
}

.recruit_map {
  width: 100%;
  border-radius: 8px;
}

.no_results {
  text-align: center;
  padding: 80px 20px;
}

.no_results p {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--text-color);
}

/* Recruit Detail */
.recruit_detail_section{
  max-width: 1000px;
  margin: 0 auto;

}

.recruit_detail_title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: var(--margin-s);
  color: var(--text-color);
}

.recruit_detail_table_wrapper {
  margin-bottom: var(--margin-l);
}

.recruit_detail_table th {
  width: 200px;
  background: var(--bg-color-gray);
  font-weight: 700;
  text-align: left;
  vertical-align: top;
}

.recruit_detail_table td {
  vertical-align: top;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}

.recruit_map_address {
  display: flex;
  align-items: center;
  gap: 12px;
}

.recruit_map_embed {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ddd;
  margin-top: 12px;
}

.recruit_map_image {
  width: 100%;
  height: auto;
  display: block;
}

.recruit_detail_notice {
  background: var(--bg-color-gray);
  padding: 24px;
  border-radius: 8px;
  margin-top: var(--margin-l);
}

.recruit_detail_notice p {
  font-size: 1.4rem;
  line-height: 1.7;
  margin-bottom: 8px;
  color: var(--text-color);
}

.recruit_detail_notice p:last-child {
  margin-bottom: 0;
}

.recruit_detail_buttons{
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

/* Responsive */
@media (max-width: 767.98px) {
  .recruit_card_footer {
    flex-direction: column;
  }

  .recruit_map_placeholder {
    width: 100%;
  }

  .recruit_detail_table th {
    width: 100px;
    font-size: 1.4rem;
  }

  .recruit_detail_table td {
    font-size: 1.4rem;
  }

  .recruit_detail_buttons {
    flex-direction: column;
  }
}

/* Recruit Photos */
.recruit_photos {
  margin-bottom: 32px;
  text-align: center;
}

.recruit_photo {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Google Maps iframe */
.recruit_map_embed iframe,
.recruit_card_right iframe{
  width: 100%;
  height: 300px;
  border-radius: 8px;
}

/* Map Button */
.btn_map {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
}

.btn_map svg {
  flex-shrink: 0;
}

.recruit_detail_highlights{
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-color);
  line-height: 1.7;
  font-size: 1.8rem;
}

/* ========================================================
   Test Item Notes
=========================================================*/
.test_item_notes {
  margin-top: 32px;
}

.test_item_notes p {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 8px;
  color: var(--text-color);
}

.test_item_notes p:last-child {
  margin-bottom: 0;
}

.test_item_notes strong {
  font-weight: 700;
}

/* ========================================================
   Test Item Notice Box
=========================================================*/
.test_item_notice_title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--main-color-green);
  margin-bottom: 10px;
}

.test_item_notice_text {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 8px;
  color: var(--text-color);
}

.test_item_notice_text:last-child {
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .test_item_notice {
    padding: 20px;
  }

  .test_item_notice_title {
    font-size: 1.6rem;
  }

  .test_item_notice_text {
    font-size: 1.3rem;
  }
}

/* ========================================================
   Links Page
=========================================================*/
.links_section {
  margin-bottom: var(--margin-xl);
  position: relative;
  z-index: 3;
}

.links_section:last-child {
  margin-bottom: 0;
}

.links_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.links_item {
  background: #fff;
  border: 1px solid var(--line-color);
  border-radius: 6px;
  transition: all 0.2s ease;
  height: 100%;
}

.links_item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-color: var(--main-color-green);
}

.links_item_link {
  color: var(--text-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 16px;
  height: 100%;
  transition: opacity 0.2s ease;
}

.links_item_link:hover {
  opacity: 0.8;
}

.links_item_title {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-align: center;
  justify-content: center;
}

.links_external_icon {
  flex-shrink: 0;
  margin-top: 1px;
}

.links_item_note {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #666;
  margin-top: 4px;
  text-align: center;
}

@media (max-width: 1023.98px) {
  .links_list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767.98px) {
  .links_section {
    margin-bottom: var(--margin-l);
  }

  .links_list {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }

  .links_item_link {
    padding: 12px;
  }

  .links_item_title {
    font-size: 1.3rem;
  }

  .links_item_note {
    font-size: 1.1rem;
  }
}

/* ========================================================
   Area Selection Modal
=========================================================*/
/* Area Modal specific styles */

.area_modal_main_title {
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--main-color-green);
  text-align: center;
  margin-bottom: 8px;
}

.area_modal_subtitle {
  font-size: 1.6rem;
  color: var(--text-color);
  text-align: center;
  margin-bottom: 32px;
}

.area_modal_buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.area_modal_btn {
  background-color: var(--main-color-green);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 24px 16px 16px;
  font-size: 1.6rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.area_modal_btn:hover {
  background-color: var(--sub-color-dark-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.area_modal_btn_title {
  display: block;
  line-height: 1.6;
  font-size: 1.8rem;
  width: 100%;
}

.area_modal_btn_cities {
  display: block;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.5;
  opacity: 0.9;
  width: 100%;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 767.98px) {
  .area_modal_content {
    padding: 32px 24px;
    width: 95%;
  }

  .area_modal_main_title {
    font-size: 2rem;
    margin-bottom: 6px;
  }

  .area_modal_subtitle {
    font-size: 1.4rem;
    margin-bottom: 24px;
  }

  .area_modal_buttons {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .area_modal_btn {
    padding: 20px 16px 14px;
    gap: 8px;
  }

  .area_modal_btn_title{
    font-size: 1.6rem;
  }

  .area_modal_btn_cities {
    padding-top: 6px;
    font-size: 1.4rem;
  }
}

/* ========================================================
   FV Animation (General Top Page Only)
=========================================================*/

/* アニメーションコンテナ */
body.home:not(.pharmacist) .fv_anime_container {
  position: relative;
  width: 100%;
  aspect-ratio: 1307 / 436;
  background-color: #E2FAEB;
  border-radius: 24px;
  overflow: hidden;
  z-index: 4;
}

@media (max-width: 767.98px) {
  body.home:not(.pharmacist) .fv_anime_container {
    aspect-ratio: 1032 / 629;
  }
}

/* アニメーション用キャラクター */
body.home:not(.pharmacist) .fv_anime_char {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  width: 240px;
  height: auto;
  z-index: 3;
  opacity: 0;
  animation: fvAnimeCharZoom 18s ease-out infinite;
}

@keyframes fvAnimeCharZoom {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }
  2% {
    opacity: 1;
  }
  10% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.7);
  }
  14% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.7);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }
}

/* フェード画像 */
body.home:not(.pharmacist) .fv_anime_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 5;
}

body.home:not(.pharmacist) .fv_anime_img_01 {
  animation: fvAnimeFadeImg1 18s ease-in-out infinite;
}

body.home:not(.pharmacist) .fv_anime_img_02 {
  animation: fvAnimeFadeImg2 18s ease-in-out infinite;
}

@keyframes fvAnimeFadeImg1 {
  0% {
    opacity: 0;
  }
  14% {
    opacity: 0;
  }
  16% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  28% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fvAnimeFadeImg2 {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  28% {
    opacity: 1;
  }
  42% {
    opacity: 1;
  }
  45% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* テキストアニメーション */
body.home:not(.pharmacist) .fv_anime_txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #333;
  opacity: 0;
  z-index: 8;
  text-align: center;
  animation: fvAnimeTxtFade 18s ease-in-out infinite;
  line-height: 1.1;
}

body.home:not(.pharmacist) .fv_anime_txt_sm {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 8px;
}

body.home:not(.pharmacist) .fv_anime_txt_lg {
  font-size: 96px;
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 767.98px) {
  body.home:not(.pharmacist) .fv_anime_txt_sm {
    font-size: 20px;
    margin-bottom: 4px;
  }

  body.home:not(.pharmacist) .fv_anime_txt_lg {
    font-size: 32px;
  }
}

@keyframes fvAnimeTxtFade {
  0% {
    opacity: 0;
  }
  45% {
    opacity: 0;
  }
  48% {
    opacity: 1;
  }
  64% {
    opacity: 1;
  }
  67% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* ロゴマークアニメーション */
body.home:not(.pharmacist) .fv_anime_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 240px;
  height: auto;
  opacity: 0;
  z-index: 8;
  animation: fvAnimeLogoFade 18s ease-in-out infinite;
}

@media (max-width: 767.98px) {
  body.home:not(.pharmacist) .fv_anime_logo {
    width: 180px;
  }
}

@keyframes fvAnimeLogoFade {
  0% {
    opacity: 0;
  }
  67% {
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  94% {
    opacity: 1;
  }
  97% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* Common Modal */
.common_modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}

.common_modal.is_active {
  display: block;
}

.common_modal_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.common_modal_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 24px;
  padding: 48px;
  max-width: 820px;
  width: 90%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.common_modal_close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 3.2rem;
  line-height: 1;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.common_modal_close:hover {
  color: var(--main-color-green);
}

.common_modal_body {
  width: 100%;
}

/* Contact Modal specific styles */
.contact_modal .common_modal_content {
  max-width: 600px;
}


.contact_modal_trigger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header_nav_contact {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-color);
  transition: color 0.3s ease;
  display: block;
  padding: 8px 0;
  text-align: left;
}

.header_nav_contact:hover {
  color: var(--main-color-green);
}

.drawer_menu .contact_modal_trigger {
  width: 100%;
  text-align: left;
  padding: 16px 0;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-color);
  border-bottom: 1px solid var(--line-color);
}

@media (max-width: 767.98px) {
  .common_modal_content {
    padding: 32px 24px;
    width: 95%;
  }

  .common_modal_close {
    top: 12px;
    right: 12px;
    font-size: 2.8rem;
    width: 36px;
    height: 36px;
  }
}
