@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');
/*
Noto Sans JP: CSS class for a variable style
// <weight>: Use a value from 100 to 900
// <uniquifier>: Use a unique and descriptive class name

.noto-sans-jp-<uniquifier> {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

Noto Serif JP: CSS class for a variable style
// <weight>: Use a value from 200 to 900
// <uniquifier>: Use a unique and descriptive class name

.noto-serif-jp-<uniquifier> {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

*/
body{
  font-size:16px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  position:relative;
  padding-top:100px;
}

a{
  text-decoration:none;
}



header#header2025{
  padding:20px 0px;
  position:fixed;
  left:0;
  right:0;
  top:0;
  background:#FFF;
  z-index:99;
}

header#header2025 .headernav ul li{
  padding:0px 10px;
}

header#header2025 .headernav ul a{
  color:#555;
}

header#header2025 .headernav ul a span{
  display:none;
}

header#header2025 .headernav ul a:hover{
  color:#000;
}


header#header2025 #logo{
  width:160px;
}

header#header2025 #logo_recruit{
/*
  height:110px;
*/
  width:450px;
}

header#header2025 #search{
  position:relative;
  display:inline-block;
}

header#header2025 #search i{
  transition:1s all;
}

header#header2025 #search i:hover{
  transform:scale(1.2,1.2);
  transition:1s all;
  cursor:pointer;
}

header#header2025 #search form{
  position:absolute;
  right:0;
  bottom:-60px;
  display:flex;
  width:300px;
  z-index:99;
  background:#0090d1;
  padding:10px;
  border-radius:3px;
  display:none;
  opacity: 0;
  transition: all .5s ease;
}

header#header2025 #search form.active{
  display:block;
  opacity: 1;
}




.hamburger {
  position: fixed;
  top: 0px;
  right: 0px;
  z-index: 100;
  width: 82px;
  height: 82px;
  border: none;
  background: transparent;
  cursor: pointer;
  display:none;
  background: #333;
}
@media (max-width: 992px) {
  .hamburger {
    display:block;
  }
}

body.admin-bar .hamburger{
  top:32px;
}


.hamburger__line {
  position: absolute;
  left: 20px;
  height: 3px;
  background-color: #fff;
  transition: all .4s;
}

.hamburger__line:nth-of-type(1) {
  width: 46px;
  top: 30px;
}
.hamburger__line:nth-of-type(2) {
  width: 40px;
  top: 39px;
}
.hamburger__line:nth-of-type(3) {
  width: 34px;
  top: 48px;
}

.hamburger.active .hamburger__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
  width: 46px;
}
.hamburger.active .hamburger__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger.active .hamburger__line:nth-of-type(3) {
  width: 46px;
  transform: translateY(-9px) rotate(45deg);
}

#spmenutop,
#spmenubottom{
  display:none;
}

@media (max-width: 992px) {
  .hamburger{
    width:70px;
    height:70px;
  }
  .hamburger__line:nth-of-type(1) {
    width: 36px;
    top: 20px;
  }
  .hamburger__line:nth-of-type(2) {
    width: 30px;
    top: 29px;
  }
  .hamburger__line:nth-of-type(3) {
    width: 24px;
    top: 38px;
  }

  .hamburger__line{
    left:15px;
  }
  header#header2025 .headernav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background:#e6e6e6;
    box-shadow: 2px 0 4px rgba(0,0,0,.1);
    transform: translateX(100%);
    transition: transform .4s;
    z-index: 90;
    overflow:scroll;
    padding:20px 10px 10px 10px;
  }
  body.admin-bar .headernav{
    top:46px;
  }
  header#header2025 .headernav > ul{
    margin:0;
    display:flex;
    flex-wrap: wrap;
    justify-content: space-between !important;
  }
  header#header2025 .headernav > ul > li{
    padding:0 !important;
    margin-bottom:10px;
    width:100%;
  }
  header#header2025 .headernav > ul > li a{
    background:#fff;
    display:block;
    color:#0090d2;
    padding:20px;
    position:relative;
    font-weight:bold;
  }
  header#header2025 .headernav > ul > li a span{
    display:block;
    margin:20px 0px;
  }
  header#header2025 .headernav > ul > li:nth-child(1),
  header#header2025 .headernav > ul > li:nth-child(2){
    width:49%;
    text-align:center;
    min-height:100px;
    padding-bottom:50px;
  }


  header#header2025 .headernav > ul > li a:before{
    background-image:url("/wp-content/themes/rentcorporation/2025/img/arrow_sp_nav.svg");
    background-size:cover;
    display:block;
    content:"";
    width:18px;
    height:18px;
    position:absolute;
    right:10px;
    top: 50%;
    -webkit-transform: translateY(-50%); /* Safari用 */
    transform: translateY(-50%);
  }

  header#header2025 .headernav > ul > li:nth-child(1) a:before,
  header#header2025 .headernav > ul > li:nth-child(2) a:before{
    right:auto;
    top:auto;
    bottom:10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);

  }





  header#header2025 .headernav > ul > li:nth-last-child(2),
  header#header2025 .headernav > ul > li:last-child{
    display:none;
  }

  header#header2025 #search{
    display:block;
  }
  header#header2025 #search i{
    display:none;
  }
  header#header2025 #search form{
    display:block;
    position:static;
    width:initial;
    width:auto;
    width:100%;
    opacity:1;
    background:#263238;
    border-radius: 0;
  }
  #spmenutop{
    display:block;
    padding:10px;
  }
  #spmenutop_btn{
    text-align:center;
    font-weight:bold;
    display:block;
    color:#0288D1;
    background:#FFF;
    padding:5px;
    margin-top:10px;
    border-radius:30px;
  }
  #spmenubottom{
    display:block;
    margin-top:60px;
  }
  #spmenubottom #spmenubottom_btn{
    background:#fff;
    display:block;
    color:#0090d2;
    padding:20px;
    position:relative;
    font-weight:bold;
  }
  #spmenubottom #spmenubottom_btn:before{
    background-image:url("/wp-content/themes/rentcorporation/2025/img/arrow_sp_nav.svg");
    background-size:cover;
    display:block;
    content:"";
    width:18px;
    height:18px;
    position:absolute;
    right:10px;
    top: 50%;
    -webkit-transform: translateY(-50%); /* Safari用 */
  }

  #spmenusns{
    margin-top:40px;
    display:flex;
    align-items:center;
    list-style:none;
    padding:0;
    justify-content:center;
  }

}
header#header2025 .headernav.active {
  transform: translateX(0);
}


