@charset "UTF-8";
/* CSS Document */
/* fade
-----------------------------------------------*/
#bnr-area li, #information h2, #pickup h2 {
  transform: translateY(20px);
  opacity: 0;
  transition: transform 1.0s cubic-bezier(.210, .60, .350, 1), opacity 1.0s cubic-bezier(.210, .60, .350, 1);
}
#information.fade h2, #pickup.fade h2 {
  transform: translateY(0);
  opacity: 1;
}


/* wrap
-----------------------------------------------*/
#wrap{
  overflow: hidden;
  background: #0978b7;
}


/* main
-----------------------------------------------*/
#main {
  background: #fff;
}
#main .main-slider  {
  max-width: 1400px;
  overflow: visible;
  margin: 0 auto;
}
#main .main-slider li a:hover {
  opacity: 1;
}
#main .main-slider li img,
#main .main-slider li a img {
  position: relative;
  aspect-ratio: 2	 / 1;
  max-height: 350px;
  width: 100%;
}
#main .main-slider li img,
#main .main-slider li a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width:767px) {
  #main .main-slider li a img {
    min-height: auto;
  }
}


/* section
-----------------------------------------------*/
section .inner {
  max-width: 1480px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}
section h2 {
  text-align: center;
}
section h2 span {
  font-size: 46px;
  color: #0978b7;
  display: flex;
  justify-content: center;
  position: relative;
  display: inline-block;
  text-align: center;
}
section h2 span::before {
  position: absolute;
  display: block;
  content: "";
  background: #0978b7;
  width: 100%;
  height: 4px;
  bottom: 0;
  left: 0; 
}
section h3 {
  font-size: 28px;
  color: #0978b7;
}
@media only screen and (max-width:1240px) {
  section h2 span {
    font-size: 38px;
  }
  section h3 {
    font-size: 18px;
    line-height: 1.5;
  }
}
@media only screen and (max-width:767px) {
  section .inner {
    padding: 0 20px;
  }
  section h2 span {
    font-size: 32px;
  }
  section h2 span::before {
    height: 2px;
  }
  section h3 {
    font-size: 16px;
  }
}


/* bnr-area
-----------------------------------------------*/
#bnr-area {
  padding-top: 130px;
}
#bnr-area ul {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}
#bnr-area li {
  border-radius: 10px;
  overflow: hidden;
}
#bnr-area li img {
  width: 100%;
}
@media only screen and (max-width:1240px) {
  #bnr-area {
    padding-top: 90px;
  }
}
@media only screen and (max-width:767px) {
  #bnr-area {
    padding-top: 40px;
  }
  #bnr-area ul {
    gap: 10px;
    grid-template-columns: 1fr;
  }
  #bnr-area li {
    border-radius: 5px;
  }
}


/* notice
-----------------------------------------------*/
#notice {
  padding: 80px 40px;
}
#notice .inner {
  max-width: 1400px;
  background: #fff;
  padding: 40px 60px;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
	border: #ED1C24 solid 8px;
}
#notice .inner > h2{
  font-size: 46px;
  color: #ED1C24;
  display: flex;
  justify-content: center;
  position: relative;
  display: inline-block;
  text-align: center;
}
#notice .inner > h2::before {
  position: absolute;
  display: block;
  content: "";
  background: #ED1C24;
  width: 100%;
  height: 4px;
  bottom: 0;
  left: 0;
}
#notice .inner > h2 + p {
	margin-top: 60px;
}
#notice .inner > p + h2 {
	margin-top: 60px;
}
#notice .inner > p {
  text-align: left;
}
#notice .inner a {
  text-decoration: underline;
    color: #ED1C24;
}
@media only screen and (max-width:767px) {
  #notice {
    padding: 40px 20px;
  }
  #notice .inner {
    padding: 20px 20px 30px;
    border-radius: 5px;
  }
#notice .inner > h2{
  font-size: 32px;
}
#notice .inner > h2 + p{
	margin-top: 25px;
}
#notice .inner > p{
	font-size: 16px;
}
}


/* news-area
-----------------------------------------------*/
#news-area .table-scroll {
  max-height: 360px;
  overflow-y: scroll;
}

