@charset "UTF-8";
/* =======================================================

base

======================================================= */
* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5% !important;
  min-height: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #000;
  line-height: 2em;
  font-weight: normal;
  font-style: normal;
}
@media (max-width: 431px) {
  body {
    line-height: 1.7;
  }
}
@media (max-width: 375px) {
  body {
    font-size: 1.4rem;
  }
}
body.active {
  height: 100%;
  overflow: hidden;
}

li {
  list-style: none;
}

a {
  cursor: pointer;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
  line-height: 1em;
}

/* =======================================================

parts

======================================================= */
.main {
  padding-top: 85px;
}
@media (max-width: 769px) {
  .main {
    padding-top: 60px;
  }
}

.noto {
  font-family: "Noto Sans JP", sans-serif;
}

.eng {
  font-family: "Audiowide", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #2E60C6;
}

.serif {
  font-family: "Zen Old Mincho", serif;
}

.primary {
  color: #2E60C6;
}

.slug {
  text-transform: capitalize;
}

@media (max-width: 431px) {
  br.pc-sp {
    display: none;
  }
}

br.pc-tab {
  display: inline-block;
}
@media (max-width: 769px) {
  br.pc-tab {
    display: none;
  }
}

br.tab {
  display: none;
}
@media (max-width: 769px) {
  br.tab {
    display: inline-block;
  }
}

br.sp {
  display: none;
}
@media (max-width: 431px) {
  br.sp {
    display: inline-block;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.subnav {
  width: calc(100% - 70px);
  max-width: 950px;
  margin: -55px auto 0;
  position: relative;
}
.subnav::before, .subnav::after {
  position: absolute;
  content: "";
  height: 90px;
  width: 100%;
  background: radial-gradient(closest-side at 50% 50%, #030E3E, rgba(3, 14, 62, 0) 100%);
  opacity: 0.2;
  left: 0;
  top: -40px;
}
@media (max-width: 769px) {
  .subnav::before, .subnav::after {
    content: none;
  }
}
.subnav::after {
  top: unset;
  bottom: -40px;
}
@media (max-width: 769px) {
  .subnav {
    padding: 10px;
    background: #fff;
    box-shadow: 3px 3px 5px rgba(3, 14, 62, 0.15);
    margin: -35px auto 0;
  }
}

.subnav__btn {
  display: none;
  position: relative;
  z-index: 2;
  cursor: pointer;
  padding: 10px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  background: #2E60C6;
}
.subnav__btn::before, .subnav__btn::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 2px;
  background-color: #fff;
  top: 48%;
  right: 15px;
  border-radius: 2px;
}
.subnav__btn::after {
  transform: rotate(90deg);
  transition: all 0.3s;
}
.subnav__btn.active::after {
  transform: rotate(0);
}
@media (max-width: 769px) {
  .subnav__btn {
    display: block;
  }
}

.subnav__list {
  background: #fff;
  padding: 20px;
  width: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 769px) {
  .subnav__list {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    box-shadow: 3px 3px 5px rgba(3, 14, 62, 0.15);
    padding: 0 10px 10px;
  }
}
@media (min-width: 769px) {
  .subnav__list {
    display: flex !important;
  }
}

.subnav__list li {
  padding: 20px 27px;
  position: relative;
}
.subnav__list li::after {
  position: absolute;
  content: "";
  background: #DEE0E6;
  height: 50px;
  width: 1px;
  left: 0;
  top: 7px;
  transform: rotate(20deg);
}
@media (max-width: 769px) {
  .subnav__list li::after {
    content: none;
  }
}
.subnav__list li:first-child::after {
  content: none;
}
@media (max-width: 769px) {
  .subnav__list li {
    border-bottom: #DEE0E6 1px solid;
    padding: 0;
  }
  .subnav__list li:last-child {
    border-bottom: 0;
  }
}

.subnav__list li a {
  transition: all 0.3s;
}
.subnav__list li a:hover {
  color: #4c8dcb;
}
.subnav__list li a.active {
  font-weight: bold;
  color: #2E60C6;
}
@media (max-width: 769px) {
  .subnav__list li a {
    width: 100%;
    display: inline-block;
    text-align: center;
    padding: 0.5em;
  }
}

.subnav__list li.current-menu-item a {
  font-weight: bold;
  color: #2E60C6;
}

/* ---------------------------------------------

toppage

---------------------------------------------- */
#top_reco {
  background: #fff url(../img/secbg_leftbottom_togray.png) no-repeat left bottom;
  background-size: 80px 80px;
  padding: 50px 0;
}
#top_reco h2 {
  font-weight: bold;
  display: flex;
  width: 100%;
  justify-content: space-around;
  align-items: center;
  font-size: 20px;
  color: #1A1311;
  gap: 15px;
}
#top_reco h2 p {
  display: inline-block;
}
@media (max-width: 431px) {
  #top_reco h2 p {
    font-size: 4vw;
  }
}
#top_reco h2 p .eng {
  font-size: 15px;
  margin-left: 10px;
}
@media (max-width: 431px) {
  #top_reco h2 p .eng {
    font-size: 2.5vw;
    margin-left: 5px;
  }
}
#top_reco h2 hr {
  border-top: 1px solid #949494;
  border-bottom: none;
  border-left: none;
  border-right: none;
  width: auto;
  flex-grow: 1;
}
#top_reco h3 {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
  font-size: 20px;
  font-weight: bold;
  color: #1A1311;
  gap: 10px;
}
#top_reco h3 .eng {
  font-size: 15px;
}
@media (max-width: 431px) {
  #top_reco h3 {
    font-size: 4vw;
  }
  #top_reco h3 .eng {
    font-size: 2.5vw;
    margin-left: 5px;
  }
}
@media (max-width: 769px) {
  #top_reco {
    background: #fff url(../img/secbg_leftbottom_togray.png) no-repeat left bottom;
    background-size: 40px 40px;
    padding: 30px 0;
  }
}

ul.post3_loop {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 20px;
  width: 100%;
}
ul.post3_loop li {
  width: calc(33.3333333333% - 20px);
}
ul.post3_loop li .thum {
  position: relative;
  z-index: 0;
  background-color: #fff;
  opacity: 1;
}
ul.post3_loop li .thum img {
  border: 1px solid #B4B4B4;
  width: 100%;
  transition: 0.3s;
}
ul.post3_loop li .thum .pickup {
  position: absolute;
  left: 0;
  top: 0;
  width: 30%;
  height: auto;
  z-index: 1;
  border: none;
  opacity: 1;
}
ul.post3_loop li .category-name {
  position: relative;
  display: block;
  text-align: center;
  z-index: 1;
  margin: -20px auto 10px;
  color: #fff;
}
ul.post3_loop li .category-name span {
  color: #fff;
  display: inline-flex;
  background-color: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
  font-size: 12px;
  padding: 0 8px;
}
ul.post3_loop li .category-name span::before {
  font-family: FontAwesome;
  content: "\f07c";
  font-size: 10px;
  margin-right: 5px;
}
ul.post3_loop li .title {
  font-size: 16px;
  font-weight: bold;
}
ul.post3_loop li .post3_date {
  font-size: 15px;
  color: #949494;
}
ul.post3_loop li ul.post3_tag li {
  display: inline-block;
  font-size: 12px;
  color: #2E60C6;
  border: 1px solid #2E60C6;
  background: #fff;
  text-align: center;
  border-radius: 30px;
  padding: 0px 10px;
  margin-right: 5px;
  width: auto;
  transition: 0.3s;
  line-height: 2em;
}
ul.post3_loop li ul.post3_tag li:last-of-type {
  margin-right: 0;
}
ul.post3_loop li ul.post3_tag li a {
  display: block;
}
ul.post3_loop li ul.post3_tag li:hover {
  background: #2E60C6;
  color: #fff;
}
ul.post3_loop li:hover .thum > img {
  opacity: 0.7;
}
ul.post3_loop li:hover .thum > img.pickup {
  opacity: 1;
}
@media (max-width: 769px) {
  ul.post3_loop li {
    width: calc(50% - 10px);
  }
}
@media (max-width: 431px) {
  ul.post3_loop li {
    width: 100%;
    margin-bottom: 30px;
  }
  ul.post3_loop li:last-of-type {
    margin-bottom: 0;
  }
}
@media (max-width: 769px) {
  ul.post3_loop {
    gap: 20px;
  }
}
@media (max-width: 431px) {
  ul.post3_loop {
    gap: 0;
  }
}

