/*全体設定*/

html,
body {
    margin: 0;
    padding: 0;
    font-family: apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
}

html {
    height: 100%;
}

#wrapper {
    display: none;
}


/*経営理念*/

#text {
    /*浮遊化*/
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 650px;
    /*以下設定*/
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px 0;
    line-height: 1.8;
}

.textRes {
    font-size: 18px;
}

small {
    font-size: 20px;
}

.iconDiscription {
    font-style: normal;
    font-size: 18px;
    color: #333;
    position: relative;
    bottom: 8px;
}

.rinen {
    border-bottom: solid 5px #000;
}

/*ロゴ*/

.logo1 {
    margin:30px auto;
    width:250px;
}

#logo {
    text-align: center;
    margin-top: 150px;
    margin-bottom: 50px;
}

#logo img {
    max-width: 20%;
    height: auto
}

/*ボタン*/

.btn {
  display: inline-block;
  padding: 0.3em 1em;
  text-decoration: none;
  color: #fff;
  border: solid 2px #fff;
  border-radius: 3px;
  transition: .4s;
    width:200px;
}

.btn:hover {
  background: #036EB7;
  color: white;
}

.button {
    display: inline-block;
    width: 200px;
    height: 54px;
    text-align: center;
    text-decoration: none;
    line-height: 54px;
    outline: none;
    position: relative;
    bottom: 50px;
    z-index: 2;
    background-color: #333;
    border: 2px solid #333;
    color: #fff;
    line-height: 50px;
    margin: 60px 50px 0 50px;
}

.button::before,
.button::after {
    position: absolute;
    z-index: -1;
    display: block;
    content: '';
}

.button,
.button::before,
.button::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.button:hover {
    background-color: #fff;
    border-color: #036EB7;
    color: #036EB7;
}

.button::before,
.button::after {
    left: 0;
    width: 100%;
    height: 50%;
    background-color: #333;
}

.button::before {
    top: 0;
}

.button::after {
    bottom: 0;
}

.button:hover::before,
.button:hover::after {
    height: 0;
    background-color: #036EB7;
}

#btn {
    text-align: center
}

/*フッター*/

footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    background: #000;
    opacity: .7;
    padding: 0;
}




/*644px以下*/

@media only screen and (max-width: 1000px) {
    #wrapper {
        overflow: hidden;
    }
    .textRes {
    font-size: 14px;
        margin:20px auto;
}
    .vegas-container {
        width: 350px;
        margin: 0 auto;
    }
    .logo1 {
    width:150px;
}
    #logo img {
        max-width: 50%;
        margin: 0 auto;
    }
    footer {
        width: 100%;
        margin: 0 auto;
        position: fixed;
        bottom: 0;
    }
    .brRes {
        display: none;
    }
    #text {
        padding: 15px 8px;
        height: 500px;
    }

}

