@charset "utf-8";
/* ----------------------------------------
   CSS for index.html
---------------------------------------- */

/* レイアウト
---------------------------------------- */
#container {
    min-height: 100vh;
}

header {
    top: -60px;
    transition: all 300ms ease;
}

header.on {
    top: 0;
}

#heroWrapper {
    position: relative;
    overflow: hidden;
    height: 100vh;
    z-index: -1;
}

#heroTitle {
    display: table;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 0 10px;
    opacity: 1.0;
    animation: heroTitleFadeOut 4s ease 0.5s forwards;
}

#heroTitle > div {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

@keyframes heroTitleFadeOut {
    from {
        opacity: 1.0;
        transform: scale(1.0);
    }
    to {
        opacity: 0.0;
        transform: scale(0.95);
    }
}

#hero {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../img/index/hero.jpg) no-repeat center bottom;
    opacity: 0.0;
    animation: heroFadeIn 4s linear 1s forwards;
}

@keyframes heroFadeIn {
    from {
        opacity: 0.0;
        transform: scale(1.0);
    }
    to {
        opacity: 1.0;
        transform: scale(1.1);
    }
}

@media screen and (min-width: 1100px){
    #hero{
        background-size: cover;
    }
}

@media screen and (max-width: 1099px){
    #hero{
        background-position: center center;
        background-size: auto 100%;
    }
}

#contentsWrapper {
    position: relative;
    background: #fff;
    text-align: center;
}

#mainTitle,
#mainContents {
    margin: 0 auto;
}

/* メインタイトル
---------------------------------------- */
#mainTitle {
    padding: 50px 0;
}
#mainTitle h1 {
    line-height: 0;
}

/* ホテル
---------------------------------------- */
#hotelList {
    padding: 0 0 90px;
}

#hotelList ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 900px;
    margin: -20px auto;
}

#hotelList ul > li {
    flex-basis: 32%;
    margin: 20px 0 0;
}

#hotelList ul > li a {
    display: block;
    text-decoration: none;
    color: #3c3c3c;
}

#hotelList ul > li a:hover .img {
    opacity: 0.7;
}

#hotelList ul > li .img {
    display: block;
    width: 100%;
    height: 270px;
    margin: 0 0 10px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

#hotelList ul > li:nth-child(1) .img {
    background-image: url(../img/index/img_hotel_karuizawa.jpg);
}

#hotelList ul > li:nth-child(2) .img {
    background-image: url(../img/index/img_hotel_lake_biwa_otsu.jpg);
}

#hotelList ul > li:nth-child(3) .img {
    background-image: url(../img/index/img_hotel_kamakura.jpg);
    background-position: 60% center;
}

#hotelList ul > li:nth-child(4) .img {
    background-image: url(../img/index/img_hotel_kyoto.jpg);
    background-position: 23% center;
}

#hotelList ul > li:nth-child(5) .img {
    background-image: url(../img/index/img_hotel_hiroshima.jpg);
}

#hotelList ul > li:nth-child(6) .img {
    background-image: url(../img/index/img_hotel_tokyo.jpg);
}

#hotelList ul > li:nth-child(7) .img {
    background-image: url(../img/index/img_hotel_shinagawa.jpg);
}

#hotelList ul > li:nth-child(8) .img {
    background-image: url(../img/index/img_hotel_hakone.jpg);
}

#hotelList ul > li:nth-child(9) .img {
    background-image: url(../img/index/img_hotel_takanawa.jpg);
    background-position: 55% center;
}

/* ご婚礼までの流れ
---------------------------------------- */
#flow {
    padding: 0 0 90px;
}

#flow h2 {
    margin: 0 0 60px;
    line-height: 1.1;
}

#flow .step {}

#flow .step dt {
    margin: 0 0 14px;
}

#flow .step dd {
    margin: 0 0 60px;
}

#flow .step dd:last-child {
    margin-bottom: 0;
}

#flow .step dt h3 {
    line-height: 0;
    color: #aa934a;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
}

#flow .step dt h3 span {
    display: inline-block;
    line-height: 1.3;
}

#flow .step dt h3 span:first-child {
    margin: 0 0 14px;
    padding: 0 10px;
    border-bottom: 1px solid #aa934a;
}

#flow .step dt h3 span:last-child {}

/* Image Movie
---------------------------------------- */
#imageMovie { padding-bottom: 90px; }

#imageMovie h2 {
    margin-bottom: 30px;
    line-height: 0;
}

/* ----------------------------------------
   @media : PC
---------------------------------------- */
@media screen and (min-width: 737px) {
    /*#hero { display: none; }
    #heroMovie { display: block; }*/
}/* /@media */


/* ----------------------------------------
   @media : SP
---------------------------------------- */
@media screen and (max-width: 736px) {
    html, body {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
        letter-spacing: 0.02em;
    }
    #hero { background-image: url(../img/index/hero_sp.jpg); }
    #mainTitle { padding: 20px; }
    #hotelList { padding-bottom: 70px; }
    #hotelList ul { margin-top: -10px; }
    #hotelList ul > li {
        flex-basis: 100%;
        margin-top: 10px;
    }
    #hotelList ul > li .img {
        height: 0;
        margin-bottom: 5px;
        padding-bottom: 50%;
        background-size: 100% auto;
    }
    #hotelList ul > li:nth-child(1) .img { background-position: 0 37%; }
    #hotelList ul > li:nth-child(2) .img { background-position: 0 15%; }
    #hotelList ul > li:nth-child(3) .img { background-position: 0 65%; }
    #hotelList ul > li:nth-child(4) .img { background-position: 0 3%;  }
    #hotelList ul > li:nth-child(5) .img { background-position: 0 70%; }
    #hotelList ul > li:nth-child(6) .img { background-position: 0 58%; }
    #hotelList ul > li:nth-child(7) .img { background-position: 0 70%; }
    #hotelList ul > li:nth-child(8) .img { background-position: 0 50%; }
    #hotelList ul > li:nth-child(9) .img { background-position: 0 30%; }
    #flow { padding: 0 30px 70px; }
    #flow h2 { margin-bottom: 30px; }
    #flow .step dt { margin-bottom: 10px; }
    #flow .step dt h3 { font-size: 1.3rem; }
    #flow .step dt h3 span:first-child { margin-bottom: 5px; }
    #flow .step dd { margin-bottom: 35px; }
    #flow .step dd:last-child { text-align: center; }
    #imageMovie h2 { margin-bottom: 15px; }
}/* /@media */
