@charset "utf-8";

/*============================
タイトル
============================*/
.title_wrap {
  padding: 60px 0 10px 0;
  border-bottom: solid 1px var(--color-dark);
}


.title_wrap .en {
  font-size: 1rem;
  line-height: 1;
  color: var(--color-accent);
  font-family: var(--font-en);
}

.title_wrap .ja {
  margin-top: 5px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-dark);
}

/*============================
ブログ一覧
============================*/
.blog_list {
  margin: 0 auto;
}


.blog_list .in {
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 100px;
  padding-top: 40px;
}
@media screen and (max-width: 640px) {
  .blog_list .in {
    padding: 0 5% 100px 5%;
  }
}

.blog_list .lead {
  font-size: 16px;
  line-height: 2;
  text-align: center;
  margin-top: 40px;
}
@media screen and (max-width: 640px) {
  .blog_list .lead {
    font-size: 14px;
    text-align: left;
  }
}

.blog_list .category_wrap {
  margin-top: 40px;
}

.blog_list .category_list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
  padding-left: 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  .blog_list .category_list {
    gap: 10px 30px;
  }
}

.blog_list .category_list::before {
  content: '';
  position: absolute;
  top: 52%;
  left: 0;
  width: 12px;
  height: 12px;
  background: url(../img/icon_category.svg) no-repeat center center / contain;
  transform: translateY(-50%);
  z-index: 1;
}

@media screen and (max-width: 640px) {
  .blog_list .category_list::before {
    top: 10%;
    transform: translateY(0);
  }
}

.blog_list .category_item a {
  font-size: 16px;
  text-decoration: none;
  color: var(--color-dark);
}

.blog_list .category_item a:hover {
  opacity: 0.7;
}

.blog_list .list {
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  gap: 0 50px;
}

.blog_list .list .item {
  width: 30%;
  margin-bottom: 40px;
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 640px) {
  .blog_list .list .item {
    width: 100%;
  }
}
.blog_list .list .item a {
  text-decoration: none;
  color: var(--color-dark);
  display: block;
  transition: all 0.3s;
  position: relative;
  height: 100%;
  box-sizing: border-box;
}

.blog_list .list .item a::after {
  content: '';
  position: absolute;
  bottom: 20px;
  right: 15px;
  width: 35px;
  height: 8px;
  background: url(../img/icon_list_arrow.svg) no-repeat center center / contain;
  z-index: 1;
  transition: all 0.3s;
}

.blog_list .list .item a:hover::after {
  transform: translateX(5px);
  width: 30px;
}


.blog_list .list .item a:hover {
  opacity: 0.7;
}

.blog_list .list .item .ph_wrap {
  width: 100%;
  height: 170px;
  overflow: hidden;
}

@media screen and (max-width: 640px) {
  .blog_list .list .item .ph_wrap {
    height: 200px;
  }
}
.blog_list .list .item .ph_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog_list .list .item .text_wrap {
  padding: 15px 15px 30px;
  box-sizing: border-box;
  position: relative;
}



.blog_list .list .item .text_wrap .date_wrap {
  display: flex;
  align-items: center;
  font-weight: bold;
  gap: 20px;
  margin-bottom: 12px;
}

.blog_list .list .item .text_wrap .date_wrap .date {
  font-size: 15px;
  color: #a6a1a4;
  position: relative;
}

.blog_list .list .item .text_wrap .date_wrap .date::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -10px;
  width: 1px;
  height: 12px;
  background: #a6a1a4;
  transform: translateY(-50%);
}

.blog_list .list .item .text_wrap .date_wrap .date_category {
  font-size: 13px;
  color: #a6a1a4;
}

.blog_list .list .item .text_wrap .title {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-dark);
}



/*============================
詳細
============================*/
.blog_detail {
  padding-top: 60px;
}
@media screen and (max-width: 640px) {
  .blog_detail {
    padding-top: 0;
  }
}

.blog_detail .in {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .blog_detail .in {
    padding: 0 5% 100px 5%;
    padding-top: 40px;
  }
}

.blog_detail .cont_wrap {
  max-width: 800px;
  width: 100%;
  margin: auto;
  margin-bottom: 10px;
  margin-top: 40px;
}

