@charset "utf-8";
html{
    scroll-behavior: smooth;
}
body {
    font-family: "ヒラギノ角ゴ W3 JIS2004","Hiragino Kaku Gothic W3 JIS2004";
    color: #333333;
}

/* <header */
header{
    height: 84px;
}
#fix_menu {
    width: 100%;
    background-color: #ffffff;
}

.is_fixed {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
}
#logo_box {
    width: 100%;
    max-width: 1080px;
    height: 84px;
    margin: auto;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
}
.logo_img {
    padding-top: 20px;
    width: 100%;
    max-width: 220px;
}
#top_tel_box {
    text-align: right;
    line-height: 18px;
    padding-top: 4px;
    display: flex;
    justify-content: space-between;
}
.tel_red {
    font-size: 36px;
    font-weight: 450;
    font-family: 'Oswald', sans-serif;
    color: #ff0000;
    letter-spacing: 3px;
    position: relative;
    display: inline;
}
.tel_red::before {
    content: url(../images/tel_icon.svg);
    display: inline-block;
    vertical-align: bottom;
    position: absolute;
    width: 26px;
    right: 245px;
    top: 15px;
}

.tel_black{
    font-size: 13px;
}

.saiyou_text{
    font-size: 16px;
    margin-top: 16px;
    padding-top: 5px;
    font-weight: 600;
}

.saiyou_tel{
    padding-top: 5px;
    margin: 16px 0;
    margin-left: 40px;

}

/* header btn */
.contact_btn{
    margin-left: 10px;
    margin-top: 14px;
    color: #fff;
    background-color: #F22E36;
    box-shadow: 0px 3px 1px 0px #929799;
    transition: all .3s;
    border-radius: 5px;
    width: 204px;
    height: 48px;
}
.contact_btn:hover{
    transform: translate3d(0, 3px, 0);
    opacity: 0.8;
    box-shadow: none;
}
.contact_btn span{
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding: 1rem 2rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all .3s;
    transition: all .3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
    color: #fff;
    border-radius: 0.5rem;
}
@media only screen and (max-width: 1024px){

    header{
        height: 76px;
    }
    #logo_box {
        width: 100%;
        max-width: 100%;
        height: 76px;
        align-items: center;
    }

    .logo_img{
        width: 100%;
        max-width: 170px;
        padding: 0;
        margin-left: 12px;
    }

    #top_tel_box{
        display: none;
    }

    .is_fixed{
        position: relative;
    }

    .sp_menu{
        max-width: 56px;
        margin: 9px 12px;
        position: fixed;
        z-index: 10;
        top: 0;
        right: 0;
    }

    .nav-unshown {
        display: none;
    }

    .close_only{
        display: none;
    }

    #nav-input:checked ~ #nav-open .open_only {
        display: none;
    }
    #nav-input:checked ~ #nav-open .close_only {
        display: block;
        z-index: 99999;
    }

    #nav_content {
        overflow: auto;
        position: fixed;
        overflow-y: scroll;
        top: 0;
        left: 0;
        z-index: 99998;
        width: 100%;
        max-width: 100%;
        height: 100%;
        background: #006995;
        transition: .5s ease-in-out;
        -webkit-transform: translateX(105%);
        transform: translateX(105%);
    }

    #nav-input:checked ~ #nav_content {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }

    .nav_content_inner{
        margin-top: 76px;
        padding: 0 20px;
    }

    #nav_content ul li{
        color: #fff;
        font-size: 21px;

    }

    #nav_content ul li a{
        display: block;
        width: 100%;
        margin: 20px 0;
        padding: 10px 0;
        border-bottom: 1px solid #fff;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    #nav_content ul li a:after{
        font-family: "Font Awesome 5 Free";
        content: '\f054';
        font-weight: 900;
    }

    #nav_content .close p{

        margin: 0 auto;
        text-align: center;
        color: #fff;
        display: flex;
        justify-content: center;
        font-size: 21px;
        padding: 20px;
        width: 50%;
        border: 2px solid #fff;
    }

    #nav_content .close p:before{
        font-family: "Font Awesome 5 Free";
        content: '\f00d';
        font-weight: 900;
        margin-right: 20px;
    }

}
/* header> */

/* main_visual */

#main_visual{
    width: 100%;
    height: 700px;
    position: relative;
}

.main_visual_inner{
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
}

