@charset "UTF-8";
/* CSS Document */
/* 全体 */
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Ubuntu','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','メイリオ', 'Meiryo','ＭＳ ゴシック',sans-serif;
    color: #333;
    margin: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}
.wrapper {
    min-height: 100vh;
    box-sizing: border-box;
    position: relative;
    padding-bottom: 157px;
}
h1,h2,h3,h4,h5,h6,p{
    margin: 0;
}
ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
a{
    text-decoration: none;
}
a:hover{
    opacity: 0.8;
}
img{
	vertical-align: top;
    width: 100%;
}
main{
    display: block;
}
.main_inner{
    max-width: 1100px;
    padding: 60px 20px 0;
    margin: auto;
    margin-bottom: 130px;
}
.sp{
    display: none;
}
@media screen and (max-width:767px){
    .wrapper {
        padding-bottom: 127px;
    }
    .main_inner{
        padding-top: 40px;
        margin-bottom: 70px;
    }
    .pc{
        display: none;
    }
    .sp{
        display: inline-block;
    }
}

/* flex */
.flex{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.flex_wrap{
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.flex_justify_space_between{
    -webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.flex_justify_center{
    -webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.flex_align_center{
    -webkit-box-align: center;
	-ms-flex-align: center;
    align-items: center;
}
.flex_left{
    order: 1;
}
.flex_right{
    order: 2;
}

/* テキスト */
p{
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
}
small{
    display: block;
    font-size: 14px;
    line-height: 22px;
    color: #8c8c8c;
    margin-bottom: 20px;
}
.small_list{
    margin-bottom: 20px;
}
.small_list li{
    padding-left: 1em;
    text-indent: -1em;
}
.small_list small{
    margin-bottom: 0;
}
.text_link{
    color: #005bac;
    text-decoration: solid underline #005bac 1px;
}
.text_center{
    text-align: center!important;
}
.pc_visible{
    display: inline;
}
.sp_visible{
    display: none;
}
@media screen and (max-width:767px){
    .pc_visible{
        display: none;
    }   
    .sp_visible{
        display: inline;
    }
}