@charset "UTF-8";


/* ============== 採用情報の設定 START
======= */

/* =======
採用情報の設定 END ============== */


body{
    position: relative;
    color: #333;
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ Pro W3', 'Meiryo', 'メイリオ', 'MS PGothic', 'ＭＳ Ｐゴシック', Osaka;
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 1.6;
}
mark{
    background: linear-gradient(transparent 0%, #ffff66 0);
}
/* ====基本設定　ここから==== */
.basic__content{
    width: 100%;
    padding: 30px 0;
    background-color: #fff;
}
.basic__content-border{
    width: 100%;
    padding: 100px 0;
    background-color: #f2f2f2;
}
.basic__content__inner{
    width: 1700px;
    margin: 0 auto;
}
.basic__content-img{
    position: relative;
    background-size: cover;
}
.basic__content-img::before { /* カラーフィルター */
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #191970;
    opacity: .6;
    content: "";
}
/* 背景にドロップシャドウのための設定　ここから */
.basic__content-back{
    position: relative;
    width: 1800px;
    margin: 100px auto;
}
.basic__content-back--shadow{
    border: solid 1px #ededed;
    box-shadow: 0px 2px 4px 1px rgba(0,0,0,0.07);
    background-color: #fff;
}
.basic__content-back__inner{
    margin: 20px 40px;
}
/* 背景にドロップシャドウのための設定　ここまで */
/* 背景を写真に設定　ここから */
.basic__content-back-img{
    padding: 30px 0;
    background: url(../images/dummy/dummy.jpg) no-repeat 0 0 / cover;
}
.basic__content-back-img--shadow{
    width: 1700px;
    margin: 100px auto;
    border: solid 1px #ededed;
    box-shadow: 0px 2px 4px 1px rgba(0,0,0,0.07);
    background-color: #fff;
}
/* 背景を写真に設定　ここまで */
.basic__flex{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.basic-ttl{
    padding: 0 0 10px;
    border-bottom: 8px solid;
    border-image: linear-gradient(to right,#191970 0%,#ff6b3e 50%,#191970 100%) 1;
    color: #ff6b3e;
    font-size: 20px;
    line-height: 2.4em;
    letter-spacing: 0.1em;
    text-align: center;
}
.basic-ttl--english{
    color: #555;
    font-size: 65px;
    font-family: Georgia, serif;
    letter-spacing: .06em;
}
.basic-ttl--small{
    margin-bottom: -60px;
    background-color: #f2f2f2;
    font-size: 27px;
    font-weight: bold;
    letter-spacing: 0.3em;
    text-align: center;
}
.basic-txt{
    margin: 30px 30px 0;
    font-size: 18px;
    line-height: 2em;
}

.basic__more{
    position: relative;
    padding-right: 25px;
    margin: 15px 20px;
    color: #191970;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0;
    text-align: right;
}
.basic__more:hover{
    color: #ff6b3e;
}
.basic__more::before { /* くの字の表示設定 */
    content: "";
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 2px;
    right: 2px;
    width: 9px;    /* くの字を山なりに見た時、左側の長さ */
    height: 9px;   /* くの字を山なりに見た時、右側の長さ */
    border-top: 2px solid #333;     /* くの字を山なりに見た時、左側の太さと色 */
    border-right: 2px solid #333;   /* くの字を山なりに見た時、右側の太さと色 */
    transform: rotate(45deg);    /* くの字の向き */
}
/* ====基本設定　ここまで==== */

#header{
    position: fixed;
    z-index: 999;
    width: 100%;
    background-color: #fff;
    color: #000;
}
.header--top{
    display: flex;
    justify-content: space-between;
    padding: 15px 30px 5px;
}
.header__logo{
    display: table;
    width: 530px;
}
.header__logo a{
    display: table-cell;
    vertical-align: middle;
}
.header__contact--sp {
    display: none;
}
.header__contact{
    display: inline-block;
    text-align: center;
}
.header__contact__tel{
    width: 350px;
    font-size: 15px;
}
.header__contact__tel--large{
    vertical-align: middle;
    color: #191970;
    font-weight:bold;
    font-size: 30px;
}
#global-pc__nav{
    width: 100%;
    background-color: #191970;
    font-weight: bold;
    text-align: center;
}
#global-pc__nav.nav__fixed{ /* クラス途中追加 */
    position: fixed;
    top:0;
}
.global-pc__list{
    display: flex;
    justify-content: center;
    margin: 0 auto;
    color: #fff;
}
.global-pc__item a{
    display: inline-block;
    padding: 10px 28px;
}
.global-pc__item a:hover{
    background-color: #4E4E76;
    transition: all 0.2s;
}



/* ハンバーガーメニューのための設定　ここから */
#global__nav {
    position: fixed;
    right: -320px; /* 右から出てくる */
    top: 0;
    z-index: 200;
    width: 300px; /* スマホに収まるサイズ */
    height: 100vh;
    padding-top: 60px;
    background-color: #fff;
}
.global__list {
    display: block;
    justify-content: center;
    margin: 0 auto;
    color: #fff;
    font-weight: bold;
}
.global__item {
    text-align: center;
    padding: 0 14px;
}
.global__item a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #4646c1;
    color: #191970;
    text-decoration: none;
}
.global__item a:hover {
    background-color: #4E4E76;
    color: #fff;
    transition: all 0.2s;
}
.global__hamburger {
    position: absolute;
    right: 15px;
    bottom: 3px;
    width: 40px; /* クリックしやすい幅 */
    height: 40px; /* クリックしやすい高さ */
    cursor: pointer;
    z-index: 300;
}
.hamburger_border {
    position: absolute;
    left: 11px;
    width: 23px;
    height: 2px;
    background-color: #fff;
    transition: all .6s;
}
.hamburger_border_top {
    top: 12px;
}
.hamburger_border_center {
    top: 20px;
}
.hamburger_border_bottom {
    top: 28px;
}
.global__hamburger-back {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
}
/* 表示された時用のCSS */
.global__hamburger--open #global__nav {
    right: 0;
    transition: all .6s;
}
.global__hamburger--open .global__hamburger {
    position: fixed;
    top: 8px;
}
.global__hamburger--open .global__hamburger-back {
    opacity: .8;
    visibility: visible;
    transition: all .6s;
}
.global__hamburger--open .hamburger_border_top {
    transform: rotate(45deg);
    top: 20px;
    background-color:#333;
}
.global__hamburger--open .hamburger_border_center {
    width: 0;
    left: 50%;
    background-color:#333;
}
.global__hamburger--open .hamburger_border_bottom {
    transform: rotate(-45deg);
    top: 20px;
    background-color:#333;
}
/* ハンバーガーメニューのための設定　ここまで */



