@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Roboto:wght@300;400;500;700&display=swap');

/* display change */

.-sp {
  display: none;
}

.-inline_sp {
  display: none;
}

@media screen and (max-width: 768px) {

  .-pc {
    display: none;
  }

  .-inline_pc {
    display: none;
  }

  .-sp {
    display: block;
  }

  .-inline_sp {
    display: inline;
  }

}


/* body */

body {
  font-size: 16px;
  line-height: 1.8;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-text-size-adjust: 100%;
  font-weight: 400;
  color: #000;
  position: relative;
}

@media screen and (max-width: 768px) {
}


/* img */

img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

body.preload .wow.fadeIn {
	opacity: 0 !important;
}


/* wrapper */

.-wrapper {
  margin: 0 auto;
}

/* loader */

.loader {
  background-color: #FADDD1;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
}

@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; }
  45% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0.7; }
  80% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; } }
@keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; }
  45% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0.7; }
  80% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; } }

.ball-pulse > div:nth-child(1) {
  -webkit-animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
          animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.ball-pulse > div:nth-child(2) {
  -webkit-animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
          animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.ball-pulse > div:nth-child(3) {
  -webkit-animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
          animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.ball-pulse > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  display: inline-block; }


.wrapper {
  padding: 55px 0 0;
}

@media screen and (max-width: 768px) {
  .wrapper {
    padding: 0;
  }
}

/* second level navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 55px;
  background: #FADDD1;
  z-index: 10;
}
.header-nav {
  display: flex;
  flex-wrap: wrap;
  margin: 10px;
}
.header-nav-item {
  margin: 0 15px;
}
.header-nav-link {
  position: relative;
  display: block;
  padding: 0 5px;
  font-family: 'Libre Baskerville', serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 35px;
  color: #493931;
  transition: .25s;
}
.header-nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: #493931;
  transform: translateX(-50%);
  transition: .25s;
}
.header-nav-link:hover::after {
  width: 100%;
}
.header-nav-item.sns {
  display: none;
}

@media screen and (max-width: 768px) {
  .header {
    left: 101%;
    width: 100%;
    min-height: 100vh;
    background: #FADDD1;
    overflow-y: auto;
    background: rgba(250,221,209,.9);
    transition: .25s;
  }
  .header.open {
    left: 0;
  }
  .header-nav {
    position: absolute;
    top: 50%;
    left: 5%;
    display: block;
    width: 90%;
    transform: translateY(-50%);
  }
  .header-nav-item {
    display: block;
    width: 100%;
    margin: 20px auto;
  }
  .header-nav-link {
    display: block;
    width: 100%;
    text-align: center;
  }
  .header-nav-item.sns {
    display: block;
    width: 50px;
    height: 50px;
    margin: 40px auto 0;
  }
}

.btn_drawer {
  display: none;
}

@media screen and (max-width: 768px) {
  .btn_drawer {
    position: fixed;
    top: 0;
    right: 0;
    display: block;
    width: 50px;
    height: 50px;
    z-index: 1000;
    cursor: pointer;
  }
  .btn_drawer span {
    position: absolute;
    left: 10px;
    display: inline-block;
    width: 30px;
    height: 2px;
    background: #3A332D;
    transition: .25s;
  }
  .btn_drawer span:first-of-type {
    top: 13px;
  }
  .btn_drawer span:nth-of-type(2) {
    top: 24px;
  }
  .btn_drawer span:last-of-type {
    top: 36px;
  }
  .btn_drawer.open span:first-of-type {
    top: 24px;
    background: #3A332D;
    transform: rotate(225deg);
  }
  .btn_drawer.open span:nth-of-type(2) {
    width: 0;
  }
  .btn_drawer.open span:last-of-type {
    top: 24px;
    background: #3A332D;
    transform: rotate(-225deg);
  }
}

/* second level bottom */
.bottom {
  position: relative;
  padding: 50px 0;
  background: #fff;
  z-index: 2;
}
.bottom-inner {
  width: 94%;
  max-width: 650px !important;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .bottom {
    padding: 30px 0 20px;
  }
}


/* colorbox close button custom */
.modalWrap #cboxClose {
	position: absolute;
	top: 10px;
	right: 10px;
	display: block;
	background: url(../img/about/modal_close.svg) center center no-repeat;
	background-size: 100% auto;
	width: 50px;
	height: 50px;
	text-indent: -9999px;
	transition: 0.2s all;
	z-index: 200;
}
@media screen and (max-width: 999px) {
	.modalWrap #cboxClose {
    top: 7px;
    right: 7px;
		width: 38px;
		height: 38px;
	}
}
@media screen and (max-width: 759px) {
	.modalWrap #cboxClose {
    top: 5px;
    right: 5px;
		width: 35px;
		height: 35px;
	}
}

.footer {
  position: relative;
  z-index: 2;
}