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

/*ヘッダー
----------------------------------------------------------------------------------*/
header {
    position: absolute;
    top: 0;
    width: 100%;
}
.header {
    width: 1040px;
    height: 100vh;
    margin: 0 auto;
    background-color: transparent;
}
.header h1 {
    float: left;
    position: relative;
    top: 200px;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
}

.scroll {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 24px;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    cursor: pointer;
}
.scroll a {
    display: block;
    -webkit-animation-name:fuwafuwa;
    -webkit-animation-duration:1.5s;
    -webkit-animation-iteration-count:infinite;
    /*-webkit-animation-direction:alternate;*/
    -webkit-animation-timing-function:ease;

    -moz-animation-name:fuwafuwa;
    -moz-animation-duration:1.5s;
    -moz-animation-iteration-count:infinite;
    /*-moz-animation-direction:alternate;*/
    -moz-animation-timing-function:ease;

    -webkit-transition: opacity 0.3s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    -ms-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}
.scroll a:hover {
    -webkit-opacity: 0.5;
    -moz-opacity: 0.5;
    -o-opacity: 0.5;
    filter: alpha(opacity=50);	/* IE lt 8 */
    -ms-filter: "alpha(opacity=50)"; /* IE 8 */
    opacity: 0.5;
}
.scroll a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 40px;
    width: 20px;
    height: 20px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

@-webkit-keyframes fuwafuwa {
    0% {-webkit-transform:translate(0, 0);}
    50% {-webkit-transform:translate(0, -10px);}
    100% {-webkit-transform:translate(0, 0);}
}
@-moz-keyframes fuwafuwa {
    0% {-moz-transform:translate(0, 0);}
    50% {-moz-transform:translate(0, -10px);}
    100% {-moz-transform:translate(0, 0);}
}

/*メニュー
----------------------------------------------------------------------------------*/
.menu
{ width:28px; height:22px; top:40px;  cursor:pointer; z-index:10000; position:relative; float:right;}
.menu1
{ width:28px; height:2px; background-color:#fff; position:absolute; top:0px; } 
.menu2
{ width:28px; height:2px; background-color:#fff; position:absolute; top:10px; } 
.menu3
{ width:28px; height:2px; background-color:#fff; position:absolute; top:20px; }
.menuclick1 { top:10px !important; background-color:#333;}
.menuclick2 { opacity:0;}
.menuclick3 { top:10px !important; background-color:#333;}


/*スライダー
----------------------------------------------------------------------------------*/
.slider {
    position: relative;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.slider li {
    height: 100vh;
    background-size: cover;
    background-position: center;
}


/*コンテンツ
----------------------------------------------------------------------------------*/
.reserve {
    overflow: hidden;
    padding: 16px 0;
    border-bottom: 1px solid #bfbfbf;
}
.reserve .wrapper {
    width: 1040px;
    margin: 0 auto;
}
.reserve .text {
    float: left;
    position: relative;
    top: 3px;
    line-height: 1.8;
}
.reserve .text h3 {
    color: #660066;
    font-size: 18px;
    font-weight: bold;
}
.reserve .button {
    float: right;
    margin: 10px 0;
}
.reserve .button div {
    display: inline-block;
    margin-left: 20px;
    text-align: center;
}
.reserve .button div a {
    position: relative;
    overflow: hidden;
    display: block;
    border: 1px solid #888;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    width: 210px;
    padding: 6px 0;
    color: #000;
    font-size: 16px;
}
.reserve .button div a:hover {
    color: #fff;
}
.reserve .button div a::before,
.reserve .button div a::after {
    position: absolute;
    z-index: -1;
    display: block;
    content: '';
}
.reserve .button div a,
.reserve .button div a::before,
.reserve .button div a::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .4s;
    transition: all .4s;
}
.reserve .button div a::after {
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
}
.reserve .button div a:hover::after {
    left: 0;
    background-color: #660066;
}

#content {
    position: relative;
    max-width: 1040px;
    margin: 0 auto 60px;
    padding-top: 50px;
    box-sizing: border-box;
}

h2 {
    color: #660066;
    font-size: 28px;
    margin-bottom: 70px;
}
h2 span {
    font-size: 11px;
    margin-left: 15px;
}

#content .facility {
    border-bottom: 1px solid #bfbfbf;
    padding-bottom: 100px;
    
}
#content .facility .block {
    overflow: hidden;
    width: 900px;
    margin: 0 auto;
    letter-spacing: -.40em;
}
#content .facility .block li {
    display: inline-block;
    width: 30%;
    margin-right: 20%;
    margin-bottom: 100px;
    text-align: center;
    letter-spacing: normal;
}
#content .facility .block li:nth-child(2n) {
    margin-right: 0;
}
#content .facility .block li img {
    width: 80%;
}
#content .facility .block li h4 {
    margin: 30px 0 10px;
    font-size: 18px;
}
#content .facility .block li p {
    font-size: 12px;
    line-height: 2;
    text-align: left;
}

