@charset "utf-8";
/* CSS Document */


/* visual
===================================================== */
/*header設定*/
#home #visual{
    position: relative;/*h1の中央寄せ配置の起点とするためのrelative*/
    height: 100vh;/*高さを全画面にあわせる*/
}
#home #video-area{
    position: fixed;
    z-index: -5;/*最背面に設定*/
    top: 0;
    right:0;
    left:0;
    bottom:0;
    overflow: hidden;
/*  background: url("../../imgs/home/visual.jpg") no-repeat center center / cover;*/
}
#home #video-area.is_active::after{
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  width: 100%;
  height: 300px;
  background: #fff;
}
#home #video {
    /*天地中央配置*/
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*縦横幅指定*/
    width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
    height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
    min-height: 100%;
    min-width: 100%;
}


/* sound-btn */
#play-btn{
	position: absolute;
	left: 40px;
	bottom: 40px;
	z-index: 10;
	width: 50px;
	height: 50px;
	background: url("../../imgs/home/play-off.svg") no-repeat center center var(--color_red);
	background-size: 50px auto;
	border-radius: 50%;
	transition: 0.3s;
  cursor: pointer;
}
#play-btn.play_on{
	background: url("../../imgs/home/play-on.svg") no-repeat center center var(--color_red);
	background-size: 50px auto;
}
#play-btn.play_off{
	background: url("../../imgs/home/play-off.svg") no-repeat center center var(--color_red);
	background-size: 50px auto;
}
@media screen and (min-width: 769px){
	#play-btn:hover{
		opacity: 0.7;
	}
}
@media screen and (max-width: 768px){
  #play-btn{
    left: 20px;
    bottom: 40px;
  }
}


/* side-fix-list
===================================================== */
#home .side-fix-list{
  opacity: 0;
  visibility: hidden;
}
#home .side-fix-list.is_active{
  opacity: 1;
  visibility: visible;
}


/* section-message
===================================================== */
#home .section-message{
  padding: 75px 0 55px;
  background: url("../../imgs/home/message-bg.jpg?ver=250926") no-repeat center center / cover;
}
#home .section-message__title{
  text-align: center;
  font-size: 4.5rem;
  font-weight: bold;
  color: var(--color_brown);
  margin: 0 0 1.0em;
  letter-spacing: 0.2vw;
}
#home .section-message__text{
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.3;
  letter-spacing: 0.1vw;
  color: var(--color_brown);
  margin: 0 0 2.0em;
}
#home .section-message__btn{
  margin: 45px 0 0;
  text-align: center;
}
@media (max-width:768px){
    #home .section-message{
        background: url("../../imgs/home/message-bg-sp.jpg?ver=250926") no-repeat center center / cover;
    }
  #home .section-message__title{
    font-size: 3.0rem;
    line-height: 1.5;
    letter-spacing: 0.1vw;
  }
  #home .section-message__text{
    line-height: 2.0;
  }
}



/* section-news
===================================================== */
#home .section-news{
  padding: 95px 0 85px;
  background: #fff;
}
#home .section-news .headline01{
  margin: 0 0 60px;
}
#home .section-news-list{
  display: flex;
}
#home .section-news-list__item{
  position: relative;
  box-shadow: 0px 0px 16px -6px rgba(0,0,0,0.4);
  border-radius: 8px;
}
#home .section-news-list__item.mt30{
  margin-top: 30px;
}
#home .section-news-list__item a{
  display: block;
  text-decoration: none;
}
#home .section-news-list__item a .section-news-list__item-img{
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}
#home .section-news-list__item a .section-news-list__item-img img{
  border-radius: 8px 8px 0 0;
  transition: 0.3s;
}
@media (min-width: 769px){
  #home .section-news-list__item a:hover .section-news-list__item-img img{
    transform: scale(1.04);
  }
}
#home .section-news-list__item-text{
  padding: 15px 20px 20px;
}
#home .section-news-list__item-text .date{
  font-size: 1.152rem;
  font-weight: bold;
  color: #949494;
}
#home .section-news-list__item-text .title{
  font-size: 1.5rem;
  font-weight: bold;
  color: #282828;
  line-height: 1.5;
  margin: 0.5em 0 0;
}
#home .section-news-list__item-cat{
  position: absolute;
  left: -24px;
  top: -24px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 74px;
  height: 74px;
  font-size: 1.3rem;
  font-weight: bold;
  color: #1E1E1E;
}
#home .section-news-list__item-cat--news{
  background: url("../../imgs/home/cat-news.svg") no-repeat center center / 100%;
}
#home .section-news-list__item-cat--release{
  background: url("../../imgs/home/cat-release.svg") no-repeat center center / 100%;
}
#home .section-news__btn{
  margin: 50px auto 0;
  text-align: center;
}