/* トップの動画再生設定 ここから */
.video{
    display: flex;
    align-items: center;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}
.video video{
    width: 100%;
    height: 100%;
}
.video__text{
    position: absolute;
    padding: 100px;
    color: #fff;
    text-align: center;
}
/* トップの動画再生設定 ここまで */
/* 各下層頁のトップ画像設定　ここから */
.basic__page-ttl{
    padding: 120px 0 110px;
    text-shadow: 0 0 8px #09223091;
    color: #fff;
    font-size: 37px;
    font-weight: bold;
    letter-spacing: 0.3em;
    text-align: center;
}
.basic__page{
    position: relative;
}
.basic__page img{
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    vertical-align:top;
}
.basic__page div{
    margin-bottom: 50px;
    background-color: #F9E790;
}
.basic__page h2{
    padding: 5px 20px;
    color: #191970;
    font-size: 18px;
    font-weight: bold;
}

/* 各下層頁のトップ画像設定　ここまで */

/* アンカーリンクでページ内リンクを設定　ここから */
.page-link{
    padding-top: 100px;
    margin-top: -100px;
}
#storage-work{
    padding-top: 0;
    margin-top: 0;
}
/* アンカーリンクでページ内リンクを設定　ここまで */

.basic__page-bottom{
    margin: 0 auto;
}
.basic__page-bottom__inner{
    width: 1150px;
    margin: 0 auto;
}
.basic__page-bottom__item{
    width: 43%;
    margin: 0 40px;
}
.basic__page-bottom-ttl{
    padding: 0;
    font-size: 17px;
}
.basic__page-bottom-ttl--english{
    font-size: 55px;
}
.basic__page-bottom__item-btn{
    display: block;
    position: relative;
    width: 100%;
    margin: 40px 0 20px;
    padding: 23px;
    border: 2px solid #ff6b3e;
    border-radius: 5px;
    background-color: #fff;
    color: #ff6b3e;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    transition: all .5s;
}
.basic__page-bottom__item-btn:hover{
    border: 2px solid #ff6b3e;
    background-color: #ff6b3e;
    color: #fff;
}
.basic__page-bottom__item-btn::before { /* くの字の表示設定 */
    content: "";
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 2px;
    right: 20px;
    width: 9px;    /* くの字を山なりに見た時、左側の長さ */
    height: 9px;   /* くの字を山なりに見た時、右側の長さ */
    border-top: 2px solid #ff6b3e;     /* くの字を山なりに見た時、左側の太さと色 */
    border-right: 2px solid #ff6b3e;   /* くの字を山なりに見た時、右側の太さと色 */
    transform: rotate(45deg);    /* くの字の向き */
}
.basic__page-bottom__link{
    width: 200px;
    margin: 20px auto 0;
    background-color: #ff6b3e;
    color: #fff;
    text-align: center;
}
.basic__page-bottom__link a{
    display: inline-block;
    width: 100%;
    padding: 15px 0;
}
.news__page-bottom__item{
    width: 45%;
    margin: 0 2% 30px;
}
.contact__page-bottom__item{
    width: 45%;
    margin: 0 2% 30px;
    background-color:#f2f2f2;
}
.contact__btn{
	position: fixed;
	right: 0;
	bottom: 10px;
}
.contact__btn--pc{
    display: block;
    width: 80px;
}
.contact__btn--pc img{
    width: 100%;
}
.contact__btn--sp{
    display: none;
}
#footer {
    background: #fff;
}
.footer__wrap{
    width: 1700px;
    margin: 0 auto;
    color: #333;
    font-size: 16px;
    line-height: 1.7em;
}
.footer__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 30px 0;
    border-bottom: 1px solid #777;
}
.footer__inner-item {
    display: block;
    width: calc(100% / 4);
}
#footer__nav a {
    display: block;
}
.footer__item-ttl {
    display: block;
    margin: 30px 0 6px;
    color: #191970;
    font-weight: bold;
}
.footer__item-ttl:first-child {
    margin-top: 0;
}
.footer__item-ttl + .footer__item-ttl {
    margin-top: 10px;
}
.footer__list {
    display: block;
    font-size: 15px;
}
.footer__item {
    display: block;
}
.footer__item a::before {
    color: #191970;
    content: "- ";
}
.footer__item:first-child {
    margin-top: 0;
}
.footer__item .footer__list {
    margin: 0 0 0 2em;
}
.footer__company {
    width: 1700px;
    margin: 0 auto;
    text-align: center;
}
.footer__logo {
    width: 350px;
    margin-top: 10px;
}
.footer__address{
    width: 100%;
    text-align: left;
}
.footer__address__list{
    margin-top: 50px;
}
.footer__address__item{
    width:calc(100% / 3 - 20px);
    margin: 0 10px 30px;
}
.footer__address__item-ttl{
    margin-bottom: 5px;
    padding: 7px;
    background-color: #f2f2f2;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.05em;
    text-align: center;
}
.footer__address__item-txt{
    font-size: 15px;
    line-height: 1.8em;
}
.footer__address__item-map{
    width: 100%;
    height: 300px;
    border: 0;
    margin-top: 10px;
}
.footer__copyright{
    padding: 2px 0 0;
    background: #0c0c37;
    color: #fff;
    font-size: 10px;
    text-align: center;
}

