@charset "utf-8";

/* =====================================================
#　base setting　　　　　
===================================================== */
html {
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  font: 400 16px / 1.8 "Zen Kaku Gothic New", sans-serif;
  color: #003a57;
  text-align: justify;
  letter-spacing: 0.03em;
}

a {
  text-decoration: none;
  color: #003a57;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }

  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }
}

.sp {
  display: inline !important;
}

/* =====================================================
#　header　　　　　
===================================================== */
header {
  width: 100%;
  height: 100px;
  background: #00a9c9;
  padding: 20px;
}

header h1 {
  width: 280px;
  height: auto;
}

header.HeightMin {
  position: fixed;
  z-index: 9999;
  height: 80px;
  animation: DownAnime 0.5s forwards;
}

header.HeightMin h1 {
  width: 200px;
  height: auto;
}

@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
#　breadcrumbs　　　　　
===================================================== */
#breadcrumbs {
  border-bottom: solid 1px #ccc;
}

#breadcrumbs p {
  max-width: 1320px;
  font-size: 14px;
  padding: 5px 15px;
  margin: 0 auto;
}

/* =====================================================
#　headline　　　　　
===================================================== */
#headline {
  display: grid;
  place-items: center;
  padding-block: 50px;
}

#headline p {
  font-size: 2rem;
  text-align: center;
}

@media screen and (max-width: 850px) {
  #headline p {
    font-size: 20px;
  }
}

/* =====================================================
#　footer　　　　　
===================================================== */
.copy {
  text-align: center;
  color: #7f8979;
  margin: 10px auto;
  font-size: 14px;
}


/* =====================================================
#　vacation　　　　　
===================================================== */
.vacation {
  color: black;
  padding: 15px;
  margin-block-end: 30px;
  background: rgb(255, 202, 202);
  border: solid 1px rgb(238, 114, 114);
  border-radius: 10px;
}