@charset "UTF-8";
/*=======================================
	breakpoint
=======================================*/
/*=======================================
	hover
=======================================*/
/*=======================================
	中央配置
=======================================*/
/*=======================================
	可変レスポンシブ
=======================================*/
/* PC */
/* TB */
/* SP */
/*=======================================
	ブラウザ別
=======================================*/
/* Safari */
/* Firefox */
/*-------------------------
▼ 共通
- main_ttl

▼ 一覧
- category_area
- info_sec

▼ 詳細
- info_detail
-------------------------*/
/*=======================================
　main_ttl
=======================================*/
.main_ttl {
  background: url("../img/info/main_img.jpg") no-repeat #F5F4FB;
}
@media screen and (max-width: 768px) {
  .main_ttl {
    background: url("../img/info/main_img_sp.jpg") no-repeat;
  }
}

/*=======================================
　ttl_area
=======================================*/
.ttl_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px 11px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .ttl_area {
    gap: 10px;
  }
}
.ttl_area .date {
  font-size: 12px;
}
.ttl_area .category {
  font-size: 12px;
  height: 26px;
}

/* 一覧ページ
--------------------------------------------------------- */
/*=======================================
　category_area
=======================================*/
.category_area {
  width: 172px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: sticky;
  left: 0;
  top: 150px;
}
@media screen and (max-width: 768px) {
  .category_area {
    position: static;
    width: 78.9%;
    max-width: 273px;
    margin: 0 auto;
    display: inline-block;
    cursor: pointer;
    height: 47px;
    background: #fff;
  }
}
.category_area .category_list, .category_area .aco_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 10px;
}
@media screen and (max-width: 768px) {
  .category_area .category_list, .category_area .aco_content {
    gap: 0;
  }
}
.category_area .category_list {
  /* カテゴリ SP */
}
@media screen and (max-width: 768px) {
  .category_area .category_list > .category {
    border: 1px solid var(--main_purple) !important;
    border-radius: 5px;
  }
}
.category_area .category_list .category {
  width: 100%;
  height: 40px;
  border: 1px solid #e8e8e8;
  font-size: 16px;
  letter-spacing: 0.05em;
  padding: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .category_area .category_list .category {
    position: relative;
    display: block;
    font-size: 14px;
  }
}
.category_area .category_list .category.active {
  color: var(--main_purple);
  border: 1px solid var(--main_purple);
}
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  .category_area .category_list .category:hover {
    color: var(--main_purple);
    border: 1px solid var(--main_purple);
  }
}
@media (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
  .category_area .category_list .category:hover {
    color: var(--main_purple);
    border: 1px solid var(--main_purple);
  }
}
.category_area .category_list .category a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  -webkit-transition: none;
  transition: none;
}
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  .category_area .category_list .category a:hover {
    opacity: 1;
  }
}
@media (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
  .category_area .category_list .category a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .category_area .category_list .category a.active {
    background: none;
  }
}
.category_area .category_list .aco_open_btn {
  display: none;
}
@media screen and (max-width: 768px) {
  .category_area .category_list .aco_open_btn {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    display: inline-block;
    width: 50px;
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .category_area .category_list .aco_open_btn::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 48%;
    display: inline-block;
    width: 7px;
    height: 7px;
    border-top: 1px solid var(--main_purple);
    border-right: 1px solid var(--main_purple);
    -webkit-transform: translate(-50%, -50%) rotate(135deg);
            transform: translate(-50%, -50%) rotate(135deg);
  }
}
@media screen and (max-width: 768px) {
  .category_area .category_list .aco_content {
    display: none;
    border-radius: 5px;
    background: #fff;
    -webkit-filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
            filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
    will-change: filter;
  }
}
@media screen and (max-width: 768px) {
  .category_area .category_list .aco_content li .category {
    border: none;
  }
}
@media screen and (max-width: 768px) {
  .category_area .category_list .aco_content li:first-child .category a {
    border-radius: 5px 5px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .category_area .category_list .aco_content li:last-child .category a {
    border-radius: 0 0 5px 5px;
  }
}

/*=======================================
　info_sec
=======================================*/
.info_sec .inner .info_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 16.01%;
}
@media screen and (max-width: 1024px) {
  .info_sec .inner .info_wrap {
    gap: 0 5%;
  }
}
@media screen and (max-width: 768px) {
  .info_sec .inner .info_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 45px 0;
  }
}
.info_sec .inner .info_area {
  max-width: 735px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .info_sec .inner .info_area {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
.info_sec .inner .info_area .info_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 101px;
}
@media screen and (max-width: 768px) {
  .info_sec .inner .info_area .info_list {
    margin-bottom: 50px;
  }
}
.info_sec .inner .info_area .info_list li {
  width: 100%;
}
.info_sec .inner .info_area .info_list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  gap: 15px 38px;
  padding: 20px 0;
  border-bottom: 1px solid #e8e8e8;
}
@media screen and (max-width: 768px) {
  .info_sec .inner .info_area .info_list li a {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
.info_sec .inner .info_area .info_list li a .thumbnail {
  width: 168px;
  border: 1px solid var(--main_purple);
}
@media screen and (max-width: 768px) {
  .info_sec .inner .info_area .info_list li a .thumbnail {
    width: 120px;
  }
}
.info_sec .inner .info_area .info_list li a .thumbnail img {
  width: inherit;
  height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 168/124;
}
.info_sec .inner .info_area .info_list li a .ttl_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px 11px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .info_sec .inner .info_area .info_list li a .ttl_area {
    gap: 10px;
  }
}
.info_sec .inner .info_area .info_list li a .ttl_area .date {
  font-size: 12px;
}
.info_sec .inner .info_area .info_list li a .ttl_area .title {
  width: 100%;
  font-size: 18px;
  line-height: 1.666;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .info_sec .inner .info_area .info_list li a .ttl_area .title {
    font-size: 16px;
  }
}
.info_sec .inner .info_area .info_list li a .ttl_area .category {
  font-size: 12px;
  height: 26px;
}
.info_sec .inner .info_area .info_list li:first-child a {
  padding-top: 0;
}

/* 詳細ページ
--------------------------------------------------------- */
.mce-content-body {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .mce-content-body {
    margin-top: 20px;
  }
}

.info_detail .ttl_area {
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .info_detail .ttl_area {
    margin-bottom: 10px;
  }
}
.info_detail .ttl_area h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  width: 100%;
  padding-bottom: 15px;
  border-bottom: 1px solid #e8e8e8;
}
@media screen and (max-width: 768px) {
  .info_detail .ttl_area h2 {
    font-size: 18px;
    padding-bottom: 10px;
  }
}
.info_detail .tag_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  gap: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .info_detail .tag_area {
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
}
.info_detail .tag_area li:not(:last-child) {
  padding-right: 15px;
  position: relative;
}
.info_detail .tag_area li:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 12.33px;
  display: inline-block;
  background: #E8E8E8;
  position: absolute;
  top: 5px;
  right: 0;
}
.info_detail .tag_area li a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--main_purple);
}/*# sourceMappingURL=info.css.map */