/* ======================================
   ATOM MEDICAL - メインスタイルシート
   ====================================== */

/* CSS変数（カラースキーム） */
:root {
  --primary: #1e3a8a;
  --primary-foreground: #ffffff;
  --secondary: #64748b;
  --secondary-foreground: #ffffff;
  --background: #ffffff;
  --foreground: #1e293b;
  --muted: #f1f5f9;
  --muted-foreground: #64748b;
  --accent: #e0e7ff;
  --accent-foreground: #1e3a8a;
  --destructive: #d4183d;
  --border: rgba(30, 58, 138, 0.1);
  --input-background: #f8fafc;
  --card: #ffffff;
  --card-foreground: #1e293b;
  --header-bg: #16253a;
  --sky-50: #f0f9ff;
  --sky-100: #e0f2fe;
  --sky-200: #bae6fd;
  --sky-400: #38bdf8;
  --sky-500: #0ea5e9;
  --blue-500: #3b82f6;
  --radius: 0.5rem;
}

/* リセットとベーススタイル */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', 'Yu Gothic', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

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

ul {
  list-style: none;
}

/* ======================================
   ヘッダー
   ====================================== */
.header {
  background-color: var(--header-bg);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header__logo-img {
  height: 48px;
  width: auto;
}

.header__logo-text {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* デスクトップナビゲーション */
.header__nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.header__nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: white;
  border-radius: 0.375rem;
  transition: background-color 0.2s;
}

.header__nav-link:hover {
  background-color: rgba(56, 189, 248, 0.3);
}

.header__nav-link.active {
  background-color: var(--sky-400);
}

/* モバイルメニューボタン */
.header__mobile-btn {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.header__mobile-btn svg {
  width: 24px;
  height: 24px;
  color: white;
}

/* モバイルメニュー */
.header__mobile-menu {
  display: none;
  position: absolute;
  right: 1rem;
  top: 100%;
  margin-top: 0.5rem;
  width: 14rem;
  background-color: var(--header-bg);
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 0.5rem 0;
  z-index: 100;
}

.header__mobile-menu.open {
  display: block;
}

.header__mobile-link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: white;
  transition: background-color 0.2s;
}

.header__mobile-link:hover {
  background-color: rgba(56, 189, 248, 0.3);
}

.header__mobile-link.active {
  background-color: var(--sky-400);
}

/* ======================================
   フッター
   ====================================== */
.footer {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.footer__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer__text {
  font-size: 0.875rem;
  opacity: 0.9;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.footer__contact-item a:hover {
  text-decoration: underline;
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
}

.footer__address {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.9;
  font-style: normal;
}

.footer__address svg {
  width: 16px;
  height: 16px;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.footer__copyright {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.75;
}

/* ======================================
   ページヘッダー（サブページ共通）
   ====================================== */
.page-header {
  background: linear-gradient(to right, var(--sky-400), var(--blue-500));
  color: white;
  padding: 4rem 0 5rem;
}

.page-header__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.page-header__title {
  font-size: 1.875rem;
  font-weight: 500;
}

.page-header__subtitle {
  margin-top: 1rem;
  font-size: 1.125rem;
  opacity: 0.95;
}

/* ======================================
   ヒーローセクション（ホームページ）
   ====================================== */
.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(56, 189, 248, 0.9), rgba(59, 130, 246, 0.85));
}

.hero__content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}

.hero__text {
  max-width: 48rem;
}

.hero__title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: white;
}

.hero__subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 0.375rem;
  font-size: 1.125rem;
  font-weight: 500;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  gap: 0.5rem;
}