/* information
-----------------------------------------------*/
#information {
  padding: 30px 40px 0;
}
#information .inner {
  max-width: 1400px;
  background: #fff;
  padding: 40px 60px;
  border-radius: 10px;
  overflow: hidden;
}
#information table {
  margin-top: 25px;
}
#information .important {
  display: flex;
  gap:40px;
}
#information .important .impTitle {
  position: relative;
  z-index: 1;
}

#information .important .impTitle h3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  color: #c45500;
  background: #fff;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  padding: 0 40px;
  border: 1px solid #c45500;
  
}
#information .important a {
  color: #c45500;
}
#information td {
  vertical-align: top;
}
#information .link {
  padding-bottom: 20px;
  display: inline-block;
  padding-left: 20px;
  width: 100%;
}
#information tr:last-child .link {
  padding-bottom: 0;
}
#information .link a {
  line-height: 1.2;
  display: block
}
#information .category {
  padding: 0 20px;
  line-height: 1.2;
}
#information .category a {
  display: inline-block;
  font-size: 18px;
  color: #0978b7;
  font-weight: bold;
  word-break: keep-all;
  line-height: 1.2;
}
#information .time {
  word-break: keep-all;
  padding-right: 20px;
  position: relative;
  width: 120px;
  line-height: 1.2;
}
#information .time::before {
  position: absolute;
  display: block;
  content: "";
  width: 1px;
  height: 18px;
  background: #333;
  top: 5px;
  right: 0;
}
#information .btnArea{
  display: flex;
  justify-content: end;
  margin-top: 30px;
  gap: 40px;
}
#information .btn {
  display: flex;
  align-items: flex-end;
  margin-left: auto;
}
#information .btn a {
  color: #0978b7;
  padding-right: 34px;
  position: relative;
  font-weight: bold;
  border-bottom: 2px solid #0978b7;
  padding-bottom: 5px;
  margin: 0 0 10px auto;
  display: table;
}
.important .btn a::before,
.important .btn a::after{
  background-color: #c45500!important;
}
.important .btn a {
  color: #c45500!important;
  border-color: #c45500!important;
}
#information .btn a::before, #information .btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  background-color: #0978b7;
  height: 2px;
}
#information .btn a::before {
  right: 0;
  width: 20px;
}
#information .btn a::after {
  right: 0;
  transform-origin: right bottom;
  width: 10px;
  transform: rotate(45deg);
}
#information .content {
  margin: 0 auto 0;
}
#information .content:not(:first-child) {
  display: none;
}
#information .content + .content li a p {
  padding-left: 20px;
}
@media only screen and (max-width:1240px) {
  #information .important{
    flex-wrap: wrap;
    gap: 0 40px;
  }
  #information .btn{
    width: 100%;
  }
  #information .tab {
    padding: 20px;
  }
  #information li span {
    max-width: 140px;
  }
  #information li span, #information li time, #information li a p {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media only screen and (max-width:767px) {
  #information .table-scroll{
    width: 100%;
  }