.main_visual_blue{
    width: 100%;
    height: 540px;
    position: relative;
    background-color: #006995;
}

@media only screen and (max-width: 1079px){
    #main_visual {
        width: 1080px;
    }

    .main_visual_inner{
        width:1080px;
    }

}

@media only screen and (max-width: 1024px){
    #main_visual {
        width: 100%;
        height: 100%;
    }

    .main_visual_inner{
        width:100%;
    }

    .main_visual_blue{
        background-color: #fff;
        height: 100%;
    }
}
/* cv_button */

.cv_area{
    width: 100%;
    background-color: #fff;
}

.cv_area_inner{
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
}

.cv_button{
    margin: 80px auto;
    color: #fff;
    width: 450px;
    position: relative;
}

.cv_button a{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 90px;
    font-size: 30px;
    letter-spacing: 0.15em;
    font-weight: 600;
    text-align: center;
    background-color: #F22E36;
    border: 2px solid #F22E36;
    border-radius: 5px;
    transition: all .3s;
}

.cv_button a:hover {
    background-color: #fff;
    color: #F22E36;
}

.cv_button .arrow{
    width: 20%;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 30px;

}
/* .cv_button a:after{
    font-family: "Font Awesome 5 Free";
    content: '\f054';
    font-weight: 900;
    margin-left: 30px;
} */

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

    .cv_are_inner {
        width: 1080px;
    }
}

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

    .cv_are_inner {
        width: 100%;
    }

    .cv_button{
        margin: 40px auto;
        color: #fff;
        width: 50%;
    }

    .cv_button a{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 45px;
        font-size: 15px;
        letter-spacing: 0.15em;
        font-weight: 600;
        text-align: center;
        background-color: #F22E36;
        border: 2px solid #F22E36;
        border-radius: 5px;
        transition: all .3s;
    }
}

/* merit */

#merit{
    width: 100%;
    background: #D8F0FC;
}

.merit_inner{
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 60px 0;
}

#merit h2{
    font-family: "ヒラギノ角ゴ W6 JIS2004","Hiragino Kaku Gothic W6 JIS2004";
    width: 100%;
    text-align: center;
    color: #006995;
    font-size: 24px;
    letter-spacing: 1.15px;
    font-weight: 600;
    margin-bottom: 40px;
}

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

    #merit{
        width:  1080px;
    }
}

@media only screen and (max-width: 1024px){
    #merit{
        width: 100%;
    }
    .merit_inner{
        padding: 60px 12px;
    }

    #merit h2{
        margin-bottom: 40px;
    }
}

