@charset "utf-8";
/*
Theme Name: sankakuya_skelton
Theme URL: https://sankakux4.org
Description: original theme
Author:yuya matsuo
Version: 1.0.0
*/

/* reset */

html{
	scroll-behavior:smooth;
}
body{
	margin:0;
	width:100%;
	overflow-x:hidden;
	overflow-y: scroll;
        scrollbar-width: none;
        text-rendering:optimizeSpeed;
        -webkit-text-size-adjust: 100%;
        overflow-wrap: anywhere;
	word-break: normal;
	line-break: strict;
}

*{
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin-block-start:0;
	margin-block-end:0;
	margin-inline-start:0;
	margin-inline-end:0;
	overflow-wrap: anywhere;
	word-break: normal;
	line-break: strict;
}

*::before,
*::after{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

h1,h2,h3,h4,h5,h6{
	font-size:1rem;
	font-weight:400;
	margin:0;
	padding:0;
	line-height:1.8;
}

p{
	margin:0;
	padding:0;
}

ul,
ol{
	list-style:none;
	padding:0;
	margin:0;
}

figure,
blockquote,
dl,
dd{
	margin:0;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

table th{
	font-weight:400;
	text-align:left;
}

a:not([class]){
	text-decoration-skip-ink:auto;
}

::-webkit-scrollbar {
	display: none;
	-webkit-appearance: none;
}

input,
button,
select,
textarea {
	background: transparent;
	border: none;
	border-radius: 0;
	font-family: inherit;
	outline: none;
	margin:0;
}

select,
select option{
	color:#000 !important;
}

textarea {
	resize: vertical;
}

input[type='checkbox'],
input[type='radio'] {
	display: none;
}

input[type='submit'],
input[type='button'],
label,
button,
select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button,
input[type="month"]::-webkit-outer-spin-button,
input[type="month"]::-webkit-inner-spin-button,
input[type="datetime-local"]::-webkit-outer-spin-button,
input[type="datetime-local"]::-webkit-inner-spin-button,
input[type="week"]::-webkit-outer-spin-button,
input[type="week"]::-webkit-inner-spin-button,
input[type="time"]::-webkit-outer-spin-button,
input[type="time"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-outer-spin-button,
input[type="date"]::-webkit-inner-spin-button {
	display: none;
}

input[type="number"],
input[type="month"],
input[type="datetime-local"],
input[type="week"],
input[type="time"],
input[type="date"] {
	-moz-appearance: textfield;
}

input[type="date"]::-webkit-clear-button,
input[type="month"]::-webkit-clear-button,
input[type="datetime-local"]::-webkit-clear-button,
input[type="time"]::-webkit-clear-button,
input[type="week"]::-webkit-clear-button {
	-webkit-appearance: none;
}

@media(prefers-reduced-motion:reduce){
	*{
		animation-duration:.01ms !important;
		animation-iteration-count:1 !important;
		transition-duration:.01ms !important;
		scroll-behavior:auto !important;
	}
}

.wpcf7-spinner{
	display:none !important;
}

/* common */

html{
	font-size:16px;
}

body{
	background:#fff;
	font-family: "Noto Serif JP", serif;
	font-optical-sizing: auto;
	font-style: normal;
	color:#222;
	font-weight:400;
	line-height:1.8;
	margin:0;
	overflow-wrap: anywhere;
	word-break: normal;
	line-break: strict;
}

a{
	display:block;
	color:#222;
	transition: .5s;
	text-decoration:none;
	-webkit-tap-highlight-color: transparent;
}

a:hover{
	color:#222;
	text-decoration:none;
	opacity:0.8;
}

/* font */

.lust{
	font-family: "Lusitana", serif;
}

.sans{
	font-family: "Noto Sans JP", sans-serif;
}

.serif{
	font-family: "Noto Serif JP", serif;
}

/* layout */

main{
	display:block;
	margin:191px auto 100px;
	position:relative;
}

.home main{
	margin:0 auto;
}

.container{
	width:1200px;
	margin:0 auto;
}

.container-min{
	width:900px;
	margin:0 auto;
}

.flex-wrap{
	display:-webkit-box;
  	display:flex;
  	flex-wrap: wrap;
}

.bg_gray{
	background:#f6f6f6;
}

.bg_blue{
	background:#003e97;
	color:#fff;
}

/* parts */

.text-center{
	text-align:center;
}

.text-right{
	text-align:right;
}

.img-fluid{
	display:block;
	max-width:100%;
	height:auto;
}

.img-trim{
	position: relative;
	overflow: hidden;
	padding-top: 100%;
}

.img-trim img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.img-trim.img-trim16x9{
	padding-top: 56.25%;
}

.img-trim.img-trim5x3{
	padding-top: 60%;
}

.img-trim.img-trim3x2{
	padding-top: 66%;
}

.img-trim.img-trim4x3{
	padding-top: 75%;
}

.img-trim.img-trim5x5{
	padding-top: 100%;
}

.img-trim.img-trim4x5{
	padding-top: 125%;
}

.shadow{
	box-shadow:0 0 40px 0 rgba(0, 0, 0, 0.3);
}

.fadeIn{
	transform: translate3d(0, 50px, 0);
	transition: 1s;
	opacity: 0;
}

.fadeIn.animated{
	transform: translate3d(0, 0, 0);
	opacity: 1;
}

.heading01{
	color:#003e97;
	font-size:4.5rem;
	line-height:1;
	margin-bottom:0.5em;
}

.heading01 span{
	display:block;
	font-size:1rem;
	font-weight:600;
	color:#222;
	letter-spacing:0.3em;
	line-height:1.8;
}

.heading01_wh{
	color:#fff;
}

.heading01_wh span{
	color:#fff;
}

.heading02{
	border-left:6px solid #003e97;
	padding:8px 0 16px 16px;
	margin-bottom:40px;
}

.heading02 p{
	font-size:1.5rem;
	color:#003e97;
	line-height:1;
	margin-bottom:0.5em;
}

.heading02 p span{
	font-size:2.25rem;
}

.heading02 .title{
	font-weight:700;
	letter-spacing:0.1em;
	line-height:1;
}

.btn{
	display:inline-block;
	padding:0.5em 3em 0.5em 1.25em;
	border:2px solid #009dd3;
	color:#009dd3;
	position:relative;
}

.btn::after{
	position:absolute;
	top:50%;
	transform:translateY(-50%);
	right:-1.5em;
	content:"";
	width:3em;
	height:2px;
	background:#009dd3;
	transition:.5s;
}

.btn:hover{
	opacity:1;
	color:#009dd3;
	background:#fff;
}

.btn:hover::after{
	right:-1em;
}

.btn_wh{
	border:2px solid #fff;
	color:#fff;
}

.btn_wh::after{
	background:#fff;
}

.btn_wh:hover{
	color:#fff;
	background:transparent;
}

/* header */

.header{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	z-index:1000;
	padding:20px 40px;
	background:#fff;
	border-top:8px solid #003e97;
}

.header.active{
	background:transparent;
	border-top:8px solid transparent;
	color:#fff;
}

.header.active a{
	color:#fff;
}

.header .inner{
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	align-items: center;
}

.header .inner .logo{
	width:148px;
}

.header.active .inner .logo img{
	filter: brightness(0) invert(1);
}

.header .inner .menu_wrap{
	-webkit-box-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	align-items: center;
}

.header .inner .menu_wrap .menu_block01 .g_navi ul{
	-webkit-box-pack: end;
	justify-content: flex-end;
}

.header .inner .menu_wrap .menu_block01 .g_navi ul li{
	margin-left:1.5em;
}

.header .inner .menu_wrap .menu_block02{
	padding-left:20px;
	margin-left:20px;
	border-left:1px solid #222;
	-webkit-box-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	align-items: center;
}

.header.active .inner .menu_wrap .menu_block02{
	border-left:1px solid #fff;
}

.header .inner .menu_wrap .menu_block02 .contact_icon{
	background:#003e97;
	width:2rem;
	height:2rem;
	border-radius:50%;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	color:#fff;
	font-size:0.75rem;
}

.header .inner .menu_wrap .menu_block02 .bogo-language-switcher{
	display:-webkit-box;
  	display:flex;
  	flex-wrap: wrap;
	-webkit-box-pack: end;
	justify-content: flex-end;
	margin-left:20px;
}

.header .inner .menu_wrap .menu_block02 .bogo-language-switcher .last{
	margin-left:1.5em;
	position:relative;
}

.header .inner .menu_wrap .menu_block02 .bogo-language-switcher .last::before{
	position:absolute;
	top:0;
	left:-1.25em;
	content:"／";
}

/* footer */

.footer{
	background:#222;
	color:#fff;
	padding:80px 0 20px;
}

.footer a{
	color:#fff;
}

.footer .f_content {
	margin-bottom:60px;
}

.footer .f_content .content_wrap{
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	align-items: center;
}

.footer .f_content .content_wrap .about h6{
	width:220px;
	margin-bottom:20px;
}

.footer .f_content .content_wrap .about h6 img{
	filter: brightness(0) invert(1);
}

.footer .f_content .content_wrap .about p i{
	margin-right:0.5em;
}

.footer .f_content .content_wrap .sitemap ul{
	margin-left:2.5rem;
	line-height:2.2;
}

.footer .f_copyright{
	border-top:1px solid #aaa;
	padding-top:20px;
	font-size:0.8rem;
}

/* home */

.fv{
	width:100%;
	height:calc(100vw / 1920 * 1080);
	-webkit-box-align: center;
	align-items: center;
	position:relative;
	overflow:hidden;
}

.fv .video_wrap{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}

.fv .video_wrap::after{
	content: '';
	display: block;
	position: absolute;
	top:0;
	right:0;
	width:100%;
	height:100%;
	background-color: rgba(0,0,0,0.5);
	background-image: radial-gradient(#000 30%, transparent 31%), radial-gradient(#000 30%, transparent 31%);
	background-size: 6px 6px;
	background-position: 0 0, 3px 3px;
}

.fv .video_wrap video{
	position: absolute;
	top:0;
	right:0;
	width:calc(100vw / 1920 * 2600);
	height: auto;
	min-width: 100%;
	min-height: 100%;
}

.fv .content{
	width:100%;
	padding:0 calc(100vw / 1920 * 100);
	position:relative;
	z-index:2;
}

.fv .content .content_wrap{
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	align-items: center;
}

.fv .content .content_wrap .txt{
	width:50%;
	color:#fff;
}

.fv .content .content_wrap .txt h2{
	font-size:calc(100vw / 1920 * 86);
	line-height:1.4;
}

.fv .content .content_wrap .txt p{
	font-size:calc(100vw / 1920 * 36);
}

.fv .content .content_wrap .img{
	width:50%;
}

.fv_slick_wrap{
	-webkit-box-pack: justify;
	justify-content: space-between;
}

.fv_slick_wrap ul{
	width:33%;
}

.fv_slick_wrap ul li{
	margin-bottom:calc(100vw / 1920 * 5);
}

.fv_slick_wrap ul li img{
	width:100%;
}

.front_content{
	padding:80px 0;
}

.fc01{
	background-repeat:no-repeat;
	background-size:cover;
	background-image:url(./img/fc01_bg.png);
	background-image:image-set(url(./img/fc01_bg.png) 1x, url(./img/fc01_bg@2x.png) 2x);
	background-image:-webkit-image-set(url(./img/fc01_bg.png) 1x, url(./img/fc01_bg@2x.png) 2x);
}

.ja .fc01 .content_wrap{
	-webkit-box-pack: center;
	justify-content: center;
}

.ja .fc01 .content_wrap .txt{
	writing-mode: vertical-rl;
}

.fc01 .content_wrap .txt p{
	line-height:2;
}

.ja .fc01 .content_wrap .txt p{
	font-size:1.25rem;
	letter-spacing:0.3em;
	margin-left:2em;
}

.ja .fc01 .content_wrap .txt p:last-child{
	margin-left:0;
}

.fc03{
	padding:0 0 80px;
}

.fc03 .fc03_header{
	background:#003e97;
	padding:80px 0 100px;
}

.fc03 .content_wrap{
	-webkit-box-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	align-items: center;
	margin-bottom:240px;
	
}

.fc03 .content_wrap:first-child{
	margin-top:-180px;
}

.fc03 .content_wrap:last-child{
	margin-bottom:140px;
}

.fc03 .content_wrap:nth-child(even){
	-webkit-box-orient: horizontal;
  	-webkit-box-direction: reverse;
  	flex-direction: row-reverse;
}

.fc03 .content_wrap .img{
	width:50%;
	position:relative;
}

.fc03 .content_wrap .img .child{
	width:80%;
	position:absolute;
	right:70%;
	bottom:-16%;
	z-index:3;
}

.fc03 .content_wrap:nth-child(even) .img .child{
	right:auto;
	left:90%;
}

.fc03 .content_wrap .txt{
	width:50%;
	margin-right:-10%;
	background:#f6f6f6;
	position:relative;
	z-index:2;
	padding:60px 80px 80px;
	background: linear-gradient(45deg,transparent 60px,#f6f6f6 60px,#f6f6f6 100%);
}

.fc03 .content_wrap:nth-child(even) .txt{
	margin-right:0;
	margin-left:-10%;;
	background: linear-gradient(-45deg,transparent 60px,#f6f6f6 60px,#f6f6f6 100%);
}

.fc03 .content_wrap .txt ul{
	margin-bottom:1.5rem;
	list-style: square;
	margin-left:40px;
}

.fc03 .content_wrap .txt .btn_wrap{
	margin-left:20px;
}

.fc04{
	position:relative;
	background: linear-gradient(-45deg,transparent 60px,#003e97 60px,#003e97 100%);
}

.fc04::after{
	position:absolute;
	top:50%;
	transform:translateY(-50%);
	left:calc(100vw / 1920 * 40);
	content:"";
	width:calc(100vw / 1920 * 40);
	height:calc(100vw / 1920 * 40);
	border-radius:50%;
	background:#fff;
}

.fc04 .content_wrap{
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: end;
	align-items: flex-end;
}

.fc04 .content_wrap .left{
	width:66%;
}

.fc04 .content_wrap .img{
	background:#fff;
	padding:40px 0 40px 40px;
}

.fc04 .content_wrap .txt{
	width:26%;
}

.fc04 .content_wrap .txt ul{
	list-style: square;
	margin-bottom:1rem;
}

.fc05 .title{
	-webkit-box-pack: justify;
	justify-content: space-between;
	margin-bottom:60px;
}

.fc05 .title .heading01{
	margin-bottom:0;
}

.fc05 .title .txt{
	-webkit-box-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	align-items: center;
}

.fc05 .title .btn{
	margin-left:1rem;
}

.fc06{
	padding: 0 0 80px;
}

.fc06 .fc06_header {
	background: #f6f6f6;
	padding:60px 0 60px;
}

.fc06 .content_wrap{
	-webkit-box-pack: end;
	justify-content: flex-end;
	margin-top:-60px;
}

.fc06 .content_wrap .img{
	width:11%;
	margin:0 0 10px 1%;
	border:1px solid #eee;
}

.fc07 .company_box dl{
	background:#f6f6f6;
}

/* page */

.page .page-header{
	margin-bottom:40px;
}

.page .page-header .title{
	font-size:3rem;
}

.page_deco{
	position:absolute;
	top:calc(100vw / 1920 * -300);
	right:0;
	max-width:calc(100vw / 1920 * 1400);
	height:calc(100vw / 1920 * 300);
	transform:rotate(-90deg);
	transform-origin:bottom right;
	overflow:hidden;
	color:transparent;
	-webkit-background-clip:text;
	background-clip:text;
	background-image: url(./img/page_deco.png);
	background-image:image-set(url(./img/page_deco.png) 1x, url(./img/page_deco@2x.png) 2x);
	background-image:-webkit-image-set(url(./img/page_deco.png) 1x, url(./img/page_deco@2x.png) 2x);
	background-repeat:no-repeat;
	background-size: cover;
	padding-top:calc(100vw / 1920 * 54);
	z-index:-1;
	
}

.page_deco .title{
	font-size:calc(100vw / 1920 * 300);
	line-height:1;
}

 .page_block{
	margin-bottom:80px;
}

.page_block:last-child{
	margin-bottom:0;
}

/* archive */

.pagination .page-numbers{
	font-family: "Lusitana", serif;
	display:-webkit-box;
  	display:flex;
  	flex-wrap: wrap;
  	-webkit-box-pack: center;
	justify-content: center;
}

.pagination .page-numbers li{
	margin:0 0.5rem;
	font-size:0.8rem;
}

.pagination .page-numbers li span,
.pagination .page-numbers li a{
	width:3rem;
	height:3rem;
	border-radius:50%;
	border:1px solid #222;
	padding-top:0.8rem;
	text-align:center;
}

.pagination .page-numbers li span.current{
	background:#003e97;
	color:#fff;
	border:1px solid #003e97;
}

.pagination .page-numbers li a:hover{
	opacity:1;
	color:#003e97;
	border:1px solid #003e97;
}

/* news */

.news_archive{
	border-bottom:1px solid #ccc;
	margin-bottom:40px;
}

.news_archive a{
	-webkit-box-pack: justify;
	justify-content: space-between;
	padding:1.5rem 2.5em;
	border-top:1px solid #ccc;
}

.news_archive a p{
	color:#aaa;
	width:6rem;
	transition:.5s;
}

.news_archive a h3{
	width:calc(100% - 6rem);
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.news_archive a:hover{
	opacity:1;
	background:#f6f6f6;
}

.news_archive a:hover p{
	color:#009dd3;
}

.news_single_header{
	position:relative;
	margin-bottom:10px;
}

.news_single_header span{
	display:block;
	color:#f6f6f6;
	font-size:8rem;
	line-height:1;
}

.news_single_header .txt{
	position:absolute;
	top:50%;
	transform:translateY(-50%);
	left:0;
}

.news_single_header .txt p{
	font-size:1.25rem;
	color:#009dd3;
}

.news_single_header .txt h1{
	font-weight:700;
}

.news_single_content{
	border-top:1px solid #ccc;
	padding:40px 20px 0;
	margin-bottom:40px;
}

/* about */

#company .content_wrap{
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	align-items: flex-start;
}

#company .content_wrap .greeting{
	width:48%;
}

#company .content_wrap .greeting h3{
	width:15%;
	margin:1rem 0 0 auto;
}

#company .content_wrap .profile{
	width:46%;
}

#company .content_wrap .profile .box{
	color:#fff;
	padding:24px 32px 24px 72px;
	font-size:0.8rem;
	position:relative;
	background: linear-gradient(-45deg, transparent 30px, #003e97 30px, #003e97 100%);
	margin-bottom:20px;
}

#company .content_wrap .profile .box::after{
	position:absolute;
	top:50%;
	transform:translateY(-50%);
	left:28px;
	content:"";
	width:20px;
	height:20px;
	background:#fff;
	border-radius:50%;
}

#company .content_wrap .profile .box:nth-child(even){
	background:#009dd3;
	background: linear-gradient(-45deg, transparent 30px, #009dd3 30px, #009dd3 100%);
}

#company .content_wrap .profile .box h4{
	font-weight:700;
	margin-bottom:0.5em;
}

.company_box{
	margin:0 0 40px;
}

.page .company_box{
	margin:0;
}

.company_box dl{
	width:100%;
	-webkit-box-align: start;
	align-items: flex-start;
	border-bottom:1px solid #ccc;
}

.company_box dl dt{
	width:30%;
	padding:2rem 0 2rem 4rem;
}

.company_box dl dd{
	width:70%;
	padding:2rem 4rem 2rem 0;
}

.company_box dl dd.clients_wrap{
	padding:2rem 4rem 0 0;
	-webkit-box-pack: justify;
	justify-content: space-between;
}

.company_box dl dd.clients_wrap .block{
	width:48%;
	margin-bottom:2rem;
	font-size:0.9rem;
}

.company_box dl dd.clients_wrap .block h4{
	font-size:1rem;
	font-weight:600;
}

/* business */

#business .result{
	padding:60px 24px 60px;
	font-size:0.9rem;
	background: linear-gradient(-45deg, transparent 30px, #f6f6f6 30px, #f6f6f6 100%);
	position:relative;
}

#business .result::after{
	position:absolute;
	top:26px;
	left:50%;
	transform:translateX(-50%);
	content:"";
	width:20px;
	height:20px;
	background:#fff;
	border-radius:50%;
}

#business .result h4{
	font-weight:700;
	margin-bottom:0.5em;
}

