@charset "utf-8";
.sp_br {
    display: none; 
}
.pc,.pc-img{
    display: none;
}
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10;
    background-color: #ebe6e1;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeOut 1.5s 2.5s forwards;
  }
  
  @keyframes fadeOut {
    0% {
      opacity: 1;
    }
  
    100% {
      opacity: 0;
      visibility: hidden;
    }
  }
  
  .loading__logo {
    opacity: 0;
    animation: logo_fade 2.5s 0.5s forwards;
    width: 280px;
  }
  
  @keyframes logo_fade {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
  
    60% {
      opacity: 1;
      transform: translateY(0);
    }
  
    100% {
      opacity: 0;
    }
  }
  
body{
    background-color: #ebe6e1;
}
img{
    margin: 0 auto;
    width: 100%;
    /* max-width: 400px; */
}
h1 {
    /* max-width:600px ; */
    margin: 0 auto;
}
h2,h3,h4,p,li,small,a{
    font-size: 1.2rem;
    color: #664821;
    line-height: 20px;
    font-family: 'Noto Serif JP', serif;
}
h2{
    font-size: 1.8rem;
    line-height: 24px;
    text-align: center;
    margin:0px 0 15px;
}
.flex{
    display: flex;
    justify-content: center;
    align-items: center;
}
.sp ul.glonav li a{
    font-size: 2.2rem;
    color: #fff;
}
a{
    transition: .4s;
}
a:hover{
	opacity: 0.8;
}
h1 a:hover{
    opacity: 1;
}
.mark1 {
    background: linear-gradient(transparent 60%, rgba(13, 220, 247, 0.222) 0%);
    font-weight: bold;
    font-style:normal; 
}
.mark2 {
    background: linear-gradient(transparent 60%, rgba(247, 247, 13, 0.334) 0%);
    font-weight: bold;
    font-style:normal;
}
.mark3 {
    background: linear-gradient(transparent 60%, rgba(247, 13, 13, 0.136) 0%);
    font-weight: bold;
}
.top-text{
    max-width: 500px;
    text-align: center;
    margin: 50px auto 0;
    padding: 0px 20px;
}
.wrapper{
    max-width: 600px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 50px auto;
    padding: 0px 10px;
}
.wrapper div{
    width: calc(100% /2);
    box-sizing: border-box;
    padding: 4px;
}
.text-box{
    max-width: 500px;
    margin: 0 auto 50px;
    padding: 0px 20px;
}

.btn a{
    display: block;
    max-width: 250px;
    height: 50px;
    line-height: 50px;
    margin: 20px auto 100px;
    text-align: center;
    background-color: #664821;
    /* border: 1px solid#222; */
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1);
    transition: .4s;
    color: #fff;
}
.btn a:hover {
	box-shadow: 0 0 10px rgba(0,0,0,0);
    background-color: rgb(173, 132, 86);
    /* color: #fff; */
}
.archive {
    max-width: 500px;
    margin: 0 auto 100px;
    padding: 0px 20px;
}
footer{
    width: 100%;
    padding:100px 0px 50px;
    margin: 0 auto;
    background-color: #664821;
}
.logo-ear{
    max-width: 50px;
    margin: 0 auto;
    margin-bottom: 40px;
}
footer .flex a{
    margin: 0 20px;
}
footer .flex img{
    max-width: 40px;
}
footer .flex img.x-logo{
    max-width: 36px;
}
small{
    display: block;
    margin: 40px auto 0;
    text-align: center;
    color: #fff;
}
.qr a{
    display: none;
}
@media screen and (min-width:385px){
    .sp_br {
        display: none; 
    }
}
@media screen and (min-width:561px){
    .sp_br {
        display: block; 
    }
    .btn a{
        max-width: 300px;
    }
    .loading__logo {
        width: 500px;
      }
}
@media screen and (min-width:780px){
    .top-text{
        margin-top: 100px;
    }
    .wrapper{
        margin: 100px auto 50px;
    }
    .sp-img{
        display: none;
    }
    .pc-img{
        display: block;
    }
    .pc{
        /* display: none; */
        display: block;
        position: fixed;
        bottom:0;
        right: 85%;
        z-index: 3;
        transition: 0.2s;
        /* opacity: 0; */
    }
    .pc div{
        margin: 0 auto;
        margin-bottom: 50px;
        max-width: 95px;
    }
    .pc div p{
        color: #353535;
        font-size: 1.2rem;
        line-height: 30px;
        text-align: center;
    }
    .pc img{
        max-width: 95px;
        margin: 0 auto;
    }
    .logo-ear{
        max-width: 55px;
    }
    footer .flex img{
        max-width: 25px;
    }
    footer .flex img.x-logo{
        max-width: 21px;
    }
}
@media screen and (min-width:1024px){
.pc{
    right: 90%;
}
}