@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Kosugi+Maru&display=swap');

/*-----------------
 全体共通
------------------*/
* {
    line-height: 1.8;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
html {
    font-size: 100%;
    scroll-behavior: smooth;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-size: 17px;
    font-weight: 500;
    font-family: "Noto Sans JP", sans-serif;
    background-color: #fff;
    color: #333;
}
a {
    color: #333;
    text-decoration: underline;
    text-underline-offset: 5px;
    transition: 0.4s;
}
a:hover {
    opacity: 0.8;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}
main {
    overflow-x: hidden;
}
section {
    padding: 150px 0;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
}
.content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}
@media screen and (max-width: 1300px) {
    #recruit .container {
        margin: 0 20px;
    }
}
@media screen and (max-width: 767px) {
    body{
        width: 767px;
        overflow: auto;
    }
}
@media screen and (max-width: 480px) {
    body{
        width: 100%;
    }
    .content {
        flex-direction: column;
    }
    section {
        padding: 100px 0;
    }
}


/* 見出し */
.index {
    margin-bottom: 30px;
}
.headline {
    font-size: 50px;
    letter-spacing: 10px;
}
.subhead {
    font-size: 25px;
    letter-spacing: 3px;
}
#page_title {
    position: relative;
    height: 350px;
    padding: 0 10px;
}
#page_title::after {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}
#page_title .index {
    width: 100%;
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -65%);
    color: #fff;
    z-index: 2;
    text-align: center;
}
.sub_index {
    position: relative;
    font-size: 30px;
    text-align: center;
    letter-spacing: 3px;
    margin-bottom: 50px;
}
.sub_index::after {
    display: block;
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translate(-50%);
    width: 50px;
    height: 3px;
    background-color: #3c4b90;
    border-radius: 5px;
}
.small_index {
    position: relative;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-left: 25px;
}
.small_index::before {
    display: inline-block;
    content: '';
    position: absolute;
    top: 16px;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: #3c4b90;
    transform: rotate(45deg);
}

@media screen and (max-width: 480px) {
    .headline {
        font-size: 32px;
    }
    .subhead {
        font-size: 20px;
    }
    #page_title {
        height: 250px;
    }
    .sub_index {
        font-size: 22px;
    }
    .small_index {
        font-size: 20px;
    }
    .small_index::before {
        top: 14px;
    }
}

/* 詳細ボタン */
.more_btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 250px;
    background-color: #b7e992;
    border-radius: 50px;
    padding: 15px 10px;
    margin: 30px auto 0;
    text-align: center;
    text-decoration: none;
    border: 1px solid #b7e992;
    transition: 0.4s;
} 
.more_btn:hover {
    opacity: 1;
    background-color: #fff;
}
.more_btn:hover .more_arrow::before,
.more_btn:hover .more_arrow::after {
    background-color: #fff;
}
.more_btn:hover .more_arrow::before{
    transform: translate(5px);
}
.more_btn:hover .more_arrow::after {
    transform: translate(5px) rotate(40deg);
}
@media screen and (max-width: 480px) {
    .more_btn {
        width: 100%;
    }
}

/* パンくずリスト */
#breadcrumb {
    margin: 50px 0;
}
#breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
#breadcrumb ul li {
    position: relative;
    padding-right: 20px;
    list-style-type: none;
    font-size: 15px;
}
#breadcrumb ul li:not(:last-child):after {
    position: absolute;
    top: 2px;
    right: 0;
    display: inline-block;
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #b7e992;
}

/* リスト・表 */
.common_dl:not(:last-of-type) {
    margin-bottom: 70px;
}
.common_dl > div{
    width: 100%;
    display: flex;
}
.common_dl > div:not(:last-of-type){
    margin-bottom: 10px;
}
.common_dl dt{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    color: #3c4b90;
    border-radius: 5px;
    padding: 10px;
}
#jobs01 .common_dl dt, #jobs03 .common_dl dt, #jobs05 .common_dl dt{
    background-color: #e7e7e7;
}
#jobs02 .common_dl dt, #jobs04 .common_dl dt{
    background-color: #fff;
}
.common_dl dd{
    width: 80%;
    padding: 10px 10px 10px 20px;
}
@media screen and (max-width: 480px) {
    .common_dl > div {
        flex-direction: column !important;
    }
    .common_dl dt, .common_dl dd {
        width: 100%;
    }
    .common_dl > div:not(:last-of-type){
        margin-bottom: 15px;
    }
    .common_dl dd {
        padding-left: 10px;
    }
}

.fade-in {
    opacity: 0;
    transition: all 3s ease;
}
.fade-in.show {
    opacity: 1;
}