.footer__sns{
    width:400px;
    margin: 0 auto;
}
.footer__sns-banner{
	display: flex;
	flex-wrap:wrap;
    justify-content: center;
}
.footer__sns-banner li {
	width: calc(100%/3);/*←画像を横に4つ並べる場合*/
	padding:0 30px 20px;/*←画像の左右に5pxの余白を入れる場合*/
	box-sizing:border-box;
}
.footer__sns-banner li img {
	width:100%;
	height: auto; /*画像の縦横比を維持 */
}

.business-top-txt__list{
    padding-top: 20px;
    margin: 20px 30px 0;
    background-color:#f2f2f2;
}
.business-top-txt__item--left,
.business-top-txt__item--right{
    width: 45%;
    margin: 0 20px 20px;
}
.business-top-txt__item-txt::before{
    content: '◎';
}
.business-top__list{
    padding-top: 20px;
    margin-top: 50px;
}
.business-top__item{
    width: 45%;
    margin: 0 2% 30px;
    background-color:#f2f2f2;
}
.business-top__item-ttl{
    margin: 10px 20px 0;
    color:#191970;
    font-size: 22px;
    font-weight: bold;
}
.business-top__item-txt{
    margin: 2px 20px 0;
}
.business-top__item-img{
    width: 100%;
}

.sdgs-top--item {
    text-align: center;
}
.sdgs-top--itemimg {
    width: 90%;
    margin-top: 20px;
}

/* ==============新着情報関係の設定　ここから */
/* トップページ新着情報情報の設定　ここから */
.news-top__list{
    width: 100%;
    padding: 20px 10px;
    border-bottom: 1px solid #ddd;
}
.news-top__list:hover{
    background-color: #fff;
}
.news-top__date{
    display: block;
    padding: 0;
    color: #ff6b3e;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0.02em;
}
.news-top__ttl{
    display: block;
    padding-left: 0;
    font-size: 18px;
}
/* トップページ新着情報情報の設定　ここまで */

/* 新着情報一覧の設定 ここから */
.news__list{
    border-bottom: 1px solid #b1b1b1;
    letter-spacing: .05em;
    text-align: left;
}
.news__list:first-child{
    border-top: 1px solid #b1b1b1;
}
.news__list a{
    display: inline-block;
    width: 100%;
    padding: 30px 10px;
}
.news__list a:hover{
    background-color: #f2f2f2;
}
.news__date{
    display: inline-block;
    padding: 6px 6px 3px;
    border: 2px solid;
    background-color: #fff;
    color: #ff6b3e;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.02em;
}
.news__ttl{
    display: inline-block;
    padding-left:20px;
    font-size: 18px;
}
/* Pager style（外部化可） */
.news__pager{
    clear:both;
    padding:50px;
    text-align:center;
}
/*ページャーボタン*/
.news__pager a{
    margin:0 1px;
    padding: 3px 7px 2px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
}
/*現在のページのボタン*/
.news__pager a.current{
    margin:0 1px;
    padding: 3px 15px 2px;
    color: #ff6b3e;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
}
.news__pager a:hover{
    color: #ff6b3e;
}
.overPagerPattern{
    padding:0 2px ;	
}
/* 新着情報一覧の設定 ここまで */

/* 新着情報記事の設定　ここから */
.news-detail {
    padding: 30px;
}
.news-detail__date{
    margin-left: 4px;
    color: #ff6b3e;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.9em;
}
.news-detail__ttl{
    padding-bottom: 10px;
    border-bottom: 1px solid #b1b1b1;
    color: #595959;
    font-size: 25px;
    font-weight: bold;
}
.news-detail__txt__wrap{
    margin-top: 50px;
}
.news-detail__txt,
.news-detail__img{
    margin:50px 0;
    line-height: 2em;
    font-size: 18px;
}
.news-detail__img img{
    width:100%;
    height:auto;
}
.news-detail__link{
    width: 200px;
    margin: 0 auto;
    background-color: #ff6b3e;
    color: #fff;
    text-align: center;
}
.news-detail__link a{
    display: inline-block;
    width: 100%;
    padding: 15px 0;
}
/* .backORcloseBtn{
    text-align:center;
    line-height:100%;
    margin-top:15px;
}
.backORcloseBtn a{
    display:inline-block;
    padding:4px 15px;
    border:1px solid #aaa;
    color:#999;
    border-radius:6px;
    text-decoration:none;
    font-size:12px;
} */
/* 新着情報記事の設定　ここまで */
/* ==============新着情報関係の設定　ここまで */

