@charset "UTF-8";

*, *::before, *::after {
  box-sizing: border-box;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, main, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  background: transparent;
  border: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

main, article, aside, details, figcaption, figure, img, video, footer, header, hgroup, menu, nav, section {
  display: block;
}

:root {
  --main-color: #b19c57;
  --sub-color: #036;
}

body {
  background: #fff;
  color: #000;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

ul, ol, li {
  list-style: none;
}

a {
  color: inherit;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

sup {
  font-size: 11px;
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

video, img {
  height: auto;
  max-width: 100%;
}


.video-wrapper {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: 50px auto;
}

#video-container {
  cursor: pointer;
  margin: 20px 0;
  max-width: 100%;
  width: 500px;
}

.section__main-visual {
  background: url(main_back.png) no-repeat center / cover;
}

.main-visual__container {
  margin: 0 auto;
  max-width: 100%;
  width: 800px;
}

.lead {
  background-color: rgba(0,0,51,.8);
  color: #fff;
  font-weight: bold;
  padding: 25px clamp(15px, calc(7.2917vw - 8.3333px), 50px) 15px;
}

.moderator {
  display: flex;
  font-size: 14px;
  font-weight: normal;
  justify-content: flex-end;
  margin-top: 10px;
}

.moderator dt {
  flex-shrink: 0;
}

.moderator dd {
  column-gap: 15px;
  display: flex;
  flex-wrap: wrap;
}

#navi {
  left: 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.section__navi {
  background-color: #ccc;
}

.navi-list {
  display: flex;
  margin: 0 auto;
  max-width: 100%;
  width: 800px;
}

.navi-list li {
  width: calc(100% / 2);
}

.active {
  box-shadow: 10px 10px 20px rgba(0, 0, 0, .5);
}

.section__container {
  margin: 0 auto;
  width: min(700px, 90%);
}

.section__header {
  margin-bottom: 40px;
}

.section__header.section__header--margin-top {
  margin-top: 50px;
}

.section__body {
  margin-bottom: clamp(50px, calc(10.5263vw + 16.3158px),90px);
}

.section__body.section__body--margin-top {
  margin-top: 50px;
}

.section__movie {
  margin: 50px auto;
  width: min(600px, 90%);
}

.section__information {
  background: url(bottom.png) no-repeat center / cover;
  padding: 70px 0;
}

.information {
  background-color: #fff;
  margin: 0 auto;
  padding: clamp(30px, calc(13.1579vw - 12.1053px), 80px) clamp(15px, calc(17.1053vw - 39.7368px), 80px);
  width: min(700px, 90%);
}

h2 {
  color: var(--main-color);
  font-size: 22px;
  line-height: 1.4;
  text-align: center;
}

.sub {
  margin: 15px auto 0;
}

.text {
  margin-bottom: 30px;
}

.text.text--interviewer {
  color: var(--main-color);
  font-weight: bold;
}

.text.text--comment {
  color: var(--sub-color);
  font-size: 15px;
  margin: 10px auto 30px;
  max-width: 100%;
  width: 600px;
}

.interviewee {
  color: var(--sub-color);
  font-weight: bold;
  margin-right: 1em;
}

.hypen {
  font-family: sans-serif;
}

.profile {
  align-items: center;
  background-color: var(--sub-color);
  display: flex;
  font-size: clamp(15px, calc(.9643vw + 11.9143px), 17.7px);
  justify-content: space-between;
  margin: 0 auto;
  max-width: 100%;
  width: 600px;
}

.profile__caption {
  align-items: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px;
  width: 100%;
}

.profile__caption .name {
  font-size: clamp(18px, calc(2.1429vw + 11.1429px), 24px);
}

.profile__caption .name span {
  font-size: clamp(15px, calc(.9643vw + 11.9143px), 17.7px);
}

.illust {
  margin-bottom: 30px;
}

.illust__caption {
  color: var(--main-color);
  margin-top: 10px;
}

.photo img {
  margin: 0 auto;
}

.logo {
  margin: 0 auto 30px;
}

.link {
  color: var(--sub-color);
  display: block;
  font-size: 21px;
  text-align: center;
  text-decoration: underline;
  word-break: break-all;
}

@media screen and (max-width: 758px) {
  .profile {
    flex-direction: column-reverse;
    max-width: 100%;
    width: 300px;
  }
}


@media screen and (max-width: 550px) {
  #video-container {
    width: 90%;
  }
}

