@charset "utf-8";

/*
  File Name   : top.css
  Description : Write top content styles
*/

/* kv-wrap
============================================================ */
#home .kv-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
}
#home .kv-wrap .kv-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
#home .kv-wrap .kv-inner .kv-area {
  overflow: hidden;
  position: relative;
  z-index: 1;
  width: 100%;
  opacity: 0;
}
#home .kv-wrap .kv-inner .kv-item {
  vertical-align: top;
}
#home .kv-wrap .kv-inner .kv-item:nth-child(n+2) {
  display: none;
}
#home .kv-wrap .kv-inner .slick-initialized .kv-item {
  display: inline-block;
}
#home .kv-wrap .kv-inner .kv-item .kv-item-img {
  overflow: hidden;
  text-indent: -9999px;
  height: 700px;
  background: no-repeat center center;
  background-size: cover;
}
#home .kv-wrap .kv-inner .kv-item .sp-img {
  display: none;
}
#home .kv-wrap .kv-inner .slick-list {
  overflow: hidden;
  width: 100%;
  height: auto;
  padding: 0;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  #home .kv-wrap .kv-inner .kv-item .kv-item-img {
    min-height: 500px;
    height: calc(100vh - 60px);
    max-height: 790px;
  }
  #home .kv-wrap .kv-inner .kv-item .pc-img {
    display: none;
  }
  #home .kv-wrap .kv-inner .kv-item .sp-img {
    display: block;
  }
}
@media screen and (max-width: 481px) {
  #home .kv-wrap .kv-inner .kv-item .kv-item-img {
    min-height: inherit;
    height: 370px;
    max-height: inherit;
  }
}

/* kv loading
============================================================ */
#home .kv-loading {
  position: absolute;
  z-index: 0;
  top: calc(50% - 40px - 30px);
  left: calc(50% - 40px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#home .kv-loading::after {
  content: "";
  position: absolute;
  z-index: -1;
  overflow: hidden;
  width: 80px;
  height: 80px;
  border-top: 4px solid rgba(0, 0, 0, .1);
  border-right: 4px solid rgba(0, 0, 0, .1);
  border-bottom: 4px solid rgba(0, 0, 0, .1);
  border-left: 4px solid #333;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-animation: load-animation 1.1s infinite linear;
          animation: load-animation 1.1s infinite linear;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  #home .kv-loading {
    top: calc(50% - 35px);
    left: calc(50% - 35px);
  }
  #home .kv-loading::after {
    width: 70px;
    height: 70px;
  }
}
@-webkit-keyframes load-animation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load-animation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* emergency
============================================================ */
#home .sect-emergency {
  padding: 40px 0;
}
#home .sect-emergency .section-inner {
  width: 100%;
  max-width: 1040px;
  padding: 0 20px;
  margin: 0 auto;
}
#home .sect-emergency .title-wrap {
  margin-bottom: 0;
  padding: 10px 20px;
  background: #f80000;
  color: #fff;
  border-bottom: none;
}
#home .sect-emergency h2 {
  display: inline-block;
}
#home .sect-emergency .emergency-list {
  padding: 30px 20px;
  border: 1px solid #f80000;
  border-top: none;
}
#home .sect-emergency .emergency-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px dotted #f80000;
}
#home .sect-emergency .emergency-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
#home .sect-emergency .emergency-list li .date {
  width: 110px;
  color: #6c6c6c;
  font-size: .933333333333em;
  line-height: 2;
  letter-spacing: 2px;
}
#home .sect-emergency .emergency-list li .new {
  background: #f80000;
  color: #fff;
  margin-left: 6px;
  padding: 2px 5px;
  font-size: .8em;
}
#home .sect-emergency .emergency-list li .title {
  width: calc(100% - 110px);
  padding-left: 10px;
}
#home .sect-emergency .emergency-list li .title a {
  line-height: 1.6;
  color: #4c4c4c;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  #home .sect-emergency {
    padding: 20px 0;
  }
  #home .sect-emergency .emergency-list {
    padding: 20px 20px 25px;
  }
  #home .sect-emergency .emergency-list li {
    display: block;
    margin-bottom: 20px;
    padding-bottom: 25px;
  }
  #home .sect-emergency .emergency-list li .date {
    display: block;
    width: auto;
  }
  #home .sect-emergency .emergency-list li .title {
    display: block;
    width: 100%;
    margin-top: 1px;
    padding-left: 0;
  }
}
@media screen and (max-width: 481px) {
  #home .sect-emergency h2 {
    display: block;
    text-align: center;
  }
}
