@charset "UTF-8";
body {
  font-family: serif,"Avenir Next", "Hiragino Kaku Gothic ProN W3", sans-serif,'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', '游明朝','Yu Mincho', '游明朝体', 'YuMincho','ＭＳ Ｐ明朝', 'MS PMincho';
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1170px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.init {
  background: rgba(20, 20, 20, 0.9);
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 200;
}

.init h1 {
  color: rgba(20, 20, 20, 0);
  text-align: center;
  line-height: 100vh;
  font-size: 5em;
  font-family: 'Dancing Script', cursive;
}

@media screen and (max-width: 767px) {
  .init h1 {
    font-size: 40px;
  }
}

span {
  -webkit-transition: all .3s;
  transition: all .3s;
}

.coloring {
  color: rgba(255, 209, 255, 0.4);
  text-shadow: 0 0 10px #FFf;
}

.heading {
  font-size: 35px;
  text-align: center;
  padding-bottom: 30px;
}

.heading h2 {
  font-family: 'Dancing Script', cursive;
  padding-top: 15px;
  padding-bottom: 15px;
  color: #5f5d60;
  font-size: 60px;
}

@media screen and (max-width: 767px) {
  .heading h2 {
    font-size: 35px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
}

@-webkit-keyframes titleAnimation {
  0% {
    letter-spacing: .3em;
    opacity: 0;
  }
}

@keyframes titleAnimation {
  0% {
    letter-spacing: .3em;
    opacity: 0;
  }
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  height: 65px;
  background-color: pink;
}

header .header-left {
  float: left;
}

header .header-left h1 {
  line-height: 65px;
  font-size: 20px;
  color: #5f5d60;
  -webkit-animation: titleAnimation 1.5s;
          animation: titleAnimation 1.5s;
}

@media screen and (max-width: 767px) {
  header .header-left h1 {
    font-size: 15px;
  }
}

header .header-right {
  float: right;
}

header .header-right .menuButton {
  position: relative;
  width: 65px;
  height: 65px;
}

header .header-right .menuButton div {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 60%;
  height: 4px;
  background-color: #5f5d60;
  border-radius: 2px;
  -webkit-transition: .4s;
  transition: .4s;
}

header .header-right .menuButton div:nth-of-type(1) {
  -webkit-transform: translate(-50%, -15px);
          transform: translate(-50%, -15px);
  -webkit-transform-origin: 0%;
          transform-origin: 0%;
}

header .header-right .menuButton div:nth-of-type(3) {
  -webkit-transform: translate(-50%, 12px);
          transform: translate(-50%, 12px);
  -webkit-transform-origin: 0%;
          transform-origin: 0%;
}

header .header-right .menuButton.active div:nth-of-type(1) {
  -webkit-transform: rotate(45deg) translate(-50%, 0);
          transform: rotate(45deg) translate(-50%, 0);
}

header .header-right .menuButton.active div:nth-of-type(2) {
  opacity: 0;
}

header .header-right .menuButton.active div:nth-of-type(3) {
  -webkit-transform: rotate(-45deg) translate(-50%, 0);
          transform: rotate(-45deg) translate(-50%, 0);
}

nav {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 250px;
  display: none;
  z-index: 10;
  background-color: rgba(20, 20, 20, 0.8);
}

nav ul {
  padding-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 0;
}

nav ul li {
  padding: 15px 8px;
  border-left: 4px solid white;
}

nav ul li a {
  color: white;
}

nav .sns {
  position: absolute;
  right: 10px;
  bottom: 20px;
}

nav .sns .fa {
  font-size: 30px;
  margin-right: 20px;
  color: rgba(255, 255, 255, 0.7);
}

main {
  padding-top: 65px;
  position: relative;
}

main video {
  width: 100%;
}

main .text-top {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -30%);
          transform: translate(-50%, -30%);
  color: white;
}

main .text-top h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 70px;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.3em;
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  main .text-top h2 {
    font-size: 25px;
    margin-bottom: 10px;
  }
}

main .text-top p {
  font-size: 18px;
  text-align: center;
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  main .text-top p {
    font-size: 12px;
  }
}

section {
  height: auto;
}

#news {
  width: 650px;
  margin: 10px auto;
  padding-bottom: 40px;
}