.mt30 {
  margin-top: 30px;
}

.more_btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.more_btn a {
  font-size: 22px;
  color: #1A1311;
  display: inline-block;
  margin: 30px auto 50px;
  border: 1px solid #1A1311;
  border-radius: 50px;
  padding: 3px 20px 5px;
  background: #fff;
  transition: 0.3s;
}
.more_btn a:hover {
  background: #1A1311;
  color: #fff;
}

#top_ranking {
  background-color: #EDEDF0;
  background-image: url(../img/secbg_righttop_towhite.png), url(../img/secbg_leftbottom_towhite.png);
  background-position: right top, left bottom;
  background-size: 80px 80px, 80px 80px;
  background-repeat: no-repeat, no-repeat;
  padding: 50px 0;
  margin-top: -1px;
}
#top_ranking h2 {
  font-weight: bold;
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  font-size: 20px;
  color: #1A1311;
  gap: 15px;
}
#top_ranking h2 .eng {
  font-size: 15px;
  margin-left: 10px;
}
@media (max-width: 431px) {
  #top_ranking h2 {
    font-size: 4vw;
  }
  #top_ranking h2 .eng {
    font-size: 2.5vw;
    margin-left: 5px;
  }
}
#top_ranking .wpp-shortcode {
  width: 100%;
}
#top_ranking .wpp-shortcode ul.ranking_box {
  display: flex;
  width: 100%;
  flex-direction: column;
}
#top_ranking .wpp-shortcode ul.ranking_box li {
  background: #fff;
  display: flex;
  gap: 20px;
  width: 100%;
  padding: 30px 35px;
  box-sizing: border-box;
  margin-bottom: 20px;
}
#top_ranking .wpp-shortcode ul.ranking_box li:last-of-type {
  margin-bottom: 0;
}
#top_ranking .wpp-shortcode ul.ranking_box li .rank {
  width: 5%;
  min-width: 53px;
  display: flex;
  align-items: center;
  color: #707070;
  font-weight: bold;
}
#top_ranking .wpp-shortcode ul.ranking_box li .rank > span {
  font-size: 20px;
  color: #975DE6;
  font-weight: bold;
}
@media (max-width: 769px) {
  #top_ranking .wpp-shortcode ul.ranking_box li .rank {
    width: 100%;
    min-width: initial;
    justify-content: center;
  }
}
#top_ranking .wpp-shortcode ul.ranking_box li a {
  display: block;
  width: 100%;
  height: 100%;
}
#top_ranking .wpp-shortcode ul.ranking_box li .popular_entrytitle {
  display: flex;
  flex-direction: column;
  flex: 1;
}
#top_ranking .wpp-shortcode ul.ranking_box li .popular_entrytitle .category-name {
  position: relative;
  margin: 0 0 10px;
}
#top_ranking .wpp-shortcode ul.ranking_box li .popular_entrytitle .category-name span.cate {
  color: #fff;
  display: inline-flex;
  background-color: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
  font-size: 12px;
  padding: 0 8px;
}
#top_ranking .wpp-shortcode ul.ranking_box li .popular_entrytitle .category-name span.cate::before {
  font-family: FontAwesome;
  content: "\f07c";
  font-size: 10px;
  margin-right: 5px;
}
#top_ranking .wpp-shortcode ul.ranking_box li .popular_entrytitle span.date {
  color: #949494;
  font-size: 15px;
  margin-left: 10px;
}
#top_ranking .wpp-shortcode ul.ranking_box li .popular_entrytitle a.wpp-post-title {
  font-weight: bold;
  font-size: 16px;
  color: #1A1311;
}
#top_ranking .wpp-shortcode ul.ranking_box li .popular_thumbnail {
  width: 25%;
  position: relative;
}
#top_ranking .wpp-shortcode ul.ranking_box li .popular_thumbnail img {
  width: 100%;
  height: auto;
  border: 1px solid #B4B4B4;
  transition: 0.3s;
}
#top_ranking .wpp-shortcode ul.ranking_box li .popular_thumbnail img:hover {
  opacity: 0.7;
}
@media (max-width: 769px) {
  #top_ranking .wpp-shortcode ul.ranking_box li .popular_thumbnail {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 431px) {
  #top_ranking .wpp-shortcode ul.ranking_box li .popular_thumbnail {
    width: 100%;
  }
}
@media (max-width: 769px) {
  #top_ranking .wpp-shortcode ul.ranking_box li {
    flex-direction: column;
  }
}
@media (max-width: 769px) {
  #top_ranking {
    background-image: url(../img/secbg_righttop_towhite.png), url(../img/secbg_leftbottom_towhite.png);
    background-position: right top, left bottom;
    background-size: 40px 40px, 40px 40px;
    background-repeat: no-repeat, no-repeat;
    padding: 30px 0;
  }
}

/*タブ切り替え全体のスタイル*/
.tabs {
  margin: 50px auto;
  display: block;
  width: 100%;
  /*タブのスタイル*/
  /*ラジオボタンを全て消す*/
  /*選択されているタブのコンテンツのみを表示*/
}
.tabs .tab_item {
  width: calc(50% - 5px);
  font-size: 15px;
  text-align: center;
  color: #949494;
  border-bottom: 4px solid #CDCDCD;
  display: inline-block;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
  margin: 0 auto;
  padding: 10px;
  box-sizing: border-box;
}
.tabs .tab_item:hover {
  border-bottom: 4px solid #2E60C6;
}
.tabs input[name=tab_item] {
  display: none;
}
.tabs input:checked + .tab_item {
  color: #1A1311;
  border-bottom: 4px solid #2E60C6;
}
.tabs .tab_content {
  display: none;
  transition: 0.3s;
  padding: 20px 0 0;
  clear: both;
  overflow: hidden;
  width: 100%;
  animation: fadeIn 0.3s ease;
}
.tabs .tab_content .tab_content_box {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 30px;
  align-items: flex-start;
}
.tabs .tab_content .tab_content_box .sgds-item_box {
  width: calc(25% - 24px);
  box-sizing: border-box;
  display: block;
}
@media (max-width: 769px) {
  .tabs .tab_content .tab_content_box .sgds-item_box {
    width: calc(50% - 15px);
  }
}
.tabs .tab_content .tab_content_box .sgds-item_box figure {
  position: relative;
  border-radius: 10px;
  display: flex;
}
.tabs .tab_content .tab_content_box .sgds-item_box figure img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.tabs .tab_content .tab_content_box .sgds-item_box figure figcaption {
  opacity: 0;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 7%;
  border-radius: 15px;
  background: rgba(23, 42, 136, 0.4);
  z-index: 1;
}
.tabs .tab_content .tab_content_box .sgds-item_box figure figcaption span {
  margin-top: -10px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  transition: 0.3s;
  line-height: 1.4em;
}
.tabs .tab_content .tab_content_box .sgds-item_box .itemname {
  display: block;
  padding-top: 5px;
  text-align: center;
  font-weight: bold;
  font-size: 15px;
}
.tabs .tab_content .tab_content_box .sgds-item_box:hover .itemname {
  text-decoration: underline;
}
.tabs .tab_content .tab_content_box .sgds-item_box:hover figcaption {
  opacity: 1;
}
.tabs .tab_content .tab_content_box .sgds-item_box:hover figcaption span {
  margin-top: 0;
}
.tabs #weekly:checked ~ #weekly_content,
.tabs #monthly:checked ~ #monthly_content {
  display: block;
  animation: fadeIn 0.5s;
}

