<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* =============================================================
    common 共通
============================================*/
:root {
	--color_BLK : #280000;
	--color_YLW : #ffff64;
	--color_BLU : #19448e;
	--color_lGRY : #e2e2ed;
	--fontS : clamp(12px,2.4vw,22px);
	--fontM : clamp(14px,2.8vw,28px);
	--fontL : clamp(16px,4vw,38px);
	--gap_96px : clamp(32px, 12vw, 96px);
	--gap_80px : clamp(27px, 10vw, 80px);
	--gap_64px : clamp(21px, 8vw, 64px);
	--gap_48px : clamp(16px, 6vw, 48px);
	--gap_32px : clamp(11px, 4vw, 32px);
	--gap_24px : clamp(8px, 3vw, 24px);
	--gap_16px : clamp(5px, 2vw, 16px);
	--gap_8px : clamp(3px, 1vw, 8px);
}

body {
	width: 100%;
}
body,figure,h1,h2,h3,h4,h5,h6,li,ol,p,ul,dl,dt,dd {
	margin: 0;
	padding: 0;
}
h1,h2,h3,h4,h5,h6,p {
	font-weight: normal;
}
li,ol,ul {
	list-style-type: none;
}

#page {
	font-size: clamp(16px, 2.2vw, 20px);
	margin: 0 auto;
    max-width: 1920px;
	color: var(--color_BLK);
	font-family: "Noto Sans CJK JP", Lato, "Noto Sans JP", "游ゴシック Medium", 游ゴシック体, "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.4;
	font-feature-settings: "palt" 1;
	-webkit-text-size-adjust: 100%;
	background-color: var(--color_lGRY);
	position: relative;	/* 背景fixed　safari対応 ←　これ使う場合は必要*/
}
#page * {
	box-sizing: border-box;
}
#page img {
	width: 100%;
	border: 0;
	vertical-align: top;
}
#page a {
	transition: all 0.3s;
	text-decoration: none;
}
#page a:hover {
	opacity: 0.7;
}
#page a[tabindex*="-1"] {
	pointer-events: none;
}
#page a[tabindex*="-1"]:hover {
	opacity: 1;
}
#page em {
	font-style: normal;
	font-weight: bold;
}
@media screen and (min-width: 768px) {
	a[href*="tel:"] {
	  pointer-events: none;
	  cursor: default;
	  text-decoration: none;
	}
}
@media screen and (max-width: 767px) {
	#page {
		font-size: clamp(14px, 3.2vw, 16px);
	}	
}

