﻿/* prefixed by https://autoprefixer.github.io (PostCSS: v7.0.26, autoprefixer: v9.7.3) */

/* prefixed by https://autoprefixer.github.io (PostCSS: v7.0.26, autoprefixer: v9.7.3) */

html{
    scroll-behavior: smooth;
}
body{
    width: 100%;
    font-family: 'Noto Serif JP', serif;
}
img{
    max-width: 100%;
    max-height: 100%;
    vertical-align: bottom;
}

/*---pc or sp---*/

.pc{
    display: block;
}
.sp{
    display: none;
}
@media screen and (max-width:768px){
    .pc{
        display: none;
    }
    .sp{
        display: block;
    }
}

/*---loading---*/

.loading{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00afdd;
    z-index: 100;
    overflow: hidden;
}
.loading.fadeOut{
    -webkit-animation: fadeOut 1s;
            animation: fadeOut 1s;
}
.loading__logo{
    position: absolute;
    top: 45%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
}
.gauge-parent{
    position: absolute;
    top: 55%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255,0.2);
}
.loading__gauge{
    position: absolute;
    top: 55%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 0%;
    height: 1px;
    background-color: rgba(255, 255, 255,1);
    animation: loadingBar 1.3s linear;
}
@-webkit-keyframes fadeOut{
    0%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}
@keyframes fadeOut{
    0%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}
@keyframes loadingBar {
    0%{
        width: 0;
    }
    100%{
        width: 60%;
    }
}

/*---header---*/

header{
    width: 100%;
    height: 86px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: fixed;
    top: 0;
    z-index: 10;
    border-bottom: solid 1px #acb9c1;
    background-color: #e3f6fb;
    overflow: hidden;
}
.logo{
    padding: 0 0 0 4%;
    z-index: 5;
    transition: 0.5s;
}
.menu{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
    width: 40%;
    max-width: 400px;
}
.menu a{
    text-decoration: none;
    color: #333333;
    position: relative;
}
.menu a:hover::after{
    content: "･";
    font-size: 20px;
    position: absolute;
    left: 50%;
    top: 16px;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}
.menu a:hover{
    color: #00afdd;
}

.language{
    padding: 0 2% 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-size: 13px;
    font-weight: 500;
    max-width: 200px;
    width: 25%;
    /*多言語ページ完成までhidden*/
    visibility: visible;
}
.language a{
    text-decoration: none;
    color: #333333;
    position: relative;
}
.language a:hover::after{
    content: "･";
    font-size: 20px;
    position: absolute;
    left: 50%;
    top: 16px;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}
.language a:hover{
    color: #00afdd;
}
.bg {
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: -1;
}
.bg img {
    max-width: none;
    width: 100%;
}

@media screen and (max-width:768px){
    header{
        height: 60px;
    }
    .logo img{
        max-width: 180%;
    }
    .open{
        display: none;
        width: 40px;
    }
    .close{
        display: none;
        width: 40px;
    }
    .isActive{
        display: block;
    }
    .hamberger{
        margin: 0 4% 0 0;
        width: auto;
    }
    .container{
        padding: 150px 0 0 0;
        -webkit-transform: translateY(-120%);
            -ms-transform: translateY(-120%);
                transform: translateY(-120%);
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: #ffffff;
        z-index: 7;
        -webkit-transition: 0.5s linear;
        -o-transition: 0.5s linear;
        transition: 0.5s linear;
    }
    .menu{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        margin: 0 auto;
        font-size: 20px;
        width: 85%;
    }
    .menu__top{
        padding: 10px 0 10px 5%;
        border-bottom: solid 1px #e4e4e4;
        margin: 0 0 10px 0;
        position: relative;
    }
    .menu__top::after{
        content: "〉";
        position: absolute;
        right: 5%;
        color: #00afdd;
    }
    .menu__guide{
        padding: 10px 0 10px 5%;
        border-bottom: solid 1px #e4e4e4;
        margin: 0 0 10px 0;
        position: relative;
    }
    .menu__guide::after{
        content: "〉";
        position: absolute;
        right: 5%;
        color: #00afdd;
    }
    .menu__access{
        padding: 10px 0 10px 5%;
        border-bottom: solid 1px #e4e4e4;
        margin: 0 0 10px 0;
        position: relative;
    }
    .menu__access::after{
        content: "〉";
        position: absolute;
        right: 5%;
        color: #00afdd;
    }
    .menu a:hover::after{
        content: none;
    }
    .language{
        margin: 50px auto 0;
        width: 50%;
    }
    .bg {
        transform: translateY(5px);
    }
    .bg img {
        width: 1000px;
    }
}