@keyframes fadeIn {
  from, 30% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#top_category-list {
  background: #fff url(../img/secbg_righttop_togray.png) no-repeat right top;
  background-size: 80px 80px;
  padding: 50px 0 0;
  margin-top: -1px;
}
#top_category-list h2 {
  font-weight: bold;
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  font-size: 20px;
  color: #1A1311;
  gap: 15px;
  margin-bottom: 20px;
}
#top_category-list h2 .eng {
  font-size: 15px;
  margin-left: 10px;
}
#top_category-list ul.category-name {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
#top_category-list ul.category-name li {
  position: relative;
  margin: 0 10px 10px 0;
}
#top_category-list ul.category-name li a {
  display: inline-block;
  transition: 0.3s;
}
#top_category-list ul.category-name li a span {
  color: #fff;
  display: inline-flex;
  background-color: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
  font-size: 16px;
  padding: 0 8px;
}
#top_category-list ul.category-name li a span::before {
  font-family: FontAwesome;
  content: "\f07c";
  font-size: 12px;
  margin-right: 5px;
}
#top_category-list ul.category-name li a:hover {
  opacity: 0.7;
}
@media (max-width: 769px) {
  #top_category-list {
    background: #fff url(../img/secbg_righttop_togray.png) no-repeat right top;
    background-size: 40px 40px;
    padding: 30px 0 0;
  }
}

/* top-slider */
.top_slider {
  background: #F6F6F6;
  padding: 20px 0;
  display: block;
  width: 100%;
  height: auto;
}
.top_slider li.slider-item .thumb {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.top_slider li.slider-item .thumb img {
  position: relative;
  transition: 0.3s;
}
.top_slider li.slider-item .thumb img:hover {
  opacity: 0.7;
}
.top_slider li.slider-item .thumb .nothum {
  position: relative;
}
.top_slider li.slider-item .thumb .nothum p.title_nothum {
  position: absolute;
  display: inline-block;
  bottom: 15%;
  left: 2%;
  right: 2%;
}
.top_slider li.slider-item .thumb .nothum p.title_nothum span {
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background: #fff;
  line-height: 2.2em;
  font-weight: bold;
  font-size: 20px;
  color: #1A1311;
  padding: 5px 8px;
  filter: drop-shadow(0px 0px 3px rgba(80, 80, 80, 0.6));
}
@media (max-width: 431px) {
  .top_slider li.slider-item .thumb .nothum p.title_nothum span {
    font-size: 4.5vw;
  }
}
.top_slider li.slider-item .thumb .nothum p.title_nothum_notag {
  position: absolute;
  display: inline-block;
  bottom: 2%;
  left: 2%;
  right: 2%;
}
.top_slider li.slider-item .thumb .nothum p.title_nothum_notag span {
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background: #fff;
  line-height: 2.2em;
  font-weight: bold;
  font-size: 20px;
  color: #1A1311;
  padding: 5px 8px;
  filter: drop-shadow(0px 0px 3px rgba(80, 80, 80, 0.6));
}
@media (max-width: 431px) {
  .top_slider li.slider-item .thumb .nothum p.title_nothum_notag span {
    font-size: 4.5vw;
  }
}
.top_slider li.slider-item .thumb .category-name {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 0 8px 2px;
}
.top_slider li.slider-item .thumb .category-name span {
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.top_slider li.slider-item .thumb .category-name span::before {
  font-family: FontAwesome;
  content: "\f07c";
  font-size: 12px;
  margin-right: 5px;
}
.top_slider li.slider-item .thumb .title {
  visibility: hidden;
  height: 20px;
  position: absolute;
  bottom: 13%;
  width: 90%;
  left: 5%;
  right: 5%;
}
.top_slider li.slider-item .thumb .tag {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  background: #2E60C6 url(../img/tags-solid.svg) no-repeat left 10px top 50%;
  color: #fff;
  padding: 2px 4px 2px 30px;
}
.top_slider li.slider-item .thumb .tag ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.top_slider li.slider-item .thumb .tag ul li {
  display: inline;
}
.top_slider li.slider-item .thumb .tag ul li::after {
  content: ",";
}
.top_slider li.slider-item .thumb .tag ul li:last-of-type::after {
  content: initial;
}

.slick-slide {
  margin: 0 10px;
}

.slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}

.slider {
  　padding-left: 0 !important;
  display: block;
  width: 100%;
  overflow: hidden;
}

.slick-slide img {
  width: 100%;
  height: auto;
  border: 1px solid #B4B4B4;
}

.slick-dots {
  position: relative;
  bottom: 0;
}

.slick-dots li {
  margin: 0 !important;
}

.slick-track {
  overflow: hidden;
}

/* ---------------------------------------------

archive

---------------------------------------------- */
#page-reco {
  display: block;
  padding: 30px 0;
  background: url(../img/recoarea_bg.png) repeat-x top center;
  background-size: 100% 180px;
}
#page-reco .container {
  padding-bottom: 50px;
  border-bottom: 1px solid #949494;
}
#page-reco h2 {
  font-weight: bold;
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  font-size: 20px;
  color: #fff;
  gap: 15px;
  margin-bottom: 20px;
}
#page-reco h2 .eng {
  font-size: 15px;
  margin-left: 10px;
  color: #fff !important;
}

#page-archive {
  display: block;
}
#page-archive h2 {
  font-weight: bold;
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  font-size: 20px;
  color: #1A1311;
  gap: 15px;
  margin-bottom: 20px;
}
#page-archive h2 .eng {
  font-size: 15px;
  margin-left: 10px;
}
@media (max-width: 431px) {
  #page-archive h2 {
    font-size: 4vw;
  }
  #page-archive h2 .eng {
    font-size: 2.5vw;
    margin-left: 5px;
  }
}

#archive-content,
#newer-content {
  margin-bottom: 50px;
}

#page_category-list {
  margin-top: 50px;
}
#page_category-list h2 {
  font-weight: bold;
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  font-size: 20px;
  color: #1A1311;
  gap: 15px;
  margin-bottom: 20px;
}
#page_category-list h2 .eng {
  font-size: 15px;
  margin-left: 10px;
}
@media (max-width: 431px) {
  #page_category-list h2 {
    font-size: 4vw;
  }
  #page_category-list h2 .eng {
    font-size: 2.5vw;
    margin-left: 5px;
  }
}
#page_category-list ul.category-name {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
#page_category-list ul.category-name li {
  position: relative;
  margin: 0 10px 10px 0;
}
#page_category-list ul.category-name li a {
  display: inline-block;
  transition: 0.3s;
}
#page_category-list ul.category-name li a span {
  color: #fff;
  display: inline-flex;
  background-color: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
  font-size: 16px;
  padding: 0 8px;
}
#page_category-list ul.category-name li a span::before {
  font-family: FontAwesome;
  content: "\f07c";
  font-size: 12px;
  margin-right: 5px;
}
#page_category-list ul.category-name li a:hover {
  opacity: 0.7;
}

.page_banner {
  display: block;
  max-width: 80%;
  margin: 50px auto;
  text-align: center;
  transition: 0.3s;
}
.page_banner:hover {
  opacity: 0.7;
}
@media (max-width: 769px) {
  .page_banner {
    max-width: 90%;
    margin: 30px auto;
  }
}
@media (max-width: 431px) {
  .page_banner {
    max-width: 100%;
    width: 100%;
  }
}

.breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 35px;
}
@media (max-width: 431px) {
  .breadcrumbs ul {
    margin-bottom: 25px;
    margin-right: -20px;
  }
}
.breadcrumbs ul li {
  font-size: 1.3rem;
  font-weight: bold;
  padding-right: 25px;
  position: relative;
  margin-bottom: 5px;
}
@media (max-width: 431px) {
  .breadcrumbs ul li {
    font-size: 1.1rem;
    padding-right: 20px;
  }
}
.breadcrumbs ul li::after {
  position: absolute;
  font-family: "Font Awesome 6 Free";
  content: "\f105";
  right: 8px;
  top: 1px;
  color: #DEE0E6;
}
@media (max-width: 431px) {
  .breadcrumbs ul li::after {
    right: 7px;
  }
}
.breadcrumbs ul li:last-child {
  padding-right: 0;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 40%;
  max-width: 40%;
}
.breadcrumbs ul li:last-child::after {
  content: none;
}
@media (max-width: 769px) {
  .breadcrumbs ul li:last-child {
    width: 300px;
  }
}
@media (max-width: 431px) {
  .breadcrumbs ul li:last-child {
    width: 200px;
  }
}
.breadcrumbs ul li a {
  font-weight: normal;
}
.breadcrumbs ul li a:hover {
  text-decoration: underline;
}

