@charset "UTF-8";
/* 採用情報
------------------------------- */
html {
    font-size: 100%;
}
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    line-height: 1.7;
    color: #333333;
    background-position: right bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
/*フォント*/
h1, h2, h3, h4, h5, h6, div, p, ul, ol, li, dd, small {
    margin: 0;
    padding: 0;
    line-height: 2;
    letter-spacing: .1em;
/*    font-family: Koburina Gothic W3 JIS2004, sans-serif;*/
    list-style-type: none;
    line-break: strict;
}
a {
    text-decoration: none;
}

a:link, a:visited, a:hover, a:active {
  color: #000;
}

img {
    max-width: 100%;
}
p {
    line-height: 1.75rem;
}
ul li {
    list-style-type: none;
    background-image: none;
    padding-left: 0;
}
/* シェア */
.share {
    display: flex;
    width: 40%;
    margin: 0 auto;
}
.share img {
    width: 30%;
}
/*余白*/
.md_tb20 {
    margin: 20px 0;
}
.md_tp20 {
    margin-top: 20px;
}
.md_tp30 {
    margin-top: 30px;
}
.md_tp50 {
    margin-top: 50px;
}
.md_bt20 {
    margin-bottom: 20px;
}
.md_bt20 {
    margin-bottom: 20px;
}
.md_bt30 {
    margin-bottom: 30px;
}
.pd_top10 {
    padding-top: 10px;
}
.pd_top20 {
    padding-top: 20px;
}
.pd_bm10 {
    padding-bottom: 10px;
}
.pd_bm20 {
    padding-bottom: 20px;
}

.pd_bm25 {
    padding-bottom: 25px;
}

.pd_bm30 {
    padding-bottom: 30px;
}
.pd_bm50 {
    padding-bottom: 50px;
}
/*フォント小*/
.f_xsm {
    font-size: 0.5rem;
}
.f_sm {
    font-size: 0.875rem;
}
.ct {
    text-align: center;
}
.m0a {
    margin: 0 auto;
}
.bl_ct {
    margin: 0 auto;
}
/*各種ページメインイメージ*/
.main_img {
    max-width: 100%;
}
/*各種ページタイトル*/
h2.tit_big {
    text-align: center;
    font-size: 1.75rem;
    font-weight: bold;
    margin-top: 2rem
}
/*　ハンバーガーボタン　*/
.hamburger {
    display: block;
    position: fixed;
    z-index: 4;
    right: 13px;
    top: 12px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
}
.hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 6px;
    background: #000;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
    top: 10px;
}
.hamburger span:nth-child(2) {
    top: 20px;
}
.hamburger span:nth-child(3) {
    top: 30px;
}
/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
    top: 16px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background: #fff;
}
.hamburger.active span:nth-child(2), .hamburger.active span:nth-child(3) {
    top: 16px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    background: #fff;
}
nav.globalMenuSp {
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    color: #000;
    background: #993333;
    text-align: center;
    transform: translateX(100%);
    transition: all 0.6s;
    width: 100%;
    height: 100%;
}
nav.globalMenuSp ul {
    background: #993333;
    margin: 0 0 0 auto;
    padding: 0;
    width: 100%;
}
nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    border-bottom: 0.5px dashed #fff;
}
nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
nav.globalMenuSp ul li:hover {
    background: #DB9393;
    color: #993333;
}
nav.globalMenuSp ul li a {
    display: block;
    color: #fff;
    padding: 0.5rem 0;
    text-decoration: none;
    backgroud-color: #993333;
}
/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
    transform: translateX(0%);
}
.cp_actab {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    color: #000;
}
.cp_actab input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.cp_actab label {
    font-weight: bold;
    line-height: 3;
    position: relative;
    display: block;
    padding: 0 0 0 1em;
    cursor: pointer;
    margin: 0 0 50px 0;
    height: 100px;
    border-bottom: 1px solid #ddd; /*下線を点線にする*/
}
.cp_actab .cp_actab-content {
    overflow: hidden;
    max-height: 0;
    -webkit-transition: max-height 0.35s;
    transition: max-height 0.35s;
    color: #333333;
    background: #fff;
}
.cp_actab .cp_actab-content p {
    margin: 1em;
}
/* :checked */
.cp_actab input:checked ~ .cp_actab-content {
    max-height: 100%;
}
/* Icon */
.cp_actab label::after {
    line-height: 3;
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 3em;
    /*	height: 3em;*/
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
    text-align: center;
}
.cp_actab input[type=checkbox] + label::after {
    content: '+';
}
.cp_actab input[type=checkbox]:checked + label::after {
    transform: rotate(315deg);
}
/*　たねやトップボタン　*/
header .top_btn {
    position: fixed;
    right: 70px;
    top: 15px;
    height: 42px;
    cursor: pointer;
    text-align: center;
}
header .top_btn p {
    font-size: 0.5rem;
    line-height: 1rem;
}
header .top_btn a {
    color: #000;
}
header a:link {
    color: #000;
}
header a:visited {
    color: #000;
}
header a:hover {
    color: #000;
    text-decoration: underline;
}
/*スライダー*/
.slick-prev::before, .slick-next::before, {
    color: black !important;
}
/*スライダー画面*/ img {
    width: 100%;
}

/*メイン画像*/
#top img.pc_main {
    display: block !important;
}
#top img.sp_main {
    display: none !important;
}

#top img.sp_main {
    display: none !important;
}



