@charset "utf-8";

/* --------------------

- common.css

-------------------- */
html,
body {
  background: url('../img/top/bg.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #221815;
  font-family: YakuHanJP, 'Noto Sans JP', sans-serif;
  font-weight: 700;
  min-height: 700px;
  min-width: 1280px;
  -webkit-text-size-adjust: 100%;
}

.sp { display: none; }

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

  html,
  body {
    background: none;
    min-height: 100%;
    min-width: 100%;
    width: 100vw;
    overflow-x: hidden;
  }

  body::before {
    background: url('../img/top/bg_sp.jpg') no-repeat center center;
    background-size: cover;
    content: '';
    display: block;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: -1;
  }

  .pc { display: none; }

  .sp { display: block; }

}

/* --------------------
- header
-------------------- */
header {
  align-items: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, .2);
  cursor: pointer;
  display: flex;
  height: 60px;
  justify-content: center;
  position: fixed;
  right: 10px;
  top: 10px;
  width: 60px;
  z-index: 100;
}

.menu-line {
  background: #0092c8;
  display: block;
  height: 3px;
  margin: 0 auto 6px;
  transition: .4s;
  transform: rotate(0deg);
  width: 36px;
}

.menu-line:nth-child(3) { margin: 0 auto 2px; }

.open .menu-line:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }

.open .menu-line:nth-child(2) { opacity: 0; }

.open .menu-line:nth-child(3) { transform: rotate(-45deg) translate(6px, -7px); }

.menu p {
  color: #0092c8;
  font-size: 12px;
  text-align: center;
}

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

  header {
    box-shadow: .26666666666666666vw .26666666666666666vw .8vw rgba(0, 0, 0, .2);
    height: 13.333333333333334vw;
    right: -80px;
    transition: .4s;
    top: 2.6666666666666665vw;
    width: 13.333333333333334vw;
  }

  .menu-line {
    margin: 0 auto 1.0666666666666667vw;
    width: 8vw;
  }

  .menu-line:nth-child(3) { margin: 0 auto .5333333333333333vw; }

  .open .menu-line:nth-child(1) { transform: rotate(45deg) translate(1.3333333333333333vw, 1.2vw); }

  .open .menu-line:nth-child(3) {transform: rotate(-45deg) translate(1.3333333333333333vw, -1.3333333333333333vw); }

  .menu p {
    font-size: 2.6666666666666665vw;
    line-height: 1.2;
  }

  .header-shift { right: 2.6666666666666665vw; }

}

/* --------------------
- sns
-------------------- */
.sns p {
  font-size: 12px;
  letter-spacing: 1px;
  margin: 0 auto 5px;
  text-align: center;
  text-indent: 1px;
}

.sns ul {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  width: 100px;
  /* width: 45px; */
}

.sns ul li { width: 45px; }

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

  .sns p {
    font-size: 3.2vw;
    letter-spacing: .26666666666666666vw;
    margin: 0 auto 1.3333333333333333vw;
    text-indent: .26666666666666666vw;
  }

  .sns ul {
    width: 29.333333333333332vw;
    /* width: 12vw; */
  }

  .sns ul li { width: 12vw; }

}

/* --------------------
- share
-------------------- */
.share {
  display: flex;
  justify-content: flex-end;
}

.share li { margin: 0 10px 0 0; }

.share li:last-child { margin: 0; }

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

  .share {
    justify-content: center;
    margin: 0 auto 5.333333333333333vw;
  }

  .share li { margin: 0 2.6666666666666665vw 0 0; }

}

/* --------------------
- footer
-------------------- */
@media screen and (max-width: 480px) {

  footer { padding: 8vw 0 10.666666666666666vw; }

  .billing {
    font-size: 1.6vw;
    margin: 0 auto 100px;
    text-align: center;
    width: 92%;
  }

}