/* ヘッダー */
header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 15;
}
header .container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
#header {
    width: 90%;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    padding: 5px 15px;
    background: #fff;
    border-radius: 50px;
}
.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    white-space: nowrap;
}
.logo img {
    width: 220px;
    min-width: 220px;
}
.entry_link {
    display: block;
    position: relative;
    text-decoration: none;
    font-size: 20px;
    margin: 0 20px 0 65px;
}
.entry_link::before, .entry_link::after {
    display: inline-block;
    content: '';
    position: absolute;
    height: 2px;
    background-color: #333333;
    transition: 0.4s;
    border-radius: 10px;
}
.entry_link::before {
    bottom: 12px;
    left: -45px;
    width: 30px;
}
.entry_link::after {
    bottom: 15px;
    left: -25px;
    width: 10px;
    transform: rotate(40deg);
}
.entry_link:hover {
    opacity: 1;
}
.entry_link:hover::before{
    transform: translate(5px);
}
.entry_link:hover::after {
    transform: translate(5px) rotate(40deg);
}
@media screen and (max-width: 767px) {
    #header {
        width: 100%;
    }
    .entry_link {
        display: none;
    }
}
@media screen and (max-width: 480px) {
    #header {
        height: 50px;
    }
    header .container {
        margin: 0 10px;
    }
    .logo a {
        font-size: 13px;
    }
    .logo img {
        width: 150px;
        min-width: 150px;
        vertical-align: middle;
    }    
}
@media screen and (max-width: 380px) {
    .logo a {
        flex-direction: column;
        gap: 0;
        font-size: 12px;
    }
}

/* グローバルナビメニュー */
.menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 150px 20px 70px;
    background-color:  #b7e992;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: 0.4s;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.menu::-webkit-scrollbar {
    display:none;
}
.menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: 0.4s;
}
.menu ul {
    width: 100%;
    display: flex;
    gap: 20px;
}
.menu li {
    width: 50%;
    list-style-type: none;
}
.menu li a {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-decoration: none;
    letter-spacing: 1px;
    font-size: 20px;
    font-weight: 700;
    padding: 40px 10px;
    border-bottom: 1px solid #333333;
}
.menu ul:first-of-type li a {
    border-top: 1px solid #333333;
}
.menu li a:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.9);
}
.more_arrow {
    position: relative;
    background-color: #333333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: 0.4s;
    border: 1px solid #333333;
}
.more_arrow::before, .more_arrow::after {
    position: absolute;
    display: inline-block;
    content: '';
    background-color:  #b7e992;
    height: 2px;
    border-radius: 10px;
    transition: 0.4s;
}
.more_arrow::before {
    bottom: 17px;
    right: 10px;
    width: 20px;
}
.more_arrow::after {
    bottom: 19.6px;
    right: 8px;
    width: 10px;
    transform: rotate(40deg);
}
.menu li a:hover .more_arrow::before,
.menu li a:hover .more_arrow::after {
    background-color: #fff;
}
.menu li a:hover .more_arrow::before{
    transform: translate(5px);
}
.menu li a:hover .more_arrow::after {
    transform: translate(5px) rotate(40deg);
}
.menu .entry_btn {
    margin-top: 70px;
    gap: 50px;
}
.menu .entry_btn li a {
    width: 300px;
    border-radius: 50px;
}
.menu .entry_btn li:first-of-type a {
    margin-left: auto;
}
.corporate {
    width: 200px;
    position: relative;
    display: block;
    text-align: center;
    text-decoration: none;
    margin: 40px auto 0;
    padding-left: 20px;
}
.corporate::before, .corporate::after {
    display: inline-block;
    content: '';
    position: absolute;
    height: 2px;
    background-color: #333333;
    transition: 0.4s;
    border-radius: 10px;
}
.corporate::before {
    left: -2px;
    bottom: 10px;
    width: 20px;
}
.corporate::after {
    left: 10px;
    bottom: 13px;
    width: 10px;
    transform: rotate(40deg);
}
.corporate:hover {
    opacity: 1;
}
.corporate:hover::before{
    transform: translate(5px);
}
.corporate:hover::after {
    transform: translate(5px) rotate(40deg);
}

@media screen and (max-width: 960px) {
    .menu {
        padding-top: 100px;
    }
    .menu ul {
        flex-direction: column;
        gap: 0;
    }
    .menu li {
        width: 100%;
    }
    .menu ul:first-of-type li:last-of-type a {
        border-top: none;
    }  
    .menu .entry_btn {
        gap: 20px;
        margin-top: 40px;
    }  
    .menu .entry_btn li:first-of-type {
        margin-bottom: 0; 
    }  
}
@media screen and (max-width: 480px) {
    .menu {
        padding-top: 100px;
        width: 100%;
    }
    .menu li a {
        font-size: 17px;
        padding: 20px 10px;
    }
    .menu li a p {
        width: 70%;
    }
    .menu .entry_btn li a {
        width: 100%;
        padding: 10px;
    }   
}


