@charset "UTF-8";

/* CSS Document */

/*==================================================

container
=================================================*/

.pc-only {
	display: block;
}
.sp-only {
	display: none;
}

/*==================================================

header
=================================================*/

.inner-head {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; 
    
    position: fixed;
	min-width: 100%;
	background-color: #b7dbff;
	top: 70px;
	left: 0;
	z-index: 1000!important;
    padding: 12px 0;
    
    /* animation */
    -webkit-transition: all 0.1s;
    transition: all 0.1s;

}
.inner-head.top {
    display: block;
    top: var(--header-height);
}
.header-spmenu {
    width: 90%;
    max-width: 960px;
    cursor: pointer;
    font-size: 1.2rem;
    color: #FFF;
    text-align: center;
    border-radius: 24px;
    background-color: #538fcb;
    background-image: url("../../../images/arrow_u.png");
    background-position: left 20px center;
    background-repeat: no-repeat;
    background-size: auto;
    margin: 5px auto 0;
    padding: .4em 1em;
}
.open .header-spmenu {
    background-image: url("../../../images/arrow_c.png");
}
.inner-head h1 {
    width: 30%;
    max-width: 280px;
    font-size: 1.6rem;
    text-align: center;
    font-weight: 700;
    color: #000;
    line-height: 160%;
    margin: 0 auto;
}
.inner-head.top h1 {
    width: 90%;
    max-width: 960px;
}
.inner-head h1 a {
    color: #000;
}
.inner-head > ul {
    width: 65%;
    max-width:  570px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;

    margin: 0 auto;
}
.inner-head.top > ul {
    width: 90%;
    max-width: 960px;
}
.inner-head > ul > li {
    position: relative;
}
.inner-head > ul > li > a,.inner-head > ul > li > p {
	width: 100%;
	display: block;
    cursor: pointer;
	color: #000;
    text-align: center;
    font-size: 1.4rem;
    letter-spacing: 0!important;
	text-decoration: none;
	padding: 15px 1em;
}
.inner-head> ul > li > a:hover {
    opacity: 1;
}
.inner-head > ul > li:hover > a {
    color: #538fcb;
    background-color: #FFF;
}

.inner-head > ul > li > ul {  
	width: 220px;
    height: 0;
    overflow: hidden;
    position: absolute;
    visibility: hidden;
    opacity: 0;
	background-color: #FFF;
    box-shadow: 0 10px 10px rgba(0,0,0,0.2);
    
    webkit-transition: all .2s ease;
	transition: all .2s ease;
    
	left: 0;
    
    z-index: 1;
}

/* サブメニュー表示設定 */

.inner-head > ul > li:hover ul {
    height: initial;
    height: auto;
  	visibility: visible;
	opacity: 1;
    z-index: 2;
}


/* サブメニュー詳細設定 */

.inner-head > ul > li > ul li {
	width: 100%;
}
.inner-head > ul > li > ul li a {
	width: 100%;
	display: block;
	color: #000;
    font-size: 1.2rem;
	text-align: left;
    line-height: 140%;
    letter-spacing: 0!important;
	text-decoration: none;
    border-bottom: 1px solid #DDD;
	padding: 15px 10px;
}
.inner-head > ul > li > ul li:nth-last-of-type(1) a {
    border-bottom: none;
}
.inner-head > ul > li > ul li a:hover {
    opacity: 1;
	color: #538fcb;
}
.inner-head > ul > li.button {
    width: 200px;
    overflow: hidden;
    margin-left: auto;
}
.inner-head > ul > li.button a {
	width: 100%;
    display: block;
    color: #000;
    text-align: center;
    border-radius: 36px;
    background-color: #ffc000;
    border: 2px solid #ffc000;
    padding: 10px 1em;
}
.inner-head > ul > li.button a:hover {
    background-color: #FFF;
}

/*==================================================

contents
=================================================*/

main {
    background-color: #E8E9E7;
    padding-top: 220px!important;
}
.inner-wrapper {
    width: 98vw;
}
.contents-wrapper {
    width: 100%;
}
.inner-contents {
    width: 90%;
    max-width: 960px;
    background-color: #FFF;
    margin: 0 auto;
}

