@charset "UTF-8";
/* レイアウトの共通部分 */
html {
    font-size: 62.5%;
    color: #733e00;
    line-height: 2;
    font-feature-settings: "palt";
    scroll-behavior: smooth;
}

body {
    width: 100%;
    margin: 0 auto;
    font-size: 1.6rem;
    font-family: "dnp-shuei-mgothic-std", "Noto Sans JP", sans-serif;
    letter-spacing: 0.04em;
}

.inner {
    width: 600px;
    margin: 0 auto;
    padding: 80px 0 100px;
}

.sp {
    display: none;
}

.pc {
    display: block;
}

.mb20 {
    margin-bottom: 20px;
}

/*---------------------------------------
タブレット対応
---------------------------------------*/
@media screen and (max-width: 600px) {
    .inner {
        width: 100%;
        margin: 0 auto;
        padding: 60px 16px 80px;
    }
    .sp {
        display: block;
    }
    .pc {
        display: none;
    }
}
/*----- fadeUp -----*/
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.6s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fadeUpTrigger {
    opacity: 0;
}

/* fadeUp ここまで */
/* テキスト関係 */
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
Header / main
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
header {
    width: 100%;
    height: 320px;
    border-bottom: solid 4px #2fb6a6;
    padding: 40px;
}

.ly-head-logo {
    text-align: center;
    margin: 0;
}

.bl-lead-txt {
    margin-bottom: 80px;
    text-align: center;
    font-weight: bold;
    letter-spacing: 0.1em;
}

.bl-school-list-wrap {
    width: 400px;
    height: auto;
    margin: 0 auto;
}

.ly-school-list-item {
    margin-bottom: 40px;
}

.ly-school-list-ttl {
    font-size: 3rem;
    color: #2fb6a6;
    letter-spacing: 1rem;
}

.ly-school-area {
    font-size: 2.2rem;
    font-weight: bold;
    color: #fff;
    background-color: #2fb6a6;
    display: inline-block;
    padding: 9px 21px;
    border-radius: 40px;
    line-height: 1;
    letter-spacing: 4px;
    margin-bottom: 20px;
    margin-top: 0;
}

.ly-school-name {
    font-size: 2.4rem;
    font-weight: bold;
}

.el-newopen-img {
    display: block;
    width: 140px;
    height: auto;
}

.hp-link {
    color: #2fb6a6;
}

.hp-txt-caution {
    color: #ff4500;
}

.ly-bg-green {
    background-color: #f0f9f9;
}

.ly-cont-img {
    text-align: center;
    margin: 0 0 80px;
}

.hp-mb40 {
    margin-bottom: 40px !important;
}

.hp-mt60 {
    margin-top: 60px;
}

.hp-bg-pink {
    background-color: #ffe4e1;
}
.ly-cont-ttl {
    text-align: center;
    margin: 0 0 40px;
}

.ly-table {
    width: 500px;
    height: auto;
    margin: 0 auto 80px;
}
.ly-table th,
.ly-table td {
    border-bottom: 2px dotted #733e00;
    text-align: left;
    padding: 20px 0;
}
.ly-table th {
    padding-right: 40px;
}

