@charset "utf-8";
/*お知らせの個別ページ*/
/*全体のレイアウト*/
.main, .home-main {
  display: block;
  width: 100%;
  padding-top: 48px;
  margin-top: 87px;
  
}

.box-white {
  margin-left: 20%;
  margin-right: -20%;
  padding: 60px 6.551% 92px;
  margin-bottom: 74px;
  background-color: #f7f9ff;
  border-radius: 10px;
}


.box-white.is-page404 {
  padding-top: 56px;
  padding-bottom: 56px;
}

@media screen and (max-width: 768px) {
  .main {
    width: 100%;
  }

  .box-white {
  width: 90%;
  margin: 10px 10px 10px 0;
  }

}

.news-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.news-wrapper .box-white {
  padding: 26px 7.282% 50px;
}
.news-wrapper .main-content {
  width: 61.551%;
}

/*見出し　テキストの装飾*/
.post .box-white {
  padding-right: 5.882%;
  padding-left: 5.882%;
}

/*日付の部分*/
.post-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2px;
  font-size: 0.875rem;
  color: #555555;
}
.post-header time {
  margin-bottom: 0.5em;
}
.post-header .cat-list {
  font-size: 0.875rem;
}

.post-header .cat-list > li {
  padding-right: 18px;
  padding-left: 18px;
}
/*h1タイトル*/
.post-title {
  margin-bottom: 0.718em;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.468;
}
@media screen and (max-width: 768px) {
  .post-title {
    font-size: 1.375rem;
  }
}

/*本文*/
.post-wrapper {
  line-height: 1.75;
  letter-spacing: 0.11em;
}
.post-wrapper > * {
  margin-bottom: 36px;
}
.post-wrapper h2 {
  padding-left: 1.166em;
  margin-bottom: 1.5em;
  border-left: 3px solid #419bc8;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  color:#419bc8;
}
@media screen and (max-width: 768px) {
  .post-wrapper h2 {
    font-size: 1.125rem;
  }
}
.post-wrapper h3 {
  padding: 10px 4.444%;
  margin-bottom: 1.318em;
  background-color: #419bc8;
  border-radius: 10px;
  font-size: 1.375rem;
  font-weight: bold;
  color: #fffcfc;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .post-wrapper h3 {
    font-size: 1rem;
  }
}
.post-wrapper .images-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.post-wrapper .images-wrapper.col2 {
  margin-bottom: 0;
}
.post-wrapper .images-wrapper.col2 > a {
  width: 47.46%;
  margin-bottom: 36px;
}


li {
  list-style: none;
}

/*パンくずリスト*/
.c-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    padding-top: 150px;
    font-size: 0.875rem;
    color: #6C6C6C;
    line-height: 3.2;
  }

  .c-breadcrumbs > li {
    display: inline-block;
    position: relative;
  }
  .c-breadcrumbs > li:not(:last-of-type)::after {
    content: ">";
    display: inline-block;
    margin-right: 0.5em;
    margin-left: 0.5em;
  }

.content-title, .page-title {
   
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.45em;
    position: relative;
    top: 150px;
  }

  .cat-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    font-size: 0.8125rem;
    color: #555555;


  }
  .cat-list > li {
    min-width: 40px;
    padding: 5px;
    margin-bottom: 0.5em;
    background-color: #F3F3F3;
    border-radius: 5px;
    text-align: center;
    line-height: 1;
    

  }
  .cat-list > li:not(:last-of-type) {
    margin-right: 0.923em;
  }
.inner.is-small {
    max-width: calc(1160px + 8%);
  }
  

 
/*ページナビゲーション*/
  .page-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
    margin-top: 28px;
    border-top: 1px dashed #666666;
    border-bottom: 1px dashed #666666;
    font-size: 0.875rem;
    font-weight: 500;
    color: #666666;
  }
  @media screen and (max-width: 768px) {
    .page-nav {
      font-size: 0.8125rem;
    }
  }
  .page-nav > li {
    min-width: 5em;
  }
  .page-nav > li:first-of-type a::after {
    right: auto;
    left: 0;
    transform: translateY(-50%) rotate(-135deg);
  }
  .page-nav a {
    display: inline-block;
    min-width: 5em;
    padding: 5px 14px;
    position: relative;
  }
  .page-nav a.to-archive {
    font-weight: bold;
    color: #333;
  }
  .page-nav a.to-archive::after {
    content: none;
  }
  .page-nav a::after {
    content: "";
    width: 6px;
    height: 6px;
    border-top: 1px solid #666666;
    border-right: 1px solid #666666;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(45deg);
  }