@charset "utf-8";

body,
html {
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale;
    /* overflow-y: auto;
    overflow-x: hidden; */
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic",
        "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo",
        sans-serif;
    color: #1e1e1e;
}

h1 {
    font-size: 50px;
    text-align: center;
}

@media (max-width: 767px) {
    h1 {
        font-size: 32px;
        line-height: 1.4;
    }
}

.sp-br {
    display: none;
}

@media (max-width: 767px) {
    .sp-br {
        display: inline;
    }

    .pc-br {
        display: none;
    }
}

h2 {
    text-transform: none;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    padding-top: 20px;
    text-align: center;
}

@media (max-width: 767px) {
    h2 {
        font-size: 16px;
    }
}

h3 {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    h3 {
        font-size: 18px;
        margin-top: 10px;
    }
}

h4 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
}

p {
    font-style: normal;
    font-size: 18px;
    line-height: 1.5;
}

@media (max-width: 767px) {
    p {
        font-size: 14px;
        margin-bottom: 15px;
    }
}

a {
    color: #212529;
    text-decoration: none;
}

a:hover {
    color: #212529;
    text-decoration: none;
}

a:hover {
    opacity: 0.8;
}

li {
    list-style: none;
    line-height: 2em;
}

/*背景動画、ロゴなど*/

#home {
    color: #ffffff;
}

.logo1 {
    padding: 10px 0 10px 30px;
}

.logo2 {
    padding: 7px 0 7px 15px;
    display: none;
}

.logo1,
.logo2 {
    background: #fff;
    min-width: 320px;
}

.logo1 img,
.logo2 img {
    width: 180px;
    height: auto;
}

@media (max-width: 767px) {
    .logo1 {
        display: none;
    }

    .logo2 {
        display: block;
    }
}

/*遠隔臨場*/
body {
    background-color: #e9e9e9;
    min-height: 100vh;
    position: relative;
}

@media (max-width: 767px) {
    body {
        padding-bottom: 98px;
    }
}

.main {
    background: #3a95b9;
    color: #fff;
    padding: 30px;
}

@media (max-width: 767px) {
    .main {
        padding: 30px 15px;
    }
}

/* 内容 */
.content {
    margin: 60px auto;
    padding: 0 40px;
    max-width: 1180px;
    width: 100%;
}

@media (max-width: 767px) {
    .content {
        margin: 40px auto;
        padding: 0 20px;
    }
}

.content-item {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    padding: 30px;
}

@media (max-width: 767px) {
    .content-item {
        flex-direction: column;
        padding: 20px;
    }
}

.content-item .left {
    width: 57%;
}

@media (max-width: 767px) {
    .content-item .left {
        width: 100%;
    }
}

.content-item .left img {
    width: 100%;
    display: flex;
    align-items: center;
}

.content-item .right {
    display: flex;
    flex-direction: column;
    margin-left: 3%;
    width: 40%;
}

@media (max-width: 767px) {
    .content-item .right {
        width: 100%;
        margin-left: 0;
        text-align: left;
    }
}

.content-item .right .text {
    width: 100%;
}

.contact {
    margin-top: auto;
}

/* ボタン */

.button a {
    font-size: 20px;
}

@media (max-width: 767px) {
    .button a {
        font-size: 16px;
    }
}

.button {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-weight: bold;
    text-align: center;
}
.button-link {
    width: 100%;
    display: block;
    padding: 20px 0;
    color: #fff;
    background: #e53700;
    position: relative;
    padding-right: 15px;
    transition: 0.3s;
}
.button-link::after {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    margin-top: -5px;
    margin-left: 8px;
    top: 50%;
    transform: rotate(45deg);
}
.button-link:hover {
    color: #fff;
    background: #1e1e1e;
    opacity: 1;
}

/*フッター*/

.footer {
    padding: 10px 10px 15px;
    background: #1e1e1e;
    position: fixed;
    bottom: 0px;
    right: 0px;
    width: 100%;
    box-sizing: border-box;
}

.footer p {
    color: #fff;
    margin-top: 10px auto;
    font-size: 70%;
    font-weight: 300;
}

@media screen and (max-width: 767px) {
    .footer p {
        font-size: 60%;
    }
}

.footer-nav {
    display: flex;
    justify-content: center;
}

.footer-nav li {
    justify-content: space-between;
}

.footer-nav a {
    color: #fff;
    font-size: 12px;
    border-right: solid 1px #fff;
    padding: 0 20px;
}
.footer-nav li:last-child a {
    border-right: none;
}

.copy {
    margin-top: 10px;
    text-align: center;
}
