/* ======================================
EVIDENCE PAGE
====================================== */

.evidence-page {
  background: #fff;
}

.evidence-page .section-heading h2 {
  color: var(--green);
  font-size: 24px;
  line-height: 1.6;
  font-weight: 600;
}

/* ======================================
FV
====================================== */

.evidence-fv__visual {
  position: relative;
}

.evidence-fv__visual img {
  width: 100%;
}

.evidence-fv__overlay {
  position: absolute;
  left: 15px;
  top: 15px;
  width: 58%;
}

.evidence-fv__overlay h1 {
  margin: 0 0 20px;
  color: var(--green);
  font-size: 30px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.evidence-fv__overlay h1 span {
  color: var(--sub-green);
  font-size: 37px;
}

.evidence-fv__overlay p {
  margin: 0;
  color: #000;
  font-size: 14px;
  line-height: 2;
  text-align: left;  
}

/* ======================================
KEY NUMBER
====================================== */

.key-number-lead {
  margin: 8px 0 34px;
  color: #000;
  font-size: 15px;
  line-height: 1.9;
  text-align: center;
}

.key-card-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.key-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  min-height: 142px;
  padding: 5px 5px 5px;
  border: 1px solid #cc7a00;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.key-card__head {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 10px;
  align-items: start;
}