.bl-map-wrap {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.ly-map-img {
    margin-bottom: 60px;
    display: block;
}

.ly-gmap-txt {
    text-align: center;
    margin-bottom: 40px;
}

.bl-btn {
    display: flex;
    width: 200px;
    height: 40px;
    background-color: #2fb6a6;
    color: #fff;
    text-decoration: none;
    border-radius: 40px;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.bl-btn-large {
    display: flex;
    width: 100%;
    height: 60px;
    background-color: #2fb6a6;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    margin: 80px 0;
    font-size: 2.4rem;
    font-weight: bold;
}
.bl-btn-large:hover {
    background-color: #fff;
    color: #2fb6a6;
    border: 2px solid #2fb6a6;
}

@media screen and (max-width: 600px) {
    .bl-lead-txt {
        margin-bottom: 60px;
        text-align: left;
    }
    .bl-school-list-wrap {
        width: 100%;
    }
    .ly-cont-ttl img {
        width: 100%;
        height: auto;
    }
    .ly-table {
        width: 100%;
        height: auto;
        margin: 0 auto 60px;
    }
    .ly-table th,
    .ly-table td {
        text-align: center;
        padding: 20px 0;
        display: block;
    }
    .ly-table th {
        padding-right: 0;
        padding-bottom: 0;
        border-bottom: none !important;
    }
    .ly-map-img {
        margin-bottom: 60px;
        display: block;
        width: 100%;
        height: auto;
    }
    .hp-gmap {
        width: 100%;
        height: auto;
    }
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
入室申請書ダウンロード
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.bl-enter {
    margin-top: 80px;
    width: 100%;
}

.bl-enter-ttl {
    font-size: 3rem;
    font-weight: bold;
    color: #22b6a6;
    text-align: center;
    border-top: solid 4px #2fb6a6;
    border-bottom: solid 4px #2fb6a6;
}

.bl-enter-txt {
    font-size: 2rem;
    font-weight: bold;
}

.bl-enter-docList {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bl-enter-docList li {
    margin: 24px 0;
}
.bl-enter-docList li a {
    color: #733e00;
    text-decoration: underline;
    font-weight: bold;
}
.bl-enter-docList li a:hover {
    color: #2fb6a6;
}

.hp-txt-bold {
    font-weight: bold;
}

.hp-txt-small {
    font-size: 1.6rem;
}

.bl-img-wrap {
    margin-top: 80px;
}
.bl-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

.bl-img-txt {
    font-size: 2.4rem;
    font-weight: bold;
    text-align: center;
    color: #2fb6a6;
    border-bottom: 2px solid #2fb6a6;
    margin-bottom: 20px;
    padding-bottom: 20px;
    line-height: 1.5;
}

.hp-txt-small {
    font-size: 1.6rem;
    display: block;
}

.bl-img-cap {
    text-decoration: underline;
    color: #733e00;
}
.bl-img-cap:hover {
    color: #2fb6a6;
}

.bl-box {
    background-color: #fff;
    width: 100%;
    height: auto;
    padding: 20px 40px;
    margin-bottom: 40px;
}

.hp-tac {
    text-align: center;
}

.bl-enter-table {
    width: 100%;
    margin: 40px 0 20px;
    border: 2px solid #733e00;
}

.bl-enter-table th {
    border: 1px solid #733e00;
    width: 34%;
    padding: 8px;
}

.bl-enter-table td {
    border: 1px solid #733e00;
    padding: 8px;
}

.bl-enter-list {
    margin: 0;
    padding: 0;
    padding-left: 1em;
}

@media screen and (max-width: 600px) {
    .bl-box {
        padding: 16px;
    }

    .bl-enter-table {
        font-size: 1.4rem;
    }

    .bl-enter-table th {
        width: 32%;
    }
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
footer
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
footer {
    background-color: #2fb6a6;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    padding: 0 120px;
}

.ly-footer-link {
    list-style-type: none;
    display: flex;
    align-items: center;
    padding: 0;
}
.ly-footer-link li:first-child {
    margin-right: 40px;
}
.ly-footer-link li a {
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 600px) {
    footer {
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column-reverse;
        color: #fff;
        padding: 40px 0;
    }
    .ly-footer-link {
        margin-bottom: 40px;
    }
    .copy {
        margin: 0 0 16px;
    }
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
トップに戻る
＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
#back-to-top {
    position: fixed;
    right: 80px;
    bottom: 80px;
    text-align: right;
    width: 60px;
    height: 60px;
    z-index: 30;
}
@media screen and (max-width: 600px) {
    #back-to-top {
        position: fixed;
        right: 16px;
        bottom: 0;
        text-align: right;
        width: 48px;
        height: 48px;
        z-index: 30;
        margin-bottom: 10px;
    }
}
#back-to-top a {
    display: block;
}

#back-to-top img {
    width: 100%;
    height: auto;
}
@media screen and (max-width: 1000px) {
    #back-to-top img {
        width: 80%;
    }
}
@media screen and (max-width: 640px) {
    #back-to-top img {
        width: 100%;
    }
}

.back-to-btn {
    opacity: 0;
    visibility: hidden;
}

.back-to-btn-active {
    opacity: 1;
    visibility: visible;
} /*# sourceMappingURL=style.css.map */
