/*
Theme Name: Asahi Pharmacy
Theme URI: https://asahi-pharmacy.jp/
Author: Asahi Pharmacy
Author URI: https://asahi-pharmacy.jp/
Description: 旭薬局のWordPressテーマ。渋谷店・池袋店に対応したエレガントなデザイン。
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: asahi-pharmacy
Tags: pharmacy, medical, healthcare, responsive
*/

:root {
  /* Color scheme */
  --color-base: #a69e99;
  --color-base-rgb: 166, 158, 153;
  --color-dark: #4a4542;
  --color-dark-rgb: 74, 69, 66;
  --color-bg-green: #d4cec9;
  --color-bg-green-rgb: 212, 206, 201;
  --color-green-black: #6b635f;
  --color-green-black-rgb: 107, 99, 95;
  --color-bg-beige: #faf9f7;
  --color-bg-beige-rgb: 250, 249, 247;
  --color-cream: #f8f6f3;
  --color-cream-rgb: 248, 246, 243;
  --color-beige: #e0dbd7;
  --color-beige-rgb: 224, 219, 215;
  --color-primary: #8b7f78;
  --color-primary-rgb: 139, 127, 120;
  --color-secondary: #7a716b;
  --color-secondary-rgb: 122, 113, 107;
  --color-danger: #c08872;
  --color-danger-rgb: 192, 136, 114;
  --color-gray: #918884;
  --color-gray-rgb: 145, 136, 132;
  --color-gray-dark: #6b635f;
  --color-gray-dark-rgb: 107, 99, 95;
  --color-gray-light: #ccc5c0;
  --color-gray-light-rgb: 204, 197, 192;
  --color-mint: #dbd5d1;
  --color-mint-rgb: 219, 213, 209;
  --color-line: #06c755;

  /* Fonts */
  --font-family: "Jost", "Melodrama", "IBM Plex Sans JP", sans-serif;
  --font-bold: 600;
  --font-regular: 400;
  --font-normal: 400;
  --font-light: 300;
  --font-melo: "Melodrama", serif;
  --font-ibm: "IBM Plex Sans JP", sans-serif;

  /* Header Heights */
  --header-height-lg: 100px;
  --header-height-md: 65px;
  --header-height-sm: 60px;
}

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

body {
  font-family: var(--font-family);
  color: var(--color-dark);
  background-color: var(--color-bg-beige);
  font-weight: var(--font-normal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.container--narrow {
  max-width: 900px;
}

/* Header */
.l-header {
  z-index: 100;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.l-header__wrapper {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height-lg);
  padding: 0 2rem;
  border-bottom: 1px solid var(--color-mint);
}

.l-header__logo {
  display: flex;
  align-items: center;
}

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

.l-header__logo__text {
  font-family: var(--font-melo);
  font-size: 1.75rem;
  font-weight: var(--font-light);
  color: var(--color-base);
}

.l-header__logo__sub {
  font-size: 0.75rem;
  color: var(--color-gray);
  letter-spacing: 0.1em;
}

.l-header__gnav__ul {
  display: flex;
  gap: 2rem;
}

.l-header__gnav__link {
  color: var(--color-green-black);
  font-weight: var(--font-regular);
  font-size: 0.9375rem;
  transition: color 0.3s ease;
}

.l-header__gnav__link:hover {
  color: var(--color-primary);
}

.l-header__reservation {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 25px;
  border-radius: 30px;
  background: var(--color-line);
  color: #fff;
  font-size: 0.875rem;
  transition: background-color 0.3s ease;
  font-weight: 500;
}

.l-header__reservation:hover {
  background-color: #05b049;
}

/* Hamburger Menu */
.l-header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 24px;
  cursor: pointer;
  z-index: 101;
}

.l-header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-dark);
  transition: all 0.3s ease;
}

.l-header__hamburger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.l-header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.l-header__hamburger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.l-header__mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height-sm);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height-sm));
  background-color: #fff;
  z-index: 99;
  overflow-y: auto;
  padding: 2rem;
}

.l-header__mobile-menu.is-active {
  display: block;
}

.l-header__mobile-menu__ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.l-header__mobile-menu__link {
  display: block;
  padding: 1rem;
  color: var(--color-green-black);
  font-size: 1rem;
  border-bottom: 1px solid var(--color-mint);
  transition: color 0.3s ease;
}

.l-header__mobile-menu__link:hover {
  color: var(--color-primary);
}

.l-header__mobile-menu__line {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background: var(--color-line);
  color: #fff;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 1rem;
  justify-content: center;
}