#home .swiper{
  overflow: visible;
}
#home .swiper-control{
  max-width: 1120px;
  margin: 60px auto 0;
  padding: 15px 135px 15px 20px;
  box-sizing: border-box;
  position: relative;
}
#home .swiper-container {
  position: relative;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}
#home .swiper-scrollbar-cont{
  position: relative;
  max-width: 950px;
  width: 100%;
}
#home .swiper-scrollbar {
  background: #C1C1C1;
  height: 4px;
  position: absolute;
  bottom: -1px;
  left: 10px;
  max-width: 950px;
  width: 100%;
}
#home .swiper-scrollbar .swiper-scrollbar-drag {
  background: var(--color_red);
  border-radius: 8px;
}
#home .swiper-button-prev{
  top: auto;
  right: 60px;
  bottom: 0;
  left: auto;
  width: 49px;
  height: 28px;
  background: url("../img/swiiper-prev.svg") no-repeat center center;
  z-index: 55;
  transition: 0.3s;
}
#home .swiper-button-prev::after{
  content: none;
}
#home .swiper-button-next{
  top: auto;
  right: 0;
  bottom: 0;
  left: auto;
  width: 49px;
  height: 28px;
  background: url("../img/swiiper-next.svg") no-repeat center center;
  z-index: 55;
  transition: 0.3s;
}
#home .swiper-button-next::after{
  content: none;
}
@media (min-width:769px){
  #home .swiper-button-prev:hover{
    background: url("../img/swiiper-prev-red.svg") no-repeat center center;
  }
  #home .swiper-button-next:hover{
    background: url("../img/swiiper-next-red.svg") no-repeat center center;
  }
}
@media (max-width:1140px){
  #home .swiper-container{
    padding: 0 20px;
    box-sizing: border-box;
  }
}
@media (max-width:768px){
  #home .section-news{
    padding: 60px 0 80px;
  }
  #home .section-news .headline01{
    margin: 0 0 40px;
  }
  #home .swiper-container {
    padding: 0 20px 0 75px;
    box-sizing: border-box;
  }
}


/* section-product
===================================================== */
#home .section-product{
  background: var(--color_beige);
  padding: 80px 0 50px;
  border-radius: 40px 40px 0 0;
  position: relative;
}
#home .section-product::after{
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #fff;
}

#home .section-product-fix{
  display: flex;
  align-items: center;
}
#home .section-product-fix__text{
  width: 50%;
  padding: 0 0 0 20px;
  box-sizing: border-box;
}
#home .section-product-fix__text-in{
  max-width: 525px;
  margin: 0 0 0 auto;
  padding: 0 7.5% 0 0;
  box-sizing: border-box;
}
#home .section-product-fix__text-in .headline02{
  margin: 0 0 55px;
}
#home .section-product-fix__text-catch{
  font-size: min(3.6rem, 3.5vw);
  font-weight: bold;
  line-height: 1.5;
  margin: 0 0 0.75em;
}
#home .section-product-fix__text-txt{
  font-size: 1.4rem;
}
#home .section-product-fix__text-btn{
  margin: 50px 0 0;
}

