@charset "utf-8";
/* =============================================================
    common 共通
============================================*/
:root {
	--color_BLK : #231815;
	--color_YLW : #ffff64;
	--color_BLU : #000082;
	--color_RED : #d50000;
	--color_dGRN : #5d5c57;
	--fontS : clamp(12px,2.2vw,22px);
	--fontM : clamp(14px,2.8vw,28px);
	--fontL : clamp(16px,4vw,38px);
	--gap_160px : clamp(54px, 24vw, 160px);
	--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: 1500;
}
#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 {
	background: url(/sp/logistics_z/oa/03/images/bg_ptn.jpg) center center repeat-y;
}
.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/03/images/bg.jpg) center center/100% no-repeat;
}
@media screen and (max-width: 767px) {
	.page_bg:before {
		background-size: 150%;
	}
}

#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;
}


/* =============================================================
    kv
============================================*/
.kv {
	position: relative;
	background: url(/sp/logistics_z/oa/03/images/bg_ptn.jpg) center center repeat-y;
}
.logo_wrap {
	font-size: 0em;
    margin: 0 auto;
	margin-top: var(--gap_96px);
    width: min(60vw, 1050px);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
	z-index: 150;
}
.logo {
	background: url(/sp/logistics_z/oa/03/images/logo.png) center center/contain no-repeat;
	padding-top: calc(525 / 1050 * 100%);
}

.kv_photo_wrap {
	padding: clamp(8px, 2vw, 32px);
	display: grid;
    grid-template-columns: auto auto auto;
	gap: clamp(8px, 2vw, 32px);
}
.kv_photo img {
	box-shadow: 0 0 var(--gap_16px) var(--color_dGRN);
}
.kv_photo {
	opacity: 0;
}
.kv_photo_r {
	animation: kv_photo_r 1s forwards;
}
.kv_photo_l {
	animation: kv_photo_l 1s forwards;
}
.kv_photo_t {
	animation: kv_photo_t 1s forwards;
}
.kv_photo_b {
	animation: kv_photo_b 1s forwards;
}
.kv_photo:nth-of-type(1) {
	animation-delay: 0.5s;
}
.kv_photo:nth-of-type(2) {
	animation-delay: 1s;
}
.kv_photo:nth-of-type(3) {
	animation-delay: 1.5s;
}
.kv_photo:nth-of-type(4) {
	animation-delay: 2s;
}
.kv_photo:nth-of-type(5) {
	animation-delay: 2.5s;
}
.kv_photo:nth-of-type(6) {
	animation-delay: 2s;
}
.kv_photo:nth-of-type(7) {
	animation-delay: 1.5s;
}
.kv_photo:nth-of-type(8) {
	animation-delay: 1s;
}
.kv_photo:nth-of-type(9) {
	animation-delay: 0.5s;
}
.kv_cast {
	width: min(100%, 1910px);
	position: absolute;
	bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
@keyframes kv_photo_l {
	0% {
		opacity: 1;
		transform: translateX(-100%);
		/* transform: scale(0); */
	}
	100% {
		opacity: 1;
		transform: translateX(0%);
	}
}
@keyframes kv_photo_r {
	0% {
		opacity: 1;
		transform: translateX(100%);
		/* transform: scale(0); */
	}
	100% {
		opacity: 1;
		transform: translateX(0%);
	}
}
@keyframes kv_photo_t {
	0% {
		opacity: 1;
		transform: translateY(-100%);
		/* transform: scale(0); */
	}
	100% {
		opacity: 1;
		transform: translateY(0%);
	}
}
@keyframes kv_photo_b {
	0% {
		opacity: 1;
		transform: translateY(100%);
		/* transform: scale(0); */
	}
	100% {
		opacity: 1;
		transform: translateY(0%);
	}
}

/* =============================================================
    oa_date
============================================*/
.oa_date_wrap {
	text-align: center;
	color: #fff;
	padding-block: var(--gap_24px);
	background: #1A005B;
	background: linear-gradient(-5deg,rgba(26, 0, 91, 1) 40%, rgba(1, 0, 130, 1) 100%);
	position: relative;
	z-index: 50;
}
.oa_date {
    font-size: clamp(16px, 5vw, 88px);
    line-height: 1.1;
	/* 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; */
}
.oa_date em {
    font-size: 1.5em;
	font-weight: normal !important;
	line-height: 1;
	color: var(--color_YLW);
	position: relative;
	z-index: 10;
}
.net span {
	font-size: clamp(8px,2vw,28px);
	line-height: 1;
	padding: clamp(2px, 0.6vw, 8px);
	border: solid 1px;
	display: inline-block;
}

/* =============================================================
      intro
============================================*/
#intro {
	text-align: center;
	color: #fff;
	padding: var(--gap_48px);
	background: #8a7174;
	background: linear-gradient(-5deg,#8a7174 40%, #9a9a9c 100%);
}
.intro_main {
	font-size: var(--fontL);
	text-shadow: calc(var(--gap_8px) / 2) calc(var(--gap_8px) / 2) var(--gap_8px) var(--color_BLK);
	color: var(--color_YLW);
	margin-block: var(--gap_24px);
}
.intro_read {
	line-height: 1.5;
}
.intro_read P + p {
	margin-top: var(--gap_16px);
}
@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: 900px;
    margin: 0 auto 0;
	padding-top: var(--gap_48px);
    /* border: var(--color_GRN) 2px solid;
    padding: var(--gap_16px); */
	position: relative;
    z-index: 200;
}
.movie_wrap * {
	text-align: left;
}
#movie {
    position: relative;
    width: 100%;
    padding-top: calc(9 / 16 * 100%);
    margin: 0 auto;
    overflow: hidden;
	box-shadow: 0 0 var(--gap_24px) var(--color_BLK);
}
.tvo-video {
	position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
}
.jstream-eqPlayer,
.eq-h5_player {
	width: 100% !important;
	height: 100% !important;
}
.jstream-eqPlayer .bl {
	-webkit-box-sizing: content-box !important;
    box-sizing: content-box !important;
}
.tvo-video-equipmedia .hl img {
	width: inherit !important;
}

