@charset"utf-8";

* {
    box-sizing: border-box;
}

@font-face {
    font-family: "YuGothic M";
    src: local("Yu Gothic Medium"),
        local("Yu Gothic");
    font-weight: 100;
}

header {

    height: 90px;
    width: 100%;
    background-color: white;
    position: fixed;
    z-index: 10;
    top: 0;
    line-height: 90px;
    text-align: center;
}


.clear {
    clear: both;
}


/*ハンバーガー*/

*,
*:before,
*:after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ol,
ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

.cp_cont {
    height: 0vh;
}




/* menu */
.cp_offcm03 {
    position: relative;
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    overflow: auto;
    width: 100%;
    height: auto;
    padding-top: 0;
    -webkit-transition: transform 0.3s ease-in;
    transition: transform 0.3s ease-in;
    text-align: center;
    color: dimgray;
    background-color: white;
    font-family: 'PT Mono', monospace;
    font-size: 18px;

}

.cp_offcm03 nav,
.cp_offcm03 ul {
    height: 100%;
}

.cp_offcm03 li {
    display: inline-block;
    margin-right: -6px;
    border: none;
    list-style: none;
    position: relative;
}

.cp_offcm03 a {
    display: block;
    padding: 25px 30px;
    -webkit-transition: background-color .3s ease-in;
    transition: background-color .3s ease-in;
}

.cp_offcm03 a:hover {
    opacity: 0.6;
}

/* menu toggle */
#cp_toggle03 {
    display: none;
}

#cp_toggle03:checked ~ .cp_offcm03 {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

#cp_toggle03:checked ~ .cp_container {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.cp_mobilebar {
    display: none;
}

/*ドロップダウン*/






@media (max-width: 767px) {

    /* menu */
    .cp_offcm03 {
        position: fixed;
        left: -300px;
        overflow-y: hidden;
        width: 300px;
        height: 100%;
        padding-top: 100px;
        color: whitesmoke;
        background-color: darkred;
        font-family: 'PT Mono', monospace;
    }

    .cp_offcm03 nav {
        background: darkred;
    }

    .cp_offcm03 li {
        display: block;
        margin-right: 0;
    }

    .cp_offcm03 a {
        padding: 5px;
        font-size: 15px;
        letter-spacing: 0.18em;
        /*行間隔*/
        font-weight: 100;
        text-align: center;
    }

    /* menu toggle */
    .cp_mobilebar {
        display: block;
        z-index: 9999;
        position: fixed;
        top: 0;
        left: 0;
        padding: 0 25px;
        width: 100%;
        height: 60px;
        background-color: white;
    }

    .cp_menuicon {
        display: block;
        position: relative;
        width: 25px;
        height: 100%;
        cursor: pointer;
        -webkit-transition: transform .3s ease-in;
        transition: transform .3s ease-in;
    }

    /*真ん中の線*/
    .cp_menuicon > span {
        display: block;
        position: absolute;
        top: 55%;
        margin-top: -0.3em;
        width: 100%;
        height: 0.2em;
        border-radius: 1px;
        background-color: darkred;
        -webkit-transition: transform .3s ease;
        transition: transform .3s ease;
    }

    /*上下の線*/
    .cp_menuicon > span:before,
    .cp_menuicon > span:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 1px;
        background-color: darkred;
        -webkit-transition: transform .3s ease-in;
        transition: transform .3s ease-in;
    }

    .cp_menuicon > span:before {
        -webkit-transform: translateY(-0.6em);
        transform: translateY(-0.6em);
    }

    .cp_menuicon > span:after {
        -webkit-transform: translateY(0.6em);
        transform: translateY(0.6em);
    }

    #cp_toggle03:checked + .cp_mobilebar .cp_menuicon {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    #cp_toggle03:checked + .cp_mobilebar span:before,
    #cp_toggle03:checked + .cp_mobilebar span:after {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    #cp_toggle03:checked ~ .cp_offcm03 {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    #cp_toggle03:checked ~ .main-visual {
        -webkit-transform: translateX(250px);
        transform: translateX(250px);
    }

}







a.anchor {
    display: block;
    padding-top: 300px;
    margin-top: -300px;
}




.container {
    width: 100%;
    max-width: 1170px;
    padding: 0 5px;
    margin: 0 auto;
}





.top-title {
    display: flex;
    justify-content: center;
    height: 56px;
    font-size: 28px;
    color: black;
    animation: neonBlur 16s infinite;
    font-weight: 100;
    text-align: center;
    letter-spacing: 0.10em;
    /*行間隔*/
}
/*R*/
.top-title > span:nth-child(1) {
    color: darkred;
    font-weight: 100;
    animation: neonBlink 2s infinite;
}


.top-title > span:nth-child(2) {
    animation: neonBlink 5s infinite;
}

/*I*/
.top-title > span:nth-child(3) {
    color: darkred;
}
/*po*/
.top-title > span:nth-child(4) {
    animation: neonBlink 2s infinite;
}