.page_fv_area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 0 5%;
  text-align: center;
}
.page_fv_area .heading {
  color: #1A1311;
  font-size: 32px;
  font-weight: bold;
}
.page_fv_area .heading span {
  font-size: 18px;
}

.pager {
  display: flex;
  justify-content: center;
}

.page_num {
  display: none;
}

.pager__item {
  margin: 0 0.3em;
}
.pager__item a {
  width: 36px;
  height: 36px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #1A1311;
  font-weight: bold;
  line-height: 1em;
  transition: all 0.3s;
  border: 1px solid #1A1311;
  font-family: "Audiowide", sans-serif;
}
@media (max-width: 431px) {
  .pager__item a {
    width: 30px;
    height: 30px;
    font-size: 1.3rem;
  }
}
.pager__item a:hover {
  background-color: #1A1311;
  color: #fff;
}
.pager__item a.p-prev {
  margin-right: 1.7em;
}
.pager__item a.p-next {
  margin-left: 1.7em;
}
.pager__item.active .pager-current {
  width: 36px;
  height: 36px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1em;
  font-weight: bold;
  color: #fff !important;
  border: #1A1311 1px solid;
  background: #1A1311 !important;
}
@media (max-width: 431px) {
  .pager__item.active .pager-current {
    width: 30px;
    height: 30px;
    font-size: 1.3rem;
  }
}

.page-numbers {
  display: flex;
  justify-content: center;
}
.page-numbers > li {
  margin: 0 0.3em;
}
@media (max-width: 431px) {
  .page-numbers > li {
    margin: 0 0.2em;
  }
}
.page-numbers > li > .page-numbers {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #2E60C6;
  color: #fff;
  font-weight: bold;
  line-height: 1em;
  transition: all 0.3s;
}
@media (max-width: 431px) {
  .page-numbers > li > .page-numbers {
    width: 30px;
    height: 30px;
    font-size: 1.3rem;
  }
}
.page-numbers > li > .page-numbers:hover {
  background-color: #4c8dcb;
}
.page-numbers > li > .page-numbers.prev {
  margin-right: 1.7em;
}
@media (max-width: 431px) {
  .page-numbers > li > .page-numbers.prev {
    margin-right: 1.5em;
  }
}
.page-numbers > li > .page-numbers.next {
  margin-left: 1.7em;
}
@media (max-width: 431px) {
  .page-numbers > li > .page-numbers.next {
    margin-left: 1.5em;
  }
}
.page-numbers > li > .page-numbers.current, .page-numbers > li > .page-numbers.dots {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1em;
  font-weight: bold;
  color: #2E60C6 !important;
  border: #DEE0E6 1px solid;
  background: #fff !important;
}
@media (max-width: 431px) {
  .page-numbers > li > .page-numbers.current, .page-numbers > li > .page-numbers.dots {
    width: 30px;
    height: 30px;
    font-size: 1.3rem;
  }
}
.page-numbers > li > .page-numbers.dots {
  border: unset !important;
  width: 26px;
}
@media (max-width: 431px) {
  .page-numbers > li > .page-numbers.dots {
    width: 23px;
  }
}

/* =======================================================

article list

======================================================= */
.article-list__item {
  border-bottom: 1px solid #DEE0E6;
}

.article-list__link {
  padding: 25px 0;
  display: flex;
  min-height: 190px;
  transition: all 0.3s;
}
@media (max-width: 769px) {
  .article-list__link {
    min-height: unset;
  }
}
@media (max-width: 431px) {
  .article-list__link {
    min-height: unset;
    padding: 17px 0;
  }
}
.article-list__link:hover {
  background: #F8FAFD;
}
.article-list__link:hover .article-list__img img {
  transform: translateX(-50%) translateY(-50%) scale(1.1, 1.1);
}

.article-list__img {
  width: 245px;
  min-width: 245px;
  height: 150px;
  background: #eee;
  overflow: hidden;
  position: relative;
}
@media (max-width: 769px) {
  .article-list__img {
    width: 200px;
    min-width: 200px;
    height: 130px;
  }
}
@media (max-width: 431px) {
  .article-list__img {
    width: 80px;
    min-width: 80px;
    height: 80px;
  }
}
.article-list__img img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s;
}

.article-list__txts {
  width: 100%;
  padding-left: 40px;
}
@media (max-width: 1080px) {
  .article-list__txts {
    padding-left: 20px;
  }
}
@media (max-width: 431px) {
  .article-list__txts {
    padding-left: 15px;
  }
}

/* =======================================================

article list -- box

======================================================= */
.article-list--boxs {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
  width: calc(100% + 20px);
}
@media (max-width: 769px) {
  .article-list--boxs {
    margin: 0;
    width: 100%;
    flex-direction: column;
  }
}

