@charset "utf-8";
/* ---------------------------------------------------------
 　■ 導入事例 詳細
--------------------------------------------------------- */
[class*="main_wrap"] {
  display: flex;
  width: 100%;
}
.main_wrap_nb { /* border-bottomなし */
  margin-bottom: 80px;
}
.main_wrap_mbS { /* 余白小さめ */
  padding-bottom: 50px;
  gap: 28px;
}
.gap-30 {
	gap: 30px;
}
/* （メインコンテンツ左側） */
.main_content_L {
  width: 60%;
}
/* （メインコンテンツ右側） */
.main_content_R {
  width: 40%;
}
.main_content_R p{
	margin-bottom: 1rem;
}
.main_content_R p:first-child {
	border-bottom: solid 1px #dbdbdb;
    padding-bottom: 31px;
	margin-bottom: 31px;
}
.profile_content {
	width: 50%;
}
.profile_content p{
	margin-bottom: 1rem;
}
/* ブロックモジュール上書き */
#delivery .block_image {
	width: 50%;
}
/* 顧客情報下ブロック */
.customer_info_block {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 50px;
}
.customer_info_block > h2 {
	flex-basis: 100%;
}
.customer_info_item_image {
	flex-basis: calc(50% - 15px);
}
.customer_info_item_text {
	flex-basis: 100%;
}
#delivery .related_feature {
	margin-bottom: 80px;
}
@media only screen and (min-width: 0) and (max-width: 767px) { /*SP*/
	#delivery .ui_wide,
	#delivery .ui_wide_xs{
		width: 84vw;
		margin: auto;
	}
	.main_wrap_bb,
	.main_wrap_nb,
	.main_wrap_mbS {
    flex-direction: column;
  }
	.main_wrap_mbS { /* 余白小さめ */
		padding-bottom: 30px;
	}
	.main_content_L,
	.main_content_R {
		width: 100%;
	}
	.profile_content {
		width: 100%;
	}
	/* ブロックモジュール上書き */
	#delivery .block_image {
		width: 100%;
	}
	/* 顧客情報下ブロック */
	.customer_info_block {
		flex-direction: column;
	}
	.customer_info_item_image {
		flex-basis: 100%;
	}
}
/* メイン商品（クリックで画像切り替え） */
@keyframes fadeIn {
	0%{
	  opacity: 0;
	}
	100%{
	  opacity: 1;
	}
}
  
@keyframes fadeOut {
	0%{
	  opacity: 1;
	}
	100%{
	  opacity: 0;
	}
}
.main-img {
	max-width: 777px;
	aspect-ratio: 4 / 3;
	position: relative;
}
.main-img > a{
	position: relative;
	display: block;
}
.main-img img {
  width: 100%;
  height:100%;
  object-fit:cover;
  aspect-ratio: 4 / 3;
}
.main-img iframe {
	position: absolute;
	top: 0;
	left: 0;
	width:100%;
	height:100%;
}
.sub-img {
  display: grid;
  grid-template: repeat(auto-fill, minmax(45px, 1fr)) / repeat(5, 1fr);
  grid-gap: 10px;
  width: 100%;
  margin-top: 20px;
}
.sub-img li {
	position: relative;
	width: 100%;
	max-width: 147px;
}

/* === 再生ボタン === */
.sub-img li#mainMovie::before,
.sub-img li#mainMovie::after,
.main-img > a.video-open::before,
.main-img > a.video-open::after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 20px);
  margin: auto;
}
.main-img > a.video-open::before,
.main-img > a.video-open::after{
  left: calc(50% - 25px);
}
.sub-img li#mainMovie::before,
.main-img > a.video-open::before{
  width: 40px;
  height: 40px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: var(--bland);
}
.main-img > a.video-open::before{
  width: 50px;
  height: 50px;
}
.sub-img li#mainMovie::after,
.main-img > a.video-open::after{
  left: 45%;
  box-sizing: border-box;
  width: 3px;
  height: 3px;
  border: 7px solid transparent;
  border-left: 16px solid #fff;
}
.main-img > a.video-open::after{
  left: 49%;
  border: 10px solid transparent;
  border-left: 20px solid #fff;
}

