@charset "UTF-8";
#entry, .entry {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  #entry, .entry {
    gap: 10px;
    margin-bottom: 25px;
  }
}
#entry .tit, .entry .tit {
  width: 100%;
  max-width: 100%;
  font-size: 26px;
  margin-bottom: 20px;
  color: #ae1e24;
  text-align: center;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  #entry .tit, .entry .tit {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
#entry.manner .article:nth-child(n+6), .entry.manner .article:nth-child(n+6) {
  display: none;
}
#entry.meke .article:nth-child(n+6), .entry.meke .article:nth-child(n+6) {
  display: none;
}
#entry.smartphone .article:nth-child(n+6), .entry.smartphone .article:nth-child(n+6) {
  display: none;
}

/*------------------------------------------
コラムナビゲーション設定
------------------------------------------*/
.column_navi {
  width: 100%;
  max-width: 100%;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .column_navi {
    margin-bottom: 25px;
  }
}
.column_navi ul {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  border-radius: 10px;
  overflow: hidden;
}
.column_navi ul li {
  width: 25%;
  border-left: 1px solid #fff;
  box-sizing: border-box;
}
@media screen and (max-width: 820px) {
  .column_navi ul li {
    width: 50%;
    border-bottom: 1px solid #fff;
  }
}
.column_navi ul li a {
  background-color: #fdf8d9;
  font-size: 15px;
  color: #720000;
  padding: 20px 0px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .column_navi ul li a {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    padding: 10px 0px;
    box-sizing: border-box;
    height: 100%;
  }
}
.column_navi ul li a.cur {
  background-color: #ae1e24;
  color: #fff;
}
.column_navi ul li:nth-child(1) {
  border-left: none;
}
@media screen and (max-width: 820px) {
  .column_navi ul li:nth-child(3) {
    border-left: none;
  }
}

/*------------------------------------------
メインコンテンツ設定
------------------------------------------*/
/*記事一覧の大枠*/
#column .article {
  border: 1px solid #e4c375;
  width: calc((100% - 60px) / 4);
  position: relative;
  padding: 20px 20px 15px 20px;
  box-sizing: border-box;
  background-color: #fff;
}
@media screen and (max-width: 820px) {
  #column .article {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 767px) {
  #column .article {
    width: 100%;
    max-width: 100%;
  }
}
#column .article::before {
  position: absolute;
  right: 0px;
  bottom: 0px;
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 20px 20px;
  border-color: transparent transparent #ae1e24 transparent;
}
#column .article.new::after {
  position: absolute;
  left: -5px;
  top: -5px;
  content: "NEW";
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
  color: #fff;
  padding: 10px 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  background-color: #ae1e24;
}

/*記事一覧のタイトル*/
#column .article h2 {
  font-weight: 500;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  #column .article h2 {
    margin-bottom: 5px;
  }
}
#column .article h2 a, #column .article h2 i {
  color: #ae1e24;
  font-size: 16px;
  display: block;
}

#column .article h2 a:hover {
  text-decoration: none;
}

/*記事の画像*/
#column .entry_image {
  width: 100%;
  max-width: 100%;
  margin-bottom: 15px;
  aspect-ratio: 195/135;
}
#column .entry_image img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: 100%;
}

/*記事のテキスト部分*/
#column .inner span {
  display: block;
  width: 100%;
  max-width: 100%;
  color: #333333;
  font-size: 12px;
  box-sizing: border-box;
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid #dedede;
}
@media screen and (max-width: 767px) {
  #column .inner span {
    padding-top: 10px;
    margin-top: 10px;
  }
}

#column .inner p {
  font-size: 13px;
  overflow-y: hidden;
  height: 85px;
  color: #720000;
}
@media screen and (max-width: 767px) {
  #column .inner p {
    height: 5em;
  }
}

/*リード文*/
#column .lead, .column_head {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #column .lead, .column_head {
    margin-bottom: 20px;
  }
}
#column .lead h1, .column_head h1 {
  color: #ae1e24;
  font-size: 24px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  #column .lead h1, .column_head h1 {
    font-size: 18px;
  }
}
#column .lead p, .column_head p {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  #column .lead p, .column_head p {
    font-size: 14px;
  }
}
#column .lead span, .column_head span {
  display: block;
  font-size: 14px;
  color: #a78536;
  position: relative;
  width: 100%;
  max-width: 100%;
  z-index: 2;
}
#column .lead span::before, .column_head span::before {
  position: absolute;
  content: "";
}
#column .lead span::before, .column_head span::before {
  height: 1px;
  background-color: #a78536;
  left: 20%;
  right: 0px;
  bottom: 10px;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  #column .lead span::before, .column_head span::before {
    bottom: -10px;
    left: 0px;
  }
}

.column_head {
  position: relative;
}
.column_head::before {
  position: absolute;
  right: 0px;
  bottom: 10px;
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 20px 20px;
  border-color: transparent transparent #ae1e24 transparent;
}
@media screen and (max-width: 767px) {
  .column_head::before {
    bottom: -10px;
  }
}

/*------------------------------------------
詳細記事ページ設定
------------------------------------------*/
#column #detail:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

#column #detail {
  width: 90%;
  max-width: 900px;
  margin: 0px auto;
}
@media screen and (max-width: 767px) {
  #column #detail {
    width: 100%;
    max-width: 100%;
  }
}

#column #detail .entry_image {
  width: 38.57%;
  float: left;
  padding: 0px 20px 20px 0px;
}

