/* ヘッダー */
#head h2.news{
  background: url("../images/h2_g_news.png")center center no-repeat;
  height: 46px;
  width: 100%;
  text-indent: -9999px;
  margin-top: 110px;
}
#news{background: none;}

#head{
	background: url(../images/h2_back_g.png) center center;
}

/*
========================================
　　　　　　▼色指定▼
========================================*/
    /*赤*/ .c_01 { color: #CC0000; }
    /*青*/ .c_02 { color: #0066CC; }
    /*紫*/ .c_03 { color: #9933CC; }
    /*緑*/ .c_04 { color: #339900; }
    /*黒*/ .c_05 { color: #000000; }
    /*灰*/ .c_06 { color: #999999; }
    /*茶*/ .c_07 { color: #993300; }
    /*紺*/ .c_08 { color: #003399; }
    /*橙*/ .c_09 { color: #FF6600; }
    /*空*/ .c_10 { color: #6699FF; }
    /*桃*/ .c_11 { color: #FF6699; }

    /*太*/ .c_bold { font-weight: bold; }

    /*斜*/ .c_obli {
      font-style: oblique;
    }

    /*サイズ*/
    .c_size1 { font-size: 12px; }
    .c_size2 { font-size: 14px; }
    .c_size4 { font-size: 16px; }
    .c_size5 { font-size: 18px; }
    .c_size6 { font-size: 20px; }
    .c_size7 { font-size: 22px; }


/*記事個別*/
#news{
	padding-bottom: 50px;
}

#news section{
	width: 1050px;
	padding-top: 50px;
	margin: 0 auto 50px auto;
}
#news section .day{
    font-family: 'Montserrat', sans-serif;
	font-weight: bold;
}
#news section .mida p{
	font-weight: bold;
	color: #22AC38;
}
#news section .img{
	width: 100%;
	text-align: center;
	background: #F0F0F0;
	margin-bottom: 30px;
}
#news section .img img{
	max-width: 100%;
	/* min-width: 100%; */
}
#news section .text{line-height: 1.5em;}

.f_sec{
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
}
.f_sec .arrow{
	width: 30px;
	height: 100%;
}

.f_sec .prev .arrow{background: url(../images/g_news_prev.png) center center no-repeat;}
.f_sec .next .arrow{background: url(../images/g_news_next.png) center center no-repeat;}

.f_sec .prev a,
.f_sec .next a{
	display: flex;
	align-items: center;
	width: 100%; height: 100%;
	color: #000;
	background: #F0F0F0;}

.f_sec .prev .img,
.f_sec .next .img{
	width: 150px;
	height: 150px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.f_sec .prev .img img,
.f_sec .next .img img{
	max-width: 100%;
	max-height: 100%;
}
.f_sec .img.blank{
	background: url(../images/g_news_blank.png) center center no-repeat;
	background-size: 80% auto;
}
.f_sec p{
	padding: 10px;
	width: 320px;
	font-weight: bold;
}

/*新着情報一覧*/
#news_wrap{
	padding-top: 50px;
	margin: 0 auto 10px auto;}
#news_wrap section{box-shadow: 0 3px 6px rgba(0,0,0,0.16);}
#news_wrap section .img{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #F0F0F0;
}
#news_wrap section .img.blank{
	background: url(../images/g_news_blank.png) center center no-repeat #F0F0F0;
}
#news_wrap section .img img{
	max-width: 100%;
	max-height: 100%;
}

#news_wrap section .txt p{	font-weight: bold;}
#news_wrap section .day{
	font-weight: bold;
	margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}
#news_wrap section a{	color: #000;}
#news_all{padding-bottom: 50px;}

#news_all .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  user-select: none;
}
#news_all .pagination .arrow {
  cursor: pointer;
  color: #333;
  width: 30px;
  text-align: center;
}
#news_all .pagination ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 12px;
}
#news_all .pagination li {
  width: 36px;
  height: 36px;
  border: 1px solid #000;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  cursor: pointer;
  font-weight: bold;
  color: #000;
  transition: background 0.3s, color 0.3s;
}

