@charset "UTF-8";
/* CSS Document */
body {
  font-feature-settings: "palt";
  position: relative;
}

* {
  font-family: "Noto Sans Japanese";
  font-feature-settings: "palt";
}

section {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/*--ナビメニュー-------------------------------------------------------*/
nav {
  font-size: 1.2em;
  width: 100%;
  height: 100px;
  background-color: #ffffff;
  position: fixed;
  z-index: 10;
  top: 0px;
  left: 0px;
}
#nav-inner {
  width: 100%;
  height: 70px;
  position: fixed;
  z-index: 10;
  top: 30px;
  left: 0px;
  display: block;
}

/*最新NEWS*/
#top-news {
  width: 100%;
  height: 30px;
  font-size: 80%;
  font-weight: 200;
  color: #ffffff;
  text-align: center;
  background-color: #ff4673;
  padding: 5px 0px;
  display: block;
  z-index: 200;
  transition: all 0.5s;
}

/*#top-news:after{
content:"2018.7.12　応募を締め切りました";
}*/

/*ロゴ*/
#nav-logo {
  height: 70px;
  width: 300px;
  background-image: url(../img/go_logo.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left 50%;
  font-size: 0px;
  padding: 5px;
  margin-left: 10px;
  display: block;
}
nav #nav-inner #nav-menu {
  width: 500px;
  height: 70px;
  margin: 0px auto;
  position: fixed;
  z-index: 10;
  top: 30px;
  left: 0px;
  right: 0px;
  display: block;
}

/*メニュー*/
nav #nav-inner #nav-menu li {
  width: 20%;
  height: 50px;
  font-weight: 700;
  text-align: center;
  padding: 23px 0px 43px 0px;
  margin: 0px;
  display: block;
  float: left;
  border-bottom: 4px solid rgba(255, 70, 115, 0);
  transition: border-bottom 0.3s;
}
nav #nav-inner #nav-menu li a {
  color: #000000;
}
nav #nav-inner #nav-menu li:hover {
  border-bottom: 4px solid rgba(255, 70, 115, 1);
}

nav #nav-inner #nav-menu li a:hover {
  text-decoration: none;
}

/*SNSボタン*/
#nav-sns {
  width: 130px;
  height: 30px;
  position: fixed;
  z-index: 10;
  top: 50px;
  right: 0px;
  margin-right: 10px;
}

#nav-sns ul {
  width: 130px;
  height: 30px;
}
#nav-sns li {
  width: 30px;
  height: 30px;
  margin-right: 15px;
  display: inline-block;
}
#nav-sns li:last-of-type {
  margin-right: 0px;
}

#nav-sns img {
  width: auto;
  height: 30px;
  transition: opacity 0.3s;
}

#nav-sns img:hover {
  opacity: 0.5;
}

/*--メインコンテンツ-------------------------------------------------------*/
#content {
  width: 100%;
  height: 100%;
  min-height: 80vh;
  padding: 90px 10px 0px 10px;
  margin-top: 10px;
  display: block;
}

/*小見出し*/
.komidashi {
  width: 100%;
  height: 50px;
  color: #ffffff;
  font-size: 200%;
  font-family: Arial Narrow, AvenirNextCondensed-Bold, "Noto Sans Japanese";
  font-weight: bold;
  text-align: center;
  padding: 10px;
}

/*--フッター-------------------------------------------------------*/

#footer {
  background-color: #000000;
  font-size: 80%;
  font-weight: 200;
  color: #ffffff;
  padding: 40px;
}

#footer p {
  width: 100%;
  text-align: center;
  margin-bottom: 25px;
}

#footer a {
  color: #ffffff;
  display: inline-block;
  margin: 0px;
  padding: 0px;
}

#footer a div {
  text-align: left;
  display: block;
}

#footer span {
  margin-bottom: 5px;
  display: block;
}

#footer img {
  width: auto;
  height: 20px;
  margin: 0px;
  padding: 0px;
}
#footer img:nth-of-type(1) {
  margin-right: 15px;
}

.sp {
  display: none;
}

/*--スマホ用-------------------------------------------------------*/
@media (orientation: portrait) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }

  body {
    width: 100%;
    position: relative;
  }

  #content {
    width: 100%;
    padding: 80px 0px 0px 0px;
  }

  /*小見出し*/
  .komidashi {
    width: 100%;
    height: 40px;
    padding: 5px 0px;
  }

  /*最新NEWS*/
  #top-news:after {
    font-size: 80%;
  }

  /*--ナビ--*/
  nav {
    width: 100%;
    height: 80px;
  }

  /*トグル*/
  .toggle {
    background-image: url(../img/hamburger.png);
    background-size: 50px 50px;
    background-repeat: no-repeat;
    background-position: center;
    width: 50px;
    height: 50px;
    font-size: 0em;
    color: #ffffff;
    position: fixed;
    top: 30px;
    right: 0px;
    left: auto;
    z-index: 1000;
    display: block;
    transition: all 0.2s;
  }

  .toggle.active {
    background-image: url(../img/hamburger.png);
    background-size: 50px 50px;
  }

  nav #nav-inner #nav-menu ul {
    width: 170px;
    height: auto;
    padding-top: 0px;
    font-size: 1em;
    text-align: left;
    position: fixed;
    top: 80px;
    right: 0px;
    left: auto;
    z-index: 100;
    /*transform: translateX(170px);*/
    transform: scaleY(0);
    transform-origin: 100% 0%;
    opacity: 0;
    transition: all 0.2s;
  }

  nav #nav-inner #nav-menu ul.active {
    /*transform: translateX(0px);*/
    transform: scaleY(1);
    opacity: 1;
    box-shadow: -5px 5px 5px rgba(0, 0, 0, 0.2);
  }

  nav #nav-inner #nav-menu ul li {
    width: 170px !important;
    height: 45px;
    font-weight: 500;
    text-align: left !important;
    margin: 0px 0px;
    background-color: #ffffff;
    padding: 10px 10px 10px 20px !important;
    display: block;
    float: none;
    clear: both;
    border-bottom: 1px solid #dddddd;
  }

  nav #nav-inner #nav-menu li:hover {
    border-bottom: none;
  }

  /*ロゴ*/
  #nav-logo {
    width: 220px;
    height: 40px;
    background-size: contain;
    background-position: 50%;
    right: 0px;
    margin: 0px auto;
    display: block;
    position: fixed;
    right: 0px;
    left: 0px;
    margin: 5px auto;
    z-index: 1000;
  }

  #nav-sns {
    position: fixed;
    right: 0px;
    top: auto;
    bottom: 0px;
    z-index: 10;
    display: block;
  }

  /*--フッター--*/
  #footer {
    padding-bottom: 115px;
  }
  #footer img {
    margin-right: 10px;
  }
} /*--スマホ用--*/
.komidashi {
  margin-top: 0;
}
.slide-item,
.slick-track {
  font-size: 0;
}
.slide-item span {
  font-size: 0;
}
.slide-item img {
  max-width: 100%;
}

.slick-dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}

.slick-dots li {
  margin: 0 5px;
  width: 10px;
  height: 10px;
  background-color: #666;
  border-radius: 50%;
}
.slick-dots li.slick-active {
  background-color: #000;
}

.slick-dots li button {
  display: none;
}

.covid19 {
  padding: 10px 0;
}
.covid19 h3 {
  text-align: center;
}
.covid19 p {
  text-align: center;
}

.covid19 p a {
  color: #ff4673;
  text-decoration: underline;
}

.strong-text {
  color: #ff4673;
  font-weight: bold;
}

.text-center {
  text-align: center;
}
