@charset "utf-8";
/* ブログ一覧 */
.postpage {
  padding: 53px 133px 80px 133px;
}

.blog_title {
  letter-spacing: 0.1em;
  color: #0063B7;
  font-size: 35px;
  font-weight: 800;
  margin: 0 10px 0 15px;
}

.blog_sub_titile {
  font-size: 15px;
  color: #203258;
}

.d_inline {
  display: inline-block;
}

.blog {
  margin-top: 20px;
}
.blog .items ul {
  margin-bottom: 0;
  gap: 5px;
}
.blog .items ul.blog_block > li > a {
  display: block;
}
.inner_blog_list {
  display: flex;
  padding: 15px 10px;
  background: #fff;
  border-radius: 10px;
  gap: 15px;
}

.blog_thumbnail,
.blog_noimage_thumbnail {
  max-width: 100%;
  width: 140px;
  height: auto;
  object-fit: scale-down;
  object-position: 0 0;
}

.blog_wrapper {
  width: calc(100% - 155px);
  position: relative;
  padding-top: 20px;
}
.blog_list_title, .blog_cont_ja {
  word-break: break-all;
}
.blog_list_title {
  font-size: 16px;
  font-weight: bold;
  color: #203258;
  overflow: hidden;
  max-height: 3em;
  line-height: 1.5;
  -webkit-line-clamp: 2;
  display: box;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
}

.blog_cont_ja {
  margin-top: 10px;
  max-height: 3em;
  color: #203258;
  font-size: 12px;
  font-weight: 400;
  overflow: hidden;
  line-height: 1.5;
  -webkit-line-clamp: 2;
  display: box;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
}

.blog .items > ul > li {
  margin-bottom: 0;
  width: 100%;
  max-width: none;
}

.post_outer_area {
  border-radius: 10px;
  background-color: #ffffff;
  padding: 15px 80px 100px 80px ;
  position: relative;
}

.post_area {
  padding: 40px 0 5px;
}

.page_title {
  clear: both;
  text-align: center;
  font-size: 20px;
  height: 45px;
  border-bottom: 1px solid #f0f2f5;
  margin-top: 30px;
  padding-bottom: 30px;
  font-family: 'Noto Sans JP';
  font-size: 26px;
  font-weight: bold;
}

.blog_profile_outer {
  margin-top: 10px;
}
/* プロフィールアイコン */
.profile_icon {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  vertical-align: middle;
  object-fit: cover;
}

.profile_name {
  font-weight: 600;
  font-size: 11px;
  line-height: 25px;
  width: calc(100% - 30px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: middle;
  color: #203258;
}

.time_area {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  gap: 5px;
  align-items: center;
}

.blog_profile_area {
  display: flex;
  gap: 5px;
}

.time_text {
  color: #333333;
  font-weight: 400;
  font-size: 11px;
  line-height: 12px;
  vertical-align: top;
}

.clock_icon {
  width: 12px;
  height: 12px;
  vertical-align: bottom;
}

.no_blog_text {
  height: 100vh;
}

/* ページャーstr */
.next_button,
.prev_button {
  border: 2px solid #F0F2F5;
  border-radius: 10px;
  background-color: #FAFAFA;
  display: inline-block;
}

.right_arrow,
.left_arrow {
  text-indent: -9em;
  color: #175EA4;
  display: block;
  position: relative;
  overflow: hidden;
  width: 50px;
  height: 50px;
}
.right_arrow::before,
.left_arrow::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 17px;
  display: block;
  background: url(../img/arrow.svg) no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
}
.left_arrow::before {
  transform: rotate(180deg);
}


.page-numbers.current {
  color: #175EA4;
}

.page-numbers {
  color: #CED3DB;
  min-width: 40px;
  display: inline-block;
  line-height: 40px;
}
.prev.page-numbers,
.next.page-numbers {
  line-height: 1;
  margin: 0 10px;
}
.b_none {
  border: none;
}

.pnavi {
  margin-top: 40px;
  text-align: center;
  font-size: 15px;
}
.pnavi > div {
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ページャーend */

/* ブログ詳細 */
#main_col {
  margin: 53px auto 133px;
}

#left_col {
  background-color: #ffffff;
  padding: 76px 80px 90px 80px;
  border-radius: 20px;
  width: auto !important;
}

.article_profile_inner {
  display: inline-block;
  width: 100%;
}

.detail_thumbnail {
  max-width: 100%;
  width: 100%;
  height: 500px;
  border-radius: 20px;
}

.profile_user_name {
  margin-left: 11px;
  color: #203258;
  font-size: 15px;
  font-weight: bold;
}

.clock_wrapper {
  display: inline-block;
  margin-left: 40px;
}

.clock_text {
  font-size: 15px;
  font-weight: bold;
  color: #203258;
}

.post_title {
  margin-top: 60px;
  color: #203258;
  font-weight: bold;
  font-size: 30px;
  margin: 30px 0 40px 0 !important;
}

.content_outer {
  border-bottom: 1px solid gray;
  padding-bottom: 60px;
}

.post_content {
  margin-top: 40px;
}

.wpuf_customs {
  display: none;
}

.profile_area {
  display: flex;
  background-color: #F1F5F6;
  padding: 54px 64px;
  margin-top: 70px;
  border-radius: 10px;
}

.inner_profile {
  margin-left: 41px;
}

.avatar .profile_icon {
  width: 175px;
  height: 175px;
  border-radius: 50%;
  vertical-align: middle;
}

.profile_area_name {
  color: #203258;
  font-size: 36px;
  font-weight: bold;
}

.personal_info {
  clear: both;
  margin: 15px 0px;  
}

.personal_info_inner {
  margin: 10px 0 30px 0;  
  color: #203258;
  font-size: 16px;
  font-weight: 400;
}

