 
/* 
Theme Name: 伊勢志摩マリーナ
Author: 伊勢志摩マリーナ
Author URI: 
Version: 1.0
*/
@charset "UTF-8";
/* CSS Document */
html {
    font-size: 62.5%;
}
body {
    width: 100%;
    height: 100%;
    font-size: 1.6em;
    line-height: 1.8;
    letter-spacing: 0;
    color: #171717;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 600;
}
a {
    color: #171717;
    text-decoration: none;
    display: block;
}
a:hover {
    opacity: 0.8
}
*,
*:before,
*:after {
    box-sizing:border-box;
}
@media (max-width: 600px) {
    body {
        font-size: 1.4rem;
        line-height: 1.6;
    }
}
/* ------------------------------------- /
/   共通
/* ------------------------------------- */
.taC {
    text-align: center;
}
.taR {
    text-align: right;
}
.fwM {
    font-weight: 500;
}
.fwSB {
    font-weight: 600;
}
.fwB {
    font-weight: bold;
}
.flex{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
.justify__between{
    justify-content: space-between;
}
.anchor {
    padding-top: 100px;
    margin-top: -100px;
}
.flex-end{
    align-items: flex-end;
}
.flex-contents{
    justify-content: flex-start!important;
}
.font-20{
    font-size: clamp(1.6rem, 3vw, 2rem);
}
.font-25{
    font-size: clamp(2rem, 3vw, 2.5rem);
}
.font-30{
    font-size: clamp(2.6rem, 3vw, 3rem);
}
.l-height-25{
    line-height: 2.5;
}
*:before,
*:after {
    box-sizing:border-box;
}
/* ------------------------------------- /
/   inner
/* ------------------------------------- */
.inner {
    width: min(100%, calc(1366px + (6% * 2)));
    margin: 0 auto;
    padding: 0 6%;
}
@media screen and (max-width:600px){
    .inner {
        padding: 0 4%;
    }
}
.flex{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.align__center{
    align-items: center;
}
/* ------------------------------------- /
/   pc-none、sp-none
/* ------------------------------------- */
.pc-none {
    display: none;
}
.pc-none800 {
    display: none;
}
.pc-none__inline {
    display: none;
}
.pc-none__inline800 {
    display: none;
}
.pc-none__inline1200 {
    display: none;
}
@media screen and (max-width:1200px){
    .pc-none__inline1200 {
        display: inline;
    }
    .sp-none1200 {
        display: none;
    }
}
@media screen and (max-width:800px){
    .pc-none800 {
        display: block;
    }
    .pc-none__inline800 {
        display: inline;
    }
    .sp-none800 {
        display: none;
    }
}
@media screen and (max-width:600px){
    .pc-none {
        display: block;
    }
    .pc-none__inline {
        display: inline;
    }
    .sp-none {
        display: none !important;
    }
}
/* ------------------------------------- /
/   サイトカラー、フォント
/* ------------------------------------- */
:root {
    --color-gray: #CCCCCC;
    --color-black: #000;
    --font-jp:"Noto Sans JP", sans-serif;
    --font-en:"Lexend", sans-serif;
}
.font-jp {
    font-family: var(--font-jp);
}
.font-en {
    font-family: var(--font-en);
}
.font-pink {
    color: var(--color-pink);
}

/* ------------------------------------- /
/  header
/* ------------------------------------- */
.header{
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    padding: 0 30px;
    background-color: #fff;
}
.header__flex{
    height: 100px;
}
.header__logo{
    width: 180px;
}
.openbtn{
    display: none;
}
#header__nav{
    max-width: 740px;
    width: 100%;
}
.header__list a{
    color: #171717;
    font-weight: 600;
    font-family: var(--font-en);
    font-size: clamp(1.5rem, 3vw, 2rem);
    letter-spacing: 0.15rem;
}
.header__list a:hover{
    color: #AF9863;
}
.header__list_item-contact{
    border: solid 1px #171717;
    border-radius: 5px;
    padding: 10px 17px;
}
.header__list_item-contact:hover{
    background-color: #171717;
    color: #fff!important;
    opacity: 1;
}
.header__list-mega{
    position: relative;
}
.header__list_item-mega{
    padding: 10px 16px 10px 0;
    position: relative;
}
.header__list_item-mega::before{
    content: "";
    position: absolute;
    top: 45%;
    right: 0;
    width:12px ;
    height: 8px;
    background-image:url(../img/sankaku.svg) ;
    background-repeat: no-repeat;
    background-size: 12px;
    background-position: center;
    transition: transform .3s ease;
}
.header__list-mega:hover .header__list_item-mega::before {
  transform: translateY(-54%) rotate(180deg);
}
.header__list_mega{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 56px;
    border: solid 1px #171717;
    background-color: #fff;
    min-width: 190px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: .2s ease;
}
.header__list_mega a{
    padding: 11px 17px;
    color: #696969;
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 1.6rem);
}
.header__list-mega:hover .header__list_mega {
  opacity: 1;
  visibility: visible;
}
/* SP ----------------------------- */
.openbtn {
    position: fixed;
    top: 16px;
    right: 20px;
    cursor: pointer;
    z-index: 999;
    width: 68px;
    height: 68px;
    border-radius: 50px;
    background-color: #fff;
    border: solid 1px #696969;
}
.openbtn.active{
    background-color: #000;
}
.openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    height: 2px;
    background: #696969;
    width: 22px;
}
.openbtn span:nth-of-type(1) {
    top: calc(50% - 3.5px)
}
.openbtn span:nth-of-type(2) {
    top: calc(50% + 3.5px)
}
.openbtn.active span:nth-of-type(1) {
    background: #FFF;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
    top: 50%;
}
.openbtn.active span:nth-of-type(2){
    background: #FFF;
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.header__add_tel a{
    color: #E3A906;
}
@media screen and (min-width:1300px){
    #header__nav{
        display: block!important;
    }
}
@media screen and (max-width:1300px){
    .openbtn{
        display: block;
    }
    .header__logo {
        position: relative;
        z-index: 9;
    }
    #header__nav {
        width: 100%;
        min-height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        background-color: #E8E8E8;
        z-index: 99;
        display: none;
        max-width: inherit;
    }
    .header__list{
        margin-top: 30px;
        align-items: flex-start;
        display: block;
    }
    #header__nav.active {
        display: block;
        opacity: 1;
    }
    .header__box{
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        overflow-y: scroll;
        box-sizing: border-box;
        padding: 5% 10% 10%;
        position: absolute;
        padding-bottom: 200px;
    }
    .header__list a {
        color: #171717;
        font-size: clamp(1.5rem, 3vw, 2rem);
        padding: 8px 0;
        text-align: left;
    }
    .header__list_mega,
    .header__list_mega:hover {
        opacity: 1;
        visibility: inherit;
        position: inherit;
        border: 0;
        background-color: inherit;
        text-align: left;
        margin-left: 15px;
        left: inherit;
        transform: inherit;
        top: inherit;
        min-width: inherit;
    }
    .header__list_item-mega::before{
        display: none;
    }
    .header__list_mega a{
        position: relative;
            padding-left: 30px;
            color: #696969;
    }
    .header__list_mega a::before{
        content: "";
        position: absolute;
        width: 20px;
        height: 1px;
        background-color: #000;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    .header__list_item-contact {
        width: 210px;
        text-align: center!important;
        margin-top: 10px;
    }
}
@media screen and (max-width:600px){
    .header,.header__flex{

        height: 80px;
    }
    .header__logo {
        width: 140px;
    }
    .openbtn {
        top: 2.0rem;
        width: 40px;
        height: 40px;
    }
    .openbtn span{
        width: 12px;
    }
    .openbtn span:nth-of-type(1) {
        top: calc(50% - 2.5px);
    }
        .openbtn span:nth-of-type(2) {
        top: calc(50% + 2.5px);
    }
    .header__list_item-contact {
        width: 100%;
    }   
}
/* ------------------------------------- /
/  mv__wrapper
/* ------------------------------------- */
.mv__wrapper{
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    margin-top: 100px;
}
.video-container {
    margin: 0 auto;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    overflow: hidden;
}
.video-wrap {
    position: fixed;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    top: 0;
    background-color: #000;
}
.video-wrap video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition-duration: 0.3s;
}
.video-wrap.scroll-on video {
    opacity: 0.4;
}
/*画面サイズが変わっても常に動画の中央が表示されるようにする*/
/*動画よりも画面が横に長くなるとき用*/
/*
@media (aspect-ratio: 5/5), (min-aspect-ratio: 5/5) {
    .video-wrap video {
        width: 100%;
        top: 0;
    }
}
*/
/*動画よりも画面が縦に長くなるとき用*/
/*
@media (max-aspect-ratio: 5/5) {
.video-wrap video {
    top: 0;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
}
*/
/*scroll down*/
.scrolldown {
    display: inline-block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5%;
    margin: auto;
    z-index: 2;
    width: 210px;
    text-align: center;
    padding: 10px 10px 80px;
    color: #fff;
    font-size: 18px;
    font-family: var(--font-en);
    line-height: 1;
    animation: popping-arrow 3s infinite ease-out;
}
.scrolldown:after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 10px;
    background-image: url(../img/scroll_arrow.svg);
    block-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}