#home .section-product-fix__img{
  width: 50%;
}
#home .section-product-fix__img img{
  border-radius: 8px 0 0 8px;
}
/*
@media (max-width:1140px){
  #home .section-product-fix__text-in .headline02{
    padding: 0 0 0 20px;
  }
  #home .section-product-fix__text-in .headline02::before{
    position: absolute;
    left: -5px;
    top: 50%;
    margin: -4px 0 0;
    content: '';
    width: 12px;
    height: 12px;
    background: var(--color_red);
    border-radius: 50%;
  }
  #home .section-product-fix__text-in .headline02::after{
    position: absolute;
    left: -105px;
    top: 50%;
    margin: 0px 0 0;
    content: '';
    width: 95px;
    height: 2px;
    background: var(--color_red);    
  }
}
*/
@media (max-width:848px){
  #home .section-product-fix__text-txt br{
    display: none;
  }
}

@media (max-width:768px){
  #home .section-product{
    padding: 70px 0 50px;
  }
  #home .section-product-fix__text-in .headline02::before{
    content: none;
  }
  #home .section-product-fix__text-in .headline02::after{
    content: none;
  }
  #home .section-product-fix{
    display: block;
  }
  #home .section-product-fix__text{
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
  #home .section-product-fix__text-in{
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  #home .section-product-fix__img{
    width: calc(100% + 20px);
    margin: 0 -20px 20px 0;
  }
  #home .section-product-fix__text-catch{
    font-size: min(2.6rem, 6.5vw);
  }
  #home .section-product-fix__text-btn{
    text-align: center;
    margin: 35px auto 0;
  }
}





/* section-blackThunder
===================================================== */
#home .section-blackThunder{
  background: var(--color_beige);
  padding: 50px 0 135px;
}
#home .section-blackThunder .headline02{
  margin: 0 0 55px;
}
#home .section-blackThunder-list{
  display: flex;
  flex-wrap: wrap;
  gap: 60px 5%;
}
#home .section-blackThunder-list__item:nth-of-type(2),
#home .section-blackThunder-list__item:nth-of-type(3){
  width: calc(100% / 2 - 2.5%);
}
#home .section-blackThunder-list__item-title{
  position: relative;
  margin: 0 0 20px; 
  padding: 0 0 0 25px;
  font-size: 1.6rem;
  font-weight: bold;
}
#home .section-blackThunder-list__item-title::before{
  position: absolute;
  left: 0;
  top: 50%;
  margin: -6px 0 0;
  content: '';
  width: 12px;
  height: 12px;
  background: var(--color_red);
  border-radius: 50%;
}
#home .section-blackThunder-list__item-title span{
  font-size: 4.0rem;
  font-weight: 900;
  margin: 0 20px 0 0;
  line-height: 1.0;
}
#home .section-blackThunder-list__item-img{
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
/*
#home .section-blackThunder-list__item-img::before{
  position: absolute;
  right: 20px;
  bottom: 20px;
  content: '';
  z-index: 2;
  width: 40px;
  height: 40px;
  background: url("../img/icon-arrow-red.svg") no-repeat center center / 15px 10px;
  border-radius: 50%;
  transition: 0.3s;
}
#home .section-blackThunder-list__item-img::after{
  position: absolute;
  right: 20px;
  bottom: 20px;
  content: '';
  z-index: 1;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s;
}
*/
#home .section-blackThunder-list__item-img a{
  display: block;
  position: relative;
  width: 100%;
  padding: 3px;
  box-sizing: border-box;
  border-radius: 10px;
  overflow: hidden;
}
#home .section-blackThunder-list__item-img a::before{
  position: absolute;
  left: 2px;
  top: 2px;
  z-index: 1;
  content: '';
  width: calc(100% - 4px);
  height:  calc(100% - 4px);
  border: 3px solid transparent;
  box-sizing: border-box;
  transition: 0.3s;
  border-radius: 10px;
}
#home .section-blackThunder-list__item-img a picture{
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
#home .section-blackThunder-list__item-img a picture img{
  border-radius: 6px;
  transition: 0.3s;
}
#home .section-blackThunder-list__item-img a b{
  position: absolute;
  right: 20px;
  bottom: 0;
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 1.0;
  box-sizing: border-box;
  transform: translateY(-50%);
  overflow: hidden;
}
/*
#home .section-company-text-box__link a b svg{
  transform: scale(1.09) !important;
}
*/