@media screen and (max-width: 767px) {
  #news {
    width: 100%;
  }
}

#news ul {
  border: 1px solid pink;
  border-radius: 10px;
  list-style: square;
  padding: 20px 30px;
}

#news ul li {
  margin-left: 0;
}

@media screen and (max-width: 767px) {
  #news ul li {
    font-size: 12px;
  }
}

#about {
  padding-bottom: 80px;
}

#about .contents li.show h3,
#about .contents li.show p,
#about .contents li.show img {
  -webkit-transform: none !important;
          transform: none !important;
  opacity: 1;
}

#about li {
  position: relative;
}

@media screen and (max-width: 767px) {
  #about li {
    height: 300px;
  }
}

#about li .contentsText {
  position: absolute;
  top: 80px;
  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;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  padding-bottom: 30px;
}

@media screen and (max-width: 767px) {
  #about li .contentsText {
    width: 70%;
    top: 20px;
  }
}

#about li h3 {
  padding: 10px 20px;
  line-height: 1.4;
  font-size: 50px;
  font-weight: bold;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: 2s;
  transition: 2s;
  color: #5f5d60;
}

@media screen and (max-width: 767px) {
  #about li h3 {
    font-size: 20px;
  }
}

#about li p {
  max-width: 340px;
  padding: 15px;
  margin-top: 30px;
  background-color: rgba(255, 209, 255, 0.5);
  line-height: 1.6;
  font-size: 14px;
  border-radius: 5px;
  opacity: 0;
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
  -webkit-transition: 3s;
  transition: 3s;
  color: #5f5d60;
  width: 120%;
}

@media screen and (max-width: 767px) {
  #about li p {
    font-size: 11px;
    line-height: 1.3em;
    width: 93%;
    margin-top: 0px;
  }
}

#about li p b {
  font-weight: bold;
  border-bottom: 1px solid #666666;
}

#about li:not(:first-of-type) {
  margin-top: 200px;
}

@media screen and (max-width: 767px) {
  #about li:not(:first-of-type) {
    margin-top: 40px;
  }
}

#about li:nth-of-type(odd) .contentsText {
  right: 0;
}

#about li:nth-of-type(even) .contentsText {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

#about li:nth-of-type(odd) img {
  -webkit-transform: translate(-20px, 20px);
          transform: translate(-20px, 20px);
}

#about li:nth-of-type(even) img {
  margin-left: auto;
  -webkit-transform: translate(20px, 20px);
          transform: translate(20px, 20px);
}

#about img {
  display: block;
  width: 55%;
  border-radius: 10px;
  opacity: 0;
  -webkit-transition: 5s;
  transition: 5s;
  -webkit-box-shadow: 5px 5px 10px gray;
          box-shadow: 5px 5px 10px gray;
}

.profile {
  padding-bottom: 80px;
}

