@charset "UTF-8";
/* common
----------------- */
img{
    max-width: 100%;
    height:auto;
}
html *{
    box-sizing: border-box;
}
.position-relative{
    position:relative;
}
.pc{
    display:block;
}
.sp{
    display:none;
}
@media screen and (max-width:640px){
    .pc{
        display:none;
    }
    .sp{
        display:block;
    }
}
.pc-tab{
    display:block;
}
@media screen and (max-width:1024px){
    .pc-tab{
        display:none;
    }
}
@media screen and (min-width:1025px){
    .tab{
        display:none;
    }
}
@media screen and (max-width:1024px) and (min-width:641px){
    .tab{
        display:block;
    }
}
@media screen and (max-width:640px){
    .tab{
        display:none;
    }
}
@media screen and (min-width:640px){
    .inner1366{
        width:1366px;
        margin:0 auto;
        max-width: 100%;
        overflow: hidden;
    }
}
.inner950{
    width:950px;
    margin:0 auto;
    max-width:100%;
}
.inner1100{
    width:1100px;
    margin:0 auto;
    max-width:100%;
}
.inner860{
    width:860px;
    margin:0 auto;
    max-width: 100%;
}
.flex{
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
}
@media screen and (max-width:640px){
    .flex{
        display:block;
    }
    .flex-sp{
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
    }
}
.jcsb{
    -webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.wrap{
    -ms-flex-wrap: wrap;
  	flex-wrap: wrap;
}
.jcc{
    -webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.aic{
    -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.tc{
    text-align:center;
}
@media screen and (max-width:640px){
    .tc-sp{
        text-align:center;
    }
}
@font-face {
    font-family: 'axis-light';
    src: url('../font/AxisStd-Light.otf') format('opentype');
}
@font-face {
    font-family: 'axis-extralight';
    src: url('../font/AxisStd-ExtraLight.otf') format('opentype');
}
.font-light{
    font-family: 'axis-light',sans-serif;
}
.font-extralight{
    font-family: 'axis-extralight',sans-serif;
}
button{
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}
.gray-back{
    background-color:#f9f9f9;
}
@media screen and (max-width:640px){
    .plr20{
        padding-left:20px;
        padding-right:20px;
    }
}
/* header
----------------- */
/* .header{
    padding-bottom:150px;
} */
.header-first{
    padding:50px;
}
.top-h1-logo-img{
    width:149px;
    height:54px;
}
.suty{
    position:absolute;
    top:55px;
    left:20%;
}
@media screen and (max-width:768px){
    .suty{
        left:29%;
    }
}
.suty-img{
    width:257px;
    height:53px;
}
.header-nav-wrapper{
    position:absolute;
    top:55px;
    right:30px;
    width:620px;
}
.header-nav-wrapper nav ul li{
    flex-basis:10%;
}
.header-nav-wrapper nav ul li:last-of-type{
    flex-basis:23%;
}
.header-nav-wrapper nav ul li a{
    font-size : 12px;
    line-height:12px;
    letter-spacing : 1.68px;
    color : #333333;
    transition:all 0.5s linear;
}
.header-nav-wrapper nav ul li a:hover{
    opacity:0.5;
}
.header-nav-wrapper nav ul li a button{
    display:inline-block;
    border:1px solid #333333;
    padding:8px 0;
    width:100%;
    transform:translateY(-10px);
    transition:all 0.5s linear;
}
.header-nav-wrapper nav ul li a button:hover{
    background-color:#333333;
    color:white;
}
.key-slide-wrapper{
    width:92%;
    height:593px;
    margin-left:auto;
    max-width:100%;
    overflow: hidden;
    position: relative;
}
.key-slide-wrapper a{
    position:absolute;
    top:40%;
    right:1%;
    width:30px;
    height:120px;
    display:block;
    z-index: 100;
}
.key-slide-img{
    opacity: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    animation-name: three-slide;
    animation-duration:30s;
    animation-timing-function: linear;
    animation-delay:0s;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-fill-mode:none;
}
.key-slide-img.second{
    animation-delay: 10s;
}
.key-slide-img.third{
    animation-delay: 20s;
}
@keyframes three-slide {
    0% {
      opacity: 0;
    }
    10% {
      opacity: 1;
    }
    35%{
      opacity: 1;
    }
    60% {
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
}
.key-nav-wrapper{
    position:absolute;
    top:50%;
    left:4%;
    transform:translateY(-50%);
}
.key-nav-wrapper span{
    display:inline-block;
    width:4px;
    height:4px;
    background-color:#dcdcdc;
    animation-name: three-slide-nav;
    animation-duration:30s;
    animation-timing-function: linear;
    animation-delay:0s;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-fill-mode:none;
}
.key-nav-wrapper span.second{
    animation-delay:10s;
}
.key-nav-wrapper span.third{
    animation-delay:20s;
}
@keyframes three-slide-nav {
    0% {
        background-color: #000000;
    }
    32%{
        background-color:#000000;
    }
    33%{
        background-color:#dcdcdc;
    }
    100%{
        background-color:#dcdcdc;
    }
}
/* fixed-nav */
.fixed-nav-wrapper{
    background-color:rgba(255,255,255,0.97);
    width:100%;
    height:76px;
    padding:20px 50px;
    position:fixed;
    top:0;
    left:0;
    z-index: 100;
}
.fixed-nav-wrapper .top-h1-logo-img{
    width:98px;
    height:35px;
}
.fixed-nav-wrapper nav{
    position:absolute;
    top:65%;
    right:50px;
    transform:translateY(-50%);
    width:670px;
}
.fixed-nav-wrapper nav ul li a{
    font-size : 12px;
    line-height:12px;
    letter-spacing : 1.68px;
    color : #333333;
}
.fixed-nav-wrapper nav ul li{
    flex-basis:10%;
}
.fixed-nav-wrapper nav ul li:last-of-type{
    flex-basis:23%;
}
.fixed-nav-wrapper nav ul li a button{
    display:inline-block;
    border:1px solid #333333;
    padding:8px 0;
    width:100%;
    transform:translateY(-10px);
    transition:all 0.5s linear;
}
.fixed-nav-wrapper nav ul li a button:hover{
    background-color:#333333;
    color:white;
}
/* hamburger tab */
#btn-trigger-tab.active span:nth-of-type(1) {
    -webkit-transform: translateY(12px) rotate(-45deg);
    transform: translateY(12px) rotate(-45deg);
}
#btn-trigger-tab.active span:nth-of-type(2) {
    opacity: 0;
}
#btn-trigger-tab.active span:nth-of-type(3) {
    -webkit-transform: translateY(-12px) rotate(45deg);
    transform: translateY(-12px) rotate(45deg);
}
.btn-trigger.tab{
    top:30px;
    right:30px;
}
.ham-open-wrapper-tab{
    width:100vw;
    height:100vh;
    position:fixed;
    top:0;
    left:0;
    display: none;
    background-color:rgba(0,0,0,0.5);
    z-index: 1000;
}
.ham-open-main-tab{
    background-color:#fafafa;
    width:50%;
    height:60%;
    margin-left:auto;
    padding:110px 40px 0 40px;
}
.ham-open-wrapper-tab nav ul li{
    margin-bottom:40px;
}
.ham-open-wrappe-tabr nav ul li:last-of-type{
    margin-bottom:60px;
}
.ham-open-main-tab nav ul li a{
    font-size : 20px;
    line-height : 20px;
    letter-spacing : 2px;
    color : #333333;
    font-weight: bold;
    padding-left:30px;
    position:relative;
}
.ham-open-main-tab nav ul li a::before{
    content:"";
    width:20px;
    height:1;
    border-top:1px solid #333333;
    position:absolute;
    top:50%;
    left:0;
    transform:translateY(-50%);
}
.ham-open-button{
    margin-bottom:25px;
}
.ham-open-button a{
    display:block;
    width:100%;
    height:50px;
}
.ham-open-button a button{
    width:100%;
    height:50px;
    border:1px solid #333333;
    font-size : 20px;
    line-height : 50px;
    letter-spacing : 2px;
    color : #333333;
    font-weight: bold;
}
.ham-insta-img{
    width:45px;
    height:45px;
}
/* header-sp */
.header-sp-main{
    padding:20px;
}
.top-h1-logo-img-sp{
    width:35%;
    height:auto;
}
.suty-sp{
    position:absolute;
    top:50%;
    left:40%;
    transform:translateY(-50%);
}
.suty-img-sp{
    width:50%;
    height:auto;
}
.header-sp .key-slide-wrapper{
    width:95%;
    height:540px;
    margin-left:auto;
    max-width:100%;
    overflow: hidden;
    position: relative;
}
/* fixed nav sp */
.fixed-nav-sp-wrapper{
    width:100%;
    height:60px;
    background-color:rgba(255,255,255,0.97);
    position:fixed;
    top:0;
    left:0;
    padding:20px 20px 50px;
    z-index:999;
}
/* hamburger */
.btn-trigger {
    position: fixed;
    top:20px;
    right:20px;
    width: 30px;
    height: 27px;
    cursor: pointer;
    z-index:9980;
  }
  .btn-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #333333;
    border-radius: 4px;
  }
  .btn-trigger, .btn-trigger span {
    display: inline-block;
    transition: all .5s;
    box-sizing: border-box;
  }
  .btn-trigger span:nth-of-type(1) {
    top: 0;
  }
  .btn-trigger span:nth-of-type(2) {
    top: 12px;
  }
  .btn-trigger span:nth-of-type(3) {
    bottom: 0;
  }