.recruit-top__content-back--shadow{
    position: relative;
    margin: -80px 0 0;
}
.recruit-top__img--top{
    position: relative;
    width: 100vw;
    margin: 0 calc(50% - 50vw); /* 幅からはみ出して横幅いっぱいにする */
    padding: 15% 0;
    background: url(../images/recruit__page-top.jpg) no-repeat center / cover;
    background-size: cover;
}
.recruit-top__img--top::before { /* カラーフィルター */
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #191970;
    opacity: .4;
    content: "";
}
.recruit-top__list{
    margin-top: 30px;
}
.recruit-top__item{
    width: 45%;
    margin: 0 2% 30px;
}
.recruit-top__item-txt{
    margin: 10px 0 0;
    line-height: 1.8em;
}
.recruit-top__item-img{
    width: 100%;
    max-height: 350px;
    object-fit: cover;
}
#message{
    text-align: center;
}
.message__list{
    padding-top: 20px;
    margin-top: 50px;
}
.message__item--txt{
    width: 56%;
    margin: 0 2% 30px;
}
.message__item--img{
    width: 33%;
    margin: 0 2% 30px;
}
.message__item--img img{
    width: 100%;
}
.message-txt {
    margin: 0;
    line-height: 2.2em;
}
.message-name{
    width: 300px;
    margin: 0 0 10px auto;
}
.overview__table{
    width: 100%;
    margin: 80px auto;
}
.overview__list__col{
    border-bottom: 1px solid #ddd;
}
.overview__list__col:first-child{
    border-top: 1px solid #ddd;
}
.overview__list__item-ttl{
    width: 200px;
    background-color: #f2f2f2;
    font-weight: bold;
    text-align: center;
}
.overview__list__item{
    padding: 12px;
    vertical-align: middle;
}
.overview__list__item span a {
    position: relative;
    bottom: 2px;
    margin-left: 1em;
    padding: .3em .6em .1em;
    border-radius: 2px;
    background-color: #ff6b3e;
    color: #fff;
    font-size: .8em;
}
.vehicle__list{
    padding-top: 20px;
    margin-top: 50px;
}
.vehicle__item{
    width: 45%;
    margin: 0 2% 60px;
}
.vehicle__item-ttl{
    margin: 15px 25px 0;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
}
/* サムネイルクリックでメイン画像が切り替わる設定　ここから */
.vehicle__item-img{
    font-size: 0;
}
.vehicle__item-img img{
    width: 100%;
}
.vehicle__item-img--detail{
    font-size: 0;
}
.vehicle__item-img--detail ul li{
    display:inline-block;
    width:calc((100% / 4) - .6px);
    cursor:pointer;
}
/* サムネイルクリックでメイン画像が切り替わる設定　ここまで */
.owned-vehicle__wrap{
    margin-top: 50px;
}
.owned-vehicle__table{
    width: 100%;
}
.owned-vehicle__list__col{
    border-top: 1px solid #ddd;
}
.owned-vehicle__list__col:last-child{
    border-bottom: 1px solid #ddd;
}
.owned-vehicle__list__col__tag{
    background-color:#f2f2f2;
    font-weight: bold;
}
.owned-vehicle__list__item-ttl{
    border-right: 1px solid #fff;
    background-color:#333;
    color: #fff;
    font-weight: bold;
}
.owned-vehicle__list__item{
    padding: 12px;
}
.owned-vehicle__list__item-capacity{
    text-align: center;
}
.owned-vehicle__list__item-number{
    text-align: center;
}
.system__wrap{
    margin-top: 50px;
}
.system__table{
    width: 100%;
}
.system__list__col:first-child{
    border-top: 1px solid #ddd;
}
.system__list__col{
    border-bottom: 1px solid #ddd;
}
.system__list__item-ttl{
    width: 100px;
    background-color: #f2f2f2;
    font-weight: bold;
    text-align: center;
}
.system__list__item{
    padding: 12px;
    vertical-align: middle;
}
.system__img{
    width: 100%;
    margin-top: 50px;
}
.system__img img{
    width: 100%;
}
.storage-ttl {
    letter-spacing: 0.1em;
}
.storage-message-name{
    width: 300px;
    margin: 10px 0 0 auto;
}
.storage-message-name img{
    width: 100%;
}
.storage__wrap{
    margin-top: 20px;
}
.storage__img{
    font-size: 0;
}
.storage__img img{
    width: 100%;
}
.storage__img--second {
    display: inline-flex;
    justify-content: space-between;
    margin: 2% 0;
}
.storage__img--second img {
    width: 49%;
}
.storage__table{
    width: 100%;
}
.storage__list__col{
    border-bottom: 1px solid #ddd;
}
.storage__list__item-ttl{
    background-color: #f2f2f2;
    font-weight: bold;
    text-align: center;
}
.storage__list__item{
    padding: 12px;
    vertical-align: middle;
}
.storage-video__content-back{
    width: 1700px;
    margin: 100px auto 30px;
}
.storage-video__content-back--shadow{
    position: relative;
    margin: -80px 0 0;
}
.storage-video__list{
    padding-top: 40px;
    margin-top: 50px;
}
.storage-video__item--time{
    width: 33%;
    margin: 0 2% 30px;
}
.storage-video__item--video{
    width: 56%;
    margin: 0 2% 30px;
}
.storage-video__item--time li{
    position: relative;
}
.storage-video__item--time li::before {
    content: '';
    position: absolute;
    top: 28px;
    right: 30px;
    width: 10px;
    height: 10px;
    border-top: 1px solid #ff6b3e;
    border-right: 1px solid #ff6b3e;
    transform: rotate(45deg);
}
.storage-video__item--time li a{
    display: block;
    padding: 20px;
    margin-bottom: 10px;
    border: 1px solid #ff6b3e;
    color: #ff6b3e;
    transition: all 0.2s;
}
.storage-video__item--time li a:hover{
    background-color: #ff6b3e;
    color: #fff;
}
.storage-video__item--time p{
    margin: 2px 20px 0;
    line-height: 1.8em;
}
.storage-video__inner{
    display: flex;
    align-items: center;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}
