/* 既存のstyle.css打ち消し */
figure {
    margin: 0;
}
h2:not(.other_interviews__title):after {
    content: none;
}
:root {
  --base:#83E619;
  --max:1158px;
}
/* ======================================================
// MARK: HERO
// ------------------------------------------------------ */
.hero__inner {
  max-width:1440px;
  display:grid;
grid-template-columns: 1.2fr .8fr;
    gap: clamp(1rem, -1.292rem + 4.77vw, 3rem);
  margin:0 auto;
}
.hero__photo {
  margin:0;
  width:100%;
  overflow:hidden;
  background:#ddd;
}
.hero__photo img {
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero__body {
    display: flex;
    flex-direction: column;
        gap: 3.75rem;
}
.hero__catch {
  display:flex;
  flex-direction:column;
  gap:1rem;
  margin-top: auto;
      font-size: clamp(1.25rem, 1.036rem + 1.07vw, 2rem);
          margin-bottom: 0 !important;
}
.hero__catch span {
  display:inline-block;
  background:var(--base);
  padding: .875rem;
  font-weight:600;
  line-height:1.25;
  width:fit-content;
}
.hero__name {
    font-size: 1.75rem;
    font-weight: 700;
}
.hero__meta {
  font-weight: 500;
}
.hero__name_en {
    font-size: 12px;
    color: #999;
    display: block;
    font-weight: normal;
    margin-top: -5px;
    letter-spacing: 0.2em;
}
.hero__rule {
  height:2px;
  width:32vw;
  background:var(--base);
  margin:10px 0 10px;
}
/* ======================================================
// MARK: CONTENT
// ------------------------------------------------------ */
.content {
    padding-inline: 1rem;
    padding-block: 7.5rem 6.25rem;
}
section.qa {
  max-width:var(--max);
  margin-inline: auto;
}
.qa + .qa {
  padding-top: 6.25rem;
}
.qa__q {
    font-size: .875rem;
    letter-spacing: .1em;
    margin-bottom: .75rem;
}
.qa__a_text {
    font-size: .875rem;
}
.qa__rule {
    margin-bottom: .75rem;
    height:2px;
    background:var(--base);
    width:100%;
}
.qa__a_title {
    font-size:1.5rem;
    margin-bottom: .75rem;
  font-weight:700;
}
/* ======================================================
// MARK: 2 COLUMN
// ------------------------------------------------------ */
.media > * {
    min-width: 0;
}
.media {
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:2rem;
  align-items:start;
}
.media__photo img {
  max-width:100%;
  height:auto;
  display:block;
}
section.full_image {
    max-width: var(--max);
    padding-block: 6.25rem 0;
    margin-inline: auto;
}
section.full_image:has(+ .qa) {
  padding-block-end: 6.25rem;
}
.full_image img {
  max-width:100%;
  background:#ddd;
}

.other_interviews {
    background: #eee;
    padding: 3.75rem 0 4rem;
}
.other_interviews__inner {
  padding-inline: 1rem;
}
.other_interviews__title {
    margin-bottom: 2.75rem;
}
.voice_box h3 + p {
  font-size: .875rem;
}
a.link_to_top {
    margin-inline: auto;
display: flex;
align-items: center;
width: fit-content;
    position: relative; 
}
a.link_to_top img {
    vertical-align: middle;
    margin-right: .5em;
}
a.link_to_top:after {
  content: "";
  width: 100%;
  height: 2px;
position: absolute;
  left: 0;
  bottom: -.1em;
  background-color: #333;
}
/* ======================================================
// MARK: LINKS
// ------------------------------------------------------ */
.cts_grid_wrap {
    max-width: 936px;
    margin-bottom: 3.75rem;
    grid-template-columns: repeat(auto-fill, minmax(271px, 1fr));
    grid-gap: 3.75rem;
}
.voice_wrap {
    padding: .8rem !important;
    gap: 0;
}
/* ======================================================
// MARK: SP
// ------------------------------------------------------ */
@media (max-width: 767px) {

  .hero__inner {
    grid-template-columns: 1fr;
    padding:0;
  }

  .hero__body {
    padding:14px 18px 8px;
  }
  .hero__catch {
    margin-bottom: 3rem;
  }

  .media {
    grid-template-columns: 1fr;
    gap:14px;
  }
  .other_interviews__title {
    font-size: 1.75rem;
    margin-bottom: 3.75rem; 
}
  .hero__rule {
  width:100%;
}
.cts_grid_wrap {
  grid-gap: 2rem;
}
}