/* time schedule */
.time_schedule{
    max-height: 576px;
    background: linear-gradient(180deg, #CC4F93 0%, #CC4F93 84px, #EC78BB 85px, #EC78BB 100%);
}

.time_schedule.pink{
    max-height: 576px;
    background: linear-gradient(180deg, #CC4F93 0%, #CC4F93 84px, #EC78BB 85px, #EC78BB 100%);
}
.time_schedule.green{
    max-height: 576px;
    background: linear-gradient(180deg, #0FA18F 0%, #0FA18F 84px, #3CB69F 85px, #3CB69F 100%);
}

.time_schedule.orange{
    max-height: 576px;
    background: linear-gradient(180deg, #FF7800 0%, #FF7800 84px, #FF973A 85px, #FF973A 100%);
}

.time_schedule.blue{
    max-height: 576px;
    background: linear-gradient(180deg, #0750F2 0%, #0750F2 84px, #4193F4 85px, #4193F4 100%);
}

.time_schedule_profile{
    width: 100%;
}

.time_schedule_inner{
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-rows: 84px 492px;
    grid-template-columns: 324px 530px 224px; /* 行を指定（左から順番に、幅を指定。） */
}

.time_schedule_inner.even{
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-rows:  84px 492px;
    grid-template-columns:500px 254px 324px; 
}

.time_schedule_img{
    grid-row-start: 1;
    grid-row-end: 3; 
    grid-column-start: 1;
    grid-column-end: 2; 
}

.even .time_schedule_img{
    grid-row-start: 1; 
    grid-row-end: 3; 
    grid-column-start: 3; 
    grid-column-end: 4; 
}

.time_schedule h2{
    grid-row-start: 1;
    grid-row-end: 2; 
    grid-column-start: 2; 
    grid-column-end: 4; 
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 36px;
    padding: 0 30px;
}

.time_schedule .even h2{
    padding-left: 0;
    grid-row-start: 1; 
    grid-row-end: 2; 
    grid-column-start: 1; 
    grid-column-end: 3;
}

.time_schedule h2 img{
    width: 60px;
    margin: 0 10px;
}

.profile_left,
.profile_right{
    margin-top: 30px;
    margin-bottom: 15px;
}

.profile_left{
    color: #fff;
}

.profile_left{
    grid-row-start: 2; /* ピンクの① */
    grid-row-end: 3; /* ピンクの② */
    grid-column-start: 2; /* 水色の① */
    grid-column-end: 3; /* 水色の③ */
    position: relative;
    margin-left: 30px;
    margin-right: 20px;
}

.even .profile_left{
    margin-left: 0;
    grid-row-start: 2; /* ピンクの① */
    grid-row-end: 3; /* ピンクの② */
    grid-column-start: 1; /* 水色の① */
    grid-column-end: 2; /* 水色の③ */
}

.profile_left h3{
    font-family: "ヒラギノ角ゴ W6 JIS2004","Hiragino Kaku Gothic W6 JIS2004";
    font-size: 24px;
    margin-bottom: 10px;
    
}

.profile_left p:first-of-type{
    margin-bottom: 30px;
}

.profile_left p {
    font-size: 16px;
    
    line-height: 1.5em;
}

.profile_img{
    display: flex;
    position: absolute;
    bottom: 0;
}

.profile_img img{
    width: 100%;
    max-width: 180px;
}

.profile_img img:first-of-type{
    margin-right: 20px;
}

.profile_right{
    grid-row-start: 2; /* ピンクの① */
    grid-row-end: 3; /* ピンクの② */
    grid-column-start: 3; /* 水色の① */
    grid-column-end: 4; /* 水色の③ */
}

.even .profile_right{
    margin-right: 20px;
    grid-row-start: 2; /* ピンクの① */
    grid-row-end: 3; /* ピンクの② */
    grid-column-start: 2; /* 水色の① */
    grid-column-end: 3; /* 水色の③ */
}

.profile_right img{
    max-height: 447px;
    max-width: 224px;
}

.profile_right.even{
    margin-right: 30px;
}

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

    .time_schedule {
        width: 1080px;
    }
}

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

    .time_schedule_sp {
        width: 100%;
    }

    .ts_top, .ts_bottom{
        display: flex;
    }

    .time_schedule_sp img{
        width: 100%;
    }

    .ts-unshown {
        display: none;
    }

    .ts_content_1,
    .ts_content_2,
    .ts_content_3,
    .ts_content_4 {
        overflow: auto;
        position: fixed;
        overflow-y: scroll;
        top: 0;
        left: 0;
        z-index: 99998;
        width: 100%;
        max-width: 100%;
        height: 100%;
        background: #006995;
        transition: .5s ease-in-out;
        -webkit-transform: translateY(105%);
        transform: translateY(105%);
    }

    #ts1-input:checked ~ .ts_content_1,
    #ts2-input:checked ~ .ts_content_2,
    #ts3-input:checked ~ .ts_content_3,
    #ts4-input:checked ~ .ts_content_4 {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }

    .ts_content_1{
        background: #EC78BB;
    }
    .ts_content_2{
        background: #3CB69F;
    }
    .ts_content_3{
        background: #FF973A;
    }
    .ts_content_4{
        background: #4193F4;
    }

    .ts_header{
        background: #fff;
        display: flex;
        height: 76px;
        width: 100%;
    align-items: center;
    position: relative;
    }

    .ts_header .ts_close_button img{
        position: absolute;
        margin: 18px 12px;
        max-width: 40px;
        z-index: 10;
        top: 0;
        right: 0;
    }

    .ts_fixed_content {
        width: 100%;
        padding: 12px;
        color: #fff;
    }

    .ts_title_header{
        display: flex;
        align-items:  flex-start;
    }

    .ts_title_header img{
        width: 150px;
        height:auto;
        margin-right: 20px;
    }

    .ts_title_header .ts_title_text h2{
        font-size: 30px;
        margin-bottom: 16px;
    }

    .ts_title_header .ts_title_text img{
        width: 30px;
        margin: 0 10px;
    }
    .ts_title_header .ts_title_text p{
        font-size: 24px;
    }

    .ts_fixed_content{
        margin-bottom: 76px;
    }

    .ts_fixed_content h3{
        font-size: 25px;
        margin: 10px 0;
    }

    .ts_fixed_content p{
        font-size: 18px;
        line-height: 1.5;
    }

    .ts_fixed_content .ts_fixed_content_img img{
        width: 50%;
        margin: 20px 0;
    }

    .ts_fixed_content .ts_fixed_content_img{
        text-align: center;
    }

    
    .ts_fixed_content .close p{

        margin: 20px auto;
        text-align: center;
        color: #fff;
        display: flex;
        justify-content: center;
        font-size: 21px;
        padding: 20px;
        width: 50%;
        border: 2px solid #fff;
    }

    .ts_fixed_content .close p:before{
        font-family: "Font Awesome 5 Free";
        content: '\f00d';
        font-weight: 900;
        margin-right: 20px;
    }

}


#other_team{
    width: 100%;
    background: #D8F0FC;
}

.other_team_inner{
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 60px 0;
}

#other_team h2{
    font-family: "ヒラギノ角ゴ W6 JIS2004","Hiragino Kaku Gothic W6 JIS2004";
    width: 100%;
    text-align: center;
    color: #006995;
    font-size: 24px;
    letter-spacing: 1.15px;
    font-weight: 600;
}

#other_team img{
    margin-top: 40px;
}

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

    #other_team{
        width:  1080px;
    }
}

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

    #other_team{
        width:  100%;
    }

    .other_team_inner{
        padding: 60px 12px
    }

}

