@charset "utf-8";

/* ++++++++++++++++++++++++++++++++++++++
   File: news.css
   Update: 2026-02-26
   (c)kobako design
++++++++++++++++++++++++++++++++++++++ */



/* ////////////////////////////////////////////////////////////////////////

   PC

//////////////////////////////////////////////////////////////////////// */

/* ====================================================
		Common
==================================================== */
/* -------------------------------
		Page Title
------------------------------- */
#contents h1 {
  margin-bottom: 70px;
}


/* ====================================================
		Archive Button
==================================================== */
/* -------------------------------
		Layout
------------------------------- */
#archiveSelect {
  width: 200px;
  position: relative;
  margin: 0 0 0 auto;
}

/* -------------------------------
		Select Button
------------------------------- */
#archiveSelect select {
  width: 100%;
  color: #262423;
  font-size: 1.5rem;
  letter-spacing: .05em;
  padding: 15px 40px 15px 25px;
  border: 1px solid #dfdede;
  border-radius: 0;
  background: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

/* Arrow */
#archiveSelect::after {
  content: '';
  width: 6px;
  height: 6px;
  border-right: 1px solid #de3e21;
  border-bottom: 1px solid #de3e21;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}


/* ====================================================
		News List
==================================================== */
/* -------------------------------
		Layout
------------------------------- */
#newsList {
}
#newsList li {
  border-bottom: 1px solid #dfdede;
}

/* -------------------------------
		Link
------------------------------- */
#newsList a {
  width: calc(100% - 60px);
  padding: 20px 60px 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/* Arrow Button */
#newsList a::before,
#newsList a::after {
  content: '';
  position: absolute;
  top: 50%;
  display: block;
  transition: .3s;
}
#newsList a::before {
  width: 30px;
  height: 30px;
  border: 1px solid #de3e21;
  border-radius: 20px;
  transform: translateY(-50%);
  right: 0;
}
#newsList a::after {
  width: 5px;
  height: 5px;
  border-right: 1px solid #de3e21;
  border-bottom: 1px solid #de3e21;
  right: 12px;
  transform: translate(-50%,-50%) rotate(-45deg);
}

/* Hover */
#newsList a:hover,
#newsList a:hover::before,
#newsList a:hover::after {
  opacity: 1;
}
#newsList a:hover::before {
  border: 1px solid #fdd000;
  background: #fdd000;
}
#newsList a:hover::after {
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

/* -------------------------------
		Thumbnail
------------------------------- */
#newsList .thumbnail {
  width: 160px;
  height: 110px;
  overflow: hidden;
  transition: .3s;
}
#newsList .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Hover */
#newsList a:hover .thumbnail {
  opacity: .6;
}

/* -------------------------------
		Text
------------------------------- */
#newsList .textBox {
  width: calc(100% - 200px);
  transition: .3s;
}

/* Date */
#newsList .textBox time {
  font-size: 1.4rem;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  letter-spacing: .05em;
  display: block;
  padding-bottom: 5px;
}

/* Title */
#newsList .textBox .title {
  font-size: 1.6rem;
}


/* ====================================================
		Page Navigation
==================================================== */
/* -------------------------------
		Layout
------------------------------- */
#pageNavigation {
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  text-align: center;
  letter-spacing: .05em;
  padding-top: 120px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/* -------------------------------
		Click None
------------------------------- */
#pageNavigation .clickNone a {
  pointer-events: none;
  opacity: .2;
}

/* -------------------------------
		Navigation
------------------------------- */
#pageNavigation .pagenavi {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
#pageNavigation .pagenavi .link {
  width: 40px;
  height: 40px;
  color: #de3e21;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
}
#pageNavigation .pagenavi .link:hover {
  background: #fdd000;
  opacity: 1;
}

/* Current */
#pageNavigation .pagenavi .current {
  color: #fff;
  background: #de3e21;
}
#pageNavigation .pagenavi .current:hover {
  background: #de3e21;
}

/* -------------------------------
		Middle
------------------------------- */
#pageNavigation .pagenavi .extend {
  color: #de3e21;
  margin: 0 20px;
  opacity: .4;
}

/* -------------------------------
		Prev & Next
------------------------------- */
#pageNavigation .prev,
#pageNavigation .next {
  width: 40px;
}
#pageNavigation .prev a,
#pageNavigation .next a {
  text-indent:-9999px;
  width: 40px;
  height: 40px;
  border: 1px solid #de3e21;
  border-radius: 20px;
  display: block;
  position: relative;
}
#pageNavigation .prev a::after,
#pageNavigation .next a::after {
  content: '';
  width: 5px;
  height: 5px;
  border-right: 1px solid #de3e21;
  border-bottom: 1px solid #de3e21;
  position: absolute;
  top: 50%;
}

