@charset "utf-8";
html {
    scroll-behavior: smooth;
}
body {
    max-width: 1100px;
    margin: 0 auto;
    background-color: #d3d6db;
}
#wrap {
    background-color: #fff;
}
/*--デザイン上、「font-size:0;」とした場合に子要素の文字が表示されなくなる問題を回避するためのclass--*/
.font-reset {
    font: 13px/1.231 arial,helvetica,clean,sans-serif;
    *font-size:small; /* for IE */
	*font:x-small; /* for IE in quirks mode */
	/* font-family: 'Noto Sans', sans-serif; */
}
/*--すべての要素にbox-sizingを設定して幅の違いを無くすcss--*/
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
	box-sizing: border-box;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

/*_____header_____->*/

#header {
    display: flex;
    justify-content: left;
}
.header {
    padding: 10px 5%;
    overflow: hidden;
}
.logo {
    float: left;
    width: 216px;
    padding-top:10px;
}
.logo a {
    background-position: 0 0;
    width: 260px;
    height: 40px;
    /* width: 200px;
    height: 120px; */
    background-image: url(../img/sds_logo.png);
    background-repeat: no-repeat;
    text-indent: -9999px;
    display: block;
}

div.header_menu {
    justify-content: left;
}

.header_menu ul {
    display: flex;

}
.header_menu ul li {
    list-style: none;
    padding-left: 40px;
}
.header_menu ul li a{
    text-decoration: none;
    color: #000;
}


.header_share {
    float: right;
    overflow: hidden;
    margin: 13px 0 0;
    padding: 0;
    list-style: none;
}
.header_share li {
    display: inline-block;
    vertical-align: top;
    margin: 0;
    padding: 0;
}
.header_share li.fb {
    position: relative;
    top: -4px;
}
/*＝＝
sds用ボタン
＝＝*/
a.btn_01 {
	display: block;
	text-align: center;
	text-decoration: none;
	margin: auto;
	padding: 1rem 4rem;
	font-weight: bold;
	border: 4px solid #1A569B;
	color: #1A569B !important;
    background: #fff;
	transition: 0.3s;
    text-shadow: 0 0 BLACK;
}
a.btn_01:hover {
    color: #fff !important;
    background: #1A569B;
    text-shadow: 0 0 BLACK;
}

a.btn_02 {
    display: block;
    text-align: center;
    text-decoration: none;
    margin:auto;
    padding: 1rem 4rem;
    font-weight: bold;
    border: 4px solid #1A569B;
    background: #1A569B;
    color: #fff;
    transition: 0.3s;
}
a.btn_02:hover {
    color: #1A569B;
    background: #fff;
    text-shadow: 0 0 BLACK;
}

.top_visual_txt p,.hidden-entry p{
    position: relative;
}
.free_btn {
    position: absolute;
    right: 20px;
    top: -40px;
}
/*.free_btn:hover {
    opacity: 0.7;
}*/

/*＝＝
sds用ボタン　end
＝＝*/
.top_visual{
    width: 100%;
    height: 600px;
    background: url('../img/sds-top_2.png') no-repeat;
    background-size: cover;
    background-position: right;
    margin: 0;
    padding: 0;
}
.top_visual_box {
    /* background: rgba(255,255,255,0.5); */
    width: 100%;
    height: 100%;
    position: relative;
    /* border-bottom:solid 3px #340101; */
}
.top_con {
    width: 860px;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}
/* .top_con img {
     float: left;
    margin-right: 120px;
    margin-left: 50px; 
} */
img.app_dl{
    margin:0;
}

img.play_dl{
    margin:0;
    margin-left:2px;
}

.img-lower {
    width: 100%;
}


.top_visual_txt {
    width: 400px; 
	margin-top:50px;
    margin-left:20px;
	float: left;
    text-shadow:1px 1px 5px #000;
    font-weight: 600;
}




.top_visual_txt a{
    text-decoration: none;
    color:#fff;
}


.top_sp_img{
	display: none;
}

/*<-_____header_____*/

/*_____main_content_____->*/
.hidden-title{
    display: none;
    }
