@charset "UTF-8";
/* CSS Document */
/*
font-family: 'Noto Sans JP', sans-serif;
font-weight:100 300 400 500;
font-family: 'Noto Serif JP', serif;
font-weight:200 300 400 500;
*/
body * {
  position: relative;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #333;
}
a:hover {
  opacity: 0.75;
  transition: 0.3s;
}
.inner {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 0;
}
.pc-none {
  display: none;
}
@media screen and (max-width:640px) {
  .pc-none {
    display: inherit;
  }
  .sp-none {
    display: none;
  }
}
/*-----------------------------------
	header
-----------------------------------*/
header {
  border-top: 5px solid #f8b62d;
}
header .inner {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
header h1 {
  font-size: 14px;
  letter-spacing: 1px;
  margin: 0 0 10px 0;
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
}
header .logo {
  width: 300px;
  height: auto;
}
header .head-menu li {
  display: inline-block;
  margin: 0 20px 0 0;
}
header .head-menu li:last-child {
  margin: 0;
}
header .head-menu li a::before {
  font-family: "Font Awesome 5 Free";
  content: "\f13a";
  font-weight: bold;
  margin: 0 5px 0 0;
  color: #f8b62d;
}
/*スクロールでFix*/
header .nav.fixed {
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
}
header .nav.fixed ul {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 10px 0;
  text-align: right;
}
/*開業お知らせ*/
header .open {
  position: absolute;
  top: -5px;
  right: 0;
  display: block;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  background: #63afd6;
  color: #FFF;
  padding: 10px 15px 10px 20px;
    border-radius: 0 0 5px 5px;
}
header .open a {
    display: block;
    color: #FFF;
}
header .open a::after {
    font-family: "Font Awesome 5 Free";
    content: "\f138";
    font-weight: bold;
    margin: 0 0 0 10px;
    color: #FFF;
}
@media screen and (max-width:640px) {
  header .inner {
    flex-direction: column;
    padding: 80px 0 0 0;
    align-items: center;
  }
  header h1 {
    text-align: center;
    margin: 0 0 20px 0;
  }
  header .logo {
    margin: 0 auto 20px auto;
  }
  header .nav.fixed ul {
    text-align: center;
  }
  header .open {
    width: 300px;
    text-align: center;
    right: inherit;
    left: calc(50% - 150px);
  }
}
/*-----------------------------------
	lead
-----------------------------------*/
.lead h2 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 100;
  font-size: 28px;
  letter-spacing: 1px;
  margin: 0 0 50px 0;
  text-align: center;
}
.lead h2::before {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  content: "concept";
  font-size: 14px;
  display: block;
  color: #63afd6;
}
.lead .lead-txt {
  letter-spacing: 1px;
  text-align: center;
}
.lead h3 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 100;
  font-size: 22px;
  letter-spacing: 1px;
  margin: 50px 0 40px 0;
  text-align: center;
  color: #63afd6;
}
.lead .txt-box {
  max-width: 640px;
  margin: 0 auto;
}
.lead .txt {
  letter-spacing: 1px;
  margin: 0 0 10px 0;
}
.lead .txt-box .detail {
  background: #f8f4e6;
  padding: 20px;
  margin: 20px 0 30px 0;
  text-align: center;
}
.lead .txt-box .detail li + li {
  margin: 20px 0 0 0;
}
.lead .txt-box .detail li span {
  display: block;
  color: #63afd6;
  border-bottom: 1px dotted #63afd6;
  margin: 0 0 5px 0;
}
/*こんな方におすすめ*/
.lead .target {
  margin: 20px 0 0 0;
  border: 1px solid #63afd6;
  padding: 10px 20px;
}
.lead .target h3 {
  color: #63afd6;
  margin: 0 0 10px 0;
  font-size: 18px;
  border-bottom: 1px dotted #63afd6;
}
.lead .target .nayami li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.lead .target .nayami li + li {
  margin: 10px 0 0 0;
}
.lead .target .nayami li span.midashi {
  display: inline-block;
  background: #63afd6;
  color: #FFF;
  padding: 0 10px 2px 10px;
  width: 100px;
  text-align: center;
}
.lead .target .nayami li span.detail {
  width: calc(100% - 120px);
}
@media screen and (max-width:640px) {
  .lead .lead-txt {
    text-align: left;
  }
  .lead .target {
    padding: 10px;
  }
  .lead .target .nayami li {
    flex-direction: column;
  }
  .lead .target .nayami li span.midashi {
    margin: 0 0 10px 0;
  }
  .lead .target .nayami li span.detail {
    width: 100%;
  }
}
/*-----------------------------------
	profile
-----------------------------------*/
.profile {
  background: #63afd6;
}
.profile .inner {
  max-width: 900px;
  padding: 30px 0;
}
.profile h2 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 100;
  font-size: 18px;
  letter-spacing: 1px;
  margin: 0 0 20px 0;
  color: #FFF;
}
.profile .box-wrap {
  display: flex;
  justify-content: space-between;
}
.profile .txt-box {
  width: calc(100% - 330px);
}
.profile .img-box {
  width: 300px;
}
.profile .img-box img {
  width: 100%;
  height: auto;
}
.profile .name {
  font-family: 'Noto Serif JP', serif;
  font-weight: 100;
  font-size: 24px;
  color: #FFF;
  margin: 0 0 10px 0;
}
.profile .name span {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 1px;
  color: #FFF;
  margin: 0 0 0 10px;
}
.profile .shikaku {
  margin: 0 0 10px;
  border-left: 2px solid #f8b62d;
  padding: 0 0 0 10px;
}
.profile .shikaku li {
  color: #FFF;
  font-size: 14px;
}
.profile .txt {
  color: #FFF;
  font-size: 14px;
  margin: 0 0 20px 0;
}
.profile .link-other {
  margin: 0;
}
.profile .link-other a {
  margin: 20px 0 0 0;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: normal;
  color: #FFF;
}
.profile .link-other a i {
  color: #FFF;
  font-size: 14px;
  font-weight: bold;
  margin: 0 0 0 5px;
}
.profile .link-other a::before {
  font-family: "Font Awesome 5 Free";
  content: "\f138";
  font-weight: bold;
  margin: 0 5px 0 0;
  color: #FFF;
}
@media screen and (max-width:640px) {
  .profile .box-wrap {
    flex-direction: column;
  }
  .profile .txt-box {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .profile .img-box {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
}
/*-----------------------------------
	menu
-----------------------------------*/
.menu {
  background: #f8f4e6;
}
.menu .inner {
  max-width: 900px;
  padding-bottom: 50px;
}
.menu h2 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 100;
  font-size: 28px;
  letter-spacing: 1px;
  margin: 0 0 50px 0;
  text-align: center;
}
.menu h2::before {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  content: "menu";
  font-size: 14px;
  display: block;
  color: #63afd6;
}
.menu .menu-btn {
  margin: 0 0 40px 0;
  text-align: center;
}
.menu .menu-btn li {
  display: inline-block;
  margin: 0 20px 10px 0;
}
.menu .menu-btn li:last-child {
  margin: 0 0 10px 0;
}
.menu .menu-btn li a {
  color: #63afd6;
}
.menu .menu-btn li a span {
  font-size: 14px;
  color: #63afd6;
}
.menu .menu-btn li a::before {
  font-family: "Font Awesome 5 Free";
  content: "\f13a";
  font-weight: bold;
  margin: 0 5px 0 0;
}
.menu .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px dotted #63afd6;
}
.menu .box:first-of-type {
  border-top: 1px dotted #63afd6;
}
.menu h3 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 26px;
  letter-spacing: 1px;
  width: 200px;
  margin: 0 30px 0 0;
  text-align: center;
}
.menu h3 span {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  font-weight: 400;
  color: #63afd6;
}
.menu .txt {
  width: calc(100% - 220px);
}
.menu .txt p, .menu .txt li {
  font-size: 15px;
  letter-spacing: 1px;
}
.menu .txt ul {
  border: 1px solid #63afd6;
  padding: 15px;
}
.menu .txt li span.mark {
  color: #63afd6;
}
.menu .txt li {
  margin: 0 0 7px 0;
}
.menu .txt p + p {
  margin: 10px 0 0 0;
}
.menu .txt p + ul, .menu .txt ul + p {
  margin: 10px 0 0 0;
}
@media screen and (max-width:640px) {
  .menu .menu-btn li {
    margin: 10px;
  }
  .menu .box {
    flex-direction: column;
  }
  .menu h3 {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .menu .txt {
    width: 100%;
  }
}
/*Slick*/
.slider {
  margin: 30px 0 0 0;
}
.slick-dotted.slick-slider {
    margin-bottom: 80px;
}
.slider img {
  width: 100%;
  height: auto;
  opacity: .5;
  transform: scale(.9);
  transition: opacity .5s, transform .5s;
}
.slider .slick-center img {
  opacity: 1;
  transform: scale(1);
}
.slider p {
opacity: 0.2;
	text-align: center;
	font-size: 14px;
	margin: 10px 0 0 0;
}
.slider .slick-center p {
	opacity: 1;
}
.slick-prev, .slick-next {
	width: 30px;
	height: 30px;
	z-index: 10;
	top: calc(50% - 15px);
}
.slick-prev {
	left: 10%;
}
.slick-next {
	right: 10%;
}
.slick-prev:before, .slick-next:before {
	color: #63afd6;
	font-family: "Font Awesome 5 Free";
	font-weight: bold;
	font-size: 30px;
}
.slick-prev:before {
	content: "\f137";
}
.slick-next:before {
	content: "\f138";
}
.slick-dots {
	bottom: -40px;
}
.slick-dots li button::before {
	color: #63afd6;
}
.slick-dots li.slick-active button:before {
	color: #63afd6;
}

@media screen and (max-width:640px) {
.slider img {
  opacity: 1;
  transform: scale(1);
  transition: none;
}
.slider p {
opacity: 1;
	text-align: left;
	padding: 0 20px;
	line-height: 140%;
}
.slick-prev, .slick-next {
	width: 20px;
	height: 20px;
	top: calc(50% - 20px);
}
.slick-prev {
	left: -10px;
}
.slick-next {
	right: -10px;
}
.slick-prev:before, .slick-next:before {
	font-size: 20px;
	opacity: 1;
}
.slick-dots {
	bottom: -30px;
}
	.slick-dots li {
		margin: 0;
	}
.slick-dots li button::before {
	color: #63afd6;
}
.slick-dots li.slick-active button:before {
	color: #63afd6;
}
}
/*-----------------------------------
	flow
-----------------------------------*/
.flow {
  background: #f8f4e6;
}
.flow .inner {
  max-width: 900px;
  padding-bottom: 100px;
}
.flow h2 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 100;
  font-size: 28px;
  letter-spacing: 1px;
  margin: 0 0 50px 0;
  text-align: center;
}
.flow h2::before {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  content: "flow";
  font-size: 14px;
  display: block;
  color: #63afd6;
}
.flow dl {
  text-align: center;
}
.flow dl dt {
  font-size: 18px;
  font-weight: 500;
  color: #63afd6;
  background: #FFF;
  width: 640px;
  display: block;
  margin: 0 auto;
  letter-spacing: 1px;
}
.flow dl dd + dt {
  margin: 50px auto 0 auto;
}
.flow dl dd + dt::before {
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: bold;
  display: block;
  position: absolute;
  top: -40px;
  left: calc(50% - 9px);
}
.flow dl dt + dd {
  margin: 10px 0 0 0;
}
@media screen and (max-width:640px) {
  .flow dl dt {
    width: 100%;
  }
}
/*-----------------------------------
	price
-----------------------------------*/
.price {
  background: #63afd6;
}
.price .inner {
  max-width: 700px;
  padding: 30px 0 60px 0;
}
.price .price-header {
  background: #f8f4e6;
  text-align: center;
  border-bottom: 10px solid #63afd6;
  padding: 100px 0 0 0;
  margin: -100px 0 0 0;
}
.price h2 {
  background: #63afd6;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  color: #FFF;
  cursor: pointer;
  font-family: 'Noto Serif JP', serif;
  font-weight: 100;
  font-size: 22px;
  letter-spacing: 1px;
  padding: 15px 0 10px 0;
}
.price h2::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  transform: rotate(-45deg);
  border-bottom: 1px solid #FFF;
  border-left: 1px solid #FFF;
  margin: 0 auto;
}
.price .active h2::after {
  transform: rotate(-225deg);
  position: relative;
  top: 10px;
}
.price h2:hover {
  opacity: 0.85;
  transition: 0.3s;
}
.price .lead-txt {
  color: #FFF;
  text-align: center;
  margin: 0 0 20px 0;
}
.price .box {
  background: #f8f4e6;
  border-radius: 5px;
  padding: 15px;
}
.price .box + .box {
  margin: 20px 0 0 0;
}
.price .box h3 {
  font-size: 22px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  border-bottom: 1px solid #63afd6;
  margin: 0 0 15px 0;
}
.price .box .txt {
  margin: 0 0 10px 0;
}
.price .box table {
  border-collapse: collapse;
}
.price .box th, .price .box td {
  border: 1px solid #63afd6;
  background: #FFF;
  padding: 3px 10px;
  text-align: center;
}
.price .box th {
  background: #63afd6;
  color: #FFF;
}
.price .attention {
  font-size: 14px;
  margin: 5px 0 0 0;
}
@media screen and (max-width:640px) {}
/*-----------------------------------
	about
-----------------------------------*/
.about h2 {
  font-size: 14px;
  letter-spacing: 1px;
  margin: 0 0 10px 0;
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
}
.about .logo {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 0 30px 0;
}
.about .box-wrap {
  display: flex;
  justify-content: space-between;
  margin: 0 0 30px 0;
}
.about .box-wrap .txt-box {
  width: calc(100% - 370px);
}
.about .map-box {
  width: 350px;
}
.about .map-box iframe {
  widows: 100%;
  height: 100%;
}
.about .schedule table {
  border-collapse: collapse;
  margin: 15px 0 10px 0;
  width: 100%;
}
.about .schedule table th, .about table td {
  border: 1px solid #63afd6;
  text-align: center;
  vertical-align: middle;
}
.about .schedule table th {
  background: #e8a454;
  color: #FFF;
}
.about .schedule table td.open {
  background: #f8f4e6;
  font-weight: 500;
}
.about .schedule table td span {
  font-size: 14px;
}
.about .schedule .attention {
  margin: 0 0 30px 0;
}
.about .schedule .attention li, .about .contact .attention li {
  font-size: 14px;
  padding: 0 0 0 20px;
  color: #666;
}
.about .attention li::before, .about .contact li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.about .contact h3 {
  background: #63afd6;
    color: #FFF;
  background-size: contain;
    border-radius: 3px;
  height: 30px;
  line-height: 28px;
  padding: 0 0 0 10px;
  margin: 0 0 15px 0;
}
.about .contact p {
  font-size: 20px;
  margin: 0 0 10px 0;
  color: #63afd6;
}
.about .contact p a {
  font-size: 20px;
  color: #63afd6;
}
.about .contact p i {
    display: inline-block;
  width: 20px;
    height: 20px;
  margin: 0 10px 0 0;
}
.about .contact .attention {
  margin: 0 0 10px 0;
}
.about .contact p.txt {
  font-size: 16px;
  color: #333;
}
.about .contact p.phone, .about .contact p.mail, .about .contact p.line {
  padding: 0 0 0 20px;
}
.about .contact p.line {
  font-size: 20px;
}
.about .contact p.line i {
    display: inline-block;
  width: 40px;
    height: 40px;
  vertical-align: middle;
}
.about .contact p.line a {
  display: block;
  color: #06C755;
}
.about .request {
  border: 2px solid #63afd6;
  padding: 10px 15px;
  display: flex;
  align-items: center;
}
.about .request h3 {
  padding: 0 40px 0 10px;
  color: #63afd6;
}
.about .request li {
  font-size: 14px;
  list-style-type: disc;
  margin: 0 0 0 10px;
  color: #666;
  color: #63afd6;
}
@media screen and (max-width:640px) {
  .about .box-wrap {
    flex-direction: column;
  }
  .about .box-wrap .txt-box {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .about .box-wrap .map-box {
    width: 100%;
  }
  .about .request {
    flex-direction: column;
  }
  .about .request h3 {
    padding: 0;
    margin: 0 0 10px 0;
  }
  .about .map-box {
    height: 300px;
  }
}
/*-----------------------------------
	footer
-----------------------------------*/
footer {
  text-align: center;
}
footer .pagetop a {
  display: block;
  background: #63afd6;
  width: 80px;
  height: 80px;
  padding: 35px 0 0 0;
  color: #FFF;
  border-radius: 50%;
  margin: 0 auto 30px auto;
  font-size: 14px;
}
footer .pagetop a::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  transform: rotate(-45deg);
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  position: absolute;
  top: 20px;
  left: 33px;
}
footer .copyright {
  font-size: 12px;
  padding: 10px 0 15px 0;
  letter-spacing: 1px;
  background: #63afd6;
  color: #FFF;
}
@media screen and (max-width:640px) {}