#business .result ul{
	list-style: square;
	padding-left:1.5em;
}

.business01{
	margin-bottom:100px;
}

.business01 .txt{
	width:66%;
	margin-bottom:30px;
}

.business01 .txt p a{
	display:inline-block;
	color:#003e97;
	text-decoration:underline;
}

.business01 .img{
	width:90%;
	background:#f6f6f6;
	padding:20px;
	-webkit-box-pack: justify;
	justify-content: space-between;
}

.business01 .img > div{
	width:24%;
	border:1px solid #ddd;
}

.business02{
	margin-bottom:100px;
}

.business02 .content_wrap{
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	align-items: flex-start;
}

.business02 .content_wrap .txt{
	width:42%;
	padding-top:60px;
}

.business02 .content_wrap .txt .heading01{
	position:relative;
	z-index:2;
}

.business02 .content_wrap .txt .inner{
	width:70%;
}

.business02 .content_wrap .txt .inner p{
	margin-bottom:20px;
}

.business02 .content_wrap .img{
	width:64%;
	margin-left:-6%;
	position:relative;
}

.business02 .content_wrap .img .child{
	position:absolute;
}

.business02 .content_wrap .img .child.c01{
	top:0;
	left:0;
	width:80%;
}

.business02 .content_wrap .img .child.c02{
	top:240px;
	right:0;
	width:50%;
}

