<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/*****************************************************

    全ての要素をリセット

*****************************************************/
* {
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
}

body {
    font-family: 游ゴシック体, YuGothic, 游ゴシック, "Yu Gothic", メイリオ, Meiryo, sans-serif;
    font-weight: 500;
}
.wrap {
    position: relative;
}

.inner {
    max-width: 1200px;
    margin: 0 auto;
}
.sp{
    display: none;
}

header {
    width: 100%;
    height: 80px;
    padding: 10px 0;
    position: absolute;
    z-index:999;
    /* align-items: center; */
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
}

.h-right {
    width: 70%;
    /* display: flex; */
    text-align: right;
    justify-content: flex-end;
}


.hours {
    font-size: 12px;
    letter-spacing: 1px;
}

.number {
    font-size: 29px;
    font-weight: 800;
    color: #F28008;
}

h1 a {
    display: block;
    margin-top: 5px;
    margin-bottom: 0;
    width: 300px;
    height: auto;
    /* width: 200px; */
}
.mv {
    margin-bottom: -10px;
}

.mv img {
    width: 100%;
    /* height: 500px; */
    justify-content: center;
    align-items: center;
    box-sizing: content-box;
}

.introduce h2 {
    text-align: center;
    font-size: 36px;
    color: #fff;
}

.introduce {
    padding: 50px 0;
    background: #572EB0;
}

.introduce-contents {
    display: flex;
    padding: 30px;
}

.introduce-contents li {
    width: calc(100% - 60px);
    margin-right: 20px;
    font-weight: 800;
    color: #572EB0;
    background: #fff;
    border-radius: 10px;
    text-align: center;
    align-items: center;
    padding: 10px;
    display: grid;
    place-items: center;
}

.introduce-contents span {
    align-items: center;
    justify-content: center;
}

.point {
    background: #f6f6f6;
    position: relative;
}

.point-contents {
    padding: 80px 0 50px;
    display: flex;
    flex-wrap: wrap;
}

.point-img {
    width: 20%;
}

.point-text {
    width: 80%;
    font-size: 25px;
    color: #333;
}

.point-text p {
    margin-bottom: 20px;
}

.point:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -50px;
    border: 45px solid transparent;
    border-top: 45px solid #572EB0;
    z-index: 0;
}
.orange {
    color: #F28008;
}
.summary {
    padding: 50px 0;
}

.summary h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.summary table {
    background: #F5F2FC;
    border-radius: 10px;
    padding: 50px 100px;
    margin: 0 auto;
}

th {
    text-align: left;
    width: 30%;
}

table tr {
    vertical-align: top;
    line-height: 270%;
}

.summary ul {
    line-height: 180%;
    list-style-position: inside;
}

.summary ul li {
    padding-left: 1em;
    text-indent: -1em;
}

.summary ul li:before {
    content: "●";
    color: #572EB0;
    margin-right: 10px;
    font-size: 10px;
    }



.btn a {
    width: 600px;
    display: block;
    background: #F28008;
    color: #fff;
    border-bottom: 10px solid #B86A17;
    border-radius: 10px;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 10px;
    padding: 20px;
    text-align: center;
    margin: 0 auto;
    text-decoration: none;
}

.btn a:hover {
    margin-top: 8px;
    background: # fff20a;
    border-bottom: 2px solid #B86A17;
}


footer {
    text-align: center;
    padding: 70px 0 10px;
}



@media screen and (max-width: 767px) {
    .btn a {
        width: 80%;
        font-size: 20px;
    }

    .hours {
        display: none;
    }

    header {
        height: 50px;
        padding: 0;
    }

    .pc{
        display: none;
    }
    .sp{
        display: block;
    }


    .header img {
        width: 80%;
    }
    h1 a {
        width: 80%;
    }

    .h-right {
        /* font-size: 10px; */
        width: 80%;
    }

    .number {
        font-size: 15px;
    }

    .introduce-contents {
        flex-wrap: wrap;
    }

    .introduce-contents li {
        width: 40%;
        /* margin: 0; */
        margin-right: 10px;
        margin-bottom: 20px;
        font-size: 14px;
    }

    .inner {
        width: 95%;
    }

    .introduce h2 {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .introduce-contents {
        padding: 0;
    }

    .introduce-contents li:nth-child(even) {
        margin-right: 0;
    }



    .point-text {
        width: 71%;
        font-size: 18px;
        margin-left: 20px;
    }


    .summary table {
        padding: 25px;
    }

    .point-img img {
        width: 100%;
    }
}
</pre></body></html>