@charset "UTF-8";
/* --------------------------	
   common
 ----------------------------*/
html {
    font-size: 62.5%;
}
body {
    color: #333;
    font-size: 1.6rem;
    font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    -webkit-text-size-adjust: 100%;
    line-height: 1.5;
}
p {
    font-size: 14px;
    font-size: 1.4rem;
}
img {
    width: 100%;
    height: auto;
}
a {
    color: #000;
    opacity: 1;
}
a:hover {
    opacity: 0.8;
    transition: all .3s;
}
.sp-br {
    display: block;
}
.pc-br {
    display: none;
}
.mincho {
    /*	font-family: "ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","ＭＳ Ｐ明朝","MS PMincho",serif;*/
}
.default-font {
    font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
/*youtube埋め込み*/
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  max-width: 680px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* PC表示時（幅768px以上）は固定サイズに */
@media screen and (min-width: 768px) {
  .video-container {
    width: 680px;
    height: 383px;
    padding-bottom: 0; /* 無効化 */
  }

  .video-container iframe {
    width: 680px;
    height: 383px;
    position: static;
  }
}

/* --------------------------	
   header
 ----------------------------*/
.header-logo {
    width: 108px;
    height: auto;
    margin: 0 auto;
    padding: 7px 0;
}
h1.header-title {
    display: block;
    color: #1d4e85;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
    margin: 0 auto;
    padding-bottom: 8px;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.1em;
}
h1.header-title a {
    color: #1d4e85;
}
h1.header-title a:hover {
    opacity: 1;
    transition: none;
}
#header {
    position: relative;
    background: #fff;
    z-index: 2;
    display: flex;
    justify-content: space-between;
}
/* --------------------------	
   navigation
 ----------------------------*/
#nav {
    display: none;
}
#nav-sp ul {
    position: absolute;
    width: 100%;
    background: #F3F4F0;
    z-index: 2;
}
#nav-sp li {
    border-bottom: 1px solid #E6E8EC;
}
#nav-sp li:first-child {
    border-top: 1px solid #E6E8EC;
}
#nav-sp li a {
    position: relative;
    display: block;
    color: #666;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: bold;
    padding: 15px 0 15px 30px;
    text-decoration: none;
}
#nav-sp li a::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    width: 6px;
    height: 6px;
    border: 1px solid #666;
    border-style: none solid solid none;
    transform: translateY(-50%) rotate(-45deg) skew(0deg, 0deg);
}
#nav.top-nav {
    margin-top: 10px;
    margin-left: 85px;
}
#nav.top-nav li {
    margin: 0 35px;
}
/* --------------------------	
*matching
--------------------------*/
#matching-container {
    width: 100%;
    width: 28rem; /* 448px */
    margin: 40px 0 0 20px;
    padding: 1rem; /* 16px */
    display: flex;
    flex-direction: column;
    gap: 0.75rem; /* 12px */
    font-weight: bold;
    line-height: 2rem;
}
.matching-heading {
    text-align: center;
    font-size: 2.2rem;
    margin: 1rem 0;
    color: #1d4e85;
}
.matching-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 3.5rem;
    border: 2px solid #1d4e85;
    background-color: transparent;
    color: #1d4e85;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    font-weight: bold;
    border-radius: 5px;
    letter-spacing: 3px;
}
.matching-btn:hover {
    background-color: #1d4e85;
    color: #fff;
}
.matching-icon {
    position: absolute;
    left: 1rem; /* 16px */
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid currentColor;
}
.matching-btn-text a {
    text-align: center;
    color: inherit;
    font-size: 18px;
}
/* レスポンシブ */
@media screen and (max-width: 750px) {
    #matching-container {
        display: none;
    }
}
#matching-container-sp .matching-btn-link {
    display: block;
    color: #666;
    font-size: 1.4rem;
    font-weight: bold;
    padding: 15px 30px;
    text-decoration: none;
    border-bottom: 1px solid #E6E8EC;
    position: relative;
}
#matching-container-sp .matching-btn-link:hover {
    background-color: #f0f0f0;
    color: #333;
}
#matching-container-sp .matching-btn-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10px;
    width: 6px;
    height: 6px;
    border: 1px solid #666;
    border-style: none solid solid none;
    transform: translateY(-50%) rotate(-45deg) skew(0deg, 0deg);
}
/* --------------------------	
   main
 ----------------------------*/
