@charset "UTF-8";

/*CSSDocument*/


/* html body base
===============================================================*/


/*
html ----------------------------------------------------------*/

*{ margin:0px; padding:0px;}

body{
  color:#000000;
  margin:0;
  padding:0;
  background:#FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  text-align:center;
  font-size:100%;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position:relative;
}

a:link,
a:visited,
a:hover,
a:active { color:#000;text-decoration:none;}

ul{ list-style:none;}

img {
  padding:0px;
  margin:0px;
  vertical-align:bottom;
  max-width: 100%;
  height: auto;
}
a {
  transition: all 0.5s ease-out;
}
a:hover {
  opacity:0.7;
}

/*
html ----------------------------------------------------------*/

.l-inner {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: content-box;
  padding: 0 30px;
}
@media screen and (max-width: 768px){
  .l-inner {
    padding: 0 20px;
  }
}

.p-header__logo {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2000;
  width: 90px;
  height: 90px;
}
.p-header__btn {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 2000;
}
.p-headerCtaBtn {
}
.p-headerCtaBtn a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90px;
  width: 100px;
  font-family: "Noto Serif JP", serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .1em;
}
.p-headerCtaBtn a > span {
  position: relative;
  display: inline-block;
  padding-top: 45px;
  box-sizing: border-box;
}
.p-headerCtaBtn a > span::before {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  background-image: url('../images/icon_mail.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 44px;
  height: 44px;
}
@media screen and (max-width: 768px){
  .p-header__logo {
    width: 60px;
    height: 60px;
  }
  .p-headerCtaBtn a {
    height: 60px;
    width: 70px;
    font-size: 10px;
  }
  .p-headerCtaBtn a > span {
    padding-top: 36px;
  }
  .p-headerCtaBtn a > span::before {
    width: 36px;
    height: 36px;
  }
}

.p-footer {
  background-color: #000;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-footer__copyright {
  color: #fff;
  font-family: "Shippori Mincho B1", serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .14em;
}
@media screen and (max-width: 768px){
  .p-footer {
    height: 40px;
  }
  .p-footer__copyright {
    font-size: 12px;
  }
}

.u-fadeUp,
.u-topFadeUp
 {
  opacity: 0;
}
.u-fadeUp.is-active,
.u-topFadeUp.is-active {
  opacity: 1;
  animation: fadeup .8s linear 1;
}
@keyframes fadeup {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.u-fadeIn,
.u-topFadeIn {
  opacity: 0;
  -webkit-transition: opacity .8s ease-out;
  transition: opacity 2s ease-out;
}
.u-fadeIn.is-active,
.u-topFadeIn.is-active {
  opacity: 1;
}


/* body base
===============================================================*/