@media (min-width:769px){
  /*
  #home .section-blackThunder-list__item-img:hover::before{
    background: url("../img/icon-arrow-white.svg") no-repeat center center / 15px 10px;
  }
  */
  #home .section-blackThunder-list__item-img:hover::after{
    background: var(--color_red);
  }
  #home .section-blackThunder-list__item-img a:hover::before{
    border: 3px solid var(--color_yellow);
  }
  #home .section-blackThunder-list__item-img a:hover picture img{
    transform: scale(1.05);
  } 
}
#home .section-blackThunder-list__item-text{
  font-size: 1.4rem;
  margin: 1.0em 0 0;
}
@media (max-width:768px){
  #home .section-blackThunder{
    padding: 50px 0;
  }
  #home .section-blackThunder-list{
    gap: 40px 0;
  }
  #home .section-blackThunder-list__item-img::before{
    right: 10px;
    bottom: 10px;
    width: 30px;
    height: 30px;
  }
  #home .section-blackThunder-list__item-img::after{
    right: 10px;
    bottom: 10px;
    width: 30px;
    height: 30px;
  }
  
  #home .section-blackThunder-list__item.w100 .section-blackThunder-list__item-img{
    border-radius: 0;
    width: calc(100% + 40px);
    margin: 0 -20px;
  }
  #home .section-blackThunder-list__item.w100 .section-blackThunder-list__item-img a{
    border-radius: 0;
    padding: 0;
  }
  #home .section-blackThunder-list__item.w100 .section-blackThunder-list__item-img a picture{
    border-radius: 0;
  }
  #home .section-blackThunder-list__item.w100 .section-blackThunder-list__item-img img{
    border-radius: 0;
  }
  
  #home .section-blackThunder-list__item:nth-of-type(2),
  #home .section-blackThunder-list__item:nth-of-type(3){
     width: 100%;
  }
  #home .section-blackThunder-list__item-title{
    font-size: 1.4rem;
    margin: 0 0 10px;
  }
  #home .section-blackThunder-list__item-title::before{
    top: 12px;
    margin: 0;
  }
  #home .section-blackThunder-list__item-title span{
    display: block;
    font-size: 3.4rem;
    margin: 0 0 5px;
  }
  #home .section-blackThunder-list__item-img a b{
    right: 10px;
    bottom: -10px;
  }
}


/* section-company
===================================================== */
#home .section-company{
  padding: 0 0 75px;
  background: #fff;
}
#home .section-company-link{
  cursor: pointer;
  position: relative;
}
#home .section-company-link::before{
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  content: '';
  width: 100%;
  height: 100%;
}
#home .section-company__img{
  text-align: center;
  background: url("../../imgs/home/company-img01big.jpg") no-repeat center center;
}
#home .section-company-text-box{
  margin: -110px auto 0;
}
#home .section-company-text-box__link a{
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
  padding: 0 40px 0 0;
/*  background: url("../img/icon-circleArrow.svg") no-repeat right 10px center / 30px auto;*/
  text-decoration: none;
  position: relative;
}
#home .section-company-text-box__link a::before{
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  content: '';
  width: 100%;
  height: 100%;
}
#home .section-company-text-box__link a b{
  position: absolute;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  line-height: 1.0;
  box-sizing: border-box;
  background: var(--color_red);
  transform: translateY(-46%);
  overflow: hidden;
}
#home .section-company-text-box__link a b svg{
  transform: scale(1.09) !important;
}

#home .section-company-text-box__text{
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  margin: 10px 0 0;
}