/* Hero Section */
.top-kv {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.top-kv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(166, 158, 153, 0.1) 0%,
      rgba(166, 158, 153, 0.05) 100%);
  z-index: 1;
}

.top-kv__picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.top-kv__picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-kv__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  filter: grayscale(20%);
}

.top-kv__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  width: 100%;
}

.top-kv__title {
  font-family: var(--font-melo);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 300;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 0.9;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.top-kv__subtitle {
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.3em;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.top-kv__location {
  font-size: 0.875rem;
  color: #fff;
  letter-spacing: 0.15em;
  font-weight: 300;
}

.top-kv__placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(166, 158, 153, 0.1) 0%,
      rgba(166, 158, 153, 0.05) 100%);
}

/* Common Title */
.c-title__top .en {
  font-family: var(--font-melo);
  font-weight: var(--font-light);
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--color-dark);
}

.c-title__top .ja {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: var(--color-gray);
  margin-top: 0.5rem;
}

/* Section Styles */
.section {
  padding: 100px 0;
}

.section--white {
  background-color: #fff;
}

.section--beige {
  background-color: var(--color-bg-beige);
}

.section--green {
  background-color: var(--color-bg-green);
}

.section__title {
  text-align: center;
  margin-bottom: 60px;
}

.section__title .en {
  font-family: var(--font-melo);
  font-size: 3rem;
  font-weight: 300;
  color: var(--color-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section__title .ja {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: var(--color-gray);
  margin-top: 0.5rem;
}

/* Button Styles */
.c-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  cursor: pointer;
}

.c-button--primary {
  background: var(--color-base);
  color: #fff;
  border: 1px solid var(--color-base);
}

.c-button--primary:hover {
  background: var(--color-green-black);
  border-color: var(--color-green-black);
}

.c-button--outline {
  background: transparent;
  color: var(--color-gray-dark);
  border: 1px solid var(--color-gray);
}

.c-button--outline:hover {
  background: var(--color-base);
  color: #fff;
  border-color: var(--color-base);
}

.c-button--line {
  background: var(--color-line);
  color: #fff;
  border: 1px solid var(--color-line);
}

.c-button--line:hover {
  background: #05b049;
}

/* Footer */
.l-footer {
  position: relative;
  background-color: var(--color-green-black);
  color: var(--color-beige);
  padding: 60px 0 30px;
}

.l-footer__nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.l-footer__nav__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.l-footer__nav__list__link {
  color: var(--color-beige);
  font-size: 0.9375rem;
  transition: opacity 0.3s ease;
}

.l-footer__nav__list__link:hover {
  opacity: 0.7;
}

.l-footer__info__title {
  font-size: 1.125rem;
  margin-bottom: 15px;
}

.l-footer__info__text {
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: 10px;
}

.l-footer__stores {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--color-gray);
}

.l-footer__stores__title {
  font-size: 1.125rem;
  margin-bottom: 15px;
  color: var(--color-beige);
}

.l-footer__stores__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.l-footer__stores__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-beige);
  font-size: 0.9375rem;
  transition: opacity 0.3s ease;
}

.l-footer__stores__link:hover {
  opacity: 0.7;
}

.l-footer__stores__link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.l-footer__copyright {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--color-gray);
  text-align: center;
  font-size: 0.8125rem;
  opacity: 0.7;
}

/* News Section */
.top-news__list {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.top-news__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 30px;
  border-bottom: 1px solid var(--color-mint);
  transition: background-color 0.3s ease;
}

.top-news__item:last-child {
  border-bottom: none;
}

.top-news__item:hover {
  background-color: var(--color-bg-beige);
}

.top-news__date {
  flex-shrink: 0;
  font-size: 0.875rem;
  color: var(--color-gray);
  font-weight: var(--font-regular);
  letter-spacing: 0.05em;
}

.top-news__category {
  flex-shrink: 0;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: var(--font-regular);
  letter-spacing: 0.05em;
}

.top-news__category--news {
  background-color: #e3f2fd;
  color: #1976d2;
}

.top-news__category--info {
  background-color: #e8f5e9;
  color: #388e3c;
}

.top-news__category--event {
  background-color: #fff3e0;
  color: #f57c00;
}

.top-news__category--important {
  background-color: #ffebee;
  color: #c62828;
}

.top-news__link {
  flex: 1;
  color: var(--color-dark);
  font-size: 0.9375rem;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.top-news__link:hover {
  color: var(--color-primary);
}

.top-news__empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--color-gray);
  font-size: 0.9375rem;
}

.top-news__more {
  text-align: center;
  margin-top: 40px;
}

