:root {
  --color-primary: #FF8BA7;
  /* Soft but vibrant pink */
  --color-secondary: #FFC6C7;
  /* Lighter pink */
  --color-accent: #FFA69E;
  /* Sweet orange/peach accent */
  --color-text: #5C4A4D;
  /* Soft dark brown for contrast */
  --color-bg: #FFF5F6;
  /* Extremely light pink background */
  --color-card-bg: #FFFFFF;
}

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

body {
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

.container {
  display: flex;
  min-height: 100vh;
}

/* Left Pane (Fixed Photo) */
.left-pane {
  width: 50%;
  position: relative;
}

.sticky-container {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
}

.animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(-45deg, #FFC6C7, #FFF5F6, #FF8BA7, #FFA69E);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  z-index: 1;
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.cutout-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/golfer-main-kiri.png');
  background-size: 120% auto;
  /* 100%から120%に拡大 */
  background-position: center bottom;
  background-repeat: no-repeat;
  z-index: 2;
  pointer-events: none;
}

/* Right Pane (Scrollable Content) */
.right-pane {
  width: 50%;
  padding: 60px 80px;
  background-color: var(--color-bg);
}

.profile-content {
  max-width: 600px;
  margin: 0 auto;
}

.profile-header {
  margin-bottom: 40px;
  text-align: center;
}

.sponsor-msg {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 75px;
  /* 50pxから1.5倍に */
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.catch-copy {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

.golfer-name {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  color: var(--color-text);
}

.en-name {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-accent);
  margin-top: 4px;
}

.pr-section {
  background: var(--color-card-bg);
  padding: 30px;
  border-radius: 16px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(255, 139, 167, 0.08);
  font-size: 15px;
}

.pr-section p {
  margin-bottom: 15px;
}

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

.video-section {
  margin-bottom: 40px;
}

.video-container {
  display: flex;
  gap: 20px;
}

.video-container video {
  width: calc(50% - 10px);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(255, 139, 167, 0.1);
}

.detail-portrait {
  text-align: center;
  margin-bottom: 40px;
}

.detail-portrait img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--color-card-bg);
  box-shadow: 0 10px 20px rgba(255, 139, 167, 0.15);
}

.details-section h2 {
  font-size: 24px;
  color: var(--color-primary);
  margin-bottom: 24px;
  text-align: center;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.profile-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-card-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(255, 139, 167, 0.08);
  margin-bottom: 50px;
}

.profile-table th,
.profile-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-bg);
  font-size: 15px;
}

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

.profile-table th {
  width: 40%;
  text-align: left;
  font-weight: 600;
  color: var(--color-accent);
  background-color: rgba(255, 245, 246, 0.6);
}

.profile-table td {
  width: 60%;
}

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

.external-link {
  display: inline-block;
  padding: 16px 40px;
  background-color: var(--color-primary);
  color: #FFF;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(255, 139, 167, 0.25);
  font-size: 15px;
}

.external-link:hover {
  background-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 166, 158, 0.35);
}

.sp-br {
  display: none;
}

@media (min-width: 1700px) {
  .cutout-image {
    background-size: 1020px auto;
    /* 850pxの120% */
  }
}

@media (max-width: 1480px) and (min-width: 1201px) {
  .cutout-image {
    background-size: 888px auto;
    /* 740pxの120% */
  }
}

/* Responsive (Tablet/Mobile view) */
@media (max-width: 1400px) {
  .right-pane {
    padding: 50px 40px;
  }
}

@media (max-width: 1200px) {
  .container {
    flex-direction: column;
  }

  .left-pane,
  .right-pane {
    width: 100%;
  }

  .sticky-container {
    position: relative;
    height: 70vh;
  }

  .animated-bg {
    height: 100%;
  }

  .cutout-image {
    height: 100%;
    background-size: 600px auto;
    background-position: center bottom;
  }

  .right-pane {
    padding: 40px 20px;
  }

  .golfer-name {
    font-size: 32px;
  }

  .detail-portrait img {
    width: 160px;
    height: 160px;
  }

  .video-container {
    flex-direction: column;
    gap: 15px;
  }

  .video-container video {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .sticky-container {
    height: calc(70vh - 70px);
  }

  .cutout-image {
    background-size: 120% auto;
    /* 100%から120%に拡大 */
  }

  .sponsor-msg {
    font-size: 28px;
    /* キャッチコピーとの差をつけるためさらに拡大 */
    margin-bottom: 45px;
    /* 30pxから1.5倍に拡大 */
  }

  .sp-br {
    display: block;
  }
}