@charset "UTF-8";
section {
  background-color: #ffffff;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-style: normal;
  line-height: 1.5;
  font-weight: 400;
  position: relative;
}
/* クマミるTOP　インタビュー */
#interview {
    padding-top: 0rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}
.section-title {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  color: #63b850;
  letter-spacing: 0.05em;
}
.interview-grid {
  display: flex;
  gap: 32px;
  justify-content: center;
}
.interview-card {
  flex: 1;
  max-width: 500px;
}
.card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card-link:hover .card-thumbnail {
  border-color: #63b850;
}
.card-link:hover .card-title {
  opacity: 0.8;
}
.card-thumbnail {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid #707070;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background-color: #ffffff;
  transition: border-color 0.3s ease;
}
.card-thumbnail img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}
.card-content {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.card-date {
  font-size: 0.875rem;
  color: #777777;
  margin-bottom: 8px;
  display: block;
}
.card-author {
  font-size: 0.9rem;
  font-weight: 500;
  color: #555555;
  margin-bottom: 12px;
  line-height: 1.5;
}
/* 指定スタイルの反映 */
.display-7 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  line-height: 2;
  font-weight: 500;
  color: #274129; 
}
.card-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #274129;
}
.card-more {
  margin-top: auto;
  text-align: right;
  font-size: 0.95rem;
  font-weight: 700;
  color: #63b850;
}
.card-more .arrow {
  margin-left: 4px;
}

@media screen and (min-width: 769px) {
   #interview .col-lg-10 {
    display: flex;
    flex-direction: row;
    gap: 32px; /* カード間の余白 */
    justify-content: center;
  }
  #interview .case-block {
    flex: 1 1 0;
    width: 50%;
    margin-bottom: 0;
  }
  #interview .case-block .col-lg-6 {
    max-width: 100%;
    flex: 0 0 100%;
  }
}

@media screen and (max-width: 768px) {
  .interview-grid {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .interview-card {
    width: 100%;
    max-width: 100%;
  }

  .section-title {
    font-size: 1.75rem;
    margin-bottom: 32px;
  }
}

#interview .card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

@media screen and (max-width: 768px) {
  #interview .col-lg-10 {
    display: block;
  }
  
  #interview .case-block {
    width: 100%;
    margin-bottom: 32px;
  }
}

/*インタビュー詳細ページ */
.interview-detail-section {
  padding: 40px 0 80px;
  background-color: #ffffff;
  color: #274129;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.8;
}

@media screen and (min-width: 769px) {
  .interview-detail-section .article-body {
    width: 750px !important;
    max-width: 750px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
.article-date {
  display: block;
  font-size: 0.75rem;
  color: #5A6658;
  margin-bottom: 0.75rem;
}
/* タイトル (H1) の指定上書き */
.interview-detail-section .article-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #274129;
  line-height: 1.35;
  margin-bottom: 3.75rem;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word; /* 750px幅での自動折り返し */
}
.interview-detail-section .article-header {
  max-width: 750px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
/* 画面幅1500px以上の時の余白調整 */
@media screen and (min-width: 769px) {
  .interview-detail-section .article-header {
    padding-top: 1.25rem; 
  }
}
@media screen and (min-width: 992px) {
  .interview-detail-section .article-header {
    padding-top: 2.875rem; 
  }
}
@media screen and (min-width: 1200px) {
  .interview-detail-section .article-header {
    padding-top: 2.5rem; 
  }
}
@media screen and (min-width: 1400px) {
  .interview-detail-section .article-header {
    padding-top: 1.875rem; 
  }
}

@media screen and (max-width: 768px) {
  .interview-detail-section .article-header {
    padding-top: 0;
  }
  .interview-detail-section .article-title {
    font-size: 1.75rem;
  }
}

.profile-box {
  background-color: #f2f5f1;
  border-radius: 16px;
  padding: 30px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 40px;
}
.profile-thumb {
  width: 200px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.profile-thumb img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius:0 !important;
}

@media screen and (max-width: 768px) {
  .interview-detail-section .profile-box {
    flex-direction: column;
    padding: 1.25rem ;
  }

  .interview-detail-section .profile-thumb {
    width: 100% ;
    max-width: 100% ;
    margin-bottom: 1rem;
        box-sizing: border-box ;
    overflow: hidden;
  }

  .interview-detail-section .profile-thumb img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0 ;
  }
}

.profile-info {
  flex: 1;
}
.profile-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 2.0;
}
.profile-title span {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 2.0;
}
.profile-name {
  color: #63b850;
  text-decoration: underline;
}
.profile-text {
  font-size: 0.9rem;
  line-height: 2.0;
  margin: 0;
}
.intro-text p {
  font-weight: 400;
  margin-bottom: 2.5rem;
  line-height: 2.0;
}
/* 目次 */
.article-toc {
  border-top: 2px solid #F1F3F0;
  border-bottom: 2px solid #F1F3F0;
  padding: 3.125rem 1.875rem 3.75rem;
}

.toc-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.toc-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  background-color: #63b850;
  border-radius: 50%;
}

.toc-list a {
  color: #274129;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
}

.toc-list a:hover {
  color: #63b850;
}

/* --- 記事本文セクション --- */
.content-section {
  margin-bottom: 6rem;
}

/* セクション大見出し*/
.section-heading {
  font-size: 1.9rem;
  font-weight: 700;
  margin-top: 6.4rem;
  margin-bottom: 3.5rem;
  line-height: 1.5;
}

/* 質問見出し*/
.question-heading {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.content-section p {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 3.6rem;
  line-height: 2.0;
}

.highlight-green {
  color: #63b850;
  font-weight: 700;
}
#sec-01 p {
  padding-bottom: 1rem;
}
/* 記事内画像 */
.article-image {
  margin: 1.875rem 0 3.75rem;
  text-align: center;
  border-radius:0 !important;
}

.article-image img {
  max-width: 100%;
  height: auto;
  border-radius: 0 !important;
}

.writer-box {
  display: flex;
  gap: 24px;
  align-items: center;
  background-color: #f7f9f6;
  border-radius: 16px;
  padding: 1.875rem 2.2rem;
  margin-bottom: 5rem;

}

.writer-thumb {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.writer-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  margin-top: -3.75rem;
}
.writer-interviewer {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.9375rem;
}
.writer-company {
  font-size: 0.75rem;
  color: #5A6658;
  margin-bottom: 0.625rem;
}

.writer-name {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.9375rem;
}

.writer-bio {
  font-size: 0.9rem;
  line-height: 2.0;
  margin: 0;
}

/* --- 「一覧に戻る」ボタン --- */
.back-btn-wrapper {
  text-align: center;
  margin: 50px 0 20px;
}

.btn-back {
  display: inline-block;
  padding: 25px 90px;
  border: 2px solid #63b850;
  color: #63b850;
  border-radius: 50px; 
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  background-color: #ffffff;
}

.btn-back:hover {
  background-color: #63b850;
  color: #ffffff;
}

/* レスポンシブ設定（スマホ表示 768px以下） */  
@media screen and (max-width: 768px) {
  .interview-detail-section .article-body {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .article-title {
    font-size: 1.5rem;
  }

  .section-heading {
    font-size: 1.35rem;
  }

  .question-heading {
    font-size: 1.05rem;
  }

  .article-toc {
    padding: 1.25rem;
  }

  .writer-box {
    flex-direction: column;
    text-align: center;
  }

  .writer-thumb {
    margin: 0 auto;
  }
  .writer-thumb img {
    margin-top: 0;
  }
  .btn-back {
    padding: 1.25rem 3.125rem;
    font-size: 1rem;
  }
}