@media screen and ( max-width: 767px) {
.sub-img li#mainMovie::before,
.sub-img li#mainMovie::after,
.main-img > a.video-open::before,
.main-img > a.video-open::after{
  left: calc(50% - 13px);
}
.main-img > a.video-open::before,
.main-img > a.video-open::after{
  left: calc(50% - 25px);
}
.sub-img li#mainMovie::before,
.main-img > a.video-open::before{
  width: 20px;
  height: 20px;
}
.main-img > a.video-open::before{
  width: 70px;
  height: 70px;
}
.sub-img li#mainMovie::after,
.main-img > a.video-open::after{
  left: 40%;
  box-sizing: border-box;
  width: 3px;
  height: 3px;
  border: 5px solid transparent;
  border-left: 10px solid #fff;
}
.main-img > a.video-open::after{
	left: 50%;
	border: 15px solid transparent;
	border-left: 30px solid #fff;
}




}



.sub-img li:nth-child(5n) {
  margin-right: 0;
}
.sub-img li + li {
  margin-bottom: 0;
}
.sub-img li img {
  transition: border .5s;
  width: 100%;
  max-height: 92px;
  aspect-ratio: 4 / 3;
  object-fit:cover;
}
.sub-img img {
  cursor: pointer;
  width: 100%;
}
.sub-img li.current img { /* アクティブな画像の枠線を変更 */
  transition: border .5s;
}
#delivery .main_item_image {
	padding-right: 45px;
	position: relative;
}
.main_item_image-prev, .main_item_image-next {
    position: absolute;
    z-index: 2;
    top: 35%;
    transform: translate(0, -50%);
    display: block;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: rgba(74,188,242,0.9);
    transition: 0.3s;
}
.main_item_image-prev {
	left: -30px;
}
.main_item_image-next {
	right: 15px;
}
.main_item_image-prev:after, .main_item_image-next:after {
    content: '';
    position: absolute;
    top: calc(50% - 4px);
    width: 8px;
    height: 8px;
}
.main_item_image-prev:after {
    left: calc(50% - 3px);
    border-top: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    transform: rotate(-45deg);
}
.main_item_image-next:after {
    left: calc(50% - 7px);
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    transform: rotate(45deg);
}
#delivery .main_item_description ul {
	position: relative;
}
#delivery .main_item_description ul:after {
	content: "";
	display: block;
	margin-top: 32px;
	margin-bottom: 32px;
	width: 100%;
	height: 1px;
	background: #d9d9d9;
}
@media only screen and (min-width: 0) and (max-width: 767px) { /*SP*/
	.main_item_image-prev, .main_item_image-next {
		top: 35%;
		width: 37.5px;
		height: 37.5px;
	}
	.main_item_image-prev {
		left: -20px;
	}
	.main_item_image-next {
		right: -20px;
	}
	.main_item_image-prev:after, .main_item_image-next:after {
		top: calc(50% - 3px);
		width: 3px;
		height: 3px;
	}
	.main_item_image-next:after {
		left: calc(50% - 3px);
	}
	.main-img {
		width: 100%;
		height: auto;
	}
	.sub-img {
		width: 100%;
		margin-bottom: 50px;
	}
	.sub-img li img {
		max-height: 72px;
	}
	#delivery .main_item_image {
		padding-right: 0;
	}
}
/* 見出し */
[class^="article_title_"] {
	color: var(--bland);
}
/* メディア（写真左、文章右） */
.media_L {
	width: 37%;
	padding-right: 3%;
}
.media_R {
	width: 63%;
}
@media only screen and (min-width: 0) and (max-width: 767px) { /*SP*/
	.media_L {
		width: 100%;
		padding-right: 0;
		margin-bottom: 30px;
	}
	.media_R {
		width: 100%;
	}
}
/* profile-box */
.profile-box {
	display: flex;
}
.profile-box_img {
	width: 100px;
	height: 100px;
}
.profile-box_img img {
	object-fit: cover;
}
.profile-box_text {
	width: calc(100% - 100px);
	padding-left: 10px;
}

