/* ===================================
   リセット & 基本設定
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%;
    /* 1rem = 10px */
}

body {
    font-family: '游ゴシック体', 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, sans-serif;
    color: #002D54;
    line-height: 1.8;
    overflow-x: hidden;
    font-size: 1.6rem;
    /* 16px */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 100%;
    margin: 0 auto;
}

.sp {
    display: none;
}

/* ===================================
   リセット & 基本設定
   =================================== */

.wrapper-main {
    width: 500px;
    margin: 0 auto;

}

.box-main {
    background-color: #119c86;
    padding: 20rem 7rem;
    text-align: center;
    margin-bottom: 10rem;
    position: relative;
}

.box-title {
    max-width: 500px;
    display: flex;

}

.box-illust {
    width: 20%;
    position: absolute;
    right: 40px;
    top: 200px;

}

.footer-info {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    /* border: 1px solid red; */
}

.box-footer-logo {
    display: flex;
    align-items: center;
    width: 30%;
    /* padding-right: 6rem; */
}

/* .box-footer-info-txt {
    width: 30%;
} */

.info-list li {
    padding: 0.6rem 0;
}


.tel {
    width: 150px;
}

.mail {
    width: 180px;
}

.url {
    width: 190px;
}

.address {
    width: 280px;
}

/* ===================================
   レスポンシブ対応
   =================================== */
@media (max-width: 768px) {
    .wrapper-main {
        width: 100%;
    }



    .box-footer-logo {
        display: none;
    }

    .box-footer-info-txt {
        width: 80%;
        margin: 0 auto 10rem;
    }
}