#scroll_img{
    width: 100%;
}

#scroll_img img{
    
    width: 100%;
    
  }
  .bx-wrapper{
    border:none!important;
    box-shadow: none!important;
    max-width: 100% !important;
  }
  .slider_box{
    width: 100%;
  }

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

    /* #scroll_img img{
        height: 180px;
        object-fit: cover;
      } */
}

#worklife{
    width: 100%;
    background: #D8F0FC;
}

.worklife_inner{
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 60px 0;
}

#worklife h2{
    font-family: "ヒラギノ角ゴ W6 JIS2004","Hiragino Kaku Gothic W6 JIS2004";
    width: 100%;
    text-align: center;
    color: #006995;
    font-size: 24px;
    letter-spacing: 1.15px;
    font-weight: 600;
}

#worklife img{
    width: 100%;
    margin-top: 40px;
}

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

    #worklife{
        width:  1080px;
    }
}

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

    #worklife{
        width:  100%;
    }

    .worklife_inner{
        padding: 60px 12px;
    }
}

#recruit{
    width: 100%;
    background: #006995;
}

.recruit_inner{
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 60px 0;
}

.tab_content{
    background: #D8F0FC;
}

#recruit h2{
    font-family: "ヒラギノ角ゴ W6 JIS2004","Hiragino Kaku Gothic W6 JIS2004";
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 24px;
    letter-spacing: 1.15px;
    font-weight: 600;
}

#recruit img{
    width: 100%;
    margin-top: 40px;
}

.tabs_inner {
    border-bottom: 10px solid #F22E36;
}

.nav-tab {
    margin: 0;
    border: none;
    text-align: center;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-tab li {
    display: inline-block;
    margin-left: 3px;
    width: 100%;
    height: 100px;
    line-height: 100px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    color: #006995;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-tab li.active{
    background-color: #F22E36;
    color: #fff;
}

.nav-tab li a{
    letter-spacing: 0.1em;
    font-size: 30px;
    display: block;
    text-decoration: none;
    border-radius: 0;
    height: 100%;
    width: 100%;
    font-weight: 600;
}


.tab-panel{
    display: none;
}

.tab-panel.active{
    display: block;
}

.tab-content{
    width: 100%;
    background-color: #D8F0FC;
}

#tab1, #tab2, #tab3{
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 90px 0;
}