.article-list--boxs__item {
  padding: 10px;
  display: flex;
  width: 33.3333333333%;
}
@media (max-width: 769px) {
  .article-list--boxs__item {
    padding: 10px 15px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}

.article-list--boxs__link {
  background: #fff;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
}
.article-list--boxs__link:hover {
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
}
.article-list--boxs__link:hover .article-list--boxs__imgs img {
  transform: translateX(-50%) translateY(-50%) scale(1.1, 1.1);
}
.article-list--boxs__link:hover .article-list--boxs__title {
  color: #2E60C6;
}

.article-list--boxs__imgs {
  position: relative;
  height: 170px;
  overflow: hidden;
}
@media (max-width: 431px) {
  .article-list--boxs__imgs {
    height: 150px;
  }
}
.article-list--boxs__imgs img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  transition: all 0.3s;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.article-list--boxs__txts {
  padding: 20px 10px 15px;
  height: calc(100% - 170px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 431px) {
  .article-list--boxs__txts {
    height: auto;
  }
}

.article-list--boxs__time {
  line-height: 1em;
  margin-bottom: 0.5em;
}

.article-list--boxs__title {
  transition: all 0.3s;
  font-weight: bold;
  margin-bottom: 1em;
  line-height: 1.7em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.article-list--boxs__tags {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.7em;
}
.article-list--boxs__tags > span {
  margin-right: 0.5em;
}

@media (max-width: 769px) {
  .relation-posts__list .article-list--boxs__item {
    padding: 10px 0;
  }
}
.relation-posts__list .article-list--boxs__link {
  box-shadow: unset;
  background: unset;
}
@media (max-width: 769px) {
  .relation-posts__list .article-list--boxs__link {
    background: #fff;
  }
}
.relation-posts__list .article-list--boxs__txts {
  padding: 12px 0 0;
  justify-content: flex-start;
}
@media (max-width: 769px) {
  .relation-posts__list .article-list--boxs__txts {
    padding: 20px 10px 15px;
  }
}
.relation-posts__list .article-list--boxs__title {
  margin-bottom: 0.5em;
}

/* =======================================================

article page

======================================================= */
#single_wrap {
  display: flex;
  justify-content: space-around;
  width: 100%;
  gap: 40px;
}
#single_wrap #single_main {
  width: 70%;
  display: block;
}
#single_wrap #single_main .content {
  border-bottom: 1px solid #949494;
}
#single_wrap #single_main .content h2.posttitle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.45em;
  margin-bottom: 15px;
}
#single_wrap #single_main .content .posttaxn_text {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
}
#single_wrap #single_main .content .posttaxn_text .category-name {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
}
#single_wrap #single_main .content .posttaxn_text .category-name a {
  position: relative;
  margin: 0 auto;
  display: inline-block;
  transition: 0.3s;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 3px 8px;
  line-height: 1.2em;
}
#single_wrap #single_main .content .posttaxn_text .category-name a span {
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
#single_wrap #single_main .content .posttaxn_text .category-name a span::before {
  font-family: FontAwesome;
  content: "\f07c";
  font-size: 12px;
  margin-right: 5px;
}
#single_wrap #single_main .content .posttaxn_text .category-name a:hover {
  opacity: 0.7;
}
#single_wrap #single_main .content .posttaxn_text ul.singlepost_tag li {
  display: inline-block;
  font-size: 12px;
  line-height: 1.2em;
  color: #2E60C6;
  border: 1px solid #2E60C6;
  background: #fff;
  text-align: center;
  border-radius: 30px;
  padding: 5px 10px;
  margin-right: 5px;
  width: auto;
  transition: 0.3s;
}
#single_wrap #single_main .content .posttaxn_text ul.singlepost_tag li:last-of-type {
  margin-right: 0;
}
#single_wrap #single_main .content .posttaxn_text ul.singlepost_tag li a {
  display: block;
}
#single_wrap #single_main .content .posttaxn_text ul.singlepost_tag li:hover {
  background: #2E60C6;
  color: #fff;
}
#single_wrap #single_main .content .singlepost_date {
  display: block;
  position: relative;
}
#single_wrap #single_main .content .singlepost_date span {
  color: #949494;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
}
#single_wrap #single_main .content .singlepost_date span::before {
  font-family: FontAwesome;
  content: "\f017";
  font-size: 12px;
  margin-right: 5px;
}
#single_wrap #single_main .content .post {
  display: block;
  margin: 15px auto 50px;
  font-size: 16px;
}
#single_wrap #single_main .content .post a.link-color {
  color: #2E60C6;
  text-decoration: underline;
}
#single_wrap #single_main .content .post a.link-color:hover {
  text-align: none;
}
#single_wrap #single_main .content .post h2.wp-block-heading {
  font-weight: bold;
  font-size: 150%;
  color: #1A1311;
  border-bottom: 1px solid #949494;
  padding: 10px 0;
  margin: 40px auto 15px;
  display: block;
}
#single_wrap #single_main .content .post h3.wp-block-heading {
  background: #EDEDF0;
  font-size: 105%;
  font-weight: bold;
  display: block;
  box-sizing: border-box;
  padding: 5px 10px;
  margin: 40px auto 10px;
}
#single_wrap #single_main .content .post h4.wp-block-heading {
  border-left: 2px solid #1A1311;
  font-weight: bold;
  display: block;
  box-sizing: border-box;
  padding: 10px;
  margin: 30px auto 10px;
}
#single_wrap #single_main .content .post h5.wp-block-heading {
  font-weight: bold;
  display: block;
  box-sizing: border-box;
  padding-bottom: 10px;
  margin: 30px auto 10px;
}
#single_wrap #single_main .content .post h6.wp-block-heading {
  font-weight: bold;
  display: block;
  box-sizing: border-box;
  padding-bottom: 10px;
  margin: 30px auto 10px;
}
#single_wrap #single_main .content .post p.postthum img {
  max-width: 100%;
  display: block;
  margin: 0 auto 30px;
  filter: drop-shadow(0px 0px 3px rgba(80, 80, 80, 0.6));
}
#single_wrap #single_main .content .post ul.wp-block-list,
#single_wrap #single_main .content .post ol.wp-block-list {
  margin: 3% 0 5%;
  padding-left: 6%;
}
#single_wrap #single_main .content .post ul.wp-block-list li,
#single_wrap #single_main .content .post ol.wp-block-list li {
  line-height: 1.5;
  margin: 0.8em 0;
  position: relative;
}
#single_wrap #single_main .content .post ul.wp-block-list li:not([type]),
#single_wrap #single_main .content .post ol.wp-block-list li:not([type]) {
  list-style: disc;
}
#single_wrap #single_main .content .post #ez-toc-container {
  background: #f6f6f6;
  background: linear-gradient(-45deg, transparent 25%, #f6f6f6 25%, #f6f6f6 50%, transparent 50%, transparent 75%, #f6f6f6 75%, #f6f6f6);
  background-clip: padding-box;
  background-size: 4px 4px;
  border-bottom: 4px double #e0e0e0;
  border-top: 4px double #e0e0e0;
  border-right: none;
  border-left: none;
  border-radius: 0;
  padding: 1.5em 1.5em 1em;
  display: table;
  margin: 4em 2em;
  position: relative;
  width: calc(100% - 4em);
}
@media (max-width: 769px) {
  #single_wrap #single_main .content .post #ez-toc-container {
    width: 100%;
    margin: 3em 0;
  }
}
#single_wrap #single_main .content .post .blogcard {
  line-height: 1;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  word-wrap: break-word;
  margin: 40px;
  box-shadow: 0 0 10px 6px rgba(0, 0, 0, 0.025);
}
#single_wrap #single_main .content .post .blogcard a {
  text-decoration: none;
  opacity: 1;
  transition: all 0.2s ease;
}
#single_wrap #single_main .content .post .blogcard a:hover {
  opacity: 0.6;
}
#single_wrap #single_main .content .post .blogcard a .blogcard_thumbnail {
  float: left;
  padding: 20px;
}
#single_wrap #single_main .content .post .blogcard a .blogcard_title {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.4;
  padding: 17px 20px 10px;
}
#single_wrap #single_main .content .post .blogcard a .blogcard_excerpt {
  font-size: 0.85em;
  line-height: 1.6;
  padding: 0 17px 15px 20px;
}
#single_wrap #single_main .content .post .contact_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 50px;
}
#single_wrap #single_main .content .post .contact_btn p {
  margin-bottom: 10px;
  font-weight: bold;
  line-height: 1.4em;
  text-align: center;
}
#single_wrap #single_main .content .post .contact_btn a {
  font-size: 22px;
  color: #1A1311;
  display: inline-block;
  margin: 10px auto 30px;
  border: 1px solid #1A1311;
  border-radius: 50px;
  padding: 3px 30px 5px;
  background: #fff;
  transition: 0.3s;
}
#single_wrap #single_main .content .post .contact_btn a:hover {
  background: #1A1311;
  color: #fff;
}
@media (max-width: 431px) {
  #single_wrap #single_main .content .post .contact_btn a {
    font-size: 5vw;
    width: 100%;
    text-align: center;
    display: block;
    padding: 10px 20px;
  }
}
#single_wrap #single_main .content .post .pagebtm_bana {
  display: block;
  transition: 0.3s;
}
#single_wrap #single_main .content .post .pagebtm_bana:hover {
  opacity: 0.7;
}
#single_wrap #single_main .related-posts {
  padding-top: 30px;
}
#single_wrap #single_main .related-posts h2 {
  font-weight: bold;
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  font-size: 20px;
  color: #1A1311;
  gap: 15px;
}
#single_wrap #single_main .related-posts h2 .eng {
  font-size: 15px;
  margin-left: 10px;
}
@media (max-width: 431px) {
  #single_wrap #single_main .related-posts h2 {
    font-size: 4vw;
  }
  #single_wrap #single_main .related-posts h2 .eng {
    font-size: 2.5vw;
    margin-left: 5px;
  }
}
#single_wrap #single_main .related-posts ul.related_box {
  display: block;
  width: 100%;
  margin: 30px auto;
}
#single_wrap #single_main .related-posts ul.related_box li {
  display: block;
  width: 100%;
  padding: 0;
  box-sizing: border-box;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #EDEDF0;
}
#single_wrap #single_main .related-posts ul.related_box li:last-of-type {
  margin-bottom: 0;
}
#single_wrap #single_main .related-posts ul.related_box li a {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  width: 100%;
  height: 100%;
}
#single_wrap #single_main .related-posts ul.related_box li a .popular_entrytitle {
  display: flex;
  flex-direction: column;
  flex: 1;
}
#single_wrap #single_main .related-posts ul.related_box li a .popular_entrytitle .post3_date {
  color: #949494;
  font-size: 15px;
}
#single_wrap #single_main .related-posts ul.related_box li a .popular_entrytitle .title {
  font-weight: bold;
  font-size: 16px;
  color: #1A1311;
}
@media (max-width: 431px) {
  #single_wrap #single_main .related-posts ul.related_box li a .popular_entrytitle .title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
}
#single_wrap #single_main .related-posts ul.related_box li a .popular_thumbnail {
  width: 30%;
  position: relative;
}
#single_wrap #single_main .related-posts ul.related_box li a .popular_thumbnail img {
  width: 100%;
  height: auto;
  border: 1px solid #B4B4B4;
  transition: 0.3s;
}
#single_wrap #single_main .related-posts ul.related_box li a .popular_thumbnail img:hover {
  opacity: 0.7;
}
@media (max-width: 431px) {
  #single_wrap #single_main .related-posts ul.related_box li a .popular_thumbnail {
    width: 48%;
  }
}
#single_wrap #single_main .single_bottomnav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
#single_wrap #single_main .single_bottomnav a {
  font-size: 16px;
  color: #1A1311;
  display: inline-block;
  margin: 30px 0;
  border: 1px solid #1A1311;
  border-radius: 50px;
  padding: 3px 20px 5px;
  background: #fff;
  transition: 0.3s;
}
#single_wrap #single_main .single_bottomnav a:hover {
  background: #1A1311;
  color: #fff;
}
@media (max-width: 769px) {
  #single_wrap #single_main {
    width: 100%;
  }
}
#single_wrap #single_side {
  width: 30%;
  flex: 1;
}
@media (max-width: 769px) {
  #single_wrap #single_side {
    width: 100%;
    flex: initial;
  }
}
@media (max-width: 769px) {
  #single_wrap {
    flex-direction: column;
    justify-content: center;
  }
}