.business02 .content_wrap .img .child.c03{
	top:440px;
	left:40px;
	width:36%;
}

.business02 .content_wrap .img .child.c04{
	top:630px;
	left:-90px;
	width:36%;
}

.business03 .content_wrap{
	-webkit-box-pack: justify;
	justify-content: space-between;
}

.business03 .content_wrap .box{
	width:30%;
}

.business03 .content_wrap .box .block:first-child{
	margin-bottom:60px;
}

.business03 .content_wrap .box .img{
	margin-bottom:16px;
}

.business03 .content_wrap .box .txt h3{
	color:#003e97;
	font-weight:700;
}

.business03 .content_wrap .box p{
	margin-bottom:1rem;
}

/* newtwork */

.network01{
	width:60%;
}

.network02 .content_wrap .block{
	width:30%;
	margin-right:1%;
}


.network02 .content_wrap .block.block02{
	width:28%;
}

.network02 .content_wrap .block.block03{
	width:33%;
}

.network02 .content_wrap .block h4{
	font-size:4rem;
	line-height:0.2;
	padding-left:20px;
}

.network02 .content_wrap .block .box{
	background: linear-gradient(-45deg, transparent 30px, #f6f6f6 30px, #f6f6f6 100%);
	padding:0 48px;
	height:420px;
	-webkit-box-align: center;
	align-items: center;
}

.network02 .content_wrap .block .box .inner{
	width:100%;
	font-size:0.9rem;
}

.network02 .content_wrap .block .box h3{
	font-size:1.75rem;
	margin-bottom:0.25em;
	line-height:1;
}

.network02 .content_wrap .block .box h3 span{
	display:block;
	font-size:1rem;
	font-weight:600;
	margin-top:0.5em;
}

.network02 .content_wrap .block .box ul{
	list-style: square;
	padding-left:1.25em;
}

.network02 .content_wrap .block01 h4{
	color:#009dd3;
}

.network02 .content_wrap .block01 .box{
	background: linear-gradient(-45deg, transparent 30px, #003e97 30px, #003e97 100%);
	color:#fff;
}

.network02 .content_wrap .block01 .box .img{
	background:#fff;
	margin-top:1rem;
}

.network02 .content_wrap .block02 h4{
	color:transparent;
}

.network02 .content_wrap .block02 .box{
	background: linear-gradient(-45deg, transparent 30px, #009dd3 30px, #009dd3 100%);
	color:#fff;
	height:204px;
}

.network02 .content_wrap .block02 .box:last-child{
	margin-top:12px;
}

.network_figure{
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	align-items: center;
}

.network_figure .box{
	position:relative;
}

.network_figure .box01{
	width:220px;
}

.network_figure .box01::before,
.network_figure .box02::before{
	position:absolute;
	top:50%;
	transform:translateY(-50%);
	left:calc(100% + 30px);
	content:"";
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
	border-left: 20px solid #aaa;
	border-right: 0;
}

.network_figure .box02::before{
	left:calc(100% + 60px);
}


.network_figure .box01 .img{
	width:60%;
	margin:0 auto 0.5rem;
}

.network_figure .box01 p{
	font-size:1.5rem;
}

.network_figure .box02{
	width:530px;
	height:530px;
	position:relative;
	background:#f6f6f6;
	border-radius:50%;
}

.network_figure .box02 .sun{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width:240px;
	height:240px;
	border:8px solid #003e97;
	background:#fff;
	border-radius:50%;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	z-index:4;
}

.network_figure .box02 .sun .img{
	width:80%;
}

.orbit {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	animation: rotate 20s linear infinite;
}

.planet-container {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.planet-container:nth-child(1) { transform: rotate(0deg); }
.planet-container:nth-child(2) { transform: rotate(72deg); }
.planet-container:nth-child(3) { transform: rotate(144deg); }
.planet-container:nth-child(4) { transform: rotate(216deg); }
.planet-container:nth-child(5) { transform: rotate(288deg); }

.planet {
	position: absolute;
	width: 140px;
	height: 140px;
	background:#003e97;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) translateX(190px);
	display: flex;
	align-items: center;
	justify-content: center;
}


.planet p{
	color:#fff;
	font-size:0.8rem;
	transform: rotate(90deg);
	font-weight:700;
	line-height:1.6;
}
    
.planet p span{
	display:block;
}

@keyframes rotate {
	from { transform: translate(-50%, -50%) rotate(0deg); }
	to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.network_figure .box03{
	width:220px;
}

.network_figure .box03 .img{
	width:100%;
}

/* logistics */

.logistics01 .heading01{
	margin-bottom:0;
}

.logistics01 .map{
	width:66%;
	margin:-40px auto 0;
	position:relative;
}

.logistics01 .map::before{
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	content:"";
	width:800px;
	height:592px;
	background-image:url(./img/logistics05.png);
	background-image:image-set(url(./img/logistics05.png) 1x, url(./img/logistics05@2x.png) 2x);
	background-image:-webkit-image-set(url(./img/logistics05.png) 1x, url(./img/logistics05@2x.png) 2x);
	background-repeat:no-repeat;
	background-size:cover;
	opacity:0.2;
	z-index:-1;
}

.logistics01 .map .content_wrap:first-child{
	-webkit-box-pack: end;
	justify-content: flex-end;
	margin-bottom:20px;
}

.logistics01 .map .content_wrap .box{
	width:50%;
}

.logistics01 .map .content_wrap .box h3{
	font-size:1.25rem;
	color:#003e97;
	font-weight:700;
}

.logistics01 .map .content_wrap:last-child .box h3{
	color:#009dd3;
}

.logistics01 .map .content_wrap .box .img{
	position:relative;
	margin-top:1rem;
}

.logistics01 .map .content_wrap .box .img > div{
	width:44%;
	margin-right:6%;
}

.logistics01 .map .content_wrap:last-child  .box .img > div{
	margin-right:0;
	margin-left:6%;
}

.logistics01 .map .content_wrap .box .img span{
	position:absolute;
	bottom:-0.85em;
	right:0;
	font-size:4rem;
	color:#003e97;
}

.logistics01 .map .content_wrap:last-child .box .img span{
	right:auto;
	left:0;
	color:#009dd3;
}

.logistics02 .content_wrap{
	-webkit-box-pack: justify;
	justify-content: space-between;
}

.logistics02 .content_wrap .box{
	width:30%;
}

.logistics02 .content_wrap .box:nth-child(2){
	margin-top:60px;
}

.logistics02 .content_wrap .box:nth-child(3){
	margin-top:120px;
}

.logistics02 .content_wrap .box .txt{
	margin-bottom:1rem;
}

.logistics02 .content_wrap .box .txt h3{
	font-weight:700;
	font-size:1.25rem;
}

.logistics02 .content_wrap .box .img{
	position:relative;
}

.logistics02 .content_wrap .box .img::after{
	position:absolute;
	top:10%;
	right:-5%;
	content:"";
	width:100%;
	height:100%;
	background:#009dd3;
	z-index:-1;
}

.logistics03 .content_wrap{
	-webkit-box-pack: justify;
	justify-content: space-between;
}

.logistics03 .content_wrap .box{
	width:19%;
	background: linear-gradient(-45deg, transparent 30px, #f6f6f6 30px, #f6f6f6 100%);
	padding:60px 24px 40px;
	font-size:0.8rem;
	position:relative;
}

.logistics03 .content_wrap .box::after {
	position: absolute;
	top: 26px;
	left: 50%;
	transform: translateX(-50%);
	content: "";
	width: 20px;
	height: 20px;
	background: #fff;
	border-radius: 50%;
}

.logistics03 .content_wrap .box h4{
	font-weight:700;
	margin-bottom:0.5rem;
}

.logistics03 .content_wrap .box .img{
	width:30%;
	margin:0 auto 0.5rem;
}

.logistics03 .content_wrap .box .img.full{
	width:100%;
}

/* marketing */

#marketing .content_wrap .box{
	width:46%;
	margin:0 4% 60px 0;
}

#marketing .content_wrap .box:nth-last-child(2),
#marketing .content_wrap .box:last-child{
	margin-bottom:0;
}

#marketing .content_wrap .box h2{
	color:#003e97;
	font-size:1.25rem;
	font-weight:700;
	margin-bottom:0.5em;
}

#marketing .content_wrap .box ul{
	list-style: square;
	margin-top:1rem;
	padding-left:1.25rem;
}

#marketing .content_wrap .box .inner_wrap{
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	align-items: flex-start;
}

#marketing .content_wrap .box .inner_wrap .txt{
	width:63%;
}