.stack {
    position: relative;
}
.stack p {
    position: absolute;
    color: #000;
    top: 55%;
    font-size: 3vw;
    font-weight: 700;
    line-height: 1.25;
    width: 100％;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 2%;
}
.stack span {
    font-size: 2vw;
    color: #808080;
}
.stack img {
    width: 100%;
}

/*パンクズ*/
.breadcrumb {
    display: flex;
    gap: 0 22px;
    list-style: none;
    padding: 0;
    
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:first-child::before {
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-right: 4px;
    background-image: url('../images/icon-home.svg');
    background-repeat: no-repeat;
    content: '';
}

.breadcrumb li:not(:last-child)::after {
    display: inline-block;
    transform: rotate(45deg);
    width: .3em;
    height: .3em;
    margin-left: 10px;
    border-top: 1px solid #333333;
    border-right: 1px solid #333333;
    content: '';
}

.breadcrumb a {
    font-size: 0.75rem;
    color: #333333;
    text-decoration: none;
}

.wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 4%;
}
/* 見出し */
.page-title {
    padding: 20 0;
    font-size: 2.25rem;
    line-height: 3rem;
    font-weight: bold;
}
.sub-title {
    font-size: 1.375rem;
    line-height: normal;
    padding: 0 8px 8px;
    font-weight: normal;
    text-align: center;
}
.sub-title-line {
    padding: 0 8px 8px;
    border-bottom: solid 2px rgba(232, 189, 198, 0.9);
}
.sub-title3 {
    font-size: 1.25rem;
    font-weight: bold;
}
.highlight {
    background-color: rgba(232, 189, 198, 0.9);
    padding: 10px 20px 10px 20px;
    font-weight: bold;
}
.img_20 {
    width: 20%;
}
.line {
    border-bottom: solid 1px #ddd;
    margin: 30px 30px;
}
/*段落*/
p {
    font-size: 0.875rem;
    /*margin: 10px 0 0;*/
}
/*マイナビ*/
#entry2023 .banner_img {
    max-width: 1000px;
}
#entry2023 a:hover {
    opacity: 0.5;
}
#entry2023 .banner_list li {
    margin: 2em 0;
}
/*エントリ*/
.b_entry a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    padding: 0.5em 2em;
    max-width: 500px;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    background-color: #F40307;
    border-radius: 50vh;
}
nav.globalMenuSp ul .b_ac_entry a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem auto;
    padding: 1em 2em;
    max-width: 400px;
    font-size: 1rem;
    color: #fff;
    font-weight: 700;
    background-color: #993333;
    border-radius: 5vh;
    border: solid #fff 1px;
}
nav.globalMenuSp ul .b_ac_entry a:hover {
    text-decoration: none;
    opacity: 0.5;
}
/*.b_entry a::after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
}*/
.b_entry a:hover {
    text-decoration: none;
    background-color: #E83F42;
}
/*お知らせ*/
#news {
    max-width: 1000px;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 40px;
    border-radius: 10px;
    font-size: 1rem;
    margin: 20px auto;
}
#news ul {
    width: 100％;
}
#news li.el_un_line {
    display: flex;
    padding: 30px 20px 0px 0;
}

#news a li.el_un_line span.text {
    font-size: 0.812rem;
    text-decoration: underline;
}

#news a li.el_un_line p {
    font-size: 0.812rem;
    text-decoration: none;
	text-align: left;
}

#news li .bace_txt {
    font-size: 0.812rem;
	font-weight: bold;
    text-decoration: none;
	text-align: left;
	
}

#news .el_news_text {
    font-size: 0.812rem;
    text-decoration: none;
	text-align: left;
}

#news li.end {
    display: flex;
    padding: 30px 0 10px 0;
}
#news .day {
    padding-right: 30px;
   font-size: 0.812rem;
   font-weight: bold;
}