.tab-panel h3{
    font-family: "ヒラギノ角ゴ W6 JIS2004","Hiragino Kaku Gothic W6 JIS2004";
    color: #006995;
    font-size: 24px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 600;
}
  table.tbl-r02 {
      width: 100%;
    margin: 20px auto;
    border-collapse: separate;
    border-radius: 10px;
    overflow: hidden;

  }
  .tbl-r02 th {
    min-width: 220px;
    background: #006995;
    border-bottom: 1px solid #aaa;
    color: #fff;
    padding: 40px 20px;
    vertical-align: top;
    font-size: 24px;
  }
  .tbl-r02 .last th{
      border-bottom: none;
  }
  .tbl-r02 td {
    border-bottom: 1px solid #aaa;
      background-color: #fff;
      padding: 40px 20px;
      font-size: 15px;
      line-height: 1.75;
  }

  .tbl-r02 .last td{
    border-bottom: none;
}
  .tbl-r02 td p{
      line-height: 2;
  }
  .r_note{
      margin: 20px 0;
  }

  .r_note li {
    position: relative;
    padding-left: 1.5em;
}
.r_note li span {
    position: absolute;
    top: 0;
    left: 0;
}

.r_list{
    margin: 10px 0;
}

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

    #recruit{
        width:  1080px;
    }
}

@media only screen and (max-width: 1024px){
#recruit {
    width: 100%;
}

#tab1, #tab2, #tab3{
    width: 100%;
    padding: 60px 12px;
}

.tab-panel h3{
    font-size: 20px;
}

.last td:last-child {
    border-bottom: solid 1px #ccc;
    width: 100%;
  }
  .tbl-r02 {
    width: 100%;
  }
  .tbl-r02 th,
  .tbl-r02 td {
      border-bottom: none;
    display: block;
    width: 100%;
  }

  .nav-tab li{
      height: 85px;
  }

  .nav-tab li a{
      font-size:20px;
      height: 100%;
      width: 100%;
  }

  .tab1{
      flex-basis: 60%;
  }

  .tab2, .tab3{
      flex-basis: 20%;
  }
  
  .tbl-r02 th {
    min-width: 220px;
    background: #fff;
    border:none;
    color: #006995;
    padding: 20px 20px;
    vertical-align: top;
    font-size: 20px;
  }

  .tbl-r02 td{
      padding-top: 0;
      border-bottom: 1px solid #aaa;
  }
}
#qanda{
    width: 100%;
    background: #D8F0FC;
}

.qanda_inner{
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 60px 0;
}

#qanda h2{
    font-family: "ヒラギノ角ゴ W6 JIS2004","Hiragino Kaku Gothic W6 JIS2004";
    width: 100%;
    text-align: center;
    color: #006995;
    font-size: 24px;
    letter-spacing: 1.15px;
    font-weight: 600;
    margin-bottom: 40px;
}

  .tbl-r03 {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #fff;
    overflow: hidden;
    margin-bottom: 10px;
  }
  .tbl-r03 th,
  .tbl-r03 td {
      border-bottom: none;
    display: block;
    width: 100%;
  }

  .tbl-r03 th {
    min-width: 220px;
    background: #006995;
    color: #fff;
    padding: 10px ;
    vertical-align: middle;
    font-size: 24px;
    display: flex;
    align-items: center;
  }
  .tbl-r03 th:before{
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 40px;
    height: 40px;
    background: url(../images/question.png);
    background-repeat: no-repeat;
    background-size: contain;
    padding: 8px 0;
    margin-right: 10px;
  }
  .tbl-r03 td {
      background-color: #fff;
      padding: 20px 10px;
      font-size: 16px;
      display: flex;
      align-items:flex-start;
      line-height: 2;
  }
  .tbl-r03 td:before{
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 40px;
    height: 40px;
    background: url(../images/answer.png);
    background-size: contain;
    background-repeat: no-repeat;
    padding: 8px 0;
    margin-right: 10px;
  }

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

    #qanda{
        width:  1080px;
    }
}

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

    #qanda{
        width: 100%;
    }

    .qanda_inner{
        width: 100%;
        padding: 60px 12px;
    }

    .tbl-r03{
        border-radius: 0%;
    }

    .tbl-r03 th{
        font-size: 18px;
        justify-content: space-between;
    }

    .tbl-r03 th:before{
        width: 30px;
        height: 30px;
        margin: 0;
    }

    .tbl-r03 th::after{
        font-family: "Font Awesome 5 Free";
        content: '\f078';
        font-weight: 900;
    }

    .tbl-r03 td{
        display: none;
    }

    
    .tbl-r03 td.active{
        display: flex;
    }

}

#company_info{
    width: 100%;
    background: #fff;
}

.company_info_inner{
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 60px 0;
}

