@charset "utf-8";


/*///////////////////////////////
	フォント
///////////////////////////////*/
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:ital,wght@1,100;1,200;1,300;1,500;1,600;1,700;1,800;1,900&display=swap');


/*///////////////////////////////
	共通パーツ
///////////////////////////////*/
body {
    margin:0px;
	padding:0px;
	background-color: #fff;
	color:#000;
    font-family: 'Noto Sans JP', sans-serif;
    font-feature-settings: "palt";
}
@media (max-width: 750px) {
    body{
        font-size: 90%;
        
    } 
    
}

.inner { 
    display:block; 
    margin:0 140px;
    max-width: 900px;
}
@media (max-width: 750px) {
}

ul{
    padding-left: 0;
}

ol, ul {
  list-style-type: none;
}

img{
    width: 100%;
    height: auto;
}

a {
    display: block;
    text-decoration: none;
    color: #000;
    
}

span a{
    display: inline;
}

section,
.contact{
    margin-top: 12px;
    padding: 70px 0;
}
@media (max-width: 750px) {
    section:not(.contents):not(.probrems){
        padding: 0px 20px;
        margin-bottom: 40px;
        padding-top: 60px;
    }   
}


h1{
    
}

h2 span{
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
}

h2{   
    
}

h3 {
    margin: 0;
    text-align: center;
    margin-bottom: 30px;
    font-size: 140%;
}

p {
    font-weight: 400;
    font-size: 93%;
    line-height: 2em;
    letter-spacing: 0.3em;
    font-family: 'Noto Sans JP', sans-serif;
}
@media (max-width: 750px) {
    p{
        line-height: 1.5em;
    } 
    
}

.pc_vis{
    display:block;
}
@media (max-width: 750px) {
    .pc_vis{
        display: none;
    } 
    
}

.sp_vis{
    display: none;
}
@media (max-width: 750px) {
    .sp_vis{
        display: block;
    } 
    
}

.boldFont{
    font-weight: 900;
}

.blcr{
    color: #0086D1;
}

.shadow{
    box-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

.title{
    width: 40%;
    margin:20px auto;
    max-width: 250px;
}

.caution{
    font-size: 80%;
    letter-spacing: 0.2em;
}
@media (max-width: 750px) {
    .caution{
        font-size: 75%;
    }   
}

#move_bg,
#move_bg_contents,
#move_bg_introduction,
#move_bg_question{
    width: 100%;
    position: relative;
    overflow: hidden;
}

#move_bg_img,
#move_bg_contents_img,
#move_bg_introduction_img,
#move_bg_question_img{
    position: absolute;
    z-index: -5;
    top:200px;
}

/* fadeUp */