.self_introduction {
  color: #203258;
  font-size: 12px;
  font-weight: 400;
}

.related_article_text {
  display: block;
  margin: 80px 0 30px 0;
  font-size: 26px;
  color: #203258;
  font-weight: bold;  
}

.detail_blog_items {
  height: 420px;
}

.blog_detail {
  max-width: 1100px;   
}

.blog_ul {
  justify-content: space-around;
}
/* ↓PC用 */
@media screen and (min-width: 1025px) {
/* ブログ一覧 */
.post_area .inner {
  max-width: 1120px;
}
.postpage {
  padding: 53px 133px 80px 133px;
}

.blog_title {
  letter-spacing: 6px;
  color: #0063B7;
  font-size: 60px;
  font-weight: 800;
  margin: 0;
}

.blog_sub_titile {
  font-size: 22px;
  margin-left: 16px;
  padding: 45px 0px;
}

.d_inline {
  display: inline-block;
}

.blog .items ul {
  gap: 20px;
}

.inner_blog_list {
  flex-direction: column;
  gap: 0;
  padding: 0;
}

.blog_thumbnail,
.blog_noimage_thumbnail {
  max-width: 100%;
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.blog_wrapper {
  padding: 28px 30px 30px;
  width: 100%;
  height: auto;
  box-sizing: border-box;
}

.blog_list_title {
  font-size: 24px;
  font-weight: bold;
  color: #203258;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: auto;
  display: block;
}

.blog_cont_ja {
  margin-top: 13px;
  height: 3em;
  color: #203258;
  font-size: 12px;
  font-weight: 400;
  overflow: hidden;
  line-height: 1.5;
}

.blog .items > ul > li {
  width: calc((100% - 20px) / 2);
}

.post_outer_area {
  border-radius: 10px;
  background-color: #ffffff;
  padding: 15px 80px 100px 80px ;
  position: relative;
}

.post_area {
  margin: 0;
  position: relative;
  padding: 40px 0 80px;
}

.page_title {
  clear: both;
  text-align: center;
  font-size: 20px;
  height: 45px;
  border-bottom: 1px solid #f0f2f5;
  margin-top: 30px;
  padding-bottom: 30px;
  font-family: 'Noto Sans JP';
  font-size: 26px;
  font-weight: bold;
}

.blog_profile_outer {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}
/* プロフィールアイコン */
.profile_icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.profile_name {
  font-weight: 600;
  font-size: 14px;
  width: 110px;
  line-height: 30px;
}

.time_area {
  position: relative;
}

.blog_profile_area {
  gap: 10px;
}

.time_text {
  color: #333333;
  font-weight: 400;
  font-size: 14px;
}

.clock_icon {
  width: 16px;
  height: 16px;
}

.no_blog_text {
  height: 100vh;
}

/* ページャーstr */
.next_button,
.prev_button {
  width: 50px;
  height: 50px;
  border: 2px solid #F0F2F5;
  border-radius: 10px;
  background-color: #FAFAFA;
  display: inline-block;
}

.right_arrow,
.left_arrow {
  color: #175EA4;
  font-size: 30px;
  display: block;
}

.page-numbers.current {
  color: #175EA4;
}

.page-numbers {
  margin: 0 5px;
  color: #CED3DB;
}

.b_none {
  border: none;
}

.pnavi {
  margin-top: 80px;
  text-align: center;
  font-size: 18px;
}
/* ページャーend */

/* ブログ詳細 */
#main_col {
  margin: 53px auto 133px;
}

#left_col {
  background-color: #ffffff;
  padding: 76px 80px 90px 80px;
  border-radius: 20px;
  width: auto !important;
}

.article_profile_inner {
  display: inline-block;
  width: 100%;
}

.detail_thumbnail {
  max-width: 100%;
  width: 100%;
  height: 500px;
  border-radius: 20px;
}

.profile_user_name {
  margin-left: 11px;
  color: #203258;
  font-size: 15px;
  font-weight: bold;
}

.clock_wrapper {
  display: inline-block;
  margin-left: 40px;
}

.clock_text {
  font-size: 15px;
  font-weight: bold;
  color: #203258;
}

.post_title {
  margin-top: 60px;
  color: #203258;
  font-weight: bold;
  font-size: 30px;
  margin: 30px 0 40px 0 !important;
}

.content_outer {
  border-bottom: 1px solid gray;
  padding-bottom: 60px;
}

.post_content {
  margin-top: 40px;
}

.wpuf_customs {
  display: none;
}

.profile_area {
  display: flex;
  background-color: #F1F5F6;
  padding: 54px 64px;
  margin-top: 70px;
  border-radius: 10px;
}

.inner_profile {
  margin-left: 41px;
}

.avatar .profile_icon {
  width: 175px;
  height: 175px;
  border-radius: 50%;
  vertical-align: middle;
}

.profile_area_name {
  color: #203258;
  font-size: 36px;
  font-weight: bold;
}

.personal_info {
  clear: both;
  margin: 15px 0px;  
}

.personal_info_inner {
  margin: 10px 0 30px 0;  
  color: #203258;
  font-size: 16px;
  font-weight: 400;
}

.self_introduction {
  color: #203258;
  font-size: 12px;
  font-weight: 400;
}

.related_article_text {
  display: block;
  margin: 80px 0 30px 0;
  font-size: 26px;
  color: #203258;
  font-weight: bold;  
}

.detail_blog_items {
  height: 420px;
}

.blog_detail {
  max-width: 1100px;   
}

.blog_ul {
  justify-content: space-around;
}
}


@media screen and (min-width: 960px) {
  .blog .items > ul > li {
    width: calc((100% - 40px) / 3);
  }
}