.second-title {
    color:#fff;
    background: #1A569B;
    font-size: 32px;
    font-weight: bold;
    padding: 3px;
    text-align: center;
}
h2 {
    position: relative;
    margin: 2em;
    font-size: 28px;
    text-align: center;
  }
  h2:before {
    content: '';
    position: absolute;
    bottom: -15px;
    display: inline-block;
    width: 80px;
    height: 4px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #FFC107;
    border-radius: 2px;
  }
  h3.h3_deco {
    padding: 0.25em 0.5em;
    color: #494949;
    background: transparent;
    border-left: solid 5px #1A569B;
  }
  .container-wrap{
    background-color: #03a9f438;
    margin: 30px;
    text-align: center;
  }

img.first_main_photo {
    width: 70%;
    padding: 20px;
}
  

  .box-img img{
    width: 320px;
  }
  .box-img,
  .box-text{
    display: inline-block;
    width: 40%;
  }
.flex_container{
    width:100%;
    display:flex;
    display:-webkit-flex;
        -webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
    align-items: center; /* 縦方向中央揃え */
  -webkit-justify-content: center; /* Safari */
  justify-content:         center;
}
.first_title{
    font-size: 22px;
    font-weight: bold;

}
.item_00 p.sub_text{
    text-align: left;
}
.item_00{
    flex:1;
    order:1;
}
.item_01{
    flex:1;
}
.item_02{
    flex:1;
}
.item_03{
    flex:1;
    order:1;
}
.item_04{
    flex:1;
    order:0;
}
.main_text{
    text-align: center;
    color:#212020;

}
.main_text p{
    margin-left:10%;
    margin-right:10%;
}
/*___プライバシーポリシー____ */
.policy_text{
    margin:3% 0 4% 0;
    text-align: left;
}
.policy_text h3{
    text-align: center;
    border-bottom: 1px solid;
    /* margin: 0 10% 0 10%; */
    padding-bottom: 10px;
}

/*___ 利用規約___ */
.tos_wrap{
    margin-left: 10%;
    margin-right: 10%;
}

.tos_title{
    font-weight: 600;
    font-size: 20px;
    color: #000;
}
.tos_wrap p{
    margin: 0;
}
.tos_wrap li{
    list-style-type: none
}


.sub_text{
    color:#000;

 }
.main_photo{
    width:95%;
}
.top_visual_txt,h4,sub_text,.bottom_sitetop a{
    color:#fff;
}

/*<-_____main_content_____*/


footer {
    padding-bottom: 0;
}

/*_____bottom_content_____->*/
.flex_container.bottom_menu{
    display: none;
}
.bottom{
    width: 100%;
    height: auto;
    background-size: cover;
    margin: 0 auto;
    padding: 0;
    clear:both;
    display: flex;
    border-top: solid;
}
.bottom_text{
    text-align: center;
    margin: 0 auto;
    padding: 10px;
    display: table-cell;
    vertical-align: middle;
    justify-content: center;
}
.bottom .bottom_sitetop a {
    color: #000;
}
ul.bottom_sitetop{
    list-style: none;
	padding:0px;
	font-size: 12px;
    display: flex;
    justify-content: center;
}

ul.bottom_sitetop li{
    display: inline;
    margin:0 5px;
    margin-bottom: 5px;
    padding: 0 10px;
}
.copyright {
    width: 100%;
    font-size: 12px;
    height: auto;
    background-size: cover;
    margin: 0 auto;
    padding: 0;
    clear:both;
    display: flex;
}
/*<-_____bottom_content_____*/



/*_____topimg背景に炎が被らないように。処置_____*/

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

    .top_con{
        width:1070px;
    }
    .top_con img{
        /* margin-right:320px;
        margin-bottom: 5px; */
    }

}
/*_____sp_____->*/

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

body {
    position: relative;
    /* padding-bottom: 44px; */
}
/*_text_sp_*/

/*_____top_sp_____->*/



.top_visual{
    height:400px;
    background-color: #000;
    display: inline-block;
}


.gmenu_sp_hidden {
    display: none;

}

#header .flex_container {

    width: auto;
}

.header_share {
    float: none;
    position: absolute;
    bottom: 6px;
    left: 0;
    text-align: center;
    width: 100%;
}
.logo {
    float: none;
    width: 100%;
}
.logo a {
    margin: 0 auto;
    width: 200px;
/*    height: 120px;*/
    -moz-background-size: 200px auto;
    -o-background-size: 200px auto;
    -webkit-background-size: 200px auto;
    background-size: 200px auto;
}

