@charset "UTF-8";

/* ==== root ========================== */
:root {
  --color-black: #6F6F6F;
  --color-white: #fff;
  --color-primary: #F29600;
  --color-bg: #FFF7E7;

  --zen-maru: "Zen Maru Gothic", serif;


  --header: 15rem;
  scroll-padding: var(--header);
}

@media screen and (max-width:767px) {
  :root {
    --header: 10rem;
    scroll-padding: var(--header);
  }
}

html {
  font-size: clamp(7px, 0.661375661vw, 10px);
  box-sizing: border-box;
  background: var(--color-white) !important;
}

body {
  font-size: 1.6rem;
  font-family: var(--zen-maru);
  color: var(--color-black);
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.6;
  scroll-behavior: smooth;
  background: var(--color-white);
}

* {
  box-sizing: border-box;
}

@media screen and (max-width:1000px) {
  html {
    /* font-size: 10px; */
    font-size: clamp(7px, 1.043vw, 18px);
    background: var(--color-white) !important;
  }
}

@media screen and (max-width: 668px) {
  html {
    /* font-size: 10px; */
    font-size: clamp(7px, 2.56vw, 13px);
    background: var(--color-white) !important;
  }
}

/*================================================
 *  top-umekomi
 ================================================*/


@media screen and (max-width:1000px) {


  ul#infoList li {
    padding-bottom: 6rem;
  }

  ul#infoList li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }



  ul#infoList li a .meta {
    width: 100%;
    margin-bottom: 1rem;
  }


  ul#infoList li a span.up_ymd {}

  ul#infoList li a span.catName {
    font-size: 1em;
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0 1.3rem;
    border-radius: 0.7rem;
    margin-left: 3rem;
  }

  ul#infoList li a .thumbNailWrap {
    width: 200px;
    aspect-ratio: 200/141;
    overflow: hidden;
    border-radius: 1.6rem;
  }

  ul#infoList li a .thumbNailWrap img {
    overflow: hidden;
    object-fit: cover;
    height: 100%;
  }

  ul#infoList li a .title {
    width: calc(100% - 220px);
    font-size: 1.6rem;
    font-weight: 400;
  }

  ul#infoList li a .title h3 {
    font-size: 1.65em;
    font-weight: 600;
    margin-bottom: 1rem;
  }

}

@media screen and (max-width:668px) {

  ul#infoList li {
    padding-bottom: 3rem;
    padding-top: 2rem;
    border-bottom: 2px dotted rgb(242 150 0 / 30%);
  }

  ul#infoList li:last-child {
    border-bottom: none;
  }

  ul#infoList li a .thumbNailWrap {
    width: 100%;
    aspect-ratio: 200/141;
    overflow: hidden;
  }

  ul#infoList li a .title {
    width: 100%;
    font-size: 1.6rem;
    margin-top: 1rem;
  }

  ul#infoList li a .title h3 {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 1rem;
  }

  ul#infoList li a span.catName {
    margin-left: 1rem;
  }
}