.storage-video__inner video{
    width: 100%;
    height: 100%;
}
.video__text{
    position: absolute;
    padding: 100px;
    color: #fff;
    text-align: center;
}
.storage-work__content-back--shadow{
    position: relative;
    margin: -80px 0 0;
}
.storage-work__flow {
    width: 1000px;
    display: flex;
    justify-content: space-between;
    margin: 70px auto 150px;
}
.storage-work__flow-item{
    position: relative;
    width: 80px;
    height: 200px;
    border-radius: 10px;
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    letter-spacing: .08em;
    line-height: 80px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    background: linear-gradient(#191970 70%, #ff6b3e);
}
.storage-work__flow-item:last-child::after{
    border-style: none;
}
.storage-work__flow-item::after { /* 三角矢印の設定 */
    position: absolute;
    top: 0;
    bottom: 0;
    right: -45px;
    width: 0;
    height: 0;
    margin:  auto;
    border-style: solid;
    border-width: 12px 0 12px 17px;
    border-color: transparent transparent transparent #777;
    display:  inline-block;
    vertical-align:  middle;
    content:  '';
}
.storage-work__list{
    padding-top: 44px;
    margin-top: 50px;
}
.storage-work__item{
    width: 45%;
    margin: 0 1% 30px;
}
.storage-work__item-img{
    width: 100%;
}
.safe__list,
.eco__list{
    margin-top: 50px;
}
.safe__item,
.eco__item{
    width:calc(100% / 2 - 20px);
    padding: 25px;
    margin: 0 10px 30px;
    border: solid 1px #ededed;
    border-radius: 10px;
    background-color: #f2f2f2;
}
.safe-ttl__lead{
    margin: 30px;
    color: #777;
    font-size: 28px;
    font-weight: bold;
}
.safe__item-ttl,
.eco__item-ttl{
    margin-bottom: 5px;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.05em;
}
.safe__item-img,
.eco__item-img{
    width: 100%;
    margin-bottom: 10px;
}
.safe__item-txt,
.eco__item-txt{
    line-height: 1.8em;
}
.recruit-message-txt {
    margin-top: 50px;
    line-height: 2.2em;
}
.recruit-message-name{
    width: 300px;
    margin: 50px auto 0;
}
.requirements-ttl{
    line-height: 1.4em;
}
.requirements-ttl--work{
    color: #777;
    font-size: 28px;
    letter-spacing: 0.05em;
}
.requirements__table{
    width: 100%;
    margin: 80px auto 40px;
}
.requirements-img__list{
    padding-top: 20px;
    margin-top: 50px;
}
.requirements-img__item{
    width: 45%;
    margin: 0 2% 30px;
}
.requirements__list__col{
    border-bottom: 1px solid #ddd;
}
.requirements__list__col:first-child{
    border-top: 1px solid #ddd;
}
.requirements__list__item-ttl{
    width: 200px;
    background-color: #f2f2f2;
    font-weight: bold;
    text-align: center;
}
.requirements__list__item{
    padding: 12px;
    vertical-align: middle;
}
.ideal-txt {
    margin-top: 50px;
    line-height: 2.2em;
}
.recruit-flow__list__wrap{
    margin: 50px 20px;
    border: 7px solid #ddd;
    /* 背景格子設定用　下3行 */
    background-size: 12px 12px;
    background-position: 50% 50%;
    background-image:repeating-linear-gradient( 90deg, #f2f2f2 , #f2f2f2 1px, transparent 1px, transparent 16px),repeating-linear-gradient( 0deg, #f2f2f2 , #f2f2f2 1px, #fff 1px, #fff 16px);
}
.recruit-flow__list{
    padding: 40px 0;
}
.recruit-flow__item{
    width: 45%;
    margin: 0 2%;
}
.recruit-flow__item-ttl{
    margin: 0 20px 20px;
    border-bottom: 1px solid #333;
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    line-height: 2.1em;
    letter-spacing: 0.1em;
}
.recruit-flow__item-txt{
    margin: 2px 20px 0;
    line-height: 1.8em;
}
.recruit-flow--arrow{/* 採用の流れの矢印設定 */
    width: 0;
    height: 0;
    margin: 0 auto;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 30px solid #191970;
}
/* ============== お問い合わせの設定 START
======= */
.contact-list__wrap{
    width: 1000px;
    margin: auto;
}
.contact-form-btn{
    margin-top: 50px;
    text-align: center;
}
.contact-form-btn input{
    width: 200px;
    position: relative;
    padding: 10px 20px;
    border: 2px solid #ff6b3e;
    border-radius: 6px;
    background: transparent;
    color: #ff6b3e;
    font-size: 16px;
    font-weight: bold;
    z-index: 1;
    transition: .3s;
    cursor: pointer;
}
.contact-form-btn input:hover {
    background: #ff6b3e;
    color: #fff;
}
#contact-form__wrap {
    margin-top: 60px;
    text-align: left;
}
.contact-form__list__item-ttl {
    display: block;
    padding: 30px 0 0;
}
.contact-form__list__item-ttl span:not(.style-none) {
    position: relative;
    bottom: 2px;
    margin-left: 1em;
    padding: .1em .6em;
    border: 1px solid #ff6666;
    border-radius: 2px;
    color: #ff6666;
    font-size: .8em;
}
.contact-form__list__item-ttl span.style-none{
    font-size: 13px;
    padding-left: 10px;
}
.contact-form__list__item {
    display: block;
    padding: 0 0 .5em;
}
.contact-form__list__item input,
.contact-form__list__item textarea {
    width: 100% !important;
    padding: 1em;
    border: 1px solid #ddd;
    background: #f2f2f2;
}
.radio-form__list__item{
    padding-top: 10px;
}
label {
    display: inline-block;
}
input[type="radio"] {
    appearance: none;
    display: none;
    opacity: 0;
    width: 1px;
    position: absolute;
    height: 1px;
}
input[type="radio"] + span {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    padding: 15px 15px 12px 36px;
    margin: 5px 7px 5px 0;
    border-radius: 4px;
    background: #f2f2f2;
    font-weight: 500;
    font-size: 14px;
}
input[type="radio"] + span::before,
input[type="radio"] + span::after {
    position: absolute;
    content: "";
    display: block;
    border-radius: 50%;
    top: 0;
    bottom: 0;
    margin: auto 10px auto 0;
    box-sizing: border-box;
}
input[type="radio"] + span::before {
    width: 20px;
    height: 20px;
    background: #fff;
    border: 2px solid #999999;
    left: 9px;
}
input[type="radio"] + span::after {
    width: 8px;
    height: 8px;
    background: #999999;
    left: 15px;
    opacity: 0;
}
input[type="radio"]:checked + span::before {
    background-color: #ff6b3e;
    border-color: #ff6b3e;
}
input[type="radio"]:checked + span::after {
    opacity: 1;
    background: #fff;
}
/* =======
お問い合わせの設定 END ============== */
.thanks-list-ttl {
    letter-spacing: 0.1em;
}
.thanks-txt {
    margin-top: 50px;
    line-height: 2.2em;
}
.thanks__contact{
    margin-top: 30px;
    padding: 25px 30px;
    background: #f2f2f2;
}
.thanks__contact-ttl{
    margin-bottom: 3px;
    font-size: 20px;
}
.thanks__contact-tel{
    font-size: 20px;
    font-weight: bold;
}
.certificates-ttl {
    color: #555;
    font-size: 28px;
    font-weight: bold;
    line-height: 1.5em;
    letter-spacing: 0.02em;
}
.certificates-ttl__br--show{
    display: none;
}
.certificates-ttl--small{
    font-size: 24px;
}
.certificates-ttl--sub{
    color: #777;
    font-size: 25px;
    font-weight: bold;
    letter-spacing: 0.07em;
    line-height: 2.7em;
}
.certificates-txt {
    margin-top: 50px;
    line-height: 2.2em;
}
.certificates__list{
    padding-top: 24px;
    margin-top: 50px;
}
.certificates__item{
    width: 45%;
    margin: 0 2% 30px;
}
.certificates__item-img{
    width: 100%;
    border: 1px solid #595959;
}
.certificates__item h3{
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.05em;
    text-align: center;
}
.certificates__table{
    width: 100%;
}
.certificates__list__col{
    border-bottom: 1px solid #ddd;
}
.certificates__list__col:first-child{
    border-top: 1px solid #ddd;
}
.certificates__list__item-ttl{
    background-color: #f2f2f2;
    font-weight: bold;
}
.certificates__list__item{
    padding: 12px;
    text-align: center;
    vertical-align: middle;
}
/* ============== 関連会社ページの設定 START
======= */
.affiliates-ttl{
    border-image: linear-gradient(to right,#44a00d 0%,#ff6b3e 50%,#44a00d 100%) 1;
}
.affiliates__box{
    width: 100%;
    text-align: center;
    font-weight: bold;
}
.affiliates__wrap{
    margin: 40px 20px 0;
}
.affiliates__ttl--sub{
    color: #44a00d;
    font-size: 26px;
}
.affiliates__txt{
    margin-top: 10px;
    font-size: 19px;
}
.affiliates__btn{
    display: inline-block;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}
.affiliates__btn a{
    display: block;
    margin-top: 20px;
    padding: 15px 50px;
    border: 3px solid #44a00d;
    border-radius: 6px;
    background-color: #44a00d;
    transition: all .2s;
}
.affiliates__btn a:hover{
    background-color: #fff;
    color: #44a00d;
}
.affiliates__img{
    display: block;
    width: 470px;
    margin: 40px auto 0;
}
.affiliates__table{
    width: 100%;
    margin: 70px auto 0;
}
.affiliates__list__col{
    border-bottom: 1px solid #ddd;
}
.affiliates__list__col:first-child{
    border-top: 1px solid #ddd;
}
.affiliates__list__item-ttl{
    width: 200px;
    background-color: #f2f2f2;
    font-weight: bold;
    text-align: center;
}
.affiliates__list__item{
    padding: 12px;
    vertical-align: middle;
}
.affiliates-ttl2 {
    border-image: linear-gradient(to right,#44a00d 0%,#ff6b3e 50%,#44a00d 100%) 1;
    color: #555;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.5em;
    letter-spacing: 0.02em;
}
.affiliates-txt {
    margin-top: 50px;
    font-size: 17px;
    line-height: 1.7em;
    text-align: right;
}
.affiliates-txt__list {
    margin: 50px 40px;
    line-height: 2.2em;
    list-style-type: decimal;
}

.affiliates-txt__list2 {
    padding: 0;
    margin: 0;
    list-style: none;
    counter-reset: list-counter; /*list-counterの値が0にリセットされる*/
}
.affiliates-txt__list2 li {
    position: relative;
    margin: 20px 0;
    padding-left: 30px;
    line-height: 1.3em;
}
.affiliates-txt__list2 li:before {
    display: flex;/*円と文字が中央になるよう調整*/
    justify-content: center;
    align-items: center;
    position: absolute;/*左端に配置*/
    top: 0;
    left: 0;
    height: 22px;/*円の高さを指定*/
    width: 22px;/*円の幅を指定*/
    border-radius: 50%;/*円を作る*/
    box-sizing: border-box;
    background-color: #44a00d;
    color: #fff;
    font-size: 85%;/*文字サイズ小さめに調整*/
    content: counter(list-counter);/*list-counterの値を挿入*/
    counter-increment: list-counter;/*連番の値が挿入される*/  
}

/* =======
============== 関連会社ページの設定 END */


@media only screen and (max-width: 1750px) {
    .basic__content__inner,
    .basic__content-back,
    .basic__content-back-img,
    .basic__content-back-img--shadow{
        width: 100%;
    }
    .basic__content-back__inner{
        margin: 0;
    }
    .basic__page-bottom__inner{
        width: 100%;
    }
    .business-top-txt__item--left{
        width: 100%;
        margin: 0 30px 0;
    }
    .business-top-txt__item--right{
        width: 100%;
        margin: 0 30px 20px;
    }
    .business-top-txt__item-txt{
        font-size: 15px;
    }
    .footer__wrap{
        width: 100%;
        margin: 0 auto;
    }
    .footer__inner {
        padding: 30px;
    }
    .footer__company {
        width: 100%;
    }
    .footer__address__item{
        width: 100%;
        margin: 0 30px 40px;
        text-align: center;
    }
    .footer__address__item-map{
        height: 400px;
    }
}/* sp */


@media only screen and (max-width: 1200px) {
    .header__contact{
        display: none;
    }
    .header__logo{
        width: 200px;
    }

    #global-pc__nav{
        display: none;
    }

    .global__hamburger {
        position: absolute;
        right: 15px;
        top: 8px;
        width: 40px; /* クリックしやすい幅 */
        height: 40px; /* クリックしやすい高さ */
        cursor: pointer;
        z-index: 300;
    }
    .hamburger_border {
        background-color: #333;
    }
    .basic-ttl{
        padding: 0;
        border-bottom: 6px solid;
        font-size: 18px;
        letter-spacing: 0.1em;
    }
    .basic-ttl--english{
        font-size: 50px;
        letter-spacing: .02em;
    }
    .basic-ttl--small{
        margin-bottom: -20px;
        font-size: 25px;
    }
    .basic__page-bottom__item-btn{
        margin: 10px 0;
    }

    .contact__page-bottom__list{
        padding: 30px 0;
    }
    .contact__page-bottom__item{
        width: 100%;
        margin: 0 20px;
    }
    .news__page-bottom__item{
        width: 100%;
        margin: 0 20px 50px;
    }
    .recruit-top__img--top{
        display: none;
    }
    .recruit-top__content-back--shadow{
        position: static;
        margin: 0;
    }
    .recruit-top__list{
        padding-top: 0;
    }
    .recruit-top__item{
        width: 100%;
        margin: 0 20px 50px;
    }
    .recruit-top__item-txt{
        margin: 2px 0 0;
        font-size: 15px;
        line-height: 2em;
    }
    .recruit-top__item-img{
        max-height: 250px;
        object-fit: cover;
    }
    .storage-work__flow {
        display: inline-block;
        justify-content: start;
        width: 100%;
        margin: 0 auto;
    }
    .storage-work__flow-item{
        width: 650px;
        height: 60px;
        margin: 40px auto;
        font-size: 20px;
        line-height: 60px;
        writing-mode: horizontal-tb;
        box-shadow: 0px 2px 4px 1px rgba(0,0,0,0.07);
        background: linear-gradient(135deg, #191970 70%, #ff6b3e);
    }
    .storage-work__flow-item::after { /* 三角矢印の設定 */
        position: absolute;
        top: 100%;
        bottom: -45px;
        right: 48%;
        margin:  auto;
        border-width: 17px 12px 0 12px;
        border-color:#777 transparent transparent transparent;
        display:  inline-block;
        vertical-align:  middle;
    }
    .contact-list__wrap{
        width: 100%;
         padding: 30px;
    }
}/* sp */
@media screen and (max-width: 640px) {
    .basic__page-ttl{
        padding: 112px 0 50px;
        font-size: 33px;
        letter-spacing: 0.15em;
    }
    .basic__content{
        padding: 0;
    }
    .basic__content-border{
        padding: 30px 0;
    }
    .basic__content-back {
        margin: 0 auto;
    }
    .basic__content-back--shadow {
        border: none;
        box-shadow: none;
    }
    .basic-ttl--english,
    .basic__page-bottom-ttl--english {
        font-size: 38px;
        line-height: 0;
    }
    .basic-txt{
        margin: 20px 20px 0;
        font-size: 15px;
        text-align: left;
        line-height: 2em;
    }
    .header--top{
        padding: 14px 15px 7px;
    }
    .header__logo{
        display: block;
        width: 100%;
        margin-top: 50px;
    }
    .header__contact--sp {
        width: 100%;
        display: block;
        text-align: center;
    }
    .header__contact--sp--address {
        background-color: #F9E790;
        font-size: 14px;
    }
    .header__contact--sp--tel {
        color: #ff6b3e;
        font-size: 25px;
        font-weight: bold;
    }
    .header__contact--sp--tel span {
        font-size: 20px;
    }
    .contact__btn{
        width: 100%;
    }
    .contact__btn--pc{
        display: none;
    }
    .contact__btn--sp{
        display: block;
        margin: 0 20px;
    }
    .contact__btn--sp img{
        width: 100%;
    }

    .footer__inner {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        width: 100%;
        justify-content: space-between;
    }
    .footer__inner-item {
        display: block;
        width: 48%;
    }
    .footer__inner-item:nth-child(n+3) {
        margin-top: 30px;
    }
    #footer__nav {
        margin: 0;
        font-size: 14px;
    }
    #footer__nav + .footer__item-ttl {
        margin-top: 10px;
    }
    .footer__item,
    .footer__item02 {
        font-size: 14px;
    }
    .business-top-txt__list{
        margin-top: 20px;
    }
    .business-top__list{
        margin-top: 20px;
    }
    .business-top__item{
        width: 100%;
        margin: 0 20px 30px;
    }
    .business-top__item-ttl {
        font-size: 20px;
    }
    .business-top__item-txt{
        font-size: 15px;
    }
    .business-top__item-img{
        max-height: 300px;
        object-fit: cover;
    }
    .news__list a{
        padding: 20px 30px;
    }
    .news__date{
        display: block;
        padding: 0;
        border: none;
        background-color: transparent;
    }
    .news__ttl{
        display: block;
        padding-left: 0;
        font-size: 15px;
    }
    .basic__page-bottom__list {
        padding: 30px 0 70px;
    }
    .basic__page-bottom__item {
        width: 100%;
    }
    .basic__page-bottom-ttl{
        padding: 50px 0 0;
        border-bottom: 6px solid;
        font-size: 18px;
        letter-spacing: 0.1em;
    }
    .message__list{
        margin: 20px;
        padding-top: 0;
    }
    .message__item--txt,
    .message__item--img{
        width: 100%;
        margin: 0 0 10px;
    }
    .message-txt {
        line-height: 2em;
    }
    .message-name{
        width: 230px;
        margin: 10px auto 10px;
    }
    .requirements-img__item {
        width: 50%;
        margin: 0 0 30px;
    }
    .requirements-img__item-img img{
        width: 100%;
        height: 230px;
        object-fit: cover;
    }
    .overview__table{
        margin: 30px auto;
    }
    .overview__list__col{
        font-size: 14px;
    }
    .overview__list__item-ttl {
        width: 150px;
    }
    .vehicle__list {
        margin-top: 0;
    }
    .vehicle__item {
        width: 100%;
        margin: 0 2% 30px;
    }
    .vehicle__item-img img{
        max-height: 250px;
        object-fit: cover;
    }
    .owned-vehicle__wrap {
        margin-top: 30px;
    }
    .owned-vehicle__list__col{
        font-size: 14px;
    }
    .owned-vehicle__list__item {
        padding: 10px;
    }
    .system__wrap {
        margin-top: 30px;
    }
    .system__list__col{
        font-size: 14px;
    }
    .system__img {
        margin-top: 20px;
    }
    .storage-message-name{
        margin: 10px auto 0;
        width: 230px;
    }
    .storage__wrap {
        margin-top: 20px;
    }
    .storage__list__col{
        font-size: 14px;
    }
    .storage__list__item-ttl {
        width: 100px;
    }
    .storage__list__col{
        font-size: 14px;
    }
    .storage__list__item-ttl {
        width: 100px;
    }
    .storage-video__content-back--shadow{
        position: static;
        margin: 0;
    }
    .storage-video__list{
        margin: 20px;
        padding-top: 0;
    }
    .storage-video__item--time,
    .storage-video__item--video{
        width: 100%;
        margin: 0 0 10px;
    }
    .storage-video__item--time p{
        margin: 2px 0 0;
        font-size: 15px;
        line-height: 2em;
    }
    .storage-work__content-back--shadow{
        position: static;
        margin: 0;
    }
    .storage-work__list{
        margin-top: 0;
        padding-top: 35px;
    }
    .storage-work__flow{
        padding: 20px;
    }
    .storage-work__flow-item{
        width: 100%;
        height: 50px;
        font-size: 20px;
        line-height: 50px;
        writing-mode: horizontal-tb;
        box-shadow: 0px 2px 4px 1px rgba(0,0,0,0.07);
        background: linear-gradient(135deg, #191970 70%, #ff6b3e);
    }
    .storage-work__item{
        width: 100%;
        margin: 0 20px 20px;
    }
    .storage-work__item-img{
        max-height: 250px;
        object-fit: cover;
    }
    .requirements__list__col{
        font-size: 14px;
    }
    .requirements__list__item-ttl {
        width: 150px;
    }
    label {
        display: block;
    }
    .safe-ttl__lead{
        margin: 20px;
        font-size: 21px;
    }
    .safe__item,
    .eco__item{
        width: 100%;
    }
    .safe__item-img,
    .eco__item-img{
        height: 300px;
        object-fit: cover;
    }
    .safe__item-ttl,
    .eco__item-ttl{
        font-size: 20px;
    }
    .safe__item-txt,
    .eco__item-txt{
        font-size: 15px;
    }
    .recruit-message-name{
        width: 230px;
    }
    .requirements-ttl--work {
        font-size: 22px;
    }
    .requirements__table {
        margin: 30px auto;
    }
    .requirements-img__list {
        padding-top: 0;
        margin-top: 0;
    }
    .recruit-flow__list__wrap {
        margin: 30px 20px;
    }
    .recruit-flow__list {
        padding: 20px 0;
    }
    .recruit-flow__item{
        width: 100%;
        margin: 0 20px;
    }
    .recruit-flow__item-ttl{
        margin: 0 0 20px;
        font-size: 22px;
    }
    .recruit-flow__item-txt{
        margin: 2px 0 30px;
        font-size: 15px;
        line-height: 2em;
    }
    .recruit-flow__item-img{
        width: 100%;
        max-height: 250px;
        object-fit: cover;
    }
    .certificates-ttl{
        font-size: 28px;
    }
    .certificates-ttl__br--show{
        display: inline-block;
    }
    .certificates__item{
        width: 100%;
    }
    .certificates__item-img{
        object-fit: cover;
    }
    .certificates-ttl--sub{
        font-size: 20px;
        line-height: 1.7em;
    }
    .certificates__list{
        margin-top: 0;
    }
    .contact-form__list{
        margin: 0 20px;
    }
    .contact-form__list__item-ttl{
        padding: 20px 0 0;
    }
    /* ////////関連会社ページsp設定ここから */
    .affiliates__ttl--sub{
        font-size: 22px;
    }
    .affiliates__btn{
        width: 100%;
    }
    .affiliates__img{
        width: 90%;
    }
    .affiliates__table{
        margin: 30px auto;
    }
    .affiliates__list__col{
        font-size: 14px;
    }
    .affiliates__list__item-ttl {
        width: 150px;
    }
    .affiliates-txt__list{
        margin: 20px 20px 0 50px;
    }
    .affiliates-txt__list2{
        margin: 0;
    }
    .affiliates-ttl2{
        font-size: 20px;
    }
    /* ////////関連会社ページsp設定ここまで */

   


}/* sp */

@media screen and (max-width: 450px) {
    .storage-work__flow{
        display: block;
        width: calc(100% - 40px);
    }
    .storage-work__flow-item{
        width: 100%;
    }
}/* sp */


@media screen and (min-width: 1100px) {
    /* .video__catchcopy{
        min-width: 100%;
    }
    .video__catchcopy .video__catchcopy--large{
        font-size: 60px;
    }
    .video__catchcopy .video__catchcopy--small{
        font-size: 30px;
    } */
    /* #video__top{
        min-width: 960px;
    } */
    /* メニューのための設定　ここから */


    .global-pc__item{
        display: inline-block;
        border-left: 1px solid #fff;
        color: #fff;
    }
    .global-pc__item:last-child{
        border-right: 1px solid #fff;
    }
    .global-pc__list--sub{
        display: none;
        position: absolute;
        border: 1px solid #4E4E76;
        background-color: #fffe;
        color: #191970;
    }
    .global-pc__item:hover .global-pc__list--sub{
        display: block;
    }
    .global-pc__item--sub{
        text-align: center;
        border-bottom: 1px solid #4E4E76;
    }
    .global-pc__item--sub:last-child{
        border: none;
    }
    .global-pc__item--sub a{
        width: 230px;
        padding: 16px 0;
    }
    .global-pc__item--sub a:hover{
        color: #fff;
        transition: all 0.2s;
    }



    /* メニューのための設定　ここまで */
}/* pc */