/* 日付、カテゴリー */
.blog_detail .cont_wrap .cont_title_wrap .cate_wrap {
  display: flex;
  align-items: center;
  gap: 0 1px;
  padding-bottom: 15px;
}

.blog_detail .cont_wrap .cont_title_wrap .cate_wrap .date {
  font-size: 13px;
  color: #a6a1a4;
}

.blog_detail .cont_wrap .cont_title_wrap .cate_wrap .category {
  font-size: 13px;
  color: #a6a1a4;
}

.blog_detail .cont_wrap .cont_title_wrap .cate_wrap .category span {
  border-left: 1px solid #a6a1a4;
  display: inline-block;
  padding-left: 10px;
  margin-left: 10px;
}

/* タイトル */
.blog_detail .cont_wrap .cont_title_wrap .detail_title {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 1.65;
  margin-bottom: 25px;
  border: none;
  padding: 0;
}
@media screen and (max-width: 640px) {
  .blog_detail .cont_wrap .cont_title_wrap .detail_title {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

/* 写真 */
.blog_detail .cont_wrap img {
  width: 100%;
  margin-bottom: 40px;
}
@media screen and (max-width: 640px) {
  .blog_detail .cont_wrap img {
    margin-bottom: 14px;
  }
}

/* テキスト */
.blog_detail .cont_wrap h1 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  border-left: 5px solid #b7d100;
  padding: 1px 0 1px 15px;
  margin-bottom: 20px;
}
@media screen and (max-width: 640px) {
  .blog_detail .cont_wrap h1 {
    font-size: 22px;
    padding-bottom: 1px;
  }
}

.blog_detail .cont_wrap h2 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #246a8c;
}
@media screen and (max-width: 640px) {
  .blog_detail .cont_wrap h2 {
    font-size: 20px;
    padding-bottom: 10px;
  }
}

.blog_detail .cont_wrap h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 15px;
}
@media screen and (max-width: 640px) {
  .blog_detail .cont_wrap h3 {
    font-size: 18px;
    padding-bottom: 10px;
  }
}

.blog_detail .cont_wrap h4,
.blog_detail .cont_wrap h5,
.blog_detail .cont_wrap h6 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 10px;
}
@media screen and (max-width: 640px) {
  .blog_detail .cont_wrap h4 {
    font-size: 16px;
    padding-bottom: 10px;
  }
}

