html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

html::-webkit-scrollbar{
    display: none;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

body, ul, li, p {
    margin: 0;
}

body {
    margin: 0 auto;
    width: 100%;
    overflow-x: hidden;
}

.pc-only{
    display: block;
}

.sp-only{
    display: none;
}

.container {
    width: 700px;
    padding: 0 10px;
    margin: 20px auto;
}

.page-title {
    font-weight: 700;
    font-size: 1.8rem;
    text-align: center;
}

.right {
    text-align: right;
}

.email {
    color: #4381bf;
    text-decoration: none;
}

header {
    margin: 0 auto;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #FFF;
    z-index: 3;
    width: 100%;
}

header div.pc-only{
    padding: 8px 24px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    width: 230px;
}

.logo-img img {
    width: 100%;
}

.right-block {
    display: flex;
}

.tel-box {
    height: 59px;
    /* display: table; */
    display: none;
}

.tel-block {
    display: table-cell;
    vertical-align: middle;
    font-size: 22px;
    font-family: "LINE Seed JP OTF Bd", sans-serif;
    color: #2BC2A7;
    font-weight: 700;
    text-align: center;
    padding-right: 10px;
    line-height: 15px;
}

.tel-block span {
    font-size: 12px;
    color: #000;
    font-weight: 400;
}

.head-btn {
    width: 160px;
    height: 43px;
    line-height: 43px;
    letter-spacing: 1.12px;
}

.head-btn a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    background: #2BC2A7;
    text-align: center;
    color: #FFFFFF;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 14px;
    border-radius: 6px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    box-shadow: 0px 5px 0px 0px #2A7B6C;
}

footer {
    color: #FFF;
    margin: 0 auto;
    text-align: center;
    font-size: 1.4rem;
}

footer ul {
    display: flex;
    justify-content: center;
    padding: 53px 0;
    background-color: #2BC2A7;
}

footer li {
    list-style: none;
    padding: 0 24px;
}

footer li+li {
    border-left: 1px solid #FFF;
}

footer li a {
    color: #FFF;
    text-decoration: none;
}

footer p {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4rem;
    background-color: #E3EAEA;
    padding: 24px 0;
}

footer .contact{
    background-color: #D5F2ED;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

footer .contact-comment{
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    color: #1D8A77;
    text-align: center;
}

footer .contact-btn a{
    color: #1D8A77;
    text-decoration: underline;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 22px;
}

@media screen and (max-width: 767px) {
    .container {
        width: 80%;
        min-width: 330px;
        padding: 0 10px;
        margin: 20px auto;
    }

    header {
        margin: 0 auto;
        padding: 8px 12px;
    }
    
    header div.pc-only{
        display: none;
    }
    
    .sp-only{
        display: block;
    }

    .logo-img {
        width: 100%;
        max-width: 500px;
    }

    .logo-img img {
        width: 45%;
        display: block;
    }

    footer ul {
        display: block;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    footer li {
        font-family: "LINE Seed JP_OTF", sans-serif;
        padding-bottom: 0;
        font-size: 12px;
        line-height: 24px;
    }

    footer p {
        font-size: 12px;
        padding: 12px
    }

    footer li+li {
        border-left: none;
    }

    footer .contact-comment{
        font-family: "Noto Sans JP", sans-serif;
        font-size: 14px;
        color: #1D8A77;
        text-align: center;
    }
    
    footer .contact-btn a{
        color: #1D8A77;
        text-decoration: underline;
        font-family: "Noto Sans JP", sans-serif;
        font-size: 16px;
    }
}

