@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body {
  color: #333; /* RGB */
  font-family: "Montserrat", "Noto Sans JP",sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
}
section h2 {
  font-size: 2.4rem;
}
a:hover {
  opacity: 0.5;
}
a, a:visited {
  color: inherit; /*カラーコードは任意*/
}
*, *:before, *:after {
  box-sizing: border-box;
}
.underline {
  text-decoration: underline; /* 下線 */
  text-decoration-thickness: 0.8em; /* 線の太さ */
  text-decoration-color: rgba(255, 228, 0, 0.4); /* 線の色 */
  text-underline-offset: -0.3em; /* 線の位置。テキストに重なるようにやや上部にする */
  text-decoration-skip-ink: none; /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
}
.button {
  position: relative;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  width: 250px;
  margin: 0 auto;
  padding: 13px 50px 13px 30px;
  font-size: 1.6rem;
  border: 2px solid #1285c5;
  color: #1285c5;
  border-radius: 100vh;
  transition: 0.5s;
  letter-spacing: 0.1rem
}
.button:hover {
  color: #fff;
  background: #f08b54;
}
.button a {
  text-decoration: none;
  opacity: 1.0;
}
.button a::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 40px;
  width: 13px;
  height: 13px;
  margin: auto;
  border-top: 2px solid #1285c5;
  border-right: 2px solid #1285c5;
  transform: rotate(45deg);
  box-sizing: border-box;
}
.button a:hover:after {
  color: #FFF;
}
@media(min-width:900px) {
  .button {
    position: relative;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    width: 300px;
    margin: 0 auto;
    padding: 18px 50px 18px 30px;
    font-weight: bold;
    font-size: 1.8rem;
    border: 2px solid #1285c5;
    color: #1285c5;
    border-radius: 100vh;
    transition: 0.5s;
    letter-spacing: 0.2rem
  }
  .button:hover {
    color: #fff;
    background: #f08b54;
  }
  .button a {
    text-decoration: none;
    opacity: 1.0;
  }
  .button a::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 40px;
    width: 15px;
    height: 15px;
    margin: auto;
    border-top: 3px solid #1285c5;
    border-right: 3px solid #1285c5;
    transform: rotate(45deg);
    box-sizing: border-box;
  }
  .button a:hover:after {
    color: #FFF;
  }
}
#header {
  width: 100%;
  height: 120px;
  display: flex;
  justify-content: space-between;
  position: absolute;
  padding: 30px 50px 30px 100px;
  z-index: 1;
}
#g-nav {
  align-items: center;
  padding: 10px 20px 10px 20px;
}
#g-nav ul {
  display: flex;
  align-items: center;
}
#g-nav li {
  padding-right: 40px;
}
#g-nav li:last-of-type {
  padding-right: 0px;
}
#g-nav a {
  font-size: 1.6rem;
  color: #FFF;
  text-decoration: none;
}
.header-logo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.facebookicon img {
  height: 20px;
  width: auto;
}
@media(max-width:960px) {
  .header-logo img {
    height: auto;
    width:100px;
  }
  .facebookicon img {
    margin: 15px 0px;
    height: 25px;
    width: auto;
  }
}
@media(max-width:768px) {
  #footer .footer-nav ul {
    display: none;
  }
}
@media(min-width:768px) {
  .break-sp {
    display: none;
  }
}
#footer {
  background-color: #474747;
  padding: 30px 0;
}
.footer-logo {
  margin: 0 auto;
  height: 100%;
  width: 80px;
  padding-bottom: 30px;
}
#footer .footer-logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.nav-wrapper {
  width: 600px;
  margin: 0 auto;
}
.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  color: #FFF;
  justify-content: space-around;
}
.footer-nav li {
  font-weight: 400;
}
.footer-nav li :last-child {
  margin-right: 0;
}
.footer-nav a {
  text-decoration: none;
  font-size: 1.6rem;
}
.footer-nav li:last-child {
  transform: translateY(-20%);
}
#footer .footer-facebookicon img {
  widrh: 30px;
  height: 25px;
  object-fit: cover;
}
.footer-copyright {
  padding-top: 30px;
  color: #FFF;
  font-weight: 400;
  font-size: 1.2rem;
}
@media(min-width:1160px) {
  #footer {
    padding-top: 50px;
  }
  .footer-logo {
    margin: 0 auto;
    height: 100%;
    width: 120px;
    padding-bottom: 30px;
  }
  #footer img {
    height: 100%;
    width: 100%;
    object-fit: contain;
  }
  .nav-wrapper {
    width: 700px;
    margin: 0 auto;
  }
  .footer-nav ul {
    display: flex;
    color: #FFF;
    list-style: none;
    justify-content: space-around;
  }
  .footer-nav li {
    font-weight: 400;
  }
  .footer-nav li :last-child {
    margin-right: 0;
  }
  .footer-nav a {
    text-decoration: none;
    font-size: 1.6rem;
  }
  .footer-nav li:last-child {
    transform: translateY(-20%);
  }
  .footer-copyright {
    color: #FFF;
    font-weight: 400;
    font-size: 1.4rem;
  }
}
.swiper-slide img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
#timer {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  z-index: -10;
}
/*
    カスタマイズ
    */
.myswiper-wrapper {
  /*ウィンドウ幅からはみ出さないようにする*/
  overflow: hidden;
}
.swiper {
  max-width: 450px;
  /*アクティブなスライド以外も見えるように*/
  overflow: visible !important;
  margin-bottom: 50px;
}
.swiper-slide img {
  transition: 0.3s;
  transform: scale(0.7);
}
.swiper-slide-active img {
  transform: scale(1);
}
@media(max-width:900px) {
  .swiper {
    max-width: 200px;
  }
}
