@charset "UTF-8";
/*-----------------------------------
Splash
------------------------------------*/
#splash {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff; 
    display: flex; 
    justify-content: center;
    align-items: center;
    color: black;
    z-index: 100; 
    overflow: hidden;
    border-top: 8px solid #1f1f1f;
    box-sizing: border-box;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.5);
  
}
.splash-content {
    text-align: center;
}
.splash-content img {
  width: 200px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.splash-content .splash-logo {
  font-family: 'Times New Roman', sans-serif; /* Enzoフォント */
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
#splash.hidden {
    opacity: 0;
    visibility: hidden; 
}
.screen-up {
  animation: screenUp 0.8s cubic-bezier(0.45, 0, 0.55, 1) 0.2s forwards;
}
@keyframes screenUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}

html {
  font-size: 100%;
  height: 100%;
}
body {
  overflow-y: scroll;
  color: #1f1f1f;
  font-family: "EB Garamond", "Noto Serif JP", serif;
  font-feature-settings: "palt";
  font-weight: 400;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}
img {
  max-width: 100%;
  vertical-align: bottom;
}
li {
  list-style: none;
}
a {
  color: #1f1f1f;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}
main {
  padding-top: 80px;
}
/*-------------------------------------------
Header
-------------------------------------------*/
#header {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  padding: 0 20px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
#header .logo {
  width: 100%;
  max-width: 220px;
  line-height: 0;
}
#header .logo a {
  display: block;
}
#header .navi .menu {
  display: flex;
  align-items: center;
}
#header .navi .menu li {
  font-size: 16px;
   margin-left: 40px;
}
#header .mask {
  display: none;
}
#page-wrap {
  flex: 1;
}
#header .navi .menu .separator {
  display: inline;
}
/*------------------------------------------
footer
------------------------------------------*/
#footer {
  font-size: 12px;
  padding-bottom: 20px;
  margin: 40px 30px 0 30px;
}
.footer-container{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.foter-navi {
  display: flex;
  font-size: 14px;
}


/*-------------------------------------------
タブレット1024px以下
-------------------------------------------*/
@media screen and (max-width: 1024px) {
  html {
    scroll-padding-top: 60px;
  }
  main {
    padding-top: 60px;
  }
  /*-------------------------------------------
  header
  -------------------------------------------*/
  #header {
    height: 60px;
  }
  #header .logo {
    max-width: 180px;
  }
 /*-------------------------------------------
  hamburger
  -------------------------------------------*/
   #header .hamburger {
    width: 50px;
    height: 50px;
    cursor: pointer;
    position: fixed;
    top: 5px;
    right: 10px;
    z-index: 30;
  }
  #header .hamburger span {
    width: 30px;
    height: 1px;
    background-color: #1f1f1f;
    display: inline-block;
    position: absolute;
    left: 10px;
    transition: all 0.4s;
  }
  #header .hamburger.active span {
    background-color: #fff;
  }
  #header .hamburger span:nth-of-type(1) {
    top: 16px; 
  }
  #header .hamburger span:nth-of-type(2) {
    top: 25px;
  }
  #header .hamburger span:nth-of-type(3) {
    top: 34px;
  }
  #header .hamburger.active span:nth-of-type(1) {
    top: 24px;
    transform: rotate(-45deg);
  }
  #header .hamburger.active span:nth-of-type(2) {
    opacity: 0;
  }
  #header .hamburger.active span:nth-of-type(3) {
    top: 24px;
    transform: rotate(45deg);
  }
  /*-------------------------------------------
  navi
  -------------------------------------------*/
   #header .navi {
    width: 80%;
    height: 100vh;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: -120%;
    z-index: 20;
    transition: all 0.6s;
  }
  #header .navi.active {
    left: 0;
  }
  #header .navi .menu {
    width: 100%;
    height: 100vh;
    flex-direction: column;
    padding: 60px 0;
    overflow: auto;
  }
  #header .navi .menu li {
    width: 100%;
    margin-left: 20%;
  }
  #header .navi .menu li a {
    width: 100%;
    display: block;
    padding: 20px;
  }
  #header .navi .menu .separator {
    display: none;/*｜を非表示*/
}
  #header .mask.active {
    width: 100%;
    height: 100%;
    background: #000;
    display: block;
    opacity: 0.8;
    position: fixed;
    top: 0;
    left: 0;
  }
}
/*-------------------------------------------
スマートフォン767px以下
-------------------------------------------*/
@media screen and (max-width: 767px) {
  #splash {
    height: 100vh;
  }
  .splash-content {
    max-width: 80%;
  }
  .splash-content img {
    max-width: 150px;
    width: 100%;
    height: auto;
  }
  #page-wrap {
    margin-bottom: 40px;
  }
  #header .navi .menu .separator {
    display: none;
  }
  .footer-container {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: flex-center;
    text-align: center;
    margin-bottom: 20px;
  }
  .footer-navi {
    margin-bottom: 20px;
  }
}