/* ハンバーガーメニュー */
.hamburger {
    position: relative;
    width: 70px;
    height: 70px;
    background-color:  #b7e992;
    border: none;
    border-radius: 50%;
    transition: 0.4s;
    cursor: pointer;
    z-index: 20;
}
.line {
    display: inline-block;
    position: absolute;
    top: 34px;
    left: 17px;
    width: 35px;
    height: 1px;
    background-color: #333333;
    transition: 0.4s;
}
.line::before, .line::after {
    display: block;
    content: '';
    position: absolute;
    left: 0;
    width: 35px;
    height: 1px;
    background-color: #333333;
    transition: 0.4s;
}
.line::before {
    top: -12px;
}
.line::after {
    bottom: -12px;
}
.hamburger.active {
    border-radius: 50%;
}
.hamburger.active .line {
    background: transparent;
    transform: translateX(20px);
}
.hamburger.active .line::before, .hamburger.active .line::after {
    left: 0;
    width: 100%;
}
.hamburger.active .line::before {
    top: -5px;
    transform: translate(-20px,5px) rotate(-45deg) !important;
}
.hamburger.active .line::after {
    top: 5px;
    transform: translate(-20px,-5px) rotate(45deg) !important;
}
@media screen and (max-width: 767px) {
    .hamburger {
        position: absolute;
        right: 0;
        border-radius: 0 50% 50% 0;
    }
}
@media screen and (max-width: 480px) {
    .hamburger {
        width: 50px;
        height: 50px;
    }
    .line {
        top: 25px;
        left: 12px;
        width: 25px;
    }
    .line::before, .line::after {
        width: 25px;
    }
    .line::before {
        top: -8px;
    }
    .line::after {
        bottom: -8px;
    }    
}


/* トップ画像*/
#mainvisual {
    position: relative;
    width: 100%;
    height: 100dvh;
}
.topimg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.catchprase {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
@media screen and (max-width: 1280px) {
    .catchprase {
        width: 80%;
    }
}
@media screen and (max-width: 480px) {
    #mainvisual {
        height: 100vw;
    }
}


/* メッセージ */
#message {
    position: relative;
}
#message p {
    line-height: 2;
}
#message img,
#message .wrapper {
    width: 50%;
}
#message .section_bg {
    position: absolute;
    top: 200px;
    right: 0;
    width: 75%;
    height: 500px;
    background-color: #e7e7e7;
    z-index: -1;
}
.gear1 {
    width: 200px;
    position: absolute;
    bottom: -130px;
    left: -70px;
}
@media screen and (max-width: 480px) {
    #message .content {
        flex-direction: column-reverse;
    }
    #message img,
    #message .wrapper {
        width: 100%;
    }
    #message .section_bg {
        top: 130px;
        width: 100%;
        height: 60%;
    }    
    .gear1 {
        width: 120px;
        position: absolute;
        bottom: -70px;
        left: -40px;
    }    
}


/* インタビュー */
#member-top {
    position: relative;
    background-color:  #b7e992;
}
#member-top::before {
    position: absolute;
    top: -10px;
    display: block;
    content: '';
    background-color: #fff;
    width: 100%;
    height: 210px;
}
#member-top .container {
    position: relative;
    z-index: 1;
}
#member-top .index {
    text-align: center;
}
.int_list .slick-track{
    display: flex;
    justify-content: center;
    list-style-type: none;
    padding: 50px 0 20px;
}
.int_list .slick-track li {
    width: 22% !important;
    display: flex;
    flex-direction: column;
    margin: 0 20px;
    padding: 10px 0;
}
.int_list li a {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    text-decoration: none;
    background-color: #fff;
    border-radius: 30px;
    height: 100%;
    transition: 0.4s;
    font-size: 15px;
}
.int_list li a:hover {
    opacity: 1;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}
.int_list li a img {
    width: 100%;
    height: auto;
    border-radius: 30px 30px 0 0;
}
.int_list li a p {
    flex-grow: 1;
    padding: 15px 10px;
}
.int_info {
    width: 100%;
    display: block;
    background-color: #f39537;
    color: #fff;
    padding: 10px;
    text-align: center;
    border-radius: 0 0 30px 30px;
}
.gear2 {
    width: 170px;
    position: absolute;
    bottom: -64px;
    right: -20px;
    z-index: 1;
}
@media screen and (max-width: 1280px) {
    .int_list .slick-track li {
        width: 25% !important;
    }    
}
@media screen and (max-width: 960px) {
    .int_list .slick-track li {
        width: 47% !important;
    }    
}
@media screen and (max-width: 480px) {
    #member-top::before {
        top: 0;
        height: 130px;
    }    
    .int_list {
        display: block;
    }
    .int_list .slick-track li {
        width: 100% !important;
    }  
    .gear2 {
        width: 130px;
    }   
}
/* slick */
.slide-prev, .slide-next {
    margin: auto;
    position: absolute;
    top: 50%;
    transform: translateY(10px);
    z-index: 2;
    display: inline-block;
    cursor: pointer;
  }
  .slide-prev {
    left: -10px;
  }
  .slide-next {
    right: -10px;
  }
  .prev-arrow, .next-arrow {
    display: inline-block;
    width: 20px;
    height: 20px;
  }
  .prev-arrow {
    border-top: 2px solid #333333;
    border-left: 2px solid #333333;
    transform: rotate(-45deg);
  }
  .next-arrow {
    border-top: 2px solid #333333;
    border-right: 2px solid #333333;
    transform: rotate(45deg);
  }
  .int_list .slick-track::before,
  .int_list .slick-track::after {
      display: none;
  }
  .int_list .slick-slide {
      height: auto;
  }
  .int_list .slick-slide img {
      display: inline-block;
  }