#marketing .content_wrap .box .inner_wrap .img{
	width:33%;
	background:#f6f6f6;
	padding:16px;
}

#marketing .content_wrap .box .inner_wrap .img > div{
	margin-bottom:16px;
}

#marketing .content_wrap .box .inner_wrap .img > div:last-child{
	margin-bottom:0;
}

#marketing .content_wrap .box .inner_wrap .img .video_wrap{
	padding-top: 177.5%;
	width: 100%;
	position: relative;
}

#marketing .content_wrap .box .inner_wrap .img .video_wrap video {
	width: 100%;
	height: 100%;
	position: absolute;
	top:0;
	left:0;
}

#marketing .content_wrap .box:last-child{
	padding:40px 60px 40px 72px;
	color:#fff;
	background: linear-gradient(-45deg, transparent 30px, #003e97 30px, #003e97 100%);
	position: relative;
}

#marketing .content_wrap .box:last-child::after{
	position: absolute;
	top:50%;
	transform: translateY(-50%);
	left: 28px;
	content: "";
	width: 20px;
	height: 20px;
	background: #fff;
	border-radius: 50%;
}

/* 404 */

.error404 h1{
	font-size:3.5rem;
	line-height:1.4;
}

/* display */

.pc-none{
	display:none;
}

@media (max-width: 1366px) {

	/* common */
	
	html{
		font-size:calc(100vw / 1366 * 16);
	}
	
	/* layout */
	
	main{
		margin:calc(100vw / 1366 * 191) auto calc(100vw / 1366 * 100);
	}
	
	.container{
		width:calc(100vw / 1366 * 1200);
	}
	
	.container-min{
		width:calc(100vw / 1366 * 900);
	}
	
	/* parts */
	
	.shadow{
		box-shadow:0 0 calc(100vw / 1366 * 40) 0 rgba(0, 0, 0, 0.3);
	}
	
	.fadeIn{
		transform: translate3d(0,calc(100vw / 1366 * 50), 0);
	}
	
	.heading02{
		border-left:calc(100vw / 1366 * 6) solid #003e97;
		padding:calc(100vw / 1366 * 8) 0 calc(100vw / 1366 * 16) calc(100vw / 1366 * 16);
		margin-bottom:calc(100vw / 1366 * 40);
	}
	
	/* header */
	
	.header{
		padding:calc(100vw / 1366 * 20) calc(100vw / 1366 * 40);
		border-top:calc(100vw / 1366 * 8) solid #003e97;
	}
	
	.header.active{
		border-top:calc(100vw / 1366 * 8) solid transparent;
	}
	
	.header .inner .logo{
		width:calc(100vw / 1366 * 148);
	}
	
	.header .inner .menu_wrap .menu_block02{
		padding-left:calc(100vw / 1366 * 20);
		margin-left:calc(100vw / 1366 * 20);
	}
	
	.header .inner .menu_wrap .menu_block02 .bogo-language-switcher{
		margin-left:calc(100vw / 1366 * 20);
	}
	
	/* footer */
	
	.footer{
		padding:calc(100vw / 1366 * 80) 0 calc(100vw / 1366 * 20);
	}
	
	.footer .f_content {
		margin-bottom:calc(100vw / 1366 * 60);
	}
	
	.footer .f_content .content_wrap .about h6{
		width:calc(100vw / 1366 * 220);
		margin-bottom:calc(100vw / 1366 * 20);
	}
	
	.footer .f_copyright{
		padding-top:calc(100vw / 1366 * 20);
	}
	
	/* home */
	
	.front_content{
		padding:calc(100vw / 1366 * 80) 0;
	}
	
	.fc03{
		padding:0 0 calc(100vw / 1366 * 80);
	}
	
	.fc03 .fc03_header{
		padding:calc(100vw / 1366 * 80) 0 calc(100vw / 1366 * 100);
	}
	
	.fc03 .content_wrap{
		margin-bottom:calc(100vw / 1366 * 240);
	}
	
	.fc03 .content_wrap:first-child{
		margin-top:calc(100vw / 1366 * -180);
	}
	
	.fc03 .content_wrap:last-child{
		margin-bottom:calc(100vw / 1366 * 140);
	}
	
	.fc03 .content_wrap .txt{
		padding:calc(100vw / 1366 * 60) calc(100vw / 1366 * 80) calc(100vw / 1366 * 80);
		background: linear-gradient(45deg,transparent calc(100vw / 1366 * 60),#f6f6f6 calc(100vw / 1366 * 60),#f6f6f6 100%);
	}
	
	.fc03 .content_wrap:nth-child(even) .txt{
		background: linear-gradient(-45deg,transparent calc(100vw / 1366 * 60),#f6f6f6 calc(100vw / 1366 * 60),#f6f6f6 100%);
	}
	
	.fc03 .content_wrap .txt ul{
		margin-left:calc(100vw / 1366 * 40);
	}
	
	.fc03 .content_wrap .txt .btn_wrap{
		margin-left:calc(100vw / 1366 * 20);
	}
	
	.fc04{
		background: linear-gradient(-45deg,transparent calc(100vw / 1366 * 60),#003e97 calc(100vw / 1366 * 60),#003e97 100%);
	}
	
	.fc04 .content_wrap .img{
		padding:calc(100vw / 1366 * 40) 0 calc(100vw / 1366 * 40) calc(100vw / 1366 * 40);
	}
	
	.fc05 .title{
		margin-bottom:calc(100vw / 1366 * 60);
	}
	
	.fc06{
		padding: 0 0 calc(100vw / 1366 * 80);
	}
	
	.fc06 .fc06_header {
		padding:calc(100vw / 1366 * 60) 0 calc(100vw / 1366 * 60);
	}
	
	.fc06 .content_wrap{
		margin-top:calc(100vw / 1366 * -60);
	}
	
	.fc06 .content_wrap .img{
		margin:0 0 calc(100vw / 1366 * 10) 1%;
	}
	
	/* page */
	
	.page .page-header{
		margin-bottom:calc(100vw / 1366 * 40);
	}
	
	 .page_block{
		margin-bottom:calc(100vw / 1366 * 80);
	}
	
	.page_block:last-child{
		margin-bottom:0;
	}
	
	/* news */
	
	.news_archive{
		margin-bottom:calc(100vw / 1366 * 40);
	}
	
	.news_single_header{
		margin-bottom:calc(100vw / 1366 * 10);
	}
	
	.news_single_content{
		padding:calc(100vw / 1366 * 40) calc(100vw / 1366 * 20) 0;
		margin-bottom:calc(100vw / 1366 * 40);
	}
	
	/* about */
	
	#company .content_wrap .profile .box{
		padding:calc(100vw / 1366 * 24) calc(100vw / 1366 * 32) calc(100vw / 1366 * 24) calc(100vw / 1366 * 72);
		background: linear-gradient(-45deg, transparent calc(100vw / 1366 * 30), #003e97 calc(100vw / 1366 * 30), #003e97 100%);
		margin-bottom:calc(100vw / 1366 * 20);
	}
	
	#company .content_wrap .profile .box::after{
		left:calc(100vw / 1366 * 28);
		width:calc(100vw / 1366 * 20);
		height:calc(100vw / 1366 * 20);
	}
	
	#company .content_wrap .profile .box:nth-child(even){
		background:#009dd3;
		background: linear-gradient(-45deg, transparent calc(100vw / 1366 * 30), #009dd3 calc(100vw / 1366 * 30), #009dd3 100%);
	}
	
	.company_box{
		margin:0 0 calc(100vw / 1366 * 40);
	}
	
	/* business */
	
	#business .result{
		padding:calc(100vw / 1366 * 60) calc(100vw / 1366 * 24) calc(100vw / 1366 * 60);
		background: linear-gradient(-45deg, transparent calc(100vw / 1366 * 30), #f6f6f6 calc(100vw / 1366 * 30), #f6f6f6 100%);
	}
	
	#business .result::after{
		top:calc(100vw / 1366 * 26);
		width:calc(100vw / 1366 * 20);
		height:calc(100vw / 1366 * 20);
	}
	
	.business01{
		margin-bottom:calc(100vw / 1366 * 100);
	}
	
	.business01 .txt{
		margin-bottom:calc(100vw / 1366 * 30);
	}
	
	.business01 .img{
		padding:calc(100vw / 1366 * 20);
	}
	
	.business02{
		margin-bottom:calc(100vw / 1366 * 100);
	}
	
	.business02 .content_wrap .txt{
		padding-top:calc(100vw / 1366 * 60);
	}
	
	.business02 .content_wrap .txt .inner p{
		margin-bottom:calc(100vw / 1366 * 20);
	}
	
	.business02 .content_wrap .img .child.c02{
		top:calc(100vw / 1366 * 240);
	}
	
	.business02 .content_wrap .img .child.c03{
		top:calc(100vw / 1366 * 440);
		left:calc(100vw / 1366 * 40);
	}
	
	.business02 .content_wrap .img .child.c04{
		top:calc(100vw / 1366 * 630);
		left:calc(100vw / 1366 * -90);
	}
	
	.business03 .content_wrap .box .block:first-child{
		margin-bottom:calc(100vw / 1366 * 60);
	}
	
	.business03 .content_wrap .box .img{
		margin-bottom:calc(100vw / 1366 * 16);
	}
	
	/* newtwork */
	
	.network02 .content_wrap .block h4{
		padding-left:calc(100vw / 1366 * 20);
	}
	
	.network02 .content_wrap .block .box{
		background: linear-gradient(-45deg, transparent calc(100vw / 1366 * 30), #f6f6f6 calc(100vw / 1366 * 30), #f6f6f6 100%);
		padding:0 calc(100vw / 1366 * 48);
		height:calc(100vw / 1366 * 420);
	}
	
	.network02 .content_wrap .block01 .box{
		background: linear-gradient(-45deg, transparent calc(100vw / 1366 * 30), #003e97 calc(100vw / 1366 * 30), #003e97 100%);
	}
	
	.network02 .content_wrap .block02 .box{
		background: linear-gradient(-45deg, transparent calc(100vw / 1366 * 30), #009dd3 calc(100vw / 1366 * 30), #009dd3 100%);
		height:calc(100vw / 1366 * 204);
	}
	
	.network02 .content_wrap .block02 .box:last-child{
		margin-top:calc(100vw / 1366 * 12);
	}
	
	.network_figure .box01{
		width:calc(100vw / 1366 * 220);
	}
	
	.network_figure .box01::before,
	.network_figure .box02::before{
		left:calc(100% + (100vw / 1366 * 30));
		border-top:calc(100vw / 1366 * 20) solid transparent;
		border-bottom:calc(100vw / 1366 * 20) solid transparent;
		border-left:calc(100vw / 1366 * 20) solid #aaa;
	}
	
	.network_figure .box02::before{
		left:calc(100% + (100vw / 1366 * 60));
	}
	
	.network_figure .box02{
		width:calc(100vw / 1366 * 530);
		height:calc(100vw / 1366 * 530);
	}
	
	.network_figure .box02 .sun{
		width:calc(100vw / 1366 * 240);
		height:calc(100vw / 1366 * 240);
		border:calc(100vw / 1366 * 8) solid #003e97;
	}
	
	.planet {
		width:calc(100vw / 1366 * 140);
		height:calc(100vw / 1366 * 140);
		transform: translate(-50%, -50%) translateX(calc(100vw / 1366 * 190));
	}
	
	.network_figure .box03{
		width:calc(100vw / 1366 * 220);
	}
	
	/* logistics */
	
	.logistics01 .map{
		margin:calc(100vw / 1366 * -40) auto 0;
	}
	
	.logistics01 .map::before{
		width:calc(100vw / 1366 * 800);
		height:calc(100vw / 1366 * 592);
	}
	
	.logistics01 .map .content_wrap:first-child{
		margin-bottom:calc(100vw / 1366 * 20);
	}
	
	.logistics02 .content_wrap .box:nth-child(2){
		margin-top:calc(100vw / 1366 * 60);
	}
	
	.logistics02 .content_wrap .box:nth-child(3){
		margin-top:calc(100vw / 1366 * 120);
	}
	
	.logistics03 .content_wrap .box{
		background: linear-gradient(-45deg, transparent calc(100vw / 1366 * 30), #f6f6f6 calc(100vw / 1366 * 30), #f6f6f6 100%);
		padding:calc(100vw / 1366 * 60) calc(100vw / 1366 * 24) calc(100vw / 1366 * 40);
	}
	
	.logistics03 .content_wrap .box::after {
		top:calc(100vw / 1366 * 26);
		width:calc(100vw / 1366 * 20);
		height:calc(100vw / 1366 * 20);
	}
	
	/* marketing */
	
	#marketing .content_wrap .box{
		margin:0 4% calc(100vw / 1366 * 60) 0;
	}
	
	#marketing .content_wrap .box .inner_wrap .img{
		padding:calc(100vw / 1366 * 16);
	}
	
	#marketing .content_wrap .box .inner_wrap .img > div{
		margin-bottom:calc(100vw / 1366 * 16);
	}
	
	#marketing .content_wrap .box .inner_wrap .img > div:last-child{
		margin-bottom:0;
	}
	
	#marketing .content_wrap .box:last-child{
		padding:calc(100vw / 1366 * 40) calc(100vw / 1366 * 60) calc(100vw / 1366 * 40) calc(100vw / 1366 * 72);
		background: linear-gradient(-45deg, transparent calc(100vw / 1366 * 30), #003e97 calc(100vw / 1366 * 30), #003e97 100%);
	}
	
	#marketing .content_wrap .box:last-child::after{
		left:calc(100vw / 1366 * 28);
		width:calc(100vw / 1366 * 20);
		height:calc(100vw / 1366 * 20);
	}

}

