body{
    font-family: "Noto Serif JP", serif;
    background-image:url('../images/back.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    margin: 30px 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

section{
    max-width: 500px;
    margin: 0 auto;
    padding: 20px 0;
}

ul{
    padding: 0;
}

.title{
    background-color: #fff;
}

h1{
    font-size: 30px;
    text-align: center;
    padding: .5em .7em;
    border-top: 2px solid #8aaef4;
    border-bottom: 2px solid #8aaef4;
    background-image: linear-gradient(45deg, #8aaef412 25%, transparent 25%, transparent 50%, #8aaef412 50%, #8aaef412 75%, transparent 75%, transparent), linear-gradient(-45deg, #8aaef412 25%, transparent 25%, transparent 50%, #8aaef412 50%, #8aaef412 75%, transparent 75%, transparent);
    background-color: #8aaef40d;
    background-size: 20px 20px;
    color: #8aaef4;
}

h1 small{
    font-size: 18px;
}

h2{
    text-align: center;
    color: #8aaef4;
    background-color: #fff;
    margin: 0 calc(50% - 50vw);
    padding: 10px;
}

h2.is-active{
    animation: extend 3s forwards;
}

@keyframes extend {
    0%{
        width: 0;
        opacity: 0;
    }
    100%{
        width: 100vw;
        opacity: 1;
    }
}


h1 + p{
    text-align: center;
}

b{
    color: #8aaef4;
    font-weight: bold;
}

.visual {
    width: 90%;
    border: 10px solid #fff;
    background-color: #fff;
    border-radius: 0 0 20px 20px;
    margin: 50px auto;
}

.start{
    position: relative;
}

.flick{
    position: absolute;
    top: 18%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 35px;
}

@media screen and (max-width:600px) {
    .flick{
        font-size: 25px;
    }
}

.flick.is-active{
    animation: blinking 1s ease infinite forwards;
}

@keyframes blinking {
    0%{
        opacity: 1;
    }
    70%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}

.visual .icon{
    position: absolute;
    top: 50%;
    left: 30%;
}

.visual .icon.is-active img{
    animation: slide 2s ease infinite forwards;
}

@keyframes slide {
    0%{
        opacity: 1;
        transform: translateX(0);
    }
    70%{
        opacity: 1;
    }  
    100%{
        opacity: 0;
        transform: translateX(-100px);
    }
}

.visual img {
    width: 100%;
}

.visual p{
    padding: 10px;
}

iframe {
    width: 100vw;
    height: 400px;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    margin: 0 calc(50% - 50vw);
  }

h3,.photo,.access{
    text-align: center;
}

.photo img{
    max-width: 200px;
    border: 3px solid #fff;
}

.link{
    text-align: center;
}

.link a{
    display: inline-block;
    width: 200px;
    text-decoration: none;
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 50px;
    padding: 20px;
}

.content div{
    margin: 0 auto;
}

table{
    width: 90%;
    margin: 0 5%;
}

table th{
    color: #fff;
    background-color: #c5d4f1;
    padding: 15px;
}

table td{
    background-color: #fff;
    padding: 15px;
}

.lunch ul{
    background-color: #fff;
    padding: 20px;
}

.lunch small{
    display: block;
}

.btn-surround {
    display: block;
    text-decoration: none;
    color: #FFF;
    font-weight: 700;
    background-color: #FFF;
    color: #8aaef4;
    text-align: center;
    width: inherit;
    min-width: 250px;
    padding: 16px 16px;
    position: relative;
    opacity: 1 !important;
    transition: all 1s;
    margin: 20px 0;
}

.btn-surround:before,
.btn-surround:after {
    content: "";
    display: block;
    position: absolute;
    background-color: #8aaef4;
    top: 0;
    pointer-events: none;
}

.btn-surround:before {
    left: 0;
    width: 0;
    height: 2px;
}
.btn-surround:after {
    right: 0;
    width: 2px;
    height: 0;
}

.btn-surround span:before,
.btn-surround span:after {
    content: "";
    display: block;
    position: absolute;
    background-color: #8aaef4;
    bottom: 0;
    pointer-events: none;
}
.btn-surround span:before {
    right: 0;
    width: 0;
    height: 2px;
}
.btn-surround span:after {
    left: 0;
    width: 2px;
    height: 0;
}

.btn-surround.is-active:before {
    width: 100%;
    transition: width 1s 1s;
}

.btn-surround.is-active:after {
    height: 100%;
    transition: height 1s 1s;
}

.btn-surround.is-active span:before {
    width: 100%;
    transition: width 1s 1s;
}

.btn-surround.is-active span:after {
    height: 100%;
    transition: height 1s 1s;
}

.photospot{
    background-image:url('../images/photo19.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

.photospot p{
    margin: 0;
}

.photospot .box{
    position: relative;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 40px;
}

.photospot .box::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #FFF;
    z-index: 2;
    transition: 2.5s;
    transition-timing-function: ease-in;
    opacity: 1;
}

.photospot .box.is-active::before{
    transform: translateX(-100%);
    opacity: 0;
}

.photospot .staff,.photospot .place{
    border: 1px solid #fff;
    border-radius: 10px;
    box-shadow: 5px 5px #3336;
    margin-bottom: 30px;
    padding: 20px;
}

.photospot .staff p::before,.photospot .place p::before{
    content: '★';
}

.photospot h3{
    color: #FFF;
    text-align: center;
    margin-bottom: 30px;
}

.photospot h3::before{
    display: block;
    content: '';
    width: 64px;
    height: 64px;
    background-image: url('../images/icon3.svg');
    background-size: contain;
    background-position: center;
    margin: 0 auto;
}

.photospot h4{
    color: #FFF;
    text-align: center;
    border-bottom: double #fff 3px;
    margin-bottom: 10px;
    padding: 10px;
}

.photospot h5{
    font-size: 20px;
    color: #FFF;
    text-align: center;
    margin: 5px 0;
}

.photographer{
    margin-top: 50px;
}

.photospot p,.photospot ul{
    color: #fff;
}

.content div .is-active,.access div .is-active{
    animation: animation 2s linear forwards;
}

@keyframes animation {
    0%{
        opacity: 0;
        transform: translateY(50px);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}

.slick-prev:before,
.slick-next:before {
    color: black;
}

/* .slick-prev {
    left: -35px;
}

.slick-next {
    right: -35px;
} */