footer{
  background:#333333;
  padding-top:97px;
  color:#ffffff;
}

#footertop{
  border-bottom:1px solid #666666;
  padding-bottom:40px;
}

#footerlogo{
  max-width:150px;
}

ul.footerbtns{
  padding:0;
  margin:0;
  list-style:none;
}

ul.footerbtns li{
  display:inline-block;
  margin-left:20px;
}

ul.footerbtns li a{
  display:inline-block;
  padding:5px 15px;
  border:1px solid #FFF;
  border-radius:20px;
  color:#FFF;
}

ul.footerlinks{
  padding:0;
  margin:0;
  list-style:none;
  text-align:center;
}

ul.footerlinks li{
  display:inline-block;
  margin-left:20px;
}

ul.footerlinks li a{
  color:#FFF;
}



#footerbottom{
  padding-top:37px;
  padding-bottom:17px;
  border-bottom:1px solid #666666;
}

#breadcrumb{
  padding:10px 0px;
  font-size:14px;
  padding-top:120px;
  padding-bottom:50px;

}

#breadcrumb a{
  color:#000;
}

#copyright{
  padding:30px;
  text-align:center;
}

ul.fnav{
  list-style:none;
  padding:0;
}

ul.fnav ul{
  list-style:disc;
  padding:0;
  padding-left:18px;
}

ul.fnav > li{
  margin-bottom:30px;
}

ul.fnav > li.nom{
  margin-bottom:0px;
}

ul.fnav > li > a{
  color:#FFF;
  font-size:20px;
  font-weight:bold;
  display:inline-block;
  margin-bottom:5px;
}

ul.fnav > li > .fnav_title{
  color:#FFF;
  font-size:20px;
  font-weight:bold;
  display:inline-block;
  margin-bottom:5px;
}

ul.fnav a.external:after{
  font-family: "Font Awesome 5 Free";
  content: "\f08e";
  font-weight: 900;
  margin-left : 15px;
  color: #fff;
}



ul.fnav > li > ul > li > a{
  color:#FFF;
  font-size:14px;
}

ul.fnav > li > ul > li > ul > li > a{
  color:#FFF;
  font-size:14px;
}

ul.fnav ul.fnavmap li{
  list-style:none;
  display:inline-block;
}

ul.fnav ul.fnavmap li:after{
  content: "/";
  font-weight: 900;
  color: #fff;
}

ul.fnav ul.fnavmap li:last-child:after{
  display:none;
}

#pagetop {
  position: fixed;
  bottom: 20px;
  right: 10px;
  z-index:9999;
}

#pagetop:hover{
  cursor:pointer;
}

#pagetop img{
  width:70px;
}


.pageheader{
  height:300px;
  position:relative;
}

.pageheader small{
  display:block;
  font-size:30px;
}

.pageheader_img{
  position:absolute;
  left:0;
  top:0;
/*
  max-width:850px;
*/
  width:60vw;
  max-height:250px;
  overflow:hidden;
}