.key-card__head img {
  display: block;
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.key-card__title {
  min-width: 0;
  padding-top: 10px;
}

.key-card__title h3 {
  margin: 0;
  color: #000;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.key-card__title > span {
  display: block;
  width: 100%;
  border-bottom: 1px dashed #e7b8a4;
  margin: 5px 0 7px;
}

.key-card__number {
  margin: 0;
  color: #5c693a;
  font-size: 31px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 0.02em;

  text-align: center;
  padding-right: 8px;
}

.key-card__number span {
  font-size: 16px;
  margin-left: 2px;
  border-bottom: none;
}

.key-card__text {
  margin: 10px 0 0;
  color: #000;
  font-size: 11px;
  line-height: 1.55;
  text-align: center;
}

.key-card--wide {
  grid-column: 1 / -1;
  min-height: 115px;
}

/* ======================================
KEY CARD 個別調整
====================================== */

/* 臨床経験 */
.key-card--clinical .key-card__title {
  padding-top: 10px;
}

.key-card--clinical {
  justify-content: flex-start;
}

.key-card--clinical .key-card__number {
  align-self: flex-end;
  margin-top: -25px;
  margin-right: 32px;

  font-size: 46px;
  line-height: 1;
  padding: 0;
}

/* 特許 */
.key-card--patent .key-card__title {
  padding-top: 8px;
}

.key-card--patent .key-card__number {
  color: #000;
  font-size: 13px;
  line-height: 1.45;
  text-align: left;
  padding-left: 85px;
  margin-top: -20px;
}

.key-card--patent .key-card__text {
  font-weight: 700;
  font-size: 13px;
}

/* アレルギー・アトピー症例 */
.key-card--case .key-card__title {
  padding-top: 6px;
}

.key-card--case .key-card__number {
  font-size: 35px;
  text-align: right;
  padding-right: 0;
  margin-top: -40px;
}

.key-card--case .key-card__text {
  margin-top: -10px;
  font-weight: 700;
  font-size: 13px;
}

/* 藤本愛彦 著書 */
.key-card--book .key-card__title {
  padding-top: 10px;
}

.key-card--book .key-card__number {
  font-size: 46px;
  text-align: right;
  padding-right: 50px;
  margin-top: -40px;
}

.key-card--book .key-card__text {
  font-weight: 700;
  font-size: 13px;
}

/* 食いつき率 */
.key-card--food .key-card__title {
  padding-top: 10px;
}

.key-card--food .key-card__number {
  font-size: 46px;
  text-align: right;
  padding-right: 32px;
  margin-top: -42px;
}

.key-card--food .key-card__text {
  font-weight: 700;
  font-size: 13px;
}

/* アクリルアミド検査 */
.key-card--test .key-card__title {
  padding-top: 10px;
}

.key-card--test .key-card__number {
  font-size: 32px;
  text-align: right;
  padding-right: 0;
  margin-top: -40px;
}

.key-card--test .key-card__text {
  font-weight: 700;
  font-size: 13px;
}

/* メディア掲載 */
.key-card--media {
  grid-column: 1 / -1;
  min-height: 115px;
}

.key-card--media .key-card__title {
  padding-top: 10px;
}

.key-card--media .key-card__number {
  font-size: 35px;
  text-align: center;
  margin-top: -25px;
}

.key-card--media .key-card__text {
  font-weight: 700;
  font-size: 13px;
}

/* ======================================
CLINICAL DATA
====================================== */

.clinical-data__lead {
  margin: 8px 0 22px;
  color: #000;
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
}

.clinical-card-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.clinical-card {
  display: grid;
  grid-template-columns: 105px 1fr;
  align-items: center;

  min-height: 118px;
  padding: 12px 18px;
  border: 1px solid #cc7a00;
  border-radius: 6px;
  background: #fff;
}

.clinical-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.clinical-card__icon img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.clinical-card__body {
  padding-left: 22px;
  border-left: 1px dashed #e7b8a4;
}

.clinical-card__number {
  margin: 0 0 4px;
  color: #5c693a;
  font-size: 44px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.clinical-card__number span {
  font-size: 20px;
  margin-left: 6px;
}

.clinical-card__label {
  margin: 0;
  color: #000;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
}

.clinical-card__text {
  margin: 0;
  color: #929248;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
}

/* 全国カード */
.clinical-card--area .clinical-card__number {
  font-size: 42px;
}

/* 下の説明ボックス */
.clinical-note {
  margin-top: 24px;
  padding: 18px 18px 20px;
  border-left: 5px solid var(--orange);
  background: #fcf8eb;
}

.clinical-note h3 {
  margin: 0 0 10px;
  color: #000;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
}

.clinical-note h3::after {
  content: "";
  display: block;
  width: 100%;
  border-bottom: 1px dashed #e7b8a4;
  margin-top: 8px;
}

.clinical-note p {
  margin: 0;
  color: #000;
  font-size: 14px;
  line-height: 1.9;
  font-weight: 500;
}

/* ======================================
PATENT
====================================== */

.patent-lead{
  margin:8px 0 24px;
  text-align:center;
  font-size:15px;
  line-height:1.9;
}

.patent-card{
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.patent-images{
  display: flex;
  justify-content: center;
  align-items: center;
}


.patent-item{
  position:relative;
}

.patent-images img{
  display: block;
  width: 100%;
  max-width: 450px;   /* Canvaに合わせて調整 */
  height: auto;
}

.patent-label{
  position:absolute;
  left:50%;
  top:-10px;
  transform:translateX(-50%);
  background:#fff;
  color:var(--orange);
  border:1px solid var(--orange);
  border-radius:999px;
  padding:4px 14px;
  font-size:11px;
  font-weight:700;
}

.patent-note{
  margin-top:18px;
  padding:18px;
  background:#fcf8eb;
  border-left:5px solid var(--orange);
}

.patent-note h3{
  margin:0 0 10px;
  font-size:17px;
  font-weight:700;
}

.patent-note h3::after{
  content:"";
  display:block;
  margin-top:8px;
  border-bottom:1px dashed #e7b8a4;
}

.patent-note p{
  margin:0 0 14px;
  font-size:14px;
  line-height:2;
}

.patent-note p:last-child{
  margin-bottom:0;
}


/* ======================================
FOOD ACCEPTANCE TEST
====================================== */

.food-test__lead{
  margin:10px 0 26px;
  text-align:center;
  font-size:15px;
  line-height:1.9;
}

.food-test__number{
  margin:0 0 18px;
  color:#5c693a;
  font-size:78px;
  line-height:1;
  text-align:center;
  font-weight:700;
}

.food-test__number span{
  font-size:38px;
}

.food-test__image{
  margin-bottom:22px;
  text-align:center;
}

.food-test__image img{
  display:block;
  width:100%;
  max-width:300px;
  margin:0 auto;
}

.food-test__note{
  background:#fcf8eb;
  border-left:5px solid var(--orange);
  padding:18px;
}

.food-test__note h3{
  margin:0 0 10px;
  font-size:18px;
  font-weight:700;
}

.food-test__note h3::after{
  content:"";
  display:block;
  margin-top:8px;
  border-bottom:1px dashed #e7b8a4;
}

.food-test__note p{
  margin:0 0 14px;
  font-size:14px;
  line-height:2;
}

.food-test__note p:last-child{
  margin-bottom:0;
}

/* ======================================
AGEs TEST
====================================== */

.ages-test__lead{
  margin:12px 0 30px;
  font-size:15px;
  line-height:1.9;
  text-align:center;
}

/* 比較画像 */

.ages-compare{
  position:relative;
  margin:26px 0 34px;
}

.ages-compare img{
  display:block;
  width:100%;
  height:auto;
}

/* 左右共通 */

.ages-left,
.ages-right{
  position:absolute;
  top:10%;
  width:40%;
  text-align:center;
}

.ages-left{
  left:4%;
}

.ages-right{
  right:4%;
}

/* タイトル */

.ages-title{
  margin:0;
  color:#000;
  font-size:16px;
  line-height:1.5;
  font-weight:700;
}

/* 数字 */

.ages-value{
  margin:34px 0 0;
  color:#5c693a;
  font-size:60px;
  line-height:1;
  font-weight:700;
}

/* 検出ゼロ */

.ages-value--green{
  margin-top:34px;
  color:#c98b37;
  font-size:46px;
  line-height:1;
}

/* 英文 */

.ages-sub{
  margin:10px 0 0;
  color:#9b9b9b;
  font-size:13px;
  line-height:1.4;
  font-weight:600;
}

/* ======================================
AGEs TEST 個別調整
====================================== */

/* 左カード */
.ages-left{
  left: 4%;
  top: 15%;
  width: 39%;
}

.ages-left .ages-title{
  font-size: 16px;
  margin-bottom: 0;
}

.ages-left .ages-value{
  font-size: 62px;
  margin-top: 48px;
  letter-spacing: -0.03em;
}

.ages-value span {
  display: block;
  margin-top: 2px;
  color: #000;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* 右カード */
.ages-right{
  right: 5%;
  top: 15%;
  width: 44%;
}

.ages-right .ages-title{
  font-size: 16px;
}

.ages-right .ages-value{
  margin-top: 55px;
  font-size: 46px;
}

.ages-right .ages-sub{
  margin-top: 8px;
  font-size: 13px;
}


.evidence-note{
  background:#fcf8eb;
  border-left:5px solid var(--orange);
  padding:18px;
}

.evidence-note + .evidence-note {
  margin-top: 20px;
}

.evidence-note h3{
  margin:0;
  font-size:20px;
  line-height:1.5;
  font-weight:700;
}

.evidence-note h3::after{
  content:"";
  display:block;
  margin-top:10px;
  border-bottom:1px dashed #e7b8a4;
}

/* ======================================
MEDIA & PUBLICATION
====================================== */

.media-publication__lead {
  margin: 10px 0 24px;
  color: #000;
  font-size: 14px;
  line-height: 1.9;
  text-align: center;
}

.media-publication-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.media-publication-card {
  display: grid;
  grid-template-columns: 1fr 128px;
  gap: 12px;
  align-items: center;

  padding: 10px 12px;
  border: 1px solid #e6b98f;
  background: #fff;
}

.media-publication-card__label {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
}

.media-publication-card__text {
  margin: 0;
  color: #000;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 600;
}

.media-publication-card img {
  display: block;
  width: 128px;
  height: auto;
}

.media-publication-card--textonly {
  display: block;
}

.media-publication-gallery {
  margin-top: 18px;
  text-align: center;
}

.media-publication-gallery img {
  display: block;
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
}

/* ======================================
MANUFACTURING
====================================== */

.manufacturing__lead {
  margin: 10px 0 24px;
  color: #000;
  font-size: 15px;
  line-height: 1.9;
  text-align: center;
}

.manufacturing-table {
  margin-bottom: 50px;
  padding: 15px 12px;
  border: 1px solid #e6b98f;
  background: #faf8f4;
}

.manufacturing-table dl {
  display: grid;
  grid-template-columns: 105px 1fr;
  row-gap: 18px;
  margin: 0;
}

.manufacturing-table dt {
  color: var(--orange);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
}

.manufacturing-table dd {
  margin: 0;
  padding-left: 18px;
  border-left: 1px dashed #e7b8a4;
  color: #000;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 600;
}

.manufacturing-message {
  text-align: center;
}

.manufacturing-message h3 {
  margin: 0 0 18px;
  color: #000;
  font-size: 22px;
  line-height: 1.6;
  font-weight: 700;
}

.manufacturing-message p {
  margin: 0 0 20px;
  color: #000;
  font-size: 14px;
  line-height: 1.9;
  text-align: center;
}

.manufacturing-message ul {
  width: fit-content;
  margin: 0 auto;
  padding-left: 1.2em;
  text-align: left;
}

.manufacturing-message li {
  color: #000;
  font-size: 14px;
  line-height: 1.9;
  font-weight: 600;
}

/* ======================================
EVIDENCE PAGE ADJUST
====================================== */

.evidence-page .page-inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 28px;
}

.evidence-page .page-section {
  padding: 50px 0 56px;
}


/* ======================================
　SP調整用
====================================== */

@media (max-width: 430px) {

 .clinical-data__lead,
  .patent-lead,
  .food-test__lead,
  .ages-test__lead,
  .media-publication__lead,
  .manufacturing__lead {
    font-size: 13px;
  }



  .evidence-page .page-inner {
    padding: 0 20px;
  }

  .evidence-page .page-section {
    padding: 44px 0 50px;
  }


  .evidence-fv__overlay {
    left: 15px;
    top: 10px;
    width: 60%;
  }

  .evidence-fv__overlay h1 {
    font-size: 22px;
  }

  .evidence-fv__overlay h1 span {
    font-size: 28px;
  }

  .evidence-fv__overlay p {
    margin: -13px 0 0;
    font-size: 11px;
    line-height: 1.65;
  }

  .evidence-page .section-heading h2 {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 600;
  }

  .key-number-lead {
    font-size: 14px;
  }
  /* ======================================
    KEY NUMBER SP ADJUST
  ====================================== */

  .key-card-list {
    gap: 12px;
  }

  .key-card {
    min-height: 132px;
    padding: 6px;
  }

  .key-card__head {
    grid-template-columns: 68px 1fr;
    gap: 6px;
  }

  .key-card__head img {
    width: 68px;
    height: 68px;
  }

  .key-card__title h3 {
    font-size: 12px;
    line-height: 1.45;
  }

  .key-card__number {
    font-size: 30px;
    line-height: 1;
    padding-right: 0;
  }

  .key-card__number span {
    font-size: 14px;
  }

  .key-card__text {
    font-size: 10px;
    line-height: 1.5;
  }

  .key-card--clinical .key-card__number {
    margin-top: -18px;
    margin-right: 24px;
    font-size: 42px;
  }

  .key-card--patent .key-card__number {
    padding-left: 60px;
    margin-top: 0px;
    font-size: 10px;
    line-height: 1.45;
  }

  .key-card--patent .key-card__text {
    font-size: 10px;
    line-height: 1.45;
  }

  .key-card--case .key-card__number {
    margin-top: -18px;
    font-size: 30px;
  }

  .key-card--case .key-card__text {
    margin-top: -4px;
    font-size: 10px;
  }

  .key-card--book .key-card__number {
    margin-top: -30px;
    padding-right: 34px;
    font-size: 42px;
  }

  .key-card--book .key-card__text {
    font-size: 10px;
  }

  .key-card--food .key-card__number {
    margin-top: -30px;
    padding-right: 26px;
    font-size: 42px;
  }

  .key-card--food .key-card__text {
    font-size: 10px;
  }

  .key-card--test .key-card__number {
    margin-top: -10px;
    font-size: 28px;
    white-space: nowrap;
  }

  .key-card--test .key-card__text {
    font-size: 10px;
  }

  .key-card--media .key-card__number {
    margin-top: -18px;
    font-size: 28px;
  }

  .key-card--media .key-card__text {
    font-size: 10px;
  }



  .ages-left .ages-title{
    font-size: 12.5px;
    margin-bottom: 0;
  }

  .ages-left .ages-value{
    font-size: 40px;
    margin-top: 35px;
    letter-spacing: -0.03em;
  }

  .ages-value span {
    margin-top: 8px;
    font-size: 12px;
    letter-spacing: 0.1em;
    font-weight: 700;
  }


  .ages-right .ages-title{
    font-size: 14px;
  }

  .ages-right .ages-value{
    margin-top: 35px;
    font-size: 30px;
  }

  .ages-right .ages-sub{
    margin-top: 8px;
    font-size: 10px;
  }

  /* AGEs説明ボックス */
  .evidence-note h3 {
    font-size: 18px;
    line-height: 1.5;
  }

  .evidence-note p {
    font-size: 13px;
    line-height: 1.9;
  }
  
    

  .media-publication-card {
    grid-template-columns: 1fr 32%;
    gap: 4px;
    padding: 10px 16px;
  }

  .media-publication-card img {
    width: 140px;
    display: block;
    margin-left: auto;
  } 

  .media-publication-gallery img {
    width: 90%;
    display: block;
    margin: 0 auto;
  }

  .media-publication-card__label {
    font-size: 16px;
  }

  .media-publication-card__text {
    font-size: 12px;
    line-height: 1.8;
  }  



  .manufacturing-table dt {
    font-size: 14px;
  }

  .manufacturing-table dd {
    font-size: 11.5px;
  }

  .manufacturing-message h3 {
    font-size: 18px;
  }  
}