#main {
    max-width: 1400px;
    margin: 0 auto;
}
.hero-image-text {
    margin: 2% 20% 1% 20%;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.6);
}
.hero-image-text h2 {
    font-size: 1.5rem;
    font-weight: bold;
}
.hero-image-text p {
    font-size: 1.5rem;
    text-align: justify;
}
.hero-image-text a {
    display: block;
    text-align: right;
    color: #1d4e85;
    font-weight: bold;
    font-size: 1.5rem;
}
/* --------------------------	
   search
 ----------------------------*/
.checkbox-group label {
    margin-right: 10px; /* ラベル間のスペースを調整 */
}
#serch {
    background-color: #fff;
    margin: auto;
    margin: 0 15% 2% 15%;
    padding: 15px;
}
#serch h2 {
    font-weight: bold;
    color: #1d4e85;
}
.filters table {
    border-collapse: collapse;
    width: 100%;
}
.filters table th {
    background-color: #1d4e85;
    color: #fff;
    padding: 5px 20px;
    text-align: center;
    line-height: 300%;
    font-size: 16px;
    font: bold;
    width: 180px;
    border: 1px solid #c6c6c6;
}
.filters table td {
    vertical-align: middle;
    border: 1px solid #c6c6c6;
}
.checkbox-group {
    margin-left: 20px
}
/* --------------------------	
   nav mnue btn
 ----------------------------*/
.menu-btn {
    position: absolute;
    color: #1d4e85;
    text-align: center;
    width: 35px;
    height: 75px;
    top: 0;
    right: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 101;
    cursor: pointer;
}
.menu-btn, .menu-btn span {
    display: inline-block;
    -webkit-transition: all .4s;
    transition: all .4s;
}
.menu-btn span {
    display: block;
    position: absolute;
    top: 21px;
    left: 0;
    width: 35px;
    height: 1px;
    background: #1d4e85;
}
.menu-btn span:nth-of-type(1) {
    margin-top: 1px;
}
.menu-btn span:nth-of-type(2) {
    margin-top: 13px;
}
.menu-btn span:nth-of-type(2)::after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background-color: #1d4e85;
    border-radius: 4px;
    -webkit-transition: all .4s;
    transition: all .4s;
}
.menu-btn span:nth-of-type(3) {
    margin-top: 26px;
}
.menu-btn.active span:nth-of-type(1) {
    -webkit-transform: translateY(8px) scale(0);
    transform: translateY(8px) scale(0);
}
.menu-btn.active span:nth-of-type(2) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.menu-btn.active span:nth-of-type(2)::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
.menu-btn.active span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) scale(0);
    transform: translateY(-8px) scale(0);
}
.menu-text {
    position: absolute;
    bottom: 5px;
    left: 1px;
    width: 33px;
    height: 8px;
    background-image: url(../images/common/menu.svg);
    background-repeat: no-repeat;
    background-size: 33px 8px;
}
.menu-btn.active .menu-text {
    background-image: url(../images/common/close.svg);
}
/* --------------------------	
   navMode
 ----------------------------*/
#overlay {
    -webkit-transition: background 0.4s ease-out;
    transition: background 0.4s ease-out;
}
.navMode #overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.40);
}
#sp-menu-wrap ul {
    display: none;
}
/* --------------------------	
   breadcrumbs
 ----------------------------*/
.breadcrumbs {
    min-height: 40px;
    background-color: #F1F1F1;
}
.breadcrumbs ul {
    padding: 5px 3.3% 9px;
}
.breadcrumbs li {
    display: inline-block;
    position: relative;
    color: #333;
    font-size: 10px;
    font-size: 1.0rem;
}
.breadcrumbs li.current, .breadcrumbs li.previous {
    padding-left: 15px;
}
.breadcrumbs li.current::before, .breadcrumbs li.previous::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 4px;
    height: 4px;
    border: 1px solid #333;
    border-style: none solid solid none;
    transform: translateY(-50%) rotate(-45deg) skew(20deg, 20deg);
    left: 2px;
    z-index: 1;
}
.breadcrumbs li a {
    display: inline-block;
    color: #333;
}
.breadcrumbs-wrap {
    padding: 20px 0;
    border-top: solid #969696 1px;
}
/* --------------------------	
   pages
 ----------------------------*/