#news .label {
    background-color: #993333;
    border-radius: 3px;
    color: #fff;
    padding: 5px 5px 5px 5px;
    margin: 0 20px 0 0;
    height: 30px;
    max-width: 15%;
    font-size: 0.75rem;
}
#news a {
    text-decoration: none;
    color: #000;
}
/*申し込みボタン横並び*/
.b_wrapper {
    display: flex;
    margin: 0 auto;
    max-width: 1100px;
}
/*文字のリンクボタン*/
a {
    font-weight: bold;
    text-decoration: none;
}
.stands_out a:link {
    color: #993333;
}
.stands_out a:visited {
    color: #993333;
}
.stands_out a:hover {
    color: #993333;
    text-decoration: underline;
}
.stands_out a:active {
    color: #993333;
}
/*申し込みボタン幅、余白*/
.el_btn_app {
    width: 33%;
    padding: 1px;
    margin: 0 auto;
}
.triangle:before {
    font-family: "Font Awesome 5 Free";
    content: '\f35d';
    font-weight: 900;
    padding-left: 20px;
}
/* ボタン */
.el_btn {
    display: block;
    max-width: 100%;
    padding: 10px 10px;
    background-color: #993333;
    border: solid 1px;
    color: #fff;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    transition: .25s;
    border-radius: 10px 10px 10px 10px;
}
.el_btn:focus, .el_btn:hover {
    background-color: #fff;
    border-color: #503830;
    color: #503830;
}
/* ページ内リンクボタン */
.el_btn_ditails {
    display: block;
    max-width: 100%;
    padding: 10px 10px;
    border: solid transparent;
    color: #000;
    font-size: 1.125rem;
    text-align: center;
    text-decoration: none;
    transition: .25s;
}
.el_btn_ditails:focus, .el_btn_ditails:hover {
    background-color: #fff;
    color: #503830;
}
/* HEADER
------------------------------- */
/*.page-header {
  display: flex;
  justify-content: space-between;
    width: 100%;
    background-color: #fff;
    

    
}*/
.page-header {
    display: flex;
    z-index: 2;
    justify-content: space-between;
    width: 100%;
    height: 70px;
    background-color: #fff; /*    position: fixed;*/
}
.page-header img {
    width: 90%;
    padding-top: 0;
    padding-left: 5px;
    vertical-align: middle;
}
.header_wrapper {
    max-width: 100%;
    margin: 0 auto;
}
.logo {
    width: 210px;
    margin-top: 14px;
}
header .logo_wrapper {
    display: flex;
    padding: 20px;
}
header .logo1 {
    padding-right: 0;
}
header .logo2 {
    
}
header  .logo2:hover {
    opacity: 0.5; 

}
header .logo_wrapper img:hover {
    opacity: 0.5;
}
.main-nav {
    display: flex;
    font-size: 1.25rem;
    text-transform: uppercase;
    margin-top: 34px;
    list-style: none;
}
.main-nav li {
    margin-left: 36px;
}
.main-nav a {
    color: #000;
    font-size: 0.75rem;
}
.main-nav a:hover {
    color: #ddd;
}
/* HOME
------------------------------- */
#home .page-title {
    text-transform: none;
}
.home-content {
    text-align: center;
    margin-top: 10%;
}
.home-content p {
    font-size: 1.125rem;
    margin: 10px 0 42px;
}
/* MENU
------------------------------- */
/*#menu {
    background-image: url(../images/menu-bg.jpg);
    min-height: 100vh;
}*/
.menu-content {
    max-width: 1100px;
    margin-top: 1％;
}
.menu-content .page-title {
    text-align: center;
}
.menu-content p {
    font-size: 1.125rem;
    margin: 10px 0 0;
    text-align: center;
}
/* 会社紹介 */
#pofession_Introduction {
    padding: 4% 0;
}
#pofession_Introduction .wrapper {
    display: flex;
    justify-content: space-between;
    padding-bottom: 50px;
}
.pofession_Introduction_img {
    width: 30%;
}
.pofession_Introduction_txt p {
    padding: 0 10px 0px 0;
}
.pofession_Introduction_txt {
    width: 70%;
}
/*インターシップ囲み*/
/*メイン画像*/
#ci img.pc_main {
    display: block !important;
}
#ci img.sp_main {
    display: none !important;
}
#ci.ruled_line {
    padding: 0.5rem 0.5rem;
    color: #000;
    border: solid 3px #000;
    border-radius: 10px;
}
#ci.ruled_line p {
    line-height: 1rem;
    margin-bottom: 2rem;
}
#ci dl {
    display: flex;
    flex-wrap: wrap;
}
#ci dt {
    width: 15%;
    margin: 0.5rem 0;
    font-weight: bold;
}
#ci dd {
    width: 85%;
    margin: 0.5rem 0;
}
#ci h3 {
    font-size: 1rem;
    margin: 1rem 0;
}
#ci p {
    margin: 0.5rem 0;
}
/*仕事内容 先輩情報*/
.wrapper_jobdescription {
    display: flex;
    justify-content: center;
    padding: 20px 0 40px 0;
}
.wrapper_jobdescription h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-left: 1rem;
}
 /*先輩インタビュー*/
.sp_main {
        display: none !important;
}  
    .staff-voice div.inner {
        max-width: 87%;
        margin: 0 6%;
    }
    .staff-voice p.el_main-text {
        font-size: 0.875rem;
        font-weight: bold;
        letter-height: 1.2;
        padding: 75px 0;
    }
    .staff-voice div.el-btn-staff ul li {
        padding-bottom: 25px;
    }
    .staff-voice div.el-btn-staff ul li:hover {
        opacity: 0.6;
    }
    .el-btn-staff-label {
        position: relative;
    }
    .el-btn-staff-label p {
        position: absolute;
        font-size: 	0.625rem;
        color: #000;
        background: #fff;
         padding:0.625rem;
        top: 0%;
        left: 0%;
    }
/*スタッフインタビュー詳細ボタン*/

  #staff-voice-details.more-list ul {
        display: flex;
        justify-content: flex-start;
         width: 100%;
        flex-wrap: wrap;
        padding-inline-start: 0;
    }
   #staff-voice-details.more-list li {
    width: 33%;       
        list-style: none;
        margin: 0 0 10px;
    }
#staff-voice-details.el-btn-staff-label {
    position: absolute;
    / font-size: 13px;
    color: #000;
    background: #fff;
    padding: 10px 20px;
    top: 0%;
    left: 0%;
}

    ul li a.el-btn-staff-label {
        position: relative;
    }
    ul li a..el-btn-staff-label p {
        position: absolute;
        font-size: 13px;
        color: #000;
        background: #fff;
        padding: 10px 20px;
        top: 0%;
        left: 0%;
    }
