@charset "UTF-8";

/* ==== root ========================== */
:root {
  --color-black: #555555;
  --color-white: #fff;
  --color-navy: #485E87;
  --color-bgBlue: #EFF3F5;

  --zen-mincho: "Zen Old Mincho", serif;
  --zen-kaku: "Zen Kaku Gothic New", sans-serif;

  --medium: 500;
  --regular: 400;

  --fs-35: 2.33em;
  --fs-13: 0.866em;
  --fs-12: 0.8em;

  --l-100: 6.66em;
  --l-80: 5.33em;
  --l-75: 5em;
  --l-70: 4.66em;
  --l-60: 4em;
  --l-50: 3.33em;
  --l-40: 2.66em;
  --l-30: 2em;
  --l-25: 1.66em;
  --l-20: 1.33em;
  --l-10: 0.66em;

  --max-wid: 2000px;

  --header: clamp(0.1rem, 5.13vw, 20rem);
  scroll-padding: var(--header);
}

@media screen and (max-width:767px) {
  :root {
    --fs-35: 2.5em;
    --fs-13: 0.928em;
    --fs-12: 0.85em;

    --l-100: 7.12em;
    --l-80: 5.71em;
    --l-75: 5.35em;
    --l-70: 5em;
    --l-60: 4.28em;
    --l-50: 3.57em;
    --l-40: 2.85em;
    --l-30: 2.14em;
    --l-25: 1.78em;
    --l-20: 1.42em;
    --l-10: 0.71em;

    --header: 16.53vw;
    scroll-padding: var(--header);
  }
}

/*================================================
 *  newsArchive
 ================================================*/
#newsArchive .news__list .news__ttl {
  width: 31.64%;
}

#newsArchive .news__list .news__ttl .btnArea {
  position: static;
  margin-top: 2em;
}

@media screen and (max-width:767px) {
  #newsArchive .news__list .news__ttl {
    width: 100%;
  }
}


/*================================================
 * newsDetail
 ================================================*/
#newsDetail {
  padding-top: var(--l-50);
}

#newsDetail .news__img {
  width: 41.2%;
}

#newsDetail .news__img img {
  aspect-ratio: 1/1;
  height: auto;
  overflow: hidden;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

#newsDetail .news__cnt {
  width: 52%;
}

#newsDetail .news__cnt h2.cnt__ttl {
  font-size: 2em;
  line-height: 1.466;
  margin-bottom: 1em;
}

#newsDetail .news__cnt p {
  margin-bottom: 1em;
}

#newsDetail .news__cnt img {
  border-radius: var(--l-10);
  margin: 2.33em 0;
}

@media screen and (max-width:767px) {
  #newsDetail {
    padding-top: var(--l-70);
  }

  #newsDetail .news__img {
    width: 100%;
  }

  #newsDetail .news__img img {
    margin-bottom: 3em;
  }

  #newsDetail .news__cnt {
    width: 100%;
  }

  #newsDetail .news__cnt h2.cnt__ttl {
    font-size: 1.933em;
    margin: 0 0 1em;
  }
}