@charset "UTF-8";
/**********************************************
  news
***********************************************/
.news__innerView {
  background-image: url(../images/news/news_mv.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.news__ttl {
  margin-top: 100px;
}
.news__imgTxt {
  width: 100%;
  gap: 20px;
  margin-top: 50px;
}
.news__imgArea {
  width: calc((100% - 20px) / 2);
  max-width: 525px;
  min-width: 300px;
}
.news__detaArea {
  width: calc(50% - 35px);
}
.news__allergy {
  margin-top: 50px;
}
.news__txt {
  margin-top: 60px;
}
.news__txt:first-child {
  margin-top: 0;
}

.news__past {
  padding: 100px 0 120px;
  margin-top: 120px;
}
@media screen and (min-width: 848.999px) {
  .news__innerView {
    height: 540px;
    padding-top: 100px;
  }
}

@media screen and (max-width: 849px) {
  /* TB/SP */
  .news__innerView {
    height: 40vw;
    min-height: 340px;
    padding-top: 50px;
  }
  .news__imgTxt {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .news__imgArea {
    width: 100%;
  }
  .news__detaArea {
    width: 100%;
    margin-top: 30px;
    max-width: inherit;
  }
  .news__imgTxt {
    margin-top: 30px;
  }
  .news__imgTxt._reverse {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  /* SP */
  .news__ttl {
    margin-top: 50px;
  }
}

/**********************************************
  template
***********************************************/
.template__ttl {
  color: #000;
  margin-top: 50px;
}
.template__simpleTxt {
  margin-top: 40px;
}
.template__simpleTxt._ttlbottom {
  margin-top: 50px;
}
.template__flexbox {
  margin-top: 40px;
}
.template__modal {
  margin-top: 78px;
}
.template__item {
  width: calc((100% - 40px) / 3);
}
@media screen and (max-width: 768px) {
  /* SP */
  .template__ttl {
    margin-top: 30px;
  }
  .template__simpleTxt {
    margin-top: 20px;
  }
  .template__simpleTxt._ttlbottom {
    margin-top: 30px;
  }
  .template__flexbox {
    margin-top: 20px;
  }
  .template__modal {
    margin-top: 40px;
  }
  .template__item {
    width: calc((100% - 20px) / 2);
  }
}
/**********************************************
  modalの上書き設定
***********************************************/
/*全て共通：hideエリアをはじめは非表示*/
.hide-area{
	display: none;
}
.modaal-wrapper {
  z-index: 99999;
}
/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after, 
.modaal-close:before{
	background:#ccc;	
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
	background:#666;
}
/**********************************************
  past
***********************************************/
.past {
  background-color: var(--sub-color);
}
.past__inner {
  margin-top: 0;
}
.past__flexbox {
  max-width: 321px;
  justify-content: start;
  margin: 60px auto 0;
}
.past__item {
  width: auto;
}
.past__link {
  display: block;
  color: #fff;
  line-height: 1;
  font-weight: bold;
  padding: 0.5em 1em;
  background-color: var(--accent-color);
}
@media screen and (max-width: 849px) {
  /* TB/SP */
  .past__flexbox {
    margin: 30px auto 0;
  }
}
@media screen and (max-width: 377px) {
  /*極小スマホ用*/
  .past__flexbox {
    max-width: 208px;
    justify-content: start;
    margin: 30px auto 0;
  }
}