.dots {
    display: flex;
    justify-content: center;
}
.dots li {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color .5s ease;
    list-style-type: none;
}
.dots li:hover,
.dots li.slick-active {
    background: #f39537;
}
.dots li button {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
    color: transparent;
}
.loading {
    opacity: 0;
    visibility: hidden;
}
.loading.slick-initialized {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease;
}
@media screen and (min-width: 960px) {
    .dots {
        display: none;
    }
}


/* インタビュー個別ページ */
#member #page_title, .single #page_title {
    background: url(../images/member.webp) center 15% / cover no-repeat;
}
#member .container, .single .container {
    max-width: 960px;
}
#member section:nth-of-type(even) {
    background-color: #e7e7e7;
}
.int_content:not(:last-of-type) {
    margin-bottom: 50px;
}
.int_heading {
    position: relative;
    margin-bottom: 230px;
}
#member section:nth-of-type(even) .int_heading {
    text-align: right;
}
#member .wrapper, .single .wrapper{
    position: absolute;
    top: 300px;
}
#member .box_bg, .single .box_bg{
    position: relative;
    z-index: 2;
    width: 700px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
    padding: 40px 30px;
}
/*#member .wrapper::after{
    position: absolute; 
    content: ''; 
    left: 0px; 
    top: 0px; 
    border-width: 40px 40px 0 0; 
    border-style: solid; 
    border-color: transparent #fff transparent; 
    box-shadow: -1px 1px 1px rgb(0 0 0 / .15); 
}*/
#member section:nth-of-type(odd) .wrapper, .single .wrapper{
    right: 0;
}
#member section:nth-of-type(odd) .box_bg, .single .box_bg{
    background-color: rgba(231, 231, 231, 0.8);
}
#member section:nth-of-type(even) .wrapper{
    left: 0;
}
#member section:nth-of-type(even) .box_bg{
    background-color: rgba(255, 255, 255, 0.8);
        text-align: left;
}
.int_index {
    background: #3c4b90;
    color: #fff;
    font-size: 30px;
    padding: 0 10px;
    font-weight: 700;
    letter-spacing: 1px;
}
.int_title {
    display: block;
    font-size: 27px;
    font-weight: 700;
    color: #3c4b90;
    margin-bottom: 20px;
}
.int_name {
    font-size: 20px;
    text-align: right;
}
.int_content p {
    padding: 0 30px;
}
.int_q {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding: 5px 20px 5px 30px;
}
#member section:nth-of-type(odd)  .int_q {
    background: #e7e7e7;
}
#member section:nth-of-type(even)  .int_q {
    background: #fff;
}
.int_q::before {
    display: inline-block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background-color: #3c4b90;
}
@media screen and (max-width: 1024px) {
    #member .container, .single .container {
        margin: 0 20px;
    }
}
@media screen and (max-width: 480px) {
    #member #page_title, .single #page_title {
        background: url(../images/member.webp) center / cover no-repeat;
    }
    #member .wrapper{
        position: relative;
        top: -40px;
    }
    #member .box_bg{
        width: 100%;
        padding: 30px 20px;
    }
    .int_heading {
        margin-bottom: 20px !important;
    }
    .int_index {
        font-size: 25px;
    }
    .int_title {
        font-size: 23px;
        margin-bottom: 10px;
        line-height: 1.5;
    }
    .int_name {
        font-size: 18px;
    }
    .int_q {
        font-size: 18px;
        padding: 5px 10px 5px 15px;
    }
}
  