#home .section-company-list{
  display: flex;
  flex-wrap: wrap;
  gap: 0 3%;
  margin: 90px auto 0;
}
#home .section-company-list__item{
  width: calc(100% / 3 - 2.0%);
}
#home .section-company-list__item a{
  display: block;
  text-decoration: none;
}
#home .section-company-list__item a .section-company-list__item-img{
  overflow: hidden;
  border-radius: 8px;
}
#home .section-company-list__item a .section-company-list__item-img img{
  border-radius: 8px;
  transition: 0.3s;
}
#home .section-company-list__item-text{
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1.5;
  margin: 10px 0 0;
  padding: 0 35px 0 0;
  transition: 0.3s;
  position: relative;
}
#home .section-company-list__item-text b{
  position: absolute;
  right: 0;
  top: -5px;
  width: 30px;
  height: 30px;
}
#home .section-company-text-box__text{
  transition: 0.3s;
}
@media (min-width:769px){
  #home .section-company-list__item a:hover .section-company-list__item-img img{
    transform: scale(1.04);
  }
  #home .section-company-list__item a:hover .section-company-list__item-text{
    color: var(--color_red);
  }
  #home .section-company-link:hover .section-company-text-box__text{
    color: var(--color_red);
  }
  #home .section-company-link:hover .section-company-text-box__link a{
    color: var(--color_red);
  }
}
@media (max-width:1100px){
  #home .section-company-text-box{
    margin: -10% auto 0;
  }
}
@media (max-width:768px){
  #home .section-company{
    padding: 0 0 50px;
  }
  #home .section-company__img{
    height: auto;
    object-fit: contain;
  }
  #home .section-company-text-box{
    margin: 20px auto 0;
  }
  #home .section-company-text-box__link a{
    font-size: 2.0rem;
  }
  #home .section-company-text-box__text{
    font-size: 1.4rem;
  }
  #home .section-company-list{
    display: block;
    margin: 50px auto 0;
  }
  #home .section-company-list__item{
    width: 100%;
    margin: 0 0 40px;
  }
  #home .section-company-list__item:last-child{
    margin: 0;
  }
  #home .section-company-text-box__link a b{
    transform: translateY(-48%);
  }
}


/* section-sustainability
===================================================== */
#home .section-sustainability{
  padding: 75px 0;
  background: #fff;
}
#home .section-sustainability .headline02{
  margin: 0 0 55px;
}
#home .section-sustainability-list{
  display: flex;
}
#home .section-sustainability-list__item a{
  display: block;
  text-decoration: none;
}
#home .section-sustainability-list__item a .section-sustainability-list__item-img{
  overflow: hidden;
  position: relative;
  border-radius: 8px;
}
#home .section-sustainability-list__item a .section-sustainability-list__item-img.caption:after{
    content:"©SAN-EN NEOPHOENIX /PHOTO:YUKI SHIMIZU";
    position:absolute;
    left:5px;
    bottom:3px;
    color:#FFF;
    font-size:1.1rem;
}
#home .section-sustainability-list__item a b{
  position: absolute;
  right: 20px;
  bottom: 0;
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 1.0;
  box-sizing: border-box;
  transform: translateY(-50%);
  overflow: hidden;
}