.career-path h1 {
    background: #004D8A;
    color: #ffffff;
    font-weight: bold;
    padding-left: 120px;
    font-size: 30px;
    letter-spacing: 3px;
    border-bottom: #cacbcc 2px solid
}
.career-path p {
    padding-left: 5px;
	margin-left: 0;
}
.career-path h3 {
	font-size: 2rem;
	font-weight: bold;
}
.job-description h1 {
    background: #004D8A;
    color: #ffffff;
    font-weight: bold;
    padding-left: 120px;
    font-size: 30px;
    letter-spacing: 3px;
    border-bottom: #cacbcc 2px solid
}
.common-bg {
    background-image: url("../images/common/common-bg.png");
    background-repeat: repeat-y;
    max-width: 1400px;
    width: auto;
}
.common-bg-wrap {
    margin-left: 80px;
    margin-top: 50px;
}
.common-bg-wrap h2 {
    font-size: 24px;
    font-size: 2.4rem;
    color: #004D8A;
    font-weight: bold;
    line-height: 200%;
    margin-bottom: 20px
}
.common-bg-wrap p {
    font-size: 18px;
    font-size: 1.8rem;
    color: #000;
    margin-left: 15px;
    line-height: 200%;
}
/* --------------------------	
   レスポンシブ
 ----------------------------*/
@media screen and (max-width:751px) {
    .common-bg-wrap, .job-description h1, .career-path h1 {
        padding: 8px;
        font-size: 24px;
        font-size: 2.4rem;
        margin: 0;
    }
    .common-bg-wrap h2 {
        font-size: 20px;
        font-size: 2rem;
        margin-bottom: 0;
    }
    .common-bg-wrap p {
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 200%;
        text-align: justify
    }
}
@media screen and (max-width:1260px) {
    #nav.top-nav {
        margin-left: 0;
    }
    #nav.top-nav li {
        margin: 0 20px;
        /* font-size: 16px;*/
    }
/*    #matching-container {
        width: 200px;
    }*/
}
/* --------------------------	
   footer
 ----------------------------*/
#footer {
    color: #fff;
    font-size: 12px;
    font-size: 1.2rem;
    text-align: center;
    background: #1d4e85;
}
#footer .footer-link {
    background: #E6E8EC;
}
#footer ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    padding: 18px 19px 0;
    text-align: left;
}
#footer li {
    position: relative;
    margin-bottom: 18px;
    padding-left: 10px;
}
#footer li:nth-child(odd) {
    width: 50%;
    margin-right: 4%;
}
#footer li:nth-child(even) {
    width: 46%;
}
#footer li:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    width: 0;
    height: 0;
    border-width: 4px 0 4px 7px;
    border-style: solid;
    border-color: transparent transparent transparent #999;
}
#footer li a {
    color: #555;
    text-decoration: underline;
}
.footer-title {
    position: relative;
    font-size: 14px;
    font-size: 1.4rem;
    margin-bottom: 25px;
    padding: 15px 0 0;
}
.footer-title:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -9px;
    display: inline-block;
    width: 30px;
    height: 1px;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translate(-50%);
    background-color: #fff;
}
.footer-address {
    font-size: 12px;
    font-size: 1.2rem;
    margin-bottom: 21px;
    line-height: 2.0;
    letter-spacing: 0.06em;
}
.footer-copyright {
    display: block;
    color: #555;
    font-size: 10px;
    font-size: 1.0rem;
    font-weight: bold;
    padding: 7px 0;
    background: #d6d6d6;
    letter-spacing: 0.05em;
}
.footerBnr-wrap{
    padding: 20px 0 20px 0 ;
}
ul.footerBnr{
	text-align: center;
}
ul.footerBnr li{
	display: inline-block;
	margin-right: 16px;
    margin-top: 5px;
}
ul.footerBnr img{
    height: 60px;
    width: 240px;
    border: 1px solid #878787;
}