/* 仕事 */
#jobs-top {
    position: relative;
    background-color: #e7e7e7;
    padding: 0 !important;
    margin: 150px 0;
}
#jobs-top .container {
    display: flex;
}
#jobs-top .content {
    display: block;
    width: 30%;
    margin-right: 30px;
}
/*.jobs_more {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: block;
    width: 20px;
    height: 20px;
    border-top: 2px solid #333333;
    border-right: 2px solid #333333;
    transform: rotate(45deg);
}*/
.jobs {
    width: 70%;
    list-style-type: none;
}
.jobs li {
    display: flex;
}
.jobs li img, .jobs li div {
    width: 33.3%;
}
.jobs li img {
    object-fit: cover;
}
.color1, .color2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    /*color: #fff;*/
    font-size: 20px;
    padding: 10px;
}
.color1 {
    background-color: #b7e992;
}
.color2 {
    background-color: #d6efc3;
}
.jobs li:first-of-type .color1 {
    width: 70%;
    align-items: flex-start;
    padding-left: 30px;
}
.jobs li:first-of-type p {
    margin-top: 10px;
}
.jobs li a:hover {
    opacity: 1;
}
.occupation {
    position: relative;
    display: inline-block;
    border: 1px solid #333333;
    padding: 5px 40px 5px 10px;
    background-color: #f5fff3;
}
.occupation::after {
    display: inline-block;
    content: '';
    position: absolute;
    top: 19px;
    right: 18px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    transform: rotate(45deg);
    transition: 0.4s;
}
.occupation:hover::after {
    transform: rotate(45deg) translate(3px, -3px);
}
.gear3 {
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 300px;
    z-index: 1;
}
@media screen and (max-width: 960px) {
    #jobs-top .container {
        flex-direction: column;
        margin: 0;
        gap: 30px;
    }
    #jobs-top .content, .jobs{
        width: 100%;
    }
    #jobs-top .index {
        margin: 0 20px;
    }
    .gear3 {
        width: 200px;
        left: -80px;
        bottom: -150px;
    }
}
@media screen and (min-width: 481px) {
    .jobs .br {
        display: none;
    }
}
@media screen and (max-width: 480px) {
    .color1, .color2 {
        padding: 20px 15px;
    }
    .jobs li:first-of-type {
        flex-direction: column-reverse;
    }
    .jobs li:first-of-type .color1 {
        padding-left: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }    
    .jobs li:first-of-type p {
        text-align: left;
    }    
    .gear3 {
        width: 150px;
        left: -50px;
        bottom: -120px;
    }
    .jobs li {
        flex-direction: column;
    }
    .jobs li img, .jobs li div,.jobs li:first-of-type .color1 {
        width: 100%;
    }
    .jobs li div,.jobs li:first-of-type .color1, .jobs li img {
        aspect-ratio: 2 / 1;
    }
}
/* 職種紹介 詳細ページ */
#jobs #page_title {
    background: url(../images/jobs.webp) center / cover no-repeat;
}
#jobs .container {
    max-width: 960px;
}
#jobs section:nth-of-type(even) {
    background-color: #e7e7e7;
}
.jobs_heading {
    position: relative;
    margin-bottom: 80px;
}
.jobs_heading img {
    width: 550px;
}
#jobs section:nth-of-type(even) .jobs_heading {
    text-align: right;
}
.jobs_name {
    position: absolute;
    top: 90%;
    transform: translateY(-90%);
    width: 430px;
    background-color: #3c4b90;
    color: #fff;
    padding: 20px 10px;
}
#jobs section:nth-of-type(odd) .jobs_name {
    right: 0;
}
#jobs section:nth-of-type(even) .jobs_name {
    left: 0;
    text-align: left;
}
.jobs_name span{
    display: block;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 5px;
    padding: 0 15px 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #fff;
}
.jobs_name p {
    padding: 0 15px;
}
.jobs_content:not(:last-of-type) {
    margin-bottom: 80px;
}
.business_dl div {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    background-color: #e7e7e7;
    overflow: hidden;
}
.business_dl div:not(:last-of-type) {
    margin-bottom: 40px;
}
.business_dl dt{
    position: relative;
    background-color: #3c4b90;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 2px;
    padding-left: 40px;
    padding: 10px 10px 10px 60px;
}
.business_dl dd{
    padding: 30px 20px;
}
.business_dl dt::before{
    position: absolute;
    top: 15px;
    left: 20px;
    display: inline-block;
    content: '';
    width: 25px;
    height: 25px;
    background-color: #fff;
    border-radius: 50%;
}
.business_ul {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.business_ul li {
    width: 31.3%;
    list-style-type: none;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    padding: 25px 15px;
}
#jobs03 .business_ul li, #jobs05 .business_ul li {
    background-color: #e7e7e7;
}
.business_ul li span{
    display: block;
    color: #3c4b90;
    font-size: 18px;
    text-align: center;
    padding-bottom: 15px;
    letter-spacing: 1px;
    line-height: 1.5;
}
.accordion_header {
    position: relative;
    display: block;
    width: 400px;
    background-color: #3c4b90;
    color: #fff;
    border-radius: 50px;
    padding: 20px;
    font-size: 23px;
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: 2px;
    margin: 0 auto;
    border: none;
    cursor: pointer;
    outline: none;
    appearance: none;
}
.accordion_arrow {
    position: absolute;
    top: 33px;
    right: 50px;
    display: inline-block;
    content: '';
    width: 12px;
    height: 12px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    margin-right: 10px;
    vertical-align: -4px;
    transition: 0.4s;
    transform: rotate(135deg);
}
.accordion_arrow.open {
    transform: rotate(315deg); 
}
.accordion_content {
    display: none;
    margin-top: 50px;
}
.to_staff {
    position: relative;
    display: block;
    width: 230px;
    margin: 30px 0 0 auto;
    text-decoration: none;
    text-align: center;
    border: 1px solid #3c4b90;
    background-color: #fff;
    border-radius: 10px;
    color: #3c4b90;
    padding: 10px 10px 10px 20px;
    letter-spacing: 1px;
}
.to_staff:hover {
    opacity: 1;
}
.to_staff::before {
    display: inline-block;
    content: '';
    position: absolute;
    top: 17px;
    left: 20px;
    border: 8px solid transparent;
    border-left: 8px solid #3c4b90;
    transition: 0.4s;
}
.to_staff:hover::before {
    transform: translateX(5px);
}
@media screen and (max-width: 1024px) {
    #jobs .container {
        margin: 0 20px;
    }
}
@media screen and (max-width: 960px) {
    .jobs_heading img {
        width: 60%;
    }
    .jobs_name {
        width: 47%;
    }
}
@media screen and (max-width: 480px) {
    .jobs_heading img {
        width: 100%;
    }
    .jobs_name {
        position: static;
        transform: none;
        width: 100%;
    }
    .jobs_name span{
        font-size: 30px;
    }
    .business_ul {
        flex-direction: column !important;
    }
    .business_ul li {
        width: 100%;
    }
    .accordion_header {
        width: 100%;
        font-size: 18px;
        padding: 15px;
    }
    .accordion_arrow {
        top: 25px;
        right: 30px;
        width: 10px;
        height: 10px;
    }
    .to_staff {
        width: 80%;
    }
}