.serif {
	font-family: "Shippori Mincho", serif;
	font-weight: 600;
}
.arial {
	font-family: Arial;
}
.font_yusei-magic {
	font-family: "Yusei Magic", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.dela {
    font-family: 'Dela Gothic One', cursive;
    font-weight: 100;
}
.dotgothic {
	font-family: "DotGothic16", sans-serif;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 1px;
}
.dela em,
.dotgothic em {
	font-weight: normal !important;
}

.font_awe::before,
.font_awe::after {
	font-family: "Font Awesome 6 Free","Font Awesome 6 Brands";
    font-weight: 900;
}
.red {
	color: var(--color_RED);
}
.blue {
	color: var(--color_BLU);
}
.ylw {
	color: var(--color_YLW);
}

.inner_wrap {
	padding: 0 var(--gap_48px);
	margin: 0 auto;
	max-width: 1500px;
}
.pd_tb {
	padding-top: var(--gap_80px);
	padding-bottom: var(--gap_80px);
}
.pd_t {
	padding-top: var(--gap_80px);
}
.pd_b {
	padding-bottom: var(--gap_80px);
}

.flex {
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.flex.col2 {
	column-gap: 4%;
}
.flex.col2 .flex_item {
	width: calc(96% / 2);
}
.flex.col3 {
	column-gap: 1.5%;
	justify-content: center;
}
.flex.col3 .flex_item {
	width: calc(97% / 3);
}
.flex.col4 {
	column-gap: 2%;
	justify-content: unset;
}
.flex.col4 .flex_item {
	width: calc(94% / 4);
}
.flex.col4 .flex_item:nth-child(n + 5) {
	margin-top: var(--gap_48px);
}
@media screen and (max-width:767px) {
	.flex.col2,
	.flex.col3 {
		justify-content: center;
	}
	.flex.col2 .flex_item {
		width: min(80%, 480px);
	}
	.flex.col3 .flex_item {
		width: min(90%, 480px);
	}
	.flex.col2 .flex_item:not(:first-of-type),
	.flex.col3 .flex_item:not(:first-of-type) {
		margin-top: var(--gap_48px);
	}
	.flex.col4 .flex_item {
		width: calc(96% / 3);
	}
	.flex.col4 .flex_item:nth-child(n + 4) {
        margin-top: var(--gap_48px);
    }
}
@media screen and (max-width:479px) {
	.flex.col4 .flex_item {
		width: calc(98% / 2);
	}
	.flex.col4 .flex_item:nth-child(n + 3) {
        margin-top: var(--gap_48px);
    }
}

.ib {
	font-size: inherit !important;
	display: inline-block;
}

.btn_wrap {
	text-align: center;
}
.btn {
	font-size: 1.4em;
	font-weight: bold;
	padding: 0.8em var(--gap_24px);
	margin: 0 auto;
	line-height: 1.2;
	border-radius: clamp(4px, 1vw, 10px);
	transition: all 0.3s;
	display: inline-block;
}
#btn_pagetop {
    position: fixed;
	/* bottom: 0;
	right: 0; */
	bottom: clamp(4px, 1.4vw, 10px);
	right: clamp(4px, 2.4vw, 10px);
    z-index: 500;
}
#btn_pagetop a {
	/* font-size: clamp(20px,3.8vw,38px);
	color: var(--color_YLW);
	text-align: center;
	border-radius: var(--gap_16px) 0 0 0;
	background-color: var(--color_BLU); */
	display: block;
}
/* #btn_pagetop a i {
	padding: var(--gap_16px) var(--gap_24px);
} */
#btn_pagetop a img {
  width: clamp(60px, 9vw, 100px);
}

.mob {
	display: none;
}
@media screen and (max-width: 767px) {
	.mob {
		display: inline-block;
	}
}

/* =============================================================
    ページ内　共通
============================================*/
/* .page_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.page_bg:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
	background: url(/sp/logistics_z/oa/02/images/bg.jpg) center top -100px repeat-y;
} */
#page a.textlink {
	color: inherit;
	text-decoration: underline;
}
.contents {
	position: relative;
}

.logo_link_wrap {
	position: sticky;
	top: 0;
	left: var(--gap_24px);
	width: clamp(80px,10vw,180px);
}

.inner_box {
	padding: var(--gap_64px) var(--gap_48px);
	background-color: rgb(255,255,255,0.85);
	box-shadow: 0 0 var(--gap_24px) #b9aa7e;
	border-radius: 0 var(--gap_48px) 0 var(--gap_48px);
	position: relative;
	z-index: 100;
}
.cont_wrap {
	padding-top: var(--gap_96px);
}
.cont_title_wrap {
	text-align: center;
}
.cont_title {
	font-family: 'Shippori Mincho', serif;
	font-size: clamp(18px,3.8vw,32px);
	color: var(--color_BLU);
	line-height: 1;
	margin-bottom: var(--gap_32px);
	display: inline-block;
}
.cont_title em::after {
    content: attr(data-text) "";
    font-size: 0.8em;
	line-height: 1;
	color: var(--color_RED);
	display: block;
}
.cont_read {
	text-align: left;
}
.cont_read_title {
	font-weight: bold;
	padding-bottom: var(--gap_16px);
}
.cont_read p:not(:last-child) {
	margin-bottom: var(--gap_16px);
}
.read_wrap {
	line-height: 1.5;
	padding: var(--gap_16px) 0;
}
.read_wrap p:not(:last-of-type) {
	margin-bottom: var(--gap_8px);
}

