@charset "UTF-8";

/*==================================================

　車両管理 CSS

==================================================*/
html {
    scroll-padding-top: 0.8rem;
}
.contents_wrapper {
    max-width: 11.6rem;
    margin: 0 auto;
    padding: 0 0.3rem;
}
/* メインビジュアル
--------------------------------------------------*/
.header_visual {
    background-image: url(../images/img_main-visual_2.jpg);
}
/* ページリンクナビ
--------------------------------------------------*/
.page-link_nav {
    max-width: 5.5rem;
    padding: 0 0.3rem;
    margin: 1rem auto 0.5rem;
    display: flex;
    justify-content: space-between;
}
.page-link_nav li {
    width: 33.33%;
    font-size: 0.17rem;
    text-align: center;
    font-weight: 500;
    border-left: 1px solid #999;
    border-right: 1px solid #999;
    background-image: url(../../common/images/arrow_page-link_1.svg);
    background-repeat: no-repeat; 
    background-size: 0.18rem;
    background-position: center bottom 0.14rem;
}
.page-link_nav li + li { /* 仕切り線 */
    border-left: 0;
    border-right: 1px solid #999;
}
.page-link_nav li a {
    display: block;
    width: 100%;
    height: 100%;
    padding-top: 0.15rem;
    padding-bottom: 0.45rem;
}
/* 導入
--------------------------------------------------*/
.intro_wrapper {
    width: 100%;
    display: flex;
    align-items:flex-start; /* 子要素の高さを揃えないため */
    justify-content: space-between;
    margin: 1rem 0 1.5rem;
}
.intro_pict_box {
    width: 60%;
    aspect-ratio: 11 / 13;
    position: relative;
    color:#ffffff;
    text-shadow: 1px 1px#000000;
}
.intro_pict_gear_a {
    width: 69.25%;/*4.64rem*/
    position: absolute;
    top: 0;
    left: 2.24%;/*0.15rem*/
}
.intro_pict_gear_b {
    width: 50.45%;/*3.38rem*/
    position: absolute;
    top: 60.76%;/*4.8rem*/
    left: 2.24%;/*0.15rem*/
}
.intro_pict_gear_c {
    width: 50.45%;/*3.38rem*/
    position: absolute;
    top: 46.33%;/*3.66rem*/
    left: 47.76%;/*3.2rem*/
}
.gear_a,.gear_b,.gear_c {
    filter: drop-shadow(0px 0px 6px #666);
    animation:7s linear infinite rotation1;
}
@keyframes rotation1 {
    0%{ transform:rotate(0);}
    100%{ transform:rotate(360deg); }
}
.gear_a {
    animation:8.4s linear infinite rotation1; /* 1.2倍速 */
}
.gear_c {
    animation-direction: reverse;
}
.intro_text_box {
    width: 35%;
}
.intro_catch {
    font-size: 0.31rem;
    line-height: 1.6;
    font-weight: 700;
    margin-bottom: 0.2rem;
    letter-spacing: 0.04rem;
}
.intro_lead {
    margin-bottom: 1.2rem;
}
.intro_table {
    width: 100%;
}
.intro_table th {
    display: block;
    width: 100%;
    padding: 0.07rem;
    font-size: 0.2rem;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
    background-color: #ED7700;
}
.intro_table td {
    display: block;
    width: 100%;
    padding: 0.12rem;
    font-size: 0.36rem;
    font-weight: 600;
    text-align: center;
    background-color: #e6e6e6;
}
.intro_table td .date {
    font-size: 0.14rem;
    font-weight: 400;
}
/* 事業エリア
--------------------------------------------------*/
.business-area {
    width: 100%;
    background-color: #F8F6E7;
    padding: 1.2rem 0;
}
.section_title_box {
    margin-left: 5%;
}
.section_title_j {
    font-size: 0.36rem;
    font-weight: 700;
    letter-spacing: 0.025rem;
    line-height: 1.3;
}
.section_title_e {
    font-size: 0.18rem;
    font-family: "Encode Sans Expanded", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #ED7700;
}
.pict_business-area {
    margin-top: 0;
}
/* 主な管理車両
--------------------------------------------------*/
.vehicles {
    width: 100%;
    padding-bottom: 1.4rem;
    background-image: linear-gradient(#ed7700 61%, #333333 61%);
    background-repeat: repeat-x;
}
.stripe {
    width: 100%;
    height: 0.22rem;
    background-image: url(../images/pict_stripe_orange.svg);
    background-repeat: repeat-x;
    margin-bottom: 1rem;
}
.vehicles_text_wrapper {
    max-width: 11.6rem;
    margin: 1rem auto;
    padding: 0 0.3rem;
    display: flex;
    justify-content: space-between;
    color: #ffffff;
    gap: 0.3rem;
}
.vehicles_section_title_e {
    font-size: 0.8rem;
    font-family: "Encode Sans Expanded", sans-serif;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.24rem;
}
.vehicles_section_title_j {
    font-size: 0.28rem;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0.6rem;
}
.vehicles_text {
    font-size: 0.18rem;
    margin-bottom: 0.7rem;
}
.vehicles_btn_box {
    display: flex;
    align-items: center;
}
a.vehicles_btn {
	display: flex;
    align-items: center;
	vertical-align: middle;
	text-decoration: none;
	width: 3rem;
    height: 0.9rem;
	padding: 0 0.3rem;
	font-weight: 600;
	background: #1A1A1A;
	color: #fff;
	border-radius: 10px;
    padding-right: 0.6rem; 
    position:relative; 
}
a.vehicles_btn:after {
    content: ""; 
    display: block;
    width: 0.18rem; 
    height: 0.18rem; 
    background: url(../../common/images/arrow_white_outline.svg); 
    background-repeat: no-repeat; 
    background-size: contain; 
    position: absolute;
    top: 50%; 
    right: 0; 
    transform: translate(-0.18rem,-50%);
}
/* スライド
--------------------------------------------------*/
.swiper {
    /*スライダーの幅と高さを調整*/
    max-width: 12.4rem;
    text-align: center;
  }
  
  .swiper-slide {
    /*スライド要素の幅と高さを調整*/
    max-width: 11rem;
    height: 100%;
  
    /*テキストの位置調整*/
    display: flex;
    justify-content: center;
    align-items: end;
  
    /*テキストの色と太さを指定*/
    color: #000;
    font-weight: bold;
  }
  
  /*②スライド背景色を設定*/
  .slide1 {
    background-color: #ffffff;
  }


/* 業務内容
--------------------------------------------------*/
.business-contents {
    padding: 1.2rem 0;
}
.bc_wrapper {
    width: 100%;
    padding-bottom: 0.5rem;
    margin-top: 0.5rem;
    border-bottom: #ccc solid 1px;
    display: flex;
    justify-content: space-between;
}
.even {
    flex-direction: row-reverse;
}
.last {
    border-bottom: none;
}
.bc_text_box {
    width: 55.5%;
    background-image: url(../images/pict_corner_deco.svg);
    background-repeat: no-repeat;
    background-position: top 0 left 0;
    background-size: 0.7rem;
    padding-left: 0.8rem;
}
.bc_wrapper figure {
    width: 36.4%;
}
.bc_wrapper img {
    box-shadow: -0.1rem 0.1rem #ED7700;
}
.even img {
    box-shadow: 0.1rem 0.1rem #ED7700;
}
.bc_sub-title {
    font-size: 0.28rem;
    font-weight: 700;
}
.bc_number {
    font-size: 0.65rem;
    font-family: "Kanit", sans-serif;
    font-weight: 500;
    font-style: normal;
}