.tver_area {
	text-align: center;
    margin: 0 auto var(--gap_32px);
	padding-bottom: var(--gap_32px);
    width: min(80%, 480px);
	border-bottom: solid 1px #005ab4;
}
.tver_area_head {
	font-size: var(--fontM);
	font-weight: bold;
	color: var(--color_YLW);
	margin-bottom: var(--gap_24px);
}
.tver_area img {
	width: min(100%,300px) !important;
	filter: drop-shadow(0 0 var(--gap_8px) #5b4245);
}
.tver_info {
    margin-bottom: var(--gap_8px);
}
.tver_info em {
	font-weight: normal !important;
}
.tver_info_btm {
	font-size: 0.9em;
	color: #fff;
    margin: 0 auto var(--gap_16px);
    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-left: solid min(100vw, 1920px) #8a7174;
	top: 0;
}
#sec_area::after {
	position: absolute;
	content: "";
	border-left: 0;
	border-top: 0;
    border-top: solid min(8vw, 150px) transparent;
    border-right: solid min(100vw, 1920px) var(--color_BLU);
	bottom: 0;
	z-index: 0;
}

.sec_wrap {
	padding-top: clamp(20px, 11vw, 200px);
	position: relative;
}
#sec01 {
	z-index: 400;
}
#sec02 {
	z-index: 300;
}
#sec03 {
	z-index: 200;
}
#sec04 {
	z-index: 100;
}
.sec_title {
	font-size: clamp(16px,3vw,38px);
	font-weight: bold;
	text-align: center;
	line-height: 1.2;
	color: var(--color_BLU);
	padding-bottom: var(--gap_32px);
}
.sec_title em {
	font-size: 1.5em;
}
.sec_read {
	line-height: 1.6;
}
.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;
}

.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; */
}
.photo_wrap {
	box-shadow: 0 var(--gap_8px) var(--gap_16px) #939495;
    display: block;
	position: relative;
    z-index: 200;
}
.col2_inner {
	text-shadow: 0 0 0.3em #fff, 0 0 0.3em #fff, 0 0 0.6em #fff, 0 0 0.6em #fff, 0 0 0.6em #fff;
	padding: 0 clamp(16px, 4vw, 48px);
    max-width: 750px;
	display: flex;
	align-items: center;
	position: relative;
	z-index: 150;
}
.col2_inner::before {
	content: "";
    position: absolute;
    width: min(50vw,400px);
    height: min(50vw,400px);
    /* aspect-ratio: 1 / 1; */
    background-color: #fff;
    /* background-color: rgb(255 255 255 / 70%); */
    border-radius: 50%;
    filter: blur(100px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.col2_inner * {
	text-align: left !important;
}
.slide_wrap {
	padding-top: var(--gap_32px);
	position: relative;
    z-index: 200;
}
.col2_inner_sub {
	text-shadow: 0 0 0.3em #fff, 0 0 0.3em #fff, 0 0 0.6em #fff, 0 0 0.6em #fff, 0 0 0.6em #fff;
	margin-top: var(--gap_48px);
	padding: var(--gap_24px) clamp(16px, 4vw, 48px);
	width: 100% !important;
	position: relative;
}
.col2_inner_sub::before {
	background-color: rgb(255 255 255 / 100%);
	filter: blur(100px);
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.col2_inner .sec_read,
.col2_inner_sub .sec_read {
	position: relative;
	z-index: 200;
}
@media screen and (max-width: 767px) {
	.sec_wrap .flex.col2 .flex_item {
		width: 100%;
	}
	#sec01 .flex.col2,
	#sec03 .flex.col2 {
		flex-flow: column-reverse;
	}
	.photo_wrap {
		margin-top: var(--gap_48px);
	}
	.col2_inner_sub {
		padding-block: 0;
	}
}

/* =============================================================
    【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);
   }
}

/* 画像の表示アニメーション*/
/* 発火タイミング指示のjs記述も必要 */
@media only screen and (min-width: 1024px) {
	.slidein {
		opacity: 0;
		transform: translate(0,0);
		transition: all 1.0s;
	&.slidein-left{
		transform: translate(-100%,0);
	}
	&.slidein-right{
		transform: translate(100%,0);
	}
	&.slidein-up{
		transform: translate(0,-100%);
	}
	&.slidein-bottom{
		transform: translate(0,100%);
	}
	&.scrollin{
		transform: translate(0, 0)!important;
		opacity: 1!important;
	}
	}
}

#tvoHeader,
#tvoFooter {
	position: relative;
	z-index: 1200;
}