#btn-trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(12px) rotate(-45deg);
    transform: translateY(12px) rotate(-45deg);
}
#btn-trigger.active span:nth-of-type(2) {
    opacity: 0;
}
#btn-trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-12px) rotate(45deg);
    transform: translateY(-12px) rotate(45deg);
}
.ham-open-wrapper{
    width:100vw;
    height:100vh;
    position:fixed;
    top:0;
    left:0;
    display: none;
    background-color:rgba(0,0,0,0.5);
    z-index: 1000;
}
.ham-open-main{
    background-color:#fafafa;
    width:80%;
    height:100%;
    margin-left:auto;
    padding:110px 40px 0 40px;
}
.ham-open-wrapper nav ul li{
    margin-bottom:40px;
}
.ham-open-wrapper nav ul li:last-of-type{
    margin-bottom:60px;
}
.ham-open-main nav ul li a{
    font-size : 20px;
    line-height : 20px;
    letter-spacing : 2px;
    color : #333333;
    font-weight: bold;
    padding-left:30px;
    position:relative;
}
.ham-open-main nav ul li a::before{
    content:"";
    width:20px;
    height:1;
    border-top:1px solid #333333;
    position:absolute;
    top:50%;
    left:0;
    transform:translateY(-50%);
}
.ham-open-button{
    margin-bottom:25px;
}
.ham-open-button a{
    display:block;
    width:100%;
    height:50px;
}
.ham-open-button a button{
    width:100%;
    height:50px;
    border:1px solid #333333;
    font-size : 20px;
    line-height : 50px;
    letter-spacing : 2px;
    color : #333333;
    font-weight: bold;
}
.ham-insta-img{
    width:45px;
    height:45px;
}
/* main
----------------------------- */
/* concept-sec */
.concept-sec{
    padding-top:150px;
}
@media screen and (max-width:640px){
    .concept-sec{
        padding-top:80px;
    }
}
.three-h2{
    font-size : 16px;
    line-height:16px;
    letter-spacing : 2.56px;
    color : #333333;
    padding-left:150px;
    position:relative;
}
.three-h2::before{
    content:"";
    width:140px;
    height:1px;
    border-top:1px solid #333333;
    position:absolute;
    top:50%;
    left:0;
    transform:translateY(-50%);
}
.concept-sec .three-h2{
    margin-bottom:60px;
}
@media screen and (max-width:640px){
    .three-h2{
        font-size : 13px;
        line-height:13px;
        letter-spacing : 1px;
        padding-left:40px;
    }
    .three-h2::before{
        width:30px;
    }
    .concept-sec .three-h2{
        margin-bottom:30px;
    }
}
.concept-sec h3{
    font-size : 26px;
    line-height : 40px;
    letter-spacing : 4.68px;
    color : #333333;
    margin-bottom:40px;
}
.concept-sec h3 span{
    display:block;
    font-size : 10px;
    line-height:10px;
    letter-spacing : 1.4px;
    color : rgba(51, 51, 51,0.5);
    margin-top:15px;
}
@media screen and (max-width:768px){
    .concept-sec h3{
        font-size : 22px;
        line-height : 30px;
        letter-spacing : 1px;
    }
    .concept-sec h3 span{
        display:block;
        font-size : 8px;
        line-height:8px;
        letter-spacing : 1px;
    }
}
@media screen and (max-width:640px){
    .concept-sec h3{
        font-size : 20px;
        line-height : 30px;
        letter-spacing : 1px;
        margin-bottom:30px;
    }
    .concept-sec h3 span{
        display:block;
        font-size : 8px;
        line-height:8px;
        letter-spacing : 1px;
        margin-top:10px;
    }
}
.normal-text{
    font-size : 14px;
    line-height : 34px;
    letter-spacing : 1.26px;
    color : #333333;
}
.concept-sec .normal-text{
    width:460px;
    margin-bottom:40px;
}
@media screen and (max-width:768px){
    .normal-text{
        font-size : 13px;
        line-height : 25px;
        letter-spacing : 1px;
    }
    .concept-sec .normal-text{
        width:300px;
        margin-bottom:30px;
    }
}
@media screen and (max-width:640px){
    .normal-text{
        font-size : 12px;
        line-height : 20px;
        letter-spacing : 1px;
        padding:0 10px;
    }
    .concept-sec .normal-text{
        width:100%;
        margin-bottom:20px;
    }
}
.video{
    width:570px;
    height:333px;
    padding:20px;
    background-color:#f9f9f9;
    position:relative;
    left:-50px;
}
.video iframe{
    width:100%;
    height:100%;
}
.video a{
    display: block;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}