.blog_detail .cont_wrap p {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.07em;
  margin-bottom: 20px;
}
@media screen and (max-width: 640px) {
  .blog_detail .cont_wrap p {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

.blog_detail .cont_wrap ul {
  margin-bottom: 20px;
}

.blog_detail .cont_wrap ul.post-categories {
  margin-bottom: 0;
}

.blog_detail .cont_wrap li {
  line-height: 2;
}

.blog_detail .cont_wrap a {
  color: #246A8C;
  text-decoration: underline;
  word-break: break-all;
}

.blog_detail .cont_wrap a:hover {
  opacity: 0.7;
}

/* 一覧に戻る */
.blog_detail .cont_wrap .list_btn a {
  color: #fff;
  margin: 50px auto 0;
  text-decoration: none;
}

.blog_detail .cont_wrap .list_btn a:hover {
  color: #246A8C;
}



/*============================
お役立ち資料一覧
============================*/
.pdf_list {
  margin: 0 auto;
}

.pdf_list .in {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .pdf_list .in {
    padding: 0 5% 100px 5%;
    padding-top: 40px;
  }
}

.pdf_list .category_wrap {
  margin-top: 40px;
}

.pdf_list .category_list {
  display: flex;
  gap: 30px;
  position: relative;
  padding-left: 20px;
  box-sizing: border-box;
}

.pdf_list .category_list::before {
  content: '';
  position: absolute;
  top: 52%;
  left: 0;
  width: 12px;
  height: 12px;
  background: url(../img/icon_category.svg) no-repeat center center / contain;
  transform: translateY(-50%);
  z-index: 1;
}


.pdf_list .category_item a {
  font-size: 16px;
  text-decoration: none;
  color: var(--color-dark);
}

.pdf_list .category_item a:hover {
  opacity: 0.7;
}

.pdf_list .list {
  margin-top: 80px;
  margin-bottom: 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.pdf_list .list .item {
  width: 30%;
  margin-bottom: 40px;
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  height: 380px;
  position: relative;
}
@media screen and (max-width: 640px) {
  .pdf_list .list .item {
    width: 100%;
    height: auto;
  }
}
.pdf_list .list .item a {
  text-decoration: none;
  color: var(--color-dark);
  display: block;
  transition: all 0.3s;
  position: relative;
  height: 100%;
  box-sizing: border-box;
}

.pdf_list .list .item a:hover::after {
  transform: translateX(5px);
  width: 30px;
}


.pdf_list .list .item a:hover {
  opacity: 0.7;
}

.pdf_list .list .item .ph_wrap {
  width: 100%;
  height:215px;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .pdf_list .list .item .ph_wrap {
    height: auto;
  }
}

.pdf_list .list .item .ph_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdf_list .list .item .text_wrap {
  padding: 0 25px 30px;
  box-sizing: border-box;
}


.pdf_list .list .item .text_wrap .title {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-dark);
}

.pdf_list .list .item .text_wrap .btn {
  text-align: center;
  margin-top: 20px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  box-sizing: border-box;
  padding: 0 25px;
}
@media screen and (max-width: 640px) {
  .pdf_list .list .item .text_wrap .btn {
    position: static;
    transform: none;
  }
}

.pdf_list .list .item .text_wrap .btn span {
  background: #b7d100;
  color: #fff;
  width: 100%;;
  padding: 6px 20px 8px;
  border-radius: 30px;
  text-align: center;
  margin-top: 20px;
  display: block;
  position: relative;
  font-size: 18px;
  font-weight: 700;
}

.pdf_list .list .item .text_wrap .btn span::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url(../img/icon_pdf.png) no-repeat center center / contain;
  z-index: 1;
  transition: all 0.3s;
}


/*============================
お問い合わせフォーム
============================*/
.form_section .in {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .form_section {
    padding: 0 5% 100px 5%;
    padding-top: 40px;
  }
}


.contact_wrap {
  max-width: 1000px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 60px;
  padding-bottom: 100px;
}
@media screen and (max-width: 640px) {
  .contact_wrap {
    padding-top: 20px;
    padding-bottom: 0;
  }
}

.contact_wrap .doc {
  width: 60%;
}

@media screen and (max-width: 640px) {
  .contact_wrap .doc {
    width: 100%;
  }
}

.contact_wrap .doc .text_wrap {
  padding:0 40px;
  box-sizing: border-box;
}

@media screen and (max-width: 640px) {
  .contact_wrap .doc .text_wrap {
    padding:0 23px;
  }
}

.contact_wrap .doc .text_wrap .title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--color-dark);
  margin-bottom: 10px;
  border-left: 5px solid #b7d100;
  padding-left: 15px;
}

@media screen and (max-width: 640px) {
  .contact_wrap .doc .text_wrap .title {
    font-size: 18px;
  }
}

.contact_wrap .doc .text_wrap p {
  font-size: 16px;
  line-height: 2;
  color: var(--color-dark);
  margin-bottom: 10px;
}

@media screen and (max-width: 640px) {
  .contact_wrap .doc .text_wrap p {
    font-size: 14px;
  }
}

.contact_wrap .doc .ph_wrap {
  width: 100%;
}

.contact_wrap .doc .ph_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.contact_wrap .form_wrap {
  width: 40%;
  padding-top: 30px;
}

@media screen and (max-width: 640px) {
  .contact_wrap .form_wrap {
    width: 100%;
  }
}

.contact_wrap .lead {
  font-size: 16px;
  line-height: 2;
  text-align: center;
  padding-bottom: 50px;
}

@media screen and (max-width: 640px) {
  .contact_wrap .lead {
    font-size: 14px;
    text-align: left;
  }
}


/*============================
トップお知らせ一覧
============================*/
.top_blog_btn {
  text-align: center;
  margin-top: 20px;
}