.header_share li.fb {
    top: 0;
}
.top_sp{
    display:none;
}
.hidden-title{
    display: block;
    color:#fff;
    background: #1A569B;
    font-size: 16;
    font-weight: bold;
    padding: 3px;
    text-align: center;
}
.hidden-entry {
    width: 90%;
    background-color: transparent;
    text-align: center;
    margin: 0 auto;
}

.second-title{
    font-size: 16px;
}

.app_dl{
    margin:auto;
}
.top_con{
    width:auto;
}
.top_visual_txt{
    width:auto;
    margin: 3%;
}

.top_visual{
	display:none;
}

.top_sp_img{
	display: block;
	position: relative;
}

.top_sp_img img{
	width: 100%;
}

.top_sp_img a{
	position: absolute;
	top: 85%;
    left: 25%;
    width: 30%;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);

}

/*<-_____top_sp_____*/


/*_____content_sp_____->*/

.flex_container{
    flex-direction:column;
  }
.main_text{
    margin-top: 30px;
    margin-bottom: 30px;
}
.item_00{
    flex:1;
    order:1;
}

.item_01{
    flex:1;
}
.item_02{
    flex:1;
    width: 100%;
    height:auto;
}
.item_03{
    flex:1;
    order:0;
}
.item_04{
    flex:1;
    order:1;
    height:auto;
    width: 100%;
}
/*<-_____content_sp_____*/

/*_____bottom_sp_____->*/

.bottom_con{
    width: auto;
    margin-left: 5%;
    margin-right: 5%;}
}
/*<-_____bottom_sp_____*/
/*<-_____sp_____*/

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

	ul.bottom_sitetop{
		list-style: none;
		padding:0px;
		font-size: 12px;
		display: flex;
		justify-content: center;
	}
	
	ul.bottom_sitetop li{
		display: inline;
		margin:0 5px;
		margin-bottom: 5px;
	
	}

.top_visual_txt a{
    display: block;
    margin: 0 auto;
    width: 198px;
}
}




.partner {
	background:#f0f0f0;
    text-align: left;
    margin: 0 auto;
    align-items: start;
    padding: 10px;
}

.partner_01 {
    align-items: normal;
    justify-content: left;
    font-size: 26px;
    font-weight: bold;
    border-bottom: solid;
}
.partner_01 p{
    margin: 20px;
}


.partner_02{
    align-items: normal;
	justify-content: space-around;
    padding: 10px 10px 30px 0;
}

.partner_02left {
    padding-left: 20px;
    padding-right: 20px;
    border-right: #999 1px solid;
	width: 60%;
    font-size: 24px;
    font-weight: bold;
}
.partner_03left{
    align-items: normal;
	justify-content: space-around;
    padding: 0;
    font-size: 16px;
    font-weight: normal;
}
.partner_03left_01 {
    padding: 0 20px;
    border-right: #999 1px solid;
	width: 50%;
}
.partner_03left_02 {
    padding: 0 20px;
	width: 50%;
}

.partner_02right {
    padding-left: 20px;
    padding-right: 20px;
	width: 40%;
    font-size: 22px;
    font-weight: bold;

}
.partner_03right {
    padding: 0 30px;
    font-size: 16px;
    font-weight: normal;
}
.partner_03left_01 p, .partner_03left_02 p, .partner_03right p {
    margin-block-start: 0;
    margin-block-end: 0;
}
a.partner_btn {
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 18px;
}


.area {
    color: #fff;
    background-color: #484646;
    align-items: normal;
	justify-content: space-around;
    font-size: 24px;
    padding: 30px 0;
}
.area_left {
    margin-left: 20px;
    border-right: #bbb 1px solid;
    font-weight: bold;
	width: 37%;
}
.area_center {
    padding-left: 20px;
    border-right: #bbb 1px solid;
	width: 40%;
}
.area_center .area_wapper {
}
.area_center .kantou {
    display: flex;
    justify-content: left;
}

.area_center .kansai {
    display: flex;
    justify-content: left;
}


.area_center ul{

}
.area_center ul li {
    list-style-type: none;
    font-size: 16px;
}


