@charset "UTF-8";
/* CSS Document */

/* =====================
  メインビジュアル
===================== */
#mainvisual .movie {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
#mainvisual .movie video {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
}
/* =====================
  導入
===================== */
#welcome {
    padding: 0 0 60px;
    position: relative;
}
#welcome::before {
    content: url(../images/top/welcome-bg01.png);
    width: 410px;
    height: 380px;
    position: absolute;
    top: -5px;
    left: 0;
    z-index: -1;
}
#welcome::after {
    content: url(../images/top/welcome-bg02.png);
    width: 420px;
    height: 336px;
    position: absolute;
    top: 3px;
    right: 0;
    z-index: -1;
}
#welcome p {
    width: 1080px;
    text-align: center;
    font-size: 18px;
    line-height: 2;
    margin: 0 auto 15px;
}
#welcome figure {
    width: 1080px;
    margin: 0 auto;
}
#welcome figure::after {
    content: "";
    width: 100%;
    height: 420px;
    background-image: url(../images/common/sea-bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -2;
}
/* =====================
  魅力
===================== */
#attraction {
    display: flex;
}
#attraction a {
    display: block;
    width: 50%;
    height: 300px;
    text-align: center;
    overflow: hidden;
    position: relative;
}
#attraction a::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    transition: .6s;
}
#attraction a:hover::before {
    transform: scale(1.2);
}
#attraction a:first-child::before {
    background-image: url(../images/top/attraction-cuisine-bg.jpg);
}
#attraction a:last-child::before {
    background-image: url(../images/top/attraction-facilities-bg.jpg);
}
#attraction a::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.45);
    position: absolute;
    top: 0;
    left: 0;
}
#attraction a h3 {
    margin: 96px auto 38px;
    position: relative;
    z-index: 2;
}
#attraction a p.btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    padding: 5px 15px;
    border: 1px solid #fff;
    border-radius: 6px;
    transition: .6s;
    position: relative;
    z-index: 2;
}
#attraction a:hover p.btn {
    border: 1px solid #63a3d9;
    background-color: #63a3d9;
}
#attraction a p.btn::after {
    content: url(../images/common/fish-icon.png);
    margin: 0 0 0 .5em;
}
/* =====================
  プランRSS
===================== */
#plan-wrapper {
    width: 1080px;
    margin: 50px auto 60px;
    line-height: 1.5;
}
#plan-wrapper h2 {
}
#plan-wrapper .inner {
    display: flex;
    justify-content: space-between;
}
#plan-wrapper .inner .plan {
    width: 344px;
}
#plan-wrapper .inner .plan a {
    text-decoration: none;
    display: block;
    background-image: url(../images/common/white-paper-bg.gif);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 12px 0px rgba(0,0,0,.12);
    transition: .6s;
}
#plan-wrapper .inner .plan a:hover {
    box-shadow: 0px 0px 30px 0px rgba(0,0,0,.3);
}
#plan-wrapper .inner .plan a figure {
    width: 344px;
    height: 242px;
    position: relative;
    transition: .6s;
}
#plan-wrapper .inner .plan a:hover figure {
    opacity: .75;
}
#plan-wrapper .inner .plan a h3 {
    width: 304px;
    padding: 15px 0 10px;
    border-bottom: 1px dashed #64852b;
    margin: 0 auto 15px;
    color: #64852b;
}
#plan-wrapper .inner .plan a p {
    color: #333;
    font-size: 15px;
    padding: 0 20px 25px;
}