.label-left-top{
  left:0px;
  top:0px;
}
    .el-btn-more {
        font-size: 0.875rem;
        text-align: center;
        text-decoration-color: rgb(255, 0, );
        width: 40%;
        padding: 10px 10px;
        /*        margin:50px 0 100px 0;*/
        border: solid 1px #000;
    }
   .el-btn-more:hover {
        background-color: #ddd;
    
    }
    .more-btn {
        font-size: 0.875rem;
        text-align: center;
        text-decoration-color: rgb(255, 0, );
        width: 40%;
        padding: 10px 10px;
        /*        margin:50px 0 100px 0;*/
        border: solid 1px #000;
    }
    .more-btn:hover {
        background-color: #ddd;
    
    }
    .block {
        display: block;
        margin: 25px auto 100px auto;
    }

hr{
    color: #ddd;
    margin: 75px 0;
}
    /*先輩インタビューボタン*/
    .staff-voice div.el-btn-staff {
        margin: 0 0 30px;
        max-width: 100%;
    }

/*.more-list {
        padding-bottom: 100px;
    }

*/
.interview-list ul {
        display: flex;
        justify-content: flex-start;
         width: 100%;
        flex-wrap: wrap;
        padding-inline-start: 0;
    }
    .interview-list li {
    width: 33%; 
        list-style: none;
        margin: 0 0 10px;
    }

    .more-list li:nth-child(3n-1) {
        margin: 0 0 10px;
    }
    .el-btn-staff.btn-more {
        text-align: center;
        width: 40%;
        padding: 10px 30px;
        /*        margin:50px 0 100px 0;*/
        border: solid 1px #000;
    }
    .block {
        display: block;
        margin: 25px auto 100px auto;
    }
    .btn-more:hover {
        cursor: pointer;
    
    }
.staff-voice div.inner h1{
   /* text-align: center;*/
    padding-bottom: 25x;
}
    .staff-voice div ul li img {
/*        padding-bottom: 25px;*/
        padding-right: 1%;
    }
   .staff-voice div.inner div.interview-list ul li.el-btn-staff-label a  img:hover {
        opacity: 0.7;
    }
    .staff-voice div.el-details ul li p.txt-underline {
        font-color: #666;
        font-size: 14px;
        padding-bottom: 10px;
      text-decoration: underline 4px #666;
        text-underline-offset: 0.5em;
    }
    .staff-voice div.el-details ul li p.txt-copy {
        font-size: 18px;
        font-weight: bold;
        padding-bottom: 25px;
    }
    .staff-voice div.el-details ul li h1{
        font-size:0.875rem;
        font-weight:bold;
        spacing-height:0.8em;
    }
    .staff-voice div.el-details ul li p.txt {
	font-size: 13px;
	spacing-height: 0.8em;
    padding-bottom: 25px;
    }
    .el-details.el-btn-more {
        text-align: center;
        font-size: 0.875rem;
        width: 40%;
        padding-bottom: 30px;
        /*        margin:50px 0 100px 0;*/
        border: solid 1px #000;
    }
    
    .staff-voice div.el-schedule h1{
        font-size:0.875rem;
        font-weight:bold;
        spacing-height:0.8em;
    }
  /*先輩インタビューボタンおわり*/

  #staff-voice-details.more-list ul {
        display: flex;
        justify-content: flex-start;
         width: 100%;
        flex-wrap: wrap;
        padding-inline-start: 0;
    }
   #staff-voice-details.more-list li {
    width: 33%;       
        list-style: none;
        margin: 0 0 10px;
    }
  /*先輩のピックアップ*/  

 ul li div.pickup {
        display: flex;
       gap: 0 25px;
    }

ul li div.pickup-img {
    width: 40%;      
  
    }

ul li div .pick-txt {
    width: 55%;  
    }

/*募集職種　トップページナビ*/
div.wrapper div.top_staff_department h3{
margin-bottom: 1rem;
}

div.wrapper div.top_staff_department h3 a{
/*    border: 1px solid #ddd; 
    width: 40%;*/
    padding: 20px 0;
}

div.wrapper div.top_staff_department h3 a:hover{
    color: #ddd; 
}

#top div.wrapper p.txt{
    padding-bottom: 75px;
}

.icon-s {
  font-size: 0.8emactive;
padding-left: 1rem;
}

.top_staff_department{
    padding-bottom: 25px;
}