@media(max-width: 320px) {
    h1.header-title {
        letter-spacing: normal;
    }
}
@media screen and (min-width:751px) {
    /* --------------------------	
   common
 ----------------------------*/
    .sp-br {
        display: none;
    }
    .pc-br {
        display: block;
    }
    /* --------------------------	
   header
 ----------------------------*/
    #header {
        position: relative;
        max-width: 1400px;
        margin: 0 auto 5px;
        display: block;
    }
    .header-inner {
        /*		margin-bottom: 10px;*/
        overflow: hidden;
        text-align: center;
    }
    .header-logo {
        float: left;
        margin: 10px 0 0 30px;
        padding: 0;
        width: 165px;
        height: 65px;
    }
    h1.header-title {
        display: inline-block;
        font-size: 40px;
        font-size: 4rem;
        margin: 0 0 0 50px !important;
        padding: 0;
    }
    /* --------------------------	
   navigation
 ----------------------------*/
    #nav {
        display: none;
    }
    .menu-btn {
        display: none;
    }
    #nav {
        display: block;
        max-width: 950px;
        margin: 0 auto 15px; /*ナビしたの空白*/
    }
    #nav ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        line-height: 1.3;
        padding: 0 25px;
        text-align: center;
        flex-wrap: nowrap;
    }
    #nav li {
        position: relative;
        font-size: 20px;
        font-size: 2 rem;
        padding-top: 15px;
    }
    #nav li:nth-of-type(5) {
        padding-top: 0;
    }
    #nav li a {
        display: block;
        height: 100%;
        color: #333;
        margin-bottom: 4px;
    }
    /* vav - TOP 
 -------------*/
    #nav.top-nav li a.active {
        border-bottom: 2px solid #353535 !important;
    }
    /* nav - PAGE 
 -------------*/
    #nav.page-nav li a:before {
        content: '';
        position: absolute;
        left: 50%;
        bottom: -2px;
        display: inline-block;
        width: 40px;
        height: 1px;
        -moz-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translate(-50%);
        background-color: #7863AC;
    }
    /* vav - HOVER 
 -------------*/
    #nav li a:hover {
        color: #7676dd;
        opacity: 1;
    }
    #nav.top-nav li a:hover {
        border-bottom: 1px solid #7676dd;
    }
    #nav.page-nav li a:hover:before {
        background-color: #7676dd;
    }
    /* --------------------------	
   breadcrumbs
 ----------------------------*/
    .breadcrumbs {
        height: 40px;
        background-color: #F1F1F1;
    }
    .breadcrumbs ul {
        width: 1200px;
        margin: 0 auto;
        padding-left: 20px;
    }
    .breadcrumbs li {
        font-size: 16px;
        font-size: 1.6rem;
    }
    .breadcrumbs li.current, .breadcrumbs li.previous {
        padding-left: 18px;
    }
    .breadcrumbs li.current::before, .breadcrumbs li.previous ::before {
        width: 5px;
        height: 5px;
        left: 3px;
    }
    /* --------------------------	
   footer
 ----------------------------*/
    #footer {
        color: #fff;
        font-size: 14px;
        font-size: 1.4rem;
        text-align: center;
        background: #1d4e85;
    }
    #footer .footer-link {
        background: #E6E8EC;
    }
    #footer ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        max-width: 1050px;
        margin: 0 auto;
        padding: 10px 25px;
    }
    #footer li {
        margin-bottom: 0;
        margin-right: 20px;
        padding-left: 15px;
    }
    #footer li:nth-child(odd) {
        width: auto;
        margin-right: 20px;
    }
    #footer li:nth-child(even) {
        width: auto;
    }
    #footer li:before {
        top: 4px;
        border-width: 6px 0 6px 10px;
    }
    #footer li a {
        text-decoration: none;
    }
    .footer-title {
        position: relative;
        font-size: 14px;
        font-size: 1.4rem;
        margin-bottom: 26px;
        padding: 25px 0 0;
    }
    .footer-title:before {
        content: '';
        position: absolute;
        left: 50%;
        bottom: -13px;
        display: inline-block;
        width: 30px;
        height: 1px;
        -moz-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translate(-50%);
        background-color: #fff;
    }
    .footer-address {
        font-size: 14px;
        font-size: 1.4rem;
        margin-bottom: 24px;
        letter-spacing: 0.06em;
    }
    .footer-copyright {
        font-size: 12px;
        font-size: 1.2rem;
        padding: 6px 0;
    }
}
@media screen and (min-width:900px) {
    /* --------------------------	
   header
 ----------------------------*/
    h1.header-title {
        margin: 0;
    }
    /* --------------------------	
   breadcrumbs
 ----------------------------*/
    .breadcrumbs ul {
        padding-left: 5px;
    }
}
@media screen and (max-width:750px) {
    #header {
        flex-direction: column;
    }
    .matching-heading {
    font-size: 16px;
    }
}