
/* || -------------------- body */

html {
	width: 100%;
	height: auto;
}
body {
  position: relative;
	width: 100%;
	height: auto;
	font-family: "Noto Sans JP", sans-serif;
  color: #000;
	font-size: 16px;
}

@media (max-width: 768px) {
}

/* || -------------------- fadeIn */

.fadeIn {
	opacity: 0;
	transform: translateY(50px);
	transition: transform  ease 1s, opacity ease 1s;
}
.fadeIn.show {
	opacity: 1;
	transform: translateY(0);
}

.l-slideIn {
  opacity: 0;
	transform: translateX(-50px);
  transition: transform  ease 1s, opacity ease 1s;
}
.l-slideIn.show {
  opacity: 1;
	transform: translateX(0);
}

.r-slideIn {
  opacity: 0;
	transform: translateX(50px);
  transition: transform  ease 1s, opacity ease 1s;
}
.r-slideIn.show {
  opacity: 1;
	transform: translateX(0);
}

.i-order {
	opacity: 0;
	transform: translateY(50px);
	transition: transform ease-out 0.6s, opacity ease 0.6s;
}
.i-order.show {
	opacity: 1;
	transform: translateY(0);
}

@media screen and (max-width: 768px) {
  .l-slideIn {
    transform: translate(0, 50px);
  }
  .l-slideIn.show {
    transform: translate(0);
  }
  
  .r-slideIn {
    transform: translate(0, 50px);
  }
  .r-slideIn.show {
    transform: translate(0);
  }
}

/* || -------------------- header */

header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  background-color: rgba(255,255,255,0.8);
  padding: 28px 30px;
  z-index: 9999;
}

header h1.logo ,
header div.logo {
  width: 100%;
  max-width: 300px;
}

header nav {
  width: calc(100% - 320px);
}
header nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}
header nav ul li {
  margin: 0 10px 0 0;
}
header nav ul li:last-child {
  margin: 0 0 0 0;
}

header nav ul li a {
  display: block;
  color: #4193bf;
  background-color: #fff;
  border-radius: 4px;
  padding: 8px 20px;
  transition: 0.4s;
}
header nav ul li a.active {
  color: #fff;
  background-color: #57c4ff;
}
header nav ul li a:hover {
  color: #fff;
  background-color: #b8b8b8;
  transition: 0.4s;
}

@media screen and (max-width: 1024px) {
  header {
    justify-content: space-between;
    padding: 14px 30px;
  }
  header nav {
		visibility: hidden;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    padding: 100px 20px 20px 20px;
		transition: opacity .6s ease, visibility .6s ease;
		opacity: 0;
		z-index: 1000;
  }
  header nav ul {
    width: 100%;
  }
  header nav ul li {
    width: 100%;
    margin: 0 0 4px 0;
  }
  header nav ul li a {
    border-radius: 0px;
    padding: 10px 20px;
  }

}
@media screen and (max-width: 500px) {

  header h1.logo ,
  header div.logo {
    width: 100%;
    max-width: 240px;
  }
}

/* ---------- open */

@media screen and (max-width: 1024px) {
	.open {
		overflow: hidden;
	}
	.open nav {
		visibility: visible;
		opacity: 1;
		margin: 0;
		overflow-y: scroll;
	}
	.open nav > ul li {
		opacity: 1;
		transform: translateX(0);
		transition: transform 1s ease, opacity .9s ease;
	}
}

/* --------------------------------- toggle */

div.toggle {
	visibility: hidden;
	display: none;
}

@media screen and (max-width: 1024px) {
	div.toggle {
		visibility: visible;
		display: block;
		width: 54px;
		height: 54px;
    border: 2px solid #57c4ff;
		background-color: #fff;
		border-radius: 4px;
		cursor: pointer;
		user-select: none;
		z-index: 1100;
	}
	div.toggle > div {
		position: relative;
	}
	div.toggle span {
		position: absolute;
		left: 50%;
		width: 34px;
		height: 2px;
		display: block;
		background: #57c4ff;
		transform: translateX(-50%);
		transform-origin: center;
		transition-duration: 0.6s;
		transition-timing-function: ease-in-out;
	}
	div.toggle span:nth-child(1) {
		top: 12px;
	}
	div.toggle span:nth-child(2) {
		top: 24px;
	}
	div.toggle span:nth-child(3) {
		top: 36px;
	}
}

/* ---------- open */

