@charset "UTF-8";

/*  ------------------*/
#news {
  position: relative;
  background-color: #fff;
}

#news > .inner {
  padding-top: 40px;
  padding-bottom: 40px;
  max-width: 750px;
  box-sizing: content-box;
}

#news > .inner > .ttl-area {
  font-size: 100%;
  font-weight: 600;
}

#news > .inner > .ttl-area > .txt {
  font-size: 200%;
  font-weight: bold;
  color: #003e88;
  margin-right: 20px;
}

#news > .inner > .news-area {
  position: relative;
  max-height: 160px;     
  overflow-y: auto;
  padding-right: 8px;    
  -webkit-overflow-scrolling: touch; 

}


#news > .inner > .news-area > .news-blc {
  position: relative;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  padding: 10px 1%;
  border-bottom: 1px solid #dbdbdb;
  box-sizing: border-box;
}

#news > .inner > .news-area > .news-blc > .date {
  display: inline-block;
  width: 140px;
  font-size: 90%;
  color: #b2b2b2;
  margin-right: 20px;
}

#news > .inner > .news-area > .news-blc > .news {
  display: inline-block;
  width: calc(100% - (140px + 20px));
}

@media screen and (max-width: 1200px) {
  #news > .inner {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  #news > .inner > .news-area > .ttl {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
  #news > .inner > .news-area > .news-blc {
    width: 100%;
  }
  #news > .inner > .news-area > .news-blc > .date {
    width: 100px;
    margin-right: 10px;
  }
  #news > .inner > .news-area > .news-blc > .news {
    width: calc(100% - (100px + 10px));
  }
}

@media screen and (max-width: 480px) {
  #news > .inner > .news-area > .news-blc > .date {
    width: 100%;
    margin-right: 0;
  }
  #news > .inner > .news-area > .news-blc > .news {
    width: 100%;
  }
}

#intro {
  position: relative;
}

#intro > .inner {
  padding-top: 80px;
  padding-bottom: 80px;
  box-sizing: border-box;
}

#intro > .inner > .kitchen {
  background-color: #fff;
  padding: 60px 4%;
  margin: 60px 0;
}

#intro > .inner > .kitchen > .list {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  #intro > .inner > .kitchen {
    padding: 40px 4%;
    margin: 40px 0;
  }
}

#intro > .inner > .relax {
  background-color: #fff;
  padding: 60px 4%;
}

#intro > .inner > .relax > .relax-blc {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#intro > .inner > .relax > .relax-blc > .txt-blc {
  width: calc(45% - 15px);
  padding: 15px 2%;
  box-sizing: border-box;
}

#intro > .inner > .relax > .relax-blc > .txt-blc > .txt {
  font-size: 110%;
  margin-bottom: 30px;
}

#intro > .inner > .relax > .relax-blc > .txt-blc > .logo {
  text-align: center;
  margin-bottom: 30px;
}

#intro > .inner > .relax > .relax-blc > .txt-blc > .link {
  text-align: center;
}

#intro > .inner > .relax > .relax-blc > .txt-blc > .img {
  text-align: center;
  width: 100%;
  transform: translate(calc(50% + 15px), 25px);
}

#intro > .inner > .relax > .relax-blc > .img-blc {
  width: 55%;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  #intro > .inner > .relax > .relax-blc > .txt-blc {
    width: 100%;
    padding: 15px 2%;
  }

  #intro > .inner > .relax > .relax-blc > .txt-blc > .link {
    margin-bottom: 30px;
  }
  
  #intro > .inner > .relax > .relax-blc > .txt-blc > .img {
    transform: translate(0, 0);
  }
  
  #intro > .inner > .relax > .relax-blc > .img-blc {
    width: 100%;
  }
}