/* ---------------------------------------------------------
 　■ 導入事例 一覧ページ
--------------------------------------------------------- */
.delivery .page_bnr {
	background-image: url(/img/business/delivery/main_bg_pc.jpg);
	background-image: -webkit-image-set(url(/img/business/delivery/main_bg_pc.jpg) 1x, url(/img/business/delivery/main_bg_pc@2x.jpg) 2x);
	background-image: image-set(url(/img/business/delivery/main_bg_pc.jpg) 1x, url(/img/business/delivery/main_bg_pc@2x.jpg) 2x);
}
@media only screen and (min-width: 0) and (max-width: 767px) { /*SP*/
	.delivery .page_bnr {
		background-image: url(/img/business/delivery/main_bg_sp.jpg);
		background-image: -webkit-image-set(url(/img/business/delivery/main_bg_sp.jpg) 1x, url(/img/business/delivery/main_bg_sp@2x.jpg) 2x);
		background-image: image-set(url(/img/business/delivery/main_bg_sp.jpg) 1x, url(/img/business/delivery/main_bg_sp@2x.jpg) 2x);
	}
}
/* カテゴリリスト */
.delivery .archive_cat_all {
	margin-bottom: 30px;
}

.delivery .archive_cat_list {
	margin: auto auto 25px auto;
}
.delivery .archive_cat_list:last-of-type {
	margin-bottom: 90px;
}
.delivery .archive_cat_list li:first-child {
	color: #333333;
	font-weight: bold;
	padding-right: 7px;
}
.delivery .archive_cat_list li .ui_btn {
    line-height: 1;
	padding: 10px 20px;
}
.icon_pin ,
.icon_file {
	position: relative;
	padding-left: 2em;
}
.icon_pin::before {
	content: "";
	position: absolute;
	background: url(../img/icon/icon_pin.svg) no-repeat center / 15px 22px;
	top: 0;
	left: 0;
	width: 1.5em;
	height: 1.5em;
}
.icon_file::before {
	content: "";
	position: absolute;
	background: url(../img/icon/icon_file.svg) no-repeat center / 19px 15px;
	top: 0;
	left: 0;
	width: 1.5em;
	height: 1.5em;
}
@media only screen and (min-width: 0) and (max-width: 767px) { /*SP*/
	.delivery .archive_cat_list li .ui_btn {
		height: auto;
		padding: 7px 14px;
		height: auto;
	}
}
/* ---------------------------------------------------------
 　■ 導入事例 詳細ページ
--------------------------------------------------------- */
.delivery_detail .article_info{
	display: flex;
    align-items: center;
    justify-content: end;
	margin-bottom: 5%;
}
.delivery_detail .article_info .ui_list_item_img_cat {
	display: flex;
	gap: 10px;
	margin-right: 18px;
}
.delivery_detail .article_info .ui_list_item_img_cat [class*='ico_cat_'] {
	background: #f2f2f2;
	color: var(--bland);
	padding: 9px 19px;
	line-height: 1;
	font-size: 0.875rem;
	text-decoration: none;
}
@media only screen and (min-width: 0) and (max-width: 767px) { /*SP*/
	.delivery_detail .article_info {
		flex-wrap: wrap;
		gap: 10px;
	}
	.delivery_detail .article_info .ui_list_item_img_cat {
		flex-wrap: wrap;
		gap: 7px;
		margin-right: 0;
		justify-content: end;
	}
	.delivery_detail .article_info .ui_list_item_img_cat [class*='ico_cat_'] {
		font-size: 0.75rem;
		padding: 5px 10px;
	}
}




/* /business H1 Renewal */
.delivery .page_bnr {
  background-image: none;
}