@media screen and (max-width: 1024px) {
	.open div.toggle span {
		background: #57c4ff;
	}
	.open div.toggle span:nth-child(1) {
		top: 24px;
		transform: translateX(-50%) rotate(45deg);
	}
	.open div.toggle span:nth-child(2) {
		top: 24px;
		width: 0;
		left: 50%;
	}
	.open div.toggle span:nth-child(3) {
		top: 24px;
		transform: translateX(-50%) rotate(-45deg);
	}
}

/* || -------------------- footer */

footer {
  width: 100%;
  background-color: rgba(171, 226, 255, 0.15);
  padding: 50px 0 0 0;
}

footer div.overview {
  margin: 0 auto 36px auto;
}
footer div.overview p {
  text-align: center;
}
footer div.overview figure {
  width: 100%;
  max-width: 400px;
  padding: 20px 0 20px 0;
  margin: 0 auto;
}

footer div.tel {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 50px auto;
}
footer div.tel figure {
  width: 47px;
  margin: 0 12px 0 0;
}
footer div.tel p {
  font-size: 2.625em;
}

footer div.hours {
  margin: 0 0 50px 0;
}
footer div.hours table {
  border-spacing: 5px;
  border-collapse: separate;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}
footer div.hours table th {
  color: #fff;
  background-color: #57c4ff;
  padding: 16px;
}
footer div.hours table td {
  text-align: center;
  border: 1px solid #57c4ff;
  background-color: #fff;
  padding: 16px;
}
footer div.hours p {
  width: 100%;
  max-width: 760px;
  text-align: right;
  margin: 0 auto;
}

footer div.googlemap iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

footer p.copy {
  width: 100%;
  color: #fff;
  text-align: center;
  background-color: #57c4ff;
  padding: 8px;
}

@media screen and (max-width: 768px) {

  footer div.overview {
    padding: 0 20px 0 20px;
    margin: 0 auto 24px auto;
  }
  footer div.overview figure {
    padding: 0 0 8px 0;
  }

  footer div.tel {
    padding: 0 20px 0 20px;
    margin: 0 auto 24px auto;
  }
  footer div.tel figure {
    width: 32px;
    margin: 0 12px 0 0;
  }
  footer div.tel p {
    font-size: 2.0em;
  }

}
@media screen and (max-width: 500px) {

  footer div.hours {
    padding: 0 20px 0 20px;
  }
  footer div.hours table {
    border-spacing: 0;
    border-collapse: collapse;
  }
  footer div.hours table th {
    border: 1px solid #57c4ff;
    border-right: 1px solid #fff;
    padding: 4px 0;
  }
  footer div.hours table th:nth-child(1) {
    width: 40%;
  }
  footer div.hours table th:last-child {
    border-right: 1px solid #57c4ff;
  }
  footer div.hours table td {
    padding: 4px 0;
  }

}

/* || -------------------- section.splide */

section.mv {
  width: 100%;
}
section.mv img {
  object-fit: cover;
  width: 100%;
  height: 708px;
}

@media screen and (max-width: 1024px) {
  section.mv img {
    height: 470px;
  }
}
@media screen and (max-width: 500px) {
  section.mv img {
    height: 300px;
  }
}

/* || -------------------- section.news */