.cont_close {
    position: relative;
}
.cont_close::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: #000;
    top: 0;
    left: 0;
    opacity: 0.5;
    z-index: 999;
}


/* =============================================================
      main コンテンツ
============================================*/
.kv {
	position: relative;
}
.logo_wrap {
	font-size: 0em;
	max-width: 1920px;
	margin: 0 auto;
}
.logo {
	background: url(/sp/logistics_z/oa/02/images/kv.jpg) center center/contain no-repeat;
	padding-top: calc(1060 / 1920 * 100%);
}


.oa_date {
    font-size: clamp(16px, 5vw, 88px);
	font-weight: bold;
    line-height: 1;
	text-align: center;
	text-shadow: 0 0 0.2em #fff,0 0 0.2em #fff,0 0 0.2em #fff,0 0 0.2em #fff,0 0 0.3em #fff;
	width: 100%;
    padding-bottom: clamp(4px,1.8vw,32px);
	position: absolute;
	bottom: 0;
}
.oa_date em {
    font-size: 1.5em;
	position: relative;
	z-index: 10;
}
.net span {
	font-size: clamp(8px,2vw,28px);
	padding: clamp(2px, 0.6vw, 8px);
	border: solid 1px;
	display: inline-block;
}



/* =============================================================
      intro
============================================*/
#intro {
	text-align: center;
	padding: var(--gap_48px);
	background: url(/sp/logistics_z/oa/02/images/ov_bg.jpg) center top 10%/contain no-repeat var(--color_BLU);
}
.intro_main {
	font-size: var(--fontL);
	color: var(--color_YLW);
}
.intro_read {
	color: #fff;
	line-height: 1.8;
	padding-top: var(--gap_32px);
}
@media screen and (max-width: 479px) {
	.intro_read {
		text-align: left;
	}
	.intro_read .ib {
		display: inline;
	}
	.intro_read br {
		display: none;
	}
}

/* =============================================================
    【movie】ブロック　※Brightecoveの動画表示
============================================*/
.movie_wrap {
	width: 100%;
    max-width: 1000px;
    margin: 0 auto 0;
	padding-top: var(--gap_48px);
    /* border: var(--color_GRN) 2px solid;
    padding: var(--gap_16px); */
}
.movie_wrap * {
	text-align: left;
}
#movie {
    position: relative;
    width: 100%;
    padding-top: calc(9 / 16 * 100%);
    margin: 0 auto;
    overflow: hidden;
}
.tvo-video {
	position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
}

.tver_area {
	text-align: center;
    margin: var(--gap_64px) auto 0;
    width: min(80%, 400px);
}
/* .tver_area img {
	box-shadow: 0 0 var(--gap_16px) #8cacaf;
} */
.tver_info {
	color: var(--color_YLW);
    margin-bottom: var(--gap_8px);
}

.tver_area .tver_info_btm {
	color: #fff;
    margin: var(--gap_16px) auto 0;
    text-align: center;
    line-height: 1.2;
}

.yt_mov_wrap {
	width: 100%;
    max-width: 900px;
	margin: 0 auto;
}
.yt_mov_wrap iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    vertical-align: top;
}


/* =============================================================
      sec_area
============================================*/
#sec_area {
	position: relative;
	padding: min(8vw, 150px) 0;
	overflow: hidden;
}
#sec_area::before {
	position: absolute;
	content: "";
	border-left: 0;
	border-top: 0;
    border-bottom: solid min(8vw, 150px) transparent;
    border-right: solid min(100vw, 1920px) var(--color_BLU);
	top: 0;
}
#sec_area::after {
	position: absolute;
	content: "";
	border-left: 0;
	border-top: 0;
    border-top: solid min(8vw, 150px) transparent;
    border-left: solid min(100vw, 1920px) var(--color_BLU);
	bottom: 0;
	z-index: 0;
}