/* 働き方・制度 */
#work-style p {
    text-align: center;
}
#work-style .index{
    text-align: center;
}
#work-style {
    position: relative;
    background-color:  #b7e992;
    margin-bottom: 250px;
}
#work-style::before {
    position: absolute;
    top: -10px;
    display: block;
    content: '';
    background-color: #fff;
    width: 100%;
    height: 210px;
}
#work-style .container {
    position: relative;
    z-index: 1;
}
.work_list {
    display: flex;
    gap: 100px 30px;
    flex-wrap: wrap;
    justify-content: center;
    list-style-type: none;
    margin-top: 100px;
}
.work_list li {
    position: relative;
    width: 25%;
    background-color: #fff;
    border-radius: 30px;
    padding: 50px 20px 15px;
    font-size: 15px;
    text-align: center;
}
.work_list li::before, .work_list li::after {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    content: '';
}
.work_list li::before {
    top: -50px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #fff;
}
.work_list li::after {
    top: -30px;
    width: 50px;
    height: 50px;
}
.work_list li:first-of-type::after {
    background: url(../images/workicon1.png) center / cover no-repeat;
}
.work_list li:nth-of-type(2)::after {
    background: url(../images/workicon2.png) center / cover no-repeat;
}
.work_list li:nth-of-type(3)::after {
    background: url(../images/workicon3.png) center / cover no-repeat;
}
.work_list li:nth-of-type(4)::after {
    background: url(../images/workicon4.png) center / cover no-repeat;
}
.work_list li:last-of-type::after {
    background: url(../images/workicon5.png) center / cover no-repeat;
}
.work_title {
    display: block;
    color: #de8024;
    font-size: 20px;
    margin-bottom: 10px;
}
.work_slider {
    position: absolute;
    bottom: -12%;
    width: 100%;
    list-style-type: none;
    z-index: 1;
  }
  .work_slider li {
    margin: 0 20px;
  }
  .work_slider img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
  }
  @media screen and (max-width: 1500px) {
    .work_slider {
    bottom: -10%;
  }
}

@media screen and (max-width: 1280px) {
    .work_slider {
    bottom: -8%;
  }
}
@media screen and (max-width: 960px) {
    .work_list li {
        width: 35%;
    }
    .work_slider {
        bottom: -5%;
      }    
}
@media screen and (max-width: 767px) {
    .work_slider {
    bottom: -8%;
  }
}
@media screen and (max-width: 480px) {
    #work-style {
        margin-bottom: 0;
    }
    #work-style .br {
        display: none;
    }
    #work-style p {
        text-align: left;
    }
    .work_list {
        flex-direction: column;
    }
    .work_list li {
        width: 100%;
    }
    #work-style::before {
        top: 0;
        height: 130px;
    }  
    .work_slider {
        bottom: -3.5%;
    }  
    .work_slider li {
        margin: 0 10px;
      }    
}



/* 採用選考 */
#selection {
    background-color: #e7e7e7;
    position: relative;
    padding-bottom: 70px;
}
#selection::before {
    position: absolute;
    top: -10px;
    display: block;
    content: '';
    background-color: #fff;
    width: 100%;
    height: 210px;
}
#selection::after{
    content: '';
    position: absolute;
    height: 60px;
    width: 100%;
    clip-path: polygon(0 0,50% 100%,100% 0);
    background-color: #e7e7e7;
    left: 0;
    bottom: -59px; 
}
#selection .container {
    position: relative;
    z-index: 1;
}
#selection .index {
    text-align: center;
}
.flow {
    display: block;
    margin-top: 70px;
}
.flow li {
    position: relative;
    width: 500px;
    list-style-type: none;
    background-color: #fff;
    padding: 15px 10px;
    margin: 0 auto;
    text-align: center;
}
.flow li:first-of-type {
    margin-bottom: 80px;
}
.flow li::after {
    display: block;
    content: '';
    position: absolute;
    left: 0;
    bottom: -49px;
    background-color: #fff;
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
    width: 100%;
    height: 50px;
}
.flow_title {
    display: block;
    margin-bottom: 5px;
    color: #3c4b90;
    font-size: 25px;
    font-weight: 700;
}
.gear4 {
    position: absolute;
    z-index: 1;
    width: 150px;
    bottom: -104px;
}
@media screen and (max-width: 480px) {
    #selection {
        padding-top: 300px !important;
    }
    #selection::before {
        top: 0;
        height: 330px;
    }        
    .flow li{
        width: 100%;
    }
    .gear4 {
        width: 100px;
        bottom: -75px;
    }    
}