#column #detail h2 {
  font-size: 18px;
  font-weight: bold;
  font-weight: 700;
  color: #ae1e24;
  clear: both;
  padding: 5px 0px 0px 42px;
  background: url("../../column/img/icon_tit.webp") 0px 0px no-repeat;
  background-size: 22px auto;
  min-height: 36px;
  margin-bottom: 15px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  #column #detail h2 {
    font-size: 16px;
    padding: 5px 0px 0px 32px;
  }
}
#column #detail h2 a {
  color: #ae1e24;
  display: inline;
  text-decoration: underline;
}

#column #detail h3 {
  font-size: 15px;
  font-weight: bold;
  color: #333;
  clear: both;
  margin-bottom: 5px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  #column #detail h3 {
    font-size: 14px;
  }
}
#column #detail h3::before {
  content: "●";
  color: #ae1e24;
  margin-right: 5px;
}

#column #detail p {
  font-size: 15px;
  line-height: 1.8;
}
#column #detail p a {
  color: #ae1e24;
  text-decoration: underline;
  display: inline;
}

#column #detail ol, #column #detail ul {
  margin: 15px 0px 15px 32px;
  padding: 0px 0px 0px 0px;
  list-style-type: disc;
}
#column #detail ol li, #column #detail ul li {
  font-size: 15px;
  margin-bottom: 5px;
}

/*------------------------------------------
ページャー設定(詳細ページ)
------------------------------------------*/
#next_prev {
  margin-top: 70px;
  padding-top: 20px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border-top: 2px solid #ebd064;
}
#next_prev .clearfix:after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}
#next_prev .clearfix {
  display: inline-block;
}
#next_prev * html.clearfix {
  height: 1%;
}
#next_prev .clearfix {
  display: block;
}
#next_prev .clearfix_none:after {
  display: none;
}
@media screen and (max-width: 767px) {
  #next_prev {
    margin-top: 50px;
    padding-top: 10px;
    border-top: 1px solid #ebd064;
  }
}
#next_prev .prev_link, #next_prev .next_link {
  width: 48%;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  #next_prev .prev_link, #next_prev .next_link {
    margin-bottom: 30px;
  }
}
#next_prev .prev_link span, #next_prev .next_link span {
  border-bottom: 1px solid #ebd064;
  display: block;
  position: relative;
  height: 50px;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  #next_prev .prev_link span, #next_prev .next_link span {
    height: 30px;
  }
}
#next_prev .prev_link span::before, #next_prev .next_link span::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  top: 0px;
  background-color: #ae1e24;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #next_prev .prev_link span::before, #next_prev .next_link span::before {
    width: 30px;
    height: 30px;
  }
}
#next_prev .prev_link span::after, #next_prev .next_link span::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  top: 18px;
}
@media screen and (max-width: 767px) {
  #next_prev .prev_link span::after, #next_prev .next_link span::after {
    width: 8px;
    height: 8px;
    top: 11px;
  }
}
#next_prev .prev_link span a, #next_prev .next_link span a {
  font-size: 15px;
  display: block;
  color: #ae1e24;
  font-weight: bold;
  font-weight: 700;
  line-height: 50px;
}
@media screen and (max-width: 767px) {
  #next_prev .prev_link span a, #next_prev .next_link span a {
    line-height: 30px;
    font-size: 13px;
  }
}
#next_prev .prev_link dl, #next_prev .next_link dl {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0px 20px;
}
@media screen and (max-width: 767px) {
  #next_prev .prev_link dl, #next_prev .next_link dl {
    padding: 0px;
  }
}
#next_prev .prev_link dl dt, #next_prev .next_link dl dt {
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  #next_prev .prev_link dl dt, #next_prev .next_link dl dt {
    margin-bottom: 0px;
  }
}
#next_prev .prev_link dl dt a, #next_prev .next_link dl dt a {
  display: block;
  font-size: 16px;
  color: #d2a63b;
  font-weight: bold;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #next_prev .prev_link dl dt a, #next_prev .next_link dl dt a {
    font-size: 13px;
  }
}
#next_prev .prev_link dl dd, #next_prev .next_link dl dd {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  #next_prev .prev_link dl dd, #next_prev .next_link dl dd {
    display: none;
  }
}
#next_prev .prev_link dl dd::after, #next_prev .next_link dl dd::after {
  content: "......";
}
#next_prev .prev_link {
  float: left;
}
#next_prev .prev_link span a {
  padding-left: 70px;
}
@media screen and (max-width: 767px) {
  #next_prev .prev_link span a {
    padding-left: 50px;
  }
}
#next_prev .prev_link span::before {
  left: 0px;
}
#next_prev .prev_link span::after {
  transform: rotate(-45deg);
  left: 22px;
  border: 2px solid #fff;
  border-bottom: none;
  border-right: none;
}
@media screen and (max-width: 767px) {
  #next_prev .prev_link span::after {
    left: 12px;
    border-width: 1px;
  }
}
#next_prev .next_link {
  float: right;
}
#next_prev .next_link span a {
  padding-right: 70px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  #next_prev .next_link span a {
    padding-right: 50px;
  }
}
#next_prev .next_link span::before {
  right: 0px;
}
#next_prev .next_link span::after {
  right: 22px;
  transform: rotate(-45deg);
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
}
@media screen and (max-width: 767px) {
  #next_prev .next_link span::after {
    right: 12px;
    border-width: 1px;
  }
}