@charset "UTF-8";

/* ----------------
COMMON
---------------- */
html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #333333;
}
a {
  text-decoration: none;
  color: #333333;
}
ul {
  list-style: none;
}
#hmb {
  display: none;
}
.sp-nav,.webicon {
  display: none;
}
.title {
  padding-top: 50px;
  padding-bottom: 30px;
  text-align: center;
}
.title > h2 {
  font-weight: 300;
}
.title .sp-icon {
  display: inline;
}
.sp-icon {
  display: block;
  width: 50px;
  height: 50px;
}
#sp {
  display: none;
}
.container {
  width: calc(100vw - 60px);
  min-width: 310px;
  max-width: 1029px;
  margin: 0 auto;
}

/* ----------------
HEADER
---------------- */
header {
  width: calc(85% - 20px);
  min-width: 310px;
  background: #fff;
  border-radius: 0 0 24px 24px;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
  z-index: 40;
}
.logo {
  text-align: center;
}
/* ----------------HERO---------------- */
.home-hero {
  position: relative;
  width: 100vw;
  height: 580px;
  z-index: 30;
}
.home-hero img {
  width: 100vw;
  height: 580px;
  object-fit: cover;
}
.hero-img {
  position: absolute;
  opacity: 0;
  transition:  all 2s ease;
}
.hero-img.active {
  opacity: 1;
}
.hero-copy {
  background-color: #ffffff8d;
  padding: 1rem 3rem;
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -70%);
  z-index: 20;
  border-radius: 4px;
}
.hero-copy p {
  text-align: center;
  margin: 2rem 0;
  color: #333333;
}
/* ----------------PC-NAV---------------- */
.pc-nav {
  margin-top: 40px;
  padding: 2rem 0;
  background: #7EC4CA;
  border-radius: 32px;
  z-index: 50;
}
.pc-nav ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 1rem;
  width: 80%;
  margin: 0 auto;
}
.pc-nav ul li {
  text-align: center;
}
.pc-nav ul a {
  color: #fff;
}
.pc-nav ul a:hover {
  color: #245c61;
}
/* ---------------
NEWS
---------------- */
#pc table {
  width: 80%;
  margin: 0 auto;
  border-collapse: collapse;  
}
#pc .date {
  width: 30%;
}
#pc .date h3 {
  text-align: right;
  margin-right: 3rem;
  align-items: center;
}
#pc .ns-txt {
  width: 70%;
  text-align: left;
  margin-left: 3rem;
}
#pc .ns-txt p {
  margin-left: 3rem;
}
#pc table tr td {
  padding: 2rem 0;
}
#pc table {
  border-top: 1px dashed #999;
  border-bottom: 1px dashed #999;
}
#pc tr:first-child,
#pc tr:nth-child(2),
#pc tr:nth-child(3) {
  border-bottom: 1px dashed #999;
}
#pc tr:nth-child(3) {
  margin-top: 3rem;
}
.pickup {
  font-weight: 500;
  color: #f98a23;
}
.ns-txt span {
  background-color: #f98a2341;
}
.banner {
  width: 100%;
  max-width: 850px;
  padding-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  text-align: center;
  gap: 10px;
}
.banner img {
  width: 100%;
  object-fit: cover;
}
/* ---------------
TREATMENT
---------------- */
.treat-items {
  width: 90%;
  display: flex;
  margin: 0 auto;
  gap: 5px;
  flex-wrap: wrap;
}
.treat-items > article {
  cursor: pointer;
  box-sizing: border-box;
  background-color: #7EC4CA;
  border-radius: 24px;
  flex: 1 0 130px;
  margin: 0 auto;
  padding: 5px 15px 0;
  text-align: center;
}
.treat-items > article:hover {
  background-color: #aadce1;
}
.treat-item,h3,p {
  color: #333333;
}
img.treat-icon {
  height: 100px;
}
.treat-items h3 {
  margin: 0;
  font-weight: 500;
}
.treat-items p {
  margin: 10px 0 20px;
  text-align: justify;
}
/* ---------------
OPENING
---------------- */
.opening {
  width: 90%;
  margin: 0 auto;
  display: flex;
  gap: 30px;
}
.opening-detail > div:nth-child(2)  {
  padding-top: 2rem;
  text-align: left;
  margin: 0 auto;
  display: inline-block;
}
.opening-detail {
  width: 30%;
}
.opening table {
  width: 60%;
}
.opening table {
  flex: auto;
  border-top: 3px solid #347F86;
  border-bottom: 3px solid #347F86;
  background-color: #7ec4ca50;
  text-align: center;
}
.opening table th {
  font-weight: 400;
}
.opening table th,
.opening table td {
  padding: 2rem 0.5em;
}
.opening table tr:first-child {
  border-bottom: 1.5px solid #347F86;
}
.colour {
  color: #347F86;
}
.tel-num span {
  font-size: 1.6rem;
}
.opening-disc .tel-num a{
  color: #347F86;
  font-weight: 500;
}
/* ---------------
ACCESS
---------------- */
.google-map {
  margin-bottom: 50px;
}
.google-map iframe {
  width: 100%;
  height: 400px;
  vertical-align: bottom;
  }
/* ---------------
FOOTER
---------------- */
footer {
  height: 100px;
  line-height: 100px;
  border-top: 3px solid #7EC4CA;
}
small {
  color: #333333;
  display: block;
  text-align: center;
}

button {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 20px;
  bottom: 20px;
  width: 80px;
  height: 80px;
  font-size: 20px;
  font-weight: bold;
  background: #347F86;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}
.is-active {
  opacity: 1;
  visibility: visible;
}
