@charset "UTF-8";


.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

html {
  font-size: 85%;
}
/*
opning
*/
body::before, body::after{
    content: "";
    position: fixed; 
    top: 0;
    width: 50vw;
    height: 100vh;
    background: #e5e3e3; 
    animation: curtainOpen 1s forwards;
    animation-delay: 1s; 
    z-index: 999; 
  }
  body::before{
    left: 0;
  }
  body::after{
    right: 0;
  }
  
  @keyframes curtainOpen{
    0%{
      width: 50vw; 
    }
    100%{ 
      width: 0; 
      visibility: hidden; 
    }
  }
  body{
    padding: 1rem;
  }

body {
  font-family: 'Noto Sans Japanese', serif;
  font-size: 1.5rem;
  width: auto;
  margin: 0 auto;
  padding: 0;
  background-color: #EEEEEE;
}
*, *::before, *::after {
  box-sizing: border-box;
}
a:link, a:visited, a:active {
  color: #ede9e9;
  text-decoration: none;
}
a:hover {
  color:#e7f361a5 !important;
}

/*
mobile layout
*/

@media (max-width: 767px) {
    .top-extend {
        height: 300px;
        min-height: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    .top-container {
        top: 0;
        transform: translateY(0);
    }
    .site-name {
        margin-bottom: 40px;
    }
}

/*
layout
*/

.container {
    width: auto;
    max-width: 680px;
    padding: 0 15px;
  }
.top-extend {
    position: relative;
    height: 100vh;
    min-height: 300px;
    background: url(../img/main.webp) no-repeat center center;
    background-size: cover;
    opacity: 0.8;
}
.top-extend2 {
    position: relative;
    height: auto;
    min-height: 300px;
    background: url(../img/main2.webp) no-repeat center center;
    background-size: auto;
    opacity: 0.8;
}
.top-container {
    position: relative;
    top: 70%;
    transform: translateY(-50%);
}

.covername {
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
    color:#fff;
}
.contents {
    width: 990px;
    margin:auto;
}
.img-cover{
    height: 300px;
    width: 100%;
    object-fit: cover;
  }
.mgl20 {
    margin-left: 20px;
}
.mgt-20 {
    margin-top: -20px;
}
.mgt100 {
    margin-top: 100px;
}
.mgb100 {
    margin-bottom: 50px;
}

/*
Color code
*/

.ftft {
    color:#fff;
}
.bkft {
    color:#212529 !important;
}

/*
icon
*/

.icon-list{
    text-align: center; 
    color: #7d7d7d;
    font-size: 50px;
    margin-bottom: 25px;
}

/*
font size
*/

.f40 {
    font-size: 40px;
}

/*
font
*/



/*
scroll-up
*/
.scroll-up {
    opacity: 0; 
    visibility: hidden;
    transform: translateY(50px);
    transition: all 1s;
  }
  .scroll-up.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
  }