.senior_icon {
    list-style: none;
    margin: 0;
    display: flex;
    justify-content:flex-start;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.senior_icon p {
    font-size:0.812rem;
    font-weight: bold;
    border-radius: 0 0 3px 3px; 
    padding: 10px;
}

.senior_icon li {
    width: 30%;
    margin: 1%;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    align-items: stretch;
}




.senior_icon a {
    width: 100%;
    display: block;
    /*  padding: 5px;*/
    text-decoration: none;
    font-size: .9rem;
    color: #000;
    border: 1px solid #E1E1E1;
    background: #fff;
    font-weight: 100;
    border-radius: 0 0 5px 5px;
}

.senior_icon a:hover {
    opacity: 0.5;
}

.senior_icon img {
    display: block;
    width: 100%;
    max-width: 368px;
    border-radius: 3px 3px 0 0px; 
}



.senior_icon_diary {
    display: flex;
    margin:0 auto;
    margin-bottom: 25px;
}

.senior_icon_diary p {
    font-size:0.812rem;
    font-weight: bold;
    border-radius: 0 0 3px 3px; 
    padding: 10px;
    text-align: center;
}

.senior_icon_diary li {
     width: 30%;
    margin: 1%;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    align-items: stretch;
}


.senior_icon_diary a {
    width: 100%;
    display: block;
    /*  padding: 5px;*/
    text-decoration: none;
    font-size: .9rem;
    color: #000;
    border: 1px solid #E1E1E1;
    background: #fff;
    font-weight: 100;
    border-radius: 0 0 3px 3px; 
/*     border-radius: 30%; 
     object-view-box: inset(30% 30% 30% 30%);*/
}

.senior_icon_diary a:hover {
    opacity: 0.5;
}

.senior_icon_diary img {
    display: block;
    width: 100%;
    border-radius: 0 0 3px 3px; 
/*     object-view-box: inset(30% 0% 50% 0%);*/
}

.senior_button_wrapper {
    display: flex;
    width: 100%;
}

.senior_button {
    margin-right: 10px;
    margin-bottom: 20px;
    padding: 0px;
    border-radius: 5px;
    box-sizing: border-box;
    box-shadow: 0 0 5px #999;
    display: flex;
    width: 200px;
}

.senior_button figure {
    margin-right: 20px;
    width: 100px; /*		height: 100px;*/
}

.senior_button figure img {
    min-width: 100px;
    max-width: 100%;
    vertical-align: top;
}

span .senior_button_txt {
    padding-bottom: 0px;
}
#senior_Information .wrapper {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
}
#senior.copy p {
    font-size: 1.125rem;
    margin: 10px 0 0;
    text-align: left;
}
#senior .copy2 p {
    padding-bottom: 20px;
}
#senior .grid {
    display: grid;
    gap: 26px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    margin-top: 6%;
    margin-bottom: 50px;
}
#senior .grid img:hover {
    opacity: 0.5;
}
#senior h2 {
    font-size: 1.25rem;
    padding: 30px 0 20px 0;
}
#senior h3 {
    font-size: 1.75rem;
    padding: 30px 0;
    text-align: center;
}
#senior h3 {
    font-size: 1.75rem;
    padding: 30px 0;
    text-align: center;
}
#senior .timeschedule .time_title {
    font-size: 1rem;
    font-weight: bold;
    padding: 5px 5px;
}
.senior_img {
    margin: 0 auto;
}
.senior_Information_img {
    width: 26%;
}
.senior_Information_txt p {
    padding: 0 10px 10px 0;
}
.senior_Information_txt {
    width: 70%;
}
/*タイムスケジュール*/
/*#senior .timeschedule_wrapper {
    display: flex;
}*/
#senior .timeschedule {
    list-style: none;
    font-size: .9rem;
    width: 40%;
    padding: 2%;
    margin: 20px auto;
}
#senior .copy2 {
    width: 70%;
    margin: 0 auto;
}
#senior .copy2 h4 {
    font-size: 1.25rem;
    padding: 20px 0;
}
#salesperson {
    background-color: #ddd;
    padding: 5%;
}
#salesperson .job_description {
    padding-bottom: 3%;
}
#factoryperson {
    background-color: #F3F3F3;
    padding: 5%;
}
/*新着ラベル*/
.new_label {
    position: relative;
}

.flex-schedule {
    min-width: 100%;
    max-width:100%;
    list-style: none;
    margin: 0 auto;
    box-sizing: border-box;
    padding-bottom: 25px;
}
.flex-schedule li {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
}
.flex-schedule .area {
    padding: 10px;
    display: block;
    width: 100%;
    border-left: 3px solid #666;
}
.flex-schedule li .time {
    font-size: 0.875rem;
    display: inline-flex;
    justify-content: flex-end;
    flex-basis: 5em;
    max-width: 5em;
    margin-right: 1em;
    margin-top: 30px;
}
.flex-schedule .sch_box {
    position: relative;
    min-height: 1em;
    padding: 1em;
    background: #E1E1E1;
    border-radius: 3px;
}
.flex-schedule .sch_box::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 20px;
    background: #666;
    width: 15px;
    height: 15px;
    border-radius: 10px;
}
.flex-schedule .sch_title {
    font-weight: 700;
}
.flex-schedule .sch_tx {
    font-size: 14px;
    font-weight: normal;
}
.ribbon-wrapper {
    display: block;
    position: relative;
    margin: 0 auto;
    padding: 0;
    width: 300px;
}
.ribbon {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 5px;
    box-sizing: border-box;
    padding: 0 12px;
    margin: 0;
    height: 30px;
    line-height: 30px;
    font-size: 15px;
    letter-spacing: 0.1em;
    color: #5B5B5B;
    background: #fff;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.12);
}
.ribbon:before {
    position: absolute;
    content: '';
    top: 0;
    left: -7px;
    border: none;
    height: 38px;
    width: 7px;
    background: #fff;
    border-radius: 5px 0 0 5px;
}
.ribbon:after {
    position: absolute;
    content: '';
    bottom: -7px;
    left: -5px;
    border: none;
    height: 7px;
    width: 5px;
    background: #ddd;
    border-radius: 5px 0 0 5px;
}
/*テーブル*/
table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed; /*横幅修正*/
}
table th, table td {
    padding: 10px;
    text-align: left;
}
table tr:nth-child(odd) {
    background-color: #eee;
}
table .un_line tr {
    background-color: #fff;
    border-bottom: dotted 1px #ddd;
}
.el_bk_cl td .stand_out_icon {
    background-color: #D4D4D4;
    border-radius: 3px;
    padding: 2px 3px;
    margin-right: 5px;
}
.el_bk_cl td span .stands_out_icon {
    background-color: #D4D4D4;
    border-radius: 3px;
    padding: 2px 3px;
    margin-right: 5px;
}
#company_data figcaption {
    width: 160px;
}
#company_data figure img {
    width: 160px;
}
#company_data figcaption {
    font-size: 0.75rem;
}
#company_data .bd_wrapper {
    display: flex;
}
#company_data .left_box {
    padding-right: 10px;
}
#company_data .right_box {}
/*囲み*/
.ruled_line {
    padding: 3rem 1rem;
    margin-right: 0;
    margin-left: 0;
    color: #000;
    background: #fff;
    /* border: solid 1px #ddd;*/
    border-radius: 5px;
}
.ruled_line p {
    margin: 0;
    padding-bottom: 20px;
}
dl {
    display: flex;
    flex-wrap: wrap;
}
dt {
    width: 10%;
    font-weight: bold;
}
dd {
    width: 90%;
}
/*.new_wrapper {
    display: flex;
    padding-bottom: 20px;
    margin: 10px;
}*/
.new_wrapper ul li {
    font-size: 1.5rem;
    margin: 0 auto;
}
.senior_txt {
    padding-bottom: 30px;
    ;
    text-align: center;
}
.senior_img {
    width: 100%;
}
.senior_txt h4 {
    letter-spacing: 10px;
}
/*エントリーボタン 固定*/
.btn_footer_entry {
    margin-bottom: 48px;
}
.global-nav {
    position: fixed;
    left: 0;
    bottom: 0;
    background: white;
}
.nav-list {
    display: table;
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse;
    padding: 0;
    list-style: none;
    text-align: center;
}
.nav-item {
    display: table-cell;
    border: solid 1px #ddd;
    padding: 6px 0px;
    background-color: #fff;
}
.nav-item a {
    text-decoration: none;
    color: #993333;
}
.nav-item i {
    display: block;
    font-size: 1rem;
}
.nav-item a span {
    display: block;
    font-size: 1rem;
}
/* フッター
------------------------------- */
footer {
    background: #993333;
    text-align: center;
    padding: 26px 0;
}
footer p {
    color: #fff;
    font-size: 0.875rem;
}
/* SNS */
.sns {
    display: flex;
    width: 40%;
    margin: 0 auto;
}
.sns img {
    width: 30%;
}
/*戻るボタン*/
#page_top {
    width: 50px;
    height: 50px;
    position: fixed;
    right: 0;
    bottom: 0;
    background: #993333;
    opacity: 0.6;
}
#page_top a {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 40px 40px40px 40px;
    text-decoration: none;
}
#page_top a::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f106';
    font-size: 25px;
    color: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}