.sec_wrap {
	padding-top: clamp(20px, 11vw, 200px);
	padding-bottom: var(--gap_32px);
	position: relative;
	z-index: 100;
}
.sec_title {
	font-size: var(--fontL);
	font-weight: bold;
	text-align: center;
	color: var(--color_BLU);
	padding-bottom: var(--gap_32px);
}
.sec_title em {
	font-size: 1.5em;
}
.sec_read {
	line-height: 1.8;
}
.sec_read.pd_t {
	padding-top: var(--gap_48px);
}
.sec_photo .flex_item {
	margin-top: var(--gap_48px);
	box-shadow: 0 var(--gap_8px) var(--gap_16px) #939495;
}

#sec01 {
	background: url(/sp/logistics_z/oa/02/images/sec01_bg.jpg) center top/100% no-repeat;
}
#sec02 {
	background: url(/sp/logistics_z/oa/02/images/sec02_bg.jpg) center top/100% no-repeat;
}
#sec03 {
	background: url(/sp/logistics_z/oa/02/images/sec03_bg.jpg) center top/100% no-repeat;
}

.sec_wrap .flex.col2 {
	column-gap: 0;
    justify-content: flex-end;
	align-items: center;
}
.sec_wrap .flex.col2 .flex_item {
    width: calc(100% / 2);
	text-shadow: 0 0 0.2em #e2e2ee, 0 0 0.2em #e2e2ee, 0 0 0.2em #e2e2ee, 0 0 0.3em #e2e2ee, 0 0 0.3em #e2e2ee, 0 0 0.3em #e2e2ee, 0 0 0.3em #e2e2ee, 0 0 0.3em #e2e2ee, 0 0 0.3em #e2e2ee, 0 0 0.3em #e2e2ee, 0 0 0.3em #e2e2ee, 0 0 0.3em #e2e2ee, 0 0 0.3em #e2e2ee, 0 0 0.3em #e2e2ee;
}
.col2_inner {
	padding: 0 clamp(16px, 6vw, 48px);
    max-width: 750px;
	position: relative;
	z-index: 150;
}
.col2_inner * {
	text-align: left !important;
}
.slide_wrap {
	padding-top: var(--gap_32px);
}

@media screen and (max-width:1499px) {
	.col2_inner {
		padding-left: clamp(16px, 6vw, 48px);
	}
}
@media screen and (max-width:1299px) {
	.sec_wrap .flex.col2 {
		flex-direction: column-reverse;
	}
	.col2_inner {
		width: 100% !important;
		max-width: 100%;
	}
	.col2_inner .sec_read br {
		display: none;
	}
	.flex_item.photo_wrap {
		width: clamp(100px,60vw,540px) !important;
    	margin: 0 0 max(-3vw,-60px) auto;
	}
}
@media screen and (max-width:767px) {
	/* .sec_wrap .flex.col2 .flex_item {
		width: 100%;
	} */
}





/* =============================================================
    【swiper】ブロック ※スライド
============================================*/
.slide-paused:hover .slideshow {
	-webkit-animation-play-state: paused;
	animation-play-state: paused;
}
.swiper-wrapper {
	transition-timing-function: linear !important;
}
.swiper-wrapper li {
	list-style: none;
}
.swiper-slide {
	padding: 0 0.6%;
	margin-top: var(--gap_16px);
	margin-bottom: var(--gap_32px);
}
.swiper-slide img {
	box-shadow: 0 var(--gap_8px) var(--gap_16px) #939495;
	display: block;
}
@media screen and (max-width:767px) {
	.swiper-slide {
		padding: 0 2%;
	}
}
/* @media screen and (max-width: 479px) {
	.swiper-slide {
		padding: 0 5px;
	}
} */




.fuwafuwa {
	animation: fuwafuwa 2s infinite;
}
@keyframes fuwafuwa {
	0% {
	transform: translateY(10px);
   }
	50% {
	transform: translateY(-10px);
   }
	100% {
	transform: translateY(10px);
   }
}

.tvo-header {
	position: relative;
	z-index: 1200;
}</pre></body></html>