@charset "UTF-8";

/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop
$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop
ORDER: Base + typography > general layout + grid > page layout > components
1em = 16px
*/
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

body {
  font-family: "Noto Sans CJK JP", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
  font-weight: 400;
  /*font-size: 16px;*/
  line-height: 1.6;
  color: #624a41;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

@media only screen and (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}

@media only screen and (max-width: 52em) {
  html {
    font-size: 50%;
  }
}

@media only screen and (min-width: 112.5em) {
  html {
    font-size: 75%;
  }
}

.row {
  max-width: 92.5rem;
  margin: 0 auto;
}

.row.col-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.row.col-2 > div {
  min-width: 36rem;
  width: 45%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.row.col-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.row.col-3 > div {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

p {
  font-size: 1.4rem;
  line-height: 2.5rem;
  font-weight: 100;
  margin-bottom: 2rem;
}

@media only screen and (max-width: 52em) {
  p {
    font-size: 1.6rem;
  }
}

a {
  color: #624a41;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#calendar a {
  font-size: 1.6rem;
}

a.link:link,
a.link:visited {
  color: #624a41;
}

a.link:hover,
a.link:hover {
  padding-bottom: 3px;
  border-bottom: 2px solid #d3ad90;
}

li {
  list-style-type: none;
}

i {
  margin-right: 0.5rem;
}

h2 {
  font-size: 2rem;
  text-transform: capitalize;
  font-weight: 400;
  letter-spacing: 0.2rem;
  margin-bottom: 2rem;
}

@media only screen and (max-width: 37.5em) {
  h2 {
    font-size: 2.3rem;
  }
}

h2 span {
  letter-spacing: 0.1rem;
  font-size: 50%;
  font-weight: 400;
  display: block;
  margin-top: 0.1rem;
}

h2.section-head {
  margin-bottom: 5rem;
}

h2.section-head span {
  letter-spacing: 0;
  margin-top: 0;
}

.btn {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn i {
  margin-right: 1rem;
}

.btn,
.btn:link,
.btn:visited {
  font-size: 1rem;
  font-weight: 500;
  color: #624a41;
  padding: 0.3rem 2.5rem;
  border: 0.2rem solid #624a41;
}

.sticky .btn,
.sticky .btn:link,
.sticky .btn:visited {
  font-size: 1.2rem;
  padding: 0.3rem 2rem;
  letter-spacing: 0.1rem;
}

.btn-white,
.btn-white:link,
.btn-white:visited {
  color: white;
  border: 0.2rem solid white;
}

.btn:hover {
  background-color: #624a41;
  color: white;
}

.up {
  position: fixed;
  bottom: 4rem;
  right: 4rem;
  width: 6rem;
  height: 6rem;
  background-color: rgba(203, 137, 88, 0.7);
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  visibility: hidden;
  opacity: 0;
}

@media only screen and (max-width: 52em) {
  .up {
    bottom: 7.5rem;
  }
}

@media only screen and (max-width: 37.5em) {
  .up {
    right: 2rem;
    bottom: 7.5rem;
    width: 4rem;
    height: 4rem;
  }
}

.up:before {
  cursor: pointer;
  color: white;
  content: "\f102";
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: 4rem;
}

@media only screen and (max-width: 37.5em) {
  .up:before {
    font-size: 3.5rem;
  }
}

.up.display {
  opacity: 0.5;
  visibility: visible;
}

.up.display:hover {
  opacity: 1;
}

@media only screen and (max-width: 37.5em) {
  .up.display {
    opacity: 0.7;
  }
}

header {
  position: relative;
  overflow: hidden;
  height: 56.25vw;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  margin-top: -1rem;
  background-image: url("img/hapgardenhero-1800.jpg");
}

@media only screen and (max-width: 37.5em) {
  header {
    background-image: url("img/hapgardenhero-600.jpg");
  }
}

@media only screen and (min-width: 112.5em) {
  header {
    background-image: url("img/hapgardenhero-2400.jpg");
  }
}

.eyecatch-video {
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  min-width: 100%;
  height: 56.25vw;
}

body div.main {
  position: absolute;
  top: 0;
  margin-top: 55.125vw;
  width: 100%;
}

h1 img {
  margin: 0 2rem;
  height: 5.5rem;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
}

@media only screen and (max-width: 52em) {
  h1 img {
    font-size: 2.5rem;
    letter-spacing: 0.1rem;
    margin: 0;
    height: 4.5rem;
  }
}

.sticky h1 img {
  font-size: 3rem;
  letter-spacing: 0.2rem;
  font-weight: 400;
}

nav.sticky ~ .concept {
  padding-top: 26vh;
}

@media only screen and (max-width: 37.5em) {
  nav.sticky ~ .concept {
    padding-top: 22vh;
  }
}

.nav-normal {
  background-color: #f5f5f5;
  padding: 3.5rem 1rem;
  margin-top: -0.5rem;
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
  position: relative;
  -webkit-transition: all 0.5s, width 0s;
  transition: all 0.5s, width 0s;
}

@media only screen and (max-width: 52em) {
  .nav-normal {
    margin-top: -0.3rem;
    padding: 2rem 4rem;
  }
}

@media only screen and (max-width: 37.5em) {
  .nav-normal {
    padding: 1.5rem;
  }
}

.nav-normal .nav-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.nav-normal .nav-content .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (max-width: 37.5em) {
  .nav-normal .nav-content .logo {
    margin-left: 1rem;
  }
}

.nav-normal .nav-content .menu {
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  height: 8rem;
}

@media only screen and (max-width: 52em) {
  .nav-normal .nav-content .menu {
    display: none;
  }
}

.nav-normal .nav-content .menu-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-transform: capitalize;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.nav-normal .nav-content .menu-items li {
  margin: 0 0.8rem;
}

.nav-normal .nav-content .menu-items li:last-child {
  margin-right: 0;
}

.nav-normal .nav-content .menu-items a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.nav-normal .nav-content .menu-items a:link,
.nav-normal .nav-content .menu-items a:visited {
  color: #624a41;
}

.nav-normal .nav-content .menu-items a i {
  font-size: 1.8rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.nav-normal .nav-content .menu-items a i:hover {
  opacity: 0.5;
}

.nav-normal .nav-content .menu-items a:last-child i {
  margin-right: 0;
}

.nav-normal .nav-content .menu-hamburger {
  cursor: pointer;
  display: none;
  background-color: #fff;
  height: 5.5rem;
  width: 5.5rem;
  padding: 0.3rem 0.5rem;
  z-index: 12;
  text-align: center;
}

@media only screen and (max-width: 52em) {
  .nav-normal .nav-content .menu-hamburger {
    display: block;
  }
}

.nav-normal .nav-content .menu-hamburger p {
  margin: 0;
  margin-top: -1rem;
  cursor: pointer;
}

.nav-normal .nav-content .menu-hamburger i {
  font-size: 4rem;
  margin: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  -webkit-transform: scaleY(0.75) scaleX(1.1);
  transform: scaleY(0.75) scaleX(1.1);
}

.nav-normal .nav-content .menu-hamburger i:hover {
  opacity: 0.5;
}

.nav-normal .nav-content .menu-reservation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav-normal.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  padding: 2.5rem 0;
  z-index: 10;
}

@media only screen and (max-width: 52em) {
  .nav-normal.sticky {
    padding: 2.5rem 5rem;
  }
}

@media only screen and (max-width: 37.5em) {
  .nav-normal.sticky {
    padding: 1.2rem 2rem;
  }
}

.nav-normal.sticky .menu {
  font-size: 1.3rem;
  height: 6.5rem;
}

.menu-reservation-tel {
  font-size: 2rem;
  font-weight: 700;
  margin-right: 2rem;
}

.menu-reservation-tel i {
  margin-right: 1rem;
}

.nav-smart {
  z-index: 15;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(255, 255, 255, 0.6);
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  text-align: center;
}

@media only screen and (max-width: 52em) {
  .nav-smart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media only screen and (max-width: 37.5em) {
  .nav-smart {
    font-size: 90%;
  }
}

.nav-smart a,
.nav-smart a:link,
.nav-smart a:visited {
  font-weight: 300;
  font-size: 1.8rem;
  color: white;
}

.nav-smart.display {
  opacity: 1;
  visibility: visible;
}

.nav-smart-icons {
  margin-top: 2rem;
}

.nav-smart-icons a,
.nav-smart-icons a:link,
.nav-smart-icons a:visited {
  font-size: 3.5rem;
  margin: 0 1rem;
}

.nav-smart-icons a:hover {
  opacity: 0.8;
}

.nav-smart-content {
  height: auto;
  width: 80vw;
  background-color: #cb8958;
  padding: 7rem;
  position: relative;
}

@media only screen and (max-width: 37.5em) {
  .nav-smart-content {
    padding: 3rem;
    width: 90vw;
  }
}

.nav-smart-content .cross:before {
  color: white;
  content: "\f00d";
  cursor: pointer;
  top: 0.5rem;
  right: 1.4rem;
  position: absolute;
  display: inline;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: 4rem;
}

@media only screen and (max-width: 52em) {
  .nav-smart-content .cross:before {
    top: 1rem;
    right: 2.5rem;
    font-size: 3rem;
  }
}

@media only screen and (max-width: 37.5em) {
  .nav-smart-content .cross:before {
    top: 0.6rem;
    right: 1.8rem;
    font-size: 3rem;
  }
}

.nav-smart-content ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 1rem 0 4rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (max-width: 37.5em) {
  .nav-smart-content ul {
    margin: 3rem 0 1.5rem;
  }
}

.nav-smart-content ul li {
  text-align: center;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  -ms-flex-preferred-size: 46%;
  flex-basis: 46%;
  min-width: 46%;
}

.nav-smart-content ul li:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.nav-smart-content ul li a:link,
.nav-smart-content ul li a:visited {
  border-top: 1px solid white;
  padding-top: 1.3rem;
  padding-bottom: 1.3rem;
  letter-spacing: 0.1rem;
  text-transform: capitalize;
  width: 100%;
  display: block;
}

@media only screen and (max-width: 37.5em) {
  .nav-smart-content ul li a:link,
  .nav-smart-content ul li a:visited {
    padding-bottom: 0.6rem;
    padding-top: 0.6rem;
  }
}

.nav-smart-content ul li:last-child a:link,
.nav-smart-content ul li:last-child a:visited,
.nav-smart-content ul li:nth-last-child(2) a:visited,
.nav-smart-content ul li:nth-last-child(2) a:link {
  border-bottom: 1px solid white;
  padding-bottom: 1.3rem;
}

@media only screen and (max-width: 37.5em) {
  .nav-smart-content ul li:last-child a:link,
  .nav-smart-content ul li:last-child a:visited,
  .nav-smart-content ul li:nth-last-child(2) a:visited,
  .nav-smart-content ul li:nth-last-child(2) a:link {
    padding-bottom: 0.6rem;
  }
}

.nav-smart-shopinfo {
  background-color: white;
  color: #cb8958;
  font-size: 1.8rem;
  font-weight: 100;
  letter-spacing: 0.15rem;
  text-align: center;
  padding: 0.9rem 0;
}

.nav-smart h3 {
  color: white;
  font-size: 1.7rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

@media only screen and (max-width: 52em) {
  .nav-smart h3 {
    margin-top: 2rem;
    margin-bottom: 0.5rem;
  }
}

.nav-smart p {
  color: white;
  font-size: 1.6rem;
  line-height: 2rem;
  letter-spacing: 0.05rem;
  margin-bottom: 1.2rem;
  font-weight: 300;
}

.nav-smart .btn:link,
.nav-smart .btn:visited {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  width: 58%;
  font-weight: 100;
  letter-spacing: 0.15rem;
  font-size: 1.4rem;
}

.nav-smart .btn:hover {
  background-color: white;
  color: #cb8958;
}

.concept {
  color: white;
}

.concept-image {
  background-image: url("img/concept-top-big.jpg");
}

@media only screen and (max-width: 52em) {
  .concept-image {
    background-image: url("img/concept-top-medium.jpg");
  }
}

@media only screen and (max-width: 37.5em) {
  .concept-image {
    background-image: url("img/concept-top-small.jpg");
  }
}

.concept-text {
  background-color: rgba(197, 123, 69, 0.9);
  margin-top: -32rem;
  margin-left: auto;
}

.concept-text h2 {
  font-weight: 300;
}

.concept-text.text-box p {
  font-weight: 100;
  text-align: center;
}

.concept-text.text-box p:last-child {
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 3rem;
  font-style: italic;
  letter-spacing: 0.1rem;
  margin-bottom: 0;
}

.pic-section {
  padding: 0;
  font-size: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 52em) {
  .pic-section {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.pic-section img {
  width: 16.66667%;
  height: 16.66667vw;
}

@media only screen and (max-width: 52em) {
  .pic-section img {
    width: 33.33333%;
    height: 33.33333vw;
  }
}

.counseling {
  background-color: #f2eeea;
  color: #624a41;
}

.counseling h3 {
  color: #c57b45;
  font-size: 1rem;
  letter-spacing: 0.15rem;
}

@media only screen and (max-width: 52em) {
  .counseling h3 {
    font-size: 150%;
    margin-bottom: 1rem;
  }
}

.counseling-image {
  margin-left: auto;
  background-image: url("img/counseling-top-big.jpg");
}

@media only screen and (max-width: 52em) {
  .counseling-image {
    background-image: url("img/counseling-top-medium.jpg");
  }
}

@media only screen and (max-width: 37.5em) {
  .counseling-image {
    background-image: url("img/counseling-top-small.jpg");
  }
}

.counseling-text {
  margin-top: -40rem;
  background-color: rgba(255, 255, 255, 0.8);
}

.staff {
  font-size: 1.6rem;
  background-color: rgba(231, 226, 193, 0.3);
  color: #624a41;
  overflow: hidden;
  padding-bottom: 10vh;
}

.staff-boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  /* justify-content: space-between; */
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -2.5rem;
}

@media only screen and (max-width: 52em) {
  .staff-boxes {
    margin: 0;
  }
}

.staff-box {
  min-width: 40rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 2.5rem;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 50%;
}

.staff-box:empty {
  margin: 0;
  padding: 0;
}

@media only screen and (max-width: 75em) {
  .staff-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    margin: 0 10%;
    max-width: 100%;
  }
}

@media only screen and (max-width: 52em) {
  .staff-box {
    margin: 0 5%;
  }
}

@media only screen and (max-width: 37.5em) {
  .staff-box {
    padding: 0;
    padding-bottom: 2.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: 0;
  }
}

.staff-box > div:first-child {
  min-width: 20rem;
  width: 40%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-right: 5%;
}

@media only screen and (max-width: 37.5em) {
  .staff-box > div:first-child {
    margin: 0 auto;
    width: 70%;
    padding-right: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }
}

.staff-box > div:first-child img {
  width: 100%;
}

.staff-box > div:last-child {
  min-width: 22rem;
  width: 60%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media only screen and (max-width: 37.5em) {
  .staff-box > div:last-child {
    margin: 0 auto;
    width: 85%;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }
}

.staff-box p {
  text-align: left;
  font-weight: 300;
  font-size: 1.3rem;
  line-height: 2.1rem;
}

@media only screen and (max-width: 75em) {
  .staff-box p {
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 2.5rem;
  }
}

@media only screen and (max-width: 52em) {
  .staff-box p {
    font-size: 1.6rem;
  }
}

.staff-box p.staff-title {
  text-align: center;
  font-size: 1.3rem;
  margin: 2rem 0;
  font-weight: 400;
  letter-spacing: 0.1rem;
}

@media only screen and (max-width: 52em) {
  .staff-box p.staff-title {
    font-size: 1.8rem;
  }
}

@media only screen and (max-width: 37.5em) {
  .staff-box p.staff-title {
    font-size: 2rem;
  }
}

.staff-box p.staff-title span {
  display: block;
}

.staff-box p.staff-title span:first-child {
  font-style: italic;
  font-size: 80%;
  margin-bottom: 0.4rem;
}

@media only screen and (max-width: 52em) {
  .staff-box p.staff-title span:first-child {
    margin-bottom: 0.3rem;
  }
}

.staff-box p.staff-title span:last-child {
  font-size: 70%;
  margin-top: 0.1rem;
}

@media only screen and (max-width: 52em) {
  .staff-box p.staff-title span:last-child {
    margin-top: 0.3rem;
  }
}

.staff-box p.cv {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.8rem;
}

@media only screen and (max-width: 52em) {
  .staff-box p.cv {
    font-size: 1.4rem;
    line-height: 2rem;
  }
}

@media only screen and (max-width: 37.5em) {
  .staff-box p.cv {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.3rem;
  }
}

.prices {
  background-color: white;
  color: #624a41;
}

.prices p {
  font-weight: 400;
}

.prices p.bottom {
  margin-top: 2rem;
}

@media only screen and (max-width: 37.5em) {
  .prices p.bottom span {
    display: block;
  }
}

.prices-boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.prices-boxes table {
  font-size: 1.4rem;
  padding: 1rem;
  min-width: 23rem;
  max-width: 28rem;
  width: 25%;
  margin: 0.1rem;
}

@media only screen and (max-width: 52em) {
  .prices-boxes table {
    font-size: 1.8rem;
    max-width: 26rem;
    margin: 2rem;
  }
}

@media only screen and (max-width: 37.5em) {
  .prices-boxes table {
    min-width: 65vw;
    margin: 0;
    margin-bottom: 5rem;
  }
}

.prices-boxes table.course {
  width: 92%;
  min-width: 0;
  max-width: 100%;
  margin-bottom: 2rem;
}

@media only screen and (max-width: 37.5em) {
  .prices-boxes table.course {
    width: 85%;
  }
}
.prices-boxes table.course tr {
  display: flex;
}

@media only screen and (max-width: 37.5em) {
  .prices-boxes table.course tr {
    flex-wrap: wrap;
  }
}
.prices-boxes table.course td {
  vertical-align: top;
  flex: 1 1 48%;
}
@media only screen and (max-width: 52em) {
  .prices-boxes table.course td {
    display: block;
  }
}

.prices-boxes table.course a {
  display: block;
}

.prices-boxes table.course p {
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0;
  margin-bottom: 0.5rem;
}

.prices-boxes table.course td:first-child span:last-child {
  text-align: right;
  margin-right: 4rem;
}

@media only screen and (max-width: 37.5em) {
  .prices-boxes table.course td:first-child span:last-child {
    margin-right: 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .prices-boxes table.course td {
    width: 100%;
    display: block;
    flex: 1 0 100%;
  }
}
.prices-boxes table caption {
  font-size: 100%;
  margin-bottom: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 0.1rem solid #9d796c;
}

.prices-boxes table tr td:first-child {
  text-align: left;
}

.prices-boxes table tr td:last-child {
  text-align: right;
}

.prices-points {
  margin: 0 auto;
  margin-top: 3rem;
  margin-bottom: 2rem;
  padding: 2.5rem;
  width: 70%;
  border: 1rem solid rgba(197, 123, 69, 0.4);
  position: relative;
}

@media only screen and (max-width: 37.5em) {
  .prices-points {
    width: 85%;
    padding: 1.8rem;
    padding-top: 0.3rem;
  }
}

.prices-points p {
  text-align: left;
  font-size: 1.4rem;
  width: 75%;
  margin: 0;
  margin-right: 0.4rem;
  line-height: 2rem;
  font-weight: 300;
}

@media only screen and (max-width: 37.5em) {
  .prices-points p {
    width: 100%;
    font-size: 1.5rem;
    position: relative;
  }
}

.prices-points p.point-card {
  text-align: center;
  color: #c57b45;
  font-size: 1.5rem;
  letter-spacing: 0.15rem;
  width: 100%;
  margin-bottom: 0.5rem;
  margin-right: 0;
  font-weight: 500;
}

@media only screen and (max-width: 37.5em) {
  .prices-points p.point-card {
    padding-top: 1rem;
    padding-bottom: 1rem;
    /* margin-bottom: 8rem; */
    margin-bottom: 1rem;
    position: relative;
    z-index: 3;
    background-color: rgba(255, 255, 255, 0.4);
  }
}

.prices-points-img {
  position: absolute;
  padding: 8% 12%;
  background-size: contain;
  background-position: center center;
  background-image: url("img/point-card.jpg");
  background-repeat: no-repeat;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 1.2rem;
}

@media only screen and (max-width: 37.5em) {
  .prices-points-img {
    padding: 5rem 7rem;
    top: 1.2rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 1;
  }
}

@media only screen and (max-width: 52em) {
  .prices-banner {
    width: 70%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 37.5em) {
  .prices-banner {
    width: 88%;
  	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
  }
  .prices-banner a{
    margin:0 1.5%;
    width:47%;
  }
}



.prices-banner img {
  width: 20%;
  margin: 2rem;
  margin-bottom: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media only screen and (max-width: 52em) {
  .prices-banner img {
    width: 20vw;
    margin: 2rem 0 0 0;
  }
}

@media only screen and (max-width: 37.5em) {
  .prices-banner img {
    width: 40vw;
    margin: 1rem 0 0 0;
  }
}

.prices-banner img:hover {
  opacity: 0.7;
  -webkit-box-shadow: 0px 0px 34px -12px rgba(0, 0, 0, 0.7);
  box-shadow: 0px 0px 34px -12px rgba(0, 0, 0, 0.7);
}

.gallery {
  background-color: #dcb08f;
  color: white;
  padding-bottom: 12vh;
}

.gallery-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 7rem;
}

@media only screen and (max-width: 37.5em) {
  .gallery-box {
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.gallery-box-item {
  max-width: 20rem;
  width: 20vw;
  height: 20vw;
  max-height: 20rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.gallery-box-item:nth-child(1) {
  background-image: url("img/gallery-1.jpg");
}

.gallery-box-item:nth-child(2) {
  background-image: url("img/gallery-2.jpg");
}

.gallery-box-item:nth-child(3) {
  background-image: url("img/gallery-3.jpg");
}

.gallery-box-item:nth-child(4) {
  background-image: url("img/gallery-4.jpg");
}


@media only screen and (max-width: 37.5em) {
  .gallery-box-item:first-child {
    margin-bottom: 5rem;
  }
}

@media only screen and (max-width: 37.5em) {
  .gallery-box-item {
    width: 35vw;
    height: 35vw;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
}

.gallery .btn:link,
.gallery .btn:active {
  font-weight: 100;
  padding: 1.5rem 5rem;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
}

@media only screen and (max-width: 37.5em) {
  .gallery .btn:link,
  .gallery .btn:active {
    font-size: 1.6rem;
    font-weight: 500;
  }
}

.gallery .btn:link i,
.gallery .btn:active i {
  margin-right: 0.7rem;
  font-size: 110%;
}

.gallery .btn:hover {
  background-color: white;
  color: #dcb08f;
}

.news .col-2 > div {
  padding: 0 4rem;
  margin-bottom: 7rem;
}

@media only screen and (max-width: 37.5em) {
  .news .col-2 > div {
    padding: 0 6rem;
  }
}

@media only screen and (max-width: 52em) {
  .news h2.section-head {
    margin-bottom: 2rem;
  }
}

.news-fb {
  min-width: 34rem;
  text-align: center;
}

@media only screen and (max-width: 37.5em) {
  .news-fb {
    padding: 0 !important;
  }
}

.news-fb-iframe {
  height: 24rem;
}

.news-fb-iframe iframe {
  min-width: 34rem;
  height: 24rem;
  max-width: 90%;
}

@media only screen and (max-width: 52em) {
  .news-fb {
    margin-bottom: 5rem;
  }
}

.news-blog p {
  font-weight: 400;
  text-align: left;
}

@media only screen and (max-width: 52em) {
  .news-blog p {
    text-align: center;
    font-size: 1.6rem;
  }
}

.news-blog-banner {
  margin: 0 auto;
  width: 90%;
  height: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.news-blog-banner:hover {
  opacity: 0.8;
}

.line-banner {
  margin: 0 auto;
  width: 50%;
  height: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.line-banner:hover {
  opacity: 0.8;
}

@media only screen and (max-width: 37.5em) {
  .news-blog-banner {
    width: 100%;
  }

  .line-banner {
    width: 80%;
  }
}

.recruit {
  font-size: 1.6rem;
  background-size: cover;
  background-position: center center;
  background-image: url("img/recruit-bg-1800.jpg");
}

@media only screen and (max-width: 37.5em) {
  .recruit {
    background-image: url("img/recruit-bg-600.jpg");
  }
}

@media only screen and (min-width: 112.5em) {
  .recruit {
    background-image: url("img/recruit-bg-2400.jpg");
  }
}

.recruit-image {
  background-image: url("img/recruit-top-big.jpg");
}

@media only screen and (max-width: 52em) {
  .recruit-image {
    background-image: url("img/recruit-top-medium.jpg");
  }
}

@media only screen and (max-width: 37.5em) {
  .recruit-image {
    background-image: url("img/recruit-top-small.jpg");
  }
}

.recruit-text {
  background-color: rgba(255, 255, 255, 0.8);
  margin-top: -40rem;
  margin-left: auto;
}

.recruit-text a:link,
.recruit-text a:active {
  font-size: 1.6rem;
  padding: 0.7rem 4rem;
}

.information p {
  font-weight: 500;
  margin: 0;
}

.information h2:not(:first-child) {
  margin-bottom: 1rem;
}

.information-hours {
  margin-bottom: 5rem;
}

.information-hours-picture {
  margin: 0 auto;
  margin-bottom: 3rem;
  width: 90%;
  height: 30rem;
  background-size: cover;
  background-position: center center;
  background-image: url("img/hours-big.jpg");
}

@media only screen and (max-width: 52em) {
  .information-hours-picture {
    background-image: url("img/hours-small.jpg");
  }
}

.information-access-iframe {
  background-color: gray;
  width: 90%;
  height: 30rem;
  margin: 0 auto;
  margin-bottom: 3rem;
}

.company {
  color: #624a41;
  padding: 0;
}

.company .row {
  width: 70%;
}

.company .row > div {
  padding: 2rem;
  min-width: 25rem;
  max-width: 32rem;
}

.company h2 span {
  margin-top: 0.2rem;
  font-size: 65%;
}

@media only screen and (max-width: 37.5em) {
  .company h2 span {
    font-size: 60%;
  }
}

.company h3 {
  font-size: 1.6rem;
  font-weight: 500;
  padding-bottom: 0.7rem;
  margin-bottom: 2rem;
  border-bottom: 0.1rem solid #9d796c;
}

@media only screen and (max-width: 37.5em) {
  .company h3 {
    font-size: 2rem;
  }
}

.company p {
  font-weight: 400;
}

.company p.bigger {
  font-size: 1.8rem;
}

section {
  background-color: white;
  width: 100%;
  text-align: center;
  padding: 12vh 0;
}

@media only screen and (max-width: 37.5em) {
  section {
    padding: 10vh 0;
  }
}

section .image-box {
  width: 58rem;
  max-width: 90vw;
  height: 45rem;
  background-size: cover;
  background-position: center center;
}

@media only screen and (max-width: 37.5em) {
  section .image-box {
    height: 30rem;
  }
}

section .text-box {
  z-index: 2;
  width: 90vw;
  padding: 5rem;
  max-width: 40rem;
}

section .text-box p {
  font-weight: 400;
  text-align: left;
}

@media only screen and (max-width: 52em) {
  section .text-box {
    padding: 4rem;
    margin-top: -30vw;
  }
}

@media only screen and (max-width: 37.5em) {
  section .text-box {
    margin-top: -10vw;
    max-width: 90vw;
    padding: 3.5rem;
  }
}

footer {
  color: rgba(98, 74, 65, 0.7);
  text-align: center;
  padding-top: 12vh;
  padding-bottom: 10vh;
}

@media only screen and (max-width: 37.5em) {
  footer {
    padding-top: 6vh;
    padding-bottom: 12vh;
  }
}

footer p {
  font-size: 1.6rem;
  font-weight: 300;
}

@media only screen and (max-width: 37.5em) {
  footer p {
    font-size: 1.8rem;
  }
}

footer .sticky-footer {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 5.5rem;
  background-color: #402d26;
  color: white;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (max-width: 52em) {
  footer .sticky-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 5%;
  }
}

@media only screen and (max-width: 37.5em) {
  footer .sticky-footer {
    padding: 0 8%;
  }
}

footer .sticky-footer .menu-reservation-tel {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  margin-right: 0;
}

footer .sticky-footer i {
  font-size: 2.2rem;
  margin: 0 0.5rem;
}

@media only screen and (max-width: 52em) {
  footer .sticky-footer i {
    margin: 0 1rem;
  }
}

@media only screen and (max-width: 37.5em) {
  footer .sticky-footer i {
    margin: 0 0.5rem;
  }
}

footer .sticky-footer a {
  color: white;
}

footer .sticky-footer a.btn,
footer .sticky-footer a:link.btn,
footer .sticky-footer a:visited.btn {
  font-size: 1.8rem;
  font-weight: 500;
  border-width: 0.1rem;
  margin-right: 1rem;
}

@media only screen and (max-width: 52em) {
  footer .sticky-footer a.btn,
  footer .sticky-footer a:link.btn,
  footer .sticky-footer a:visited.btn {
    padding: 0.2rem 10%;
  }
}

@media only screen and (max-width: 37.5em) {
  footer .sticky-footer a.btn,
  footer .sticky-footer a:link.btn,
  footer .sticky-footer a:visited.btn {
    padding: 0.2rem 10%;
  }
}

footer .sticky-footer a.btn:hover,
footer .sticky-footer a:link.btn:hover,
footer .sticky-footer a:visited.btn:hover {
  color: #402d26;
  background-color: white;
  font-weight: 300;
}

#calendar {
  background-color: #f5f5f5;
  text-align: center;
  padding-top: 5rem;
}

#calendar div {
  padding: 10vh 0;
}

#calendar div h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

#calendar iframe {
  margin: 0 0 30px;
}

@media only screen and (min-aspect-ratio: 33/18) {
  .eyecatch-video {
    top: calc(-56.25vw + 100vh);
  }

  body div.main {
    top: calc(-56.25vw + 100vh);
  }
}

.modal {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  visibility: hidden;
  width: 100%;
  height: 100vh;
}

.modal.is-visible {
  visibility: visible;
}

.modal-overlay {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: hsla(0, 0%, 0%, 0.5) !important;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s;
}

.modal.is-visible .modal-overlay {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.modal-wrapper {
  position: fixed;
  z-index: 9999;
  top: 50%;
  left: 50%;
  width: 90%;
  max-width: 66rem;
  max-height: 90vh;
  /* margin-left: -16em; */
  background-color: #fff;
  box-shadow: 0 0 1.5em hsla(0, 0%, 0%, 0.35);
}

.modal-transition {
  transition: all 0.3s;
  transform: translate(-50%, -100%);
  opacity: 0;
}

.modal.is-visible .modal-transition {
  transform: translate(-50%, -50%);
  opacity: 1;
}

.modal-content {
  /* padding: 1em; */
  /* max-width: 100%; */
  text-align: center;
}

.modal-content img {
  max-width: 100%;
  max-height: 87vh;
}

.modal-header {
  position: relative;
  background-color: #fff;
  box-shadow: 0 1px 2px hsla(0, 0%, 0%, 0.06);
  border-bottom: 1px solid #e8e8e8;
}

.modal-header h2 {
  margin: 20px;
}

.modal-toggle {
  color: #aaa;
  background: none;
  border: 0;
}

.modal-close:hover {
  color: #777;
}

.modal-heading {
  font-size: 1.125em;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.modal-content {
  /* padding-top: 30px; */
}

.modal-content > *:first-child {
  margin-top: 0;
}

.modal-content > *:last-child {
  margin-bottom: 5px;
  margin-left: auto;
  margin-right: 5px;
  display: block;
}

@media screen and (max-width: 640px) {
  .modal-content {
    /* font-size: 90%; */
    /* padding: 1.5em; */
  }
}

.notice {
  font-size: 2rem;
  background: #ffe8e8;
  text-align: center;
  color: #ff7373;
  display: block;
  padding: 1.5em;
  width: 100%;
  cursor: pointer;
  line-height: 1.5;
  outline: none;
  transition: 0.3s;
  border: none;
}

.notice:hover {
  opacity: 0.7;
}

.top_info {
  padding: 0 0 8rem;
  background: white;
  max-width: 90%;
  margin: -3rem auto 0;
}