.top_blog_btn a {
  text-decoration: none;
  font-size: 1rem;
  line-height: 1;
  color: var(--color-dark);
  background-color: #fff;
  padding: 7px 50px 9px 50px;
  border-radius: 50px;
  font-weight: 500;
}

.top_blog_btn a:hover {
  opacity: 0.7;
}

.top_blog_list {
  /* padding: 40px 5% 130px 5%; */
  background: #edeced;
}

.top_blog_list h2 {
  font-size: 1rem;
  line-height: 1;
  color: var(--color-accent);
  font-family: var(--font-en);
  text-align: center;
}
.top_blog_list h1 {
  margin-top: 15px;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--color-dark);
  text-align: center;
}

section.verticalbar.gray {
  background-color: #edeced;
}

section.verticalbar.gray img {
  margin-inline: auto;
  display: block;
}

@media screen and (max-width: 640px) {
  #topinc_area .in{
    padding: 40px 5% 130px 5%;
  }
}

@media print,
screen and (min-width:641px) {
	.pc_only {
		display: block !important;
	}

	.sp_only {
		display: none !important;
	}
}

@media print,
screen and (max-width: 640px) {
	.pc_only {
		display: none;
	}

	.sp_only {
		display: block;
	}
}


/*=======================
CMSページャー
=======================*/
.list_navi_wrap {
	text-align: center;
	font-size: 16px;
  font-family: "Josefin Sans", sans-serif;
	letter-spacing: 0.05em;
	padding:50px 0;
  margin-bottom: 80px;
}
@media screen and (max-width: 640px) {
	.list_navi_wrap {
		font-size: 14px;
		padding:20px 0 50px;
    margin-bottom: 40px;
	}
}

.list_navi_wrap .wp-pagenavi {
	display: flex;
	justify-content: center;
}

/* 現在のページ*/
.list_navi_wrap .wp-pagenavi .current {
	display: block;
	font-size: 20px;
	color: #FFF;
	width: 50px;
	line-height: 0;
	padding: 26px 0 12px;
	background-color: #b7d100;
	margin: 0 8px;
  border-radius: 50%;
}

@media screen and (max-width: 599px) {
	.list_navi_wrap .wp-pagenavi .current {
		font-size: 14px;
		width: 30px;
		padding: 15px 0 17px;
	}
}

/* 数字リンク*/
/*.list_navi_wrap .wp-pagenavi .page.larger {*/
.list_navi_wrap .wp-pagenavi .page {
	display: block;
	font-size: 20px;
	color: #000;
	width: 50px;
	line-height: 0;
	padding: 26px 0 12px;
	background-color: #F2F2F2;
	text-decoration: none;
	margin: 0 8px;
  border-radius: 50%;
}

@media screen and (max-width: 599px) {
	.list_navi_wrap .wp-pagenavi .page {
		font-size: 14px;
		width: 30px;
		padding: 15px 0 17px;
	}

	.list_navi_wrap .wp-pagenavi .page.larger {
		/* display: none; */
	}
}

.list_navi_wrap .wp-pagenavi .page.larger:hover {
	background-color: #333;
	color: #FFF;
}

/* 前のページ */
.list_navi_wrap .wp-pagenavi .previouspostslink {
	display: block;
	font-size: 20px;
	color: #333;
	line-height: 0;
	padding: 24px 0 26px 30px;
	text-decoration: none;
	margin: 0 8px;
	position: relative;
	border: none;
}

@media screen and (max-width: 599px) {
	.list_navi_wrap .wp-pagenavi .previouspostslink {
		font-size: 14px;
		padding: 15px 0 17px 25px;
		margin-right: 15px;
	}
}

.list_navi_wrap .wp-pagenavi .previouspostslink::before {
	content: "";
	width: 10px;
	height: 16px;
	background-image: url(../img/common/icon_prev.svg);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	left: 0;
	top: 47%;
	transform: translateY(-50%);
	transition: all 0.3s;
}

@media screen and (max-width: 599px) {
	.list_navi_wrap .wp-pagenavi .previouspostslink::before {
		height: 14px;
		top: 46%;
	}
}

.list_navi_wrap .wp-pagenavi .previouspostslink:hover {
	color: #1E77C3;
}

.list_navi_wrap .wp-pagenavi .previouspostslink:hover::before {
	left: -6px;
}