.article__content {
  margin-bottom: 70px;
}
@media (max-width: 431px) {
  .article__content {
    margin-bottom: 50px;
  }
}
.article__content a {
  text-decoration: underline;
  color: #4c8dcb;
}
.article__content a:hover {
  text-decoration: none;
}

/* ---------------------------------------------

content page

---------------------------------------------- */
#page_wrap {
  display: block;
  width: 100%;
  height: auto;
}
#page_wrap .post {
  display: block;
  margin: 15px auto 50px;
  font-size: 16px;
}
#page_wrap .post a.link-color {
  color: #2E60C6;
  text-decoration: underline;
}
#page_wrap .post a.link-color:hover {
  text-decoration: none;
}
#page_wrap .post h2.wp-block-heading {
  font-weight: bold;
  font-size: 150%;
  color: #1A1311;
  border-bottom: 1px solid #949494;
  padding: 10px 0;
  margin: 40px auto 15px;
  display: block;
}
#page_wrap .post h3.wp-block-heading {
  background: #EDEDF0;
  font-size: 105%;
  font-weight: bold;
  display: block;
  box-sizing: border-box;
  padding: 5px 10px;
  margin: 40px auto 10px;
}
#page_wrap .post h4.wp-block-heading {
  border-left: 2px solid #1A1311;
  font-weight: bold;
  display: block;
  box-sizing: border-box;
  padding: 10px;
  margin: 30px auto 10px;
}
#page_wrap .post h5.wp-block-heading {
  font-weight: bold;
  display: block;
  box-sizing: border-box;
  padding-bottom: 10px;
  margin: 30px auto 10px;
}
#page_wrap .post h6.wp-block-heading {
  font-weight: bold;
  display: block;
  box-sizing: border-box;
  padding-bottom: 10px;
  margin: 30px auto 10px;
}
#page_wrap .post p.postthum img {
  max-width: 100%;
  display: block;
  margin: 0 auto 30px;
  filter: drop-shadow(0px 0px 3px rgba(80, 80, 80, 0.6));
}
#page_wrap .post ul.wp-block-list,
#page_wrap .post ol.wp-block-list {
  margin: 3% 0 5%;
  padding-left: 6%;
}
#page_wrap .post ul.wp-block-list li,
#page_wrap .post ol.wp-block-list li {
  line-height: 1.5;
  margin: 0.8em 0;
  position: relative;
}
#page_wrap .post ul.wp-block-list li:not([type]),
#page_wrap .post ol.wp-block-list li:not([type]) {
  list-style: disc;
}
#page_wrap .post #ez-toc-container {
  background: #f6f6f6;
  background: linear-gradient(-45deg, transparent 25%, #f6f6f6 25%, #f6f6f6 50%, transparent 50%, transparent 75%, #f6f6f6 75%, #f6f6f6);
  background-clip: padding-box;
  background-size: 4px 4px;
  border-bottom: 4px double #e0e0e0;
  border-top: 4px double #e0e0e0;
  border-right: none;
  border-left: none;
  border-radius: 0;
  padding: 1.5em 1.5em 1em;
  display: table;
  margin: 4em 2em;
  position: relative;
  width: calc(100% - 4em);
}
@media (max-width: 769px) {
  #page_wrap .post #ez-toc-container {
    width: 100%;
    margin: 3em 0;
  }
}
#page_wrap .post .blogcard {
  line-height: 1;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  word-wrap: break-word;
  margin: 40px;
  box-shadow: 0 0 10px 6px rgba(0, 0, 0, 0.025);
}
#page_wrap .post .blogcard a {
  text-decoration: none;
  opacity: 1;
  transition: all 0.2s ease;
}
#page_wrap .post .blogcard a:hover {
  opacity: 0.6;
}
#page_wrap .post .blogcard a .blogcard_thumbnail {
  float: left;
  padding: 20px;
}
#page_wrap .post .blogcard a .blogcard_title {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.4;
  padding: 17px 20px 10px;
}
#page_wrap .post .blogcard a .blogcard_excerpt {
  font-size: 0.85em;
  line-height: 1.6;
  padding: 0 17px 15px 20px;
}

.article__youtube {
  width: 100%;
  max-width: 700px;
  margin: 30px auto;
}
.article__youtube > span {
  position: relative;
  display: block;
}
.article__youtube > span::before {
  content: "";
  display: block;
  padding-top: 57%; /* 高さを幅の75%に固定 */
}
.article__youtube > span iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.article__youtube figcaption {
  padding-top: 0.5em;
}

/* =======================================================

関連記事

======================================================= */
.relation-posts {
  margin-bottom: 70px;
  padding: 50px 40px 40px;
  border: #2E60C6 1px solid;
  background: #F8FAFD;
}
@media (max-width: 431px) {
  .relation-posts {
    padding: 30px 20px 20px;
  }
}

.relation-posts__head {
  text-align: center;
  margin-bottom: 1em;
  font-weight: bold;
  font-family: "Zen Old Mincho", serif;
  color: #2E60C6;
  font-size: 2.5rem;
}
@media (max-width: 431px) {
  .relation-posts__head {
    font-size: 1.8rem;
  }
}

.relation-posts__item {
  border-bottom: 1px solid #DEE0E6;
}
.relation-posts__item a {
  display: block;
  padding: 15px 0;
  transition: all 0.3s;
}
.relation-posts__item a:hover {
  background-color: #F6F6F6;
}
.relation-posts__item a:hover .relation-posts__title {
  color: #2E60C6;
}
.relation-posts__item:last-child {
  border: 0;
}

.relation-posts__title {
  font-size: 1.8rem;
  font-weight: bold;
  transition: all 0.3s;
  margin-bottom: 0.5em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 制限したい行数の数字 */
  overflow: hidden;
}
@media (max-width: 431px) {
  .relation-posts__title {
    font-size: 1.4rem;
  }
}

.relation-posts__info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.relation-posts__info > .relation-posts__time {
  margin-bottom: 5px;
}
.relation-posts__info > .relation-posts__cate {
  margin-bottom: 5px;
}

.relation-posts__time {
  line-height: 1em;
  margin-right: 1em;
}

/* =======================================================

404

======================================================= */
.container.box-404 {
  min-height: 200px;
  text-align: center;
  line-height: 2em;
}
@media (max-width: 431px) {
  .container.box-404 {
    min-height: 150px;
  }
}
.container.box-404 .link-404 {
  font-weight: bold;
  color: #4c8dcb;
  text-decoration: underline;
}

/* =======================================================

recapture 非表示

======================================================= */
.grecaptcha-badge {
  visibility: hidden;
}