/* About Section */
.top-about__heading {
  color: var(--color-dark);
  font-weight: var(--font-light);
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  line-height: 2.2;
  letter-spacing: 0.1rem;
  margin-bottom: 2rem;
}

.top-about__heading span {
  border-bottom: solid 1px var(--color-gray-light);
}

.top-about__text {
  max-width: 700px;
  font-size: 0.9375rem;
  line-height: 2.2;
  letter-spacing: 0.05rem;
  color: var(--color-gray-dark);
}

.top-about__strength {
  display: flex;
  margin-top: 60px;
  gap: 30px;
}

.top-about__strength__item {
  flex: 1;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.top-about__strength__item:hover {
  transform: translateY(-5px);
}

.top-about__strength__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-bg-green);
  font-size: 2rem;
}

.top-about__strength__title {
  color: var(--color-dark);
  font-size: 1.125rem;
  margin-bottom: 15px;
}

.top-about__strength__text {
  color: var(--color-gray-dark);
  font-size: 0.875rem;
  line-height: 1.8;
}

/* LINE Section */
.top-line__wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.top-line__content {
  flex: 1;
}

.top-line__title {
  font-family: var(--font-melo);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--color-dark);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.top-line__subtitle {
  font-size: 1rem;
  color: var(--color-gray);
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.top-line__text {
  font-size: 0.9375rem;
  line-height: 2;
  color: var(--color-gray-dark);
  margin-bottom: 2rem;
}

.top-line__list {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.top-line__list li {
  font-size: 0.875rem;
  line-height: 2.2;
  color: var(--color-gray-dark);
  position: relative;
}

.top-line__image {
  flex: 0 0 300px;
  text-align: center;
}

.top-line__image__box {
  width: 250px;
  height: 250px;
  margin: 0 auto;
  background: var(--color-bg-beige);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.top-line__image__caption {
  font-size: 0.875rem;
  color: var(--color-gray);
  margin-top: 20px;
}

/* Service Section */
.top-service {
  display: flex;
  min-height: 700px;
  padding: 0 200px;
}

.top-service__content {
  position: relative;
  width: 50%;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.top-service__text {
  margin-top: 40px;
  font-size: 0.9375rem;
  line-height: 2.2;
  color: var(--color-gray-dark);
  max-width: 500px;
}

.top-service__list {
  margin-top: 40px;
  line-height: 2.5;
  color: var(--color-gray-dark);
}

.top-service__content .c-button {
  margin-top: 40px;
  width: fit-content;
}

.top-service__image {
  width: 50%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #d4cec9 0%, #e8e4e0 100%);
}

/* Medicines Section */
.top-medicines__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.top-medicines__item {
  text-align: center;
  padding: 30px;
  background: var(--color-bg-beige);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.top-medicines__item:hover {
  transform: translateY(-5px);
}

.top-medicines__icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.top-medicines__title {
  font-size: 1.125rem;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.top-medicines__text {
  font-size: 0.875rem;
  color: var(--color-gray-dark);
  line-height: 1.8;
}

/* Info Section */
.top-info__grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
}

.top-info__item {
  text-align: center;
  flex: 1;
  max-width: 350px;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
}

.top-info__icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.top-info__title {
  color: var(--color-green-black);
  font-weight: var(--font-regular);
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.top-info__text {
  color: var(--color-gray-dark);
  font-size: 0.9375rem;
  line-height: 2;
}

.top-info__tel {
  color: var(--color-primary);
  text-decoration: underline;
}

.top-info__map {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Notice Section */
.top-notice__cta {
  text-align: center;
}

.top-notice__button {
  padding: 15px 40px;
  font-size: 0.9375rem;
}

/* Store Card Section */
.top-stores {
  max-width: 800px;
  margin: 0 auto;
}

.top-stores__card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.top-stores__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.top-stores__card__image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: linear-gradient(135deg,
      var(--color-bg-green) 0%,
      var(--color-mint) 100%);
}

.top-stores__card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.top-stores__card:hover .top-stores__card__image img {
  transform: scale(1.05);
}

.top-stores__card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray-light);
}

.top-stores__card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-dark);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-stores__card__content {
  padding: 40px;
}

.top-stores__card__title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.top-stores__card__description {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--color-gray-dark);
  margin-bottom: 30px;
}

.top-stores__card__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
  padding: 20px;
  background: var(--color-bg-beige);
  border-radius: 8px;
}

.top-stores__card__info__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--color-gray-dark);
}

.top-stores__card__info__item svg {
  flex-shrink: 0;
  color: var(--color-primary);
}

