@charset "utf-8";
/* ============================================
   home.css - トップページ専用スタイル
   ============================================ */

/* --- ホームキャッチ画像 --- */
.home-catch-img {
  width: 100%; /* スマホ: 100% */
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 769px) {
  .home-catch-img {
    width: 50%; /* PC: 50% */
  }
}

/* --- セッション雰囲気セクション --- */
/* ※ 基本スタイルは style.css で定義（左右段組みレイアウト） */

/* --- About Ray プロフィール紹介セクション --- */
.about-ray-content {
  max-width: 900px;
  margin: 0 auto;
  /* スマホ: 縦並び（中央揃え） */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-ray-img {
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.profile-teaser-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  /* 周囲のぼかし（10%=広いぼかし） */
  -webkit-mask-image: radial-gradient(
    circle at center,
    black 10%,
    transparent 100%
  );
  mask-image: radial-gradient(
    circle at center,
    black 10%,
    transparent 100%
  );
}

.about-ray-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-ray-text {
  font-size: 0.95rem;
  line-height: 2;
  margin-bottom: 0;
  color: var(--color-text-main);
}

.about-ray-text + .about-ray-text {
  margin-top: 1.5rem;
}

/* PC: 横並び（左画像・右テキスト） */
@media screen and (min-width: 769px) {
  .about-ray-content {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 2.5rem;
  }

  .about-ray-img {
    margin-bottom: 0;
  }

  .profile-teaser-img {
    width: 200px;
    height: 200px;
  }

  .about-ray-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .about-ray-info .btn-more {
    margin-top: 0.5rem;
  }
}