/*
#home .section-sustainability-list__item a .section-sustainability-list__item-img::before{
  position: absolute;
  right: 10px;
  bottom: 10px;
  content: '';
  z-index: 2;
  width: 40px;
  height: 40px;
  background: url("../img/icon-arrow-red.svg") no-repeat center center / 15px 10px;
  border-radius: 50%;
  transition: 0.3s;
}
#home .section-sustainability-list__item a .section-sustainability-list__item-img::after{
  position: absolute;
  right: 10px;
  bottom: 10px;
  content: '';
  z-index: 1;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s;
}
*/
@media (min-width:769px){
  /*
  #home .section-sustainability-list__item a:hover .section-sustainability-list__item-img::before{
    background: url("../img/icon-arrow-white.svg") no-repeat center center / 15px 10px;
  }
  #home .section-sustainability-list__item a:hover .section-sustainability-list__item-img::after{
    background: var(--color_red);
  }
  */
}
#home .section-sustainability-list__item a .section-sustainability-list__item-img img{
  border-radius: 8px;
  transition: 0.3s;
}
#home .section-sustainability-list__item-title{
  margin: 15px 0 0;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.33;
  transition: 0.3s;
}
#home .section-sustainability-list__item-title span{
  display: inline-block;
  margin: 0 15px 0 0;
  padding: 5px 10px;
  font-size: 1.4rem;
  color: var(--color_red);
  border: 1px solid var(--color_red);
  border-radius: 6px;
}
#home .section-sustainability__btn{
  text-align: center;
  margin: 50px 0 0;
}
@media (min-width:769px){
  #home .section-sustainability-list__item a:hover .section-sustainability-list__item-img img{
    transform: scale(1.04);
  }
  #home .section-sustainability-list__item a:hover .section-sustainability-list__item-title{
    color: var(--color_red);
  }
}
@media (max-width:768px){
  #home .section-sustainability{
    padding: 50px 0;
  }
  #home .swiper-control{
    margin: 40px auto 0;
  }
  #home .section-sustainability-list__item-title{
    font-size: 1.4rem;
  }
  #home .section-sustainability-list__item-title span{
    font-size: 1.2rem;
  }
  /*
  #home .section-sustainability-list__item a .section-sustainability-list__item-img::before{
    right: 10px;
    bottom: 10px;
    width: 30px;
    height: 30px;
  }
  #home .section-sustainability-list__item a .section-sustainability-list__item-img::after{
    right: 10px;
    bottom: 10px;
    width: 30px;
    height: 30px;
  }
  */
  #home .section-sustainability-list__item a b{
    right: 5px;
    bottom: -10px;
    width: 30px;
    height: 30px;
  }
    #home .section-sustainability-list__item a .section-sustainability-list__item-img.caption:after{
        font-size:0.8rem;
    }
}


/* section-pickup
===================================================== */
#home .section-pickup{
  padding: 70px 0 90px;
  background: #fff;
}
#home .section-pickup .headline02{
  margin: 0 0 45px;
}
#home .section-pickup-list{
  display: flex;
  flex-wrap: wrap;
  gap: 0 3.65%;
}
#home .section-pickup-list__item{
  width: 240px;
  margin: 0 0 40px;
}
#home .section-pickup-list__item a{
  display: block;
  text-decoration: none;
}

#home .section-pickup-list__item a .section-pickup-list__item-img {
  display: block;
  position: relative;
  width: 100%;
  padding:0;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 4px;
}
#home .section-pickup-list__item a .section-pickup-list__item-img::after{
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  content: '';
  width: 100%;
  height: 100%;
  /*border: 1px solid #C1C1C1;*/
  box-shadow: 0px 0px 0px 1px #C1C1C1 inset;
  box-sizing: border-box;
  border-radius: 4px;
}
#home .section-pickup-list__item a .section-pickup-list__item-img img{
  transition: 0.3s;
  transform-origin: bottom center;
}
#home .section-pickup-list__item-title{
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  margin: 0.75em 0;
}
#home .section-pickup-list__item a .section-pickup-list__item-title{
  transition: 0.3s;
}
#home .section-pickup-list__item a.blank  .section-pickup-list__item-title span{
  padding: 0 20px 0 0;
  background: url("../img/icon-blank-black03.svg") no-repeat right center;
  transition: 0.3s;
}
#home .section-pickup-list__item-text{
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
}
@media (min-width:769px){
  #home .section-pickup-list__item a:hover .section-pickup-list__item-title{
    color: var(--color_red);
  }
  #home .section-pickup-list__item a.blank:hover  .section-pickup-list__item-title span{
    background: url("../img/icon-blank-red03.svg") no-repeat right center;
  }
  #home .section-pickup-list__item a:hover .section-pickup-list__item-img img{
    transform: scale(1.04);
  } 
}
@media (max-width:1135px){
    #home .section-pickup-list__item{
        width: calc(100% / 4 - 2.77%); 
    }
}
@media (max-width:768px){
  #home .section-pickup{
    padding: 45px 0 50px;
  }
  #home .section-pickup .headline02{
    margin: 0 0 35px;
  }
  #home .section-pickup-list{
    gap: 0 4%;
  }
  #home .section-pickup-list__item{
    width: calc(100% / 2 - 2%);
    margin: 0 0 10px;
  }
  #home .section-pickup-list__item-title{
    text-align: left;
    font-size: 1.4rem;
  }
  #home .section-pickup-list__item-text{
    display: none;
  }
}