/* =======================================================

サイドバー

======================================================= */
#sidebar .widget h3.heading {
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 3px;
  border-bottom: #2E60C6 4px solid;
  position: relative;
  display: block;
}
#sidebar .widget.bana_pc img {
  display: block;
}
@media (max-width: 769px) {
  #sidebar .widget.bana_pc img {
    display: none;
  }
}
#sidebar h2.wp-block-heading {
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 3px;
  border-bottom: #2E60C6 4px solid;
  position: relative;
  display: block;
}
#sidebar .widget_search form .wp-block-search__inside-wrapper {
  background: #FFFFFF;
  box-shadow: inset 0px 1px 4px rgba(0, 0, 0, 0.1607843137);
  border: 1px solid #CDCDCD;
  border-radius: 4px;
  box-sizing: border-box;
  margin-bottom: 15px;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  margin-bottom: 15px;
}
#sidebar .widget_search form .wp-block-search__inside-wrapper button.wp-block-search__button {
  font-size: 0;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}
#sidebar .widget_search form .wp-block-search__inside-wrapper button.wp-block-search__button::after {
  content: "\f002";
  font-family: "FontAwesome";
  color: #2E60C6;
  font-size: 18px;
  font-weight: 400;
  transition: 0.3s;
}
#sidebar .widget_search form .wp-block-search__inside-wrapper button.wp-block-search__button:hover {
  color: #5b92ff;
}
#sidebar .widget_custom_html a img {
  transition: 0.3s;
  max-width: 100%;
  height: auto;
  background: #fff;
}
#sidebar .widget_custom_html a img:hover {
  opacity: 0.7;
}
#sidebar #side_ranking .wpp-shortcode ul.ranking_box {
  margin: 0 auto 30px;
  display: flex;
  flex-direction: column;
}
#sidebar #side_ranking .wpp-shortcode ul.ranking_box li {
  border-bottom: 1px solid #EDEDF0;
  padding: 10px 0;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 20px;
}
#sidebar #side_ranking .wpp-shortcode ul.ranking_box li span.rank {
  width: 30px;
  padding: 0 2%;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  background: #2E60C6;
  color: #fff;
  font-family: "Audiowide", sans-serif;
  justify-content: center;
  align-items: center;
  position: relative;
}
#sidebar #side_ranking .wpp-shortcode ul.ranking_box li span.rank:after {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  border-color: rgba(46, 96, 198, 0);
  border-top-width: 7px;
  border-bottom-width: 7px;
  border-left-width: 10px;
  border-right-width: 10px;
  margin-top: -7px;
  border-left-color: #2E60C6;
  left: 100%;
  top: 50%;
}
#sidebar #side_ranking .wpp-shortcode ul.ranking_box li:nth-last-of-type(1) span.rank, #sidebar #side_ranking .wpp-shortcode ul.ranking_box li:nth-last-of-type(2) span.rank {
  background: #949494;
}
#sidebar #side_ranking .wpp-shortcode ul.ranking_box li:nth-last-of-type(1) span.rank:after, #sidebar #side_ranking .wpp-shortcode ul.ranking_box li:nth-last-of-type(2) span.rank:after {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  border-color: rgba(148, 148, 148, 0);
  border-top-width: 7px;
  border-bottom-width: 7px;
  border-left-width: 10px;
  border-right-width: 10px;
  margin-top: -7px;
  border-left-color: #949494;
  left: 100%;
  top: 50%;
}
#sidebar #side_ranking .wpp-shortcode ul.ranking_box li p.title {
  flex: 1;
}
#sidebar #side_ranking .wpp-shortcode ul.ranking_box li p.title > a {
  text-decoration: none;
  transition: 0.3s;
  line-height: 1.5em;
}
#sidebar #side_ranking .wpp-shortcode ul.ranking_box li p.title > a:hover {
  text-decoration: underline;
}
#sidebar #side_newpost {
  display: block;
  margin: 20px auto;
}
#sidebar #side_newpost ul.newposts {
  display: flex;
  flex-direction: column;
}
#sidebar #side_newpost ul.newposts li {
  border-bottom: 1px solid #EDEDF0;
  padding: 10px 0;
  display: block;
}
#sidebar #side_newpost ul.newposts li > a {
  text-decoration: none;
  transition: 0.3s;
  line-height: 1.5em;
}
#sidebar #side_newpost ul.newposts li > a:hover {
  text-decoration: underline;
}
#sidebar #side_newpost ul.newposts li .side_txt {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 5px;
  gap: 10px;
}
#sidebar #side_newpost ul.newposts li .side_txt .category-name {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
#sidebar #side_newpost ul.newposts li .side_txt .category-name span {
  color: #fff;
  display: inline-flex;
  background-color: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
  font-size: 12px;
  padding: 6px;
  line-height: 1.2em;
}
#sidebar #side_newpost ul.newposts li .side_txt .category-name span::before {
  font-family: FontAwesome;
  content: "\f07c";
  font-size: 10px;
  margin-right: 5px;
}
#sidebar #side_newpost ul.newposts li .side_txt .singlepost_date {
  display: block;
  position: relative;
}
#sidebar #side_newpost ul.newposts li .side_txt .singlepost_date span {
  color: #949494;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
}
#sidebar #side_newpost ul.newposts li .side_txt .singlepost_date span::before {
  font-family: FontAwesome;
  content: "\f017";
  font-size: 12px;
  margin-right: 5px;
}

/* ---------------------------------------------

header

---------------------------------------------- */
#header_wrap.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

#header {
  display: block;
  background-color: #1A1311;
  width: 100%;
  padding: 20px;
}
@media (max-width: 769px) {
  #header {
    min-height: 60px;
  }
}
@media (max-width: 431px) {
  #header {
    padding: 10px;
    display: flex;
    align-items: center;
  }
}

.header_box {
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: #fff;
  width: 100%;
}
.header_box .left_box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 53%;
  gap: 20px;
}
.header_box .left_box h1 {
  line-height: 1.2em;
  font-size: 15px;
}
@media (max-width: 769px) {
  .header_box .left_box h1 {
    display: none;
  }
}
.header_box .left_box a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
.header_box .left_box a:hover {
  opacity: 0.7;
}
@media (max-width: 431px) {
  .header_box .left_box {
    width: 80%;
    padding-right: 60px;
    box-sizing: border-box;
  }
}
.header_box .right_box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 47%;
  gap: 20px;
  line-height: 0;
}
.header_box .right_box a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
.header_box .right_box a:hover {
  color: #2E60C6;
}
.header_box .right_box a img {
  margin-left: 10px;
  transition: 0.3s;
  width: 20px;
  height: 20px;
}
.header_box .right_box a img:hover {
  opacity: 0.7;
}
.header_box .right_box a.header__contact {
  font-family: "Audiowide", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding: 1.2em 1.5em;
  border-radius: 30px;
  transition: all ease 0.3s;
  position: relative;
  overflow: hidden;
  background: linear-gradient(295deg, #975DE6 0%, #0461BE 100%);
  border: rgba(26, 19, 17, 0) 1px solid;
}
.header_box .right_box a.header__contact:hover {
  border: 1px solid #fff;
  color: #fff;
  background: none;
}
@media (max-width: 769px) {
  .header_box .right_box {
    display: none;
  }
}

#mainNav {
  display: block;
  background: #2E60C6;
  width: 100%;
  padding: 5px 0;
}
#mainNav ul.global-nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
#mainNav ul.global-nav li {
  color: #fff;
  font-size: 14px;
}
#mainNav ul.global-nav li::before {
  font-family: FontAwesome;
  content: "\f07c";
  font-size: 12px;
  margin-right: 5px;
}
#mainNav ul.global-nav li:first-of-type::before {
  content: "";
  background: url(../img/newicon.svg) no-repeat left 0 top 50%;
  background-size: 12px auto;
  margin-right: 5px;
  padding-left: 15px;
}
@media (max-width: 769px) {
  #mainNav ul.global-nav {
    display: none;
  }
}
@media (max-width: 769px) {
  #mainNav {
    padding: 3px 0;
  }
}