/*バナー*/
img.m_banner {
    width: 195px;
}
/* モバイル版
------------------------------- */
@media (max-width: 600px) {
    /*#top*/ .pdt75 {
        padding-top: 75px;
    }
    #top.pdt80 {
        padding-top: 80px;
    }
    .page-header .logo1 {
        width: 100%;
    }
    .page-header .logo2 {
        width: 100%;
    }
    .page-title {
        font-size: 1.4rem;
        line-height: 2rem;
        font-weight: bold;
        text-align: center;
        padding: 20px 0;
    }
    /*メイン画像*/
    #top img.pc_main {
        display: none !important;
    }
    #top img.sp_main {
        display: block !important;
    }
    .stack p {
        position: absolute;
        color: #000;
        top: 50%;
        font-size: 1rem;
        font-weight: 700;
        line-height: 1.25;
        max-width: 600px;
        background-color: rgba(255, 255, 255, 0.8);
        padding: 2%;
    }
    
    .breadcrumb a {
    font-size: 0.625rem;
    color: #333333;
    text-decoration: none;
}
    
    .menu-content p {
        font-size: 1rem;
        margin: 10px 0 0;
        text-align: center;
    }
    .sub-title {
        font-size: 1.1rem;
        padding: 0 8px 8px;
        font-weight: normal;
        text-align: center;
    }
    .sub-title3 {
        font-size: 1.25rem;
        font-weight: bold;
    }
    table .txt_stand_out {
        color: #993333;
        background-color: #fff;
        font-weight: bold;
    }
    /*table .txt_bd {
    font-weight: bold;
}*/
    .page-header {
        display: block;
        top: 0;
        height: 75px;
        box-sizing: border-box;
        padding: 0 0 0 5px;
        text-align: left;
        position: fixed;
        border-bottom: solid 1Px #e6e6e6;
    }
    header .logo_wrapper {
        display: flex;
        padding: 20px 0;
    }
    /*header .logo_wrapper {
    display: block;
    padding: 5px;
    margin: 0 auto;
}*/
    header .logo_wrapper img:hover {
        opacity: 0.5;
    }
    main {
        /*    padding: 10px;*/
        position: relative;
    }
    /*メイン画像*/
    img.pc_main {
        display: none !important;
        padding-bottom: 25px;
    }
    img.sp_main {
        display: block !important;
        padding-bottom: 0.75rem
    }
    /*申し込みボタンの横並び解除*/
    .b_wrapper {
        display: block;
    }
    .el_btn_app {
        width: 100%;
    }
    /*お知らせ*/
    #news {
        max-width: 90%;
        background-color: #fff;
        border: 1px solid #ddd;
        padding: 30px;
        border-radius: 10px;
        font-size: 1rem;
    }
    #news ul {
        width: 100％;
    }
    #news li.el_un_line {
        display: block;
        padding: 30px 0 0px 0;
        border-bottom: 1px dotted #fff;
    }
    #news li.end {
        display: flex;
        padding: 30px 0 10px 0;
    }
    #news li {
        display: block;
        padding: 0px 0 10px 0;
        border-bottom: 1px solid #fff;
    }
    #news .label {
        background-color: #993333;
        border-radius: 3px;
        color: #fff;
        text-align: center;
        padding: 5px 5px 5px 5px;
        margin: 0 20px 0 0;
        height: 30px;
        font-size: 0.75rem;
        order: 3;
    }
    #news .day {
        order: 1;
    }
    #news .text {
        order: 2;
    }
    /*マイナビ*/
    #entry2023 .banner_img {
        max-width: 90%;
    }
    #entry2023 a:hover {
        opacity: 0.5;
    }
    #entry2023 .banner_list {
    }
    /*エントリ*/
    .b_entry a {
        justify-content: center;
        align-items: center;
        margin: 20px auto;
        padding: 0.5em 2em;
        max-width: 90%;
        color: #fff;
        font-size: 1.25rem;
        font-weight: 700;
        background-color: #F40307;
        border-radius: 50vh;
    }
    /*.b_entry a::after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
}*/
    .b_entry a:hover {
        text-decoration: none;
        background-color: #E83F42;
    }
    /*スライダー画面*/
    .slider img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }
    /*メイン画像*/
    .main_img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }
    /*先輩インタビュー*/