.pageheader_title{
  background-image:url("/wp-content/themes/rentcorporation/2025/img/pageheader.webp");
  background-size:cover;
/*
  width:890px;
*/
  width:62.67vw;
  height:188px;
  position:absolute;
  right:0;
  bottom:0;
  display: flex;
  align-items: center;
  padding-left:120px;
  color:#FFF;
  font-size:50px;
}

.main{
  padding-top:140px;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
    max-width: 96vw;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1000px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1000px;
  }
}

/* top */
/* pagenai */

.section_title{
  position:relative;
  margin-bottom:60px;
}

.section_title:before{
  display:block;
  content:"";
  width:100%;
  height:1px;
  background-color:#000;
  position:absolute;
  left:0;
  top: 50%;
  -webkit-transform: translateY(-50%); /* Safari用 */
  transform: translateY(-50%);
}

@media (min-width: 576px) {
  .section_title:before{
    width:calc((100vw - 540px)/2 - 10px);
    display:none;
  }
}
@media (min-width: 768px) {
  .section_title:before{
    width:calc((100vw - 720px)/2 - 10px);
  }
}
@media (min-width: 992px) {
  .section_title:before{
    width:calc((100vw - 960px)/2 - 10px);
  }
}
@media (min-width: 1200px) {
  .section_title:before{
    width:calc((100vw - 1000px)/2 - 10px);
  }
}
@media (min-width: 1400px) {
  .section_title:before{
    width:calc((100vw - 1000px)/2 - 10px);
  }
}

#recruit_float{
  position:fixed;
  right:0;
  top:450px;
  z-index:99;
}

#recruit_float ul{
  list-style:none;
  padding:0;
}

#recruit_float > p{
  position:absolute;
  top: -30px;
  right: 10px;
  display:inline-block;
  cursor:pointer;
}





/* outline */
a.outline_link{
  display:block;
  font-size:24px;
  font-weight:bold;
  padding:30px;
  position:relative;
  color:#000000;
  border:2px solid #0090d2;
  clip-path: polygon(1rem 0px, calc(100% - 6px) 0px, 100% 6px, 100% calc(100% - 6px), calc(100% - 6px) 100%, 6px 100%, 0px calc(100% - 6px), 0px 6px);
  margin-bottom:50px;
}
a.outline_link:after{
  background-image:url("/wp-content/themes/rentcorporation/2025/img/arrow_blue.svg");
  background-size:cover;
  display:block;
  content:"";
  width:40px;
  height:40px;
  position:absolute;
  right:40px;
  top: 50%;
  -webkit-transform: translateY(-50%); /* Safari用 */
}

a.bannerlink{
  position:relative;
  color:#FFF;
  font-size:25px;
  font-weight:bold;
}

a.bannerlink span{
  position:absolute;
  left:30px;
  top: 50%;
  -webkit-transform: translateY(-50%); /* Safari用 */
  transform: translateY(-50%);
  display:flex;
  align-items: center;
}

a.bannerlink span:after{
  background-image:url("/wp-content/themes/rentcorporation/2025/img/arrow_white.svg");
  background-size:cover;
  display:inline-block;
  content:"";
  width:40px;
  height:40px;
  margin-left:10px;
}

table#historytable{
}

table#historytable tr th,
table#historytable tr td{
  border-bottom:1px solid #cacaca;
  padding:30px 0px;
}

table#historytable tr th{
  width:300px;
}

table#historytable tr td.blank{
  width:50px;
  border:none;
}


table#companytable{
  width:100%;
}

table#companytable tr th,
table#companytable tr td{
  border-bottom:1px solid #cacaca;
  padding:30px 0px;
}

table#companytable tr td.blank{
  width:50px;
  border:none;
}



table#companytable ul{
  list-style: none;
  padding-left:0;
}

table#companytable ul li{
  position:relative;
  padding-left:20px;
}

table#companytable ul li:before{
  content: "●"; 
  font-size:10px;
  color: #0090d2;
  position:absolute;
  left:0;
  top: 50%;
  -webkit-transform: translateY(-50%); /* Safari用 */
  transform: translateY(-50%);
}

h2.ninshou{
  color:#333333;
}

.jis{
  color:#333333;
  font-size:24px;
  font-weight:bold;
}

.ninshou_text{
  color:#333333;
  line-height:2;
}

.ninshou_subtitle{
  font-size:20px;
  font-weight:bold;
  color:#0090d2;
  border-bottom:1px solid #0090d2;
  padding-bottom:10px;
}


table.ninshoutable{
  width:100%;
}

table.ninshoutable tr th,
table.ninshoutable tr td{
  border-bottom:1px solid #cacaca;
  padding:30px 0px;
}

table.ninshoutable tr td.blank{
  width:50px;
  border:none;
}

table.ninshoutable tr:last-child th,
table.ninshoutable tr:last-child td{
  border:none;
}

.ninshou_centername{
  font-size:20px;
  font-weight:bold;
  color:#0090d2;
}