/* Prev */
#pageNavigation .prev {
  margin-right: 30px;
}
#pageNavigation .prev a::after {
  transform: translate(-50%,-50%) rotate(135deg);
  left: 55%;
}

/* Next */
#pageNavigation .next {
  margin-left: 30px;
}
#pageNavigation .next a::after {
  transform: translate(-50%,-50%) rotate(-45deg);
  left: 45%;
}

/* Hover */
#pageNavigation .prev a:hover,
#pageNavigation .next a:hover {
  border: 1px solid #fdd000;
  background: #fdd000;
  opacity: 1;
}
#pageNavigation .prev a:hover::after,
#pageNavigation .next a:hover::after {
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}


/* ====================================================
		Detail Page
==================================================== */
/* -------------------------------
		Layout
------------------------------- */
#news-detail {
  
}

/* -------------------------------
		Title
------------------------------- */
#news-detail .sub {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 4% 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/* Date */
#news-detail .sub time {
  color: #de3e21;
  font-size: 2rem;
  font-family: "Outfit", sans-serif;
  letter-spacing: .05em;
  padding-right: 20px;
  position: relative;
}
#news-detail .sub time::after {
  content: '';
  width: 1px;
  height: 100%;
  max-height: 24px;
  background: #dfdede;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: block;
}

/* News release */
#news-detail .sub span {
  font-size: 1.4rem;
  padding-left: 20px;
}

/* Title */
#news-detail h1 {
  font-size: 3.4rem;
  font-weight: 400;
  margin: 20px auto 120px;
}

/* -------------------------------
		Entry
------------------------------- */
#news-detail #newsEntry {
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 180px;
}

/* P */
#news-detail #newsEntry p {
  margin-bottom: 2em;
}

/* Midashi */
#news-detail #newsEntry h2 {
  font-size: 2.2rem;
  font-weight: 500;
  padding-bottom: .8em;
}

/* Link */
#news-detail #newsEntry a {
  color: #de3e21;
  position: relative;
}
#news-detail #newsEntry a::before {
  content: '';
  width: 100%;
  height: 1px;
  background: #de3e21;
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  transition: .3s;
}
#news-detail #newsEntry a:hover::before {
  opacity: 0;
}

/* Column 2 */
#news-detail #newsEntry .photo.column2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#news-detail #newsEntry .photo.column2 img {
  width: 48%;
}

/* Photo */
#news-detail #newsEntry .photo {
  margin: 1em 0;
}

/* -------------------------------
		Page Navigation
------------------------------- */
#news-detail #pageNavigation {
  border-top: 1px solid #dfdede;
  justify-content: space-between;
}

/* Prev & Next */
#news-detail #pageNavigation .prev,
#news-detail #pageNavigation .next {
  width: 30px;
}
#news-detail #pageNavigation .prev a,
#news-detail #pageNavigation .next a {
  width: 30px;
  height: 30px;
}

/* Back to Top */
#news-detail #pageNavigation .backTop {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4rem;
}
#news-detail #pageNavigation .backTop a {
  border: 1px solid #262423;
  border-radius: 100px;
  padding: 20px 80px;
  transition: .3s;
}
#news-detail #pageNavigation .backTop a:hover {
  background: #fdd000;
  opacity: 1;
}


/* ====================================================
		Footer
==================================================== */
#gFooter {
  padding-top: 120px;
}


/* ////////////////////////////////////////////////////////////////////////

   TABLET

//////////////////////////////////////////////////////////////////////// */
@media screen and (min-width: 897px) and (max-width: 1299px) {
}