/***********************************************************************
「★PC版 CSS★」ブラウザの幅が751px以上ならここの記述が有効になる
**********************************************************************/
@media screen and (min-width: 751px) {

#news section{width: 1050px;}
#news section .mida{margin-bottom: 30px;}
#news section .day{font-size: 24px;}
#news section .mida p{font-size: 32px;}
.f_sec{width: 1050px;}

.f_sec .prev,
.f_sec .next{
	width: 520px;
	height: 150px;
}
.f_sec a:hover{color: #22AC38;}

/*新着情報一覧*/
#news_wrap{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 1050px;
}

#news_wrap section{
	width: 330px;
	height: 380px;
	margin-bottom: 30px;
	transition: .3s;
	transform: translateY(0px);
}
#news_wrap section .img{height: 260px;}
#news_wrap section .txt{padding: 15px 20px;}
#news_wrap section .day{font-size: 22px;}

#news_wrap section:hover a p{ color: #22AC38;}
#news_wrap section:hover{
	transform: translateY(3px);
	box-shadow: 0 0px 0px rgba(0,0,0,0.16);
}
#news_all .pagination .arrow {font-size: 16px;}
#news_all .pagination li {width: 36px; height: 36px;line-height: 36px;}

#news_all .pagination li:hover,
#news_all .pagination li.active {
  background: #000;
  color: #fff;
}

a.news_all{
  width: 200px;
  line-height: 40px;
  height: 40px;
  border: 1px solid #22AC38;
  display: block;
  text-align: center;
  color: #22AC38; font-weight: bold;
  margin: 30px auto 0 auto;
  background:url(../images/g_news_all_arrow.svg) right 10px center no-repeat;
}
a.news_all:hover{
  background:url(../images/g_news_all_arrow_on.svg) right 10px center no-repeat #22AC38;
  color: #FFF;
}

}

/***********************************************************************
「★SP版 CSS★」ブラウザの幅が750px以下ならここの記述が有効になる
**********************************************************************/
@media screen and (max-width: 750px) {

#head h2.news {
	height: 46px;
	width: 100%;
	text-indent: -9999px;
	margin-top: 10px;
}

#news section .img img{
	max-width: 100%;
	min-width: 100%;
}
#news section{width: 100%;}
#news section .mida{width: 670px;margin: 0 auto 30px auto;}
#news section .day{	font-size: 28px;}
#news section .text{padding: 0 40px; font-size: 28px;}
#news section .mida p{font-size: 40px;}
.f_sec{	width: 100%;}

.f_sec .prev,
.f_sec .next{
	width: 370px;
	height: 150px;
}
.f_sec p{font-size: 20px;}

/*新着情報一覧*/
#news_wrap{width: 670px;}
#news_wrap section{
	width: 100%;
	min-height: 500px;
	margin-bottom: 40px;
}
#news_wrap section .img{height: 320px;}
#news_wrap section .img.blank{	background-size: 80% auto;}
#news_wrap section .txt{padding: 25px 30px;font-size: 28px;}
#news_wrap section .day{font-size: 24px;}

#news_all .pagination {  font-size: 30px;}
#news_all .pagination .arrow {font-size: 26px;}
#news_all .pagination li {width: 56px;height: 56px;line-height: 56px;}

#news_all .pagination li.active {
  background: #000;
  color: #fff;
}
a.news_all{
  border: 1px solid #22AC38;
  display: block;
  text-align: center;
  color: #22AC38; font-weight: bold;
  background:url(../images/g_news_all_arrow.svg) right 10px center no-repeat;
  height: 80px; line-height: 80px;
  margin: 50px auto 0 auto;
  width: 350px;
  font-size: 28px;
  background-size: auto 26px !important;
}

/*サイズ*/
.c_size1 { font-size: 16px; }
.c_size2 { font-size: 20px; }
.c_size4 { font-size: 24px; }
.c_size5 { font-size: 28px; }
.c_size6 { font-size: 32px; }
.c_size7 { font-size: 36px; }
  
}