.top-stores__card__content .c-button {
  width: 100%;
  justify-content: center;
  padding: 15px 30px;
  font-size: 0.9375rem;
}

/* ========================================
   Responsive Styles
   ======================================== */

@media (max-width: 968px) {
  .l-header__gnav {
    display: none;
  }

  .l-header__reservation span {
    display: none;
  }

  .l-header__hamburger {
    display: flex;
  }

  .top-service {
    padding: 0;
  }

  .top-line__wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .top-line__image {
    flex: 1;
  }

  .top-medicines__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .top-service {
    flex-direction: column;
    min-height: auto;
  }

  .top-service__content {
    width: 100%;
    padding: 50px 30px;
  }

  .top-service__image {
    width: 100%;
    height: 300px;
  }
}

@media (max-width: 768px) {
  .l-header__wrapper {
    height: var(--header-height-sm);
    padding: 0 1rem;
  }

  .l-header__logo__text {
    font-size: 1.25rem;
  }

  .l-header__logo__sub {
    font-size: 0.625rem;
  }

  .l-header__reservation {
    padding: 8px 16px;
    font-size: 0.75rem;
  }

  .top-kv__title {
    font-size: clamp(2rem, 10vw, 4rem);
  }

  .top-kv__subtitle {
    font-size: 0.75rem;
  }

  .top-kv__location {
    font-size: 0.75rem;
  }

  .section {
    padding: 60px 0;
  }

  .section__title .en {
    font-size: 2rem;
  }

  .c-title__top .en {
    font-size: 2.5rem;
  }

  .l-footer {
    padding: 40px 0 20px;
  }

  .l-footer__nav {
    flex-direction: column;
    gap: 30px;
  }

  .l-footer__stores {
    margin-top: 30px;
    padding-top: 20px;
  }

  .container {
    padding-right: 30px;
    padding-left: 30px;
  }

  /* News Section */
  .top-news__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px;
  }

  .top-news__date {
    font-size: 0.8125rem;
  }

  .top-news__category {
    font-size: 0.6875rem;
    padding: 3px 10px;
  }

  .top-news__link {
    font-size: 0.875rem;
  }

  /* About Section */
  .top-about__strength {
    flex-direction: column;
    gap: 20px;
  }

  /* Medicines Section */
  .top-medicines__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .top-medicines__item {
    padding: 20px 15px;
  }

  .top-medicines__icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    font-size: 2rem;
  }

  .top-medicines__title {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .top-medicines__text {
    font-size: 0.8125rem;
    line-height: 1.6;
  }

  /* Info Section - 1列表示 */
  .top-info__grid {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .top-info__item {
    max-width: 100%;
    width: 100%;
  }

  /* Store Card */
  .top-stores__card__image {
    height: 220px;
  }

  .top-stores__card__badge {
    top: 15px;
    right: 15px;
    padding: 6px 16px;
    font-size: 0.8125rem;
  }

  .top-stores__card__content {
    padding: 30px 20px;
  }

  .top-stores__card__title {
    font-size: 1.5rem;
  }

  .top-stores__card__description {
    font-size: 0.875rem;
    margin-bottom: 25px;
  }

  .top-stores__card__info {
    padding: 15px;
    margin-bottom: 25px;
  }

  .top-stores__card__info__item {
    font-size: 0.8125rem;
  }

  .top-stores__card__content .c-button {
    padding: 12px 25px;
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .top-kv__title {
    font-size: 2.5rem;
  }

  .section__title .en {
    font-size: 1.75rem;
  }

  /* News Section */
  .top-news__item {
    padding: 15px;
  }

  .top-news__link {
    font-size: 0.8125rem;
  }

  /* Medicines Section */
  .top-medicines__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .top-medicines__item {
    padding: 15px 10px;
  }

  .top-medicines__icon {
    width: 70px;
    height: 70px;
    margin-bottom: 12px;
    font-size: 1.75rem;
  }

  .top-medicines__title {
    font-size: 0.9375rem;
    margin-bottom: 6px;
  }

  .top-medicines__text {
    font-size: 0.75rem;
  }

  /* Store Card */
  .top-stores__card__image {
    height: 200px;
  }

  .top-stores__card__content {
    padding: 25px 15px;
  }

  .top-stores__card__title {
    font-size: 1.25rem;
  }
}

.l-header__logo__image {
  height: 90px;
  width: auto;
  display: block;
}

/* ヘッダーロゴのサイズ調整 */
.l-header__logo__image {
  height: 80px;
  width: auto;
  display: block;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .l-header__logo__image {
    height: 45px;
  }
}