/* ////////////////////////////////////////////////////////////////////////

   SMART PHONE

//////////////////////////////////////////////////////////////////////// */
@media screen and (max-width: 896px) {
  /* ====================================================
      Common
  ==================================================== */
  /* -------------------------------
      Page Title
  ------------------------------- */
  #contents h1 {
    margin-bottom: 40px;
  }
  
  
  /* ====================================================
      Archive Button
  ==================================================== */
  /* -------------------------------
      Layout
  ------------------------------- */
  #archiveSelect {
    width: 100%;
    margin: 0 0 20px;
  }
  
  /* -------------------------------
      Select Button
  ------------------------------- */
  #archiveSelect select {
    font-size: 1.2rem;
    padding: 10px 30px 10px 15px;
  }

  /* Arrow */
  #archiveSelect::after {
    width: 4px;
    height: 4px;
    right: 15px;
  }
  
  
  /* ====================================================
      News List
  ==================================================== */
  /* -------------------------------
      Link
  ------------------------------- */
  #newsList a {
    width: calc(100% - 40px);
    padding: 15px 35px 15px 0;
  }
  
  /* Arrow Button */
  #newsList a::before {
    width: 20px;
    height: 20px;
  }
  #newsList a::after {
    width: 3px;
    height: 3px;
    right: 8px;
  }
  
  /* -------------------------------
      Thumbnail
  ------------------------------- */
  #newsList .thumbnail {
    width: 90px;
    height: 80px;
  }
  
  /* -------------------------------
      Text
  ------------------------------- */
  #newsList .textBox {
    width: calc(100% - 100px);
  }
  
  /* Date */
  #newsList .textBox time {
    font-size: 1.1rem;
    padding-bottom: 0;
  }
  
  /* Title */
  #newsList .textBox .title {
    font-size: 1.3rem;
    letter-spacing: 0;
    line-height: 1.6;
  }
  
  /* Hover */
  #newsList a:hover .textBox {
    color: #262423;
  }
  
  
  /* ====================================================
      Page Navigation
  ==================================================== */
  /* -------------------------------
      Layout
  ------------------------------- */
  #pageNavigation {
    font-size: 1.2rem;
    padding-top: 50px;
  }
  
  /* -------------------------------
      Navigation
  ------------------------------- */
  #pageNavigation .pagenavi .link {
    width: 30px;
    height: 30px;
    margin: 0 2px;
  }
  
  /* -------------------------------
      Middle
  ------------------------------- */
  #pageNavigation .pagenavi .extend {
    margin: 0 6px;
  }
  
  /* -------------------------------
      Prev & Next
  ------------------------------- */
  #pageNavigation .prev,
  #pageNavigation .next {
    width: 20px;
  }
  #pageNavigation .prev a,
  #pageNavigation .next a {
    width: 20px;
    height: 20px;
  }
  #pageNavigation .prev a::after,
  #pageNavigation .next a::after {
    width: 3px;
    height: 3px;
  }
  
  /* Prev */
  #pageNavigation .prev {
    margin-right: 10px;
  }
  
  /* Next */
  #pageNavigation .next {
    margin-left: 10px;
  }
  
  
  /* ====================================================
      Detail Page
  ==================================================== */
  /* -------------------------------
      Title
  ------------------------------- */
  #news-detail .sub {
    padding: 20px 4% 0;
  }
  
  /* Date */
  #news-detail .sub time {
    font-size: 1.2rem;
    padding-right: 10px;
  }
  #news-detail .sub time::after {
    max-height: 12px;
  }
  
  /* News release */
  #news-detail .sub span {
    font-size: 1rem;
    padding-left: 10px;
  }
  
  /* Title */
  #news-detail h1 {
    font-size: 1.6rem;
    letter-spacing: 0;
    margin: 5px auto 40px;
  }
  
  /* -------------------------------
      Entry
  ------------------------------- */
  #news-detail #newsEntry {
    padding-bottom: 60px;
  }
  
  /* P */
  #news-detail #newsEntry p {
    margin-bottom: 1.5em;
  }
  
  /* Midashi */
  #news-detail #newsEntry h2 {
    font-size: 1.5rem;
    padding-bottom: .5em;
  }
  
  /* -------------------------------
      Page Navigation
  ------------------------------- */
  /* Prev & Next */
  #news-detail #pageNavigation .prev,
  #news-detail #pageNavigation .next {
    width: 20px;
  }
  #news-detail #pageNavigation .prev a,
  #news-detail #pageNavigation .next a {
    width: 20px;
    height: 20px;
  }
  
  /* Back to Top */
  #news-detail #pageNavigation .backTop {
    font-size: 1.1rem;
  }
  #news-detail #pageNavigation .backTop a {
    padding: 8px 20px;
  }
  #news-detail #pageNavigation .backTop a:hover {
    color: #262423;
    background: none;
  }
  
  
  /* ====================================================
      Footer
  ==================================================== */
  #gFooter {
    padding-top: 50px;
  }
  
  
  
  
  
  
  
  
  

}