@charset "UTF-8";
/* CSS Document */
/*	お知らせ レイアウト
---------------------------------*/
/*	お知らせ一覧
---------------------------------*/
.c-column {
  padding: 8rem 0 5rem
}
.c-column__inner {
  display: flex;
  justify-content: center;
  gap: 20px 60px;
}
.c-column__ttl {
  margin-top: .5rem;
  font-size: 2.4rem;
  font-weight: 400;
}
.c-column__subttl {
  font-size: 6rem;
  letter-spacing: 2px;
  line-height: 1;
}
.c-column-ttlWrap {
  width: 200px;
  max-width: 20%;
}
.c-column-ctsWrap {
  width: calc(100% - 20% - 60px)
}
.c-column-ctsWrap-item {}
.c-column-ctsWrap-item a {
  padding: 4rem 6.5rem 4rem 3rem;
  border-bottom: 1px solid #333;
  display: flex;
  align-items: center;
  position: relative
}
.c-column__btn a {}
@media screen and (min-width: 768px) {
  .c-column-ctsWrap-item a time {
    margin-right: 2rem;
    padding-right: 2rem;
    border-right: 1px solid #333;
  }
}
.c-column-ctsWrap-item:first-child a {
  border-top: 1px solid #333
}
.c-column-ctsWrap-item a::after {
  width: 25px;
  height: 6px;
  content: '';
  background: url(../images/c_arrow-r.svg) center center / contain no-repeat;
  position: absolute;
  right: 30px;
}
@media screen and (max-width: 1024px) {
  .c-column {
    padding: 4rem 0 6rem
  }
  .c-column__inner {
    gap: 50px;
  }
  .c-column-ttlWrap {
    width: 200px;
    max-width: 20%;
  }
  .c-column-ctsWrap {
    width: calc(100% - 20% - 50px)
  }
  .c-column-ctsWrap-item a {
    padding: 2rem 4.5rem 2rem 0;
  }
  .c-column-ctsWrap-item a::after {
    right: 10px;
  }
}
@media only screen and (max-width:959px) {
  .c-column__ttl {
    font-size: 2rem;
  }
  .c-column__subttl {
    font-size: 6vw;
  }
}
@media only screen and (max-width: 767px) {
  .c-column {
    padding: 4rem 0 2rem
  }
  .c-column__subttl {
    font-size: 8vw
  }
  .c-column__ttl {
    font-size: 1.6rem
  }
  .c-column__inner {
    flex-direction: column;
  }
  .c-column-ttlWrap {
    width: 100%;
    max-width: 100%;
  }
  .c-column-ctsWrap {
    width: 100%;
  }
  .c-column-ctsWrap-item a {
    padding: 2rem 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  .c-column-ctsWrap-item a::after {
    right: 5px;
    top: 28px;
  }
}
/*	お知らせ（記事）
---------------------------------*/
@media only screen and (min-width: 768px) {
  .p-post {
    width: 980px;
    max-width: 100%;
    margin: 0 auto;
    padding: 6rem;
    background: #fff;
    border: 1px solid
  }
}
.c-column__wrap--single .p-post {
  padding: 8rem;
}
.p-post-head__ttl {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid;
  font-size: 3rem;
  font-weight: 600;
}
.p-post-head__info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
}
.p-post-head__date {
  margin-right: 1rem;
  color: #ABAAAC;
  font-size: 1.4rem;
  font-family: serif;
}
.p-post-head__img {
  width: 100%;
  height: auto;
  margin: 3rem 0;
}
.p-post-cts {
  margin-top: 4rem
}
.p-post-cts h2 {
  margin-top: 7rem;
  font-size: 2.4rem;
  font-weight: 600;
  position: relative
}
.p-post-cts h2:after {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 1px;
  background-color: var(--border_c);
  ;
  content: "";
}
.p-post-cts h3 {
  margin-top: 5rem;
  font-size: 2.2rem;
  font-weight: 600;
  position: relative
}
.p-post-cts h3:after {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 80px;
  height: 1px;
  background-color: var(--border_c);
  ;
  content: "";
}
.p-post-cts h2 + *, .p-post-cts h3 + * {
  margin-top: 4rem !important
}
.p-post-cts h4, .p-post-cts h5, .p-post-cts h6 {
  margin-top: 5rem;
  font-size: 2rem;
  font-weight: 600;
  color: var(--main)
}
.p-post-cts img, .p-post-cts figure {
  max-width: 100%;
  width: 400px;
  margin: 4rem auto;
  display: block;
}
.p-post-cts img.w100 {
  max-width: 100%;
  width: 100%;
}
.p-post-cts figure img {
  margin-top: 0 !important
}
.p-post-cts p {
  margin-top: 2rem;
  line-height: 2
}
.p-post-cts ul, .p-post-cts ol {
  margin-top: 2rem;
  padding: 1.5rem 3rem 2.5rem 5rem;
  background: #fff;
  font-weight: 600;
}
.p-post-cts ul {
  list-style: disc;
}
.p-post-cts ol {
  list-style: auto;
}
.p-post-cts ul li, .p-post-cts ol li {
  margin-top: 1rem;
  background: #fff;
  font-weight: 600;
  line-height: 1.35
}
.p-post-cts .wp-block-button a {
  width: 50%;
  max-width: 350px;
  height: 60px;
  margin: 3rem auto;
  background: var(--main);
  border-radius: 2px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .post {
    padding-top: 0
  }
  .post > .l-container {
    padding: 0
  }
  .p-post, .c-column__wrap--single .p-post {
    padding: 0
  }
  .p-post-head__ttl {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    font-size: 2.2rem
  }
  .p-post-cts {
    margin-top: 0
  }
  .p-post-cts h2 {
    margin-top: 5.5rem
  }
  .p-post-cts h3 {
    margin-top: 4rem
  }
  .p-post-cts h4, .p-post-cts h5, .p-post-cts h6 {
    margin-top: 3rem
  }
  .p-post-cts img, .p-post-cts figure {
    margin: 2rem auto;
  }
}
/*	お知らせ（記事）目次
---------------------------------*/
#toc_container {
  width: 100% !important;
  background: #f9F9F9;
  border: 1px solid var(--border_c);
  padding: 2rem 2rem 2rem;
  margin-bottom: 7rem;
  display: table;
}
#toc_container p.toc_title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0;
}
#toc_container p.toc_title a {
  margin-left: .5rem;
  color: var(--main);
  font-size: 1.5rem;
  text-decoration: underline
}
#toc_container p.toc_title .toc_toggle span {
  display: none
}
.p-post-cts .toc_list {
  margin-top: 1rem;
  padding: 1rem 2rem 2rem;
  list-style: none !important
}
.p-post-cts .toc_list ul {
  margin-top: 0;
  padding: 0 2rem 1rem;
  list-style: none !important
}
.p-post-cts .toc_list ul li {
  margin-top: .8rem;
  font-size: 95%
}
.p-post-cts .toc_list a {
  font-weight: 500;
  display: block;
}
.p-post-cts .toc_list a:hover {
  color: var(--main);
  opacity: 1
}
@media only screen and (max-width: 767px) {
  #toc_container {
    margin-bottom: 4rem
  }
}
/*	お知らせ（記事）装飾
---------------------------------*/
/** テーブル（デフォルト） **/
.js-scrollable {
  width: 100% !important;
  padding: 1.5rem 1.5rem 1rem;
  background: #fff;
  font-size: 1.5rem;
}
.js-scrollable > * {
  margin-top: 0 !important
}
.p-post-cts table {
  width: 100%;
  margin-top: 3rem;
  background: #fff;
  border-collapse: collapse;
  word-break: break-all
}
.p-post-cts table th, .p-post-cts table td {
  padding: 1.5rem 2rem;
  border: 1px solid #F6F4EF
}
.p-post-cts table th {
  min-width: 155px;
  background-color: #EFEADE;
  font-weight: 600;
}
.p-post-cts table + figcaption {
  margin-top: 1rem !important;
  color: var(--gray);
  font-size: 1.2rem;
}
@media only screen and (max-width: 767px) {
  .js-scrollable {
    padding: .5rem .5rem .5rem;
  }
}
/*	ページャー（ページネーション）
---------------------------------*/
.pager {}
.pagination {
  width: 100%;
  max-width: 680px;
  margin: 10rem auto 0
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px
}
.page-numbers {
  max-width: 185px;
  height: 45px;
  padding: 0 1.7rem;
  background: var(--main);
  border: 1px solid var(--main);
  border-radius: 2px;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-numbers.dots {
  padding: 0 .5rem;
  color: var(--main);
  background: none;
  border: none
}
a.page-numbers {
  background: #fff;
  color: var(--main);
  position: relative
}
a.page-numbers.next {
  width: 100%;
  padding: 0 2rem 0 1rem;
}
a.page-numbers.next::after {
  width: 15px;
  height: 10px;
  content: '';
  background: url(../images/c_arrow-r.svg) center center / contain no-repeat;
  position: absolute;
  right: 15px;
}
a.page-numbers.prev {
  width: 100%;
  padding: 0 1rem 0 2rem;
}
a.page-numbers.prev::after {
  width: 15px;
  height: 10px;
  content: '';
  background: url(../images/c_arrow-r.svg) center center / contain no-repeat;
  transform: rotate(180deg);
  position: absolute;
  left: 15px;
}
a.page-numbers:hover {
  background: var(--main);
  color: #fff;
  opacity: 1
}
a.page-numbers:hover::after, a.page-numbers:hover::after {
  background-image: url("../images/c_arrow-r--white.svg")
}
@media only screen and (max-width: 767px) {
  .pagination {
    margin-top: 4rem
  }
  .nav-links {
    flex-wrap: wrap;
    gap: 20px 10px;
  }
  .page-numbers {
    order: 1
  }
  a.page-numbers.prev {
    order: 2;
    width: calc((100% - 10px) / 2);
  }
  a.page-numbers.next {
    order: 3;
    width: calc((100% - 10px) / 2);
  }
}
/*	お知らせ一覧へ戻るボタン
---------------------------------*/
.back-to-list {
  max-width: 450px;
  margin: 4rem auto 0;
  padding: 0 2rem;
}
.back-to-list a {
  width: 100%;
  height: 60px;
  padding: 0 1rem;
  background: var(--main);
  border: 1px solid var(--main);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.back-to-list a:hover {
  background: #fff;
  color: var(--main);
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .back-to-list a {
    font-size: 1.6rem
  }
}