#content .about {
    overflow: hidden;
    border-bottom: 1px solid #bfbfbf;
    margin: 80px auto 70px;
}
#content .about .blockL,
#content .about .blockR {
    overflow: hidden;
    margin-bottom: 120px;
}
#content .about .blockL .image {
    float: left;
    width: 50%;
}
#content .about .blockL .text {
    float: right;
    width: 45%;
}
#content .about .blockR .image {
    float: right;
    width: 50%;
}
#content .about .blockR .text {
    float: left;
    width: 45%;
}
#content .about .text h4 {
    font-size: 20px;
    margin-bottom: 20px;
}
#content .about .image img {
    width: 100%;
}
#content .about .text {
    line-height: 2;
}

#access .wrapper {
    width: 1040px;
    margin: 0 auto;
}
#access #mapCanvas {
    width: 100%;
    height: 446px;
}
#access .buttons {
    overflow: hidden;
    width: 1040px;
    margin: 45px auto 0;
}
#access .buttons li {
    position: relative;
    float: left;
    width: 31%;
    margin-right: 3.1%;
    border-top: 1px solid #e8e8e8;
    font-size: 15px;
}
#access .buttons li:last-child {
    margin-right: 0;
}
#access .buttons li:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: -1px;
    width: 0;
    height: 1px;
    background-color: #333;
    -webkit-transition: width 0.5s ease;
    -moz-transition: width 0.5s ease;
    -o-transition: width 0.5s ease;
    transition: width 0.5s ease;
}
#access .buttons li:hover:before {
    width: 100%;
}
#access .buttons li a {
    display: block;
    padding-top: 10px;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    transition: all 0.6s ease;
}
#access .buttons li a:hover {
    color: #660066;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
    width: 100%;
}
.ta1, .ta1 td, .ta1 th{
    border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
    line-height: 2;
}
/*テーブル内の右側*/
.ta1 td{
    padding: 10px;
}
td.kihon01{
    width: 20%
}
td.kihon02{
    width: 80%
}

.youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}
.youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}



div.facility li{
    width: 31%;float: left;margin: 1%
}



/*レスポンシブ
----------------------------------------------------------------------------------*/
@media screen and (max-width: 1039px){
    /*ヘッダー*/
    .header {
        width: 100%;
    }

    /*コンテンツ*/
    .reserve {
        padding: 16px 5%;
    }
    .reserve .wrapper {
        width: 100%;
    }
    .reserve
    div {
        margin-left: 5px;
    }
    .reserve .button div:first-child {
        margin-left: 0;
    }

    #content {
        padding-right: 5%;
        padding-left: 5%;
    }

    #content .facility .block {
        width: 100%;
    }
    #content .facility .block li {
        width: 47%;
        margin-right: 6%;
    }

    #content .about .blockL,
    #content .about .blockR {
        margin-bottom: 80px;
    }
    #content .about .blockL .image,
    #content .about .blockL .text,
    #content .about .blockR .image,
    #content .about .blockR .text {
        float: none;
        width: 100%;
    }
    #content .about .text {
        margin-top: 20px;
    }

    #access {
        width: 100%;
    }
    #access .wrapper, #access .buttons {
        width: 90%;
    }
    #access .wrapper h2 {
        margin-bottom: 40px;
    }	
}

@media screen and (max-width: 767px){
    /*コンテンツ*/
    .reserve .text,
    .reserve .button {
        float: none;
    }
    .reserve .button div {
        width: 48%;
        margin-left: 2%;
    }
    .reserve .button div a {
        width: 100%;
        font-size: 14px;
    }

    #content .facility .block {
        width: 100%;
    }

    #access .buttons li {
        float: none;
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }	
}


@media screen and (max-width: 480px){
    /*ヘッダー*/
    .header {
        height: 90vh;
    }
    .header h1 {
        text-align: center;
    }
    .header h1 img {
        width: 60%;
        height: auto;
    }
    .slider, .slider li {
        height: 90vh;
    }
    .scroll {
        bottom: 10px;
    }
    .scroll a {
        font-size: 12px;
    }	
    .scroll a::after {
        bottom: 20px;
        width: 22px;
        height: 22px;
    }

    /*コンテンツ*/
    .reserve .text {
        line-height: 1.6;
    }
    .reserve .text h3 {
        font-size: 16px;
    }

    h2 {
        font-size: 26px;
        margin-bottom: 40px;
    }

    #content .facility {
        padding-bottom: 30px;
    }
    #content .facility .block li {
        margin-bottom: 50px;
    }
    #content .facility .block li h4 {
        margin-top: 20px;
    }
    #content .facility .block li p {
        font-size: 11px;
        line-height: 1.9;
    }

    #content .about {
        margin-top: 60px;
    }
    #content .about .blockL,
    #content .about .blockR {
        margin-bottom: 50px;
    }

    #access .wrapper h2 {
        margin-bottom: 30px;
    }
    #access .buttons {
        margin-top: 40px;
    }
}