@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500&display=swap');

/* common img
---------------------------- */
#g_head img,
#g_menu_toggle img,
#g_navi img,
.main_head img,
.foot_cv img,
#foot img {
  width: 100%;
  height: auto;
	vertical-align: bottom;
}

/* main_head
---------------------------- */
#main {
	letter-spacing: 0.05em;
	position: relative;
}
.breadcrumbs {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 96%;
}
.bana a {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.bana a:hover {
  opacity: .5
}
.main_head {
	text-align: center;
	background-color: #ffdfc2;
}
.main_head img {
	max-width: 1400px;
}
@media screen and (max-width:767px) {
	.breadcrumbs {
	  padding: 5px 0;
	  color: #fff;
	}
	.breadcrumbs ol li::after {
	  border-top: 1px solid #fff;
	  border-right: 1px solid #fff;
	}
}

/* section_list
---------------------------- */
#section_list {
	padding: 30px 0 70px;
}
#section_list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
}
#section_list ul li {
  width: 31%;
  border-bottom: 1px dotted #898b8c;
  padding: 40px 0 35px;
  margin: 0 3.5% 0 0;
}
#section_list ul li:nth-child(3n) {
  margin: 0;
}
#section_list ul li a {
  text-decoration: none;
  transition: all 0.3s;
}
#section_list ul li a:hover {
  opacity: 0.6;
}
#section_list ul li .img img {
  width: 100%;
}
#section_list ul li .title {
  color: #333;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
  padding-top: 15px;
}
#section_list ul li .date {
  color: #9c9c9c;
  font-size: 1.4rem;
  padding-top: 5px;
}
@media screen and (max-width:767px) {
	#section_list {
		padding: 5% 0 10%;
	}
	#section_list ul {
	  justify-content: space-between;
	}
	#section_list ul li {
	  width: 47.5%;
	  padding: 6% 0 5%;
	  margin: 0;
	}
	#section_list ul li .title {
	  font-size: 1.4rem;
	  line-height: 1.5;
	  padding-top: 10px;
	  font-weight: normal;
	}
	#section_list ul li .date {
	  font-size: 1.2rem;
	}
}

/* section_detail
---------------------------- */
#section_detail {
	padding: 70px 0;
}
#section_detail .title_box {
  margin-bottom: 60px;
}
#section_detail .title_box h1 {
  border-bottom: 5px solid #fc7215;
  padding-bottom: 20px;
}
#section_detail .title_box .sub {
  padding-top: 20px;
  font-size: 2rem;
}
#section_detail .title_box .name {
  font-size: 1.4rem;
  text-align: right;
  padding-top: 15px;
}
#section_detail .title_box .date {
  color: #9c9c9c;
  font-size: 1.4rem;
}
#section_detail .title_box .title {
  margin: 0;
  padding-top: 5px;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.6;
}
#section_detail .text_box {
  border-bottom: 1px solid #c8c8c8;
  font-size: 1.6rem;
}
#section_detail .text_box {
  padding-bottom: 60px;
}
#section_detail .text_box p {
  margin-bottom: 60px;
}
#section_detail .text_box strong {
	font-weight: bold;
}
#section_detail .text_box h2 {
	font-size: 2.4rem;
	font-weight: bold;
	border-left: 5px solid #fc7215;
	padding-left: 15px;
	line-height: 1.5;
	clear: both;
}
#section_detail .text_box h3 {
	font-size: 2rem;
	font-weight: bold;
}
#section_detail .text_box img {
  max-width: 100%;
}
#section_detail .text_box figure {
	display: inline-block;
}
#section_detail .text_box figure figcaption {
	font-size: 1.3rem;
	background-color: #f7f7f7;
	text-align: center;
	padding: 3px 5px;
}
.main_body .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 40px;
}
.main_body .nav .previous {
  width: 35%;
}
.main_body .nav .tolist {
  width: 30%;
  text-align: center;
}
.main_body .nav .next {
  width: 35%;
  text-align: right;
}
.main_body .nav a {
  color: #333;
  position: relative;
  font-size: 1.6rem;
  text-decoration: underline;
}
.main_body .nav a:hover {
  text-decoration: none;
}
.main_body .nav .previous a {
  padding-left: 30px;
}
.main_body .nav .previous a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  left: 7px;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #333;
  border-left: 2px solid #333;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.main_body .nav .next a {
  padding-right: 30px;
}
.main_body .nav .next a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  right: 7px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width:767px) {
	#section_detail {
		padding: 10% 0 10%;
	}
	#section_detail .title_box {
	  margin-bottom: 10%;
	}
	#section_detail .title_box .date {
	  font-size: 1.4rem;
	}
	#section_detail .title_box .title {
	  font-size: 2rem;
	  line-height: 1.4;
	}
	#section_detail .title_box .sub {
	  padding-top: 16px;
	  font-size: 1.6rem;
	  line-height: 1.4;
	}
	#section_detail .title_box .name {
	  font-size: 1.2rem;
	  text-align: left;
	}
	#section_detail .text_box {
	  font-size: 1.4rem;
	}
	#section_detail .text_box p {
	  margin-bottom: 10%;
	}
	#section_detail .text_box h2 {
		font-size: 2rem;
	}
	#section_detail .text_box h3 {
		font-size: 1.8rem;
	}
	.main_body .nav {
	  padding-top: 10%;
	}
	.main_body .nav a {
	  font-size: 1.4rem;
	}
	.main_body .nav .previous a {
	  padding-left: 25px;
	}
	.main_body .nav .previous a::after {
	  width: 8px;
	  height: 8px;
	}
	.main_body .nav .next a {
    padding-right: 25px;
	}
	.main_body .nav .next a::after {
	  width: 8px;
	  height: 8px;
	}
}
