@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-bg);
}

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-bg);
}

* {
  box-sizing: border-box;
}

@media screen and (max-width:767px) {
  html {
    font-size: 2.5641025vw;
  }
}


/*================================================
 *  info list
 ================================================*/

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

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

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


#info__list ul 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;
}

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

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

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

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





.pager {
  text-align: center;
  padding: 10px;
  clear: both;
  margin-top: 2.5em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pager a {
  font-size: 1.4rem;
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1000px;
  text-decoration: none;
  margin-left: 1em;
}

.pager a:first-of-type {
  margin: 0;
}

.pager a.current {
  background: var(--color-primary);
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
  padding: 0 0.9em;
}

.overPagerPattern {
  padding: 0 2px;
}

#info__list .pNav {
  margin-bottom: 50px;
  font-size: 13px !important;
}


#info__list .pNav a {
  border-bottom: 1px solid var(--color-white);
  font-size: 13px !important;
}

#info__list .pNav span {
  display: inline-block;
  margin: 0 1em;
}


.btnArea a {
  margin: 4rem auto 0;
}

.btnArea a::before {
  right: auto;
  left: 2.6rem;
  transform: translateY(-50%) rotate(180deg);
}

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

  #info__list ul li {
    padding-bottom: 3rem;
    padding-top: 2rem;

  }

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

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

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

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

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