@charset "UTF-8";
/* ------------------------------------------------------------
    page-newslist
------------------------------------------------------------ */
.page-head{
  background-image: url("../../asset/img/news/img_head.webp");
  background-position: center top;
}
.page-newslist{
  padding-top: 3.5rem;
  padding-bottom: 16rem;
}

.cat-list .cat-list__items{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 6rem;
}
.cat-list .cat-list__items li{
  width: 23.6rem;
}
.cat-list .cat-list__items li + li{ margin-left: 8rem;}
.cat-list .cat-list__items li a{
  position: relative;
  display: block;
  font-size: 2rem;
  line-height: calc(27 / 20);
  text-align: center;
  padding: 2.3rem 1rem 2.3rem 1rem;
  border-radius: 3.7rem;
  box-sizing: border-box;
}
.cat-list .cat-list__items li a:after{
  position: absolute;
  right: 2.5rem;
  top: 48%;
  display: block;
  content: '';
  width: 1rem;
  height: 1rem;
  border-top: .2rem solid #000000;
  border-right: .2rem solid #000000;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
}

.cat-list .cat-list__items li.-production a{ background: #FFE600;}
.cat-list .cat-list__items li.-company a{ background: #EDEDED;}
.cat-list .cat-list__items li.-others a{
  color: #FFF;
  background: #707070;
}
.cat-list .cat-list__items li.-others a:after{
  border-top: .2rem solid #FFF;
  border-right: .2rem solid #FFF;
}

@media screen and (min-width: 768px) {
  .cat-list .cat-list__items li a:hover{
    color: #FFF;
    background: #333333;
    opacity: 1;
  }
  .cat-list .cat-list__items li a:hover:after{
    border-top: .2rem solid #FFF;
    border-right: .2rem solid #FFF;
  }
}

.page-newslist .post-list{
  border-top: 1px solid #707070;
}

.page-newslist .post{
  position: relative;
  padding: 3rem 0;
  border-bottom: 1px solid #707070;
  box-sizing: border-box;
}
.page-newslist .post .post-info{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.page-newslist .post .post-info .post-date{
  font-size: 1.6rem;
  line-height: calc(21 / 16);
  margin-right: 3.5rem;
}
.page-newslist .post .post-info .post-cat{
  display: inline-block;
  text-align: center;
  width: 9rem;
  font-size: 1.8rem;
  line-height: 1;
  padding: .6rem .5rem .8rem .5rem;
  border-radius: .4rem;
  box-sizing: border-box;
}
.page-newslist .post .post-info .post-cat.-production{ background: #FFE600;}
.page-newslist .post .post-info .post-cat.-company{ background: #EDEDED;}
.page-newslist .post .post-info .post-cat.-others{
  color: #FFF;
  background: #707070;
}
.page-newslist .post .post-title{
  position: relative;
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 1.8rem;
  line-height: calc(24 / 18);
  padding-right: 3.6rem;
  box-sizing: border-box;
  transition: .4s;
}
@media screen and (min-width: 768px) {
  .page-newslist .post .post-title:hover{
    text-decoration: underline;
  }
}

.page-newslist .post .post-title:before,
.page-newslist .post .post-title:after{
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: block;
  content: '';
}
.page-newslist .post .post-title:before{
	width: 2rem;
	height: 2rem;
	-webkit-border-radius: 100%;
	border-radius: 100%;
	background: #000000;
}
.page-newslist .post .post-title:after{
	right: 1.1rem;
  margin-top: -.1rem;
	width: .6rem;
	height: .6rem;
	border-top: 1px solid #FFE600;
	border-right: 1px solid #FFE600;
	-webkit-transform: rotate(45deg) translateY(-50%);
	transform: rotate(45deg) translateY(-50%);
}

.page-newslist .archive_wrap{
  margin-top: 6rem;
}
.page-newslist .archive_wrap .c-title01,
.page-newsdetail .other-post.c-title01{
  font-size: 2.8rem;
  line-height: calc(37 / 28);
  top: 0;
}

.page-newslist .archive_wrap .archive_list{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 3rem 3rem;
}
.page-newslist .archive_wrap .archive_list li{
  width: 13rem;
}
.page-newslist .archive_wrap .archive_list li a{
  display: block;
  width: 100%;
  text-align: center;
  font-size: 2rem;
  line-height: 1;
  font-weight: 500;
  background: #EDEDED;
  padding: 1.2rem 1rem;
  border-radius: .4rem;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .page-newslist .archive_wrap .archive_list li a:hover{
    color: #FFF;
    background: #707070;
  }
}

@media screen and (max-width: 767px) {
  .page-newslist{
    padding-top: 3rem;
    padding-bottom: 13rem;
  }
  .cat-list .cat-list__items{
    flex-wrap: wrap;
    margin-bottom: 4rem;
  }
  .cat-list .cat-list__items li{
    width: calc((100% - 4rem) / 3);
  }
  .cat-list .cat-list__items li + li{ margin-left: 2rem;}
  .cat-list .cat-list__items li a{
    font-size: 2.8rem;
    padding: 2.0rem 1rem 2.0rem 1rem;
    border-radius: 4rem;
  }
  .cat-list .cat-list__items li a:after{
    margin-top: -.1rem;
    right: 2.5rem;
    width: 1.2rem;
    height: 1.2rem;
    border-top: 1px solid #000000;
    border-right: 1px solid #000000;
  }
  .cat-list .cat-list__items li.other a:after{
    border-top: 1px solid #FFF;
    border-right: 1px solid #FFF;
  }

  .page-newslist .post{
    padding: 2rem 0;
  }

  .page-newslist .post .post-info .post-date{
    font-size: 2.2rem;
    margin-right: 2.5rem;
  }
  .page-newslist .post .post-info .post-cat{
    width: 13rem;
    font-size: 2.4rem;
    line-height: 1;
    padding: .8rem .5rem .9rem .5rem;
  }
  .page-newslist .post .post-title{
    font-size: 2.8rem;
    padding-right: 0;
  }
  .page-newslist .post .post-title:before,
  .page-newslist .post .post-title:after{
    display: none;
  }
  .page-newslist .archive_wrap{
    margin-top: 4rem;
  }
  .page-newslist .archive_wrap .c-title01,
  .page-newsdetail .other-post.c-title01{
    font-size: 3.4rem;
    padding-left: 3rem;
    margin-bottom: 3rem;
    top: 0.1rem;
  }
  .page-newslist .archive_wrap .archive_list{
    flex-wrap: wrap;
    gap: 2rem 2rem;
  }
  .page-newslist .archive_wrap .archive_list li{
    width: 13rem;
  }
  .page-newslist .archive_wrap .archive_list li a{
    font-size: 2.8rem;
    padding: 1.3rem 1rem;
  }

}

/* ------------------------------------------------------------
    page-newsdetail
------------------------------------------------------------ */
.page-newsdetail{
  padding: 3.5rem 0 16rem 0;
  box-sizing: border-box;
}

.page-newsdetail .post .post-header{
  padding-bottom: 2rem;
  border-bottom: 1px solid #707070;
  margin-bottom: 8rem;
  box-sizing: border-box;
}

.page-newsdetail .post-header .subtitle{
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.page-newsdetail .post-header .title{
  font-size: 3.2rem;
  line-height: calc(43 / 32);
  font-weight: 700;
  margin-bottom: 2rem;
}
.page-newsdetail .post-info{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.page-newsdetail .post-info .post-date{
  font-size: 1.6rem;
  line-height: calc(21 / 16);
  margin-right: 5rem;
}
.page-newsdetail .post-info .post-cat{
  display: inline-block;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1;
  padding: .7rem 1.3rem .9rem 1.3rem;
  border-radius: .4rem;
  box-sizing: border-box;
}

.page-newsdetail .post-info .post-cat.-production{ background: #FFE600;}
.page-newsdetail .post-info .post-cat.-company{ background: #EDEDED;}
.page-newsdetail .post-info .post-cat.-others{
  color: #FFF;
  background: #707070;
}

.page-newsdetail .post .post-cnts{
  padding-bottom: 5rem;
  margin-bottom: 8rem;
  border-bottom: 1px solid #707070;
  box-sizing: border-box;
}
.page-newsdetail .post-cnts p{
  font-size: 1.8rem;
  line-height: calc(30 / 18);
  margin-bottom: 2rem;
}

.page-newsdetail .post-cnts .strong{
  font-size: 2.0rem;
  line-height: calc(27 / 20);
  font-weight: 500;
}
.page-newsdetail .post-cnts a{
  text-decoration: underline;
}
.page-newsdetail .post-cnts a[target="_blank"]{
  position: relative;
}
.page-newsdetail .post-cnts a[target="_blank"]:after{
  position: relative;
  top: -.2rem;
  display: inline-block;
  vertical-align: middle;
  margin-left: .5rem;
  content: '';
  background: url("../../asset/img/common/icon_link-ext_gray.svg") no-repeat center center;
  background-size: 100% auto;
  width: 1.6rem;
  height: 1.6rem;
}
.page-newsdetail .post-cnts img{ margin-bottom: 4.5rem !important;}
.page-newsdetail .post-cnts * + ul,
.page-newsdetail .post-cnts * + ol{
  margin-top: 4.5rem;
}
.page-newsdetail .post-cnts li{
  position: relative;
  padding-left: 1.8rem;
  line-height: calc(32 / 18);
  box-sizing: border-box;
}
.page-newsdetail .post-cnts li:before{
  position: absolute;
  display: block;
  content: '';
	left: 0;
  top: 1.4rem;
	width: .8rem;
	height: .8rem;
	border-top: .2rem solid #000;
	border-right: .2rem solid #000;
	-webkit-transform: rotate(45deg) translateY(-50%);
	transform: rotate(45deg) translateY(-50%);
}
.page-newsdetail .post-cnts ol{
  counter-reset: item;
}
.page-newsdetail .post-cnts ol li::before{
  counter-increment: item;
  content: counter(item)'.';
  top: 0;
  width: auto;
  border: none;
  transform: none;
}

.page-newsdetail .post-cnts .aligncenter{
  display:block;
  margin:0 auto;
  text-align: center;
}

.page-newsdetail .post-cnts .alignright{
  float:right;
}

.page-newsdetail .post-cnts .alignleft{
  float:left;
}

.page-newsdetail .other-post li+li{ margin-top: .5rem;}
.page-newsdetail .other-post li{
  font-size: 1.8rem;
  line-height: calc(30 / 18);
}
.page-newsdetail .other-post .btn_wrap{
  text-align: center;
  margin: 7rem auto 0 auto;
}

@media screen and (min-width: 768px) {
  .page-newsdetail .other-post li a:hover{
    text-decoration: underline;
  }
}


@media screen and (max-width: 767px) {
  .page-newsdetail{
    padding-top: 3rem;
    padding-bottom: 13rem;
    box-sizing: border-box;
  }
  .page-newsdetail .post .post-header{
    padding-bottom: 4rem;
    margin-bottom: 6rem;
  }
  .page-newsdetail .post-header .title{
    line-height: calc(54 / 32);
    font-weight: 700;
    margin-bottom: 1.5rem;
  }

  .page-newsdetail .post-info .post-date{
    font-size: 2.2rem;
    line-height: calc(21 / 16);
    margin-right: 2rem;
  }
  .page-newsdetail .post-info .post-cat{
    font-size: 2.4rem;
    line-height: 1;
    padding: 0.8rem 1.5rem 0.9rem 1.5rem;
  }
  .page-newsdetail .post .post-cnts{
    padding-bottom: 5rem;
    margin-bottom: 5rem;
  }
  .page-newsdetail .post-cnts p{
    font-size: 2.8rem;
    line-height: calc(30 / 18);
  }

  .page-newsdetail .post-cnts .strong{
    font-size: 2.8rem;
  }
  .page-newsdetail .post-cnts a[target="_blank"]:after{
    top: -.2rem;
    margin-left: .5rem;
    width: 2.8rem;
    height: 2.8rem;
  }

  .page-newsdetail .post-cnts img{ margin-bottom: 3rem !important;}
  .page-newsdetail .post-cnts * + ul,
  .page-newsdetail .post-cnts * + ol{
    margin-top: 3rem;
  }
  .page-newsdetail .post-cnts li{
    padding-left: 2.4rem;
    font-size: 2.8rem;
  }
  .page-newsdetail .post-cnts li:before{
    top: 2rem;
    width: 1.2rem;
    height: 1.2rem;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
  }

  .page-newsdetail .other-post li{
    font-size: 2.8rem;
  }
  .page-newsdetail .other-post .btn_wrap{
    margin: 6rem auto 0 auto;
  }


}

.c-button.-round.btn-prev{
  max-width: 18rem;
  text-align: right;
}

.c-button.-round.btn-prev::after{
  left: 2.1rem;
  transform: rotate(-135deg) translateY(50%);
}

@media screen and (max-width: 767px) {
  .c-button.-round.btn-prev{
    max-width: 21rem;
    padding-right: 2rem;
  }
}

.cat-link__list{
  display: flex;
  justify-content: flex-end;
  margin-bottom: 3rem;
}

.cat-link__list li {
  margin: 0 0 0 1.5rem;
}

.cat-link__list .c-button.-round{
  max-width: fit-content;
  padding-right: 4.5rem;
}

.news-archive-ttl h2{
  margin-bottom: 0;
}

.news-archive-ttl .cat-link__list .c-button.-round{
  padding: 1rem 3.3rem 1rem 1.4rem;
  font-size: 1.4rem;
}

.news-archive-ttl .cat-link__list .c-button.-round::after{
  right: 1.9rem;
}

.news-archive-link .cat-link__list{
  justify-content: center;
  margin-top: 4rem;
}

.news-archive-link .cat-link__list li{
  margin: 0 0 0 5rem;
}

.news-archive-link .cat-link__list li:first-of-type{
  margin-left: 0;
}

@media screen and (max-width: 767px) {
  .cat-link__list{
    margin-top: 3rem;
    justify-content: center;
  }
  .cat-link__list li:nth-child(1){
    margin-left: 0;
  }
  .news-archive-ttl .cat-link__list .c-button.-round{
    padding: 1.2rem 3.7rem 1.5rem 1.9rem;
    font-size: 2.2rem;
  }
  .news-archive-link .cat-link__list .c-button.-round{
    padding: 1.2rem 3.3rem 1.2rem 2rem;
    font-size: 2.2rem;
  }
  .news-archive-link .cat-link__list li{
    margin: 0 0 0 2rem;
  }
}

/* map */

.page-newsdetail .post-cnts h3{
  margin-top: 5.5rem;
  position: relative;
  font-size: 2.8rem;
  line-height: calc(37 / 28);
  font-weight: 700;
  padding-left: 2.5rem;
  margin-bottom: 3rem;
  box-sizing: border-box;
}
.page-newsdetail .post-cnts h3:before{
  position: absolute;
  left: 0;
  top: .1rem;
  display: block;
  content: '';
  width: 10px;
  height: 100%;
  background: #FFE600;
}
.page-newsdetail .post-cnts #map{
  margin-top:-127px;
  padding-top:127px;
}
.page-newsdetail .post-cnts .map-wrap iframe{
  width: 700px;
  height: 550px;
}
.page-newsdetail .post-cnts .map-wrap.nosp{
  width: 700px;
  text-align: center;
}
.page-newsdetail .post-cnts #map a{
  position: relative;
  width: fit-content;
  margin: 0 auto;
  padding-left: 2.7rem;
}
.page-newsdetail .post-cnts #map a:before{
  position: absolute;
  left: 0;
  top: 0.5rem;
  display: block;
  content: '';
  background: url("../../asset/img/common/icon_magnifier.svg") no-repeat center center;
  background-size: 100% auto;
  width: 2.1rem;
  height: 2.1rem;
}

@media screen and (max-width: 767px) {
  .page-newsdetail .post-cnts h3{
    margin-top: 5.5rem;
    font-size: 3.4rem;
    padding-left: 3rem;
    margin-bottom: 3rem;
  }
  .page-newsdetail .post-cnts h3:before{
    top: .1rem;
    width: 1rem;
  }
  .page-newsdetail .post-cnts .map-wrap {
    position: relative;
    width: 100%;
    padding: calc(525 / 604 * 100%) 0 0;
    /* overflow:auto;
    -webkit-overflow-scrolling:touch; */
    border:2px solid #ccc;
  }
  .page-newsdetail .post-cnts .map-wrap iframe {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    border:none;
    display:block;
  }

  .page-newsdetail .post-cnts #map a{
    padding-left: 4rem;
    font-size: 2.8rem;
  }
  .page-newsdetail .post-cnts #map a:before{
    top: 1.1rem;
    width: 3rem;
    height: 3rem;
  }
}