.btn--primary {
  background-color: white;
  color: var(--primary);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn--primary:hover {
  background-color: #f3f4f6;
  transform: scale(1.05);
}

.btn--outline {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn--outline:hover {
  background-color: white;
  color: var(--primary);
}

.btn--blue {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn--blue:hover {
  background-color: rgba(30, 58, 138, 0.9);
}

.btn svg {
  width: 20px;
  height: 20px;
}

/* ======================================
   セクション共通
   ====================================== */
.section {
  padding: 4rem 0;
}

.section--sky {
  background-color: var(--sky-50);
}

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

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

.section__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section__container--narrow {
  max-width: 56rem;
}

.section__title {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary);
}

.section__title--left {
  text-align: left;
}

/* ======================================
   トップメッセージセクション
   ====================================== */
.message__content {
  max-width: 56rem;
  margin: 0 auto;
}

.message__content p {
  line-height: 1.8;
  margin-bottom: 1rem;
}

.message__content .highlight {
  color: var(--primary);
}

.message__list {
  margin: 1rem 0;
}

.message__list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.message__list-item span:first-child {
  color: var(--primary);
  margin-right: 0.5rem;
}

/* ======================================
   価値セクション
   ====================================== */
.values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.value-card {
  text-align: center;
  padding: 1.5rem;
  background-color: white;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.value-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
}

.value-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.value-card__text {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ======================================
   ミッションセクション
   ====================================== */
.mission {
  text-align: center;
}

.mission__statement {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--primary);
  line-height: 1.6;
}

.mission__description {
  font-size: 1.125rem;
  line-height: 1.8;
}

/* ======================================
   CTAセクション
   ====================================== */
.cta__container {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.cta__title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.cta__text {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.cta__phone-box {
  display: inline-block;
  padding: 1.5rem;
  background-color: var(--sky-50);
  border-radius: 0.75rem;
  margin-bottom: 2rem;
}

.cta__phone-label {
  font-size: 0.875rem;
  color: #4b5563;
  margin-bottom: 0.5rem;
}

.cta__phone-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--primary);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.cta__phone-number:hover {
  color: rgba(30, 58, 138, 0.8);
}

.cta__phone-number svg {
  width: 24px;
  height: 24px;
}

.cta__phone-hours {
  font-size: 0.875rem;
  color: #4b5563;
  margin-top: 0.5rem;
}

/* ======================================
   会社概要テーブル
   ====================================== */
.company-info {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  overflow: hidden;
}

.company-info__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.company-info__row:last-child {
  border-bottom: none;
}

.company-info__label {
  font-weight: 600;
  color: var(--muted-foreground);
}

.company-info__value {
  font-weight: 500;
}

.company-info__sub {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

.company-info__list {
  margin-top: 0.5rem;
}

.company-info__list li {
  margin-bottom: 0.25rem;
}

.company-info__list li.sub-item {
  padding-left: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ======================================
   プロフィールページ
   ====================================== */
.profile__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.profile__image-wrapper {
  aspect-ratio: 3 / 4;
  background-color: var(--muted);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.profile__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile__name-section {
  margin-top: 1.5rem;
  text-align: center;
}

.profile__name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.profile__name-en {
  color: var(--muted-foreground);
}

.profile__role {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

.profile__details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.profile__section-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.profile__section-title svg {
  width: 20px;
  height: 20px;
}

.profile__career-item {
  border-left: 4px solid var(--primary);
  padding: 0.5rem 0 0.5rem 1rem;
  margin-bottom: 1rem;
}

.profile__career-item--secondary {
  border-left-color: var(--secondary);
}

.profile__career-title {
  font-weight: 500;
}

.profile__career-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

.profile__message-box {
  background-color: var(--muted);
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.profile__message-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.profile__message-text {
  line-height: 1.8;
  margin-bottom: 1rem;
}

.profile__message-text:last-child {
  margin-bottom: 0;
}

.profile__message-text.highlight {
  font-weight: 500;
  color: var(--primary);
}

/* ======================================
   サービスページ
   ====================================== */

/* サービスの流れ */
.service-flow {
  max-width: 64rem;
  margin: 0 auto;
}

.service-flow__intro {
  text-align: center;
  color: var(--muted-foreground);
  margin-bottom: 4rem;
}

.service-flow__step {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 3rem;
}

.service-flow__step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: var(--sky-400);
}

.service-flow__number {
  position: absolute;
  left: 1rem;
  top: 0;
  font-size: 7.5rem;
  font-weight: 700;
  color: #f3f4f6;
  line-height: 1;
  user-select: none;
  z-index: 0;
}

.service-flow__content {
  position: relative;
  z-index: 1;
  padding-top: 1rem;
}

.service-flow__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.service-flow__text {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.service-flow__subtitle {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* サービスCTAボックス */
.service-cta {
  margin-top: 4rem;
  padding: 2rem;
  background-color: var(--sky-50);
  border-radius: 0.75rem;
  border: 2px solid var(--sky-200);
  text-align: center;
}

.service-cta__title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.service-cta__phone-label {
  font-size: 0.875rem;
  color: #4b5563;
  margin-bottom: 0.5rem;
}

.service-cta__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--primary);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.service-cta__phone:hover {
  color: rgba(30, 58, 138, 0.8);
}

.service-cta__hours {
  font-size: 0.875rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
}

/* サービス一覧 */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.service-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: box-shadow 0.2s;
}

.service-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.service-card__icon--large {
  width: 64px;
  height: 64px;
  margin-top: -0.75rem;
}

.service-card__content {
  flex: 1;
}

.service-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.service-card__description {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.service-card__details {
  margin-top: 0.5rem;
}

.service-card__detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.service-card__detail-item svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

/* サービス画像セクション */
.service-image-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.service-image-section__content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
}

.service-image-section__content p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-image-section__content p:last-child {
  margin-bottom: 0;
  color: var(--muted-foreground);
}

.service-image-section__image {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-image-section__image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* ======================================
   お問い合わせページ
   ====================================== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact__section-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.contact__intro {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* 電話番号ボックス */
.contact__phone-box {
  padding: 2rem;
  background-color: var(--sky-50);
  border-radius: 0.75rem;
  border: 2px solid var(--sky-200);
  margin-bottom: 2rem;
  text-align: center;
}

.contact__phone-label {
  font-size: 0.875rem;
  color: #4b5563;
  margin-bottom: 0.75rem;
}

.contact__phone-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--primary);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.contact__phone-number:hover {
  color: rgba(30, 58, 138, 0.8);
}

.contact__phone-number svg {
  width: 32px;
  height: 32px;
}

.contact__phone-hours {
  font-size: 0.875rem;
  color: #4b5563;
  margin-top: 0.75rem;
}

/* 連絡先情報 */
.contact__info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact__info-icon {
  padding: 0.75rem;
  background-color: var(--sky-100);
  border-radius: 0.5rem;
}

.contact__info-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.contact__info-label {
  margin-bottom: 0.25rem;
}

.contact__info-value a {
  color: var(--primary);
}

.contact__info-value a:hover {
  text-decoration: underline;
}

.contact__info-address {
  font-style: normal;
  color: var(--muted-foreground);
}

/* Googleマップ */
.contact__map {
  margin-top: 2rem;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contact__map iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: none;
}

/* お問い合わせフォーム */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form__success {
  padding: 1rem;
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 0.5rem;
  color: #166534;
}

.contact-form__group {
  display: flex;
  flex-direction: column;
}

.contact-form__label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.contact-form__required {
  color: var(--destructive);
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background-color: var(--input-background);
  font-size: 1rem;
  font-family: inherit;
  transition: outline 0.2s, border-color 0.2s;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-color: var(--primary);
}

.contact-form__textarea {
  resize: none;
  min-height: 150px;
}

.contact-form__error {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--destructive);
}

.contact-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form__submit:hover {
  background-color: rgba(30, 58, 138, 0.9);
}

.contact-form__submit svg {
  width: 20px;
  height: 20px;
}

/* お問い合わせ注意書き */
.contact__notice {
  padding: 3rem 0;
  background-color: var(--sky-50);
}

.contact__notice-text {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.8;
}

/* ======================================
   レスポンシブデザイン
   ====================================== */
@media (min-width: 640px) {
  .hero {
    height: 700px;
  }

  .hero__title {
    font-size: 3rem;
  }

  .hero__subtitle {
    font-size: 1.5rem;
  }

  .hero__buttons {
    flex-direction: row;
    gap: 1.5rem;
  }

  .page-header__title {
    font-size: 2.25rem;
  }

  .section {
    padding: 6rem 0;
  }

  .section__title {
    font-size: 1.875rem;
  }

  .cta__phone-number {
    font-size: 2.5rem;
  }

  .cta__phone-number svg {
    width: 32px;
    height: 32px;
  }

  .contact__phone-number {
    font-size: 2.5rem;
  }

  .contact__phone-number svg {
    width: 40px;
    height: 40px;
  }

  .service-cta__phone {
    font-size: 1.5rem;
  }

  .header__logo-text {
    font-size: 1.25rem;
  }

  .header__logo-img {
    height: 64px;
  }
}

@media (min-width: 768px) {
  .header__container {
    padding: 0 1.5rem;
  }

  .header__nav {
    display: flex;
  }

  .header__mobile-btn {
    display: none;
  }

  .footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .values__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .company-info__row {
    grid-template-columns: 1fr 2fr;
  }

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

  .service-image-section {
    grid-template-columns: 1fr 1fr;
  }

  .contact__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .hero {
    height: 800px;
  }

  .hero__title {
    font-size: 4.5rem;
  }

  .hero__subtitle {
    font-size: 1.875rem;
    margin-bottom: 3rem;
  }

  .profile__grid {
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
  }

  .profile__name-section {
    text-align: left;
  }
}

/* ======================================
   ユーティリティ
   ====================================== */
.text-center {
  text-align: center;
}

.hidden {
  display: none;
}

@media (min-width: 640px) {
  .sm\:inline {
    display: inline;
  }
}