.area_right {
    margin-left: 20px;
	width: 23%;
}
.area_right .p_button {
        width: 80%;
        color: #fff;
        background-color: #1A569B;
        font-size: 18px;
        border: none;
        border-radius: 3px;
        line-height: 64px;
        text-align: center;
        border: 4px solid #1A569B;
        transition: 0.3s;

}
.area_right .p_button:hover {
    color: #1A569B !important;
    background: #fff;
    text-shadow: 0 0 BLACK;
}
.area_right .p_button a.link{
    color: #fff;
    text-decoration:none;
    display: block;
}
.area_right .p_button a.link:hover{
    color: #1A569B !important;
    text-decoration:none;
}

.area_right .p_button a.link:hover{
    text-decoration:none;
}
.bottom_menu{
    background-color: #fff;
    align-items: normal;
	justify-content: space-around;
    padding: 30px 0;
}
.bottom_menu_left {
    margin-left: 20px;
/*    border-right: #bbb 1px solid;*/
	width: 33%;
    text-decoration: none;
    color: #000;
}
.bottom_menu_left a{
    text-decoration: none;
}
.bottom_menu_center {
    padding-left: 20px;
/*    border-right: #bbb 1px solid;*/
	width: 34%;
}
.bottom_menu_right {
    margin-left: 20px;
	width: 33%;
}


@media screen and (max-width: 790px) {
    .partner {
    }
    
    .partner_01 {
    }
    .partner_01 p{
    }
        
    .partner_02{
    }
    .partner_02left {
        border-right: none;
        width: 100%;
    }

    .partner_03left{
        align-items: normal;
        justify-content: space-around;
        padding: 0;
    }
    .partner_03left_01 {
        padding: 0 20px;
        border-right: none;
        width: 100%;
    }
    .partner_03left_02 {
        padding: 20px;
        width: 100%;
    }
    
    .partner_02right {
        width: 100%;
        font-size: 24px;
        font-weight: bold;
    }
    .partner_03right {
        padding: 0 30px;
    }
    .partner_03left_01 p, .partner_03left_02 p, .partner_03right p {
        margin-block-start: 0;
        margin-block-end: 0;
    }
    
    
    .area {
    }
    .kouji_img{
        width: 90%;
    }
    .area_left {
        margin-left: 20px;
        border-right: none;
        font-weight: bold;
        margin: 0 20px 30px 20px;
        width: 90%;
    }
    .area_center {
        padding: 0 0 40px 0;
        border-right: none;
        width: 100%;
        display: block;
    }
    .area_center .area_wapper {
        display: flex;
        justify-content: left;
    }
    .area_center p{
        padding: 0 20px 0 40px;
        margin: 0;
        font-weight: bold;
        font-size: 16px;
    }
    .area_center ul{
        padding:0;
        margin: 0;

    }
    .area_center ul li {
        list-style-type: none;

    }
    
    
    .area_right {
        width: 100%;
        justify-content: center;
        text-align: center;
        margin: 0 auto;
        display: flex;
    }
    .area_right .p_button {
            width: 80%;
            color: #fff;
            background-color: #1A569B;
            font-size: 18px;
            border: none;
            border-radius: 3px;
            height: 64px;
            line-height: 64px;
            text-align: center;
    }


    /* .area_right .p_button a.link{
        color: #fff;
        text-decoration:none;
    } */
 
/* .area_right .p_button a.link:hover{
    color: #1A569B;
    text-decoration:none;
} */

    .bottom_menu{
        background-color: #fff;
        align-items: normal;
        justify-content: space-around;
        padding: 30px 0;
    }
    .bottom_menu_left {
        margin-left: 20px;
    /*    border-right: #bbb 1px solid;*/
        width: 33%;
    }
    .bottom_menu_center {
        padding-left: 20px;
    /*    border-right: #bbb 1px solid;*/
        width: 34%;
    }
    .bottom_menu_right {
        margin-left: 20px;
        width: 33%;
    }
}



/*____ ハンバーガーメニュー  ____*/
.humb-menu {
    display: none;
}

@media screen and (max-width: 790px) {
    .humb-menu {
        display: block;
    }
    
}

#gnav-btn {
    color: #000;
    padding: 15px;
    margin: 15px;
    font-size: 20px;
    position: relative;
}
#gnav-input:checked ~ #gnav-content {
    top: 70px;
}
#gnav-content {
    position: absolute;
    top: -100%;
    left: 0;
    z-index: 10;
