@charset "UTF-8";
/*--------------------------
color
---------------------------*/
/*画像あり、ページナビあり*/
/*画像なし、ページナビあり*/
/*画像なし、ページナビなし*/
/*--------------------------
main_visual
---------------------------*/
#main_visual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 1200px;
  min-height: 200px;
  margin: 0 auto;
  background: -webkit-gradient(linear, left top, right top, from(#FF8C00), to(#E50F0F));
  background: linear-gradient(90deg, #FF8C00 0%, #E50F0F 100%);
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
@media only screen and (max-width: 1200px) {
  #main_visual {
    min-width: 1024px;
  }
}
@media only screen and (max-width: 768px) {
  #main_visual {
    min-width: 100%;
    min-height: 120px;
    border-radius: 0;
  }
}
#main_visual h1 {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #main_visual h1 {
    font-size: 15px;
  }
}
#main_visual h1::after {
  content: attr(data-en);
  display: block;
  font-size: 80px;
  font-weight: 500;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  #main_visual h1::after {
    font-size: 50px;
  }
}

article {
  background: #F6F8FD !important;
}
article .news_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 53px;
  width: 100%;
  max-width: 1028px;
  padding: 60px 0 110px;
  margin: 0 auto;
}
@media only screen and (max-width: 1200px) {
  article .news_wrap {
    min-width: 1024px;
    padding: 60px 20px 110px;
  }
}
@media only screen and (max-width: 768px) {
  article .news_wrap {
    min-width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    padding: 20px 20px 50px;
  }
}
article .news_wrap #archive {
  width: 200px;
}
@media only screen and (max-width: 768px) {
  article .news_wrap #archive {
    width: 100%;
  }
}
article .news_wrap #archive .archive-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media only screen and (max-width: 768px) {
  article .news_wrap #archive .archive-list {
    display: none;
  }
}
article .news_wrap #archive .archive-list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 52px;
  font-size: 17px;
  font-weight: 700;
  padding: 0 20px;
  background: #fff;
  border-radius: 16px;
}
@media only screen and (max-width: 768px) {
  article .news_wrap #archive .archive-list li a {
    font-size: 15px;
  }
}
article .news_wrap #archive .archive-list li a:hover, article .news_wrap #archive .archive-list li a.current {
  color: #fff;
  background: #FF8C00;
}
article .news_wrap #archive .archive-list li a.current {
  pointer-events: none;
}
article .news_wrap #archive .select-wrap {
  position: relative;
  display: block;
  width: 200px;
  margin: 0 auto;
}
article .news_wrap #archive .select-wrap::after {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  content: "\e800";
  top: 50%;
  right: 15px;
  font-size: 10px;
  color: #A3A7B1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}
article .news_wrap #archive .select-wrap select.archive-select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 15px;
  color: #333333;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid #E3E6EE;
  border-radius: 16px;
}
article .news_wrap #archive .select-wrap .archive-select {
  display: none;
}
@media only screen and (max-width: 768px) {
  article .news_wrap #archive .select-wrap .archive-select {
    display: block;
  }
}
article .news_wrap #news_content {
  width: 100%;
}
article .news_wrap #news_content .news_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
article .news_wrap #news_content .news_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding: 0 0 20px;
  border-bottom: 1px solid #E3E6EE;
}
@media only screen and (max-width: 768px) {
  article .news_wrap #news_content .news_list li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
}
article .news_wrap #news_content .news_list li .date {
  display: block;
  font-size: 15px;
  font-weight: 700;
  padding: 0 0 10px;
}
@media only screen and (max-width: 768px) {
  article .news_wrap #news_content .news_list li .date {
    padding: 0;
  }
}
article .news_wrap #news_content .news_list li dl {
  width: 100%;
}
article .news_wrap #news_content .news_list li dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 10px;
}
article .news_wrap #news_content .news_list li dl dt .cat {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 23px;
  font-size: 12px;
  font-weight: 700;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  padding: 0 12px;
  border-radius: 50px;
}
article .news_wrap #news_content .news_list li dl dt .cat.oshirase {
  background: #68B749;
}
article .news_wrap #news_content .news_list li dl dt .cat.newsrelease {
  background: #51ACE9;
}
article .news_wrap #news_content .news_list li dl dt .tag {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #FF8C00;
}
article .news_wrap #news_content .news_list li dl dd a {
  line-height: 1.353;
}
article .news_wrap #news_content .news_list li dl dd a:hover {
  color: #E50F0F;
  text-decoration: underline;
}