table.ninshou_officetable{
  width:100%;
 border-collapse:separate;
 border-spacing:5px;
}

table.ninshou_officetable thead th{
  background:#f2f2f2;
  padding:20px;
}

table.ninshou_officetable tbody td{
  padding:20px;
  border-bottom:1px solid #cacaca;
}


table.ninshou_officetable tbody tr:last-child td{
  border:none;
}

table.ninshou_officetable tbody td.approvalcell{
  width:260px;
}

.lh2{
  line-height:2;
}

.banner_img{
  margin-bottom:20px;
}

.banner_title{
  color:#333333;
  font-size:24px;
  font-weight:bold;
  margin-bottom:15px;
}

.banner_txt{
}

/* ir */
.gradation_title{
  font-size:24px;
  font-weight:bold;
  color:#FFF;
  background: #0090D2;
  background: linear-gradient(90deg,rgba(0, 144, 210, 1) 0%, rgba(27, 20, 100, 1) 100%);
  padding:30px 0px;
  text-align:center;
  letter-spacing:20px;
}

.irbox{
  font-size:18px;
  font-weight:bold;
  color:#333333;
}

.irbox img{
  height:70px;
}

.irbox div{
  display:flex;
  align-items: center;
  border-bottom:1px solid #cacaca;
  padding:20px 0px;
}

.irbox div:last-child{
  justify-content: end;
}


.policy_m_stakeholder_txt{
  font-size:24px;
  line-height:1.8;
}

ul.nav_yakkan{
  padding:0;
  list-style:none;
}

ul.nav_yakkan a{
  display:block;
  position:relative;
  color:#000;
  font-size:20px;
  font-weight:bold;
  border-bottom:1px solid #cacaca;
  padding:20px 0px;
}

ul.nav_yakkan a span{
  display:inline-block;
  width:80px;
}

ul.nav_yakkan a:after{
  background-image:url("/wp-content/themes/rentcorporation/2025/img/arrow_blue.svg");
  background-size:cover;
  display:block;
  content:"";
  width:40px;
  height:40px;
  position:absolute;
  right:40px;
  top: 50%;
  -webkit-transform: translateY(-50%); /* Safari用 */
}

.yakkan_title{
  font-size:24px;
  font-weight:bold;
  color:#0090d2;
  margin-bottom:40px;
}


ol.yakkan_list{
  line-height:2;
}

ol.yakkan_list >li > ol{
  list-style-type: none;
  padding-left:20px;
}
ol.yakkan_list >li > ol > li {
  counter-increment: cnt;
}
ol.yakkan_list >li > ol > li:before {
  content: "("counter(cnt) ") ";
}


/* philosophy */
.philosophy_txt{
  font-size:32px;
  font-weight:bold;
  text-align:center;
}

.onestop{
  color:#0090d2;
}

ul.philosophylist{
  list-style:none;
  padding:0;
  
}

ul.philosophylist li{
  display:block;
  text-align:center;
  color:#333333;
  font-size:22px;
  font-weight:bold;
  background-image:url("/wp-content/themes/rentcorporation/2025/img/philosophy/arrow.png");
  background-repeat:no-repeat;
  background-size:90% auto;
  background-position:50% 100%;
  padding-bottom:100px;
  margin-bottom:50px;
}

ul.philosophylist li:last-child{
  background:none;
}

ul.philosophylist li div{
  margin-bottom:35px;
}

/* recruit */
h2.h2_blue{
  font-size:36px;
  font-weight:bold;
  color:#0090d2;
  position:relative;
}

.benefit_txt{
  border-bottom:1px solid #cacaca;
  padding-top:30px;
  padding-bottom:30px;
  padding-bottom:30px;
  margin-bottom:30px;
}

.page-id-34710 .main{
  background-image:url("/wp-content/themes/rentcorporation/2025/img/benefit/back.webp");
  background-repeat:repeat-y;
  background-position:100% 0px;
}


h2.h2_ami{
  font-size:36px;
  font-weight:bold;
  color:#0090d2;
  position:relative;
  margin-bottom:30px;
}