/* ハンバーガーボタンのデザイン */
.drawer__button {
  display: none;
}
@media (max-width: 769px) {
  .drawer__button {
    display: inline;
    position: fixed;
    width: 60px;
    height: 60px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 999; /* メニューを開いている時もクリックできるよう設定 */
    top: 0;
    right: 0;
    background: #1A1311;
  }
  .drawer__button > span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2rem;
    height: 2px;
    background-color: #fff;
    transform: translateX(-50%);
  }
  .drawer__button > span:first-child {
    transform: translate(-50%, calc(-50% - 0.5rem));
    transition: transform 0.3s ease;
  }
  .drawer__button > span:nth-child(2) {
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
  }
  .drawer__button > span:last-child {
    transform: translate(-50%, calc(-50% + 0.5rem));
    transition: transform 0.3s ease;
  }
  .drawer__button.active > span:first-child {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .drawer__button.active > span:nth-child(2) {
    opacity: 0;
  }
  .drawer__button.active > span:last-child {
    transform: translate(-50%, -50%) rotate(45deg);
  }
}

.drawer__nav {
  display: none;
}
@media (max-width: 769px) {
  .drawer__nav {
    display: block;
    position: fixed; /* 追従ヘッダーなどでも表示できるよう設定しておく */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #2E60C6;
    transition: opacity 0.3s ease;
    opacity: 0;
    visibility: hidden;
  }
  .drawer__nav.active {
    opacity: 1;
    visibility: visible;
    z-index: 998;
  }
  .drawer__nav.active .drawer__nav__inner {
    transform: translateX(0);
  }
  .drawer__nav .drawer__nav__inner {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #1A1311;
    padding: 4rem 2rem 1rem;
    margin: 0 0 0 auto;
    overflow: scroll;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .drawer__nav .drawer__nav__inner .drawer__nav__menu {
    list-style: none;
    padding-left: 0;
  }
  .drawer__nav .drawer__nav__inner .drawer__nav__menu .drawer__nav__link {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 1rem 1rem;
    font-family: "Audiowide", sans-serif;
  }
  .drawer__nav .drawer__nav__inner a.header__contact {
    width: 100%;
    display: block;
    text-align: center;
    margin: 20px auto 30px;
    font-family: "Audiowide", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    padding: 1em 1.5em;
    border-radius: 50px;
    transition: all ease 0.3s;
    position: relative;
    overflow: hidden;
    background: linear-gradient(295deg, #975DE6 0%, #0461BE 100%);
  }
  .drawer__nav .drawer__nav__inner .sp_cate {
    padding: 20px 0;
  }
  .drawer__nav .drawer__nav__inner .sp_cate p {
    font-weight: bold;
    display: flex;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
    color: #fff;
    gap: 10px;
    margin-bottom: 15px;
  }
  .drawer__nav .drawer__nav__inner .sp_cate p .eng {
    font-size: 12px;
    margin-left: 10px;
  }
  .drawer__nav .drawer__nav__inner .sp_cate ul.global-nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  .drawer__nav .drawer__nav__inner .sp_cate ul.global-nav li {
    color: #fff;
    font-size: 16px;
  }
  .drawer__nav .drawer__nav__inner .sp_cate ul.global-nav li::before {
    font-family: FontAwesome;
    content: "\f07c";
    font-size: 12px;
    margin-right: 5px;
  }
  .drawer__nav .drawer__nav__inner .sp_cate ul.global-nav li:first-of-type::before {
    content: "";
    background: url(../img/newicon.svg) no-repeat left 0 top 50%;
    background-size: 12px auto;
    margin-right: 5px;
    padding-left: 15px;
  }
  .drawer__nav .drawer__nav__inner .sp_icon {
    padding-top: 20px;
    border-top: 1px solid #949494;
    display: flex;
    justify-content: flex-start;
    gap: 15px;
  }
  .drawer__nav .drawer__nav__inner .sp_icon a img {
    width: 25px;
    height: auto;
  }
}

/* ---------------------------------------------

footer

---------------------------------------------- */
.pagetop {
  position: fixed;
  right: 15px;
  bottom: 15px;
  color: #2E60C6;
  font-size: 30px;
  transition: 0.3s;
}
.pagetop:hover {
  color: #4c8dcb;
}

.footer {
  display: block;
  padding: 80px 0 0;
}
@media (max-width: 431px) {
  .footer {
    padding: 60px 0 0;
  }
}
.footer .footer_top {
  display: block;
}
.footer .footer_top .cmn-contact-btn {
  background: linear-gradient(30deg, #0461BE 0%, #975DE6 40%, #5F9AD6 100%);
  background-position: 1% 50%;
  background-size: 250% auto;
  transition: all 0.2s ease-out;
  display: flex;
  align-items: center;
  height: 290px;
  width: 100%;
  border-radius: 0px 40px;
  padding: 5%;
}
@media (max-width: 769px) {
  .footer .footer_top .cmn-contact-btn {
    flex-direction: column;
  }
}
@media (max-width: 431px) {
  .footer .footer_top .cmn-contact-btn {
    padding: 40px 20px 20px;
    height: auto;
    border-radius: 0px 20px;
  }
}
.footer .footer_top .cmn-contact-btn:hover {
  background-size: 150% auto;
  background-position: 70% 50%;
}
.footer .footer_top .cmn-contact-btn:hover .cmn-contact-btn__arrow .btn--arrow {
  transform: scale(116%);
  background: #fff;
  color: #2E60C6;
}
.footer .footer_top .cmn-contact-btn__ttl {
  font-size: 4.2rem;
  font-family: "Audiowide", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  margin-right: 1em;
  letter-spacing: 0.1em;
}
@media (max-width: 769px) {
  .footer .footer_top .cmn-contact-btn__ttl {
    margin-right: auto;
    margin-bottom: 15px;
  }
}
@media (max-width: 431px) {
  .footer .footer_top .cmn-contact-btn__ttl {
    font-size: 3rem;
    margin-bottom: 15px;
  }
}
.footer .footer_top .cmn-contact-btn__txt {
  color: #fff;
  font-size: 1.7rem;
}
@media (max-width: 769px) {
  .footer .footer_top .cmn-contact-btn__txt {
    margin-right: auto;
  }
}
@media (max-width: 431px) {
  .footer .footer_top .cmn-contact-btn__txt {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
}
.footer .footer_top .cmn-contact-btn__arrow {
  margin-left: auto;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  display: flex;
  gap: 15px;
  align-items: center;
}
@media (max-width: 431px) {
  .footer .footer_top .cmn-contact-btn__arrow {
    font-size: 1.5rem;
  }
}
.footer .footer_top .cmn-contact-btn__arrow .btn--arrow {
  width: 60px;
  height: 60px;
  border: #fff 1px solid;
  font-size: 2.4rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
@media (max-width: 431px) {
  .footer .footer_top .cmn-contact-btn__arrow .btn--arrow {
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
  }
}
.footer .footer_top .cmn-contact-btn--hr {
  border-top: #D1D1D8 1px solid;
  width: 100%;
  margin-bottom: 80px;
}
@media (max-width: 431px) {
  .footer .footer_top .cmn-contact-btn--hr {
    margin-bottom: 50px;
  }
}
.footer .footer_btm {
  display: block;
  background: #1A1311;
  color: #fff;
  padding: 50px 0 20px;
  margin-top: 80px;
}
.footer .footer_btm .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.footer .footer_btm .container > div {
  display: flex;
  justify-content: center;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}
.footer .footer_btm .container > div a {
  color: #fff;
  font-size: 14px;
  line-height: 1em;
}
.footer .footer_btm .container > div a.line {
  text-decoration: underline;
}
.footer .footer_btm .container > div a.line:hover {
  text-decoration: none;
}
.footer .footer_btm .container > div a img {
  transition: 0.3s;
}
.footer .footer_btm .container > div a img:hover {
  opacity: 0.7;
}
.footer .footer_btm .container > div:nth-of-type(2) a {
  color: #fff;
  font-size: 14px;
  line-height: 1em;
}
.footer .footer_btm .container > div:nth-of-type(2) a img {
  transition: 0.3s;
  width: 20px;
  height: auto;
}
.footer .footer_btm .container > div:nth-of-type(2) a img:hover {
  opacity: 0.7;
}

.footer__copyright {
  padding-top: 25px;
  width: 100%;
  font-size: 1.3rem;
  display: block;
  text-align: center;
  margin: 0 auto;
}/*# sourceMappingURL=style.css.map */