@media screen and (max-width:640px){
    .video{
        width:100%;
        height:200px;
        padding:unset;
        background-color:unset;
        position:static;
    }
}
.cs-img-wrapper{
    position:absolute;
    top:-100px;
    right:0;
    z-index:-1;
}
@media screen and (max-width:640px){
    .cs-img-wrapper{
        position:static;
        margin-bottom:20px;
    }
}
/* staff-sec */
.staff-sec{
    padding-top:150px;
    padding-bottom:150px;
}
.staff-sec .three-h2{
    margin-bottom:80px;
}
@media screen and (max-width:640px){
    .staff-sec{
        padding-top:100px;
        padding-bottom:60px;
    }
    .staff-sec .three-h2{
        margin-bottom:30px;
    }
}
.member-wrapper{
    width:730px;
    margin-right:auto;
    padding:15px;
    background-color: #f9f9f9;
}
.member-flex-item{
    flex-basis:46%;
}
.member-face{
    margin-bottom:30px;
}
.member-name{
    font-size : 28px;
    line-height : 28px;
    letter-spacing : 11.76px;
    color : #333333;
    position:relative;
    margin-bottom:20px;
}
.member-name span{
    position:absolute;
    bottom:0;
    right:0;
    font-size : 10px;
    line-height : 10px;
    letter-spacing : 3.2px;
    color : #333333;
}
.member-profile{
    font-size : 14px;
    line-height : 22px;
    letter-spacing : 1.96px;
    color : #333333;
}
@media screen and (max-width:640px){
    .member-wrapper{
        width:100%;
        margin-right:unset;
        padding:15px;
    }
    .member-flex-item.first{
        margin-bottom:60px;
    }
    .member-flex-item.second{
        margin-bottom:30px;
    }
    .member-face{
        margin-bottom:20px;
    }
    .member-name{
        font-size : 23px;
        line-height : 23px;
        letter-spacing : 4px;
    }
    .member-profile{
        font-size : 12px;
        line-height : 20px;
        letter-spacing : 1px;
    }
}
.ss-img-wrapper{
    top:150px;
    position:absolute;
    right:0;
    z-index: -1;
}
@media screen and (max-width:640px){
    .ss-img-wrapper{
        top:95px;
    }
}
.staff-sec .link-text{
    position:absolute;
    top:320px;
    right:10%;
}
.staff-sec .link-text a:hover{
    opacity:0.5;
    text-decoration: underline;
}
.staff-sec .link-text a:hover::before{
    opacity:0.5;
}
.link-text a{
    font-family: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size : 16px;
    line-height : 16px;
    letter-spacing : 4.48px;
    color : #333333;
    position:relative;
    transition:all 0.5s linear;
}
.link-text a::before{
    content: "";
    width:16px;
    height:16px;
    background:url(../img/link-before.svg) no-repeat;
    background-position: center;
    background-size: cover;
    position:absolute;
    top:50%;
    left:-25px;
    transform: translateY(-50%);
    transition:all 0.5s linear;
}
@media screen and (max-width:640px){
    .staff-sec .link-text{
        position:static;
    }
    .link-text a{
        font-size : 13px;
        line-height : 13px;
        letter-spacing : 1px;
    }
    .link-text a::before{
        content: "";
        width:16px;
        height:16px;
        background:url(../img/link-before.svg) no-repeat;
        background-position: center;
        background-size: cover;
        position:absolute;
        top:50%;
        left:-25px;
        transform: translateY(-50%);
        transition:all 0.5s linear;
    }
}
/* menu-sec */
.menu-sec{
    margin-bottom:100px;
    background:url(../img/menu-sec-bg@2x-80.jpg) no-repeat;
    background-position: center top;
    background-size:cover;
    padding:100px 0;
}
@media screen and (min-width:1367px){
    .menu-sec{
        background:url(../img/menu-sec-bg-big@2x-80.jpg) no-repeat;
        background-position: center top;
        background-size:cover;
    }
}
@media screen and (max-width:640px){
    .menu-sec{
        margin-bottom:80px;
        background:url(../img/sp/menu-sec-bg-sp@2x-80.jpg) no-repeat;
        background-position: center top;
        background-size:cover;
        padding:80px 0;
    }
}
.menu-sec .three-h2{
    margin-bottom:70px;
    color:#ffffff;
}
.menu-sec .three-h2::before{
    border-color: #ffffff;
}
.menu-flex-container{
    margin-bottom:60px;
}
.menu-flex-item{
    flex-basis:47%;
    margin-bottom:50px;
    padding-bottom:8px;
    border-bottom:1px solid #969696;
    font-size : 20px;
    line-height : 20px;
    letter-spacing : 1.2px;
    color : #FFFFFF;
    position:relative;
}
.menu-flex-item:nth-of-type(5),.menu-flex-item:last-of-type{
    margin-bottom:0;
}
.menu-flex-item .first1,.menu-flex-item .first2{
    font-size : 12px;
    line-height: 12px;
    color : rgb(255, 255, 255,0.8);
}
.menu-flex-item .second{
    font-size : 22px;
    line-height : 22px;
    letter-spacing : 0.44px;
    color : #FFFFFF;
}
.menu-flex-item .first1{
    position:absolute;
    bottom:8px;
    left:90px;
}
.menu-flex-item .first2{
    position:absolute;
    bottom:8px;
    left:140px;
}
.menu-flex-item .second{
    position:absolute;
    bottom:8px;
    right:0;
}
@media screen and (max-width:768px){
    .menu-flex-container{
        padding:0 20px;
    }
    .menu-flex-item{
        font-size : 16px;
        line-height : 16px;
        letter-spacing : 1px;
    }
    .menu-flex-item .first1,.menu-flex-item .first2{
        font-size : 10px;
        line-height: 10px;
    }
    .menu-flex-item .second{
        font-size : 16px;
        line-height : 16px;
    }
    .menu-flex-item .first1{
        left:80px;
    }
    .menu-flex-item .first2{
        left:120px;
    }
}
@media screen and (max-width:640px){
    .menu-flex-container{
        margin-bottom:40px;
        padding:0 30px;
    }
    .menu-flex-item{
        flex-basis:47%;
        margin-bottom:50px;
        padding-bottom:5px;
        font-size : 16px;
        line-height : 16px;
        letter-spacing : 1px;
    }
    .menu-flex-item:nth-of-type(5){
        margin-bottom:50px;
    }
    .menu-flex-item span{
        display:inline-block;
    }
    .menu-flex-item .first1,.menu-flex-item .first2{
        font-size : 8px;
        line-height: 8px;
        position:static;
        padding-left:5px;
    }
    .menu-flex-item .second{
        font-size : 16px;
        line-height : 16px;
    }
}
.more-menu a{
    display: inline-block;
    width:280px;
    height:50px;
}
.more-menu a button{
    display:inline-block;
    width:280px;
    height:50px;
    padding:20px 0;
    border:1px solid #ffffff;
    font-size : 14px;
    line-height : 14px;
    letter-spacing : 2.52px;
    color : #FFFFFF;
    position:relative;
    transition:all 0.5s linear;
}
.more-menu a button::after{
    content:">";
    position:absolute;
    top:53%;
    right:20px;
    transform:translateY(-50%);
    color:#ffffff;
    transition:all 0.5s linear;
}
.more-menu a button:hover{
    background-color:#ffffff;
    color:#808080;
}
.more-menu a button:hover::after{
    color:#808080;
}
@media screen and (max-width:640px){
    .more-menu a{
        display: inline-block;
        width:90%;
        height:40px;
    }
    .more-menu a button{
        width:90%;
        height:40px;
        padding:10px 0;
        font-size : 12px;
        line-height : 12px;
        letter-spacing : 1px;
    }
}
.menu-sec .link-text{
    position:absolute;
    top:100px;
    right:8%;
}
.menu-sec .link-text a::before{
    background:url(../img/link-before-white.svg) no-repeat;
}
.menu-sec .link-text a{
    color:#ffffff;
}
.menu-sec .link-text a:hover{
    color:#333333;
    text-decoration: underline;
}
.menu-sec .link-text a:hover::before{
    background:url(../img/link-before.svg) no-repeat;
}
@media screen and (max-width:640px){
    .menu-sec .link-text{
        position:static;
        margin-bottom:50px;
    }
}
/* access sec */
.access-sec{
    margin-bottom:60px;
}
.as-main-wrapper{
    width:86%;
    margin-right:auto;
    background-color:#ffffff;
    padding:80px 0;
}
@media screen and (max-width:768px){
    .as-main-wrapper{
        padding:80px 0 0 10px;
    }
}
@media screen and (max-width:640px){
    .as-main-wrapper{
        width:95%;
        padding:60px 0;
    }
}
.access-sec .three-h2{
    margin-bottom:80px;
}
@media screen and (max-width:640px){
    .access-sec .three-h2{
        margin-bottom:30px;
    }
}
.access-sec .top-h1-logo-img{
    width:171px;
    height:69px;
    margin-bottom:50px;
}
@media screen and (max-width:640px){
    .access-sec .top-h1-logo-img{
        width:40%;
        height:auto;
        margin-bottom:320px;
    }
}
.access-table{
    margin-bottom:30px;
}
.access-table tr{
    margin-bottom:20px;
    display: block;
}
.access-table tr:last-of-type{
    margin-bottom:0;
}
.access-table th{
    font-size : 14px;
    line-height : 14px;
    letter-spacing : 1.12px;
    color : #333333;
    font-weight: bold;
    width:90px;
    text-align: left;
}
.access-table td{
    font-size : 14px;
    line-height : 20px;
    letter-spacing : 1.4px;
    color : #333333;
    padding-left:20px;
    border-left:1px solid rgba(51, 51, 51, 0.2);;
}
.access-table td a{
    color:#333333;
    text-decoration: underline;
}
@media screen and (max-width:640px){
    .access-table{
        padding:0 10px 0 30px;
        display: block;
    }
    .access-table tr{
        margin-bottom:15px;
    }
    .access-table th{
        font-size : 12px;
        line-height : 12px;
        letter-spacing : 1px;
        color : #333333;
        width:65px;
    }
    .access-table td{
        font-size : 12px;
        line-height : 18px;
        letter-spacing : 1px;
        padding-left:10px;
    }
}
.instagram{
    margin-bottom:30px;
}
.instagram a{
    display: inline-block;
    font-size : 14px;
    line-height : 14px;
    letter-spacing : 1.12px;
    color : #333333;
    font-weight: bold;
    position:relative;
    padding-left:20px;
    transition:all 0.5s linear;
}
.instagram a::before{
    content:"";
    width:11px;
    height:12px;
    background:url(../img/insta-icon.svg) no-repeat;
    background-position:center;
    background-size:cover;
    position:absolute;
    top:50%;
    left:0;
    transform:translateY(-50%);
    transition:all 0.5s linear;
}
.instagram a:hover{
    opacity:0.5;
}
.instagram a:hover::before{
    opacity:0.5;
}
@media screen and (max-width:640px){
    .instagram a{
        display: inline-block;
        font-size : 12px;
        line-height : 12px;
        letter-spacing : 1px;
    }
}
.access-button a{
    display:block;
    width:374px;
    height:49px;
}
.access-button a button{
    display: inline-block;
    width:374px;
    height:49px;
    border:1px solid #333333;
    font-size : 14px;
    line-height : 49px;
    letter-spacing : 1.12px;
    font-weight: bold;
    color : #333333;
    position: relative;
    transition: all 0.5s linear;
}
.access-button a button::after{
    content:">";
    position:absolute;
    top:53%;
    right:20px;
    transform:translateY(-50%);
    transition: all 0.5s linear;
}
.access-button.first{
    margin-bottom:15px;
}
.access-button a button:hover{
    color:#ffffff;
    background-color:#333333;
}
.access-button a button:hover::after{
    color:#ffffff;
}
@media screen and (max-width:640px){
    .access-button a{
        display: inline-block;
        width:90%;
        height:40px;
    }
    .access-button a button{
        display: inline-block;
        width:90%;
        height:40px;
        font-size : 12px;
        line-height : 40px;
        letter-spacing : 1px;
        right:-10px;
    }
    .access-button.first{
        margin-bottom:10px;
    }
}
.google-map{
    width:56%;
    height:71%;
    position:absolute;
    top:138px;
    right:0;
}
.google-map iframe{
    width:100%;
    height:100%;
}
@media screen and (max-width:768px){
    .google-map{
        width:48%;
    }
}
@media screen and (max-width:640px){
    .google-map{
        width:100%;
        height:30%;
        top:20%;
        left:0;
        right:unset;
    }
}
/* aside loop
------------------- */
.loop-wrap{
    width: 100vw;
    height:186px;
    overflow: hidden;
}
.loop-wrap img{
    width: auto;
    height:100%;
    max-width: unset;
}
.loop-wrap img:first-child{
    animation-name:loop;
    animation-duration: 150s;
    animation-delay:-100s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
.loop-wrap img:nth-child(2){
    animation-name:loop2;
    animation-duration: 150s;
    animation-delay:-50s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
.loop-wrap img:last-child{
    animation-name:loop3;
    animation-duration: 150s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
@keyframes loop {
    0% {
      transform: translateX(200%);
    }
    to {
      transform: translateX(-100%);
    }
  }
  
  @keyframes loop2 {
    0% {
      transform: translateX(100%);
    }
    to {
      transform: translateX(-200%);
    }
  }
  @keyframes loop3 {
    0% {
      transform: translateX(0);
    }
    to {
      transform: translateX(-300%);
    }
  }
/* .loop-wrap img:first-child{
    animation-name:loop;
    animation-duration: 100s;
    animation-delay:-50s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
.loop-wrap img:last-child{
    animation-name:loop2;
    animation-duration: 100s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
@keyframes loop {
    0% {
      transform: translateX(100%);
    }
    to {
      transform: translateX(-100%);
    }
  }
  
  @keyframes loop2 {
    0% {
      transform: translateX(0);
    }
    to {
      transform: translateX(-200%);
    }
  } */
  /* footer
  ---------------------- */
  .footer{
      background-color:#787878;
      padding:20px;
  }
  .footer-main-wrapper{
      padding:60px 40px 60px 60px;
  }
  .footer-logo-img{
      width:166px;
      height:62px;
  }
  @media screen and (max-width:768px){
    .footer-main-wrapper{
        padding:60px 40px 60px 0;
    }
  }
  @media screen and (max-width:640px){
    .footer{
        padding:0 0 10px;
    }
    .footer-main-wrapper{
        padding:50px 0;
    }
    .footer-logo-img{
        width:50%;
        height:auto;
    }
  }
  .footer-nav{
      position:absolute;
      top:50%;
      right:6%;
      transform:translateY(-50%);
      width:510px;
  }
  @media screen and (max-width:768px){
    .footer-nav{
        right:1%;
        width:400px;
    }
  }
  .footer-nav ul li a{
    font-size : 12px;
    line-height:12px;
    letter-spacing : 1.68px;
    color : #FFFFFF;
    transition:all 0.5s linear;
  }
  .footer-nav ul li a:hover{
      color:#333333;
  }
  small{
    font-family: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size : 10px;
    line-height : 10px;
    letter-spacing : 2.6px;
    color : #FFFFFF;
  }
  .topback-pc{
      position:absolute;
      right:30px;
      bottom:30px;
      cursor: pointer;
  }
  .topback-pc-img{
      width:18px;
      height:10px;
  }
  @media screen and (max-width:640px){
    small{
        font-size : 8px;
        line-height : 8px;
        letter-spacing : 1px;
      }
  }
  @media screen and (max-width:640px){
      .topback-sp{
          width:100%;
          height:40px;
          background-color:#939494;
      }
      .topback-sp span{
          transform:rotate(-90deg);
          font-size:20px;
          line-height:20px;
          color:#ffffff;
          opacity:0.5;
      }
  }
  .lity-close{
      width:60px !important;
      height:60px !important;
      top:10px !important;
      right:10px !important;
      font-size:60px !important;
      line-height: 60px !important;
  }