/*---to-top---*/

.to-top{
    position: fixed;
    bottom: 50px;
    right: 50px;
    background: url(../img/icon_pagetop.png) no-repeat;
    background-position: center;
    background-color: #00afdd;
    width: 80px;
    height: 80px;
    border: solid 1px #ffffff;
    border-radius: 50%;
    z-index: 6;
    cursor: pointer;
}
@media screen and (max-width:768px){
    .to-top{
        right: 20px;
        width: 60px;
        height: 60px;
    }
}
@media only screen and (-webkit-min-device-pixel-ratio: 2){
    .to-top{
        background: url(../img/retina/icon_pagetop@2x.png) no-repeat;
        background-size: 30%;
        background-position: center;
        background-color: #00afdd;
    }
}

/*---kv---*/

.kv{
    padding: 145px 0 0;
}
.kv-logo{
    width: 517px;
    margin: 0 auto 3px;
    position: relative;
    z-index: 5;
}
.kv-slide{
    position: relative;
}
.kv-text {
  background: rgba(255,255,255,.85);
  color: #00afdd;
  font-size: 3.2rem;
  max-width: 750px;
  margin: auto;
  padding: 30px 10px;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
}
.kv-text span {
  position: absolute;
  top: 0;
  height: 100%;
}
.kv-right-arrow {
  right: 0;
}
.kv-left-arrow {
  left: 0;
}
.kv-text span::before,
.kv-text span::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}
.kv-right-arrow {
  right: 0;
}
.kv-left-arrow {
  left: 0;
}
.kv-text span::before,
.kv-text span::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}
.kv-right-arrow::before {
  top: 5px;
  right: 5px;
  border-width: 0 40px 40px 0;
  border-color: transparent #00afdd transparent transparent;
}
.kv-right-arrow::after {
  bottom: 5px;
  right: 5px;
  border-width: 0 0 40px 40px;
  border-color: transparent transparent #00afdd transparent;
}
.kv-left-arrow::before {
  top: 5px;
  left: 5px;
  border-width: 40px 40px 0 0;
  border-color: #00afdd transparent transparent transparent;
}
.kv-left-arrow::after {
  bottom: 5px;
  left: 5px;
  border-width: 40px 0 0 40px;
  border-color: transparent transparent transparent #00afdd;
}
@media screen and (max-width:768px){
    .kv-text{
      font-size: 1.8rem;
      padding: 10px 0;
      top: 40px;
      width: 96%;
    }
  .kv-right-arrow::before {
    top: 2px;
    right: 2px;
    border-width: 0 10px 10px 0;
  }
  .kv-right-arrow::after {
    bottom: 2px;
    right: 2px;
    border-width: 0 0 10px 10px;
  }
  .kv-left-arrow::before {
    top: 2px;
    left: 2px;
    border-width: 10px 10px 0 0;
  }
  .kv-left-arrow::after {
    bottom: 2px;
    left: 2px;
    border-width: 10px 0 0 10px;
  }
}
#kvTopBlueWave{
    width: 100%;
    height: 2.5vw;
    position: absolute;
    top: -1px;
    z-index: 2;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}