/* top */

.inner-contents .tiles-right {
    width: 100%;
    position: relative;
}
.inner-contents .tiles-right .head {
    width: 66.25%;
    position: absolute;
    border: 2px solid #FFF;
    bottom: 0;
    left: 0;
    z-index: 1;
}
.inner-contents .tiles-right li {
    width: 32.33%;
    margin: 10px 0 0 auto;
    padding: 0;
}
.inner-contents .tiles-right li a {
    display: block;
    border: 2px solid #FFF;
}
.inner-contents .tiles-right li a:hover {
    border: 2px solid #538fcb;
}
.inner-contents .tiles-right img {
    width: 100%;
	max-width: 100%;
	height: auto;
}
.inner-contents .tiles {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;

    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.inner-contents .tiles li {
    width: 32.33%;
    padding: 10px 0 0;
}
.inner-contents .tiles li a {
    display: block;
    position: relative;
    border: 2px solid #FFF;
}
.inner-contents .tiles li a:hover {
    display: block;
    border: 2px solid #538fcb;
}
.inner-contents .tiles li a[target=_blank]:not([href$=".pdf"]):not([href$=".xls"]):not(.no-icon):after {
    display: block;
    position: absolute;
    top: initial;
    top: auto;
    right: 5px;
    bottom: 5px;
    z-index: 1;
}
.inner-contents .tiles img {
    width: 100%;
	max-width: 100%;
	height: auto;
}

.inner-contents .p-navi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    
    padding: 10px 10px 10px 2em;
}
.inner-contents .p-navi li {
    font-size: 1.2rem;
    line-height: 140%;
    padding: 0 .25em;
}
.inner-contents .p-navi li::before {
    content: "＞";
	display: inline-block;
    margin-right: .5em;
}
.inner-contents .p-navi li:nth-of-type(1)::before {
    content: "";
}