.pc_main {
    display: block !important;
}  

    .staff-voice div.inner {
        max-width: 87%;
        margin: 0 6%;
    }
    .staff-voice p.el_main-text {
        font-size: 0.875rem;
        font-weight: bold;
        letter-height: 1.2;
        padding: 75px 0;
    }
    .staff-voice div.el-btn-staff ul li {
        padding-bottom: 25px;
    }
    .staff-voice div.el-btn-staff ul li:hover {
        opacity: 0.6;
    }
    .el-btn-staff-label {
        position: relative;
    }
    .el-btn-staff-label p {
        position: absolute;
        font-size: 0.625rem;
        color: #000;
        background: #fff;
         padding: 3px;
        top: 40%;
        left: 0%;
    }
    .el-btn-more {
        font-size: 0.875rem;
        text-align: center;
        text-decoration-color: rgb(255, 0, );
        width: 40%;
        padding: 10px 10px;
        /*        margin:50px 0 100px 0;*/
        border: solid 1px #000;
    }
    .more-btn {
        font-size: 0.875rem;
        text-align: center;
        text-decoration-color: rgb(255, 0, );
        width: 40%;
        padding: 10px 10px;
        /*        margin:50px 0 100px 0;*/
        border: solid 1px #000;
    }
    .more-btn:hover {
        background-color: #ddd;
    }
    .block {
        display: block;
        margin: 25px auto 100px auto;
    }

    /*先輩インタビューボタン*/
    .staff-voice div.el-btn-staff {
        margin: 0 0 30px;
        max-width: 100%;
    }
   .interview-list ul {
        display: flex;
        flex-wrap: wrap;
        padding-inline-start: 0;
    }
  .interview-list li {
        width: 50%;
        list-style: none;
        margin: 0 0 10px;
    }
    .more-list li:nth-child(3n-1) {
        margin: 0 0 10px;
    }
    .el-btn-staff.btn-more {
        text-align: center;
        width: 40%;
        padding: 10px 30px;
        /*        margin:50px 0 100px 0;*/
        border: solid 1px #000;
    }
    .block {
        display: block;
        margin: 25px auto 100px auto;
    }
    .btn-more:hover {
        cursor: pointer;
    }
    .staff-voice div ul li img {
        padding-bottom: 25px;
    }
    .staff-voice div.el-details ul li p.txt-underline {
        font-color: #666;
        font-size: 14px;
        padding-bottom: 10px;
        text-decoration: underline 4px #666;
        text-underline-offset: 0.5em;
    }
    .staff-voice div.el-details ul li p.txt-copy {
        font-size: 1.125rem;
        font-weight: bold;
        padding-bottom: 25px;
    }
    
    .staff-voice div.el-details ul li h1{
        font-size:0.875rem;
        font-weight:bold;
        spacing-height:0.8em;
    }
    
    .staff-voice div.el-details ul li p.txt {
        font-size: 0.812rem;
        spacing-height: 0.8em;
/*        padding-bottom: 25px;*/
    }
    
    .el-details.el-btn-more {
        text-align: center;
        font-size: 0.875rem;
        width: 40%;
        padding-bottom: 30px;
        /*        margin:50px 0 100px 0;*/
        border: solid 1px #000;
    }
    
      .staff-voice div.el-schedule h1{
        font-size:0.875rem;
        font-weight:bold;
        spacing-height:0.8em;
    }
    
    /*先輩インタビューボタンおわり*/
      /*先輩のピックアップ横並び解除*/  

 ul li div.pickup {
        display: block;
    }

ul li div.pickup-img {
    width: 100%;      
  
    }