section.news {
  width: 100%;
  background-color: rgba(171, 226, 255, 0.36);
  padding: 40px 40px 80px 40px;
}
section.news div.splide__track {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
section.news ul li a {
  display: block;
  background-color: #fff;
  padding: 16px 16px;
}
section.news ul li a p.title {
  color: #4193bf;
}
section.news ul li a p.date {
  color: #323232;
}

@media screen and (max-width: 768px) {

  section.news button.splide__arrow {
    top: 41%;
    background: #57c4ff;
  }
  button.splide__arrow svg {
    fill: #fff;
    stroke: unset;
  }

}
@media screen and (max-width: 500px) {

  section.news {
    padding: 40px 40px 40px 40px;
  }
  section.news button.splide__arrow {
    top: 50%;
  }

}


/* || -------------------- section.frontpage */

section.frontpage li {
  position: relative;
}
section.frontpage li div.inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

section.frontpage span.num {
  position: absolute;
  width: 72px;
  height: 72px;
  color: #fff;
  font-size: 3.0em;
  text-align: center;
  line-height: 72px;
  border-radius: 4px;
  background-color: #57c4ff;
  z-index: 100;
}
section.frontpage li:nth-child(1) span.num {
  top: -40px;
  right: 40px;
}
section.frontpage li:nth-child(2) span.num {
  top: -40px;
  left: 40px;
}
section.frontpage li:nth-child(3) span.num {
  top: -40px;
  right: 40px;
}

section.frontpage div.core {
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  width: 424px;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0.00px 1.00px 10px 0px rgba(0, 0, 0, 0.3);
  padding: 54px 62px;
}
section.frontpage li:nth-child(1) div.core {
  top: -40px;
  left: -40px;
}
section.frontpage li:nth-child(2) div.core {
  top: -40px;
  right: -40px;
}
section.frontpage li:nth-child(3) div.core {
  top: -40px;
  left: -40px;
  padding: 54px 62px 78px 62px;;
}

section.frontpage div.core figure {
  width: 87px;
  margin: 0 20px 0 0;
}
section.frontpage div.core h2 {
  width: calc(100% - 107px);
  color: #57c4ff;
  font-size: 2.625em;
}
section.frontpage div.core h2 span {
  display: block;
  width: 100%;
  font-size: 0.476em;
}

section.frontpage div.core p {
  width: 100%;
  /* font-size: 1.125em; */
  line-height: 1.9em;
  margin: 42px 0 0 0;
}
section.frontpage div.core p span {
  display: block;
  width: 100%;
  text-align: right;
}

section.frontpage div.core a {
  position: absolute;
  width: 100%;
  max-width: 164px;
  color: #fff;
  text-align: center;
  background-color: #57c4ff;
  padding: 8px 0;
}
section.frontpage li:nth-child(1) div.core a {
  right: -20px;
  bottom: 20px;
}
section.frontpage li:nth-child(2) div.core a {
  bottom: -20px;
}
section.frontpage li:nth-child(3) div.core a {
  right: -20px;
  bottom: 20px;
}
section.frontpage div.core a:hover {
  
}

section.frontpage ul li:nth-child(1) > figure {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
section.frontpage ul li:nth-child(2) > figure {
  width: 100%;
  margin: 0 0 0 0;
}
section.frontpage ul li:nth-child(3) > figure {
  width: 70%;
  margin: 0 0 0 auto;
}

section.frontpage ul li > figure img {
  object-fit: cover;
  width: 100%;
}
section.frontpage ul li:nth-child(1) > figure img {
  height: 618px;
}
section.frontpage ul li:nth-child(2) > figure img {
  height: 565px;
}
section.frontpage ul li:nth-child(3) > figure img {
  height: 618px;
}

@media screen and (max-width: 1024px) {

  section.frontpage li:nth-child(2) span.num {
    left: auto;
    right: 40px;
  }
  section.frontpage li:nth-child(2) div.core {
    left: -40px;
    right: auto;
  }
  section.frontpage li:nth-child(2) div.core a {
    right: -20px;
    bottom: 20px;
  }

}
@media screen and (max-width: 500px) {

  section.frontpage li {
    padding: 140px 0 0 0;
  }

  section.frontpage span.num {
    width: 60px;
    height: 60px;
    font-size: 2.0em;
    line-height: 60px;
  }
  section.frontpage li:nth-child(1) span.num ,
  section.frontpage li:nth-child(2) span.num ,
  section.frontpage li:nth-child(3) span.num {
    top: 6px;
    left: 280px;
    right: auto;
  }

  section.frontpage div.core figure {
    width: 50px;
    margin: 0 12px 0 0;
  }
  section.frontpage div.core h2 {
    width: calc(100% - 62px);
    font-size: 1.625em;
  }
  section.frontpage div.core p {
    margin: 10px 0 0 0;
  }

  section.frontpage li:nth-child(1) div.core ,
  section.frontpage li:nth-child(2) div.core ,
  section.frontpage li:nth-child(3) div.core {
    top: 20px;
    left: 20px;
    right: auto;
    width: 290px;
    padding: 30px 16px 32px 16px;
    margin: 0 auto 0 auto;
  }

  section.frontpage li:nth-child(1) div.core a ,
  section.frontpage li:nth-child(2) div.core a ,
  section.frontpage li:nth-child(3) div.core a {
    left: 0;
    right: 0;
    bottom: -20px;
    margin: 0 auto 0 auto;
  }

  section.frontpage ul li:nth-child(1) > figure ,
  section.frontpage ul li:nth-child(2) > figure ,
  section.frontpage ul li:nth-child(3) > figure {
    width: 100%;
    margin: 0 auto;
  }
  section.frontpage ul li:nth-child(1) > figure img ,
  section.frontpage ul li:nth-child(2) > figure img ,
  section.frontpage ul li:nth-child(3) > figure img {
    height: 300px;
    object-position: left;
  }

}