#kvTopWhiteWave{
    width: 100%;
    height: 2.5vw;
    position: absolute;
    top: -2px;
    z-index: 5;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}
#kvBottomBlueWave{
    width: 100%;
    height: 2.5vw;
    position: absolute;
    bottom: -1px;
    z-index: 2;
    -webkit-transform: scale(-1,1);
        -ms-transform: scale(-1,1);
            transform: scale(-1,1);
}
#kvBottomWhiteWave{
    width: 100%;
    height: 2.5vw;
    position: absolute;
    bottom: -1px;
    z-index: 5;
    -webkit-transform: scale(-1,1);
        -ms-transform: scale(-1,1);
            transform: scale(-1,1);
}
.swiper-container{
    width: 100%;
    height: 100%;
}
.swiper-wrapper{
    width: 100%;
}
.swiper-slide img{
    width: 100%;
    height: auto;
}
@media screen and (max-width:768px){
    .kv{
        padding: 90px 0 0;
    }
    .kv-logo{
        width: 70%;
    }
    #kvTopBlueWave{
        top: 0;
        height: 5vw;
    }
    #kvTopWhiteWave{
        height: 5vw;
    }
    #kvBottomBlueWave{
        height: 5vw;
        bottom: 5px;
    }
    #kvBottomWhiteWave{
        height: 5vw;
        bottom: 5px;
    }
}

/*---news---*/

.news{
    padding: 75px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: flex-start;
        -ms-flex-align: flex-start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #f0f5f5;
}
.news__title{
    opacity: 0;
    width: 266px;
    height: 112px;
    font-size: 33px;
    background: url(../img/h2_news_dot.png) no-repeat;
    background-size: cover;
    padding: 0 0 0 77px;
    font-weight: 300;
    color: #333333;
}
.news__title--small{
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2.6px;
}
.news__lists {
    width: 55%;
    max-width: 500px;
    opacity: 0;
    margin: 50px 0 0;
}
.news__lists.isShow {
    opacity: 1;
}
.news__list{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom: solid 1px #e0e3e5;
    font-weight: 300;
    width: 100%;
    height: auto;
    margin: 10px 0 0 5%;
}
.news__list:nth-of-type(1){
    margin: 0 0 0 5%;
}
.news__list--date{
    font-size: 12.5px;
}
.news__list--content{
    padding: 0 0 5px 25px;
    font-size: 16.5px;
    color: #00afdd;
}
.news__list--content a{
    text-decoration: none;
    color: #00afdd;
}
@media screen and (max-width:768px){
    .news{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        margin: 0;
        padding: 20px 0 0;
    }
    .news__title{
        padding: 0 0 0;
        margin: 0 auto;
        text-align: center;
        font-size: 40px;
        background-size: contain;
        display: inline;
        vertical-align: middle;
        box-sizing: border-box;
    }
    .news__title--small{
        font-size: 14px;
    }
    .news__lists {
        width: 85%;
        margin: 50px auto 0;
    }
    .news__list{
        max-width: none;
        margin: 10px 0 0 0;
    }
    .news__list:nth-of-type(1){
        margin: 0;
    }
    .news__list--date{
        padding: 0 0 0 5%;
    }
    .news__list--content{
        padding: 0 5% 3px 5%;
    }
}
@media screen and (max-width:480px){
    .news__title{
        font-size: 30px;
        width: 210px;
        height: auto;
    }
    .news__title--small{
        font-size: 11px;
    }
    .news__list--date{
        font-size: 10px;
    }
    .news__list--content{
        font-size: 14px;
    }
}
@media only screen and (-webkit-min-device-pixel-ratio: 2){
    .news__title{
        background-image: url(../img/retina/h2_news_dot@2x.png);
    }
}

/*---content---*/