@keyframes popping-arrow {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-0.5em) rotate(0deg);
  }
  50% {
    transform: translateY(0) rotate(0deg);
  }
  75% {
    transform: translateY(0.5em) rotate(0deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}
.hotel__btn{
    background-color:#AF9863 ;
    border: solid 1px #AF9863 ;
    color: #fff;
    width: 305px;
    padding: 15px 0;
    position: absolute;
    border-radius: 50px;
    z-index: 99;
    bottom: 10%;
    right: 2%;
}
.hotel__btn span{
    padding-left:40px;
    background-image: url(../img/hotel_icon_wh.svg);
	background-repeat: no-repeat;
	background-size: 25px;
    background-position: left center;
    display: table;
    margin: 0 auto;
}
.hotel__btn:hover{
    background-color: #fff;
    border: solid 1px #AF9863 ;
    color: #AF9863 ;
    opacity: 1;
}
.hotel__btn:hover span{
    background-image: url(../img/hotel_icon_beg.svg);
}
@media (max-width: 800px) {
    .hotel__btn {
        width: 100%;
        padding: 15px 0;
        position: fixed;
        border-radius: 0;
        z-index: 99;
        bottom: 0;
        right: 0;
    }
}
@media (max-width: 600px) {
    .mv__wrapper{
        margin-top: 80px;
        height: 70vh;
    }
}

/* ------------------------------------- /
/  concept__wrapper
/* ------------------------------------- */
.concept__wrapper{
    position: relative;
    /*
    background: linear-gradient(180deg, #fff 0%, #fff 67%, #E8E8E8 67%, #E8E8E8 100%);
    */
    background-color: #fff;
}
/*
.concept__wrapper::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 11%;
    width: 100%;
    height: 36%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    background-image: url(../img/curve__bg.svg);
}
*/
.ttl{
    text-align: center;
    font-size: clamp(2.5rem, 3vw, 4rem);
    color: #ccc;
    font-family: var(--font-en);
    position: relative;
    padding-bottom:clamp(10px, 3vw, 15px );
    font-weight: 600;
    margin-bottom:clamp(40px, 8vw, 90px );
}
.ttl__bk{
    color: #171717;
}
.ttl__wt{
    color: #fff;
}
.ttl::before{
    content: "";
    position: absolute;
    width: 30px;
    height: 5px;
    border-radius: 5px;
    background-color: #ccc;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}
.ttl__bk::before{
    background-color: #171717;
}
.ttl__wt::before{
    background-color: #fff;
}
.jp-ttl{
    text-align: center;
    font-size: clamp(2.2rem, 3vw, 3rem);
    font-weight: 600;
    margin-bottom:clamp(20px, 8vw, 50px );
}
.concept__p{
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    line-height: 2.5;
}
.bg-image{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.concept__linkbox{
    min-height: 500px;
    position: relative;
    background-image: url(../img/about__bg.jpg);
}
.concept__linkbox .links__ttl{
    left: 10%;
}
.bg-blk{
    position: relative;
    border-radius: 10px;
}
.bg-blk::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
}
.links__ttl{
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2rem);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    letter-spacing: 0.1rem;
}
.links__ttl span{
    display: block;
    font-family: var(--font-en);
    font-size: clamp(2.5rem, 3vw, 4rem);
    font-weight: 700;
}
@media (max-width: 800px) {
    .concept__linkbox {
        min-height: 340px;
    }
    }
    @media (max-width: 600px) {
    .concept__linkbox {
        min-height: 240px;
    }
    .concept__wrapper::before {
        bottom: 15%;
        width: 100%;
        height: 20%;
    }
}
/* ------------------------------------- /
/  service__wrapper
/* ------------------------------------- */
.bg__gray{
    background-color: #E8E8E8;
}
.service__linkbox{
    width: 48%;
    min-height: 550px;
    margin-bottom:clamp(20px, 4vw, 50px );
}
.service__linkbox:nth-child(1){
    background-image: url(../img/service__01.jpg);
}
.service__linkbox:nth-child(2){
    background-image: url(../img/service__02.jpg);
}
.service__linkbox:nth-child(3){
    background-image: url(../img/service__03.jpg);
}
.service__linkbox:nth-child(4){
    background-image: url(../img/service__04.jpg);
}
.service__linkbox .links__ttl{
    text-align: center;
    width: 100%;
}
.service__linkbox span{
    display: block;
    font-family: var(--font-en);
    font-size: clamp(2rem, 3vw, 3.5rem);
    font-weight: 600;
}
@media (max-width: 800px) {
    .service__linkbox {
        min-height: 320px;
    }
}
@media (max-width: 600px) {
    .service__linkbox {
        min-height: 170px;
        width:100%;
    }
}
/* ------------------------------------- /
/  floor__wrapper
/* ------------------------------------- */
.floor__wrapper .inner{
    position: relative;
    z-index:2 ;
}
.floor__img{
    width: 80%;
    margin: 0 auto;
}
@media (max-width: 800px) {
    .floor__img{
        width:100%;
    }
}

/* ------------------------------------- /
/  access__wrapper
/* ------------------------------------- */
.access__wrapper {
    position: relative;
    padding-top: 20%;
    overflow: hidden;
}
.access__wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width:  100%;
    height: 10%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    background-image: url(../img/curve__bg.svg);
}
.access__inner{
    background-color: #fff;
    border-radius: 10px;
    padding: 0 6%;
    position: relative;
    z-index: 1;
}
.access__iframe{
    border-radius: 10px;
    margin-bottom:clamp(20px, 8vw, 40px );
}
.access__wrapper dl{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: normal;
}
.access__wrapper dt{
    width: 130px;
    border: solid 1px #171717;
    border-radius: 50px;
    text-align: center;
    line-height: 46px;
    margin-right: 30px;
}
.access__wrapper dd{
    width: calc(100% - 170px);
}
.google_btn{
    width: 250px;
    line-height: 60px;
    border:solid #171717 1px;
    background-color: #171717;
    color: #fff;
    font-weight: 600d;
    text-align: center;
    border-radius: 50px;
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    margin: clamp(40px, 8vw, 80px ) auto 0;
}
.google_btn:hover{
    background-color: #fff;
    color: #171717;
}
@media (max-width: 1200px) {
    .access__wrapper {
        padding-top: 40%;
    }
    .access__wrapper::after {
        height: 6%;
    }
    .access__wrapper dt {
        width: 90px;
        line-height: 37px;
    }
    .access__wrapper dd {
        width: calc(100% - 120px);
    }
    .access__iframe{
        height: 400px!important;
    }
}
/* ------------------------------------- /
/  m-access
/* ------------------------------------- */
.m-access__inner{
    background-color: #fff;
    border-radius: 10px;
    padding: 0 6%;
   margin-top:clamp(40px, 8vw, 60px );
}
.m-access__flex div{
    width: 48%;
    font-size: clamp(1.6rem, 3vw, 1.7rem);
}
.m-access__flex div img{
    margin-bottom: clamp(15px, 3vw, 30px );
}
@media (max-width: 800px) {
    .m-access__flex div{
        width: 100%;
    }
    .m-access__flex div:first-child{
        margin-bottom: 30px;
    }
}
/* ------------------------------------- /
/  footer
/* ------------------------------------- */
.footer{
    position: relative;
    padding: clamp(90px, 10vw, 200px ) 0 clamp(30px, 10vw, 100px ) ;
    background-image: url(../img/footer_bg.jpg);
}
.footer__left{
    width: 30%;
}
.footer__logo{
    max-width: 445px;
    margin-bottom:clamp(40px, 8vw, 60px );
}
.footer__sns{
    max-width: 200px;
}
.footer__sns a{
    width: 34px;
}