#company_info h2{
    font-family: "ヒラギノ角ゴ W6 JIS2004","Hiragino Kaku Gothic W6 JIS2004";
    width: 100%;
    text-align: center;
    color: #006995;
    font-size: 24px;
    letter-spacing: 1.15px;
    font-weight: 600;
    margin-bottom: 40px;
}

.c-tbl>dl:first-child {
    border-top: 1px solid #ddd;
}

.c-tbl>dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    border-bottom: 1px solid #ddd;
    padding: 25px 0;
}

.c-tbl.row2>dl>dt {
    width: 24.58333%;
    line-height: 1.5;
}

.c-txt p{
    line-height: 1.5;
}

.company_info_blue{
    background-color: #D8F0FC;
    border-radius: 10px;
    margin: 25px 0;
}

.company_info_blue_inner{
    padding: 28px;
}

.company_info_blue p{
    margin-bottom: 20px;
    line-height: 1.5;
}

.company_info_blue .company_logo{
    max-width: 220px;
    text-align: center;
    padding-bottom: 28px;
    margin: 0 auto;
    }

#flow{
    width: 100%;
    background: #D8F0FC;
}

.flow_inner{
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 60px 0;
}

#flow h2{
    font-family: "ヒラギノ角ゴ W6 JIS2004","Hiragino Kaku Gothic W6 JIS2004";
    width: 100%;
    text-align: center;
    color: #006995;
    font-size: 24px;
    letter-spacing: 1.15px;
    font-weight: 600;
}

#flow img{
    width: 100%;
    margin-top: 40px;
}


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

    .company_info_inner {
        padding: 60px 12px;
    }

    .margin_top{
        margin-top: 25px;
    }

    .company_logo{
        padding: 28px 0;
        max-width: 170px;
    }

    .company_info_blue_inner{
        padding: 15px;
    }

    .flow_inner{
        padding: 60px 12px;
    }
}

/* form */

#main_contents{
    width: 100%;
}

.main_contents_inner{
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 60px 0;
}

#main_contents h2{
    font-family: "ヒラギノ角ゴ W6 JIS2004","Hiragino Kaku Gothic W6 JIS2004";
    width: 100%;
    text-align: center;
    color: #006995;
    font-size: 24px;
    letter-spacing: 1.15px;
    font-weight: 600;
}

.mail_img {
    margin: auto;
    padding: 50px 0;
}

.mail_img img{
    width: 100%;
}

.formTable1 tr {
    border-bottom: solid 1px #C4C4C4;
}

.formTable1 th {
    width: 240px;
    height: auto;
    font-size: 16px;
    font-weight: normal;
    color: #333;
    position: relative;
    padding: 20px 0;
}

.formTable1 td {
    width: auto;
    height: auto;
    font-size: 16px;
    color: #333;
    position: relative;
    padding: 20px 0;
}

.must_req {
    color: #ffffff;
    background-color: #f62e36;
    padding: 2px 7px 2px 7px;
    position: absolute;
    top: 20px;
    right: 30px;
}

.inputform3 {
    width: 300px;
    height: 30px;
    border-radius: 5px;
    border: solid 1px #999;
    background-color: #f2f0f0;
    font-size: 20px;
    padding: 0 5px;
}

.select_box{
    display: flex;
    margin-bottom: 10px;
}

.select_box:first-of-type {
margin-top: 0;
}

.ime_on {
    height: 34px;
    width: 210px;
}

.select_box span{
    margin-right: 20px;
}

.add_aft {
    position: relative;
}

.add_send {
    background: #ffda00;
    border-radius: 40px;
    clear: both;
    color: #333;
    cursor: pointer;
    display: block;
    font-size: 24px;
    font-weight: bold;
    margin: 20px auto;
    max-width: 400px;
    width: 100%;
    border: 2px solid #fff;
    padding: 2.5% 2% 2.5% 9%;
    text-align: left;
    box-sizing: border-box;
    transition: all .3s;
}

.add_aft::after {
    content: url(../images/mail_sen_bt_after.png);
    display: inline-block;
    vertical-align: bottom;
    position: absolute;
    right: 310px;
    top: 25px;
}

.add_send:hover{
    background: #fff;
    border:2px solid #ffda00;
}