.fadeUp{
    animation-name:fadeUpAnime;
    animation-duration:0.5s;
    animation-fill-mode:forwards;
    opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeUpTrigger{
    opacity: 0;
}



/*///////////////////////////////
	header
///////////////////////////////*/

.navFlex{
    display: flex;
    position: fixed;
    width: 100%;
    padding: 10px 15px;
    top:0;
    background-color: rgba(255,255,255,0.9);
    z-index: 9999999;
    justify-content: space-between;
}

 /*** ヘッダーロゴ ***/
.header_logo{
    width: 12%;
    max-width: 150px;
}
@media (max-width: 750px) {
    .header_logo{
        width: 100%;
        max-width: 120px;
    }   
}



 /*** ヘッダーお問合せ ***/
.header_btn {
    font-size: 80%;
    color: #fff;
    padding:10px 20px;
    display: block;
    border-radius: 9999px;
    text-align: center;
    position: relative;
    z-index: 2;
    will-change: transform, filter;
    transform-style: preserve-3d;
    transition: all .3s ease-out;
    margin-top: 10px;
    margin-right: 20px;
}

.header_btn:hover {
    transform: scale(1.04);
}

.header_btn::before {
    content: "";
    height: 40px;
    display: inline-block;
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 5px;
    z-index: -1;
    border-radius: 9999px;
    opacity: 0;
    transform-style: preserve-3d;
    transition: all .3s ease-out;
}

.header_btn,
.header_btn::before {
    background: -moz-linear-gradient(left, #00A0E9 0%, #003686 100%);
    background: -webkit-linear-gradient(left, #00A0E9 0%, #003686 100%);
    background: linear-gradient(to right, #00A0E9 0%, #003686 100%);
}


 /*** ナビゲーション ***/
.right_menu{
    display: flex;
    margin-right: 60px;
}

nav{
    padding: 0;
}
    
.navIn{
    display: none;
}  

/* ハンバーガーボタンのデザイン */
header {
    position: relative;
}

.drawer__button,
.drawer__nav{
    display:block;
}
    
.drawer__button {
    width: 3rem;
    height: 3rem;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 9999999999999; /* メニューを開いている時もクリックできるよう設定 */
    margin-right: 10px;
    right: 0;
    position: fixed;
    top: 5px;
}

/* ハンバーガーボタン内の線 */
.drawer__button > span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.8rem;
    height: 2.5px;
    background-color: #0086D1;
    transform: translateX(-50%);
    border-radius: 1.5rem;
}

.drawer__button > span:first-child {
    transform: translate(-50%, calc(-50% - 0.5rem));
    transition: transform 0.3s ease;
}

.drawer__button > span:nth-child(2) {
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

.drawer__button > span:nth-child(3) {
    transform: translate(-50%, calc(-50% + 0.5rem));
    transition: transform 0.3s ease;
}

.drawer__button .menu{
    font-size: 80%;
    background-color: transparent;
    transform: translate(-50%, calc(-50% + 1rem));
    transition: transform 0.3s ease;
    width: 4rem;
    text-align: center;
    color: #0086D1;
}

/* 展開時のデザイン */
.drawer__button.active > span:first-child {
    transform: translate(-50%, -50%) rotate(-45deg);
   
}

.drawer__button.active > span:nth-child(2) {
    opacity: 0;
}

.drawer__button.active > span:nth-child(3){
    transform: translate(-50%, -50%) rotate(45deg);
    
}

/* メニューのデザイン */
.drawer__nav {
    position: fixed; /* 追従ヘッダーなどでも表示できるよう設定しておく */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 9;
}

.drawer__nav.active {
    opacity: 1;
    visibility: visible;
}

.drawer__nav__inner {
    position: relative;
    z-index: 99999;
    width: 50%;
    height: 100%;
    background:#fff;
    margin: 0 0 0 auto;
    overflow: scroll;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 800px;
}
@media (max-width: 750px) {
    .drawer__nav__inner{
        width: 100%;
    }   
}

.drawer__nav.active .drawer__nav__inner {
    transform: translateX(0);
}

.drawer__nav__menu {
    list-style: none;
    padding-left: 2em;
    padding-top: 150px;
}
@media (max-width: 750px) {
    .drawer__nav__menu{
        padding-top: 100px;
    }   
}

.drawer__nav__link {
    display: block;
    color: #0086D1;
    text-decoration: none;
    padding: 1rem 1rem;
    font-weight: 600;
    font-size: 140%;
}
    
.drawer__nav  .header_logo{
    margin: auto
}

.drawer__nav__item{
    padding-left: 20px;
    background: url("../img/triangle.png") no-repeat left center;
    background-size: 4%;
}

.drawer__nav__item:hover{
    opacity: 0.3;
}

.drawer__nav__item span{
    font-size: 55%;
}




/*///////////////////////////////
	main
///////////////////////////////*/

/*** mv ***/
.mv{
    
}


/*** contact ***/
.contact{
    margin: auto;
}


.contact p{
    text-align: center;
    font-size: 120%;
    padding-bottom: 20px;
}
@media (max-width: 750px) {
    .contact p{
        font-size: 85%;
        padding-bottom: 10px;
    }
}


.contact_btn {
    max-width: 600px;
    margin: auto;
    font-size: 180%;
    font-weight: 300;
    color: #fff;
    padding:10px 18px 20px;
    display: block;
    border-radius: 9999px;
    text-align: center;
    will-change: transform, filter;
    transform-style: preserve-3d;
    transition: all .3s ease-out;
    border: solid 2px #fff;
}

.contact_btn:hover {
    transform: scale(1.02);
}

.contact_btn::before {
    content: "";
    height: 40px;
    display: inline-block;
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 5px;
    z-index: -4;
    border-radius: 9999px;
    opacity: 0;
    transform-style: preserve-3d;
    transition: all .3s ease-out;
}

.contact_btn:hover::before {
    bottom: -20px;
    opacity: .6;
    filter: blur(80px);
}

.contact_btn {
    background: -moz-linear-gradient(#00A0E9 0%, #003686 100%);
    background: -webkit-linear-gradient(#00A0E9 0%, #003686 100%);
    background: linear-gradient(#00A0E9 0%, #003686 100%);
}

.contact_btn span{
    display: inline-block;
    width:4%;
    height: auto;
    position: absolute;
    top: 50%;
    right: 7px;
    transform: translate(-50%,-50%);
}
@media (max-width: 750px) {
    .contact{
        margin: 0 20px;
    } 
    .contact_btn {
        font-size: 120%;
    }
}

/*** features ***/
.features_in{
    display: flex;
    justify-content: center;
    padding: 20px;
    background-color: rgba(255, 255, 255,0.75);
    border: solid 3px #0086D1;
    border-radius: 20px;
    align-items: center;
    margin: 30px auto;
}
@media (max-width: 750px) {
    .features_in{
        display:block;
        margin: 20px 20px;
    }
}


.features_number{
    width: 8%;
}
@media (max-width: 750px) {
    .features_number{
        width: 13%;
        margin: auto;
    }
}

.features_write{
    width:70%;
    margin-left: 20px;
}
@media (max-width: 750px) {
    .features_write{
        width: 100%;
        margin: auto;
        padding-top: 20px;
    }
}

.features_write_second{
    width:70%;
    margin-left: 20px;
}
@media (max-width: 750px) {
    .features_write_second{
        margin: auto;
        padding-top: 20px;
    }
}


.features_write img{
    width:60%;
}
@media (max-width: 750px) {
    .features_write img{
        width: 100%;
    }
}

.features_write_second img{
    width:45%;
}
@media (max-width: 750px) {
    .features_write_second img{
        width: 100%;
    }
}

.features_in p{
    line-height: 2em;
    margin-bottom: 0;
    font-weight: 600;
}
@media (max-width: 750px) {
    .features_in p{
        line-height: 1.5em;
    }
}

.features_image{
    width: 25%;
    margin-left: 60px;
}
@media (max-width: 750px) {
    .features_image{
        width: 65%;
        margin: auto;
        padding-top: 20px;
    }
}

.features_image_third {
    width: 22%;
    margin-left: 80px;
}
@media (max-width: 750px) {
    .features_image_third{
        width: 40%;
        margin: auto;
    }
}

.features_image_third img{
    width: 70%;
    margin: 15px auto;
}
@media (max-width: 750px) {
    .features_image_third img{
        width: 100%;
    }
}



/*** contents ***/
.contents_in{
    background-image: url("../img/contents_bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px 0;
    
}


.contents_in p{
    text-align: center;
    font-weight: 600;
}
@media (max-width: 750px) {
    .contents_in p{
        margin: 0 20px;
    }
}


.contents_item{
    max-width: 800px;
    margin: auto;
}

.contents_item div{
    width: 90%;
    margin:20px auto;
}

/*** probrems ***/

.probrems .title{
    width: 70%;
    margin: 20px auto;
    max-width: 500px;
}
@media (max-width: 750px) {
    .probrems .title{
        width: 80%;
        margin-bottom: 0;
    }
}

.probrems_in{
   
} 

/*----------------------------------------------------------------------*/
/*タブメニュー
/*----------------------------------------------------------------------*/
.prefectures_tab{
    margin:0 auto;
    overflow:hidden;
    display: flex;
    align-items: flex-end;
    position: relative;
    height: 180px;
    justify-content: center;
}
@media (max-width: 750px) {
    .prefectures_tab{
        height: 140px;
    }
}


.prefectures_tab li{
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding:15px 50px;
    float:left;
    margin-left:10px;
    font-size: 2.3rem;
    cursor:pointer;
    -webkit-transition: .3s;
    transition: .3s;
    width: 38%;
    text-align: center;
    height: 60px;
    display: table;
 }
@media (max-width: 750px) {
    .prefectures_tab li{
        height: 30px;
    }
}

.prefectures_tab p{
    line-height:1em;
    letter-spacing: 0;
    display: table-cell;
    vertical-align: middle;
    font-size: 80%;
}
@media (max-width: 750px) {
    .prefectures_tab p{
        margin: 0;
    }
}



.prefectures_tab p .corporation_select{
    display: none;
}
.prefectures_tab p .local_select{
    display: none;
}

.corporation span{
    font-size: 50%;
    display: block;
    font-weight: 600;
}
 .caution .caution_in{
    display: none;
}
@media (max-width: 750px) {
    .corporation span{
        line-height: 1.3em;
    }
    
    .caution .caution_in{
        font-size: 75%;
        line-height: 1.5em;
        display: inline-block;
        font-weight: 400;
    }
}

.corporation{
    background:#D0F2FF;
}

.local{
    background:#DEFFD0;
}

.prefectures_tab li:first-child{
     margin-left:0;
}
.prefectures_tab li.select{
    height: 90px;  
}
@media (max-width: 750px) {
    .prefectures_tab li.select{
        height:60px;
    }
}

.prefectures_tab .select{
    height: 90px;
    
}
.prefectures_tab .select .corporation_select{
    display: block;
    position: absolute;
    top:0;
    width: 9%;
    left: 20%;
}
@media (max-width: 750px) {
    .prefectures_tab .select .corporation_select{
        top: 18px;
        left: 23%;
    }
}
@media screen and (max-width: 575px) {
	.prefectures_tab .select .corporation_select{
        left: 21%;
        top: 25px;
    }
}
@media screen and (max-width: 450px) {
	.prefectures_tab .select .corporation_select{
         left: 20%;
        top: 30px;
    }
}

.prefectures_tab .select .local_select{
    display: block;
    position: absolute;
    top:0;
    width: 9%;
    right: 21%;
}
@media (max-width: 750px) {
    .prefectures_tab .select .local_select{
        top: 18px;
        right: 23%;
    }
}
@media screen and (max-width: 575px) {
	.prefectures_tab .select .local_select{
        right: 21%;
        top: 25px;
    }
}
@media screen and (max-width: 450px) {
	.prefectures_tab .select .local_select{
        right: 20%;
        top: 30px;
    }
}

.prefectures_list{
    padding-bottom: 20px;
    margin-top: 0;
}

.prefectures_list .corporation{
    background: #D0F2FF;
}

.prefectures_list .local{
    background: #DEFFD0;
}

.prefectures_list div{
    padding-top: 30px;
    padding-bottom:30px;
    margin: auto;
}
.corporation .corporation_write{
    max-width: 650px;
}

.local .local_write{
    max-width: 750px;
}

.prefectures_list li{
    padding: 60px 0px;
    display: block;
 }

.prefectures .hide {
    display:none;
}

.prefectures_list .caution{
    text-align: right;
}
@media screen and (max-width: 750px) {
	.prefectures_list .caution{
        text-align: left;
    }
}


@media screen and (max-width: 750px) {
	/*----------------------------------------------------------------------*/
	/*タブメニュー[sp]
	/*----------------------------------------------------------------------*/
	.prefectures_tab{
		width:100%;
		min-width:300px;
		overflow:hidden;
	}
	.prefectures_tab li{
		padding:10px 20px;
		 float:left;
		 margin-left:10px;
		 font-size: 1.6rem;
		 cursor:pointer;
		 -webkit-transition: .3s;
		 transition: .3s;
	 }
	.prefectures_tab li.select{
        
	}
	.prefectures_list{

	}
	.prefectures_list li{
        padding: 0;
		 -webkit-transition: .3s;
		 transition: .3s;

	 }
	.prefectures .hide {
		display:none;
	}
    
    .prefectures_list div{
        margin: 0 20px;
        padding-bottom: 10px;
    }

}


/*** introduction ***/
.introduction_flex{
    display: flex;
}
@media screen and (max-width: 750px) {
	.introduction_flex{
        display: block;
    }

}

.introduction_in{
    margin: auto;
}


 /*** price ***/
.price .title{
    max-width: 220px;
}

.price .caution{
    text-align: right;
    margin: 0;
    font-size:100%;
    position: relative;
}

.price_in{
    margin: auto;
}

.price .caution {
    margin-right: 30px;
}

.price .caution span{
    text-decoration: underline;
}

.price .caution img{
    width: 2%;
    position: absolute;
    top:7px;
}
@media screen and (max-width: 750px) {
	.price .caution img{
        width:15px;
        top:5px;
    }
}

/*** flow ***/
.flow .title{
    width: 80%;
    margin: 20px auto;
    max-width: 700px;
}

.flow_in{
    background-color: #D0F2FF;
    padding: 50px 0;
    margin: auto;
}
@media screen and (max-width: 750px) {
	.flow_in{
        padding: 30px 20px;
    }
}

.flow_flex{
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 750px;
    margin:30px auto;
}
@media screen and (max-width: 750px) {
	.flow_flex{
        display: block;
        margin: auto;
        width: 90%;
        padding-bottom: 20px;
        padding-top: 40px;
    }
}

.flow_item{
    margin: auto;
}

.flow .caution_left{
    width: 45%;
    text-align: center;
    border: solid 4px #036EB8;
    height: 90px;
    line-height: 90px;
}
@media screen and (max-width: 750px) {
	.flow .caution_left{
        height: 30px;
        line-height: 30px;
        border: solid 2px #036EB8;
        width: 100%;
        margin: auto;
        font-size: 140%;
    }
}

.flow .caution_right{
    padding-left: 20px;
    height: 90px;
    font-weight: 600;
}
@media screen and (max-width: 750px) {
	.flow .caution_right{
        padding-left: 0px;
        height:auto;
        width: 100%;
        margin:10px auto;
        font-size: 120%;
        font-weight: 400;
    }
}

.q_in{
    margin: auto;
}



/*** question ***/
.question .title{
    max-width: 240px;
}


.qa-list{
    text-align:left;
}
@media screen and (max-width: 750px) {
	.qa-list{
        margin:0px 20px;
    }
}

.qa-list dl {
    position: relative;
    margin: 20px 0;
    cursor: pointer;
    border: 2px solid #036EB8;
    border-top-right-radius: 20px; 
    border-top-left-radius: 20px;
}
@media screen and (max-width: 750px) {
	.qa-list dl{
        margin:0px 0px 20px 0;
    }
}


.qa-list dl:last-child {
    margin-bottom: 30px;
}

.qa-list p{
    text-align: left;
    letter-spacing: 0.2em;
}

.qa-list dl::before {
    position: absolute;
    top:30px;
    right: 35px;
    display: block;
    width: 10px;
    height: 10px;
    margin: auto;
    content: '';
    transform: rotate(135deg);
    border-top: 3px solid #036EB8;
    border-right: 3px solid #036EB8;
}
@media screen and (max-width: 750px) {
	.qa-list dl::before {
        top:10px;
        right: 15px;
        width: 8px;
        height: 8px;
    }
}
.qa-list .open::before {
    transform: rotate(-45deg);
}
.qa-list dl dt {
    position: relative;
    color: #036EB8;
    margin: 0;
    padding: 20px 20px 20px 80px;
    font-weight: bold;
    font-size: 20px;
    background: linear-gradient(
                  270deg,
                  transparent 0%,
                  transparent 92%,
                  #036EB8 92%,
                  #036EB8 100%
                );  
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    letter-spacing: 0.2em;
}
@media screen and (max-width: 750px) {
	.qa-list dl dt{
        padding: 10px 10px 10px 50px;
        font-size:90%;
        background: linear-gradient(
                      270deg,
                      transparent 0%,
                      transparent 94%,
                      #036EB8 94%,
                      #036EB8 100%
                    );  
    }
}
@media screen and (max-width: 575px) {
	.qa-list dl dt{
        padding: 10px 10px 10px 50px;
        font-size:90%;
        background: linear-gradient(
                      270deg,
                      transparent 0%,
                      transparent 90%,
                      #036EB8 90%,
                      #036EB8 100%
                    );  
    }
}
@media screen and (max-width: 380px) {
	.qa-list dl dt{
        padding: 10px 10px 10px 45px;
        font-size:92%;
        background: linear-gradient(
                      270deg,
                      transparent 0%,
                      transparent 87%,
                      #036EB8 87%,
                      #036EB8 100%
                    );  
    }
}

.qa-list .open{
    border-radius: 20px;
}

.qa-list .open dt{
   
}

.qa-list dl dt::before {
    font-size: 150%;
    line-height: 1;
    position: absolute;
    top: 25%;
    left: 25px;
    display: block;
    color: #fff;
    content: 'Q';
}
@media screen and (max-width: 750px) {
	.qa-list dl dt::before {
        left: 10px;
    }
}

.qa-list dl dd::before {
    font-size: 180%;
    line-height: 1;
    position: absolute;
    top: 15%;
    left: 30px;
    color: #036EB8;
    display: block;
    content: 'A';
    font-weight: bold;    
}
@media screen and (max-width: 750px) {
	.qa-list dl dd::before {
        left: 10px;
    }
    .qa-list .qa_second dd::before {
        top:10px;
    }
    
}

.qa-list dl dd {
    position: relative;
    display: none;
    height: auto;
    padding: 10px 0 10px 80px;
    border-top: solid #036EB8 2px;
    margin-left: 0;
}
@media screen and (max-width: 750px) {
	.qa-list dl dd {
        padding: 10px 0 10px 50px;
    }
}

.qa-list dl dd p {
    margin: 30px 0 0;
}
.qa-list dl dd p:first-child{
    margin-top: 0;
}

.qa-list normalbutton a{
    text-decoration: none;
}

.qa span{
    text-decoration: underline;
    margin-right: 20px;
}

.qa img{
    width: 2%;
    position: absolute;
    top:17px;
}
@media screen and (max-width: 750px) {
    .qa img{
        width:15px;
        top:12px;
    }
}






/*///////////////////////////////
	footer
///////////////////////////////*/

.l-footer * {
	box-sizing: border-box;
}
.l-footer {
	position: relative;
	margin-top: 52px;
	padding-bottom: 64px;
	overflow: hidden;
	font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic", "メイリオ", Meiryo, sans-serif;
}
@media print, screen and (max-width: 750px) {
	.l-footer {
		margin-top: 0;
	}
}
.l-footer:after {
	position: absolute;
	bottom: 0;
	left: 50%;
	display: block;
	width: 140%;
	height: 46px;
	margin: auto;
	background-color: #13a74a;
	border-top-left-radius: 50% 100%;
	border-top-right-radius: 50% 100%;
	content: "";
	-webkit-transform: translateX(-50%);
					transform: translateX(-50%);
}
@media print, screen and (max-width: 750px) {
	.l-footer:after {
		width: 150%;
		height: 36px;
	}
}

.l-footer__inner {
	margin: 0 auto;
	padding: 0 15px;
}
@media print, screen and (max-width: 750px) {
	.l-footer__inner {
		padding: 26px 15px 0;
	}
}

.l-footer__middle {
	margin-top: 70px;
}
@media print, screen and (max-width: 750px) {
	.l-footer__middle {
		margin-top: 40px;
	}
}

.l-footer__bottom {
	margin-top: 18px;
}
@media print, screen and (max-width: 750px) {
	.l-footer__bottom {
		margin-top: 14px;
	}
}

/* ***************************
footerNav
*************************** */
.c-footerNav__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
@media print, screen and (max-width: 750px) {
	.c-footerNav__list {
		margin: 0;
		justify-content: flex-start;
	}
}

.c-footerNav__item {
	position: relative;
	margin-top: 0;
	padding: 5px 0 5px 22px;
}
@media print, screen and (max-width: 750px) {
	.c-footerNav__item {
		width: 33.33333%;
		padding-top: 10px;
		padding-right: 10px;
		padding-bottom: 10px;
	}
}
@media print, screen and (max-width: 540px) {
	.c-footerNav__item {
		width: 50%;
	}
}
.c-footerNav__item:before {
	position: absolute;
	top: 0.75em;
	left: 0;
	width: 18px;
	height: 18px;
	background-color: transparent;
	background-image: url(../img/icon-arrow.svg);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	border-radius: 0;
	content: "";
}
@media print, screen and (max-width: 750px) {
	.c-footerNav__item:before {
		top: 1.1em;
		width: 17px;
		height: 17px;
	}
}
.c-footerNav__item + .c-footerNav__item {
	margin-left: 26px;
}
@media print, screen and (max-width: 750px) {
	.c-footerNav__item + .c-footerNav__item {
		margin-left: 0;
	}
}

_::-webkit-full-page-media, _:future, :root .c-footerNav__item:before {
	top: 0.7em;
}

@media print, screen and (max-width: 750px) {
	_::-webkit-full-page-media, _:future, :root .c-footerNav__item:before {
		top: 1em;
	}
}
.c-footerNav__link {
	color: #0f303f;
	font-size: 1rem;
	line-height: 1.875;
	font-weight: 700;
	text-decoration: none;
}
@media print, screen and (max-width: 750px) {
	.c-footerNav__link {
		font-size: 1rem;
		line-height: 1.9285714286;
	}
}
@media print, screen and (min-width: 769px) {
	.c-footerNav__link:hover {
		text-decoration: underline;
	}
}
.c-footerNav__link:hover, .c-footerNav__link:visited, .c-footerNav__link:focus {
	color: #0f303f;
}

/* ***************************
footerLink
*************************** */
.c-footerLink {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
@media print, screen and (max-width: 750px) {
	.c-footerLink {
		justify-content: flex-start;
	}
}

.c-footerLink__item {
	position: relative;
	padding: 0 18px;
	margin: 5px 0 4px -1px;
}
@media print, screen and (max-width: 750px) {
	.c-footerLink__item {
		width: 33.33333%;
		padding: 8px 10px 7px 0;
	}
}
@media print, screen and (max-width: 540px) {
	.c-footerLink__item {
		width: 50%;
	}
}
.c-footerLink__item:first-child {
	padding-left: 0;
}
.c-footerLink__item:last-child {
	padding-right: 0;
}
.c-footerLink__item:before {
	content: none;
}
.c-footerLink__item + .c-footerLink__item:before {
	position: absolute;
	top: 0.25em;
	left: 0;
	width: 2px;
	height: 18px;
	background-color: #0f303f;
	content: "";
}
@media print, screen and (max-width: 750px) {
	.c-footerLink__item + .c-footerLink__item:before {
		content: none;
	}
}

.c-footerLink__link {
	color: #0f303f;
	font-size: 1rem;
	line-height: 1.5;
	font-weight: 700;
	text-decoration: none;
}
@media print, screen and (max-width: 750px) {
	.c-footerLink__link {
		font-size: 1rem;
		line-height: 1.4285714286;
	}
}
@media print, screen and (min-width: 769px) {
	.c-footerLink__link:hover {
		text-decoration: underline;
	}
}
.c-footerLink__link:hover, .c-footerLink__link:visited, .c-footerLink__link:focus {
	color: #0f303f;
}

/* ***************************
returnTop
*************************** */
.c-returnTop {
}

.c-returnTop__inner {
	position: fixed;
	bottom:20px;
	right: calc(50% - 590px);
	max-width: 1210px;
	margin: 0;
	padding: 0;
	z-index: 1;
}
@media print, screen and (max-width: 1240px) {
	.c-returnTop__inner {
		right: 15px;
	}
}
.c-returnTop__inner.is-fixed {
	position: fixed;
	top: auto;
	bottom: 30px;
}

.c-returnTop__link {
	display: block;
	width: 60px;
	height: 60px;
	margin-left: auto;
	font-size: 0%;
	line-height: 0;
	background-color: #0069b7;
	background-image: url(../img/btn-top.png);
	background-position: 15px 15px;
	background-repeat: no-repeat;
	background-size: 30px 30px;
	border-radius: 8px;
	transition: background-position 0.3s;
}
@media print, screen and (max-width: 750px) {
	.c-returnTop__link {
		width: 50px;
		height: 50px;
		background-position: 10px 10px;
	}
}
@media print, screen and (min-width: 769px) {
	.c-returnTop__link:hover {
		background-position: 15px 9px;
	}
}

/* ***************************
copyright
*************************** */
.c-copyright {
	display: block;
	font-size: 0.875rem;
	line-height: 1.7142857143;
	text-align: center;
}
@media print, screen and (max-width: 750px) {
	.c-copyright {
		font-size: 0.8571428571rem;
		line-height: 1.5;
	}
}

/* ***************************
display
*************************** */
@media print, screen and (max-width: 750px) {
	.u-pcOnly {
		display: none !important;
	}
}

@media print, screen and (min-width: 769px) {
	.u-spOnly {
		display: none !important;
	}
}

.u-block {
	display: block;
}

.u-inline {
	display: inline;
}

.u-inlineBlock {
	display: inline-block;
}




