
@media screen and (min-width:1241px){
  .pc_hide{
    display: none!important;
  }
}/*@media screen and (min-width:1241px){*/

@media screen and (max-width:1240px){
  .pad_hide{
    display: none!important;
  }

  body.fixed {
    width: 100%;
    height: 100%;
    position: fixed;
  }

  main{
    /* padding-top: 0; */
  }

  a:hover{
    opacity: 1;
  }

  /*
  ----------------------------------------------------
  以下、共通アニメーション
  ----------------------------------------------------
  */

  .common_hover_opa:hover{
    opacity:1;
  }

  /*
  ----------------------------------------------------
  以下、共通パーツ
  ----------------------------------------------------
  */

  .container{
    max-width: 600px;
    margin:0 auto;
  }

  /*波線がついたタイトル*/


  .common_wave_title::after{
    width: 61px;
    height: 8px;
    margin-top: 24px;
  }

  .common_wave_title .sec_title{
    font-size: 38px;
    line-height: 1.42;
  }

  /*セクションごとのタイトル*/
  .common_sec_title{
    font-size: 30px;
    line-height: 1.3;
    padding: 16px 16px 16px 30px;
    border-left: 6px solid #276ed8;
  }

  .common_sec_title span{
    font-size: 26px;
  }


  /*24時間365日オンライン受付中！お申込みはこちらボタン */

  .common_appli_link{
    width: 500px;
    max-width: 100%;
    height: 100px;
  }

  .common_appli_link::after{
    width: 32px;
    height: 32px;
    right:30px;
  }


  .common_appli_link .common_appli_link_body::before{
    width: 648px;
    height: 118px;
    bottom: 36px;
  }

  .common_appli_link .common_appli_link_text{
    font-size: 28px;
  }

  .common_appli_link .common_appli_link_text::before{
    width: 35px;
    height: 35px;
    margin-right: 12px;
    margin-top: 5px;
  }

  .common_appli_link .common_appli_link_head{
    top:-20px;
  }

  .common_appli_link .common_appli_link_head_text{
    width: 360px;
    height:40px;
    border-radius: 20px;
    font-size: 18px;
  }

  .common_appli_link .common_appli_link_head_text::before{
    border-width: 12px 6px 0 6px;
  }

  .common_appli_link .common_appli_link_head_text::after{
    border-width: 10px 5px 0 5px;
    top:calc(100% - 1px);
  }

  /*
  ----------------------------------------------------
  以下、共通セクション
  ----------------------------------------------------
  */

  /*
  ----------------------------------------------------
  ヘッダー
  ----------------------------------------------------
  */

  header{
    
  }
  
  header .header_line01{
    height:34px;
    padding:0 20px 0 28px;
    position: relative;
    z-index: 40;
  }
  
  header .header_line01 .header_h1{
    font-size: 13px;
    color:#fff;
  }
  
  header .header_line01 ul{
    display: none;
  }
  
  header .header_line02{
    height:90px;
    padding-left: 24px;
    padding-right: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 40;
  }
  
  header .header_line02 .header_logo{
    display: block;
  }
  
  header .header_line02 .header_logo img{
    height:58px;
    width:auto;
  }
  
  header .header_line02 .parent_menu{
    display: none;
  }

  header .drawer_open{
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
  }

  header .drawer_open .bar_frame{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width:64px;
    height:32px;
  }

  header .drawer_open .bar{
    width: 100%;
    height: 5px;
    background-image: linear-gradient(to top, #0080ca, #286dd8);
    transition-duration: 0.5s;
  }

  header .drawer_open.active .bar1 {
    transform: translateY(12.8px) rotate(-45deg);
  }
  header .drawer_open.active .bar2 {
    display: none;
  }
  header .drawer_open.active .bar3 {
    transform: translateY(-12.8px) rotate(45deg);
  }

  header .drawer_open p{
    margin-top: 10px;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    color: #087ecb;
  }

  #drawer_menu_bg{
    position: fixed;
    top:0;
    left:0;
    z-index: 35;
    width:100%;
    height:100vh;
    background-color: rgba(0,0,0,0.6);
    opacity: 0;
    pointer-events: none;
    transition-duration: 0.7s;
  }

  #drawer_menu_bg.show{
    opacity: 1;
    pointer-events: auto;
  }

  #drawer_menu{
    position: fixed;
    top:0;
    right:0;
    z-index:36;
    width:100%;
    max-width: 450px;
    height: calc(100vh );
    height: calc(var(--vh2, 1vh) * 100);
    opacity: 0;
    pointer-events: none;
    transition-duration: 0.7s;
    padding-top: 124px;
    background-image: linear-gradient(to left, #0080ca, #286dd8);
  }

  #drawer_menu.show{
    opacity: 1;
    pointer-events: auto;
  }
  
  #drawer_menu .drawer_frame{
    height:100%;
    overflow-y: scroll;
  }

  #drawer_menu .drawer_contents{
    padding:12px 0 24px;
  }

  #drawer_menu .drawer_parent_menu{
    display: flex;
    flex-wrap: wrap;
  }

  #drawer_menu .drawer_parent_item{
    width:50%;
    border-bottom: 1px solid #fff;
  }

  #drawer_menu .drawer_parent_item:first-child{
    width:100%;
  }

  #drawer_menu .drawer_parent_item:nth-child(2n){
    width:50%;
    border-right: 1px solid #fff;
  }

  #drawer_menu .drawer_parent_link{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width:100%;
    height:80px;
  }

  #drawer_menu .drawer_parent_link .icon{
    height:27px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #drawer_menu .drawer_parent_link .icon_home{
    height:27px;
  }
  #drawer_menu .drawer_parent_link .icon_service{
    height:27px;
  }
  #drawer_menu .drawer_parent_link .icon_fee{
    height:26px;
  }
  #drawer_menu .drawer_parent_link .icon_renewal{
    height:20px;
  }
  #drawer_menu .drawer_parent_link .icon_lapse{
    height:19px;
  }
  #drawer_menu .drawer_parent_link .icon_loss{
    height:25px;
  }
  #drawer_menu .drawer_parent_link .icon_correction{
    height:20px;
  }

  #drawer_menu .drawer_parent_link p{
    font-size: 18px;
    line-height: 1;
    margin-top: 10px;
    color: #fff;
  }

  #drawer_menu .drawer_min_menu{
    display: flex;
    flex-wrap: wrap;
  } 

  #drawer_menu .drawer_min_menu li{
    width:50%;
    margin-top: 20px;
    padding-left: 15px;
    
  }

  #drawer_menu .drawer_min_menu li a{
    display: flex;
    align-items: center;
    width: fit-content;
    font-size: 13px;
    color:#fff;
    line-height: 1;
    white-space: nowrap;
  }

  #drawer_menu .drawer_min_menu li a img{
    width:14px;
    margin-right: 6px;
  }


  #drawer_menu .button_area{
    padding:0 15px;
    margin-top: 36px;
  }

  #drawer_menu .button_area a{
    display: block;
    width:100%;
    border-radius: 10px;
    box-shadow: 0px 2.5px 7.5px 0 rgba(24, 25, 25, 0.2);
  }

  #drawer_menu .button_area a img{
    width:100%;
  }

  #drawer_menu .button_area a:last-child{
    margin-top: 12px;
  }


  /*
----------------------------------------------------
フッター
----------------------------------------------------
*/

  footer{
    position: relative;
  }

  #page_top{
    width: 40px;
    height: 40px;
    /* right:20px;
    top:-20px; */
    right:20px;
    bottom:20px;
  }

  footer .footer_inner{
    max-width: 720px;
    margin:0 auto;
  }

  footer .footer_area01{
    padding:36px 0;
  }


  footer .footer_border{
    margin:24px 0;
  }

  footer .footer_flex{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }

  footer .footer_left{
    width:100%;
  }

  footer .footer_logo{
    display: block;
    width:325px;
    margin:0 auto;
  }

  footer .footer_adress{
    margin-top: 24px;
    text-align: center;
    line-height: 2;
    color: #fff;
  }

  footer .button_flex{
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  footer .button_flex .contact_button{
    width: 200px;
    height: 50px;
    border-radius: 25px;
    margin-right: 24px;
  }

  footer .button_flex .contact_button .button_inner::before{
    width: 19px;
    height: 14px;
    left:-26px;
  }

  footer .button_flex .contact_button .button_inner::after{
    width: 16px;
    height: 16px;
    right:-32px;
  }


  footer .button_flex .appli_button{
    width: 200px;
    height: 50px;
    border-radius: 30px;
    line-height: 1.25;
  }


  footer .button_flex .appli_button::before{
    width: 235px;
    height: 75px;
    bottom:16px;
  }

  footer .button_flex .appli_button .button_inner::before{
    width: 18px;
    height: 18px;
    left:-24px;
  }

  footer .button_flex .appli_button .button_inner::after{

    width: 16px;
    height: 16px;
    right:-20px;
  }

  footer .footer_right{
    width: 100%;
    margin-top: 28px;
  }

  footer .footer_nav{
    display: flex;
    justify-content: center;
  }

  footer .footer_menu{
    width:210px;
  }

  footer .footer_menu li{
    margin-top: 20px;
  }

  footer .footer_menu li:first-child{
    margin-top: 0;
  }

  footer .footer_menu li a{
    width: fit-content;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
  }

  footer .footer_menu li a::before{
    width: 7px;
    height: 12px;
    margin-top: 6px;
    margin-right: 10px;
  }

  footer .adress_head{
    font-size: 26px;
    text-align: center;

  }

  footer .map_list{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
  }

  footer .map_block{
    width: 580px;
    min-height: 80px;
    padding:20px 0 24px 20px;
    border-radius: 10px;
    display: flex;
    margin-top: 10px;
  }

  footer .map_block .map_head{
    flex-shrink: 0;
    margin-right: 36px;
  }

  footer .map_block .map_head a{

    width:165px;
    font-size: 20px;
  }

  footer .map_block .map_head a::after{
    width: 21px;
    height: 21px;
    right:0;
  }

  footer .map_block .pre_list{
    display: flex;
    flex-wrap: wrap;
    padding-top: 2px;
    gap:10px 0;
  }

  footer .map_block .pre_list li{
    width:85px;
  }

  footer .map_block .pre_list .pre_item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: fit-content;
    min-width: 55px;
  }

  footer .map_block .pre_list .pre_item::after{
    width: 15px;
    height: 15px;
    margin-left: 10px;
  }


  footer .footer_area02{
    padding-top: 32px;
    /* padding-bottom: 40px; */
    padding-bottom: 120px;
  }

  footer .footer_area02 .min_menu{
    display: flex;
    justify-content: center;
    align-items: center;
    gap:0 16px;
  }

  footer .footer_area02 .min_menu a{
    display: flex;
    align-items: center;
    line-height: 1;
    font-size: 12px;
  }

  footer .footer_area02 .min_menu a::before{
    width: 7px;
    height: 12px;
    margin-right: 5px;
  }

  footer .copy{
    text-align: center;
    margin-top: 40px;
  }

  footer .copy a{
    color: #276ed8;
    border-bottom:1px solid #276ed8;
  }


  /*
  ----------------------------------------------------
  TOPページ
  ----------------------------------------------------
  */

  body.top_body{
    
  }

  body.top_body footer .footer_area02{
    padding-bottom: 40px;
  }
  

  main.top_main{
    padding-top: 124px;
  }

  .top_section{

  }

  .top_mv_section{
    
  }

  .top_mv_section .mv_swiper_button{
    width: 40px;
    height: 40px;
  }
  
  .top_mv_section .mv_swiper_prev{
    right:calc(50% + 320px);
  }
  .top_mv_section .mv_swiper_next{
    left:calc(50% + 320px);
  }
  .top_mv_section .top_mv_slide{
    width:700px;
    padding:0 20px;
  }
  
  .top_mv_section .mv_card{
    height:345px;
  }

  .top_mv_section .mv_card .button_area{
    top:20px;
    right:20px;
    width: 180px;
  }

  .top_about_section{
    padding-top: 60px;
  }

  .top_about_section .top_banner{
    max-width:100%;
    border-radius: 16px;
  }


  .top_about_section .about_box{
    margin-top: 32px;
    padding:40px 0 64px;
    position: relative;
  }

  .top_about_section .about_box::before{
    width:calc(200vw);
    left:calc(50% - 350px);
    z-index:2;
    border-radius: 24px 0 0 24px;
  }

  .top_about_section .about_box_inner{
    position: relative;
    z-index: 3;
  }

  .top_about_section .about_text_contents{
    position: relative;
    width:100%;
    min-height:auto;
  }

  .top_about_section .about_text_contents .orange_head{
    width: 120px;
    height: 34px;
    font-size: 18px;
  }

  .top_about_section .about_text_contents .about_title{
    font-size: 38px;
    line-height: 1.53;
    margin-top: 12px;
  }


  .top_about_section .about_text_contents .about_image{
    position: static;
    top:0;
    left:0;
    max-width: 500px;
    margin-top: 40px;
    margin:40px auto 0; 
  }

  .top_about_section .about_text_contents .about_image img{
    width:100%;
  }

  .top_about_section .about_text_contents .about_text{
    margin-top: 20px;
    line-height: 1.6;
  }

  .top_about_section .about_item_list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 24px;
  }

  .top_about_section .about_item_list li{
    width:580px;
    min-height:160px;
    margin-top: 20px;
  }

  .top_about_section .about_item_list .about_item{
    width:100%;
    min-height:100%;
    padding:20px 60px 20px 30px;
    border-radius: 20px;
  }

  .top_about_section .about_item_list .about_item::after{
    width:32px;
    height:32px;
    right:20px;
    bottom:15px;
  }

  .top_about_section .about_item_list .about_item_icon{
    width:112px;
    flex-shrink: 0;
    margin-right: 20px;
  }


  .top_about_section .about_item_list .about_item_name{
    font-size: 28px;
  }

  .top_about_section .about_item_list .about_item_info{
    line-height: 1.63;
    margin-top: 12px;
  }

  .top_map_section{
    padding-top: 250px;
    padding-bottom: 96px;
    margin-top: -150px;
  
  } 

  .top_map_section::before{
    height:calc(100% + 140px);
  }


  .top_map_section .sec_title{
    font-size: 46px;
    line-height: 1.43;
  }

  .top_map_section .sec_title span{
    width: 90px;
    height: 90px;
    font-size: 24px;
    line-height: 1.21;
    top:-28px;
    right:-12px;
  }

  .top_map_section .sec_sub_text{
    margin-top: 36px;
    line-height: 1.5;
  }

  .top_map_section .map_frame{
    margin-top: 80px;
    padding-left: 0;
    position: relative;
    height:auto;
  }

  .top_map_section .map_frame .map{
    width:900px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);

  }

  .top_map_section .map_text{
    margin-top: 48px;
  }

  .top_map_section .map_list{
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .top_map_section .map_block{
    padding:25px 25px 20px;
    position: static;
    border-radius: 20px;
    width:100%;
    z-index: 2;
    margin-top: 16px;
  }

  .top_map_section .map_block_chubu{
    min-height: auto;
  }

  .top_map_section .map_block .map_head{
    text-align: center;
  }

  .top_map_section .map_block .map_head a{
    font-size: 20px;
  }

  .top_map_section .map_block .map_head a::after{
    width:10px;
    height:16px;
    right:-24px;
  }

  .top_map_section .map_block .pre_list{
    display: flex;
    flex-wrap: wrap;
    gap:10px;
    margin-top: 16px;
    margin-left: auto;
    margin-right: auto;
  }

  .top_map_section .map_block .pre_list.pre_colum01{
    width:100%;
    justify-content: center;
  }
  .top_map_section .map_block .pre_list.pre_colum02{
    width:100%;
    
  }
  .top_map_section .map_block .pre_list.pre_colum03{
    width:100%;
  }
  .top_map_section .map_block .pre_list.pre_colum04{
    width:100%;
  }

  .top_map_section .map_block .pre_item{
    width: 120px;
    height: 40px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px 0 rgba(0, 44, 69, 0.15);
    background-image: linear-gradient(to top, #0080ca, #286dd8);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.1em;
    color: #fff;

  }

  .top_map_section .map_block .pre_item::after{
    content:'';
    width: 7px;
    height: 12px;
    background-image: url('../img/common/angle_right_white.png');
    position: absolute;
    right:10px;
    top:0;
    bottom:0;
    margin:auto;
  }

  .top_flow_section{
    min-height:auto;
    padding-bottom: 300px;
    position: relative;
  } 

  .top_flow_section::after{
    width:calc(50% + 750px);
    min-width: 1710px;
    background-position: bottom;
    background-image: url('../img/top/top_flow_bg.png');
  }

  .top_flow_section .flow_box{
    position: relative;
    padding:60px 0;
  }

  .top_flow_section .flow_box::before{
    width:200vw;
    height:100%;

    right:calc(50% - 350px);
    border-radius: 0 36px 36px 0;
  }

  .top_flow_section .flow_box_inner{
    position: relative;
    z-index: 4;
  }

  .top_flow_section .sec_title{
    font-size: 38px;
    line-height: 1;
  }

  .top_flow_section .sec_title img{
    max-width:458px;
    margin-bottom: 20px;
  }

  .top_flow_section .flow_list{
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
  }

  .top_flow_section .flow_list .dot{
    display: none;
  }

  .top_flow_section .flow_item{
    width: 250px;
    height: 250px;
    padding-top: 56px;
    margin:32px 24px;
    position: relative;
  }

  .top_flow_section .flow_item01::after{
    content:"";
    width:60px;
    border-top:5px dotted #317aea;
    position: absolute;
    top: 50%;
    right: -54px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: 5;
  }

  .top_flow_section .flow_item02::after{
    content:"";
    width:180px;
    border-top:5px dotted #317aea;
    position: absolute;
    transform: rotateZ(-45deg);
    z-index: 5;
    transform-origin: right;
    top:220px;
    right:210px;
  }

  .top_flow_section .flow_item03::after{
    content:"";
    width:60px;
    border-top:5px dotted #317aea;
    position: absolute;
    top: 50%;
    right: -54px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: 5;
  }

  .top_flow_section .flow_item .flow_item_head{
    top:-40px;
  }

  .top_flow_section .flow_item .head01{
    width: 60px;
    height: 22px;
    border-radius: 6px;
    margin-bottom: 12px;
  }

  .top_flow_section .flow_item .head02{
    font-size: 42px;
    line-height: 0.6;
  }

  .top_flow_section .flow_item .icon{
    height:75px;
  }

  .top_flow_section .flow_item .flow_icon01{
    height:69px;
  }
  .top_flow_section .flow_item .flow_icon02{
    height:72px;
  }
  .top_flow_section .flow_item .flow_icon03{
    height:75px;
  }
  .top_flow_section .flow_item .flow_icon04{
    height:75px;
  }

  .top_flow_section .flow_item .flow_text_frame{
    margin-top: 16px;
    height:56px;
  }

  .top_flow_section .flow_item .flow_text_frame p{
    font-size: 24px;
    line-height: 1.25;
  }

  .top_flow_section .flow_item .flow_text_frame p span{
    font-size: 16px;
    line-height: 1.38;
  }

  .top_flow_section .remark_list{
    margin-top: 40px;
  }

  .top_flow_section .remark_list li{
    font-weight: 500;
    line-height: 1.6;
  }

  .top_flow_section .remark_list li::before{
    font-size: 16px;
    line-height: 1.6;
  }


  .top_appli_section{
    position: relative;
    padding:96px 0 ;
  }

  .top_appli_section::before{
    border-radius: 0 0 36px 36px;
  }


  .top_appli_section .container{
    position: relative;
    z-index: 2;
  }

  .top_appli_section .sec_sub_title{
    font-size: 20px;
    margin-bottom: 16px;
  }

  .top_appli_section .p01{
    margin-top: 32px;
    line-height: 1.6;
    text-align: center;
  }

  .top_appli_section .appli_list_frame{
    width: 100%;
    margin:0;
    margin-top: 96px;
  }

  .top_appli_section .appli_list{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    margin:0 auto;
  }

  .top_appli_section .appli_item{
    width: 500px;
    padding: 90px 0 32px;
    border-radius: 20px;
    border: solid 3px #276ed8;
    margin-top: 96px;
  }

  .top_appli_section .appli_item01{
    margin-top: 0;
  }

  .top_appli_section .appli_item .icon{
    width:126px;
    top:-63px;
  }

  .top_appli_section .appli_item .appli_name{
    font-size: 30px;
    white-space: nowrap;
  }


  .top_appli_section .appli_item .appli_name img{
    width:118px;
    position: absolute;
    left:-2px;
    top:-50px;
  }

  .top_appli_section .appli_item .appli_text{
    line-height: 1.63;
    max-width:86%;
    margin:24px auto 0;
  }

  .top_appli_section .appli_item .appli_text .remark{
    font-size: 14px;
    display: inline-block;
    margin-top: 6px;
  }

  .top_appli_section .appli_item .fee_flex{
    margin-top: 40px;
    font-size: 20px;
  }

  .top_appli_section .appli_item .fee_flex::before,
  .top_appli_section .appli_item .fee_flex::after{
    width:3px;
    height:32px;
    border-radius: 1.5px;
    margin-top: 6px;
  }

  .top_appli_section .appli_item .fee_flex::before{
    transform: rotateZ(-20deg);
    margin-right: 10px;

  }

  .top_appli_section .appli_item .fee_flex::after{
    transform: rotateZ(20deg);
    margin-left: 10px;
  }


  .top_appli_section .appli_item .fee_flex span{
    font-size: 24px;
    display: inline-block;
    margin-right: 6px;
    margin-left: 2px;
  }

  .top_appli_section .appli_item .fee_flex span.num{
    font-size: 42px;
    line-height: 0.6;
    margin-right: 0;
    margin-left: 0;
  }

  .top_appli_section .appli_item .orange_button{
    width: 360px;
    height: 60px;
    border-radius: 30px;
    margin:20px auto 0;
  }

  .top_appli_section .appli_item .orange_button::before{
    width:380px;
    height:75px;
    bottom:24px;
  }

  .top_appli_section .appli_item .orange_button .button_inner{
    font-size: 22px;
    font-feature-settings: 'palt';
  }

  .top_appli_section .appli_item .orange_button .button_inner span{
    font-size: 16px;
  }


  .top_appli_section .appli_item .orange_button .button_inner::after{
    width:23px;
    height:23px;

  }

  .top_appli_section .appli_item .orange_button.appli .button_inner::before{
    width:32px;
    height:32px;
    left:-48px;
  }
  .top_appli_section .appli_item .orange_button.appli .button_inner::after{
    right:-48px;
  }

  .top_appli_section .appli_item .orange_button.pdf .button_inner::before{
    width: 28px;
    height: 36px;
    left:-36px;
  }
  .top_appli_section .appli_item .orange_button.pdf .button_inner::after{
    right:-32px;
  }


  .top_appli_section .appli_item .tel{
    pointer-events: none;
    width:fit-content;
    margin:12px auto 0;
    font-size: 42px;
  }

  .top_appli_section .appli_item .tel::before{
    width: 28px;
    height: 37px;
    margin-right: 8px;
  }

  .top_appli_section .appli_item .time_flex{
    margin-top: 8px;
    gap:0 10px;
  }

  .top_appli_section .appli_item .time_head{
    height: 24px;
    padding: 0 10px;
    font-size: 14px;
    margin-right: 6px;
  }

  .top_appli_section .appli_item .time_text{
    font-size: 14px;
  }

  .top_appli_section .appli_item03 .appli_text{
    margin-top: 12px;
  }

  .top_appli_section .faq_box{
    padding:40px 20px 28px;
    border-radius: 20px;
    margin-top: 60px;
  }

  .top_appli_section .faq_box .faq_link{
    width: fit-content;
    margin:24px auto 0;
    position: static;
    height:38px;
    padding:0 16px 0 20px;
    font-size: 14px;
  }

  .top_appli_section .faq_box .faq_link::before{

    width: 16px;
    height: 16px;
    margin-right: 8px;
  }
  .top_appli_section .faq_box .faq_link::after{
    width: 16px;
    height: 16px;
    margin-left: 8px;
  }

  .top_appli_section .faq_box .faq_head{
    font-size: 30px;
  }

  .top_appli_section .faq_box .faq_head::before{
    width:40px;
    height:40px;
    margin-right: 12px;
  }

  .top_appli_section .faq_box .faq_list{
    max-width: 1040px;
    margin:28px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap:20px 32px;
  }

  .top_appli_section .faq_box .faq_list li{
    width:45%;
  }

  .top_appli_section .faq_box .faq_item{
    line-height: 1.63;
  } 

  .top_appli_section .faq_box .faq_item::before{
    width: 7px;
    height: 12px;
    margin-right: 12px;
    margin-top: 7px;
  }

  .top_appli_section .faq_box .faq_item:hover{
    opacity: 1;
    color: #222;
    text-decoration: none;
  }

  .top_feature_section{
    padding-top: 200px;
    padding-bottom: 100px;
    margin-top: -130px;
  }

  .top_feature_section::before{
    background-image: url('../img/top/top_feature_bg.svg');
    border-radius:0 0 36px 36px ;
  }

  .top_feature_section .container{
    position: relative;
    z-index: 1;
    
  }
  .top_feature_section .sec_sub_title{
    font-size: 24px;
    margin-bottom: 12px;
  }

  .top_feature_section .sec_sub_title::before,
  .top_feature_section .sec_sub_title::after{
    width:3px;
    height:40px;
    border-radius: 1.5px;
  }

  .top_feature_section .sec_sub_title::before{
    transform: rotateZ(-40deg);
    margin-right: 28px;
  }
  .top_feature_section .sec_sub_title::after{
    transform: rotateZ(40deg);
    margin-left: 18px;
  }

  .top_feature_section .feature_list_frame{
    width: 100%;
    margin:0;
    margin-top: 60px;
  }

  .top_feature_section .feature_list{
    max-width: 1280px;
    margin:0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap:40px 0;
  }

  .top_feature_section .feature_item{
    width:220px;
  }

  .top_feature_section .feature_item .icon{
    height:220px;
  }


  .top_feature_section .feature_item  .feature_text{
    padding-top: 12px;
    min-height: calc(100% - 220px);
    font-size: 20px;
  }

  .top_feature_section .feature_item  .feature_text .min{
    font-size: 18px;
  }

  .top_feature_section .entry_banner{
    height:260px;
    border-radius: 20px;
    margin-top: 72px;
  }

  .top_feature_section .entry_banner .entry_left{
    width:100%;
    display: flex;
    align-items: center;
    padding-left: 32px;
  }

  .top_feature_section .entry_banner .entry_text01{
    font-size: 38px;
    line-height: 1.1;
  }

  .top_feature_section .entry_banner .entry_text01::before{
    width: 54px;
    height: 40px;
    margin-right: 20px;
  }

  .top_feature_section .entry_banner .entry_text01::after{
    width: 80px;
    height: 80px;
    font-size: 20px;
    right:-90px;
    top:6px;
  }

  .top_feature_section .entry_banner .entry_text02{
    font-size: 20px;
    line-height: 1.4;
    margin-top: 26px;
  }

  .top_feature_section .entry_banner .entry_right{
    width:80px;
  }

  .top_feature_section .entry_banner .entry_right::after{
    width: 42px;
    height: 42px;
  }

  .top_news_section{
    padding:96px 0;
  }

  .top_news_section .flex{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
  }

  .top_news_section .flex .news_area{
    width:100%;
  }

  .top_news_section .news_box{
    margin-top: 48px;
    border-radius: 20px;
    padding:20px 40px 40px;
  }


  .top_news_section .news_item{
    padding:20px 0;
  }

  .top_news_section .news_title{
    font-size: 16px;
    line-height: 1.8;
  }

  .top_news_section .news_title span{
    font-size: 14px;
    line-height: 1;
  }


  .top_news_section .news_area01 .news_title span{
    padding: 0 10px;
    margin-right: 8px;
  }

  .top_news_section .news_area02 .news_title span{
    padding: 0 10px;
    margin-right: 8px;
  }

  .top_news_section .news_area02{
    margin-top: 56px;
  }

  .top_news_section .news_text{
    line-height: 1.63;
    margin-top: 6px;
  }



  .top_news_section .news_button{
    width: 460px;
    height: 100px;
    margin: 60px auto 0;
    border-radius: 50px;
    box-shadow: 0px 5px 15px 0 rgba(1, 34, 53, 0.2);
    border: solid 3px #276ed8;
    background-color: #fff;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: bold;
    line-height: 1;
    color: #2074d4;
    padding-right: 10px;
  } 

  .top_news_section .news_button::after{
    content:'';
    width: 30px;
    height: 30px;
    background-image: url('../img/common/radi_arrow_right_white01.png');
    position: absolute;
    right:40px;
    top:0;
    bottom:0;
    margin:auto;
  }



  /*
  ----------------------------------------------------
  下層共通 下層ページのmv
  ----------------------------------------------------
  */

  .page_fix_menu_area{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 18;
    padding:20px 0;
    /* margin-top: 124px; */
    position: fixed;
    background-color: rgba(104,110,120,0.3);
    transition-duration: 0.4s;
    pointer-events: none;
    opacity: 0;
  }

  .page_fix_menu_area.show{
    opacity: 1;
    pointer-events: auto;
  }

  .page_fix_menu_area .page_fix_menu{
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .page_fix_menu_area .page_fix_menu a{
    width: 240px;
    height: 80px;
    border-radius: 5px;
    box-shadow: 0px 5px 15px 0 rgba(24, 25, 25, 0.20);
    margin:0 10px;
  }

  .page_fix_menu_area .page_fix_menu a:first-child{
    background-image: linear-gradient(to left, #08ab87, #0bac48);
  }
  .page_fix_menu_area .page_fix_menu a:last-child{
    background-image: linear-gradient(to left, #f68529, #f67b29);
  }

  .page_fix_menu_area .page_fix_menu img{
    width: 100%;
    height: 100%;
  }

  .page_mv_section{
    padding:60px 0;
    position: relative;

  }

  .page_mv_section::after{
    min-width:100%;
    width:1920px;
    height:calc(100% + 180px);
  }

  .page_mv_section .common_page_title_set{
    max-width: 720px;
    margin:0 auto;
  }

  .page_mv_section .common_page_title_set .ja_title{
    font-size: 38px;
    line-height: 1.3;
  }

  .page_mv_section .common_page_title_set .en_title{
    font-size: 16px;
    line-height: 1.3;
    margin-top: 16px;

  }

  .common_page_wrap{
    width:720px;
    max-width: 100%;
    min-width: auto;
    border-radius: 96px 96px 0 0;
    padding-top: 24px;
    padding-bottom: 120px;
  } 

  .common_page_flex{
    display: flex;
    flex-direction: column;
  }

  .common_section_wrap{
    width:100%;
  }

  /*
  ----------------------------------------------------
  下層共通 パンクズ
  ----------------------------------------------------
  */

  .common_bread_area{

    padding-bottom: 40px;
  }

  .common_bread_area .bread_list{
    font-size: 14px;
  }

  .common_bread_area .bread_list .arrow{
    margin:3px 12px 0;
    width: 6px;
    height: 10px;
  }

  .common_bread_area .bread_list a{
    line-height: 1.3;
  }

  .common_bread_area .bread_list span{
    line-height: 1.3;
  }

  /*
  ----------------------------------------------------
  下層共通 サイドバー
  ----------------------------------------------------
  */

  .common_sidebar{
    display: none;
  }

  /*
  ----------------------------------------------------
  利用規約
  ----------------------------------------------------
  */

  body.rules_body{
    
  }

  main.rules_main{

  }

  .rules_section{
    padding-bottom: 80px;
  }

  .rules_section:last-child{
    padding-bottom: 0;
  }

  .rules_section .rules_text{
    line-height: 1.6;
    margin-top: 24px;
  }


  .rules_section .rules_text .min{
    font-size: 14px;
  }

  .rules_section .rules_text .tel{
    pointer-events: none;
  }

  .rules_section .rules_text .contact_link{
    margin-top: 4px;
    margin-bottom: 8px;
    line-height: 1.3;
  }

  .rules_section .rules_text .contact_link::after{
    width: 7px;
    height: 12px;
    margin-left: 6px;
  }

  .rules_section .dot_list{
    margin-top: 28px;
  }

  .rules_section .dot_list li{
    padding-left: 30px;
    line-height: 1.6;
    margin-top: 6px;
  }

  .rules_section .dot_list li::before{
    width:12px;
    height:12px;
    margin-right: 12px;
    margin-top: 8px;
  }

  .rules_section .border_list li{
    margin-top:0;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .rules_section .border_list li:first-child{
    padding-top: 0;
  }


  /*
  ----------------------------------------------------
  利用規約
  ----------------------------------------------------
  */

  body.law_body{
    
  }

  main.law_main{

  }

  .law_section{

  }

  .law_section dl{
    display: flex;
    flex-wrap: wrap;
    /* font-feature-settings: 'palt'; */
  }

  .law_section dl dt,
  .law_section dl dd{
    padding-top: 16px;
    padding-bottom: 16px;
    line-height: 1.63;
  }

  .law_section dl dt{
    width:240px;
    padding-left: 30px;
  }

  .law_section dl dd{
    width:calc(100% - 240px);
    border-bottom:1px solid #ddd;
    padding-left: 50px;
    padding-right: 40px;
  }

  .law_section dl dd .min{
    font-size: 14px;
  }


  .law_section dl dd .tel{
    pointer-events: none;
  }


  /*
  ----------------------------------------------------
  利用規約
  ----------------------------------------------------
  */

  body.document_body{
    
  }

  main.document_main{

  }

  .document_section{

  }

  .document_section .p01{
    line-height: 1.6;
  }

  .document_section .p02{
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.5;
  }

  .document_section .color_box{
    margin-top: 32px;
    background-color: #fbf7d1;
    padding:20px 32px;
    margin-bottom: 80px;
  }

  .document_section .p03{
    font-size: 14px;
    line-height: 1.71;
  }

  .document_section .adobe_link{
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.5;
  }

  .document_section .adobe_link::after{
    width: 6px;
    height: 9px;
    margin-left: 4px;
  }

  .document_section .table_frame{
    margin-top: 50px;
    
  }

  .document_section table{
    width: 100%;
    
  }

  .document_section thead{

  }

  .document_section thead th{
    height:60px;
  }

  .document_section thead th:first-child{
    width:200px;
  }

  .document_section thead th:last-child{
    width:calc(100% - 200px);
  }

  .document_section tbody{

  }

  .document_section tbody tr{

  }
  .document_section tbody tr:last-child{
    border-bottom: none;
  }

  .document_section tbody td{
    padding:24px 32px;
    font-feature-settings: 'palt';
  }
  .document_section tbody td:first-child{
    width:200px;
    border-right:1px solid #ccdaec;
  }
  .document_section tbody td:last-child{
    width:calc(100% - 200px);
  }

  .document_section tbody .document_img{
    display: block;
    width:133px;
    margin:0 auto;
  }

  .document_section tbody .document_text01{
    line-height: 2;
  }


  .document_section tbody .document_text02{
    margin-top: 4px;
    font-size: 14px;
    line-height: 1.71;
  }


  .document_section tbody .document_link{
    margin-top: 12px;
  }

  .document_section tbody .document_link a{
    font-size: 14px;
    line-height: 1.5;
    display: inline;
  }

  .document_section tbody .document_link.pdf a::before{
    width: 14px;
    height: 17px;
    margin-right: 6px;
    display: inline-block;
  }

  .document_section tbody .document_link.word a::before{
    width: 16px;
    height: 16px;
    margin-right: 4px;
    display: inline-block;
  }

  .document_section tbody .document_link.jpg a::before{
    width: 14px;
    height: 17px;
    margin-right: 6px;
    display: inline-block;
  }

  /*
  ----------------------------------------------------
  必要書類の送付について
  ----------------------------------------------------
  */

  body.sending_body{
    
  }


  .sending_section01{
    padding-bottom: 80px;
  }

  .sending_section01 .p01{
    line-height: 1.5;
    margin-bottom: 56px;
  }

  .sending_section01 .p02{
    margin-top: 24px;
    line-height: 1.6;
  }


  .sending_section01 .p03{
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.71;
  }

  .sending_section01 .p04{
    margin-top: 24px;
    line-height: 1.5;
  }

  .sending_section01 ul{
    margin-top: 36px;
  }

  .sending_section01 ul li{
    margin-top: 16px;
  }

  .sending_section01 ul li a{
    line-height: 1.5;
  }

  .sending_section01 ul li a::after{
    width: 7px;
    height: 12px;
    margin-left: 6px;
  }

  .sending_section02{

  }

  .sending_section02 .send_box{
    margin-top: 40px;
    display: flex;
    
  }

  .sending_section02 .send_box .send_left{
    width:160px;
    line-height: 1.63;
  }

  .sending_section02 .send_box .send_right{
    width:100%;
    padding:24px 40px;
  }

  .sending_section02 .send_box .send_text01{
    line-height: 1.5;
  }

  .sending_section02 .send_box .send_text02{
    margin-top: 6px;
    line-height: 1.6;
  }

  .sending_section02 .send_box .send_text03{
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.71;
  }

  .sending_section02  .send_text04{
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.71;
  }

  /*
  ----------------------------------------------------
  お支払い方法について
  ----------------------------------------------------
  */

  body.pay_body{
    
  }

  main.pay_main{
    font-feature-settings: 'palt';
  }

  .pay_section01{
    padding-bottom: 80px;
  }

  .pay_section01 .p01{
    line-height: 1.5;
    margin-bottom: 50px;
  }

  .pay_section01 .p02{
    margin-top: 32px;
    line-height: 1.6;
  }

  .pay_section02{
    padding-bottom: 80px;
  }

  .pay_section02 .p01{
    margin-top: 32px;
    line-height: 1.6;
  } 

  .pay_section02 .p02{
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.5;
  } 

  .pay_section02 .bank_frame{
    margin-top: 32px;
  }

  .pay_section02 .bank_box{
    
  }

  .pay_section02 .bank_head{
    padding:20px 0;
    font-size: 18px;
    line-height: 1.3;
  }

  .pay_section02 .bank_body{
    /* padding:24px 0; */
  }

  .pay_section02 .bank_body img{
    width:597px;
    max-width: 95%;
  }

  .pay_section02 .table_frame{
    margin-top: 40px;
  }

  .pay_section02 table{
    width: 100%;
    
  }

  .pay_section02 table th,
  .pay_section02 table td{
    min-width: 120px;
  }

  .pay_section02 table th:nth-child(5),
  .pay_section02 table td:nth-child(5){
    width:290px;
  } 

  .pay_section02 table th{
    height:60px;
    line-height: 1.3;
  }


  .pay_section02 table td{
    padding:8px 2px;
    text-align: center;
    line-height: 1.2;
  }

  .pay_section02 table td span{
    font-size: 14px;
  }

  .pay_section03{
    padding-bottom: 80px;
  }

  .pay_section03 .p01{
    margin-top: 32px;
    line-height: 1.6;
  }

  .pay_section04{

  }

  .pay_section04 .p01{
    margin-top: 32px;
    line-height: 1.6;
  }

  .pay_section04 .p02{
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.71;

  }

  /*
  ----------------------------------------------------
  新免許の送付について
  ----------------------------------------------------
  */

  body.send_body{
    
  }


  .send_section01{
    padding-bottom: 80px;
  }

  .send_section01 .p01{
    line-height: 1.5;
    margin-bottom: 56px;
  }

  .send_section01 .p02{
    line-height: 1.5;
    margin-top: 32px;
  }

  .send_section01 .p03{
    margin-top: 24px;
    line-height: 1.5;
  }

  .send_section01 .p04{
    margin-top: 32px;
    line-height: 1.6;
  }

  .send_section01 ol{
    margin-top: 24px;
  }

  .send_section01 ol li{
    line-height: 1.6;
    padding-left: 32px;
    margin-top: 8px;
  }

  .send_section01 ol li::before{
    width: 24px;
    height: 24px;
    font-size: 14px;
    left:0;
    top:1px
  }


  .send_section02{

  }

  .send_section02 .p01{
    margin-top: 32px;
    line-height: 1.5;
  }


  .send_section02 .p02{
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.5;
  }

  .send_section02 .p03{
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.5;
  }

  /*
  ----------------------------------------------------
  センター概要
  ----------------------------------------------------
  */

  body.center_body{
    
  }


  .center_section{

  }

  .center_section dl{
    display: flex;
    flex-wrap: wrap;
  }

  .center_section dl dt,
  .center_section dl dd{
    padding-top: 16px;
    padding-bottom: 16px;
    line-height: 1.63;
  }

  .center_section dl dt{
    width:240px;
    border-bottom:1px solid #276ed8;
    font-weight: bold;
    padding-left: 30px;
    white-space: nowrap;
  }

  .center_section dl dd{
    width:calc(100% - 240px);
    border-bottom:1px solid #ddd;
    padding-left: 50px;
    padding-right: 40px;
  }

  .center_section dl dd .min{
    font-size: 14px;
  }

  .center_section dl dd .tel{
    pointer-events: none;
  }


  .center_section .common_sec_title{
    margin-top: 40px;
  }

  .center_section .map_frame{
    margin-top: 24px;
    margin-bottom: 40px;
  }

  .center_section .map_frame iframe{
    width:100%;
    height:400px;
  }

  .center_section .map_text{
    margin-bottom: 40px;
  }


  /*
  ----------------------------------------------------
  リンクについて
  ----------------------------------------------------
  */

  body.rink_body{
    
  }

  main.rink_main{

  }

  .rink_section{
    padding-bottom: 80px;
  }

  .rink_section:last-child{
    padding-bottom: 0;
  }


  .rink_section .rink_text{
    line-height: 1.6;
    margin-top: 24px;
  }


  .rink_section .dot_list{
    margin-top: 28px;
  }

  .rink_section .dot_list li{
    padding-left: 30px;
    line-height: 1.6;
    margin-top: 6px;
  }

  .rink_section .dot_list li::before{
    width:12px;
    height:12px;
    margin-right: 12px;
    margin-top: 8px;
  }

  .rink_section .border_list li{
    margin-top:0;
    padding-top: 16px;
    padding-bottom: 16px;
  }


  /*
  ----------------------------------------------------
  全国・運輸局一覧
  ----------------------------------------------------
  */

  body.mlit-list_body{
    
  }

  main.mlit-list_main{

  }

  .mlit-list_section{

  }


  .mlit-list_section .p01{
    line-height: 1.6;
    margin-bottom: 48px;
  }


  .mlit-list_section .table_frame{
    margin-top: 40px;
  }

  .mlit-list_section table{
    width: 100%;
    
    overflow: hidden;
  }

  .mlit-list_section table a.tel{
    pointer-events: none;
  }

  .mlit-list_section table th,
  .mlit-list_section table td{
    min-width: 120px;
  }

  .mlit-list_section table th{
    height:60px;
    line-height: 1.5;
  }

  .mlit-list_section table td{
    padding:8px 2px;
    text-align: center;
    line-height: 1.5;
  }

  .mlit-list_section .common_appli_link{
    margin:64px auto 0;
  }



  /*
  ----------------------------------------------------
  サイトマップ
  ----------------------------------------------------
  */

  body.sitemap_body{
    
  }

  main.sitemap_main{

  }

  .sitemap_section{

  }

  .sitemap_section .dot_list{
    margin-top: 28px;
  }

  .sitemap_section .dot_list li{
    padding-left: 30px;
    line-height: 1.6;
    margin-top: 6px;
  }

  .sitemap_section .dot_list li::before{
    width:12px;
    height:12px;
    margin-right: 12px;
    margin-top: 8px;
    
  }

  .sitemap_section .dot_list li:first-child{
    margin-top: 0;
  }

  .sitemap_section .border_list li{
    margin-top:0;
    padding-top: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #ddd;
  }

  /*
  ----------------------------------------------------
  お知らせ
  ----------------------------------------------------
  */

  body.news_body{
    
  }

  main.news_main{

  }

  .news_section{
    padding-bottom: 80px;
  }

  .news_section:last-child{
    padding-bottom: 0;
  }

  .news_section .flex .news_area{
    margin-top: 40px;
  }

  .news_section .news_box{
    margin-top: 48px;
    border-radius: 20px;
    padding:20px 40px 40px;
  }


  .news_section .news_item{
    padding:20px 0;
  }

  .news_section .news_title{
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
  }


  .news_section .news_title span{
    font-size: 14px;
  }


  .news_section .news_area01 .news_title span{
    padding: 0 10px;
    margin-right: 8px;
  }

  .news_section .news_area02 .news_title span{
    padding: 0 10px;
    margin-right: 8px;
  }

  .news_section .news_text{
    line-height: 1.63;
    margin-top: 6px;
  }


  /*
  ----------------------------------------------------
  更新・失効講習会場住所一覧
  ----------------------------------------------------
  */
  body.address_body{
    
  }

  main.address_main{

  }

  .address_section{

  }

  .address_section .p01{
    line-height: 1.6;
    margin-bottom: 80px;
  }

  .address_section .map_frame{
    margin-top: 80px;
    position: relative;
    height:auto;
    padding-top: 0;
    padding-left: 0;
  }

  .address_section .map_frame .map img{
    width:900px;
    margin:0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }


  .address_section .map_list{
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .address_section .map_block{
    padding:25px 25px 20px;
    position: static;
    border-radius: 20px;
    width:100%;
    z-index: 2;
    margin-top: 16px;
  }

  .address_section .map_block .map_head{
    text-align: center;
  }

  .address_section .map_block .map_head a{
    font-size: 20px;
  }

  .address_section .map_block .map_head a::after{
    width:10px;
    height:16px;
    right:-24px;
  }

  .address_section .map_block .pre_list{
    display: flex;
    flex-wrap: wrap;
    gap:10px;
    margin-top: 16px;
    margin-left: auto;
    margin-right: auto;
  }

  .address_section .map_block .pre_list.pre_colum01{
    width:100%;
    justify-content: center;
  }
  .address_section .map_block .pre_list.pre_colum02{
    width:100%;
    
  }
  .address_section .map_block .pre_list.pre_colum03{
    width:100%;
  }
  .address_section .map_block .pre_list.pre_colum04{
    width:100%;
  }

  .address_section .map_block .pre_item{
    width: 120px;
    height: 40px;
    border-radius: 10px;
  }

  .address_section .map_block .pre_item::after{
    width: 7px;
    height: 12px;
    right:10px;
  }

  .address_section .map_text{
    margin-top: 48px;
    font-size: 14px;
    line-height: 1.71;
    padding:32px;
  }

  .address_section .table_frame{
    margin-top: 56px;
  }

  .address_section table{
    width: 100%;
    overflow: hidden;
  }


  .address_section table thead th{
    height:60px;
    line-height: 1.3;
  }

  .address_section table th,
  .address_section table td{
    min-width: 120px;
  }

  .address_section table td{
    padding:10px 20px;
    line-height: 1.63;
    min-height: 60px;
  }

  .address_section table td br{
    display: none;
  }

  .address_section table tbody td:last-child a:not(.up_link){

  }

  .address_section table tbody td:last-child a:not(.up_link)::before{
    width: 14px;
    height: 20px;
    margin-right: 4px;
    flex-shrink: 0;
  }

  .address_section table .up_link{
    margin-left: auto;
  }

  .address_section .common_appli_link{
    margin:60px auto 0;
  }


  /*
  ----------------------------------------------------
  講習会場詳細
  ----------------------------------------------------
  */

  body.place_body{
    
  }

  .place_section{
    padding-bottom: 80px;
  }

  .place_section .place_text{
    margin-top: 32px;
    line-height: 1.6;
  }

  .place_section .place_link{
    margin-top: 4px;
    margin-bottom: 8px;
    line-height: 1.3;
  }

  .place_section .place_link::after {
    width: 7px;
    height: 12px;
    margin-left: 6px;
  }

  .place_section .map_frame{
    margin-top: 48px;
  }

  .place_section .map_frame iframe{
    height:500px;
  }

  .place_section .dl_flame{
    margin-top: 20px;
  }

  .place_section dl{
    display: flex;
    flex-wrap: wrap;
  }

  .place_section dl dt,
  .place_section dl dd{
    padding-top: 16px;
    padding-bottom: 16px;
    line-height: 1.63;
  }

  .place_section dl dt{
    width:240px;
    border-bottom:1px solid #276ed8;
    padding-left: 30px;
    white-space: nowrap;
  }

  .place_section dl dd{
    width:calc(100% - 240px);
    border-bottom:1px solid #ddd;
    padding-left: 50px;
    padding-right: 40px;
  }

  .place_section dl dd .min{
    font-size: 14px;
  }

  .place_section dl dd .tel{
    pointer-events: none;
  }


  .place_section .access_head{
    margin-top: 40px;
    font-size: 18px;
    line-height: 1.3;
  }

  .place_section .access_head::before{
    width: 4px;
    height: 24px;
    margin-right: 16px;
  }

  .place_section .num_list {
    margin-top: 20px;
  }

  .place_section .num_list li {
    line-height: 1.6;
    padding-left: 32px;
    margin-top: 8px;
  }

  .place_section .num_list li::before {
    width: 24px;
    height: 24px;
    font-size: 14px;
    left: 0;
    top: 1px;
  }

  .place_section .access_text{
    margin-top: 20px;
    line-height: 1.6;
  } 

  .place_section .common_appli_link{
    margin:96px auto 0;
  }


  /*
  ----------------------------------------------------
  更新時期通知メールサービス
  ----------------------------------------------------
  */
  body.mail_body{
    
  }

  main.mail_main{

  }

  .mail_section{

  }

  .mail_section .p01{
    margin-top: 24px;
    line-height: 1.6;
  }

  .mail_section .alert_head{
    margin-top: 48px;
    font-size: 18px;
    line-height: 1.5;
  }

  .mail_section .alert_head::before{
    width: 4px;
    height:24px;
    margin-right: 18px;
  }

  .mail_section .alert_box{
    margin-top: 16px;
    padding:32px 40px;
  }

  .mail_section .alert_box ul li{
    line-height: 1.6;
  }

  .mail_section .mail_link{
    margin:60px auto 0;
    width: 460px;
    height: 100px;

    border: solid 3px #276ed8;
  }

  .mail_section .mail_link::after{
    width: 30px;
    height: 30px;
    right:40px;
  }

  .mail_section .mail_link p{
    font-size: 22px;

  }

  .mail_section .mail_link p span{
    margin-bottom: 8px;
    font-size: 16px;
  }



  /*
  ----------------------------------------------------
  個人情報保護方針
  ----------------------------------------------------
  */

  body.privacy_body{
    
  }

  main.privacy_main{

  }

  .privacy_section{
    padding-bottom: 80px;
  }



  .privacy_section .privacy_text{
    line-height: 1.6;
    margin-top: 24px;
  }

  .privacy_section .privacy_text.p01{
    margin-top: 0;
    margin-bottom: 24px;
  }


  .privacy_section a.tel{
    pointer-events: none;
  }

  .privacy_section .dot_list{
    margin-top: 28px;
  }

  .privacy_section .dot_list li{
    padding-left: 30px;
    line-height: 1.6;
    margin-top: 6px;
  }

  .privacy_section .dot_list li::before{
    width:12px;
    height:12px;
    margin-right: 12px;
    margin-top:8px;
  }

  .privacy_section .dot_list li:first-child{
    margin-top: 0;
  }

  .privacy_section .border_list li{
    margin-top:0;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .privacy_section .border_list li:first-child{
    padding-top: 0;
  }



  /*
  ----------------------------------------------------
  よくある質問
  ----------------------------------------------------
  */

  body.faq_body{
    
  }


  .faq_section{
    
  }

  .faq_section .faq_anchor_list{
    gap:12px;
    margin-bottom: 40px;
  }

  .faq_section .faq_anchor{
    height:30px;
    font-size: 14px;
    padding:0 8px;
  }

  .faq_section .faq_anchor::after{
    border-width: 6px 6px 0 6px;
    margin-left: 6px;
  }

  .faq_section .faq_area{
    margin-top: 48px;
  }

  .faq_section .faq_head{
    font-size: 18px;
    line-height: 1.5;
    padding-left: 20px;
  }

  .faq_section .faq_head::before{
    width:3px;
    height:100%;
  }


  .faq_section .question_area{
    padding-left:80px;
    padding-bottom: 20px;
    padding-right: 56px;
    font-size: 18px;
    line-height: 1.23;
    margin-top: 40px;
  } 

  .faq_section .question_area::after{
    width: 41px;
    height: 41px;
    font-size: 24px;
    top:-8px;
    left:20px;
    padding-bottom: 4px;
    
  }


  .faq_section .answer_area{
    margin-top: 20px;
    padding:24px 56px 24px 80px;
    border-radius: 10px;
    line-height: 1.6;
  }

  .faq_section .answer_area::before{
    width: 41px;
    height: 41px;
    font-size: 24px;
    top:20px;
    left:20px;
    padding-bottom: 4px;
  }

  /*
  ----------------------------------------------------
  ご利用案内
  ----------------------------------------------------
  */

  body.service_body{
    
  }

  main.service_main{

  }

  .service_section{
    
  }

  .service_section .service_link_button{
    padding:12px 12px 12px 28px;
    font-size: 18px;
    line-height: 1.3;
    border: solid 3px #276ed8;
    border-radius: 40px;
  }

  .service_section .service_link_button::after{
    width: 30px;
    height: 30px;
    margin-left: 6px;
  }

  .service_info_section{
    padding-bottom: 72px;
  }

  .service_info_section .p01{
    line-height: 1.6;
    margin-top: 32px; 
  }


  .service_flow_section{
    padding-bottom: 80px;
  }

  .service_flow_section .p01{
    line-height: 1.6;
    margin-top: 32px; 
  }

  .service_flow_section .flow_list{
    margin-top: 72px;
    display: flex;
    justify-content: space-between;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
  }

  .service_flow_section .flow_list .dot{
    display: none;
  }

  .service_flow_section .flow_item{
    width: 250px;
    height: 250px;
    padding-top: 56px;
    margin:32px 24px;
    position: relative;
  }

  .service_flow_section .flow_item01::after{
    content:"";
    width:60px;
    border-top:5px dotted #317aea;
    position: absolute;
    top: 50%;
    right: -54px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: 5;
  }

  .service_flow_section .flow_item02::after{
    content:"";
    width:180px;
    border-top:5px dotted #317aea;
    position: absolute;
    transform: rotateZ(-45deg);
    z-index: 5;
    transform-origin: right;
    top:220px;
    right:210px;
  }

  .service_flow_section .flow_item03::after{
    content:"";
    width:60px;
    border-top:5px dotted #317aea;
    position: absolute;
    top: 50%;
    right: -54px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: 5;
  }

  .service_flow_section .flow_item .flow_item_head{
    top:-40px;
  }

  .service_flow_section .flow_item .head01{
    width: 60px;
    height: 22px;
    border-radius: 6px;
    margin-bottom: 12px;
  }

  .service_flow_section .flow_item .head02{
    font-size: 42px;
    line-height: 0.6;
  }

  .service_flow_section .flow_item .icon{
    height:75px;
  }

  .service_flow_section .flow_item .flow_icon01{
    height:69px;
  }
  .service_flow_section .flow_item .flow_icon02{
    height:72px;
  }
  .service_flow_section .flow_item .flow_icon03{
    height:75px;
  }
  .service_flow_section .flow_item .flow_icon04{
    height:75px;
  }

  .service_flow_section .flow_item .flow_text_frame{
    margin-top: 16px;
    height:56px;
  }

  .service_flow_section .flow_item .flow_text_frame p{
    font-size: 24px;
    line-height: 1.25;
  }

  .service_flow_section .flow_item .flow_text_frame p span{
    font-size: 16px;
    line-height: 1.38;
  }

  .service_flow_section .flow_remark{
    margin-top: 24px;
    line-height: 1.6;
  }


  .service_process_section{
    padding-bottom: 80px;
  }

  .service_process_section .p01{
    margin-top: 32px;
    line-height: 1.6;
  }

  .service_process_section .process_list{
    margin-top: 40px;
  }

  .service_process_section .process_block{
    margin-top: 40px;
    padding:30px 50px 40px 40px;
    border-radius: 20px;
  }

  .service_process_section .process_head{
    font-size: 26px;
    line-height: 1.3;
  }

  .service_process_section .process_head img{
    flex-shrink: 0;
    width:60px;
    margin-right: 12px;
  }

  .service_process_section .process_text{
    margin-top: 12px;
    line-height: 1.6;
  }

  .service_process_section .service_link_button{
    min-width: 360px;
    margin-top: 16px;
  }

  .service_mail_section{

  }

  .service_mail_section .p01{
    margin-top: 32px;
    line-height: 1.6;
  }

  .service_mail_section .service_link_button{
    min-width: 520px;
    margin-top: 32px;
  }

  /*
  ----------------------------------------------------
  全国更新・失効講習日程表
  ----------------------------------------------------
  */

  body.program_body{
    
  }

  main.program_main{

  }

  .program_section{
    
  }

  .program_section .program_text01{
    margin-top: 32px;
    line-height: 1.6;
    padding: 32px;
  }

  .program_section .program_text02{
    font-size: 14px;
    line-height: 1.71;
    margin-top: 40px;
  }

  /*
  ----------------------------------------------------
  日程表　各地方
  ----------------------------------------------------
  */

  body.region_body{
    
  }

  main.region_main{

  }

  /*.region_section{
    padding-bottom: 80px;
  }*/

  .region_section .p01{
    line-height: 1.6;
  }

  .region_section .p02{
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.71;
  }

  .region_section .alert_head{
    margin-top: 48px;
    font-size: 18px;
    font-weight: bold;
    padding-left: 20px;
  } 

  .region_section .alert_head::before{
    width: 4px;
  }

  .region_section .alert_box{
    margin-top: 16px;
    padding:32px;
    line-height: 1.6;
    margin-bottom: 80px;
  }


  .region_section .alert_box .min{
    font-size: 14px;
  }

  .region_section .pre_list{
    gap:20px;
    margin-top: 20px;
  }

  .region_section .pre_link{
    width: 120px;
    height: 40px;
    border-radius: 10px;
  }

  .region_section .pre_link::after{
    width: 7px;
    height: 12px;
    right:10px;
  }


  .region_section .program_link_button{
    width: 380px;
    height:60px;
    margin:80px auto 0;
    font-size: 18px;
    border-radius: 30px;
    border: solid 3px #276ed8;
    padding-left: 20px;
  }

  .region_section .program_link_button::after{
    width: 30px;
    height: 30px;
    margin-left: 12px;
  }


  /*
  ----------------------------------------------------
  日程表　各都道府県
  ----------------------------------------------------
  */

  body.prefecture_body{
    
  }

  main.prefecture_main{

  }

  .prefecture_section{
    padding-bottom: 80px;
  }

  .prefecture_section .common_appli_link{
    margin:60px auto 0;
  }


  .prefecture_section .p01{
    line-height: 1.6;
  }

  .prefecture_section .p02{
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.71;
    
  }


  .prefecture_section .alert_head{
    margin-top: 48px;
    font-size: 18px;
    line-height: 1.3;
    padding-left: 20px;
  } 

  .prefecture_section .alert_head::before{
    width: 4px;    
  }

  .prefecture_section .alert_box{
    margin-top: 16px;
    padding:32px;
    line-height: 1.6;
  }

  .prefecture_section .alert_box .min{
    font-size: 14px;
    letter-spacing: 0.7px;
  }


  .prefecture_program_section{

  } 

  .prefecture_program_section .pre_list {
    gap: 20px;
    margin-top: 20px;
}

.address_section .table_frame {
    margin-top: 30px;
}

  .prefecture_program_section .program_table_frame{
    margin-top: 40px;
    /* overflow-x: scroll; */

  }

  .prefecture_program_section .program_table{
    /* width: 720px; */
    width: 100%;
    overflow: hidden;
  }

  .prefecture_program_section .program_table thead th{
    height:60px;
    line-height: 1.3;
  }

  .prefecture_program_section .program_table thead th span{
    font-size: 14px;
  }

  .prefecture_program_section .program_table th,
  .prefecture_program_section .program_table td{
    /* min-width: 100px; */
    min-width: auto;
  }

  .prefecture_program_section .program_table td{
    padding:10px 6px;
    line-height: 1.63;
    min-height: 60px;
  }

  .prefecture_program_section .program_table td br{
    display: none;
  }


  /*
  ----------------------------------------------------
  フォーム共通
  ----------------------------------------------------
  */

  .common_form_area{

  }

  .common_form_box{
    padding:24px 60px 60px;
    border-radius: 20px;
  }

  .common_form_box .form_line{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding:24px 0;
  }

  .common_form_box .form_left{
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: row-reverse;
    width:100%;
    margin-right: 0;
    line-height: 1.6;
    margin-top: 0;
    padding-top: 0;
  }

  .common_form_box .form_left::after{
    width: 70px;
    height: 32px;
    margin-top: -4px;
    flex-shrink: 0;
    margin-right: 8px;
    margin-left: 0;
    content:none;
  }

  .common_form_box .form_left.must_label::after{
    content: '必須';
  }


  .common_form_box .form_right{
    width:100%;
    margin-top: 16px;
  }

  .common_form_box .alert_text{
    font-size: 14px;
    line-height: 1.71;
  }

  .common_form_box input[type='text'],
  .common_form_box input[type='email'],
  .common_form_box input[type='number']{
    height: 50px;
    padding:0 12px;
  }

  .common_form_box textarea{
    height: 200px!important;
    padding:12px;
  }

  .common_form_box .select_frame::after{

    border-width: 10px 7px 0 7px;
    right:15px;
  }

  .common_form_box select{
    height: 50px;
    padding:0 12px;
  }

  .common_form_box .input_frame + .input_frame{
    margin-top: 20px;
  }

  .common_form_box .input_frame_400{
    max-width: 400px;
  }
  .common_form_box .input_frame_420{
    max-width: 420px;
  }
  .common_form_box .input_frame_490{
    max-width: 490px;
  }

  .common_form_box .radio_list{
    gap:10px 24px;
    padding-top: 10px;
  }

  .common_form_box .radio_list.verti{
    flex-direction: column;
  }

  .common_form_box .radio_list label{
    display: flex!important;
    align-items: flex-start;
    cursor: pointer;
    line-height:1.6;
    margin:0!important;
    padding:0!important;

  }

  .common_form_box .radio_list label input{
    width: 22px;
    height: 22px;
    margin-right: 10px;
    margin-top: 2px;
  }

  .common_form_box .date_area{
    width: fit-content;
  }

  .common_form_box .date_flex{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .common_form_box .date_flex.lecture_date_flex{
    flex-wrap: wrap;
    margin-left: 40px;
    gap:12px 0;
  }

  .common_form_box .date_flex + .date_flex{
    margin-top: 10px;
  }

  .common_form_box .date_flex .date_box{
    display: flex;
    align-items: center;
    margin-left: 16px;
  }

  .common_form_box .date_flex .date_box:first-child{
    margin-left: 0;
  }

  .common_form_box .date_flex .date_box .unit{
    margin-left: 4px;
  }

  .common_form_box .date_flex .date_box_era{
    width:80px;
  }

  .common_form_box .date_flex .date_box_year{
    width:50px;
  }

  .common_form_box .date_flex .date_box_month{
    width:70px;
  }

  .common_form_box .date_flex .date_box_day{
    width:70px;
  }


  .common_form_box .tel_flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 490px;
  }

  .common_form_box .tel_flex .tel_box{
    width:130px;
  }

  .common_form_box .tel_flex .border{
    width: 14px;
    height: 2px;
  }


  .common_form_box .agree_area{
    margin-top: 40px;
  }


  .common_form_box .agree_area .agree_text01{
    line-height: 1.6;
    text-align: center;
  }

  .common_form_box .agree_area .agree_text02{
    font-size: 14px;
    line-height: 1.71;
    text-align: center;
    margin-top: 8px;
  }

  .common_form_box .agree_area .agree_box{
    width: fit-content;
    margin:24px auto 0;

  }

  .common_form_box .agree_area .agree_box::before{
    width: 70px;
    height: 32px;
    margin-right: 8px;
  }


  .common_form_box .agree_area label input{
    margin-right: 8px;
    width:24px;
    height:24px;
  }

  .common_form_box .agree_area div.mfp_err{
    text-align: center;
  }


  .common_form_area .submit_frame{
    margin-top: 50px;
  }

  .common_form_area .submit_frame .submit_button{
    width: 420px;
    height: 80px;
    border-radius: 40px;
    border: solid 3px #276ed8;
    font-size: 18px;
  }

  .common_form_area .submit_frame .submit_button::after{
    width: 30px;
    height: 30px;
    right:30px;
  }

  /*
  ----------------------------------------------------
  更新時期通知メールサービス(フォーム)
  ----------------------------------------------------
  */

  body.mailform_body{
    
  }

  main.mailform_main{

  }

  .mailform_section{

  }

  .mailform_section .p01{
    line-height: 1.6;
    margin-top: 32px;
    padding-bottom: 40px;
  }

  /*
  ----------------------------------------------------
  お問い合わせフォーム
  ----------------------------------------------------
  */

  body.contact_body{
    
  }

  main.contact_main{

  }

  .contact_section{
    padding-bottom: 80px;
  }

  .contact_section:last-child{
    padding-bottom: 0;
  }

  .contact_section01{

  }

  .contact_section01 .p01{
    line-height: 1.6;
  }

  .contact_section01 .p02{
    margin-top: 16px;
    line-height: 1.6;
  }


  .contact_section01 .p02 a::after{
    width: 7px;
    height: 12px;
    margin-left: 8px;
  }

  .contact_section01 .faq_box{
    margin-top: 48px;
    border-radius: 20px;
  }

  .contact_section01 .faq_head{
    padding:20px 16px;
    font-size: 18px;
    line-height: 1.3;
  }

  .contact_section01 .faq_body{
    padding:40px 32px;
  }

  .contact_section01 .faq_body li{
    line-height: 1.6;
    margin-top: 8px;
  }


  .contact_section01 .faq_body li a::before{
    width: 7px;
    height: 12px;
    margin-right: 6px;
  }


  .contact_section02{

  }

  .contact_section02 .contact_flex{
    margin-top: 48px;
    display: flex;
    align-items: flex-start;
  }

  .contact_section02 .contact_left{
    width:120px;
    margin-top: 5px;
  }

  .contact_section02 .contact_left .contact_title{
    font-size: 18px;
    line-height: 1.5;
    padding-left: 20px;
    border-left:4px solid #276ed8;
  }

  .contact_section02 .contact_right{
    width:100%;
  }

  .contact_section02 .contact_right .tel_text{
    font-size: 38px;
    pointer-events: none;
  }

  .contact_section02 .contact_right .tel_text::before{
    width: 24px;
    height: 31px;
    margin-right: 6px;
  }

  .contact_section02 .contact_right .contact_time{
    line-height: 1.4;
    margin-top: 10px;
  }

  .contact_section02 .contact_right .contact_time span{
    font-size: 14px;
    border-radius: 24px;
    padding:2px 10px;
    margin-right: 8px;
  }

  .contact_section02 .contact_right .contact_remark{
    font-size: 14px;
    line-height: 1.71;
    margin-top: 4px;
  }

  .contact_section02 .contact_right .color_box{
    padding:24px 40px;
    margin-top: 24px;
  }

  .contact_section02 .contact_right .color_box_text{
    font-size: 14px;
    line-height: 1.71;
  }

  .contact_section02 .contact_right .color_box_text+.color_box_text{
    margin-top: 20px;
  }

  .contact_section02 .contact_right .fax_text{
    font-size: 38px;
    line-height: 1;
  }


  .contact_section02 .contact_right .fax_text::before{
    width: 30px;
    height: 31px;
    margin-right: 10px;
  }

  .contact_section02 .contact_right .fax_link{
    margin-top: 12px;
  }

  .contact_section02 .contact_right .fax_link a{
    font-size: 14px;
    line-height: 1.5;
  }

  .contact_section02 .contact_right .fax_link a::before{
    width: 14px;
    height: 17px;
    margin-right: 7px;
  }

  .contact_section03{

  }

  .contact_section03 .common_sec_title span{
    font-size: 20px;
    font-weight: 500;

  }

  .contact_section03 .p01{
    margin-top: 32px;
    margin-bottom: 40px;
    line-height: 1.6;
  }

  /*
  ----------------------------------------------------
  オンライン予約・お申込みフォーム
  ----------------------------------------------------
  */

  body.application_body{
    
  }

  main.application_main{

  }

  .application_section{

  }


  .application_section .appli_add_area{
    padding:48px 0 0;
  }


  .application_section .appli_add_area .appli_head{
    padding-top: 16px;
    font-size: 24px;
    line-height:1.6;
  }

  .application_section .appli_add_area .appli_head span{
    font-size: 34px;
    line-height: 1.3;
    margin-right: 24px;
    margin-top: -4px;
  }

  .application_section .appli_add_area .appli_text01{
    line-height: 1.6;
  }


  .application_section .appli_add_area .appli_text01 a::after{
    width: 14px;
    height: 14px;
    margin-left: 8px;
  }

  .application_section .appli_add_area .appli_head + .appli_text01{
    margin-top: 20px;
  }

  .application_section .appli_add_area .appli_text02{
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.4;
  }

  .application_section .common_form_box .form_alert_text{
    margin-top: 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.71;
  }

  .application_section .common_form_box .license_num_block{
    display: flex;
    align-items: center;
  }

  .application_section .common_form_box .license_num_block .input_frame{
    width:300px;
    margin:0 16px;
  }

  .application_section .common_form_box .prefecture_frame{
    max-width: 140px;
  }

  .application_section .common_form_box .name_flex{
    display: flex;
    align-items: center;
  }

  .application_section .common_form_box .name_flex .name_box{
  }

  .application_section .common_form_box .name_flex .name_box + .name_box{
    margin-left: 30px;
  }

  .application_section .common_form_box .name_flex .name_box .input_frame{
    width:140px;
    margin-left: 16px;
  }


  .application_section .common_form_box .adress_line{
    display: flex;
    align-items: center;
  }

  .application_section .common_form_box .adress_line .unit01{
    line-height: 1;
    margin-right: 16px;
  }

  .application_section .common_form_box .adress_line .unit02{
    width: 14px;
    height: 2px;
    margin:0 8px;
  }

  .application_section .common_form_box .adress_line .input_frame{
    width: 140px;
  }

  .application_section .common_form_box .adress_left{
    display: flex;
    align-items: center;
  }

  .application_section .common_form_box .adress_line .adress_search{
    width: 100px;
    height: 32px;
    cursor: pointer;
    margin-left: 20px;
  }

  .application_section .common_form_box .select_frame_prefecture{
    width: 240px;
  }

  .application_section .common_form_box .input_frame.mt{
    margin-top: 10px;
  }

  .application_section .common_form_box .agree_area .agree_text01{
    text-align: left;
    font-feature-settings: 'palt';
  }

  .application_section .common_form_box .agree_area .agree_text02{
    text-align: left;
    font-feature-settings: 'palt';
    white-space: normal;
  }

  /*
  ----------------------------------------------------
  料金・費用一覧
  ----------------------------------------------------
  */

  body.fee_body{
    
  }


  .fee_section{

  }

  .fee_section .fee_link_line{
    margin-top: 4px;
  }

  .fee_section .fee_angle_link{
    line-height: 2;
  }

  .fee_section .fee_angle_link::after{
    width: 7px;
    height: 12px;
    margin-left: 6px;
  }

  .fee_section .banner{
    border-radius: 20px;
    margin-bottom: 60px;
  }


  .fee_section .p01{
    line-height: 2.25;
    margin-top: 24px;
  }



  .fee_section .fee_head{
    padding-left: 20px;
    font-size: 18px;
  }

  .fee_section .fee_head::before {
    width: 4px;
    height: 100%;
  }

  .fee_section .fee_box{
    margin-top: 32px;
    padding:20px 8px 32px 16px;

  }

  .fee_section .fee_box ul li{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding:12px 6px 12px;
    border-bottom: 1px solid #ccdaec;
  }

  .fee_section .fee_box .fee_left{
    line-height: 1.57;
  }

  .fee_section .fee_box .fee_left .min{
    font-size: 13px;
  }

  .fee_section .fee_box .fee_left.blue .min{
    font-size: 14px;
  }

  .fee_section .fee_box .fee_right{
    line-height: 1.57;
  }

  .fee_section .fee_box .fee_right .price{
    line-height: 1.1;
  }

  .fee_section .fee_box .fee_right .price .num{
    font-size: 26px;
  }

  .fee_section .fee_flex{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 48px;
    padding:40px 16px 36px;
  }

  .fee_section .fee_flex .fee_frame{
    width:48%;
  }


  .fee_section .fee_remark{
    margin-top: 16px;
    font-size: 12px;
    line-height: 1.5;

  }

  .fee_section .color_box{
    margin-top: 40px;
    padding: 24px 40px;
  }

  .fee_section .color_box p{
    font-size: 14px;
    line-height: 1.71;
  }
    

  /*
  ----------------------------------------------------
  免許下層ページ共通
  ----------------------------------------------------
  */


  .licence_section{
    padding-bottom: 72px;
  }



  .licence_section .p01{
    margin-top: 32px;
    line-height: 2.25;
  }

  .licence_section .p02{
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.71;
  }


  .licence_index_section{

  }


  .licence_index_section .index_box{
    margin-top: 48px;
  }

  .licence_index_section .index_box .index_head{
    padding: 20px 24px;
    font-size: 18px;
  }

  .licence_index_section .index_box .index_body{
    padding:40px 32px;
  }


  .licence_index_section .index_box ol li{
    margin-top: 2px;
    padding-left: 30px;
  }


  .licence_index_section .index_box ol li::before{
    line-height: 2.25;
  }

  .licence_index_section .index_box ol a::after{
    width: 12px;
    height: 7px;
    margin-left: 6px;
    margin-bottom: 2px;
  }

  .licence_process_section{

  }

  .licence_process_section .color_box{
    margin-top: 36px;
    padding:24px 32px;
  }

  .licence_process_section .color_box p{
    line-height: 2.25;
  }

  .licence_process_section .color_box p+p{
    margin-top: 16px;
  }

  .licence_process_section .color_box p a{
    line-height: 2.25;
  }

  .licence_process_section .color_box p a::after{
    width: 7px;
    height: 12px;
    margin-left: 6px;

  }

  .licence_flow_section{

  }

  .licence_flow_section .flow_list{
    
  }

  .licence_flow_section .flow_block{
    margin-top: 32px;
    padding:40px 72px 32px 132px;
  }

  .licence_flow_section .flow_block .flow_step{
    width: 120px;
    height: 60px;    
    font-size: 16px;
  }

  .licence_flow_section .flow_block .flow_step span{
    font-size: 38px;
    line-height: 1.42;
    margin-left: 6px;
    margin-bottom: 6px;
  }

  .licence_flow_section .flow_block .flow_title{
    font-size: 28px;
    line-height: 1.3;
  }

  .licence_flow_section .flow_block .flow_title span{
    font-size: 24px;
  }

  .licence_flow_section .flow_block .flow_text01{
    margin-top: 8px;
    line-height: 2.25;
  }

  .licence_flow_section .flow_block .flow_text02{
    font-size: 14px;
    line-height: 1.71;
    margin-top: 6px;
  }

  .licence_flow_section .flow_block .entry_list li{
    margin-top: 18px;
  }

  .licence_flow_section .flow_block .entry_head{
    display: flex;
    align-items: flex-start;
  } 

  .licence_flow_section .flow_block .entry_head .num{
    width: 42px;
    height: 42px;
    font-size: 20px;
    margin-right: 16px;
  }

  .licence_flow_section .flow_block .entry_head_text{
    font-size: 18px;
    line-height: 1.3;
    margin-top: 8px;
  }

  .licence_flow_section .flow_block .entry_head_text span{
    font-size: 14px;
    line-height: 1.3;
    margin-left: 12px;
  }

  .licence_flow_section .flow_block .entry_head_text.net::before{
    width: 26px;
    height: 22px;
    margin-right: 8px;
    translate: 0 4px;
  }
  .licence_flow_section .flow_block .entry_head_text.fax::before{
    width: 24px;
    height: 25px;
    margin-right: 10px;
    translate: 0 6px;
  }
  .licence_flow_section .flow_block .entry_head_text.tel::before{
    width: 18px;
    height: 23px;
    margin-right: 4px;
    margin-left: 6px;
    translate: 0 6px;
  }

  .licence_flow_section .flow_block a.arrow_link::after{
    width: 7px;
    height: 12px;
    margin-left: 8px;
  }

  .licence_flow_section .flow_block .pdf_icon_text::before{
    width: 14px;
    height: 17px;
    margin-right: 3px;
    margin-left: 3px;
  }

  .licence_flow_section .flow_block a.tel{
    pointer-events: none;
  }

  .licence_flow_section .flow_arrow{
    width: 96px;
    height: 28px;
  }

  .licence_document_section{

  }

  .licence_document_section .table_frame {
    margin-top: 50px;
  }

  .licence_document_section table {
    width: 100%;

  }

  .licence_document_section thead th:first-child {
    width: 77.6%;
  }

  .licence_document_section thead th:last-child{
    width:22.4%;
  }

  .licence_document_section thead th {
    height: 60px;

  }

  .licence_document_section tbody td {
    padding: 24px 32px;    
  }

  .licence_document_section tbody td:first-child {
    width: 77.6%;
  }

  .licence_document_section tbody td:last-child{
    width:22.4%;
    height: 200px;
  }

  .licence_document_section tbody .amount{
    line-height: 1.38;
  }

  .licence_document_section tbody .amount span{
    font-size: 26px;

  }

  .licence_document_section .flex{
    display: flex;
    align-items: center;
  }

  .licence_document_section .num{
    width: 50px;
    height: 50px;
    margin-right: 20px;
    font-size: 24px;
  }

  .licence_document_section .img_frame{
    width:140px;
    margin-right: 20px;
  }

  .licence_document_section .document_title{
    line-height: 1.63;
  }

  .licence_document_section .document_text{
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.71;
  }

  .licence_document_section .pdf_link{
    margin-left: 4px;
  }

  .licence_document_section .pdf_link::before{
    width: 14px;
    height: 17px;
    margin-right: 3px;
    translate: 0 2px;
  }

  .licence_document_section td ul{
    margin-top: 16px;
    padding-left: 22px;
    
  }

  .licence_document_section td ul li{
    font-size: 14px;
    line-height: 1.71;
  }

  .licence_document_section .send_box{
    margin-top: 48px;
    display: flex;
  }

  .licence_document_section .send_box .send_left{
    width: 160px;
    line-height: 1.63;
  }

  .licence_document_section .send_box .send_right {
    width: 100%;
    padding: 24px 40px;
  }

  .licence_document_section .send_box .send_text01 {
    line-height: 1.5;
  }

  .licence_document_section .send_box .send_text02 {
    margin-top: 6px;
    line-height: 2.25;
  }

  .licence_document_section .send_box .send_text03 {
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.71;
  }

  .licence_fee_section{

  } 

  .licence_fee_section .fee_frame{
    max-width: 420px;
    margin:36px auto 0;
  }


  .licence_period_section{
  
  }
  
  
  .licence_period_section .period_img{
    width: 100%;
    margin-top: 40px;
  }
  
  .licence_table_section{
  
  }
  
  .licence_table_section .left_bordre_title{
    margin-top: 48px;
    padding-left: 20px;
    font-size: 18px;
  }
  
  .licence_table_section .left_bordre_title::before {
    width: 4px;
  }
  
  .licence_table_section .left_bordre_title+.p01{
    margin-top: 16px;
  }
  
  .licence_table_section .table_frame{
    margin-top: 40px;
  }
  
  .licence_table_section table {
    width: 100%;
  }
  
  
  .licence_table_section thead th {
    height: 60px;
  }
  
  .licence_table_section tbody td {
    padding: 20px 32px;
  }

  
  .licence_table_section tbody td:first-child{
    line-height: 1.63;
    text-align: center;
  }
  
  .licence_table_section tbody td:first-child span{
    font-size: 14px;
  }
  
  .licence_table_section tbody td * +  .p01{
    margin-top: 12px;
  }
  
  .licence_table_section tbody td * +  .p02{
    margin-top: 10px;
  }
  
  .licence_table_section tbody td ul {
    padding-left: 22px;
  }
  
  .licence_table_section tbody td * +  ul{
    margin-top: 10x;
  }
  
  .licence_table_section tbody td ul li {
    line-height: 1.63;
    margin-top: 8px;
  }
  
  
  .licence_table_section .column2_table tbody td:first-child{
    width:33%;
  }
  
  .licence_table_section .column2_table tbody td:last-child{
    width:67%;
  }
  
  .licence_table_section .column3_table tbody td:first-child{
    white-space: normal;
    padding-left: 16px;
    padding-right: 16px;
    width: 25%;
  }
  
  .licence_table_section .column3_table tbody td:last-child{
    text-align: center;
    white-space: nowrap;
    padding-left: 16px;
    padding-right: 16px;
  }
  

  /*
  ----------------------------------------------------
  訂正手続き
  ----------------------------------------------------
  */

  .correction_section{
    
  }

  .correction_section .common_appli_link{
    margin: 72px auto 0;
  }

  .correction_section .common_appli_link .common_appli_link_text{
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    line-height: 1.18;
    padding-top: 12px;
  }

  .correction_section .common_appli_link::after{
    right:16px;
  }

  .correction_section .common_appli_link .common_appli_link_text span{
    font-size: 20px;
  }


  /*
  ----------------------------------------------------
  紛失再発行
  ----------------------------------------------------
  */

  .loss_section{
      
  }

  .loss_section .common_appli_link{
    margin: 72px auto 0;
  }

  .loss_section .common_appli_link .common_appli_link_text{
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    line-height: 1.18;
    padding-top: 12px;
    letter-spacing: 0.03em;
    margin-right: 24px;
  }

  .loss_section .common_appli_link::after{
    right:16px;
  }

  .loss_section .common_appli_link .common_appli_link_text span{
    font-size: 20px;
  }
  
}/*@media screen and (max-width:1240px){*/