@media (max-width: 768px){

	/* display */

	.sp-none{
		display:none !important;
	}
	
	.pc-none{
		display:block;
	}

	/* common */
	
	html{
		font-size:calc(100vw / 375 * 14);
		overflow-x:hidden;
	}
	
	/* layout */
	
	main{
		margin:calc(100vw / 375 * 100) auto;
	}
	
	.container,
	.container-min{
		width:90vw;
	}
	
	/* parts */
	
	.shadow{
		box-shadow:0 0 calc(100vw / 375 * 20) 0 rgba(0, 0, 0, 0.3);
	}
	
	.fadeIn{
		transform: translate3d(0,calc(100vw / 375 * 50), 0);
	}
	
	.heading01{
		font-size:3.25rem;
	}
	
	.heading02{
		border-left:4px solid #003e97;
		padding:calc(100vw / 375 * 8) 0 calc(100vw / 375 * 16) calc(100vw / 375 * 16);
		margin-bottom:calc(100vw / 375 * 16);
	}
	
	.btn{
		padding:0.75em 3em 0.75em 1.5em;
	}
	
	/* header */
	
	.header{
		padding:calc(100vw / 375 * 12) 5vw calc(100vw / 375 * 12) ;
		border-top:calc(100vw / 375 * 8) solid #003e97;
	}
	
	.header.active{
		border-top:calc(100vw / 375 * 8) solid transparent;
	}
	
	.header .inner .logo{
		width:calc(100vw / 375 * 120);
	}
	
	.header .inner .menu_wrap .menu_block01{
		-webkit-box-ordinal-group:4;
		order:3;
	}
	
	.header .inner .menu_wrap .menu_block01 .g_navi_btn{
		display:block;
		width:calc(100vw / 375 * 24);
		height:calc(100vw /375 * 16);
		position:relative;
		transition:.5s;
		cursor:pointer;
		margin-left:calc(100vw / 375 * 20);
		z-index:1002;
	}
	
	.header .inner .menu_wrap .menu_block01 .g_navi_btn .menu__line{
		background:#222;
		display:block;
		height:calc(100vw / 375 * 2);
		position:absolute;
		top:0;
		transition:.5s;
		width:100%;
	}
	
	.header.active .inner .menu_wrap .menu_block01 .g_navi_btn .menu__line,
	.header .inner .menu_wrap .menu_block01 .g_navi_btn .menu__line.active{
		background:#fff;
	}
	
	.header .inner .menu_wrap .menu_block01 .g_navi_btn .menu__line--center{
		top:calc(100vw / 375 * 7);
	}
	
	.header .inner .menu_wrap .menu_block01 .g_navi_btn .menu__line--bottom{
		top:auto;
		bottom:0;
	}
	
	.header .inner .menu_wrap .menu_block01 .g_navi_btn .menu__line--top.active{
		top:calc(100vw / 375 * 7);
		-webkit-transform:rotate(45deg);
		transform:rotate(45deg);
	}
	
	.header .inner .menu_wrap .menu_block01 .g_navi_btn .menu__line--center.active{
		-webkit-transform:scaleX(0);
		transform:scaleX(0);
	}
	
	.header .inner .menu_wrap .menu_block01 .g_navi_btn .menu__line--bottom.active{
		bottom:calc(100vw / 375 * 7);
		-webkit-transform:rotate(135deg);
		transform:rotate(135deg);
	}
	
	.header .inner .menu_wrap .menu_block01 .g_navi{
		transition:all .5s ease-in-out;
		transform:translateZ(0) translateX(100%);
		position:fixed;
		top:0;
		right:0;
		width:100vw;
		height:100dvh;
		background:#003e97;
		color:#fff;
		padding:0 8vw;
		z-index:1001;
		display:-webkit-box;
	  	display:flex;
	  	flex-wrap: wrap;
	  	-webkit-box-align: center;
		align-items: center;
	}
	
	.header .inner .menu_wrap .menu_block01 .g_navi.active{
		transform:translateZ(0) translateX(0);
	}
	
	.header .inner .menu_wrap .menu_block01 .g_navi a{
		color:#fff;
	}
	
	.header .inner .menu_wrap .menu_block01 .g_navi ul{
		-webkit-box-pack: justify;
		justify-content: space-between;
		padding:0 6vw;
	}
	
	.header .inner .menu_wrap .menu_block01 .g_navi ul li{
		margin-left:0;
		width:50%;
		font-size:1.25rem;
		line-height:2;
	}
	
	.header .inner .menu_wrap .menu_block01 .g_navi ul li:nth-child(even){
		width:40%;
	}
	
	.header .inner .menu_wrap .menu_block01 .g_navi .g_about{
		padding:0 5vw calc(100vw / 375 * 24);
		margin-bottom:calc(100vw / 375 * 24);
		border-bottom:1px solid #fff;
	}
	
	.header .inner .menu_wrap .menu_block01 .g_navi .g_about .title{
		margin-bottom:0.5rem;
	}
	
	.header .inner .menu_wrap .menu_block01 .g_navi .g_about .title h6{
		width:60%;
		margin:0 auto 0.5rem;
	}
	
	.header .inner .menu_wrap .menu_block01 .g_navi .g_about .title h6 img{
		filter: brightness(0) invert(1);
	}
	
	.header .inner .menu_wrap .menu_block01 .g_navi .g_about .title p{
		font-size:0.7rem;
	}
	
	.header .inner .menu_wrap .menu_block01 .g_navi .g_about > a{
		font-size:1.5rem;
	}
	
	.header .inner .menu_wrap .menu_block01 .g_navi .g_about > a i{
		margin-right:0.5em;
	}
	
	.header .inner .menu_wrap .menu_block02{
		-webkit-box-ordinal-group:3;
		order:2;
		padding-left:0;
		margin-left:0;
		border-left:0;
	}
	
	.header.active .inner .menu_wrap .menu_block02{
		border-left:0;
	}
	
	.header .inner .menu_wrap .menu_block02 .bogo-language-switcher{
		margin-left:calc(100vw / 375 * 12);
		font-size:0.9rem;
	}
	
	/* footer */
	
	.footer{
		padding:calc(100vw / 375 * 40) 0 calc(100vw / 375 * 20);
	}
	
	.footer .f_content {
		margin-bottom:calc(100vw / 375 * 40);
	}
	
	.footer .f_content .content_wrap .about{
		width:100%;
		margin-bottom:calc(100vw / 375 * 32);
	}
	
	.footer .f_content .content_wrap .about h6{
		width:calc(100vw / 375 * 166);
		margin:0 auto 0.5rem;
	}
	
	.footer .f_content .content_wrap .about > p{
		width:82%;
		margin:0 auto;
	}
	
	.footer .f_content .content_wrap .about > p:nth-child(2){
		font-size:0.7rem;
		text-align:center;
		margin-bottom:1rem;
	}
	
	.footer .f_content .content_wrap .sitemap{
		width:100%;
	}
	
	.footer .f_copyright{
		padding-top:calc(100vw / 375 * 20);
	}
	
	/* home */
	
	.fv{
		height:100vh;
	}
	
	.fv .video_wrap video{
		width:auto;
		height:100%;
		right:-120vw;
	}
	
	.fv .content{
		width:calc(100vw / 375 * 340);
		margin:0 auto;
	}
	
	.fv .content .content_wrap .txt{
		width:100%;
		margin-bottom:calc(100vw / 375 * 24);
	}
	
	.fv .content .content_wrap .txt h2{
		font-size:2.75rem;
	}
	
	.fv .content .content_wrap .txt p{
		font-size:1.25rem;
	}
	
	.fv .content .content_wrap .img{
		width:100%;
	}
	
	.fv_slick_wrap ul li{
		margin-bottom:calc(100vw / 375 * 2);
	}
	
	.front_content{
		padding:calc(100vw / 375 * 60) 0;
	}
	
	.fc01{
		background-image: url(./img/fc01_bg-sp.png);
		background-image: image-set(url(./img/fc01_bg-sp.png) 1x, url(./img/fc01_bg-sp@2x.png) 2x);
		background-image: -webkit-image-set(url(./img/fc01_bg-sp.png) 1x, url(./img/fc01_bg-sp@2x.png) 2x);
	}
	
	.ja .fc01{
		padding:calc(100vw / 375 * 80) 0 calc(100vw / 375 * 60);
	}
	
	.ja .fc01 .content_wrap .txt p{
		font-size:1rem;
		margin-left:1.25em;
	}
	
	.fc03{
		padding:0 0 calc(100vw / 375 * 80);
	}
	
	.fc03 .fc03_header{
		padding:calc(100vw / 375 * 60) 0 calc(100vw / 375 * 100);
	}
	
	.fc03 > .container{
		width:100vw;
	}
	
	.fc03 .content_wrap{
		margin-bottom:calc(100vw / 375 * 48);
		-webkit-box-orient: vertical;
	  	-webkit-box-direction: normal;
	  	flex-direction: column;
	  	-webkit-box-pack: start;
		justify-content: flex-start;
	  	-webkit-box-align: stretch;
		align-items: stretch;
	}
	
	.fc03 .content_wrap:first-child{
		margin-top:calc(100vw / 375 * -90);
	}
	
	.fc03 .content_wrap:last-child{
		margin-bottom:0;
	}
	
	.fc03 .content_wrap .txt{
		width:84%;
		margin-right:0;
		padding:calc(100vw / 375 * 32);
		background: linear-gradient(-45deg,transparent calc(100vw / 375 * 20),#f6f6f6 calc(100vw / 375 * 20),#f6f6f6 100%);
		-webkit-box-ordinal-group:3;
		order:2;
		margin-top:calc(100vw / 375 * -200);
	}
	
	.fc03 .content_wrap:nth-child(even) .txt{
		margin-left:0;
		background: linear-gradient(45deg,transparent calc(100vw / 375 * 20),#f6f6f6 calc(100vw / 375 * 20),#f6f6f6 100%);
	}
	
	.fc03 .content_wrap .txt ul{
		margin-left:calc(100vw / 375 * 40);
	}
	
	.fc03 .content_wrap .txt .btn_wrap{
		margin-left:calc(100vw / 375 * 20);
	}
	
	.fc03 .content_wrap .img{
		width:80%;
		-webkit-box-ordinal-group:2;
		order:1;
		margin:0 0 0 auto;
	}
	
	.fc03 .content_wrap:nth-child(even) .img{
		margin:0 auto 0 0;
	}
	
	.fc03 .content_wrap .img .child{
		width:80%;
		right:auto;
		left:calc(100vw / 375 * -60);
		bottom:auto;
		top:calc(100vw / 375 * 70);
	}
	
	.fc03 .content_wrap:nth-child(even)  .img .child{
		left:auto;
		right:calc(100vw / 375 * -60);
	}
	
	.fc04{
		padding:calc(100vw / 375 * 80) 0 calc(100vw / 375 * 60) ;
		background: linear-gradient(-45deg,transparent calc(100vw / 375 * 20),#003e97 calc(100vw / 375 * 20),#003e97 100%);
	}
	
	.fc04::after{
		top:calc(100vw / 375 * 40);
		left:50%;
		transform:translateX(-50%);
		width: calc(100vw / 375 * 16);
		height: calc(100vw / 375 * 16);
	}
	
	.fc04 .content_wrap .left{
		width:100%;
		margin-bottom:calc(100vw / 375 * 20);
	}
	
	.fc04 .content_wrap .img{
		padding:calc(100vw / 375 * 20);
	}
	
	.fc04 .content_wrap .txt{
		width:100%;
		padding-left:calc(100vw / 375 * 20);
	}
	
	.fc05 .title{
		margin-bottom:0;
	}
	
	.fc05 .title .heading01{
		margin-bottom: 0.5em;
	}
	
	.fc05 .title .txt{
		-webkit-box-pack: start;
		justify-content: flex-start;
	}
	
	.fc05 .title .txt p{
		margin-bottom:1rem;
	}
	
	.fc05 .title .btn{
		margin-left:0;
	}
	
	.fc06{
		padding: 0 0 calc(100vw / 375 * 60);
	}
	
	.fc06 .fc06_header {
		padding:calc(100vw / 375 * 60) 0 calc(100vw / 375 * 60);
	}
	
	.fc06 .content_wrap{
		margin-top:calc(100vw / 375 * -60);
	}
	
	.fc06 .content_wrap .img{
		width:24%;
		margin:0 0 calc(100vw / 375 * 5) 1%;
	}
	
	/* page */
	
	.page .page-header{
		margin-bottom:calc(100vw / 375 * 40);
	}
	
	.page_deco{
		position:absolute;
		top:auto;
		bottom:calc(100vw / 375 * -124);
		max-width:100%;
		height:auto;
		transform:none;
		overflow:auto;
		padding-top:0;
	}

	.page_deco .title{
		font-size:6rem;
		line-height:1.2;
	}
	
	 .page_block{
		margin-bottom:calc(100vw / 375 * 60);
	}
	
	.page_block:last-child{
		margin-bottom:0;
	}
	
	/* news */
	
	.news_archive{
		margin-bottom:calc(100vw / 375 * 32);
	}
	
	.news_archive a{
		padding:1rem;
	}
	
	.news_archive a p{
		width:100%;
	}
	
	.news_archive a h3{
		width:100%;
	}
	
	.news_single_header{
		margin-bottom:calc(100vw / 375 * 10);
	}
	
	.news_single_header .txt p{
		font-size:1rem;
	}
	
	.news_single_content{
		padding:calc(100vw / 375 * 20) 0 0;
		margin-bottom:calc(100vw / 375 * 40);
	}
	
	/* about */
	
	#company .content_wrap .greeting{
		width:100%;
		margin-bottom:calc(100vw / 375 * 40);
	}
	
	#company .content_wrap .greeting h3{
		width:18%;
	}
	
	#company .content_wrap .profile{
		width:100%;
	}
	
	#company .content_wrap .profile .box{
		padding:calc(100vw / 375 * 24) calc(100vw / 375 * 32) calc(100vw / 375 * 24) calc(100vw / 375 * 72);
		background: linear-gradient(-45deg, transparent calc(100vw / 375 * 20), #003e97 calc(100vw / 375 * 20), #003e97 100%);
		margin-bottom:calc(100vw / 375 * 20);
	}
	
	#company .content_wrap .profile .box::after{
		left:calc(100vw / 375 * 28);
		width:calc(100vw / 375 * 16);
		height:calc(100vw / 375 * 16);
	}
	
	#company .content_wrap .profile .box:nth-child(even){
		background:#009dd3;
		background: linear-gradient(-45deg, transparent calc(100vw / 375 * 20), #009dd3 calc(100vw / 375 * 20), #009dd3 100%);
	}
	
	.company_box{
		margin:0 0 calc(100vw / 375 * 40);
	}
	
	.company_box dl dt{
		width:100%;
		padding:1rem 2rem 0;
		font-weight:700;
	}
	
	.company_box dl dd{
		width:100%;
		padding:0 2rem 1rem;
		font-size:0.9rem;
	}
	
	.company_box dl dd.clients_wrap{
		padding:0 2rem 1rem;
	}
	
	.company_box dl dd.clients_wrap .block{
		width:100%;
		margin-bottom:1rem;
	}
	
	.company_box dl dd.clients_wrap .block:last-child{
		margin-bottom:0;
	}
	
	/* business */
	
	#business .result{
		padding:calc(100vw / 375 * 60) calc(100vw / 375 * 24) calc(100vw / 375 * 40);
		background: linear-gradient(-45deg, transparent calc(100vw / 375 * 20), #f6f6f6 calc(100vw / 375 * 20), #f6f6f6 100%);
	}
	
	#business .result::after{
		top:calc(100vw / 375 * 26);
		width:calc(100vw / 375 * 16);
		height:calc(100vw / 375 * 16);
	}
	
	.business01{
		margin-bottom:calc(100vw / 375 * 60);
	}
	
	.business01 .txt{
		width:100%;
		margin-bottom:1rem;
	}
	
	.business01 .img{
		width:100%;
		padding:calc(100vw / 375 * 16) calc(100vw / 375 * 16) 0;
	}
	
	.business01 .img > div{
		width:48%;
		margin-bottom:calc(100vw / 375 * 16);
	}
	
	.business02{
		margin-bottom:calc(100vw / 375 * 300);
	}
	
	.business02 .content_wrap .txt{
		width:100%;
		padding-top:0;
	}
	
	.business02 .content_wrap .txt .inner{
		width:100%;
	}
	
	.business02 .content_wrap .txt .inner p{
		margin-bottom:1rem;
	}
	
	.business02 .content_wrap .img{
		width:100%;
		margin-left:0;
	}
	
	.business02 .content_wrap .img .child.c01{
		position:relative;
		top:calc(100vw / 375 * -20);
		left:auto;
		right:-10vw;
		width:calc(100% - 5vw);
	}
	
	.business02 .content_wrap .img .child.c02{
		top:calc(100vw / 375 * 70);
		right:auto;
		left:-5vw;
		width:70%;
	}
	
	.business02 .content_wrap .img .child.c03{
		width:60%;
		top:calc(100vw / 375 * 210);
		left:auto;
		right:0;
	}
	
	.business02 .content_wrap .img .child.c04{
		width:60%;
		top:calc(100vw / 375 * 350);
		left:auto;
		right:-5vw;
	}
	
	.business03 .content_wrap .box{
		width:100%;
		margin-bottom:calc(100vw / 375 * 40);
	}
	
	.business03 .content_wrap .box:last-child,
	.business03 .content_wrap .box .block:last-child{
		margin-bottom:0;
	}
	
	.business03 .content_wrap .box .block,
	.business03 .content_wrap .box .block:first-child{
		margin-bottom:calc(100vw / 375 * 40);
	}
	
	.business03 .content_wrap .box .img{
		width:70%;
		margin:0 auto 0.5rem;
	}
	
	.business03 .content_wrap .box .txt h3{
		text-align:center;
	}
	
	/* newtwork */
	
	.network01{
		width:100%;
	}
	
	.network02 .content_wrap .block{
		width:100%;
		margin-right:0;
	}
	
	.network02 .content_wrap .block h4{
		padding-left:calc(100vw / 375 * 20);
	}
	
	.network02 .content_wrap .block .box{
		background: linear-gradient(-45deg, transparent calc(100vw / 375 * 20), #f6f6f6 calc(100vw / 375 * 20), #f6f6f6 100%);
		padding:calc(100vw / 375 * 32) calc(100vw / 375 * 20)  calc(100vw / 375 * 20);
		height:auto;
	}
	
	.network02 .content_wrap .block.block01{
		margin-bottom:calc(100vw / 375 * 8);
	}
	
	.network02 .content_wrap .block01 .box{
		background: linear-gradient(-45deg, transparent calc(100vw / 375 * 20), #003e97 calc(100vw / 375 * 20), #003e97 100%);
	}
	
	.network02 .content_wrap .block01 .box .img{
		width:50%;
	}
	
	.network02 .content_wrap .block.block02{
		width:100%;
		display:-webkit-box;
	  	display:flex;
	  	flex-wrap: wrap;
	  	-webkit-box-pack: justify;
		justify-content: space-between;
		margin-bottom:calc(100vw / 375 * 40);
	}
	
	.network02 .content_wrap .block02 h4{
		display:none;
	}
	
	.network02 .content_wrap .block02 .box{
		width:49%;
		background: linear-gradient(-45deg, transparent calc(100vw / 375 * 20), #009dd3 calc(100vw / 375 * 20), #009dd3 100%);
		height:auto;
	}
	
	.network02 .content_wrap .block02 .box:last-child{
		margin-top:0;
	}
	
	.network02 .content_wrap .block.block03{
		width:100%;
	}
	
	.network_figure{
		-webkit-box-orient: vertical;
	  	-webkit-box-direction: normal;
	  	flex-direction: column;
	  	-webkit-box-pack: start;
		justify-content: flex-start;
	  	-webkit-box-align: stretch;
		align-items: stretch;
	}
	
	.network_figure .box01{
		width:calc(100vw / 375 * 160);
		margin:0 auto calc(100vw / 375 * 60);
	}
	
	.network_figure .box01::before,
	.network_figure .box02::before{
		top:calc(100% + (100vw / 375 * 24));
		left:50%;
		transform:translateX(-50%);
		border-bottom:0;
		border-right:calc(100vw / 375 * 15) solid transparent;
		border-left:calc(100vw / 375 * 15) solid transparent;
		border-top: calc(100vw / 375 * 15) solid #aaa;
	}
	
	.network_figure .box02{
		width:calc(100vw / 375 * 337.5);
		height:calc(100vw / 375 * 337.5);
		margin:0 auto calc(100vw / 375 * 60);
	}
	
	.network_figure .box02 .sun{
		width:calc(100vw / 375 * 120);
		height:calc(100vw / 375 * 120);
		border:calc(100vw / 375 * 4) solid #003e97;
	}
	
	.planet {
		width:calc(100vw / 375 * 105);
		height:calc(100vw / 375 * 105);
		transform: translate(-50%, -50%) translateX(calc(100vw / 375 * 110));
	}
	
	.network_figure .box03{
		width:calc(100vw / 375 * 160);
		margin:0 auto;
	}
	
	/* logistics */
	
	.logistics01{
		margin-bottom:calc(100vw / 375 * 80);
	}
	
	.logistics01 .heading01{
		margin-bottom: 0.5em;
	}
	
	.logistics01 .map{
		width:100%;
		margin:0 auto ;
	}
	
	.logistics01 .map::before{
		width:calc(100vw / 375 * 368);
		height:calc(100vw / 375 * 272);
	}
	
	.logistics01 .map .content_wrap:first-child{
		margin-bottom:calc(100vw / 375 * 30);
	}
	
	.logistics01 .map .content_wrap .box{
		width:80%;
		margin:0 auto;
	}
	
	.logistics02 .content_wrap .box{
		width:80%;
		margin:0 auto calc(100vw / 375 * 40);
	}
	
	.logistics02 .content_wrap .box:last-child{
		margin:0 auto;
	}
	
	.logistics02 .content_wrap .box:nth-child(2),
	.logistics02 .content_wrap .box:nth-child(3){
		margin-top:0;
	}
	
	.logistics03 .content_wrap .box{
		width:46%;
		background: linear-gradient(-45deg, transparent calc(100vw / 375 * 20), #f6f6f6 calc(100vw / 375 * 20), #f6f6f6 100%);
		padding:calc(100vw / 375 * 40) calc(100vw / 375 * 16);
		margin:0 auto calc(100vw / 375 * 16);
	}
	
	.logistics03 .content_wrap .box:last-child{
		margin:0 auto;
	}
	
	.logistics03 .content_wrap .box::after {
		top:calc(100vw / 375 * 16);
		width:calc(100vw / 375 * 16);
		height:calc(100vw / 375 * 16);
	}
	
	.logistics03 .content_wrap .box .img{
		width:40%;
	}
	
	/* marketing */
	
	#marketing .content_wrap .box{
		width:100%;
		margin:0 auto calc(100vw / 375 * 40);
	}
	
	#marketing .content_wrap .box:nth-last-child(2),
	#marketing .content_wrap .box:last-child{
		margin:0 auto calc(100vw / 375 * 40);
	}
	
	#marketing .content_wrap .box .inner_wrap .txt{
		width:100%;
		margin-bottom:1rem;
	}
	
	#marketing .content_wrap .box .inner_wrap .img{
		width:100%;
		padding:calc(100vw / 375 * 16);
	}
	
	#marketing .content_wrap .box .inner_wrap .img > div{
		margin-bottom:calc(100vw / 375 * 20);
	}
	
	#marketing .content_wrap .box:last-child{
		padding:calc(100vw / 375 * 60) calc(100vw / 375 * 20) calc(100vw / 375 * 40);
		background: linear-gradient(-45deg, transparent calc(100vw / 375 * 20), #003e97 calc(100vw / 375 * 20), #003e97 100%);
		margin-bottom:0;
	}
	
	#marketing .content_wrap .box:last-child::after{
		top:calc(100vw / 375 * 30);
		left:50%;
		transform:translateX(-50%);
		width:calc(100vw / 375 * 16);
		height:calc(100vw / 375 * 16);
	}

}

