/* 共通 */

* {
    padding: 0;
    margin: 0;
    font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
}

main {
    background-color: #eceff2;
}

.wrapper {
    background-color: #eceff2;
    height: 100%;
    position: relative;
    box-sizing: border-box;
    width:100%;
}

/* ヘッダー */

header { 
   
}

header .header_wrap {
    background-color: #EF90BC;
    color: #fff;
    padding: 1em;
    display: flex;
    gap: 5em;
}

header .header_left {
    flex-basis: 40%;
    margin:auto 0;
}

header .header_right {
    flex-basis: 30%;
    margin: auto 0;
}


header .site_ttl {
    font-size: 1.5em;
    padding-left: 2em;
}

header .site_ttl a {
    text-decoration: none;
    color:#FFF;
}

header .font_size {
    display: flex;
    gap: 1.5em;
}

header .font_size .font_size_btn {
    padding: .1em;
    /* height: 1.5em; */
    width: 3.5em;
    color: #fff;
    background-color: #a3a3a3;
    box-shadow: 5px 10px 4px rgba(0, 0, 0, 0.05);
    border: none;
    font-size: 1.5em;
}

header .tell {
    flex-basis: 20%;
    font-size: 80%;
    margin: auto 0;
}

header .email {
    text-align: center;
    line-height: 0.8em;
    flex-basis: 10%;
}

header .email img {
    width: 3em;
}

header .email p {
    font-size: .8em;
    color:#FFFFFF;
    font-weight: bold;
}

header .email a {
    text-decoration: none;
    font-size: .8em;
    color:#FFFFFF;
    font-weight: bold;
}


footer { /*フッター*/
    background-color: #fff;
    width: 100%;
    color: #000;
    text-align: center;
    padding: 1em 0;
    position: absolute;
    bottom: 0;
}



main .side_bar_wrapper {
    flex-basis: 17%;
    background-color: #eceff2;
    min-height: 100vh;
}
.side_bar_wrapper .side_bar_menu a {
display: block;
color: #000;
text-decoration: none;
font-size: 1.2em;
padding: 1em;
font-weight: bold;
border-bottom: solid 3px #fdfdfd;
background-color: #eceff2;
}
.side_bar_menu .this_page {
background-color: #f8e7ef!important;
} 
.side_bar_menu .menu_ttl {
background-color: #d7dadd!important;
}




.error_msg {
    text-align: center;
    font-size:1.5em;
    margin-top: 30px;
    color:#FF0000;
}


.btn {
    width: 10em;
    display: block;
    margin: 0 auto;
    margin-top: 0px;
    margin-top: 1.5em;
    font-size: 1em;
    padding: .5em;
    border: solid 3px #EF90BC;
    background-color: #eceff2;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: 5px 8px 4px rgba(0, 0, 0, 0.15);
    text-align: center;
  }



.pc_none {
    display: none;
}

.sm_none {
    display: block;
}


.environment {
    width:50%;
    margin:0 auto;
    text-align: center;
    background-color: #FFF;
    margin-top: 5%;
    border-radius: 20px;
}

.environment .environment_ttl {

    padding: 20px;
    font-weight: bold;
    padding-top: 30px;
}

.environment .environment_body {
    width: 80%;
    text-align: left;
    margin: 0 auto;
    padding: 20px;
}


.hanrei_wrapper {
    width:75%;
    margin: 0 auto;
}

.attention_msg {
    font-size: 80%;
    color:#FF0000;
}

/* レスポンシブ */

@media screen and (max-width: 1080px) {

    .pc_none {
        display: block;
    }
    
    .sm_none {
        display: none;
    }


    header {
        background-color: #EF90BC;
        height: 50px;
        width: 100%;
        position: fixed;
        top: 0;
        display: flex;
        align-items: center;
        z-index: 40;
    }

    header h1 {
        margin: 0;
        padding: 0;
        /* max-width: 250px; */
        font-size: 1.06em;
        margin: auto 0;
        padding: 12px;
    }


    header h1 a {
        
        text-decoration: none;
        color:#FFF;
    }

    
    .hamburger-nav {
        position: fixed;
        width: 100%;
        background-color: #EF90BC;
        color: #FFF;
        z-index: 1001;
        /* padding: 20px; */
    }

    header nav ul {
        list-style: none;
        margin: 0;
          margin-top: 0px;
        margin-top: 50px;
        display: block;
        padding-left: 0;
    }

    .header_menu li {
        display: block;
        border-bottom: solid 1px #FFF;
        padding: 10px;
    }

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


    .hamburger-button {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 5px !important;
        right: 5px !important;
        z-index: 1002;
        border: none;
        cursor: pointer;
        width: 40px;
        height: 40px;
        outline: none;
        background-color: #EF90BC;
        color: #FFF;
    }

    .hamburger-button svg {
        height: 25px;
        width: 25px;
        color: #FFF;
    }


    footer { /*フッター*/
        background-color: #fff;
        width: 100%!important;
        color: #000;
        text-align: center;
        padding: 1em 0;
        position: absolute;
        bottom: 0;
        font-size: 0.8em;
    }


    .environment {
        width:90%;
        margin:0 auto;
        text-align: center;
        background-color: #FFF;
        margin-top: 1%;
        border-radius: 20px;
        margin-bottom: 15%;;
    }
    
    .environment .environment_ttl {
    
        padding: 10px;
        font-weight: bold;
    }
    
    .environment .environment_body {
        text-align: left;
        padding: 10px;
        font-size: 0.9em;
    }


    .hanrei_wrapper {
        width:100%;
        margin: 0 auto;
    }


    .attention_msg {
        line-height:2!important;
    }


}