.content{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 75px 0 50px;
    background-color: #f0f5f5;
}
.content__guide-wrapper{
    opacity: 0;
    position: relative;
    max-width: 460px;
    width: 45%;
    margin: 0 0 0 0;
}
.content__guide{
    position: relative;
    overflow: hidden;
    width: 85%;
    height: 40%;
    padding: 75% 0 0 0;
    border-radius: 59% 41% 40% 60% / 62% 51% 49% 38%;
    border: white 1px solid;
    z-index: 1;
    margin: 0 auto;
}
.content__guide--img{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
    -webkit-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
            transform-origin: 0 0;
}
.content__guide--img a::after{
    content: "";
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-transition-duration: 0.5s;
         -o-transition-duration: 0.5s;
            transition-duration: 0.5s;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.content__guide--img a:hover::after{
    background-color: rgba(0, 0, 0, 0.3);
    -webkit-transition-duration: 0.5s;
         -o-transition-duration: 0.5s;
            transition-duration: 0.5s;
}
.content__guide--img a img{
    -webkit-transition-duration: 0.5s;
         -o-transition-duration: 0.5s;
            transition-duration: 0.5s;
}
.content__guide--img a:hover img{
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-transition-duration: 0.5s;
         -o-transition-duration: 0.5s;
            transition-duration: 0.5s;
}
.content__guide--img a:hover .content__guide-text--btn{
    background-color: rgba(0, 0, 0, 0.6);
    -webkit-transition-duration: 0.5s;
         -o-transition-duration: 0.5s;
            transition-duration: 0.5s;
}
.content__guide-text{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
    z-index: 5;
    color: #ffffff;
    font-weight: 300;
    text-align: center;
    white-space: nowrap;
}
.content__guide-text--title{
    font-size: 30px;
}
.content__guide-text--en{
    font-size: 12px;
    margin: 0 0 20px;
}
.content__guide-text--btn{
    font-size: 13px;
    width: 230px;
    padding: 15px 0;
    border: solid 1px #ffffff;
    border-radius: 5px;
    -webkit-transition-duration: 0.5s;
         -o-transition-duration: 0.5s;
            transition-duration: 0.5s;
}
.content__guide-text--btn::after{
    content: "〉";
    float: right;
    padding: 0 20px 0 0;
}
.content__guide-bg-circle1{
    position: absolute;
    top: 0;
    left: 7.5%;
    -webkit-transform: translate(-20px,50px);
        -ms-transform: translate(-20px,50px);
            transform: translate(-20px,50px);
    width: 85%;
    padding: 75% 0 0 0;
    background-color: #44bcbc;
    border-radius: 80% 30% 50% 50%/50%;
    z-index: -1;
    opacity: 0.22;
    -webkit-animation: rotation 9s infinite linear;
            animation: rotation 9s infinite linear;
    backface-visibility:hidden;
    -webkit-backface-visibility:hidden;
}
.content__guide-bg-circle2{
    position: absolute;
    top: 0;
    left: 7.5%;
    -webkit-transform: translate(50px,-10px);
        -ms-transform: translate(50px,-10px);
            transform: translate(50px,-10px);
    width: 85%;
    padding: 75% 0 0 0;
    background-color: #44bcbc;
    border-radius: 40% 40% 50% 40%/30% 50% 50% 50%;
    z-index: -1;
    opacity: 0.22;
    -webkit-animation: rotation 10s infinite linear;
            animation: rotation 10s infinite linear;
    backface-visibility:hidden;
    -webkit-backface-visibility:hidden;
}
.content__access-wrapper{
    opacity: 0;
    position: relative;
    max-width: 460px;
    width: 45%;
    margin: 60px 0 0 0;
}
.content__access{
    position: relative;
    overflow: hidden;
    width: 85%;
    padding: 75% 0 0 0;
    border-radius: 48% 52% 55% 45% / 52% 63% 37% 48%;
    z-index: 1;
    margin: 0 auto;
}
.content__access--img{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
    z-index: 5;
    -webkit-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
            transform-origin: 0 0;
    z-index: 2;
}
.content__access--img a::after{
    content: "";
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-transition-duration: 0.5s;
         -o-transition-duration: 0.5s;
            transition-duration: 0.5s;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.content__access--img a:hover::after{
    background-color: rgba(0, 0, 0, 0.3);
    -webkit-transition-duration: 0.5s;
         -o-transition-duration: 0.5s;
            transition-duration: 0.5s;
}
.content__access--img a img{
    -webkit-transition-duration: 0.5s;
         -o-transition-duration: 0.5s;
            transition-duration: 0.5s;
}
.content__access--img a:hover img{
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-transition-duration: 0.5s;
         -o-transition-duration: 0.5s;
            transition-duration: 0.5s;
}
.content__access--img a:hover .content__access-text--btn{
    background-color: rgba(0, 0, 0, 0.6);
    -webkit-transition-duration: 0.5s;
         -o-transition-duration: 0.5s;
            transition-duration: 0.5s;
}
.content__access-text{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
    z-index: 5;
    color: #ffffff;
    font-weight: 300;
    text-align: center;
    white-space: nowrap;
}
.content__access-text--title{
    font-size: 30px;
}
.content__access-text--en{
    font-size: 12px;
    margin: 0 0 20px;
}
.content__access-text--btn{
    font-size: 13px;
    width: 230px;
    padding: 15px 0;
    border: solid 1px #ffffff;
    border-radius: 5px;
    -webkit-transition-duration: 0.5s;
         -o-transition-duration: 0.5s;
            transition-duration: 0.5s;
}
.content__access-text--btn::after{
    content: "〉";
    float: right;
    padding: 0 20px 0 0;
}
.content__access-bg-circle1{
    position: absolute;
    top: 0;
    left: 7.5%;
    width: 85%;
    padding: 75% 0 0 0;
    background-color: #44bcbc;
    border-radius: 80% 30% 50% 50%/50%;
    z-index: -1;
    opacity: 0.22;
    -webkit-animation: rotation 9s infinite linear;
            animation: rotation 9s infinite linear;
}
.content__access-bg-circle2{
    position: absolute;
    top: 0;
    left: 7.5%;
    width: 85%;
    padding: 75% 0 0 0;
    background-color: #44bcbc;
    border-radius: 50% 50% 50% 70%/50% 50% 70% 60%;
    z-index: -1;
    opacity: 0.22;
    -webkit-animation: rotation 10s infinite linear;
            animation: rotation 10s infinite linear;
}
@-webkit-keyframes rotation{
    0%{
        -webkit-transform:rotate(0);
                transform:rotate(0);
    }
    100%{
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}
@keyframes rotation{
    0%{
        -webkit-transform:rotate(0);
                transform:rotate(0);
    }
    100%{
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}
@-webkit-keyframes rotation1{
    0%{
        -webkit-transform:rotate(0) translate(-50%,-50%);
                transform:rotate(0) translate(-50%,-50%);
    }
    100%{
        -webkit-transform: rotate(-360deg) translate(-50%,-50%);
                transform: rotate(-360deg) translate(-50%,-50%);
    }
}
@keyframes rotation1{
    0%{
        -webkit-transform:rotate(0) translate(-50%,-50%);
                transform:rotate(0) translate(-50%,-50%);
    }
    100%{
        -webkit-transform: rotate(-360deg) translate(-50%,-50%);
                transform: rotate(-360deg) translate(-50%,-50%);
    }
}
@media screen and (max-width:768px){
    .content{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        padding: 70px 0 50px;
        overflow: hidden;
    }
    .content__guide-wrapper{
        width: 70%;
        margin: 0 20% 0 0;
    }
    .content__guide-text--title{
        font-size: 30px;
    }
    .content__guide-text--en{
        font-size: 15px;
    }
    .content__access-wrapper{
        width: 70%;
        margin: 5% 0 0 29%;
    }
    .content__access-text--title{
        font-size: 30px;
    }
    .content__access-text--en{
        font-size: 15px;
    }
    .content__access-text--btn{
        font-size: 13px;
        width: 230px;
        padding: 15px 0;
        border: solid 1px #ffffff;
        border-radius: 5px;
        -webkit-transition-duration: 0.5s;
             -o-transition-duration: 0.5s;
                transition-duration: 0.5s;
    }
}
@media screen and (max-width:480px){
    .content__guide-text--title{
        font-size: 20px;
    }
    .content__guide-text--en{
        font-size: 10px;
    }
    .content__guide-text--btn{
        width: 135px;
        font-size: 10px;
        padding: 10px;
    }
    .content__access-text--title{
        font-size: 20px;
    }
    .content__access-text--en{
        font-size: 10px;
    }
    .content__access-text--btn{
        width: 135px;
        font-size: 10px;
        padding: 10px;
    }
}

/*---about---*/

.about{
    padding: 210px 0;
    background-color: #00afdd;
    position: relative;
    overflow: hidden;
}
#aboutTopWave{
    width: 100%;
    height: 3vw;
    position: absolute;
    top: -1px;
    z-index: 2;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}
#aboutBottomWave{
    width: 100%;
    height: 3vw;
    position: absolute;
    bottom: -1px;
    z-index: 2;
    -webkit-transform: scale(-1,1);
        -ms-transform: scale(-1,1);
            transform: scale(-1,1);
}
.about-text{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
}
.about-text__title{
    opacity: 0;
    position: relative;
    min-width: 360px;
}
.about-text__bg{
    position: absolute;
    top: -35px;
    left: -50px;
    width: 167px;
    height: 146px;
    background: url(../img/h2_about_dot.png)no-repeat;
}
.about-text__title--top{
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2.6px;
    color: #ffffff;
    padding: 0 0 25px 0;
}
.about-text__title--main{
    font-size: 36px;
    font-weight: 300;
    color: #ffffff;
    margin: 0 0 0 -20px;
}
.about-text__description{
    opacity: 0;
    width: 465px;
    color: #ffffff;
    line-height: 2.4;
    font-size: 15px;
    font-weight: 300;
    margin: 0 10px;
}
.about-img{
    position: relative;
    padding: 20px;
    opacity: 0;
}
.about-img__wrapper{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
}
.isShow{
    -webkit-animation: bottomImg 1s both;
            animation: bottomImg 1s both;
}
.about-img__image1{
    width: 45%;
    margin: 0 0 5% 0;
}
.isShow .about-img__image1{
    -webkit-animation: topImg 0.5s 1.5s both;
            animation: topImg 0.5s 1.5s both;
}
.about-img__image2{
    width: 45%;
    margin: 5% 3% 0 0;
}
.isShow .about-img__image2{
    -webkit-animation: topImg 0.5s 1s both;
            animation: topImg 0.5s 1s both;
}
.about-img__image3{
    width: 45%;
    margin: 0 0 5% 3%;
}
.isShow .about-img__image3{
    -webkit-animation: bottomImg 0.5s 1s both;
            animation: bottomImg 0.5s 1s both;
}
.about-img__image4{
    width: 45%;
    margin: 5% 0 0 0;
}
.isShow .about-img__image4{
    -webkit-animation: bottomImg 0.5s 1.5s both;
            animation: bottomImg 0.5s 1.5s both;
}
.about-logo{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
    z-index: 3;
    max-width: 850px;
    width: 80%;
    text-align: center;
}
.isShow .about-logo{
    -webkit-animation: logoImg 0.5s 2s both;
            animation: logoImg 0.5s 2s both;
}
@-webkit-keyframes topImg{
    0%{
        opacity: 0;
        -webkit-transform: translateY(-20px);
                transform: translateY(-20px);
    }
    100%{
        opacity: 1;
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
}
@keyframes topImg{
    0%{
        opacity: 0;
        -webkit-transform: translateY(-20px);
                transform: translateY(-20px);
    }
    100%{
        opacity: 1;
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
}
@-webkit-keyframes bottomImg{
    0%{
        opacity: 0;
        -webkit-transform: translateY(20px);
                transform: translateY(20px);
    }100%{
        opacity: 1;
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
}
@keyframes bottomImg{
    0%{
        opacity: 0;
        -webkit-transform: translateY(20px);
                transform: translateY(20px);
    }100%{
        opacity: 1;
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
}
@-webkit-keyframes logoImg{
    0%{
        opacity: 0;
        -webkit-transform: translate(-50%,calc(-50% - 20px));
                transform: translate(-50%,calc(-50% - 20px));
    }
    100%{
        opacity: 1;
        -webkit-transform:translate(-50%,-50%);
                transform:translate(-50%,-50%);
    }
}
@keyframes logoImg{
    0%{
        opacity: 0;
        -webkit-transform: translate(-50%,calc(-50% - 20px));
                transform: translate(-50%,calc(-50% - 20px));
    }
    100%{
        opacity: 1;
        -webkit-transform:translate(-50%,-50%);
                transform:translate(-50%,-50%);
    }
}
@media screen and (max-width:768px){
    .about{
        padding: 100px 0 75px 0;
    }
    #aboutTopWave{
        height: 5vw;
        top: -5px;
    }
    #aboutBottomWave{
        height: 5vw;
    }
    .about-text{
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .about-text__title{
        margin: 0 0 20px;
    }
    .about-text__title--top{
        text-align: center;
    }
    .about-text__title--main{
        font-size: 30px;
        text-align: center;
    }
    .about-text__description{
        width: auto;
        font-size: 12px;
        max-width: 380px;
        line-height: 1.92;
    }
    .about-text__bg{
        left: 50%;
        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%);
        width: 167px;
        height: 146px;
        background: url(../img/h2_about_dot.png)no-repeat;
    }
}
@media only screen and (-webkit-min-device-pixel-ratio: 2){
    .about-text__bg{
        background: url(../img/retina/h2_news_dot@2x.png) cover;
    }
}

/*---footer---*/

footer{
    padding: 50px 0 20px;
    text-align: center;
}
.footer-btn-wrapper{
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.footer-btn{
    border: solid 1px rgba(51, 51, 51,0.2);
    border-radius: 5px;
    width: 310px;
    height: 75px;
    margin: 0 15px;
    text-align: center;
    position: relative;
}
.footer-btn__home{
    padding: 21.5px 0;
}
.footer-btn__web{
    padding: 11.75px 0;
}
.footer-btn::after{
    content: "";
    background: url(../img/icon_window.png) no-repeat;
    position: absolute;
    width: 12px;
    height: 12px;
    top: 50%;
    right: 5%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}
.footer-btn-wrapper a{
    text-decoration: none;
}
.footer-logo{
    width: 213px;
    margin: 70px auto 50px;
}
.copyright{
    text-align: center;
    margin: 0 auto;
    color: #acacac;
    font-size: 10px;
}
@media screen and (max-width:768px){
    .footer-btn-wrapper{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .footer-btn{
        margin: 5px 0;
    }
    .footer-btn__home{
        margin: 0 0 0 28px;
        width: 80%;
    }
    .footer-btn__web{
        margin: 0 0 0 60px;
        width: 60%;
    }
    .footer-logo{
        margin: 70px auto 10px;
    }
}
@media only screen and (-webkit-min-device-pixel-ratio: 2){
    .footer-btn::after{
        background: url(../img/retina/icon_window@2x.png);
        background-size: contain;
    }
}

.news{
	display:none;
}

@media screen and (max-width: 768px) {
    #kvBottomWhiteWave {
        bottom: -1px;
    }
}