#information .btnArea{
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
  #information {
    padding: 20px 20px;
  }
  #information .inner {
    padding: 20px 20px 30px;
    border-radius: 5px;
  }
  #information ul {
    margin-top: 10px;
  }
  #information li a {
    font-size: 14px;
    display: block;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }
  #information li a p {
    width: 100%;
  }
  #information li time::before {
    display: none;
  }
  #information .content {
    margin: 0 auto 0;
  }
  #information li span, #information li time {
    max-width: none;
    width: auto;
    padding: 0 20px 0 0;
  }
  #information tr{
    display: flex;
    flex-wrap: wrap;
    position: relative;
    margin-bottom: 15px;
  }
  #information tr::before{
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    background: #0978b7;
    bottom: 0;
    left: 0;
  }
  #information tr:last-child::before{
    display: none;
  }
  #information .btn a {
    font-size: 14px;
  }
  
  #information .time,
  #information .category{
    font-size: 13px;
    line-height: 1.5;
    width: auto;
  }
  #information .link {
    padding-left: 0;
    width: 100%;
  }
  #information .link a {
    font-size: 16px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  #information .category {
    padding: 0;
  }
  #information .category br {
    display: none;
  }
  #information .time {
    padding-right: 15px;
    display: flex;
    align-items: center;
  }
  #information .time::before {
    display: none;
  }
  #information .category a {
    font-size: 13px;
  }
}
/* pickup
-----------------------------------------------*/
#pickup {
  padding-top: 100px;
  padding-bottom: 60px;
}
#pickup h2 span {
  color: #fff;
}
#pickup h2 span::before {
  background: #fff;
}
#pickup .col4 {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-top: 60px;
}
#pickup .col4 .col {
  background: #fff;
  border-radius: 10px;
}
#pickup .col4 .col a {
  display: block;
  padding: 20px;
  height: 100%;
}
#pickup .col4 .col .img {
  max-width: 125px;
  width: 100%;
  margin: 0 auto;
}
#pickup .col4 .col .txt h3 {
  font-size: 24px;
  text-align: center;
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.3;
}
#pickup .col4 .col .txt p {
  text-align: center;
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.5;
}
#pickup .col2 {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
  margin-top: 10px;
}
#pickup .col2 .col {
  background: #01bfb7;
  border-radius: 10px;
}
#pickup .col2 .col:last-child {
  background: #8dc300;
}
#pickup .col2 .col a {
  padding: 20px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
}
#pickup .col2 .col .img {
  max-width: 213px;
  width: 100%;
}
#pickup .col2 .col .txt h3 {
  font-size: 24px;
  color: #fff;
  line-height: 1.25;
}
  #pickup .col4 .col .txt h3:has(font) {
    flex-direction: column;
	  height: 100%!important;
}
  #pickup .col4 .col .txt h3:has(font) br {
    display: none;
  }
#pickup .col2 .col .txt p {
  font-size: 18px;
  margin-top: 15px;
  line-height: 1.3;
  color: #fff;
}
#pickup .col1 {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
  margin-top: 10px;
}
#pickup .col1 .col {
  background: #fff;
  border-radius: 10px;
}
#pickup .col1 .col a {
  padding: 30px 20px;
  display: block;
}
#pickup .col1 .col h3 {
  font-size: 32px;
  text-align: center;
}
@media only screen and (max-width:1240px) {
  #pickup .col4 {
    grid-template-columns: 1fr 1fr;
  }
  #pickup .col4 .col .txt h3 {
    font-size: 16px;
  }
  #pickup .col2 .col .txt h3 {
    text-align: center;
  }
  #pickup .col2 .col a {
    justify-content: center;
  }
  #pickup .col2 .col .img {
    max-width: 150px;
  }
}
@media only screen and (max-width:767px) {
  #pickup {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  #pickup .col4 {
    margin-top: 30px;
  }
  #pickup .col2 {
    grid-template-columns: 1fr;
    margin-top: 10px;
  }
  #pickup .col4 .col .txt h3 {
    font-size: 16px;
  }
  #pickup .col4 .col .txt p {
    font-size: 12px;
  }
  #pickup .col4 .col {
    border-radius: 5px;
  }
  #pickup .col4 .col a {
    padding: 10px 5px;
  }
  #pickup .col4 .col .img {
    max-width: 100px;
  }
  #pickup .col2 .col {
    border-radius: 5px;
  }
  #pickup .col2 .col a {
    gap: 15px;
    padding: 20px;
  }
  #pickup .col2 .col .img {
    max-width: 150px;
    margin: 0 auto;
  }
  #pickup .col2 .col .txt {
    width: 100%;
  }
  #pickup .col2 .col .txt h3 {
    font-size: 20px;
    text-align: center;
  }
  #pickup .col2 .col .txt p {
    font-size: 16px;
    margin-top: 10px;
    text-align: center;
  }
  #pickup .col1 .col {
    border-radius: 5px;
  }
  #pickup .col1 .col a {
    padding: 20px;
  }
  #pickup .col1 .col h3 {
    font-size: 22px;
  }
}
/* topScroll
-----------------------------------------------*/
#topScroll{
  background: #fff!important;
}
#topScroll.fade{
	opacity: 1;
}
#topScroll:hover{
	background: #0978b7!important;
  border: 1px solid #fff!important;
}
#topScroll::before{
	border-top: solid 2px #0978b7!important;
	border-left: solid 2px #0978b7!important;
}
#topScroll:hover::before{
	border-top-color: #fff!important;
	border-left-color: #fff!important;
}
@media only screen and (max-width:767px) {
#topScroll{
  background: #0978b7!important;
  border: solid 1px #fff;
}
#topScroll.fade{
	opacity: 1;
}
#topScroll:hover{
	background: #fff!important;
  border: 1px solid #0978b7!important;
}
#topScroll::before{
	border-top: solid 2px #fff!important;
	border-left: solid 2px #fff!important;
}
#topScroll:hover::before{
	border-top-color: #0978b7!important;
	border-left-color: #0978b7!important;
}
}