.inner-entry-area {
    width: 90%;
    margin: 0 auto;
    padding: 6% 0;
}
.inner-entry-area a.all-job {
    width: 100%;
    max-width: 440px;
    position: relative;
    display: block;
    margin: 0 auto;
}
.inner-entry-area a[target=_blank]:not([href$=".pdf"]):not([href$=".xls"]):not(.no-icon):after {
    display: block;
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translate(0, -50%); 
    transform: translate(0, -50%);
    z-index: 1;
}
.inner-entry-area ul {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;

    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    
}
.inner-entry-area ul li {
    width: 48%;
    max-width: 430px;
    margin-top: 60px;
}
.inner-entry-area ul.link {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.inner-entry-area ul.link li {
    width: 48%;
    max-width: 360px;
    margin: 0 1% 0;
}

/*==================================================

footer
=================================================*/

.inner-footer {
    font-size: 1.4rem;
    color: #FFF;
    background-color: #538fcb;
    margin-top: 80px;
    padding: 40px 0;
}
.inner-footer p {
    font-size: 1.2rem;
}
.inner-footer a {
    color: #FFF;
}
.inner-footer h2,.inner-footer > ul,.inner-footer .footer-sns,.inner-footer .footer-add-info {
    width: 90%;
    max-width: 960px;
    margin: 0 auto;
}
.inner-footer h2 {
    font-size: 1.6rem;
}
.inner-footer > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;

    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.inner-footer > ul > li {
    margin-top: 15px;
    padding-right: 1em;
}
.inner-footer ul li ul li {
    font-size: 1.2rem;
    text-indent: -1.5em;
    margin-top: 5px;
    padding-left: 1.5em;
}
.inner-footer ul li ul li::before {
    content: "＞ ";
	display: inline;
    vertical-align: middle;
}
.inner-footer h2 a {
    text-decoration: none;
}
.inner-footer .footer-sns {
    margin: 20px auto;
}

.data-t-style {
    width: 100%;
}
.data-t-style th {
    width: 20%;
    text-align: center;
    vertical-align: middle;
    background-color: #DDD;
    border-bottom: 3px solid #FFF;
    padding: 1.5em;
}
.data-t-style td {
    border-bottom: 3px solid #FFF;
    padding: 1.5em;
}
.data-t-style tr:nth-of-type(odd) {
    background-color: #EEE;
}


/*==================================================

size m
=================================================*/
    
    
@media only screen and (min-width:1px) and (max-width: 768px) {
	
    .sp-only {
		display: block;
	}
	.pc-only {
		display: none;
	}
    
    
    /*==================================================

    header
    =================================================*/
	
    .inner-head {
        display: block;
    }
    .inner-head h1 {
        width: 90%;
        max-width: 960px;
        font-size: 1.2rem;
        color: #000;
        margin: 0 auto;
    }
    .inner-head > ul {
        /* モバイルメニュー幅 */
        width: 100%;
        max-width: 100%;
        height: 0;
        display: block;
        position: absolute;
        overflow: hidden;
        background-color: #b7dbff;
        margin: 0;
        padding: 0;
        z-index: 1003!important;

        /* animation */
        -webkit-transition: all 0.3s;
        transition: all 0.3s;

    }
    .inner-head.top > ul {
        width: 100%;
        max-width: 100%;
    }
    .open .inner-head > ul {
        height: 100vh;
        padding: 10px 0 240px;
    }
    .open .inner-head > ul {
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
    }
    .open .inner-head > ul::-webkit-scrollbar {
        width: 5px;
    }

    .open .inner-head > ul::-webkit-scrollbar-track {
        border-radius: 0;
        background-color: #EEE;
    }

    .open .inner-head > ul::-webkit-scrollbar-thumb {
        background-color: #94c4f4;
        border-radius: 0;
    }

    .inner-head > ul > li {
        width: 100%;
        display: block;
        text-align: center;
        margin: 0;
    }
    .inner-head > ul > li:hover ul {
        height: initial;
        height: auto;
        visibility: visible;
        padding: 0;
        opacity: 1;
        z-index: 2;
    }
    .inner-head > ul > li > a,.inner-head > ul > li > p {
        width: 90%;
        max-width: 480px;
        display: block;
        font-size: 1.4rem;
        text-align: center;
        background-color: #FFF;
        text-decoration: none;
        margin: 10px auto 0;
        padding: .6em 1em;
    }

    .inner-head > ul > li > ul {
        width: 90%;
        max-width: 480px;
        position: relative;
        height: initial;
        height: auto;
        visibility: visible;
	    opacity: 1;
        border-top: none;
        background-color: transparent;
        background-image: none;
        box-shadow: none;
        border-radius: 0;
        margin: 10px auto 0;
        padding: 0;
    }

    /* サブメニュー詳細設定 */

    .inner-head > ul > li > ul li {
        width: initial;
        width: auto;
        width: 100%;
        display: block;
        margin: 0;
        padding: 0;
    }
    .inner-head > ul > li > ul li a {
        width: 100%;
        display: block;
        font-size: 1.2rem;
        color: #000;
        text-align: left;
        text-decoration: none;
        border: none;
        padding: .2em 1.2em;
    }
    .inner-head > ul > li > ul li a::before {
        content: "＞ ";
        display: inline;
        vertical-align: middle;
    }
    .inner-head > ul > li > ul li br {
        display: none;
    }
    .inner-head > ul > li.button {
        width: 100%;
        border-radius: 0;
        overflow: auto;
        background-color: transparent;
        border: none;
        margin-left: 0;
    }
    .inner-head > ul > li.button a {
        width: 90%;
        max-width: 480px;
        display: block;
        font-size: 1.4rem;
        text-align: center;
        background-color: #ffc000;
        border: 2px solid #ffc000;
        text-decoration: none;
        margin: 10px auto 0;
        padding: .6em 1em;
    }
    .inner-head > ul > li.button a:hover {
        background-color: #FFF;
    }
    
    .inner-contents .p-navi {
        padding: 10px;
    }
    .inner-contents .p-navi li {
        font-size: 1rem;
        line-height: 140%;
        padding: 0 .25em;
    }
    
    /*==================================================

    contents
    =================================================*/
    
    .contents-wrapper {
        
    }

    /* top */

    .inner-contents .tiles-right {
        width: 100%;
        max-width: 635px;
        position: relative;
        margin: 0 auto;
    }
    .inner-contents .tiles-right .head {
        width: 100%;
        position: relative;
        border: 2px solid #FFF;
        bottom: 0;
        left: 0;
        z-index: 1;
    }
    .inner-contents .tiles-right li {
        width: 100%;
        margin: 10px 0 0 auto;
        padding: 0;
    }
    .inner-contents .tiles-right li a {
        display: block;
        border: 2px solid #FFF;
    }
    .inner-contents .tiles-right li a:hover {
        border: 2px solid #538fcb;
    }
    .inner-contents .tiles {
        width: 100%;
        max-width: 635px;
        display: block;
        margin: 0 auto;
    }
    .inner-contents .tiles li {
        width: 100%;
        padding: 10px 0 0;
    }
    
    
    .inner-contents {
        width: 100%;
        max-width: 960px;
        background-color: #FFF;
        margin: 0 auto;
    }
    
    .inner-entry-area a.all-job {
        width: 100%;
        max-width: 440px;
        display: block;
        margin: 0 auto;
    }
    .inner-entry-area ul {
        width: 100%;
        display: block;
    }
    .inner-entry-area ul li {
        width: 100%;
        max-width: 430px;
        margin: 5% auto 0;
    }
    
    .inner-entry-area ul.link {
        width: 100%;
        display: block;
    }
    .inner-entry-area ul.link li {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }
    .inner-entry-area ul.link li:nth-of-type(1) {
        margin-bottom: 5%;
    }
    
    .data-t-style {
        width: 100%;
    }
    .data-t-style th {
        width: 100%;
        display: block;
        text-align: center;
        vertical-align: middle;
        background-color: #DDD;
        border-bottom: 3px solid #FFF;
        padding: 1em;
    }
    .data-t-style td {
        width: 100%;
        display: block;
        border-bottom: 3px solid #FFF;
        padding: 1em 0;
    }
    .data-t-style tr:nth-of-type(odd) {
        background-color: #FFF;
    }
    
    /*==================================================

    footer
    =================================================*/

    .inner-footer {
        font-size: 1.2rem;
        color: #FFF;
        background-color: #538fcb;
        margin-top: 8%;
        padding: 5% 0;
    }
    .inner-footer p {
        font-size: 1.2rem;
    }
    .inner-footer a {
        color: #FFF;
    }
    .inner-footer h2,.inner-footer > ul,.inner-footer .footer-sns,.inner-footer .footer-add-info {
        width: 90%;
        max-width: 480px;
        margin: 0 auto;
    }
    .inner-footer h2 {
        font-size: 1.4rem;
    }
    .inner-footer > ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .inner-footer > ul > li {
        margin-top: 15px;
        padding-right: 1em;
    }
    .inner-footer .footer-sns {
        margin: 5% auto;
    }
}

/*==================================================

size s
==================================================*/

@media only screen and (min-width:1px) and (max-width: 46em) {
	
	
	/*==================================================
	
	header
	==================================================*/
    
    .inner-head {
        top: var(--header-height);
        display: block;
    }
    .inner-head.top {
        top: var(--header-height);
        display: block;
    }
		
	/*==================================================
	
	Navi
	==================================================*/
	
	
	/*==================================================
	
	contents
	==================================================*/
	
    main {
        padding-top: 160px!important;
    }
    .inner-wrapper {
        width: 100%;
    }
	
	/*==================================================
	
	footer
	==================================================*/
	

}

@media only screen and (min-width:1px) and (max-width: 480px) {
	
	
	/*==================================================
	
	header
	==================================================*/

	
	/*==================================================
	
	Navi
	==================================================*/
	
	
	/*==================================================
	
	contents
	==================================================*/
	
	
	/*==================================================
	
	table
	==================================================*/
	
	
	/*==================================================
	
	footer
	==================================================*/
	
	
}