/* --------------------
- drawer
-------------------- */
.drawer {
  background: rgba(255, 255, 255, .9);
  display: none;
  height: 100%;
  opacity: 0;
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
  padding: 80px 0;
  position: fixed;
  right: -2%;
  top: 0;
  width: 400px;
  z-index: 99;
}

.drawer nav { margin: 0 auto 50px; }

.drawer nav ul li {
  cursor: pointer;
  display: table;
  font-size: 16px;
  letter-spacing: 1px;
  margin: 0 auto 10px;
  padding: 10px 0;
  text-align: center;
  text-indent: 1px;
  transition: .4s;
}

.drawer nav ul li:last-child { margin: 0 auto; }

.drawer nav ul li:hover { opacity: .7; }

.drawer .sns ul {
  width: 110px;
  /* width: 45px; */
}

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

  .drawer {
    padding: 21.333333333333332vw 0;
    width: 70%;
  }

  .drawer nav { margin: 0 auto 8vw; }

  .drawer nav ul li {
    font-size: 4.266666666666667vw;
    letter-spacing: .26666666666666666vw;
    margin: 0 auto 2.6666666666666665vw;
    padding: 1.3333333333333333vw 0;
    text-indent: .26666666666666666vw;
  }

  .drawer nav ul li:hover { opacity: 1; }

  .drawer .sns ul {
    width: 29.333333333333332vw;
    /* width: 12vw; */
  }

}

/* --------------------
- to top
-------------------- */
.to-top {
  align-items: center;
  background: #fff;
  border-radius: 50%;
  bottom: 10px;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, .2);
  cursor: pointer;
  display: flex;
  height: 60px;
  justify-content: center;
  position: fixed;
  right: -80px;
  transition: .4s;
  width: 60px;
  z-index: 98;
}

.to-top p { line-height: 1; }

.to-top p .material-icons {
  color: #0092c8;
  font-size: 48px;
}

.to-top-shift { right: 10px !important; }

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

  .to-top {
    bottom: 2.6666666666666665vw;
    box-shadow: .26666666666666666vw .26666666666666666vw .8vw rgba(0, 0, 0, .2);
    height: 13.333333333333334vw;
    width: 13.333333333333334vw;
  }

  .to-top p .material-icons { font-size: 9.6vw; }

  .to-top-shift { right: 2.6666666666666665vw !important; }

}

/* --------------------
- loading
-------------------- */
.loading {
  align-items: center;
  background: #fff;
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.lds-ellipsis {
  display: inline-block;
  height: 80px;
  position: relative;
  width: 80px;
}

.lds-ellipsis div {
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  border-radius: 50%;
  height: 13px;
  position: absolute;
  top: 33px;
  width: 13px;
}

.lds-ellipsis div:nth-child(1) {
  animation: lds-ellipsis1 .6s infinite;
  background: #0092c8;
  left: 8px;
}

.lds-ellipsis div:nth-child(2) {
  animation: lds-ellipsis2 .6s infinite;
  background: #f13b79;
  left: 8px;
}

.lds-ellipsis div:nth-child(3) {
  animation: lds-ellipsis2 .6s infinite;
  background: #0092c8;
  left: 32px;
  z-index: 1;
}

.lds-ellipsis div:nth-child(4) {
  animation: lds-ellipsis3 .6s infinite;
  background: #f13b79;
  left: 56px;
}

@keyframes lds-ellipsis1 {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

@keyframes lds-ellipsis2 {
  0% { transform: translate(0, 0); }
  100% { transform: translate(24px, 0); }
}

@keyframes lds-ellipsis3 {
  0% { transform: scale(1); }
  100% { transform: scale(0); }
}

/* --------------------
- reset
-------------------- */
a {
  color: inherit;
  text-decoration: none;
  transition: .4s;
}

a:hover { opacity: .7; }

iframe {
  height: 100%;
  vertical-align: bottom;
  width: 100%;
}

img {
  vertical-align: bottom;
  width: 100%;
}

li { list-style: none; }

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

  a:hover { opacity: 1; }

}
