@charset "UTF-8";
/*
----------
index page
----------
*/
#kv {
  position: relative;
  display: flex;
  justify-content: center;
  text-align: center;
}

.video-box {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}

.video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
}

/* overlay */
.overlay::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(177, 212, 244, 0.7);
}

@media screen and (max-width: 999px) {
  .video-box {
    height: 40vh;
  }

  .video {
    min-width: 100%;
    min-height: 40vh;
  }
}
.kv-title {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.kv-title img {
  width: 500px;
  max-width: 70%;
}

/*
----------
navigation
----------
*/
nav ul.mnavi {
  width: 100%;
  display: flex;
  align-items: stretch;
}
nav ul.mnavi li {
  width: 33.3333333333%;
  text-align: center;
  font-size: 1.3em;
  line-height: 1.4;
  font-weight: bold;
  letter-spacing: 2px;
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 999px) {
  nav ul.mnavi li {
    font-size: 1.1em;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 767px) {
  nav ul.mnavi li {
    font-size: 1em;
  }
}
nav ul.mnavi li a {
  padding: 2rem 0.25rem;
  color: #fff;
  text-decoration: none;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../images/mark_wh.png);
  background-size: auto 110%;
  background-position: 130% bottom;
}
nav ul.mnavi li a:hover {
  color: #fff;
}
@media screen and (max-width: 999px) {
  nav ul.mnavi li a {
    background-size: auto 80%;
    background-position: 150% bottom;
  }
}
@media screen and (max-width: 767px) {
  nav ul.mnavi li a {
    padding: 1rem 0.5rem;
    background-image: none;
  }
}
nav ul.mnavi li:nth-of-type(1) a {
  background-color: #6aa4d9;
}
nav ul.mnavi li:nth-of-type(1) a:hover {
  background-color: #86a7d2;
}
nav ul.mnavi li:nth-of-type(2) a {
  background-color: #dadd44;
}
nav ul.mnavi li:nth-of-type(2) a:hover {
  background-color: #cac871;
}
nav ul.mnavi li:nth-of-type(3) a {
  background-color: #552f7f;
}
nav ul.mnavi li:nth-of-type(3) a:hover {
  background-color: #544784;
}

/*
----------
fadein
----------
*/
.element {
  /* 最初は非表示 */
  transform: translateY(30px);
  opacity: 0;
  visibility: hidden;
  transition: transform 1s, opacity 1s, visibility 1s;
}

/* フェードイン時 */
.is-fadein {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

/*
----------
block
----------
*/
#block-01 {
  background-color: #e9f1f9;
}
#block-01 h2 {
  color: #6aa4d9;
}

#block-02 {
  background-color: #f9fae3;
}
#block-02 h2 {
  color: #dadd44;
}

#block-03 {
  background-color: #eeeaf2;
}
#block-03 h2 {
  color: #552f7f;
}

.title {
  text-align: center;
  padding: 0 1em 1em 1em;
  line-height: 1.4;
}
@media screen and (max-width: 999px) {
  .title {
    padding: 0 1em 0.5em 1em;
  }
}
.title h2 {
  font-size: 2.5em;
  letter-spacing: 2px;
}
@media screen and (max-width: 999px) {
  .title h2 {
    font-size: 1.6em;
  }
}
.title h2 span {
  font-size: 1.5em;
}
.title h3 {
  font-size: 1.6em;
}
@media screen and (max-width: 999px) {
  .title h3 {
    font-size: 1.3em;
  }
}

figure.illust {
  margin: 1em auto;
  padding: 2em;
  border-radius: 20px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  figure.illust {
    padding: 1em 0.5em;
    border-radius: 10px;
  }
}

#block-03 table {
  width: 100%;
  background-color: #fff;
}
#block-03 table th,
#block-03 table td {
  padding: 1em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #block-03 table th,
#block-03 table td {
    padding: 0.5em 0.2em;
  }
}
#block-03 table th {
  background-color: #6aa4d9;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #block-03 table th {
    font-size: 0.9rem;
  }
}
#block-03 table td:nth-of-type(1) {
  width: 25%;
  border-right: 1px solid #6aa4d9;
}
#block-03 table td:nth-of-type(2) {
  width: 40%;
  border-right: 1px solid #6aa4d9;
}
#block-03 table td:nth-of-type(3) {
  width: 35%;
}
#block-03 table tr td {
  border-bottom: 1px solid #6aa4d9;
}
#block-03 table tr:last-child td {
  border-bottom: 0;
}
#block-03 table .price {
  color: #6aa4d9;
}
#block-03 table .price span {
  font-weight: bold;
  font-size: 1.2em;
}

.notice {
  background-image: url(../images/mark_wh.svg);
  background-size: 20% auto;
  background-repeat: repeat;
}
.notice ul {
  margin: 1em auto;
  padding: 2em;
  border-radius: 20px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .notice ul {
    padding: 1em 0.5em;
    border-radius: 10px;
  }
}
.notice ul li {
  list-style: none;
  margin-bottom: 1.5em;
}

.ttl_num {
  line-height: 1.3;
}
.ttl_num h3 {
  font-size: 2em;
  text-align: center;
  position: relative;
  margin: 10px auto;
}
@media screen and (max-width: 767px) {
  .ttl_num h3 {
    font-size: 1.7em;
  }
}
.ttl_num .num {
  font-size: 3rem;
  line-height: 80px;
  font-weight: bold;
  text-align: center;
  position: relative;
  width: 80px;
  height: 80px;
  margin: 10px auto;
  color: #dadd44;
}
.ttl_num .num:before,
.ttl_num .num:after {
  position: absolute;
  content: "";
}
.ttl_num .num:after {
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  border-top: 2px solid #dadd44;
  border-left: 2px solid #dadd44;
}
.ttl_num .num:before {
  right: 0;
  bottom: 0;
  width: 50px;
  height: 50px;
  border-right: 2px solid #dadd44;
  border-bottom: 2px solid #dadd44;
}

a.bt-contact {
  text-align: center;
  color: #fff;
  display: block;
  width: 94%;
  max-width: 500px;
  padding: 1.5rem 1rem;
  margin: 1.75em auto;
  border-radius: 80px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  font-size: 1.2rem;
  font-weight: bold;
  background: #6aa4d9;
  box-shadow: 0 5px 0 #366ea1;
}
@media screen and (max-width: 767px) {
  a.bt-contact {
    padding: 1rem 0.5rem;
    margin: 1.75em auto;
  }
}

a.bt-contact:hover {
  box-shadow: none;
  transform: translateY(5px);
}