@charset "UTF-8";
/* Zen Kaku Gothic Antique */
/* Montserrat */
/* 【ホバーアクション】下線が出てくる
  ・aタグにhov_lineをつける
  ・白線の場合hov_line_white
---------------------------------------------------------- */
.hov_line, .hov_line_white {
  position: relative;
  display: inline-block;
}
.hov_line::before, .hov_line_white::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 1px;
  background-color: #3D434E;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.3, 1), -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
}
@media (hover: hover) {
  .hov_line:hover::before, .hov_line_white:hover::before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
}

.hov_line_white::before {
  background-color: #fff;
}

/* ==========================================================================//
//
// 新着情報
//
// ========================================================================== */
/* カテゴリ(プルダウンメニュー)
---------------------------------------------------------- */
.info_category {
  position: relative;
  z-index: 1;
  font-weight: bold;
  width: min(220px, 100%);
}
@media all and (min-width: 751px) {
  .info_category {
    font-size: 14px;
  }
}
.info_category p {
  padding: 5px 90px 5px 67px;
  cursor: pointer;
  display: block;
  position: relative;
  border: 1px solid #3D434E;
  border-radius: 5px;
  font-size: 12px;
}
@media all and (min-width: 751px) {
  .info_category p {
    padding: 10px 90px 10px 67px;
    font-size: 14px;
  }
}
.info_category p::after {
  position: absolute;
  content: "";
  background-image: url(../../images/information/ico_triangle.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 15px;
  height: 12px;
  top: 50%;
  right: 33%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media all and (min-width: 751px) {
  .info_category p::after {
    right: 28%;
  }
}
.info_category .category_list {
  margin-top: 10px;
  padding: 15px 20px;
  position: absolute;
  background-color: #fff;
  border: 1px solid #3D434E;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media all and (min-width: 751px) {
  .info_category .category_list {
    top: 50px;
    left: 0;
    padding: 20px;
  }
}
.info_category .category_list.cate_open {
  opacity: 1;
  visibility: visible;
}
.info_category .category_list .category_item:not(:first-child) {
  margin-top: 10px;
}
.info_category .category_list .category_item a {
  font-size: 12px;
}
@media all and (min-width: 751px) {
  .info_category .category_list .category_item a {
    font-size: 14px;
  }
}

/* 一覧ページ
---------------------------------------------------------- */
.information_list {
  margin-top: 30px;
}
@media all and (min-width: 751px) {
  .information_list {
    margin-top: 40px;
  }
}
.information_list .information_item a {
  padding: 35px 0;
}
@media all and (min-width: 751px) {
  .information_list .information_item a {
    padding: 44px 0 48px;
  }
}

/* 詳細ページ
---------------------------------------------------------- */
.single {
  /* 前の記事と後の記事に遷移するためのボタン */
}
.single .information_ttl {
  margin: 24px 0 45px;
  padding-bottom: 45px;
  display: inline-block;
  font-size: 18px;
  border-bottom: 1px solid #D0D3CE;
  width: 100%;
}
@media all and (min-width: 751px) {
  .single .information_ttl {
    margin: 32px 0 64px;
    padding-bottom: 64px;
    font-size: 28px;
  }
}
.single .single_contents h2.wp-block-heading {
  margin-bottom: 45px;
  font-size: 18px;
}
@media all and (min-width: 751px) {
  .single .single_contents h2.wp-block-heading {
    margin-bottom: 32px;
    font-size: 28px;
  }
}
.single .single_contents h3.wp-block-heading {
  margin-bottom: 43px;
  font-size: 16px;
}
@media all and (min-width: 751px) {
  .single .single_contents h3.wp-block-heading {
    margin-bottom: 30px;
    font-size: 26px;
  }
}
.single .single_contents h4.wp-block-heading {
  margin-bottom: 41px;
  font-size: 14px;
}
@media all and (min-width: 751px) {
  .single .single_contents h4.wp-block-heading {
    margin-bottom: 28px;
    font-size: 24px;
  }
}
.single .single_contents h5.wp-block-heading {
  margin-bottom: 39px;
  font-size: 14px;
}
@media all and (min-width: 751px) {
  .single .single_contents h5.wp-block-heading {
    margin-bottom: 26px;
    font-size: 22px;
  }
}
.single .single_contents h6.wp-block-heading {
  margin-bottom: 37px;
  font-size: 14px;
}
@media all and (min-width: 751px) {
  .single .single_contents h6.wp-block-heading {
    margin-bottom: 24px;
    font-size: 22px;
  }
}
.single .single_contents p:not(:first-child) {
  margin-top: 20px;
}
.single .single_contents p a {
  position: relative;
  display: inline-block;
}
.single .single_contents p a::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 1px;
  background-color: #3D434E;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.3, 1), -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
}
@media (hover: hover) {
  .single .single_contents p a:hover::before {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
}
.single .prev_next {
  margin-top: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  /* 前へ */
  /* 次へ */
}
@media all and (min-width: 751px) {
  .single .prev_next {
    margin-top: 100px;
  }
}
.single .prev_next .prev a,
.single .prev_next .prev .nopage,
.single .prev_next .next a,
.single .prev_next .next .nopage {
  position: absolute;
  background-image: url(../../images/information/ico_information_arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 48px;
  height: 48px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media all and (min-width: 751px) {
  .single .prev_next .prev a,
  .single .prev_next .prev .nopage,
  .single .prev_next .next a,
  .single .prev_next .next .nopage {
    width: 70px;
    height: 70px;
  }
}
.single .prev_next .prev a {
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (hover: hover) {
  .single .prev_next .prev a:hover {
    right: -10px;
  }
}
.single .prev_next .prev .nopage {
  right: 0;
  opacity: 0.5;
}
.single .prev_next .next a {
  left: 0;
  -webkit-transform: translateY(-50%) rotate(-180deg);
          transform: translateY(-50%) rotate(-180deg);
}
@media (hover: hover) {
  .single .prev_next .next a:hover {
    left: -10px;
  }
}
.single .prev_next .next .nopage {
  left: 0;
  -webkit-transform: translateY(-50%) rotate(-180deg);
          transform: translateY(-50%) rotate(-180deg);
  opacity: 0.5;
}
.single .prev_next .all_btn {
  padding: 17px 54px;
  border: none;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media all and (min-width: 751px) {
  .single .prev_next .all_btn {
    padding: 22px 70px;
  }
}
.single .prev_next .all_btn::after {
  display: none;
}
@media (min-width: 751px) and (hover: hover) {
  .single .prev_next .all_btn:hover {
    opacity: 0.6;
  }
}
/*# sourceMappingURL=information.css.map */