h2.h2_ami:after{
  content:"";
  position:absolute;
  left:0;
  bottom:-22px;
  height:14px;
  width:100%;
  background-image: repeating-linear-gradient(315deg, #0090d2, #0090d2 2px, transparent 2px, transparent 7px);
}

.require_txt{
  font-size:18px;
  color:#251e1c;
  line-height:2;
}



table.guidelinetab{
  width:100%;
}

table.guidelinetab thead tr th{
  color:#333333;
  background:#f2f2f2;
  border-right:2px solid #FFF;
  padding:15px 20px;
}

table.guidelinetab tbody tr td{
  border-right:2px solid #FFF;
  padding:15px 20px;
  border-bottom:1px solid #cacaca;
}

.recruit_type_btn{
  background: #333333;
  background: linear-gradient(180deg, rgba(51, 51, 51, 0.05) 10%, rgba(51, 51, 51, 0.1) 80%, rgba(51, 51, 51, 0.12) 100%);
  border-bottom-right-radius: 20px;
  padding:25px;
  position:relative;
}
.recruit_type_btn:after{
  content:"";
  position:absolute;
  left:20px;
  top:0px;
  height:4px;
  width:200px;
  background: #1B1464;
  background: linear-gradient(90deg,rgba(27, 20, 100, 1) 0%, rgba(0, 144, 210, 1) 100%);
}

.recruit_type_btn_title{
  font-size:24px;
  font-weight:bold;
  color:#333333;
  margin-bottom:10px;
}

.recruit_type_btn_catch{
  color:#333333;
  margin-bottom:20px;
}

.recruit_type_more{
  text-align:right;
}

.recruit_type_more a{
  display:inline-block;
  background:#0090d2;
  color:#FFF;
  padding:10px 50px;
  border-radius:20px;
  text-align:center;
  position:relative;
}

.recruit_type_more img{
  width:20px;
  position:absolute;
  right:20px;
  top: 50%;
  -webkit-transform: translateY(-50%); /* Safari用 */
  transform: translateY(-50%);
}

/* sales_system */

.sales_system_txt{
  font-size:18px;
  color:#251e1c;
  line-height:2;
}
h2.h2_outline{
  font-size:36px;
  font-weight:bold;
  color:#333333;
  position:relative;
  margin-bottom:30px;
  text-align:center;
  line-height:1.8;
}

h3.h3_outline{
  font-size:24px;
  color:#0090d2;
  font-weight:bold;
  line-height:1.8;
}
h3.h3_sales_system{
  font-size:24px;
  color:#0090d2;
  font-weight:bold;
  line-height:1.8;
}

h3.h3_brs{
  font-size:24px;
  color:#0090d2;
  font-weight:bold;
  line-height:1.8;
  border-bottom:1px solid #666666;
  padding-bottom:25px;
}

.gradationline{
  display:inline-block;
  width:120px;
  height:5px;
  background: #01B1464;
  background: linear-gradient(270deg, rgba(0, 0, 0, 1) 0%, rgba(0, 144, 210, 1) 100%);
}

.font24{
  font-size:24px;
}
.font18{
  font-size:18px;
}

a.boxlink{
  font-size:24px;
  font-weight:bold;
  color:#0090d2;
  background:#dcebf5;
  display:block;
  text-align:center;
  padding-top:44px;
  padding-bottom:16px;
  border-bottom-right-radius: 20px;
  line-height:1.2;
}

a.boxlink:after{
  margin:26px auto 0px auto;
  display:block;
  content:"";
  width:32px;
  height:32px;
  background-image:url("/wp-content/themes/rentcorporation/2025/img/arrow_blue_outline.svg");
  background-size:cover;
}

a.boxlink_right{
  font-size:24px;
  font-weight:bold;
  color:#0090d2;
  background:#dcebf5;
  display:block;
  padding:24px;
  border-bottom-right-radius: 20px;
  position:relative;
}

a.boxlink_right:after{
  display:block;
  content:"";
  width:32px;
  height:32px;
  background-image:url("/wp-content/themes/rentcorporation/2025/img/arrow_blue_outline.svg");
  background-size:cover;
  position:absolute;
  right:20px;
  top: 50%;
  -webkit-transform: translateY(-50%); /* Safari用 */
  transform: translateY(-50%);
}

p{
  line-height:2;
}

.q{
  font-weight:bold;
  font-size:18px;
  padding:20px 70px 20px 20px;
  border:1px solid #cacaca;
  position:relative;
}

.q:hover{
  cursor:pointer;
}

.q:after {
  display:flex;
  align-items:center;
  justify-content: center;
  font-size:40px;
  font-family: "Font Awesome 6 Free";
  content: '\2b';
  font-weight: 900;
  width:46px;
  height:46px;
  background:#d7d7d7;
  color:#FFF;
  position:absolute;
  right:20px;
  top: 50%;
  -webkit-transform: translateY(-50%); /* Safari用 */
  transform: translateY(-50%);
}

.q.active:after{
  content: '\f068';
}

.a{
  font-size:18px;
  padding:20px;
  line-height:2;
  display:none;
}

a.btn-link{
  border:2px solid #0090d2;
  background:#0090d2;
  color:#ffffff;
  display:inline-block;
  padding:10px 70px;
  border-radius:20px;
  text-decoration:none;
  position:relative;
  line-height:1;
  transition:.3s;
}

a.btn-link:hover{
  border:2px solid #0090d2;
  color:#0090d2;
  background:#FFF;
  transition:.3s;
}


a.btn-link:after{
  background-image:url("/wp-content/themes/rentcorporation/2025/img/arrow_white_small.svg");
  background-size:cover;
  display:inline-block;
  content:"";
  width:20px;
  height:20px;
  position:absolute;
  right:20px;
  top: 50%;
  -webkit-transform: translateY(-50%); /* Safari用 */
  transform: translateY(-50%);
}

a.btn-link:hover:after{
  background-image:url("/wp-content/themes/rentcorporation/2025/img/arrow_blue_outline.svg");
}

.blue{
  color:#0090d2;
}


/* training */

ul.trainingstep1,
ul.trainingstep2,
ul.trainingstep3{
  list-style:none;
  padding:0;
}

ul.trainingstep1 li,
ul.trainingstep2 li,
ul.trainingstep3 li{
  font-size:20px;
  font-weight:bold;
  position:relative;
  padding-left:30px;
}

ul.trainingstep1 li:before,
ul.trainingstep2 li:before,
ul.trainingstep3 li:before{
  content:"□";
  position:absolute;
  left:0px;
  top: 50%;
  -webkit-transform: translateY(-50%); /* Safari用 */
  transform: translateY(-50%);

}

ul.trainingstep1 li{
  color:#64cdaf;
}

ul.trainingstep2 li{
  color:#50b9e1;
}

ul.trainingstep3 li{
  color:#6496e2;
}

.training_flow_header{
  text-align:center;
  background: linear-gradient(180deg, #fff 0%, #fff 50%, #f2f2f2 50%, #f2f2f2 100%);
}

.training_flow_header img{
  width:350px;
}


.training_step_title1,
.training_step_title2,
.training_step_title3{
  font-size:26px;
  font-weight:bold;
  padding-bottom:10px;
  margin-top:30px;
  margin-bottom:20px;
  border-bottom:2px solid #fff;
}

.training_step_title1{
  color:#64cdaf;
  border-color:#64cdaf;
}

.training_step_title2{
  color:#50b9e1;
  border-color:#50b9e1;
}

.training_step_title3{
  color:#6496e2;
  border-color:#6496e2;
}

.more_rent{
  position:relative;
  padding:0px 40px;
  color:#518ece;
  font-size:14px;
}
.more_rent:before, .more_rent:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 34px;
  height: 2px;
  background-color: #518ece;
}
.more_rent:before {
  left:0;
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}
.more_rent:after {
  right: 0;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}

.recrut_footer{
  padding-top:50px;
}

.other_content{
  background:rgba(232,232,232,0.5);
  text-align:center;
  padding:60px 0px;
  margin-top:60px;
}


/* swiper */
.swiper {
  --swiper-navigation-sides-offset: 30vw; /* ナビゲーションボタンの位置 */
}

#otherSwiper .swiper-slide-prev{
  opacity:0.5;
}