/* 次のページ */
.list_navi_wrap .wp-pagenavi .nextpostslink {
	display: block;
	font-size: 20px;
	color: #333;
	line-height: 0;
	padding: 24px 0 26px 20px;
	text-decoration: none;
	margin: 0 8px;
	position: relative;
	border: none;
}

@media screen and (max-width: 599px) {
	.list_navi_wrap .wp-pagenavi .nextpostslink {
		font-size: 14px;
		padding: 15px 0 17px 0;
		margin-left: 15px;
	}
}

.list_navi_wrap .wp-pagenavi .nextpostslink::after {
	content: "";
	width: 10px;
	height: 16px;
	background-image: url(../img/common/icon_next.svg);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	right: 0;
	top: 47%;
	transform: translateY(-50%);
	transition: all 0.3s;
}

@media screen and (max-width: 599px) {
	.list_navi_wrap .wp-pagenavi .nextpostslink::after {
		height: 14px;
		top: 46%;
	}
}

.list_navi_wrap .wp-pagenavi .nextpostslink:hover {
	color: #1E77C3;
}

.list_navi_wrap .wp-pagenavi .nextpostslink:hover::after {
	right: -6px;
}


/* お知らせ詳細ページ下部のナビ */
.news_page_navi_wrap {
	margin-top: 60px;
  margin-bottom: 80px;
	padding: 35px 0;
  margin-bottom: 80px;
}
@media screen and (max-width: 640px) {
	.news_page_navi_wrap {
		margin-top: 20px;
		padding: 35px 0;
    margin-bottom: 40px;
	}
}

.news_page_navi_wrap .list {
	display: flex;
	flex-wrap: wrap;
  justify-content: center;
  gap: 0 50px;
}
@media screen and (max-width: 640px) {
  .news_page_navi_wrap .list {
    gap: 0 30px;
  }
}

.news_page_navi_wrap .list .link {
}

.news_page_navi_wrap .list .link a {
	color: #111;
	font-size: 14px;
	letter-spacing: 0.075em;
	text-decoration: none;
}

@media screen and (max-width: 640px) {
	.news_page_navi_wrap .list .link a {
		font-size: 13px;
		letter-spacing: 0.05em;
	}
}

.news_page_navi_wrap .list .link a:hover {
	color: #b7d100;
}

.news_page_navi_wrap .list .link.prev {
	text-align: right;
}

@media screen and (max-width: 640px) {
	.news_page_navi_wrap .list .link.prev {
		text-align: left;
	}
}

.news_page_navi_wrap .list .link.prev a::before {
	content: "";
	width: 20px;
	height: 14px;
	background-image: url(../img/icon_prev.svg);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	padding-right: 8px;
	position: relative;
	top: 2px;
	left: 0;
	transition: all 0.3s;
}

@media screen and (max-width: 640px) {
	.news_page_navi_wrap .list .link.prev a::before {
		width: 12px;
		height: 12px;
		padding-right: 6px;
	}
}

.news_page_navi_wrap .list .link.home {
	text-align: center;
}

.news_page_navi_wrap .list .link.home a::before {
	content: "";
	width: 20px;
	height: 14px;
	background-image: url(../img/icon_home.svg);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	padding-right: 8px;
	position: relative;
	top: 2px;
	left: 0;
	transition: all 0.3s;
}

@media screen and (max-width: 640px) {
	.news_page_navi_wrap .list .link.home a::before {
		width: 12px;
		height: 12px;
	}
}

.news_page_navi_wrap .list .link.next {
	text-align: left;
}

@media screen and (max-width: 640px) {
	.news_page_navi_wrap .list .link.next {
		text-align: right;
	}
}

.news_page_navi_wrap .list .link.next a::after {
	content: "";
	width: 20px;
	height: 14px;
	background-image: url(../img/icon_next.svg);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	padding-left: 8px;
	position: relative;
	top: 2px;
	right: 0;
	transition: all 0.3s;
}

@media screen and (max-width: 640px) {
	.news_page_navi_wrap .list .link.next a::after {
		width: 12px;
		height: 12px;
		padding-left: 6px;
	}
}