.footer__right{
    width: 45%;
}
.footer__nav-main{
    width: 27%;
}
.footer__nav-main_last{
    width: 41%;
}
.footer__nav-main a{
    color: #fff;
    font-family: var(--font-en);
    font-size: clamp(1.7rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 25px;
}
.footer__nav-sub a{
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 1.6rem);
    font-weight: 500;
    padding-left: 20px;
    position: relative;
    margin-bottom: 6px;
}
.footer__nav-main_last a{
    font-family: var(--font-jp);
    font-weight: 500;
}
.footer__nav-main_last .footer__nav-sub a{
    font-weight: normal;
    padding-right: 20px;
    background-image: url(../img/blank__icon.svg);
    background-repeat: no-repeat;
    background-size:12px ;
    background-position: right center;
    display: table;
    text-decoration: underline;
}
.footer__nav-sub a::before{
    content: "";
    position: absolute;
    width: 8px;
    height: 1px;
    background-color: #fff;
    top: 15px;
    left: 0;
}
.footer__contact{
    background-color: #fff;
    width: 135px;
    line-height: 40px;
    color: #171717!important;
    text-align: center;
    border-radius: 5px;
     margin-top:clamp(20px, 8vw, 40px);
}
.copy {
    color: #fff;
    width: 100%;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: normal;
    text-align: center;
    padding-top:  clamp(90px, 10vw, 200px );
}
.copy a{
    display: inline;
    color: #fff;
}
.copy a:hover{
    color: var(--color-blue);
}
@media (max-width: 1200px) {
    .footer__right {
        width: 65%;
    }
}
@media (max-width: 800px) {
    .footer{
        margin-bottom: 60px;
    }
    .footer__right {
        width: 100%;
        margin-top: 30px;
    }
    .footer__left {
        width: 100%;
    }
}
@media (max-width: 600px) {
    .footer__nav-main {
        width: 43%;
    }
    .footer__logo {
        max-width: 195px;
    }
    .footer__nav-main_last {
        width: 100%!important;
        margin-top: 20px;
    }
    .footer {
        margin-bottom: 50px;
    }
    .footer__sns {
        max-width: 140px;
    }
    .footer__sns a{
        width: 27px;
    }
}