#otherSwiper .swiper-slide-next{
  opacity:0.5;
}

#otherSwiper .swiper-button-prev,
#otherSwiper .swiper-button-next {
  height: 50px !important;
  width: 50px !important;
  content:"";
}

#otherSwiper .swiper-button-prev::after,
#otherSwiper .swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  height: 150px;
  margin: auto;
  width: 150px;
    text-indent: 100%;
    white-space: nowrap;
  overflow:hidden;
}
#otherSwiper .swiper-button-prev::after {
  background-image: url("/wp-content/themes/rentcorporation/2025/img/swiper_prev.svg");
}
#otherSwiper .swiper-button-next::after {
  background-image: url("/wp-content/themes/rentcorporation/2025/img/swiper_next.svg");
}
#otherSwiper .swiper-slide img {
  height: auto;
  width: 100%;
}

ul.slide_under_list{
  margin-top:60px;
  padding:0;
  list-style:none;
}
ul.slide_under_list li{
  display:inline-block;
  padding:0px 20px;
}
ul.slide_under_list li a{
  font-weight:bold;
  color:#363636;
  display:flex;
  align-items:center;
}
ul.slide_under_list li a img{
  margin-left:10px;
}

/* topmessage */
.page-id-34972 .pageheader{
  display:none;
}

.topmessage_title{
  font-size:36px;
  font-weight:bold;
  color:#0090d2;
}

/* kanren */
#kanrenmap1{
  position:relative;
}
#kanrenmap1 #maxrent_indonesia{
  width:31.83%;
  position: absolute;
  top: 78%;
  left: 45%;
}
#kanrenmap1 #maxrent_vietnam{
  width:31.69%;
  position: absolute;
  top: 0%;
  left: 72%;
}
#kanrenmap1 #rent_thai{
  width:26.19%;
  position: absolute;
  top: 62%;
  left: 10%;
}