/* エントリー */
#entry-top {
    background-color:  #b7e992;
    padding-top: 130px;
    overflow: hidden;
}
#entry-top .index {
    text-align: center;
}
#entry-top .index, .entry_btn {
    width: 50%;
}
.box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    width: 700px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    margin: 0 auto;
    padding: 50px;
}
.entry_btn li {
    list-style-type: none;
}
.entry_btn li:first-of-type {
    margin-bottom: 20px;
}
.entry_btn li a {
    display: block;
    width: 300px;
    padding: 15px 10px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 20px;
    letter-spacing: 2px;
    font-size: 20px;
}
.entry_btn li a:hover {
    opacity: 1;
    background-color: #fff !important;
}
.entry_btn li:first-of-type a{
    background-color: #6c98d0;
    border: 1px solid #6c98d0;
}
.entry_btn li:first-of-type a:hover{
    color: #6c98d0;
}
.entry_btn li:last-of-type a{
    background-color: #2d4e7e;
    border: 1px solid #2d4e7e;
}
.entry_btn li:last-of-type a:hover{
    color: #2d4e7e;
}
.entry_img {
    position: absolute;
    width: 260px;
    right: -200px;
    bottom: -150px;
}
@media screen and (max-width: 960px) {
    .box {
        flex-direction: column;
        width: 80%;
        gap: 30px;
        padding: 40px 20px 100px;
    }
    #entry .index, .entry_btn {
        width: 100%;
    }    
    .entry_btn li a {
        width: 70%;
        margin: 0 auto;
    }
    .entry_img {
        width: 240px;
        right: -80px;
    }    
}
@media screen and (max-width: 480px) {
    #entry-top .index  {
        width: 100%;
    }
    .box {
        width: 100%;
        gap: 0;
    }
    .entry_btn li a {
        width: 100%;
    }
    .entry_img {
        width: 220px;
        right: 0;
    }    
}

/* エントリーフォーム */
.form_tab {
  display: flex;
  gap: 10px;
  margin-bottom: 50px;
}
.form_tab .tablinks {
  width: 40%;
}
.form_tab button {
  padding: 10px 15px;
  cursor: pointer;
  width: 100%;
  border: none;
  text-align: left;
  transition: 0.3s;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  border-radius: 8px;
  background-color: #fff;
  border: 1px solid #6c98d0;
  color: #6c98d0;
}
.form_tab button.active {
  background-color: #6c98d0;
  color: #fff;
}
.tabcontent {
  display: none;
}
#entry #page_title, #entry-thanks #page_title {
    background: url(../images/entry-form.webp) center 15% / cover no-repeat;
}
#entry .container {
    max-width: 960px;
    margin: 0 auto;
}
.entry_text {
    max-width: 960px;
    margin: 80px auto 0;
}
#entry .common_dl dt {
    width: 300px;
}
#entry .flex {
    display: flex;
    gap: 10px 20px;
    flex-wrap: wrap;
}
.prefectures dd > p, .birth dd div p {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}
.birth dd div p br{
    display: none;
}
#entry .column, .application-documents .column p {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
#new-graduate .common_dl dt, #mid-career {
    background-color: #e7e7e7;
} 
#mid-career .common_dl dt {
   background-color: #ffffff;
}
.prefectures dd > p, .prefectures dd > div:not(:last-of-type) {
    margin-bottom: 10px;
}
.min-box {
    width: 200px !important;
}
.middle-box {
    width: 350px !important;
}
.required, .optional {
    display: inline-block;
    color: #fff;
    padding: 2px 5px;
    font-size: 12px;
    margin-left: 10px;
    border-radius: 5px;
    width: 43px;
    text-align: center;
}
.required {
    background-color: #dd2e2e;
}
.optional {
    background-color: #6e6e6e;
}
input[type="text"], input[type="tel"], input[type="email"], textarea, select {
    width: 100%;
    padding: 5px 10px;
    border: 1px solid #aaa;
    border-radius: 3px;
    font-size: 16px;
    background-color: #f5f9ff;
}
input[type="text"], input[type="tel"], input[type="email"], select {
    height: 40px;
}
textarea {
    display: block;
    height: 200px;
    font-family: 'Noto Sans JP', sans-serif;
}
select {
    font-size: 15px;
    color: #333;
    -webkit-appearance: none;
    appearance: none;
    padding-right: 30px;
    cursor: pointer;
}
.select_wrapper {
    position: relative;
}
.prefectures .select_wrapper {
    width: 200px !important;
}
.select_wrapper::after {
    display: inline-block;
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 5px;
    height: 5px;
    border-top: 2px solid #3c4b90;
    border-right: 2px solid #3c4b90;
    transform: rotate(135deg);
}
.birth .select_wrapper::after {
    right: 35px;
}
input[type="radio"], input[type="checkbox"] {
    width: 17px;
    height: 17px;
}
label {
    cursor: pointer;
}
.self-promotion dt, .self-promotion dd {
    width: 100% !important;
}
.self-promotion dd {
    padding: 10px 10px 0 !important;
}
.privacy_check {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    margin: 50px 0;
    font-size: 18px;
}
.privacy_check a {
    margin: 0 5px;
}
.privacy_check input{
    width: 18px !important;
    height: 18px !important;
}
.submit_btn input{
    display: block;
    width: 250px;
    border: 1px solid #3c4b90;
    border-radius: 50px;
    background-color: #3c4b90;
    color: #fff;
    font-size: 23px;
    font-weight: 500;
    text-align: center;
    padding: 20px;
    margin: 0 auto;
    transition: 0.4s;
    cursor: pointer;
}
.submit_btn input:hover{
    background-color: #fff;
    color: #3c4b90;
}
@media screen and (max-width: 1024px) {
    #entry .container {
        margin: 0 20px;
    }
    .entry_text {
        margin: 80px 20px 0;
    }
}
@media screen and (max-width: 480px) {
    .form_tab {
        flex-direction: column;
    }
    .form_tab .tablinks {
        width: 100%;
    }
    #entry .common_dl dt {
        width: 100%;
    }
    .submit_btn input{
        width: 100%;
    }
    .middle-box {
        width: 100% !important;
    }
}
/* contact form */
.gender .wpcf7-form-control,
.desired-job .wpcf7-form-control {
    display: flex;
    gap: 10px 20px;
    flex-wrap: wrap;
}
#entry .wpcf7-list-item {
    margin: 0 !important;
}
#entry .wpcf7-list-item label{
    display: flex;
    align-items: center;
    gap: 5px;
}
.wpcf7 form .wpcf7-response-output {
    border-color: transparent !important;
    color: #dc3232;
    text-align: center;
}
.wpcf7-not-valid-tip {
    font-size: 15px !important;
}
.wpcf7 form.sent .wpcf7-response-output{
    display: none;
}  