/* slider
-----------------------------------------------*/
.slick-slider {
  overflow: hidden;
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
  z-index: 1;
}
.slick-list {
  position: relative;
  display: block;
  margin: 0;
  height: 100%;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track, 
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}
.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  position: relative;
}
.slick-slide:focus {
  outline: none;
}
[dir='rtl'] .slick-slide {
  float: right;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
}
.slick-next, 
.slick-prev {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 200%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  font-size: 0;
}
.slick-next {
  left: 100%;
}
.slick-prev {
  right: 100%;
}
.slick-dots {
  position: absolute;
  left: 0;
  bottom: 16px;
  width: 100%;
  text-align: center;
  font-size: 0;
  margin-top: 10px;
}
.slick-dots li {
  display: inline-block;
  margin: 0 8px;
}
.slick-dots li button {
  width: 12px;
  height: 12px;
  font-size: 0;
  background-color: #002e70;
  border: #002e70 solid 2px;
  border-radius: 10px;
  padding: 0;
  cursor: pointer;
  transition: background .4s;
  box-sizing: unset;
}
.slick-dots li button + button {
  display: none;
}
.slick-dots li.slick-active button,
.slick-dots li button:hover {
  background-color: #fff;
}
@media only screen and (max-width:767px) {
  .slick-dots {
    margin-top: 5px;
  }
  .slick-dots li {
    margin: 0 5px;
  }
  .slick-dots li button {
    width: 10px;
    height: 10px;
  }
}



/* tab-news
-----------------------------------------------*/
#tab-news {
  position: sticky;
  z-index: 1;
  margin-top: 40px;
}
#tab-news::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -60px;
  z-index: -1;
  width: calc(100% + 120px);
  border-bottom: 1px solid #0978b7;
}
#tab-news ul {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
#tab-news ul li {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  background: #E5EEF6;
  color: #0978b7;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  border: 1px solid #0978b7;
  border-left: none;
  line-height: 1.2;
  text-align: center;
}
#tab-news ul li:last-child {
  background: #E5F6F0;
}
#tab-news ul li:first-child {
  border-left: 1px solid #0978b7;
}
#tab-news ul li.active {
  background: #fff;
  border-bottom-color: #fff;
}
#tab-news ul li br.tab {
  display: none;
}
@media only screen and (max-width:1500px) {
  #tab-news ul li {
    font-size: 18px;
  }
  #tab-news ul li br.tab {
    display: block;
  }
  #tab-news ul li .small {
    font-size: 16px;
    letter-spacing: -0.1em;
  }
}
@media only screen and (max-width:1080px) {
  #tab-news ul li {
    font-size: 15px;
    flex: auto;
  }
  #tab-news ul li .small {
    font-size: 13px;
  }
}
@media only screen and (max-width:767px) {
  #tab-news {
    left: -20px;
    width: calc(100% + 40px);
  }
  #tab-news::before {
    left: -20px;
    width: calc(100% + 40px);
  }
  #tab-news ul {
    overflow: auto hidden;
    white-space: nowrap;
  }
  #tab-news ul li {
    font-size: 15px;
    height: 60px;
    padding: 0 20px;
  }
  #tab-news ul li:first-child {
    margin-left: 20px;
  }
  #tab-news ul li:last-child {
    margin-right: 20px;
  }
}


@media only screen and (max-width:767px) {
  #information .important .impTitle {
    left: -20px;
    width: calc(100% + 40px);
    padding: 0 20px;
  }
  #information .important .impTitle h3 {
    font-size: 16px;
    height: 40px;
    padding: 0 10px;
  }
}