#kanrenmap2{
  position:relative;
}
#kanrenmap2 #rent{
  width:31.26%;
  position: absolute;
  top: 27%;
  left: 20%;
}
#kanrenmap2 #rss{
  width:48.3%;
  position: absolute;
  top: 82%;
  left: 32%;
}
#kanrenmap2 #sankoo{
  width:37.04%;
  position: absolute;
  top: 92%;
  left: 43%;
}
#kanrenmap2 #atex{
  width:32.39%;
  position: absolute;
  top: 70%;
  left: 59%;
}

.kanrenbox{
  padding-bottom:60px;
  margin-bottom:50px;
  border-bottom:1px solid #cacaca;
}

.kanren_catch{
  font-size:36px;
  font-weight:bold;
}

.kanren_title{
  font-size:36px;
  font-weight:bold;
  color:#0090d2;
}

.kanren_desc{
  font-size:24px;
  font-weight:bold;
  color:#0090d2;
  margin-bottom:30px;
}

.kanren_address{
  line-height:2;
  margin-bottom:30px;
}


/* brs */

#brsmain{
  background-color:rgba(121,198,186,0.1);
}

/* reassurance */

table.exclusions{
  width:100%;
}
table.exclusions tr th{
  vertical-align:top;
  font-size:22px;
  font-weight:bold;
  width:25%;
}
table.exclusions tr th,
table.exclusions tr td{
  padding:20px;
}

table.exclusions tr td{
  border-bottom:1px solid #cacaca;
}

#exclusions1 tr th{
  background:#f2f2f2;
}

#exclusions2 tr th{
  background:#e6e6e6;
}

#exclusions3 tr th{
  background:#cccccc;
}

/* business */
.business_catch{
  font-size:48px;
  font-weight:bold;
  color:#0090d2;
}

.businessbox{
  background:rgba(0,144,210,0.2);
  border-radius:10px;
  padding:40px;
  height:100%;
}

ul.businesslist{
  padding:0;
  margin:0;
  list-style:none;
}

ul.businesslist li{
  border-bottom:1px solid #cacaca;
}

ul.businesslist li a{
  position:relative;
  color:#333333;
  display:block;
  padding:10px 30px 10px 0px;
}
ul.businesslist li a:before{
  content:"・";
}

ul.businesslist li a:after{
  background-image:url("/wp-content/themes/rentcorporation/2025/img/business/arrow.svg");
  background-size:cover;
  display:inline-block;
  content:"";
  width:20px;
  height:20px;
  position:absolute;
  right:0px;
  top: 50%;
  -webkit-transform: translateY(-50%); /* Safari用 */
  transform: translateY(-50%);

}

ul.businesslist2{
  padding:0;
  margin:0;
  list-style:none;
}

ul.businesslist2 li a{
  position:relative;
  display:inline-block;
  padding:5px 30px 5px 0px;
  color:#333333;
}

ul.businesslist2 li a:before{
  content:"・";
}

ul.businesslist2 li a:after{
  background-image:url("/wp-content/themes/rentcorporation/2025/img/business/arrow.svg");
  background-size:cover;
  display:inline-block;
  content:"";
  width:20px;
  height:20px;
  position:absolute;
  right:0px;
  top: 50%;
  -webkit-transform: translateY(-50%); /* Safari用 */
  transform: translateY(-50%);
}

.snslinks{
  font-size:21px;
  font-weight:bold;
  padding:20px;
  background:#f2f2f2;
}

.snslinks ul{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  margin-top:20px;
}

.snslinks ul li{
  flex: 1;
  text-align:center;
}

.erentlink{
  display:block;
  padding:20px;
  background:rgba(0,144,210,0.6);
  color:#FFF;
  font-size:21px;
  font-weight:bold;
  padding-bottom:60px;
  position:relative;
}

.erentlink:after{
  background-image:url("/wp-content/themes/rentcorporation/2025/img/arrow_white.svg");
  background-size:cover;
  display:inline-block;
  content:"";
  width:40px;
  height:40px;
  position:absolute;
  right:20px;
  bottom:20px;
}


.mailmagazinelink{
  display:block;
  padding:20px;
  background:rgba(0,144,210,1);
  color:#FFF;
  font-size:21px;
  font-weight:bold;
  padding-bottom:60px;
  position:relative;
}

.mailmagazinelink:after{
  background-image:url("/wp-content/themes/rentcorporation/2025/img/arrow_white.svg");
  background-size:cover;
  display:inline-block;
  content:"";
  width:40px;
  height:40px;
  position:absolute;
  right:20px;
  bottom:20px;
}

/* invention */
.invention{
  padding:30px;
  background-image:url("/wp-content/themes/rentcorporation/2025/img/invention/back.webp");
  background-size:cover;
  color:#FFFFFF;
}

.invention .prevmodal,
.invention .nextmodal{
  border: 2px solid #FFF;
  border-radius: 20px;
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  color:#FFF;
  font-size:20px;
  background:none;
}

.invention .prevmodal{
  left:-50px;
}