ul li div .pick-txt {
    width: 100%;  
    }
    
    
    /*先輩インタビュー横並び解除*/
    .new_wrapper {
        display: block;
        padding-bottom: 20px;
        margin: 10px;
    }

 
    
    /*囲み*/
    #senior .ruled_line {
        padding: 1rem 1rem;
        margin-right: 0;
        margin-left: 0;
        color: #000;
        background: #fff;
        /*border: solid 1px #ddd;*/
        border-radius: 5px;
    }
    .senior_txt {
        width: 100%;
        font-size: 1rem;
        padding: 1rem;
    }
    .senior_img {
        width: 100%;
    }
    #senior h2 {
        font-size: 1.25rem;
    }
    /*#senior h3 {
    font-size: 1rem;
    padding: 30px 0 30px 0;
}*/
    #senior h2 .page-title {
        font-size: 1.4rem;
        line-height: 2rem;
        font-weight: bold;
        padding: 20px 0;
    }
    #senior.menu-content p {
        font-size: 1.125rem;
        margin: 10px 0 0;
        text-align: left;
    }
    /*1日のスケジュール*/
    /*#senior .timeschedule_wrapper {
    display: block;
}*/
    #senior .timeschedule {
        list-style: none;
        font-size: .9rem;
        width: 100%;
        padding: 5%;
        margin: 20px auto;
    }
    .timeschedule-content {
        width: 100%;
        float: left;
        border-left: 1px #B3B3B3 dotted;
        padding-left: 20px;
        padding-top: 0px;
        padding-bottom: 20px;
    }
    #senior .copy2 {
        padding: 2%;
        width: 100%;
    }
   .senior_icon{
        margin: 1%;
        padding: 0;
        box-sizing: border-box;
        display: flex;
        align-items: stretch;
    }
    
    .senior_icon li {
     width: 48%;
    margin: 1%;
    padding: 0;
    box-sizing: border-box;
    display: block;
}
    
    .senior_icon a {
    /*  padding: 5px;*/
    text-decoration: none;
    font-size: .9rem;
    color: #000;
    border: 1px solid #E1E1E1;
    background: #fff;
    font-weight: 100;
    border-radius: 0 0 5px 5px;
}

.senior_icon a:hover {
    opacity: 0.5;
}

.senior_icon img {
    display: block;
    width: 100%;
    border-radius: 3px 3px 0 0px; 
}

    .senior_icon_diary li {
     width: 50%;
    margin: 1%;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    align-items: stretch;
}
    
 /* アンカーリンクheight調整 */
    #sales-prefecture,#sales-kansai,#sales-kanto,#japan_s01,#japan_s02,#staff-chef01,#staff-lg01,#staff-hm01,#staff-pp01,#staff-acco01,#staff-pr01,#staff-gahr01,#staff-sm01,#staff-pd01,#staff-qa01{
    padding-top: 100px;
    margin-top: -100px; 
    }
    
    #ci img.pc_main {
        display: none !important;
    }
    #ci img.sp_main {
        display: block !important;
        padding-top: 65px;
    }
    #ci.main_img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }
    #ci dl {
        display: block;
        flex-wrap: wrap;
    }
    #ci dt {
        width: 100%;
        margin: 0.5rem 0;
        font-weight: bold;
    }
    #ci dd {
        width: 100%;
        margin: 0.5rem 0;
    }
    #ci.main_img {
        width: 100%;
        height: auto;
    }
    #ci.pdt100 {
        padding-top: 65px;
    }
    #ci.h2 .page-title {
        font-size: 1.5rem;
        line-height: 2rem;
        font-weight: bold;
        text-align: center;
    }
    #ci p {
        margin: 0.5rem 0;
        line-height: 1.75rem;
    }
    /*会社の人々横並び解除*/
    #company_introduction .wrapper {
        display: block;
    }
    /* 会社紹介 */
    #pofession_Introduction {
        padding: 4% 0;
    }
    #pofession_Introduction .wrapper {
        display: block;
        justify-content: space-between;
        padding-bottom: 20px;
    }
    .pofession_Introduction_img {
        width: 100%;
    }
    .pofession_Introduction_txt p {
        padding: 0 10px 10px 0;
    }
    .pofession_Introduction_txt {
        width: 100%;
    }
    #pofession_Introduction .wrapper {
        display: block;
        justify-content: space-between;
        padding-bottom: 20px;
    }
    /* HEADER */
    .main-nav {
        font-size: 2rem;
        margin-top: 10px;
        display: block;
        text-align: center;
    }
    .main-nav li {
        margin: 0 20px;
        width;
        10%;
        border-bottom: dotted 1px #ddd;
        margin-bottom: 10px;
    }
    .main-nav a {
        color: #000;
        font-size: 0.75rem;
    }
    .main-nav a:hover {
        color: #ddd;
    }
    /* HOME */
    .home-content {
        margin-top: 20%;
    }
    /* NEWS */
    .news-contents {
        flex-direction: column;
    }
    #news .page-title {
        margin-top: 30px;
    }
    article, aside {
        width: 100%;
    }
    aside {
        margin-top: 60px;
    }
    .post-info {
        margin-bottom: 30px;
    }
    .post-date {
        width: 70px;
        height: 70px;
        font-size: 1rem;
    }
    .post-date span {
        font-size: 0.875rem;
        padding-top: 2px;
    }
    .post-title {
        font-size: 1.375rem;
    }
    .post-cat {
        font-size: 0.875rem;
        margin-top: 10px;
    }
    .post-title, .post-cat {
        margin-left: 80px;
    }
    /* CONTACT */
    #contact .page-title {
        margin-top: 40px;
    }
    /* SNS */
    .sns {
        display: flex;
        width: 60%;
        margin: 0 auto;
    }
    .sns img {
        width: 60%;
    }
    
    .senior_icon_diary img {
    display: block;
    width: 100%;
    border-radius: 0 0 3px 3px; 
     object-view-box: inset(30% 0% 80% 0%);
}
}