@media only screen and (max-width: 1024px){
    .mail_img img{
        width: 100%;
    }

    .main_contents_inner {
        padding: 60px 12px;
    }
    .contactBox {
        width: 94%;
        max-width: 94%;
        margin: auto;
    }

    .contentsBox {
        width: 96%;
        max-width: 96%;
        margin: auto;
    }

    .formTable1 {
        width: 100%;
        max-width: 100%;
        margin: auto;
        text-align: left;
    }


    .formTable1 tr {
        border-bottom: solid 2px #c8c8c8;
        width: 100%;
    }

    .formTable1 th {
        width: 100%;
        max-width: 100%;
        height: 20%;
        font-weight: bold;
        color: #006995;
        position: relative;
        display: block;
        margin-top: 7%;
        padding: 0;
    }

    .formTable1 td {
        width: 100%;
        height: auto;
        color: #333;
        position: relative;
        display: block;
        padding-top: 2%;
        padding-bottom: 5%;
    }

    .must_req {
        color: #ffffff;
        background-color: #f62e36;
        padding: 0.5% 2% 0.5% 2%;
        position: absolute;
        top: 0;
        right: 1%;
    }

    .inputform3 {
        width: 95%;
        height: 40px;
        padding-left: 2%;
        border-radius: 5px;
        border: solid 1px #999;
        background-color: #f2f0f0;
    }

    .maU5 {
        font-size: 3vw;
        margin-top: 2%;
    }
    .select_box span{
    width: 40%;
    height: auto;
    color: #333;
    position: relative;
    display: block;
    padding-top: 2%;
    padding-bottom: 5%;
}

.add_send {
    background: #ffda00;
    border-radius: 40px;
    clear: both;
    color: #333;
    display: block;
    font-weight: bold;
    margin: 20px auto;
    /* max-width: 90%; */
    width: 90%;
    height: 64px;
    border: none;
    padding: 1.5% 2% 2.5% 8%;
    text-align: left;
    box-sizing: border-box;
}

.add_aft::after {
    content: url(../images/mail_sen_bt_after.png);
    display: inline-block;
    vertical-align: bottom;
    position: absolute;
    right: 28px;
    top: 16px;
}

}

/* contact box */
#contact{
    width: 100%;
    background: #006995;
}

.contact_inner{
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 30px 0;
    color: #fff;
    text-align: center;
}

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

.contact_tel p{
    font-weight: 600;
}

.saiyou_tel_bottom {
    margin: 16px 0;
    margin-left: 10px;
    margin-right: 15px;
    font-weight: 100 !important;
}

.tel_white {
    font-size: 36px;
    font-weight: 450;
    font-family: 'Oswald', sans-serif;
    color: #fff;
    letter-spacing: 3px;
    position: relative;
    display: inline;
    display: flex;
    justify-content: center;
}

.tel_white img{
    margin-right: 10px;
}



/* thanks page */

.thanks_text {
    text-align: center;
    max-width: 630px;
    margin: 0 auto;
}

.thanks_text h3{
    font-size: 26px;
    margin: 10px auto 30px auto;
    color: #006995;
    text-align: center;
    font-weight: 600;
}

.thanks_text p{
    margin-bottom: 20px;
    color: #333;
    line-height: 1.7em;
    text-align: left;

}

.thanks_text img{
    width: 100%;
    max-width: 400px;
    margin: 20px 0;
}


@media only screen and (max-width: 1024px){
    .contact_inner{
        padding: 60px 12px;
        font-size: 18px;
    }
    .contact_tel{
        display: block;
    }
    
}

    
/* <footer */
.footer_logo{
    width: 100%;
    max-width: 1080px;
    height: 170px;
    margin: auto;
    box-sizing: border-box;
    padding-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.footer_logo p {
    margin: 16px 0;
    font-size: 14px;
    float: right;
    color: #a0a0a0;
}

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

    .footer_logo {
        width: 1080px;
    }
}

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

    footer{
        margin-bottom: 85px;
    }

    .footer_logo {
        width: 100%;
        height: 100%;
        padding: 30px 0;
    }

    .footer_logo p{
        float: none;
        text-align: center;
    }

    .fixed_bottom{
        background: rgba(0,0,0,0.4);
        display: block;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999;
    text-align: center;
    }

    .fixed_bottom .cv_button{
        width: 60%;
        margin: 20px auto;
    }

}



/* footer> */

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc_only { display: block !important; }
.sp_only { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 1024px) {
    .pc_only { display: none !important; }
    .sp_only { display: block !important; }
}