.invention .nextmodal{
  right:-50px;
}


.invention_title{
  font-size:24px;
  font-weight:bold;
  padding:30px 0px;
  background-image:url("/wp-content/themes/rentcorporation/2025/img/invention/line.webp");
  background-size:100% auto;
  background-position:0 100%;
  background-repeat:no-repeat;
  margin-bottom:30px;
}

.invention_txt{
}

.page-id-34972 .main{
  padding-top:0px;
}

/* resoponsive config  */

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

@media screen and (max-width: 1280px) {
  .pageheader_title{
    padding-left:70px;
  }
  .topmessage_title{
    font-size:26px;
  }
  .font24{
    font-size:20px;
  }
}

@media screen and (max-width: 1200px) {
  .main{
    padding-top:70px;
  }
}

/* md ≥768px */
@media screen and (max-width: 991px) {
  /* 全体 */
  .pageheader_img{
    width:80vw;
  }
  .pageheader_title{
    width:70vw;
    font-size:40px;
  }
  /* outline */
  a.outline_link{
    font-size:18px;
    padding:20px;
  }
  a.outline_link::after {
    width: 30px;
    height: 30px;
    right: 20px;
  }
  .gradation_title{
    padding:20px 0px;
  }
  .philosophy_txt{
    font-size:22px;
  }

  ul.philosophylist li{
    font-size:18px;
  }

  .topmessage_title{
    font-size:20px;
  }
  .font24{
    font-size:17px;
  }
  .business_catch{
    font-size:38px;
  }
  h2.h2_ami{
    font-size:30px;
  }


}

/* sm ≥576px */
@media screen and (max-width: 767px) {
  /* 全体 */
  .pageheader_img{
    width:80vw;
  }
  .pageheader_title{
    width:70vw;
    font-size:30px;
    padding-left:35px;
  }
  .kanren_catch{
    font-size:26px;
  }
  .businessbox{
    margin-bottom:20px;
  }
  .business_catch {
    font-size: 30px;
  }
  h2.h2_ami{
    font-size:26px;
  }

}

/* xs <576px */
@media screen and (max-width: 576px) {
  /* 全体 */
  .pageheader_title {
    height: auto;
    padding: 40px 0px 40px 20px; 
  }

  .pageheader {
    height: 200px;
  }

  ul.footerbtns{
    display:flex;
    align-items:center;
    justify-content:center;
    margin:30px 0px;
  }

  #copyright{
    padding:10px;
    font-size:14px;
  }


  /* outline */

  h2.h2_outline{
    font-size:24px;
  }

  .swiper {
    --swiper-navigation-sides-offset: 10px;
  }
  ul.slide_under_list li:first-child{
    margin-bottom:20px;
  }
  #recruit_float{
    display:none;
  }
  .section_title::before {
    transform: none;
    bottom: -7px;
    top: auto;
  }

  table#companytable,
  table#companytable tbody,
  table#companytable tbody tr,
  table#companytable tbody tr th,
  table#companytable tbody tr td{
    width:100%;
    display:block;
  }
  table#companytable tbody tr td.blank{
    display:none;
  }

  table#historytable,
  table#historytable tbody,
  table#historytable tbody tr,
  table#historytable tbody tr th,
  table#historytable tbody tr td{
    width:100%;
    display:block;
  }
  table#historytable tbody tr td.blank{
    display:none;
  }

  table.ninshoutable,
  table.ninshoutable tbody,
  table.ninshoutable tbody tr,
  table.ninshoutable tbody tr th,
  table.ninshoutable tbody tr td{
    width:100%;
    display:block;
  }
  table.ninshoutable tbody tr td.blank{
    display:none;
  }

  table.ninshou_officetable{
    text-wrap:nowrap;
  }

  table.ninshou_officetable thead th,
  table.ninshou_officetable tbody td{
    padding:5px;
  }




  table.exclusions,
  table.exclusions tbody,
  table.exclusions tbody tr,
  table.exclusions tbody tr th,
  table.exclusions tbody tr td{
    width:100%;
    display:block;
  }
  table.exclusions tbody tr td.blank{
    display:none;
  }

  table.exclusions tbody tr th br{
    display:none;
  }


  .kanren_title{
    font-size:30px;
  }

  .policy_m_stakeholder_txt{
    font-size:18px;
  }

  .irbox{
    padding-left:20px;
    padding-right:20px;
  }

  .business_catch {
    font-size: 20px;
  }

  .gradation_title{
    text-align:center !important;
    padding-left:0 !important;
    letter-spacing: 10px;
  }

  table.guidelinetab{
    text-wrap:nowrap;
  }
  table.guidelinetab thead tr th,
  table.guidelinetab tbody tr td{
    padding:5px 5px;
    font-size:16px;
  }

  h2.h2_blue{
    font-size:26px;
  }

}