/* エントリー完了 */
#entry-thanks section{
    padding: 80px 0;
}
#entry-thanks .container {
    max-width: 960px;
}
#entry-thanks .more_btn {
    position: relative;
    margin-top: 50px;
}
#entry-thanks .more_btn .more_arrow{
    position: absolute;
    right: 20px;
}
@media screen and (max-width: 1024px) {
    #entry-thanks .container {
        margin: 0 20px;
    }
}




/* フッター */
footer {
    margin-top: auto;
    padding: 50px 0 0;
    background-color: #fff;
    border-top: 3px solid #333;
}
#recruit footer {
    border-top: none;
}
footer .container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.copyright {
    background-color: #333333;
    color: #fff;
    padding: 10px;
    font-size: 13px;
    margin-top: 50px;
    text-align: center;
}
.footer_link {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 20px;
    list-style-type: none;
}
.footer_link li a{
    width: 30%;
    position: relative;
    font-size: 15px;
    text-decoration: none;
    padding-left: 10px;
    white-space: nowrap;
}
.footer_link li a::before {
    display: inline-block;
    content: '';
    position: absolute;
    top: 7px;
    left: 0;
    border: 5px solid transparent;
    border-left: 5px solid #b7e992;
}
.footer_menu .entry_btn {
    width: 100%;
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}
.footer_menu .entry_btn li{
    margin: 0;
}
.footer_menu .entry_btn li a {
    width: 200px;
    border-radius: 50px;
    padding: 10px;
}
.footer_menu .corporate {
    font-size: 15px;
    margin: 30px 0 0 auto;
}
.footer_menu .corporate::before {
    left: 8px;
    bottom: 8px;
}
.footer_menu .corporate::after {
    left: 18px;
    bottom: 11px;
}
@media screen and (max-width: 960px) {
    footer .container {
        flex-direction: column !important;
        align-items: center;
        gap: 50px;
    }
    .footer_menu .entry_btn {
        gap: 20px;
        margin-top: 40px;
    }  
    .footer_link, .footer_menu .entry_btn {
        justify-content: center;
    }
    .footer_menu .corporate {
        margin: 30px auto 0;
    }
}
@media screen and (max-width: 480px) {
    .footer_menu .entry_btn {
        flex-direction: column;
    }
    .footer_menu .entry_btn li{
        width: 100%;
    }
    .footer_menu .entry_btn li a {
        width: 100%;
        padding: 10px;
    }   
}


/* ページトップボタン */
.page_top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 70px;
    height: 70px;
    z-index: 10;
    background-color: #b7e992;
    border-radius: 50%;
}
.arrow {
    position: absolute;
    top: 27px;
    left: 22px;
    display: block;
    width: 70px;
    height: 70px;
    width: 25px;
    height: 25px;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    transform: rotate(315deg);
}
.page_top:hover {
    opacity: 1;
}
@media screen and (max-width: 480px) {
    .page_top {
        right: 10px;
        bottom: 10px;
        width: 50px;
        height: 50px;
    }
    .arrow {
        top: 22px;
        left: 17px;
        width: 15px;
        height: 15px;
    }
}


/* reCAPTCHA */
#entry .grecaptcha-badge {
    width: 70px !important;
    visibility: visible;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    left: 4px !important;
  }
 #entry .grecaptcha-badge:hover {
    width: 256px !important;
    visibility: visible;
  }
.grecaptcha-badge {
    visibility: hidden;

}
.grecaptcha-badge:hover {
    visibility: hidden;
}