/* section-recruit
===================================================== */
#home .section-recruit{
  padding: 82px 0 90px;
  position: relative;
  cursor: pointer;
}
#home .section-recruit::before{
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url("../../imgs/home/recruit-before.png") no-repeat center top / 100% auto;
}
#home .section-recruit::after{
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  z-index: -2;
  width: 100%;
  height: 100%;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#fd0012+39,ca000e+100 */
  background: linear-gradient(to bottom,  rgba(253,0,18,1) 39%,rgba(202,0,14,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
#home .section-recruit .inner01{
  position: relative;
}
#home .section-recruit__title{
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1vw;
  color: #fff;
  text-align: center;
}
#home .section-recruit__catch{
  font-family: var(--font_ja-min);
  font-size: 4.5rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.4vw;
  color: #fff;
  text-align: center;
  margin: 0.5em 0 0.75em;
}
#home .section-recruit__text{
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
#home .pos-img01{
  position: absolute;
  left: 30px;
  top: -85px;
}
#home .pos-img02{
  position: absolute;
  left: 0;
  bottom: -5px;
}
#home .pos-img03{
  position: absolute;
  right: -50px;
  top: -90px;
}
#home .pos-img04{
  position: absolute;
  right: 0;
  bottom: -55px;
}
#home .section-recruit__btn{
  text-align: center;
  margin: 45px auto 0;
}
@media (min-width:769px){
  #home .section-recruit:hover .btn a:before,
  #home .section-recruit:hover .btn a:after {
    height: 100%;
  }
  #home .section-recruit:hover .btn a{
    color: var(--color_red);
  }
  #home .section-recruit:hover .btn a:before {
    transition: height 0.2s 0.2s linear;
  }
  #home .section-recruit:hover .btn a:after {
    transition: height 0.2s linear;
  }
  
  
  #home .section-recruit .pos-img01 img,
  #home .section-recruit .pos-img02 img,
  #home .section-recruit .pos-img03 img,
  #home .section-recruit .pos-img04 img{
    transition: 0.3s;
  }
  #home .section-recruit:hover .pos-img01 img,
  #home .section-recruit:hover .pos-img02 img,
  #home .section-recruit:hover .pos-img03 img,
  #home .section-recruit:hover .pos-img04 img{
    transform: scale(1.04);
  }
}
@media (max-width:1140px){
  #home .pos-img01{
    width: 24%;
  }
  #home .pos-img02{
    width: 24%;
  }
  #home .pos-img03{
    width: 24%;
  }
  #home .pos-img04{
    width: 30%;
  }
}
@media (max-width:768px){
  #home .section-recruit{
    padding: 140px 0 150px;
  }
  #home .section-recruit__title{
    font-size: 1.8rem;
  }
  #home .section-recruit__catch{
    font-size: 3.5rem;
  }
  #home .section-recruit__text{
    text-align: left;
  }
  #home .pos-img01{
    width: 150px;
    left: -20px;
    top: -105px;
  }
  #home .pos-img02{
    width: 148px;
    left: -30px;
    bottom: -140px;
  }
  #home .pos-img03{
    width: 183px;
  }
  #home .pos-img04{
    width: 220px;
    right: -70px;
    bottom: -160px;
  }
}