@keyframes neonBlink {
    0% { opacity: 1; }
    10% { opacity: .6; }
    12% { opacity: 1; }
    15% { opacity: .4; }
    17% { opacity: 1; }
    18% { opacity: .3; }
    19% { opacity: 1; }
    89% { opacity: 1; }
    91% { opacity: .7; }
    94% { opacity: 1; }
    100% { opacity: 1; }
}

@keyframes neonBlur {
    0% { text-shadow: 0px 0px 25px dimgray; }
    50% { text-shadow: 0px 0px 75px dimgray; filter: blur(0.5px) }
    100% { text-shadow: 0px 0px 25px dimgray; }
}

.break-down{
    font-family: 'PT Mono', monospace;
}



span {
    color: darkred;
}

.main-visual {
    background-color: white;
    padding-bottom: 50px;
    padding-top: 130px;
    font-family: 'PT Mono', monospace;
    margin-bottom: 0;
    text-align: center;

}

.rogo {
    display:  block;                /* ブロック要素にする */
    margin: 0 auto;                 /* 要素中央揃え */
    position:  relative;            /* 位置指定 */
    animation: anime1 2s ease;      /* アニメーション指定 */
}

@keyframes anime1 {
    0% {
        opacity:  0;                /* 透明度指定 */
        top: 50px;                  /* 位置指定 */
    }
    100% {
        opacity:  1;                /* 透明度指定 */
        top: 0;                     /* 位置指定 */
    }
}
.floor-photo  {
    margin: 0 auto;
    text-align: center;
    border: ;
    padding: 50px;
    
}

@keyframes fadein {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}





/* アニメーション設定 */
.arrowWrap {
    margin-top: 10vh;
}

.arrow {
    width: 15px;
    margin: 0 auto;
    -webkit-animation: arrow 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s infinite alternate;
    animation: arrow 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s infinite alternate;
}

.arrow span {
    position: relative;
    display: block;
    left: 50%;
}

.arrow span:before {
    content: '';
    width: 15px;
    height: 15px;
    border: 0;
    border-top: solid 1px #333;
    border-right: solid 1px #333;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    box-sizing: border-box;
}

@keyframes arrow {
    0% {
        opacity: 1;
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
    }

    100% {
        opacity: 0.5;
        -webkit-transform: translate3d(-50%, -8px, 0);
        transform: translate3d(-50%, -8px, 0);
    }
}

.top-ander {
    background-color: white;
}



.mini-title {
    color: dimgrey;
    font-size: 25px;
    font-weight: lighter;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
    letter-spacing: 0.18em;
    /*行間隔*/
    font-family: 'PT Mono', monospace;
}

a.anchor {
    display: block;
    padding-top: 150px;
    margin-top: -150px;
}

.click img{
    width: 274px;
    height: 274px;
    margin: 15px
}

.click img:hover {
    opacity: 0.8;
    border: solid 0.5px darkred;
}

.click-please{
    text-decoration: none;
    border-bottom: 0.5px solid darkred;
    padding-bottom: 2px;
    color: darkred;
}


.cards {
    margin-top: 100px;
}

.card {
    float: left;
    padding: 35px 15px;
    text-align: center;
    width: 25%;
    display: inline-block;
    background-color: white;

}

.card a {
    font-size: 15px;
    color: darkred;
    letter-spacing: 3px;
}

.cardname {
    text-decoration: none;
    
    padding-bottom: 2px;
}


.card img {
    width: 100%;
    padding: 20px;
}

.card img:hover {
    opacity: 0.8;
    border: solid 0.5px darkred;
}

.clear {
    clear: left;
}

.infor {
    text-align: center;
    padding-top: 50px;
    background-color:lightslategray;
}
.infor-title {
    color: whitesmoke;
    font-size: 25px;
    font-weight: lighter;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
    letter-spacing: 0.18em;
    /*行間隔*/
    font-family: 'PT Mono', monospace;
}



.infor-text {
    font-family: Yu Gothic;
    font-size: 15px;
    color: whitesmoke;

}
.infor-text a{
    font-size: 38px;
    letter-spacing: 10px;
}
.infor-text a:hover{
    opacity: 0.3;
}
.access-title{
    padding-top: 70px;
    padding-bottom: 30px;
    font-size: 40px;
    text-align: center;
    font-family: yu gothic;
    color: whitesmoke;
}
.contact-name {
    font-size: 25px;
    padding-top: 18px;
}

.contact a {
    font-size: 23px;
    text-decoration: none;
    font-family: Yu Gothic;
    color: whitesmoke;
    margin-right: 20px;
    margin-left: 20px;
}

.contact a:hover {
    border-bottom: solid 1px whitesmoke;
    transition: border 0.5s;
}

.contact {
    margin-top: 70px;
    margin-bottom: 80px;
    padding: 30px;
    padding-right: 10px;
    background-color: lightslategray;
}


.footer {
    height: 120px;
    background-color: white;
    color: darkred;
    float: right;

}
