* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  padding-top: 75px;
}

@media screen and (max-width: 768px) {
  body {
    padding-top: 84px;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

/* ヘッダーのスタイル */
.header-container {
  display: flex;
  justify-content: space-between;
  padding-left: clamp(16px, calc(100vw * 70 / 1920), 70px);
  padding-right: clamp(12px, calc(100vw * 60 / 1920), 60px);
  padding-top: 22px;
  height: 75px;
  gap: clamp(12px, 2vw, 32px);
}

.header-container .header-logo {
  font-size: clamp(16px, calc(100vw * 20 / 1920), 20px);
  font-weight: 700;
  flex: 0 0 auto;
}

.header-container .global-nav-list {
  display: flex;
  gap: clamp(12px, calc(100vw * 60 / 1920), 60px);
}

.header-container .global-nav-list li {
  font-size: clamp(12px, calc(100vw * 16 / 1920), 16px);
  font-weight: 600;
}

/* ナビ/ハンバーガー */
.global-nav {
  position: relative;
  flex: 0 0 auto;
}

.hamburger {
  position: relative;
  display: none;
  width: clamp(40px, calc(100vw * 60 / 640), 60px);
  height: clamp(40px, calc(100vw * 60 / 640), 60px);
  background: #2E61E2;
  border: none;
  border-radius: 50%;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  left: 50%;
  display: block;
  width: calc(clamp(40px, calc(100vw * 60 / 640), 60px) * 0.45);
  height: 2px;
  background: #FFF;
  transition: transform 0.22s ease, top 0.22s ease, opacity 0.18s ease;
  transform-origin: center center;
  transform: translateX(-50%) rotate(0deg);
}

.hamburger span:first-child {
  top: calc(50% - (clamp(40px, calc(100vw * 60 / 640), 60px) * 0.12));
}

.hamburger span:last-child {
  top: calc(50% + (clamp(40px, calc(100vw * 60 / 640), 60px) * 0.12));
}

.hamburger[aria-expanded="true"] span:first-child {
  top: 50%;
  transform: translateX(-50%) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:last-child {
  top: 50%;
  transform: translateX(-50%) rotate(-45deg);
}

@media screen and (max-width: 1200px) {
  .header-container .header-logo {
    font-size: clamp(16px, calc(100vw * 18 / 1200), 18px);
  }

  .header-container .global-nav-list {
    gap: clamp(12px, calc(100vw * 40 / 1200), 20px);
  }

  .header-container .global-nav-list li {
    font-size: clamp(12px, calc(100vw * 14 / 1200), 14px);
  }
}

@media screen and (max-width: 768px) {
  .header-container {
    height: 84px;
  }

  .header-container .header-logo {
    width: 82%;
  }

  .hamburger {
    display: block;
  }

  .header-container .global-nav-list {
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 8px 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    gap: 0;
    transform-origin: top center;
    transform: scaleY(0);
    opacity: 0;
    transition: transform 240ms cubic-bezier(.2, .9, .2, 1), opacity 200ms ease;
    pointer-events: none;
    z-index: 1100;
    overflow: auto;
  }

  .global-nav.open .global-nav-list {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .global-nav-list li {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  }
}

/* フッターのスタイル */
.footer-container {
  text-align: center;
}

.footer-container .footer-title {
  padding-bottom: 14px;
  font-size: 20px;
  font-weight: bold;
}

.footer-container .footer-small {
  font-size: 12px;
}

@media screen and (max-width: 768px) {}

.kari-contents {
  height: 600px;
  background: #747070;
  color: #fff;
}

/* TOPへ戻るボタン */
.to-top {
  position: fixed;
  right: 154px;
  bottom: 21px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  padding: 4px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 500;
  pointer-events: none;
}

.to-top img {
  width: clamp(40px, calc(100vw * 60 / 640), 60px);
  height: clamp(40px, calc(100vw * 60 / 640), 60px);
  display: block;
  border-radius: 50%;
}

.to-top .to-top-text {
  font-size: 12px;
  color: #111;
  background: transparent;
}

.to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media screen and (max-width: 767px) {
  .to-top {
    right: 50px;
  }
}

/* =============================== 
INTERVIEW_content 
================================= */
#interview {
  width: 100%;
  position: relative;
  background: linear-gradient(to bottom,
      #ffffff 0px,
      #ffffff 43px,
      #f5f5f5 43px,
      #f5f5f5 100%);

}

.interview-container {
  max-width: 1100px;
  width: 59%;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 768px) {
  #interview {
    padding: 0 20px;
    background: linear-gradient(to bottom,
        #ffffff 0px,
        #ffffff 20px,
        #f5f5f5 20px,
        #f5f5f5 100%);
  }

  .interview-container {
    width: 100%;
  }
}

/* =============================== 
INTERVIEW_header 
================================= */
.interview-header {
  width: 100%;
}

.interview-title {
  font-weight: 700;
  font-size: 5.375rem;
  line-height: 1;
  text-align: left;
  padding-top: 0;
}

@media screen and (max-width: 768px) {
  .interview-title {
    font-size: 3rem;
    margin-bottom: 20px;
  }
}

/* =============================== 
INTERVIEW_profile 
================================= */
.interview-profile {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  position: relative;
  margin-bottom: 27px;
}

.interview-profile-text {
  width: 55%;
  position: relative;
  z-index: 1;
  margin-top: 80px;
  margin-right: 44px;
  text-align: right;
  line-height: 2rem;
}

.interview-name {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.interview-name span {
  font-size: 1.1rem;
}

.interview-photo {
  width: 500px;
  height: 200px;
  position: relative;
  overflow: visible;
}

.interview-photo img {
  position: absolute;
  width: 120%;
  height: auto;
  display: block;
  bottom: -40%;
  z-index: 2;
  border-radius: 70px;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .interview-profile {
    flex-direction: column;
    align-items: center;
    height: auto;
  }

  .interview-photo {
    order: 1;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }

  .interview-photo img {
    position: static;
    width: 100%;
    height: auto;
    border-radius: 30px;
  }

  .interview-profile-text {
    order: 2;
    width: 100%;
    text-align: right;
    line-height: 1.5rem;
    margin: 0 0 15px 0;
  }
}

/* =============================== 
Q&A 
================================= */
.faq-area {
  width: 100%;
  background: #2E61E2;
  border-radius: 60px;
  padding: 80px 130px 100px;
  position: relative;
}

.faq-item {
  margin-bottom: 3rem;
}

.faq-item dt {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 12px;
  position: relative;
  padding-left: 40px;
  color: #fff;
}

.faq-item dt::before {
  content: "Q.";
  position: absolute;
  left: 0;
  top: -0.4rem;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.faq-item dd {
  font-weight: 100;
  position: relative;
  padding-left: 40px;
  color: #fff;
  font-size: 16px;
  line-height: 1.8;
}

.faq-item dd::before {
  content: "A.";
  position: absolute;
  left: 0;
  top: -0.4rem;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.faq-item p {
  font-size: 18px;
  color: #fff;
}

/* =============================== 
画像付きFAQ 
================================= */

.faq-block {
  display: flex;
  align-items: flex-start;
  gap: 49px;
  margin-top: 48px;
  margin-bottom: 2rem;
}

.faq-block img {
  width: 100%;
  max-width: 40%;
  height: auto;
  object-fit: cover;
  flex-shrink: 0;
}

.faq-block .faq-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media screen and (max-width: 768px) {

  .faq-area {
    padding: 40px 20px;
  }

  .faq-item dt {
    font-size: 14px;
  }

  .faq-item dd {
    font-size: 14px;
  }


}

@media screen and (max-width: 1280px) {
  .faq-block {
    display: block;
  }

  .faq-block img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
  }
}

/* =============================== 
FAQ(テキスト、画像のみ) 
================================= */
.faq-wrap .text-item .text-item-title {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
}

.faq-wrap .text-item {
  font-weight: 100;
  margin-top: 28px;
  font-size: 18px;
  color: #fff;
  line-height: 1.8;
}

.faq-image-area img {
  max-width: 720px;
  width: 100%;
  height: auto;
}

.faq-image-area {
  margin-top: 97px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .faq-image-area img {
    width: 100%;
    height: auto;
  }
}

/* =============================== 
INTERVIEW VIDEO 
================================= */

.interview-item .introVideo{
  position: relative;
  max-width: 700px;
  margin: 160px auto 0px;
  width: 100%;
}

.interview-item .introVideo::after{
  content: "";
  position: absolute;
  top: -15%;
  right: -3.2vw;
  width: 100%;
  height: 100%;
  background: #EA335A;
  border-radius: 40px;
  z-index: 0;
}

.interview-item .introVideo__label{
  position: absolute;
  top: -12.5%;
  right: 0;
  width: 760px;
  height: 60px;
  justify-content: flex-end;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-align: right;
  z-index: 2;
}

.interview-item .introVideo__videoBox{
  position: relative;
  z-index: 1;
  max-width: 1097.7px;
  margin: 0 auto;
}

.interview-item .introVideo__video{
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  background: #000;
}

.interview-item .introVideo__play{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.interview-item .introVideo__play img{
  width: 80px;
  height: 80px;
}

@media screen and (max-width: 768px) {
  .interview-item .introVideo::after{
    right: 0;
    width:92%;
  }

  .interview-item .introVideo__label {
    right: 10vw;
    height: auto;
    font-size: 16px;
  }
  
  .interview-item .introVideo__video {
    width: calc(100% - 30px);
  }
}

/* =============================== 
TOPへ戻るボタン
 ================================= */
.interview-back {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 75px;
  padding-bottom: 75px;
}

.back-button {
  width: 400px;
  height: 80px;
  background: #fff;
  border: 1px solid #222;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.05em;
  transition: all .3s ease;
}

.back-text {
  font-size: 1rem;
  pointer-events: none;
}

.back-arrow {
  position: absolute;
  right: 24px;
  width: 28px;
  height: 28px;
  border: 1px solid #222;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all .3s ease;
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  .back-button {
    width: 90%;
    max-width: 340px;
    height: 70px;
    font-size: 18px;
  }

  .back-arrow {
    width: 36px;
    height: 36px;
  }
}