/*    transition: 0.3s;*/
    width: 80%;
    background-color: #1A569B;
}
.humb-menu label {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    cursor: pointer;
/*    border-top: 0.5px solid #c7c5c5;*/
}
.humb-menu label a{
    text-decoration: none;
    color: white;
}

.humb-menu input {
    display: none;
}
.humb-menu .accshow {
    height: 0;
    overflow: hidden;
}
.humb-menu .accshow p {
    padding: 1.5rem;
}
.humb-menu .cssacc:checked + .accshow {
    height: auto;
}


/* recruit */
.recruit_text {
    padding: 0 60px;
}
.recruit_text div.main_text p {
    margin: 0;
}

.recruit_table {
    margin: 0 20px;
    width: 90%;
}
.recruit_table th {
    font-size: 16px;
    vertical-align: middle;
    text-align: center;
    table-layout: fixed;
    color: #383838;
    background-color: #cdebff;
    width: 20%;
}
.recruit_table td {
    text-align: left !important;
    padding-left: 20px;
}
.recruit_text h3.first_title {
    text-align: left;
}
.recruit_title{
    text-align: center;
    margin-bottom: 20px;
}
.recruit_title h3{
    border-left: none;
}

.question {
    padding-top: 40px;
}
.question div {
    text-align: left;
}
.question h3.first_title{
    margin-left: 60px;
}
.question div p.sub_text{
    font-size: 18px;
}


/* area */
.urgent_rec div.p{
    font-weight: bold;
    font-size: large;
    padding-left: 20px;

}
.urgent_rec {
    padding-left: 20px;

}
.urgent_rec li{
    list-style-type: none;
    padding-left: 20px;
}

.urgent_rec ul {
}

div.recruit_area {
    padding-left: 25%;
    order:1;

}

div.jtizu {
}

div.recarea {
    align-items: stretch;
    margin: 0 auto;
    width: 70%;
}

.h3-area {
    font-size: 1.5em;
}

.Qa-Box {
    width: 80%;
    margin: 0 auto;
}

    .Qa-Box .Qa dt,
    .Qa-Box .Qa dd {
        display: flex;
        align-items: baseline;
        margin: 30px 0;
    }

        .Qa-Box .Qa dt p {
            margin: 0;
            padding-left: 15px;
            font-weight: bold;
            width: 100%;
        }

        .Qa-Box .Qa dd p {
            margin: 0;
            padding-left: 15px;
            width: 100%;
        }

        .Qa-Box .Qa dt::before {
            content: "Q";
            display: flex;
            justify-content: center;
            align-items: center;
            background: #D65556;
            color: #fff;
            width: 35px;
            height: 35px;
        }

        .Qa-Box .Qa dd::before {
            content: "A";
            display: flex;
            justify-content: center;
            align-items: center;
            background: #6699B7;
            color: #fff;
            width: 35px;
            height: 35px;
        }

    .kanto_area_text{
        color: #75bfe1;
        font-weight: 600;
    }
    .kansai_area_text{
        color: #e78bc5;
        font-weight: 600;
    }
    .hokkaido_area_text{
        color: #a6ce82;
        font-weight: 600;
    }
    .tokai_area_text{
        color: #bd99ef;
        font-weight: 600;
    }
    .kyushu_area_text{
        color: #f5e270;
        font-weight: 600;
    }
    .chugoku_area_text{
        color: #D8EFA2;
        font-weight: 600;
    }
    .shikoku_area_text{
        color: #FFC4A0;
        font-weight: 600;
    }    
@media screen and (max-width: 960px) {
    .Qa-Box {
        width: 95%;
    }
}



/* partner */
.partner_h2 {
    margin: 20px 0 40px 0;
}
.partner_content {
    width:90%;
    display:flex;
    display:-webkit-flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin: 0 auto;
}
.partner_img {
    width: 40%;
    text-align: center;
}
.partner_text {
    width: 60%;
    vertical-align: top;
    align-self: start;
}
.partner_text2 {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 40px;
}
@media screen and (max-width: 790px) {
    .partner_content {
        display: block;
    }
    .partner_img {
        width: 100%;
        margin: 0 auto;
    }
    .partner_text {
        width: 100%;
        margin: 0 auto;
    }
}