.profile ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media screen and (max-width: 767px) {
  .profile ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.profile ul li {
  width: 50%;
  padding: 30px;
}

@media screen and (max-width: 767px) {
  .profile ul li {
    width: 100%;
    padding: 30px 0;
  }
}

.profile ul .chiocame img {
  width: 100%;
  border-radius: 90%;
  opacity: 0;
  -webkit-transition: 6s;
  transition: 6s;
}

.profile ul .profileText {
  background-color: rgba(255, 209, 255, 0.4);
  padding: 40px;
  border-radius: 10px;
}

.profile ul .profileText h3 {
  font-size: 30px;
  margin-bottom: 40px;
  color: #5f5d60;
  opacity: 0;
  -webkit-transition: 2s;
  transition: 2s;
  -webkit-transform: translate(0, 20px);
          transform: translate(0, 20px);
}

.profile ul .profileText p {
  font-size: 20px;
  line-height: 1.8em;
  color: #5f5d60;
  opacity: 0;
  -webkit-transition: 3s;
  transition: 3s;
}

@media screen and (max-width: 767px) {
  .profile ul .profileText p {
    font-size: 12px;
  }
}

.profile ul .profileText .sns {
  margin-top: 30px;
}

.profile ul .profileText .sns .fa {
  font-size: 50px;
  margin-right: 25px;
  color: #5f5d60;
}

@media screen and (max-width: 767px) {
  .profile ul .profileText .sns .fa {
    font-size: 30px;
    margin-right: 15px;
  }
}

.profile ul .profileText .sns .fa-facebook {
  margin-right: 30px;
}

@media screen and (max-width: 767px) {
  .profile ul .profileText .sns .fa-facebook {
    margin-right: 20px;
  }
}

.profile li.show h3,
.profile li.show p,
.profile li.show img {
  -webkit-transform: none !important;
          transform: none !important;
  opacity: 1;
}

.clear {
  clear: both;
}

.gallery {
  padding-bottom: 70px;
}

.slider {
  margin: 100px auto;
}

@media screen and (max-width: 767px) {
  .slider {
    margin: 30px auto;
  }
}

.slider img {
  height: auto;
  width: 100%;
}

.work {
  width: 700px;
  margin: 30px auto;
  padding-bottom: 70px;
}

@media screen and (max-width: 767px) {
  .work {
    width: 100%;
  }
}

.work h3 {
  padding: 40px 0;
  text-align: center;
  font-size: 20px;
  color: #5f5d60;
  font-weight: bold;
}

.work ul {
  width: 100%;
  padding-bottom: 30px;
}

.work ul li {
  font-size: 18px;
  padding: 8px 0;
  letter-spacing: .2em;
  color: #5f5d60;
  line-height: 1.3;
}

@media screen and (max-width: 767px) {
  .work ul li {
    font-size: 14px;
  }
}

.work ul li p {
  font-size: 14px;
  padding-left: 20px;
}

@media screen and (max-width: 767px) {
  .work ul li p {
    font-size: 12px;
  }
}

.work p {
  font-size: 18px;
  padding: 10px 0;
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .work p {
    font-size: 12px;
  }
}

.work p span {
  color: red;
}

.FAQ {
  text-align: center;
  padding-bottom: 80px;
  color: #5f5d60;
  background-color: #f0f5f8;
}

.FAQ h2 {
  padding-top: 40px;
}

.FAQ .faq-list {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}

.FAQ .faq-list .faq-list-item {
  margin: 10px;
  border-bottom: 1px solid #ccc;
  position: relative;
  cursor: pointer;
  text-align: left;
}

.FAQ .faq-list .faq-list-item h3 {
  font-size: 14px;
  font-weight: bold;
  margin: 14px 0;
}

.FAQ .faq-list .faq-list-item span {
  position: absolute;
  right: 0;
  top: 0;
  color: #ccc;
  font-size: 13px;
}

.FAQ .faq-list .faq-list-item .answer {
  font-size: 12px;
  padding: 10px 0;
  margin-bottom: 15px;
  display: none;
}

.map {
  padding-bottom: 80px;
}

.map .map-content {
  overflow: hidden;
  position: relative;
  padding-bottom: 56.25%;
}

.map .map-content iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.map p {
  text-align: left;
  line-height: 1.4em;
  margin-top: 30px;
  font-size: 12px;
}

.contact {
  padding-bottom: 80px;
  width: 450px;
  margin: 0px auto;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .contact {
    width: 100%;
  }
}

.contact p {
  text-align: left;
  margin-left: 25px;
}

.contact form {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: rgba(247, 174, 216, 0.5);
  border: none;
  border-radius: 10px;
  width: 100%;
}

.contact form input {
  width: 400px;
  padding: 12px;
  border: 1px solid #e6ecf0;
  font-size: 12px;
  margin-bottom: 20px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .contact form input {
    width: 90%;
  }
}

.contact form .inner-contact {
  height: 100px;
  text-align: left;
}

.contact form #submit-btn {
  margin-top: 30px;
  background-color: #5f5d60;
  padding: 20px 0;
  text-align: center;
  color: white;
  border-radius: 10px;
  font-size: 19px;
}

.contact form .kome {
  width: 90%;
}

.contact form .kome p {
  font-size: 11px;
}

footer {
  height: 65px;
  width: 100%;
  background-color: pink;
}

footer p {
  color: #5f5d60;
  float: right;
  margin-top: 30px;
  font-size: 8px;
}

/*slick setting*/
.slick-prev:before,
.slick-next:before {
  color: #c7c4c4 !important;
}
/*# sourceMappingURL=style.css.map */