@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Oswald&display=swap');

html{
	scroll-behavior: smooth;
	font-size: 62.5%;
	line-height: 170%;
}

body {
	color: var(--color-black);
	padding: 0;
}

p {
	font-size: 1.4rem;
	margin: 0;
	word-break: break-all;
	white-space: wrap;
}
img{
	width: 100%; height: auto;
	object-fit: cover;
}
a:hover{
	opacity: 0.7;
}

/* ------- variable ------- */
:root {
	--color-black: #3c3c3c;
	--color-primary: #DA2B1D;
	--color-secondary: #E89925;
	--color-base: #F7F7F7;
	--color-base-positive: #FFF4E5;
	--shadow-basic: 0 0 15px rgb(0 0 0 / 10%);
	--gradient: linear-gradient(to right, var(--color-primary), var(--color-secondary));
}

/* ------- utility ------- */
section{
	padding-bottom: 80px;
}
.wrap{
	width: 100%;
	max-width: 980px;
	padding-left: 20px;
	padding-right: 20px;
	margin: 0 auto;
}
.bg-positive{
	background: var(--color-base-positive);
}
.flex, .spflex{
	width: 100%;
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	text-align: center;
}
p + .flex, p + .spflex, .flex + .flex, .flex + .spflex, .spflex + .flex, .spflex + .spflex, .flex + .card-single, .spflex + .card-single, .card-single + .card-single, p + .card-single, .wrap-headcontent + .wrap{
	margin-top: 60px;
}
.flex-child-double{
	width: calc(50% - 10px);
	display: flex;
	flex-direction: column;
	align-items: stretch;
}
.flex-child-triple{
	width: calc(33.333% - 15px);
	display: flex;
	flex-direction: column;
	align-items: stretch;
}
.flex-child-quadruple{
	width: calc(25% - 15px);
	display: flex;
	flex-direction: column;
	align-items: stretch;
}
.center{
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.right{
	margin-left: auto;
	margin-right: 0;
	text-align: right;
}
span.ib, span.inlineBlock {
	display: inline-block;
}
.sponly{
	display: none;
}
@media (max-width: 960px) {
	.spflex{
		padding-left: 40px;
		padding-right: 40px;
	}
	.flex-child-quadruple{
		width:  calc(50% - 10px);
	}
}
@media (max-width: 600px) {
	section{
		display: block;
		padding-bottom: 60px;
	}
	.flex{
		display: block;
	}
	.spflex{
		padding-left: 0;
		padding-right: 0;
	}
	p + .flex, p + .spflex, .flex + .flex, .flex + .spflex, .spflex + .flex, .spflex + .spflex, .flex + .card-single, .spflex + .card-single, .card-single + .card-single, .wrap-headcontent + .wrap {
		margin-top: 40px;
	}
	.flex-child-double, .flex-child-triple{
		width: 100%;
	}
	.spscroll{
		display: block;
		display: flex;
		justify-content: unset;
		flex-wrap: nowrap;
		gap: 15px;
		overflow: auto;
		padding: 20px;
	}
	.spscroll .flex-child-double, .spscroll .flex-child-triple{
		display: block;
		width: 80%;
		flex-shrink: 0;
	}
	.sponly{
		display: inline-block;
	}
	.pconly{
		display: none;
	}
	.ib.pconly{
		display: inline !important;
	}
}

/* ------- utility ------- */

/* ------- area ------- */
.bgsection{
	width: calc(1200px + ((100vw - 1200px) / 2));
	background: var(--color-base);
	border-radius: 100px 0 0 100px;
	margin: 140px 0 80px auto;
}
.bgsection.transparent{
	background: transparent;
	padding-bottom: 0;
}
.bgsection-wrap{
	width: 100vw;
	margin: 0 0 0 calc((1200px - 100vw) / 2);
}
.bgsection-wrap .wrap-headcontent{
	width: calc(980px + ((100vw - 980px) / 2));
	max-width: unset;
	margin: 0 0 0 auto;
	padding: 0;
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
}
.bgsection-wrap .wrap-headcontent.reverse{
	flex-direction: row;
	margin: 0 auto 0 0;
}
.bgsection-content-half{
	width: 490px;
	padding-top: 140px;
	margin-top: -60px;
}
.bgsection-content-half-img{
	width: calc(100% - 530px);
	height: auto;
	margin-top: -60px;
	object-fit: cover;
}
@media (max-width: 1220px) {
	.bgsection{
		width: calc(100% - 20px);
		margin: 140px 0 80px auto;
	}
	.bgsection-wrap{
		width: 100%;
		margin: 0;
	}
	.bgsection-wrap .wrap-headcontent{
		width: 100%;
		padding-left: 40px;
	}
	.bgsection-wrap .wrap-headcontent.reverse{
		padding-left: 0;
		padding-right: 40px;
		margin-left: -20px;
	}
	.bgsection-content-half{
		width: 50%;
	}
	.bgsection-content-half-img{
		width: calc(50% - 30px);
	}
}
@media (max-width: 960px) {
	.bgsection-content-half .pconly{
		display: none;
	}
}
@media (max-width: 700px) {
	.bgsection{
		width: 100%;
		border-radius: 0 0 0 100px;
		margin: 80px 0;
	}
	.bgsection-wrap{
		width: 100%;
		margin: 0;
	}
	.bgsection-wrap .wrap-headcontent, .bgsection-wrap .wrap-headcontent.reverse{
		width: 100%;
		padding-left: 20px;
		padding-right: 20px;
		margin: 0 auto;
		flex-direction: column;
	}
	.bgsection-content-half{
		width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	.bgsection-content-half .pconly{
		display: inline-block;
	}
	.bgsection-content-half-img{
		width: 100vw;
		max-width: unset;
		aspect-ratio: 16 / 9;
		padding: 0;
		margin: 0 -20px 30px -20px;
	}
}
@media (max-width: 600px) {
	.bgsection{
		margin: 60px 0;
	}
	.bgsection-content-half .pconly{
		display: none;
	}
}

/* ------- area ------- */

/* ------- element text ------- */
.pagetitle{
	widows: 100%;
	padding: 192px 20px 120px;
	margin-bottom: 80px;
	background: var(--color-base);
	text-align: center;
	box-sizing: border-box;
}
.pagetitle h1{
	font-size: 3.2rem;
}
.pagetitle.lead h1{
	font-size: 2rem;
}
.pagetitle.lead h1 span{
	display: inline-block;
	font-size: 3.2rem;
	border-bottom: 3px solid var(--color-primary);
}
.pagelead{
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	margin-bottom: 60px;
}
.pagelead::after{
	content: "";
	display: block;
	width: 60px; height: 3px;
	margin: 2.4rem auto 0;
	background: var(--color-primary);
}
.blocktitle{
	font-size: 3.2rem;
}
.blocktitle.center{
	text-align: center;
}
.blocktitle.mini{
	font-size: 2.5rem;
}
.blocktitle .lead{
	font-size: 1.6rem;
}
.blocktitle::after{
	content: "";
	display: block;
	width: 60px; height: 3px;
	margin: 2.4rem 0 4rem;
	background: var(--color-primary);
}
.blocktitle.center::after{
	margin: 2.4rem auto 4rem;
}
.blocklead{
	font-size: 1.6rem;
	font-weight: bold;
	margin-bottom: 1.2rem;
}
.att{
	font-size: 1.2rem;
	font-weight: normal;
	line-height: 1.7;
	margin-top: 30px;
}
@media (max-width: 600px) {
	.pagetitle{
		padding: 120px 20px 70px;
		margin-bottom: 40px;
	}
	.pagetitle h1{
		font-size: 2rem;
	}
	.pagetitle.lead h1{
		font-size: 1.4rem;
	}
	.pagetitle.lead h1 span{
		font-size: 2rem;
		border-bottom: 2px solid var(--color-primary);
	}
	.pagelead{
		font-size: 1.6rem;
		margin-bottom: 40px;
	}
	.pagelead::after{
		width: 40px; height: 2px;
		margin: 1.4rem auto 0;
	}
	.blocktitle{
		font-size: 2rem;
	}
	.blocktitle .lead{
		font-size: 1.4rem;
	}
	.blocktitle.mini{
		font-size: 1.6rem;
	}
	.blocktitle::after{
		width: 40px; height: 2px;
		margin: 2rem 0 2.5rem;
		background: var(--color-primary);
	}
	.att{
		font-size: 1rem;
		line-height: 1.7;
		margin-top: 20px;
	}
}

/* ------- element text ------- */

/* ------- element btn ------- */
.btn{
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	display: inline-block;
	min-width: 350px;
	padding: 20px 30px;
	margin-top: 30px;
	border-radius: 100px;
	background: var(--color-primary);
}
.btn.small{
	font-size: 1.4rem;
	min-width: 280px;
	padding: 15px 20px;
	margin-top: 20px;
}
.btn.white{
	color: var(--color-primary);
	background: #FFF;
}
.btn.dl::before{
	content: "";
	display: inline-block;
	background: url(../images/package-drop-service/icon-dl.svg) no-repeat center center;
	background-size: contain;
	width: 1em; height: 1em;
	margin-right: 0.5em;
}
.btn.arrow, .btn.plus{
	text-align: left;
	position: relative;
}
.btn.arrow::after{
	content: "";
	display: inline-block;
	background: url(../images/package-drop-service/icon-arrow-white.svg) no-repeat center center;
	background-size: contain;
	width: 1.5em; height: 1em;
	margin-right: 0.5em;
	position: absolute;
	top: 50%; right: 0;
	transform: translateY(-50%);
}
.btn.arrow.white::after{
	background: url(../images/package-drop-service/icon-arrow-primary.svg) no-repeat center center;
	background-size: contain;
}
.btn.plus::after{
	content: "";
	display: inline-block;
	background: url(../images/package-drop-service/icon-plus-white.svg) no-repeat center center;
	background-size: contain;
	width: 1.2em; height: 1.2em;
	margin-right: 0.5em;
	position: absolute;
	top: 50%; right: 0;
	transform: translateY(-50%);
}
.link-extarnal{
	display: inline-block;
	text-align: left;
	font-size: 1.4rem;
	color: var(--color-primary);
	border-bottom: 1px solid var(--color-primary);
	padding: 0 0 0.5em 1.7em;
	margin-top: 1.5rem;
	line-height: 1.7;
	position: relative;
}
.link-extarnal::after{
	content: "";
	display: inline-block;
	background: url(../images/package-drop-service/icon-extarnal.svg) no-repeat center center;
	background-size: contain;
	width: 1.2em; height: 1.2em;
	margin-top: 0.2em;
	position: absolute;
	top: 0; left: 0;
}
@media (max-width: 600px) {
	.btn{
		font-size: 1.5rem;
		min-width: unset;
		width: 100%;
		padding: 15px 20px;
		margin-top: 20px;
	}
	.btn.small{
		font-size: 1.4rem;
		min-width: unset;
		width: auto;
		max-width: 100%;
		padding: 15px 3em 15px 20px;
		margin-top: 20px;
	}
}

/* ------- element btn ------- */

/* ------- element local navigation ------- */
.wrap-localnav{
	display: flex;
	justify-content: space-between;
	margin-top: -80px;
}
.localnav{
	width: 25%;
	font-size: 2rem;
	font-weight: bold;
	padding-top: 80px;
	padding-bottom: 60px;
}
.localnav ul{
	position: sticky; top: 100px;
}
.localnav li a{
	color: var(--color-black);
}
.localnav li{
	margin-bottom: 1em;
}
.localnav .current a{
	color: var(--color-primary);
}
.localnav-content{
	width: calc(75% - 40px);
	padding-top: 80px;
}
@media (max-width: 960px) {
	.localnav{
		font-size: 1.6rem;
	}
}
@media (max-width: 600px) {
	.wrap-localnav{
		display: block;
		margin-top: -40px;
	}
	.localnav{
		width: 100vw;
		margin-left: -20px;
		margin-bottom: 40px;
		padding: 0;
		border-bottom: 1px solid#ccc;
		font-size: 1.6rem;
	}
	.localnav ul{
		display: flex;
		gap: 1.5em;
		padding: 20px;
		position: static;
		overflow-x: auto;
		white-space: nowrap;
	}
	.localnav li{
		margin-bottom: 0;
	}
	.localnav-content{
		width: 100%;
		padding-top: 0;
	}
	.localnav-content .blocktitle{
		text-align: center;
	}
	.localnav-content .blocktitle::after{
		margin: 2rem auto 2.5rem;
	}
}

/* ------- element local naviation ------- */

/* ------- element step ------- */
.step{
	counter-reset: stepnumber 0;
}
.step-list{
	background: var(--color-base);
	border-radius: 8px;
	margin-top: 20px;
	font-size: 1.4rem;
	display: flex;
}
.step-list-title{
	background: var(--color-primary);
	font-size: 2rem;
	color: #fff;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	width: 11em;
	border-radius: 8px 0 0 8px;
	position: relative;
}
.step-list .step-list-title::before{
	counter-increment: stepnumber 1;
	content:  counter( stepnumber, decimal-leading-zero);
	font-family: "Oswald", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: 2.5rem;
	position: absolute;
	top: 3px; left: 10px;
}
.step-list-text{
	font-size: 1.6rem;
	font-weight: bold;
	padding: 35px 30px;
}
@media (max-width: 600px) {
	.step-list{
		margin-top: 10px;
	}
	.step-list-title{
		font-size: 1.4rem;
		width: 7em;
		flex-direction: column;
		padding: 10px 0;
	}
	.step-list .step-list-title::before{
		display: block;
		width: 100%;
		font-size: 1.7rem;
		line-height: 1.2;
		position: static;
	}
	.step-list-text{
		font-size: 1.4rem;
		padding: 15px;
	}
}
/* ------- element step ------- */

/* ------- element faq ------- */
.faq details{
	background: var(--color-base);
	padding: 30px 20px;
	border-radius: 8px;
	margin-top: 20px;
	font-size: 1.4rem;
}
.open details{
	pointer-events: none;
}
details a{
	pointer-events: all;
	color: var(--color-primary);
}
.faq summary{
	display: block;
	font-size: 1.6rem;
	font-weight: bold;
	padding-left: 3rem;
	position: relative;
	cursor: pointer;
}
.faq.close summary{
	padding-right: 3rem;
}
.faq summary::-webkit-details-marker {
	display: none;
}
.faq summary::before{
	content: "";
	display: block;
	background: url(../images/package-drop-service/icon-faq-q.svg) no-repeat center center;
	background-size: contain;
	width: 1.6rem; height: 2.2rem;
	position: absolute;
	top: 50%; left: 0;
	transform: translateY(-50%);
}
.faq.close summary::after{
	content: "";
	display: block;
	background: url(../images/package-drop-service/icon-faq-plus.svg) no-repeat center center;
	background-size: contain;
	width: 2rem; height: 2rem;
	position: absolute;
	top: 50%; right: 0;
	transform: translateY(-50%);
}
.faq.close details[open] summary::after{
	content: "";
	display: block;
	background: url(../images/package-drop-service/icon-faq-minus.svg) no-repeat center center;
	background-size: contain;
	width: 2rem; height: 2rem;
	position: absolute;
	top: 50%; right: 0;
	transform: translateY(-50%);
}
.faq details p{
	margin-top: 2rem;
	padding-left: 3rem;
	position: relative;
}
.faq details p::before{
	content: "";
	display: block;
	background: url(../images/package-drop-service/icon-faq-a.svg) no-repeat center center;
	background-size: contain;
	width: 1.6rem; height: 2.2rem;
	position: absolute;
	top: 0; left: 0;
}
@media (max-width: 600px) {
	.faq details{
		background: var(--color-base);
		padding: 15px;
		margin-top: 10px;
	}
}

/* ------- element faq ------- */

/* ------- element card ------- */
.cardtitle{
	font-size: 1.8rem;
	display: inline-block;
	margin: 0 auto 25px;
	padding-bottom: 0.3rem;
	text-align: center;
	border-bottom: 2px solid var(--color-primary);
	position: relative;
}
.cardtitle::before{
	content: "";
	position: relative;
	width: 0;
	height: 0;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-top: 13px solid var(--color-primary);
	position: absolute; bottom: -13px; left: 50%;
	transform: translateX(-50%);
}
.cardtitle::after{
	content: "";
	position: relative;
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 13px solid var(--color-base);
	position: absolute; bottom: -9px; left: 50%;
	transform: translateX(-50%);
}
.card{
	box-shadow: var(--shadow-basic);
	border-radius: 8px;
}
.card-topic-horizontal, .card-topic-vertical{
	height: 100%;
}
.card-topic-horizontal a{
	display: flex;
	height: 100%;
	align-items: stretch;
	text-align: left;
	color: var(--color-black);
	position: relative;
}
.card-topic-vertical a{
	display: flex;
	height: 100%;
	flex-direction: column;
	text-align: left;
	color: var(--color-black);
	height: 100%;
	position: relative;
}
.card-topic-horizontal a > *{
	width: 50%;
}
.card-topic-horizontal a img:first-child{
	border-radius: 8px 0 0 8px;
}
.card-topic-vertical a img:first-child{
	border-radius: 8px 8px 0 0;
}
.card-textbox{
	padding: 30px 20px 20px;
	position: relative;
}
.card-topic-title{
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1.7;
	margin-bottom: 1rem;
}
.card-topic-auxtext{
	font-size: 1.2rem;
	margin-bottom: 3rem;
}
.card-topic-subinfo{
	display: block;
	background: var(--color-base);
	border-radius: 8px;
	margin-top: 10px;
	padding: 5px 10px;
}
a .card-topic-next{
	color: var(--color-primary);
	font-size: 1.4rem;
	font-weight: bold;
	text-align: right;
	position: absolute;
	right: 2rem; bottom: 1.5rem;
}
.card-topic-next::after{
	content: "";
	display: inline-block;
	background: url(../images/package-drop-service/icon-arrow-link.svg) no-repeat center right;
	background-size: contain;
	width: 2rem; height: 1.4rem;
	margin-bottom: -0.2rem;
}
.card-single{
	display: flex;
	align-items: stretch;
}
.card-single-textbox, .card-single-content{
	width: 50%;
}
.card-single-content iframe{
	width: 100%; height: auto;
	aspect-ratio: 16 / 9;
}
.card-single-textbox{
	display: flex;
	align-items: center;
}
.card-single-textbox-wrap{
	padding: 30px 20px;
}
.card-single-title{
	font-size: 2rem;
	font-weight: bold;
}
.card-single-title::after{
	content: "";
	display: block;
	width: 60px; height: 3px;
	margin: 2rem 0;
	background: var(--color-primary);
}
.card-single-text{
	font-size: 1.6rem;
}
.card-single-content, .card-single-content > *{
	border-radius: 0 8px 8px 0;
}
.card-icon, .card-graphic {
	height: auto;
}
.card-icon .card-textbox{
	padding: 10px 20px 20px;
}
.card-icon-title{
	font-size: 2rem;
	font-weight: bold;
}
.card-icon-text{
	font-size: 1.4rem;
	line-height: 1.7;
}
.card-icon-img{
	display: block;
	aspect-ratio: 4/3;
	padding: 20px;
	box-sizing: border-box;
	border-radius: 8px 8px 0 0;
}
.card-icon-img img{
	aspect-ratio: 4/3;
	object-fit: contain;
}
.card-graphic{
	padding: 10px;
}
.card-graphic-img{
	display: flex;
	background: #E0ECDE;
	border-radius: 5px;
}
.card-graphic-img img{
	object-fit: contain;
	aspect-ratio: 16/9;
	padding: 10px;
}
.card-graphic-img.mini img{
	padding: 20px;
}
.card-graphic-img.large img{
	padding: 0;
}
.card-graphic .card-textbox{
	padding: 25px 10px 15px;
	text-align: left;
}
.card-graphic-title{
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.7;
	padding-bottom: 10px;
}
.card-graphic-text{
	font-size: 1.4rem;
	line-height: 1.7;
}
@media (max-width: 960px) {
	.card-topic-horizontal a{
		display: block;
	}
	.card-topic-horizontal a > *{
		width: 100%;
	}
	.card-topic-horizontal a img:first-child{
		border-radius: 8px 8px 0 0;
	}
	.card-single-title{
		font-size: 1.6rem;
	}
	.card-single-title::after{
		width: 40px; height: 2px;
	}
	.card-single-text{
		font-size: 1.4rem;
	}
	.card-single-content > *{
		height: 100%;
		background: #ccc;
		object-fit: contain;
	}
}
@media (max-width: 600px) {
	.cardtitle{
		font-size: 1.6rem;
		margin-top: 30px;
	}
	.card-topic-horizontal, .card-topic-vertical{
		margin-bottom: 20px;
	}
	.card-topic-horizontal a{
		display: block;
	}
	.card-topic-horizontal a > *{
		width: 100%;
	}
	.card-topic-horizontal a img:first-child{
		border-radius: 8px 8px 0 0;
	}
	.card-topic-title{
		margin-bottom: 0;
	}
	.card-textbox{
		padding: 20px;
	}
	.card-single{
		display: block;
		margin: 0 20px;
	}
	.card-single-textbox, .card-single-content{
		width: 100%;
	}
	.card-single-textbox-wrap{
		padding: 25px 20px 20px;
	}
	.card-single-content, .card-single-content > *{
		border-radius: 0 0 8px 8px;
	}
	.card-icon-title{
		font-size: 1.5rem;
	}
	.card-icon-text{
		font-size: 1.2rem;
		text-align: justify;
	}
	.card-icon .card-textbox{
		padding: 0 10px 15px;
	}
}

/* ------- element card ------- */

/* ------- price ------- */
.price-merit{
	display: flex;
	gap: 40px;
	justify-content: center;
}
.price-merit-list{
	width: 25%;
	max-width: 20rem;
	box-shadow: var(--shadow-basic);
	border-radius: 500px;
	text-align: center;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
}
.price-merit-icon{
	width: 30px;
	margin: 0 auto 20px;
}
.price-merit-title{
	font-size: 2rem;
	font-weight: bold;
	line-height: 1;
	color: var(--color-primary);
}
.price-merit-title span{
	font-size: 4rem;
	color: var(--color-black);
	display: block;
	margin: 10px auto 0;
}
.price-service .card-textbox{
	min-height: 4em;
	padding: 0 20px;
	display: flex;
	align-items: center;
}
.price-service-text{
	font-weight: bold;
	text-align: center;
	margin: 20px auto 0;
	line-height: 1.5;
}
.price-service-img img{
	aspect-ratio: 3 / 1;
	padding: 15px 20px 30px;
	margin: 0 auto;
	max-width: 300px;
	object-fit: contain;
}
@media (max-width: 960px) {
	.price-merit{
		gap: 30px;
	}
	.price-merit-list{
		width: 30%;
	}
	.price-merit-icon{
		margin: 0 auto 15px;
	}
	.price-merit-title{
		font-size: 1.8rem;
	}
	.price-merit-title span{
		font-size: 3rem;
		margin: 10px auto 0;
	}
}
@media (max-width: 600px) {
	.price-merit{
		display: block;
		max-width: 450px;
		margin: 0 auto;
	}
	.price-merit::after{
		content: "";
		display: block;
		clear: both;
	}
	.price-merit-list{
		width: 45%;
	}
	.price-merit-list:nth-child(1){
		margin: 0 auto;
	}
	.price-merit-list:nth-child(2){
		float: left;
	}
	.price-merit-list:nth-child(3){
		float: right;
	}
	.price-merit-icon{
		width: 22px; height: 22px;
		margin: 0 auto 15px;
	}
	.price-merit-title{
		font-size: 1.6rem;
	}
	.price-merit-title span{
		font-size: 3rem;
		margin: 10px auto 0;
	}
	.price-service-text{
		font-size: 1.2rem;
		margin: 20px auto 0;
	}
	.price-service-img img{
		padding: 15px 15px 20px;
		max-width: 200px;
	}

}
/* ------- price ------- */

/* ------- installation ------- */
.installation01.bgsection{
	margin-top: 100px;
}
.installation01 .bgsection-wrap .wrap-headcontent{
	align-items: start;
}
.installation01 .bgsection-content-half{
	padding-top: 50px;
}
.installation01 .bgsection-content-half-text{
	margin-top: 0;
}
.installation01 .bgsection-content-half-img{
	margin-top: 0;
}
.installation01 .card-single{
	margin-top: 30px;
}
.installation01 .card-single-title{
	padding-bottom: 0.5em;
}
.installation01 .card-single-title::after{
	content: none;
}
@media (max-width: 960px) {
	.installation01 .card-single-content > * {
		background: none;
	}
}
@media (max-width: 700px) {
	.installation01 .bgsection-content-half-img{
		object-fit: contain;
		margin: 0 0 0 -20px;
	}
	.installation01 .bgsection-content-half{
		padding-top: 0;
	}
	.installation02{
		margin-top: calc((100vw - 20px) / 2);
	}
	.installation02 .bgsection-content-half-img{
		width: calc(100vw - 20px);
		margin-top: -28%;
	}
}
@media (max-width: 600px) {
	.installation02{
		margin-top: calc((100vw - 40px) / 2);
	}
	.installation02 .bgsection-content-half-img{
		width: calc(100vw - 40px);
		margin-top: -28%;
	}
}
/* ------- installation ------- */

/* ------- cooperation ------- */
.cooperation{
	width: 100%;
	table-layout: fixed; /* 幅を指定通りに設定 */
	text-align: left;
	border-radius: 8px 8px 0 0;
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
	font-size: 1.4rem;
}
.cooperation thead{
	background: var(--color-primary);
	color: #fff;
	text-align: center;
	font-weight: bold;
}
.cooperation th{
	border-left: #E5E5E5 solid 1px;
	padding: 0.8em;
}
.cooperation th:first-child{
	border-left: none;
}
.cooperation td{
	border-left: #E5E5E5 solid 1px;
	border-bottom: #E5E5E5 solid 1px;
	padding: 2rem;
	text-align: left;
	vertical-align: middle;
}
.cooperation td:last-child{
	border-right: #E5E5E5 solid 1px;
	text-align: center;
}
th:not(.fixed-width),
td:not(.fixed-width) {
	width: calc((100% - 3em - 4rem) / 3); /* 残りを3等分 */
}
.cooperation .logoimage{
	max-height: 3rem;
	max-width: 15rem;
	width: auto; height: auto;
	margin-bottom: 1rem;
	object-fit: contain;
	object-position: left center;
}
.cooperation .logoimage-s{
	max-height: 6rem;
	max-width: 15rem;
	width: auto; height: auto;
	margin-bottom: 1rem;
	object-position: left center;
}

.cooperation td .service_name{
	display: block;
	font-weight: bold;
}
.cooperation td sup{
	font-size: 0.9rem;
	font-weight: bold;
	color: var(--color-primary);
	vertical-align: super;
}
.cooperation a{
	display: block;
	color: var(--color-primary);
	padding: 0.3em 0;
}
.icon-extarnal{
	display: inline-block;
	background: url(../images/package-drop-service/icon-extarnal.svg) no-repeat center center;
	background-size: 85%;
	width: 1.5em; height: 1.5em;
	margin-bottom: -0.2em;
}
.fixed-width{
	width: calc( 3em + 4rem );
}
.spscroll{
	display: none;
	color: var(--color-primary);
	font-size: 1.2rem;
	font-weight: bold;
	text-align: right;
	padding: 0;
}
.spscroll::after {
	content: "";
	display: inline-block;
	width: 1.6rem; height: 0.9rem;
	background: url(../images/package-drop-service/icon-arrow-primary.svg) no-repeat center center;
	background-size: contain;
	margin-left: 0.5rem;
}

@media (max-width: 600px) {
	.cooperation{
		min-width: 700px;
		font-size: 1.2rem;
		text-align: center;
	}
	.table-wrap{
		width: 100%;
		overflow-x: auto;  /* 横スクロールを可能にする */
		-webkit-overflow-scrolling: touch;  /* iOSでスムーズスクロール */
	}
	.spscroll{
		display: block;
	}
}

/* ------- cooperation ------- */

/* ------- inquiry ------- */
.form-message .headTy{
	font-size: 2rem;
	padding-bottom: 0.5em;
}
.form-message{
	padding-bottom: 20px;
}
form {
	padding: 0 56px;
	margin: 0 auto;
	max-width: 900px;
}
form .clearfix {
	display: inline-flex;
	align-items: center;
	width: 100%;
}
form dl{
	display: flex;
	align-items: center;
	margin-block-start: 1em;
	margin-block-end: calc(1em + 15px);
	margin-inline-start: 0px;
	margin-inline-end: 0px;
}
form dt {
	width: 220px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-right: 8px;
	font-weight: bold;
}
form dt span {
	white-space: nowrap;
	text-align: right;
	font-style: normal;
	font-weight: bold;
	font-size: 16px;
	color: rgb(232, 152, 38);
	padding-right: 8px;
}
@media (max-width: 920px) {
	form .clearfix {
		width: 100%;
		display: block;
	}
	form dt{
		font-size: 14px;
		display: inline-block;
	}
	form dt span {
		font-size: 12px;
		text-align: left;
		margin-left: 15px;
	}
	form dd{
		max-width: 557px;
		margin: 0 auto;
	}
}
@media screen and (max-width: 808px) {
	form {
		width: 100%;
		padding: 0;
	}

}
/* pardot formスタイル上書き */
.pardot-form-wrapper {
	position: relative;
}
.pardot-form-wrapper.pardot-form-wrapper--company {
	/* アスペクト比保持 高さ1072px / 横幅900px * 100% */
	padding-top: calc((1100 / 900) * 100%);
}
.pardot-form-wrapper.pardot-form-wrapper--individual {
	/* アスペクト比保持 高さ1071px / 横幅900px * 100% */
	padding-top: calc((1024 / 900) * 100%);
}
.pardot-form-wrapper .pardot-form {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/* pardotのメディアクエリが変わったところで切り替わるので合わせてみる */
/* memo アスペクト比でiframeの高さ計算 calc(最低でも保持する高さ + 最大の高さ * ((100vw - 最小画面幅) / 最大画面幅 - 最小画面幅)) */
@media screen and (max-width: 980px) {
	.pardot-form-wrapper.pardot-form-wrapper--company {
		padding-top: calc(1000px + 0 * ((100vw - 769px) / 47));
	}
	.pardot-form-wrapper.pardot-form-wrapper--individual {
		padding-top: calc(900px + 0 * ((100vw - 769px) / 47));
	}
}
@media screen and (max-width: 921px) {
	.pardot-form-wrapper.pardot-form-wrapper--company {
		padding-top: calc(1000px + 0 * ((100vw - 769px) / 47));
	}
	.pardot-form-wrapper.pardot-form-wrapper--individual {
		padding-top: calc(880px + 0 * ((100vw - 769px) / 47));
	}
}
@media screen and (max-width: 808px) {
	.pardot-form-wrapper.pardot-form-wrapper--company {
		padding-top: calc(1150px + 0 * ((100vw - 320px) / 448));
	}
	.pardot-form-wrapper.pardot-form-wrapper--individual {
		padding-top: calc(1050px + 0 * ((100vw - 320px) / 448));
	}
}
@media screen and (max-width: 380px) {
	.pardot-form-wrapper.pardot-form-wrapper--company {
		padding-top: calc(1200px + 0 * ((100vw - 320px) / 448));
	}
	.pardot-form-wrapper.pardot-form-wrapper--individual {
		padding-top: calc(1100px + 0 * ((100vw - 320px) / 448));
	}
}

/* ------- inquiry ------- */

/* ------- TOP KV ------- */
.top-kv{
	width: 100%;
	min-height: calc(66.666vw * 0.75 + 70px);
	display: flex;
	align-items: center;
	padding-top: 90px;
	margin-bottom: 50px;
	overflow-x: hidden;
	position: relative;
}
.top-kv-img{
	width: 66.666%;
	height: calc(100% - 70px);
	position: absolute;
	top: 70px;
	right: 0;
	z-index: 0;
}
.top-kv-img img{
	height: 100%;
	border-radius: 0 0 0 100px;
}
.top-kv-textbox{
	display: flex;
	flex-direction: column;
	padding: 0 0 20px 90px;
	position: relative;
	z-index: 1;
}
.top-kv-title{
	font-size: 6rem;
	font-weight: normal;
	margin: 0.4em 0 0.5em -0.1em;
	position: relative;
	z-index: 10;
}
.top-kv-title strong{
	color: var(--color-primary);
	font-weight: normal;
}
.top-kv-text{
	font-size: 1.8rem;
	font-weight: bold;
}
.top-kv-eyecatch{
	order: -1;
}
.top-kv-eyecatch p{
	display: inline-block;
	aspect-ratio: 1 / 1;
	background: var(--color-primary);
	border-radius: 100px;
	color: #fff;
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.5;
	text-align: center;
	padding: 1em;
}
.top-kv-eyecatch strong{
	font-size: 4.5rem;
	line-height: 1.2;
}
.top-number-wrap{
	display: flex;
	gap: 20px;
	justify-content: left;
}
.top-number{
	display: flex;
	background: var(--color-base);
	border-radius: 100px;
	margin-top: 80px;
}
.top-number-title{
	display: flex;
	align-content: center;
	background: var(--color-primary);
	border-radius: 100px 0 0 100px;
	color: #fff;
	padding: 17px 17px 20px;
	position: relative;
}
.top-number-title::after{
	content: "";
	display: block;
	width: 34px; height: 28px;
	position: absolute;
	top: -28px; left: 50%;
	transform: translateX(-45%);
}
.num-partner .top-number-title::after{
	background: url(../images/package-drop-service/icon-kv-pict01.svg) no-repeat center center;
	background-size: contain;
}
.num-building .top-number-title::after{
	background: url(../images/package-drop-service/icon-kv-pict02.svg) no-repeat center center;
	background-size: contain;
}
.top-number-title-text{
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1;
}
.top-number-count{
	font-size: 2rem;
	font-weight: bold;
	line-height: 1;
	vertical-align: middle;
	padding: 12px 20px 10px 15px;
}
.top-number-count strong{
	display: inline-block;
	font-size: 3.8rem;
	color: var(--color-primary);
	vertical-align: middle;
	margin-top: -0.1em;
	margin-right: 0.1em;
}
.top-logo-minimum{
	width: calc(100% - 180px);
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	gap: 50px;
	position: relative;
	z-index: 1;
}
.top-logo-minimum-list{
	display: flex;
	justify-content: center;
	align-items: center;
}
.top-logo-att{
	width: calc(100% - 180px);
	text-align: right;
	margin: 20px auto 0;
}
@media (max-width: 1220px) {
	.top-kv-textbox{
		padding: 0 0 20px 9vw;
	}
	.top-kv-title{
		font-size: 5rem;
	}
	.top-kv-eyecatch p{
		font-size: 1.5rem;
		padding: 1.5em 1em 1em;
	}
	.top-kv-eyecatch strong{
		font-size: 4rem;
	}
	.top-logo-minimum{
		width: 82vw;
	}
}
@media (max-width: 960px) {
	.top-kv-title{
		font-size: 4rem;
	}
	.top-kv-text{
		font-size: 1.6rem;
	}
	.top-kv-eyecatch p{
		font-size: 1.3rem;
		padding: 1.5em 1em 1em;
	}
	.top-kv-eyecatch strong{
		font-size: 3rem;
	}
	.top-number-wrap{
		gap: 10px;
	}
	.top-number{
		margin-top: 60px;
	}
	.top-number-title{
		padding: 18px 17px;
	}
	.top-number-title-text{
		font-size: 1.6rem;
	}
	.top-number-count{
		font-size: 1.6rem;
		padding: 15px 20px 6px 15px;
	}
	.top-number-count strong{
		font-size: 3rem;
		margin-top: -0.1em;
		margin-right: 0.1em;
	}
	.top-logo-minimum-wrap{
		padding-bottom: 40px;
	}
	.top-logo-minimum{
		width: 82vw;
	}
}
@media (max-width: 800px) {
	.top-kv-textbox{
	}
	.top-logo-minimum{
		display: block;
		text-align: center;
	}
	.top-logo-minimum-list{
		width: 100px;
		display: inline-block;
		margin: 20px 20px 0;
	}
	.top-logo-minimum-list.large{
		width: 200px;
	}
	.top-logo-att{
		text-align: center;
	}
}
@media (max-width: 600px) {
	.top-kv{
		min-height: unset;
		display: block;
		padding-top: 50px;
		margin-bottom: 20px;
		position: relative;
	}
	.top-kv-img{
		width: 100%;
		position: static;
	}
	.top-kv-textbox{
		display: block;
		padding: 30px 20px 0;
	}
	.top-kv-title{
		font-size: 2.6rem;
		margin: 0.4em 0 0.5em -0.1em;
	}
	.top-kv-text{
		font-size: 1.4rem;
	}
	.top-kv-eyecatch{
		position: absolute;
		top: -5em; right: -0.5em;
	}
	.top-kv-eyecatch p{
		font-size: 1.5rem;
		padding: 1.3em 0.8em 0;
	}
	.top-kv-eyecatch strong{
		font-size: 3.5rem;
	}
	.top-number-wrap{
		gap: 20px;
	}
	.top-number{
		display: block;
		border-radius: 8px;
		margin-top: 50px;
	}
	.top-number-title{
		display: flex;
		align-content: center;
		border-radius: 8px 8px 0 0;
		padding: 10px;
	}
	.top-number-title::after{
		content: "";
		display: block;
		width: 34px; height: 28px;
		position: absolute;
		top: -28px; left: 50%;
		transform: translateX(-45%);
	}
	.num-partner{
		width: calc((100% - 20px) * 0.33);
	}
	.num-building{
		width: calc((100% - 20px) * 0.66);
	}
	.top-number-title-text{
		font-size: 1.4rem;
		margin:  0 auto;
	}
	.top-number-count{
		font-size: 1.4rem;
		vertical-align: baseline;
		text-align: center;
		padding: 15px 20px;
	}
	.top-number-count strong{
		font-size:  2.6rem;
		vertical-align: baseline;
	}
	.top-logo-minimum-wrap{
		width: 100%;
		padding: 0;
	}
	.top-logo-minimum{
		display: block;
		text-align: center;
	}
	.top-logo-minimum-list{
		width: calc((100% - 40px) * 0.25);
		display: inline-block;
		margin: 10px 10px 0;
	}
	.top-logo-minimum-list.large{
		width: calc((100% - 40px) * 0.5);
		display: block;
		margin: 10px auto 0;
	}
	.top-logo-att{
		margin-top: 10px;
		padding-bottom: 30px;
	}
}
/* ------- TOP KV ------- */

/* ------- TOP merit ------- */
.top-merit{
	margin: 80px 0 80px auto;
	padding-top: 80px;
}
.top-merit:nth-of-type(even){
	background: var(--color-base-positive);
	margin: 80px auto 80px 0;
	border-radius: 0 100px 100px 0;
}
.top-merit .wrap-headcontent{
	width: 100vw;
	flex-direction: row !important;
	align-items: stretch;
}
.top-merit:nth-of-type(even) .bgsection-wrap{
	margin: 0;
}
.top-merit:nth-of-type(even) .wrap-headcontent{
	flex-direction: row-reverse !important;
}
.top-merit .bgsection-content-half-img{
	width: 50%;
	padding-top: 0;
	margin-top: 0;
	object-fit: cover;
}
.top-merit .bgsection-content-half-img img{
	width: 100%; height: 100%;
	padding-top: 0;
	margin-top: 0;
	object-fit: cover;
}
.top-merit .bgsection-content-half{
	width: 50%;
	min-width: 500px;
	padding-top: 0;
	margin-top: 0;
	display: flex;
	justify-content: center;
}
.bgsection-content-half-inner{
	width: 80%;
	max-width: 500px;
}
.top-merit .blocktitle{
	font-size: 4rem;
	font-weight: normal;
	margin-bottom:  25px;
}
.top-merit .blocktitle::after{
	content: none;
}
.top-merit .blocktitle strong{
	color: var(--color-primary);
}
.top-merit:first-of-type .blocktitle{
	margin-top: -0.5em;
}
.top-merit:first-of-type .blocktitle strong{
	font-size: 1.5em;
}
.top-merit .blocktitle sup{
	font-size: 0.3em;
	vertical-align: text-top;
}
.top-merit .blocklead sup{
	font-size: 0.8em;
	vertical-align: text-top;
	line-height: 1;
}
.top-merit .att{
	display: block;
	font-size: 1rem;
	line-height: 1.5;
	margin-top: 0;
}
.top-merit-popupset{
	display: flex;
	align-items: start;
	margin-top: 40px !important;
}
.top-merit-popupbtn{
	display: block;
	cursor: pointer;
	width: calc(50% - 20px);
	padding: 15px;
	background: #fff;
	position: relative;
}
.top-merit:nth-of-type(odd) .top-merit-popupbtn:nth-of-type(odd), .top-merit:nth-of-type(even) .top-merit-popupbtn:nth-of-type(even){
	margin-top: 30px;
}
.top-merit-popupbtn::before{
	content: "";
	display: block;
	background: url(../images/package-drop-service/icon-plus-primary.svg) no-repeat center center;
	background-size: contain;
	width: 15px; height: 15px;
	position: absolute;
	top: 10px; right: 10px;
}
.top-merit-popupbtn-img{
	aspect-ratio: 3 / 2;
	object-fit: contain;
	margin-bottom: 15px;
}
.top-merit-popupbtn-text{
	color: var(--color-primary);
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1.7
}
.top-review{
	margin-top: 40px;
	position: relative;
}
.top-review::after{
	content: "";
	display: block;
	background: url(../images/package-drop-service/icon-quote.svg) no-repeat center center;
	background-size: contain;
	width: 23px; height: 20px;
	position: absolute;
	top: -6px; right: -4px;
}
.top-review-box{
	background: #fff;
	border-radius: 8px;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 20px 20px 20px 10px;
}
.top-review-img{
	width: 70px; height: 70px;
}
.top-review-comment{
	font-size: 1.2rem;
	font-weight: bold;
	line-height: 1.7;
	text-align: justify;
}
.top-review-aux{
	text-align: right;
	font-size: 1.2rem;
	padding-top: 10px;
}
.leadimage img{
	width: 30%;
	max-width: 120px;
	margin-left: 20px;
	float: right;
}
.leadimage::after{
	content: "";
	clear: both;
	display: block;
}
@media (max-width: 1220px) {
	.top-merit .pconly{
		display: none;
	}
	.top-merit{
		margin-right: -20px;
	}
	.top-merit:nth-of-type(even){
		margin-left: -20px;
	}
	.top-merit .wrap-headcontent{
		width: 100vw;
		padding-left: 0;
		margin-left: -40px;
		align-items: stretch;
	}
	.top-merit:nth-of-type(even) .wrap-headcontent{
		padding-right: 0;
		margin-left: auto;
		margin-right: -40px;
	}
	.top-merit .blocktitle{
		font-size: 3.5rem;
		font-weight: normal;
		margin-bottom:  15px;
	}
}
@media (max-width: 960px) {
	.top-merit, .top-merit:nth-of-type(even){
		padding-top: 1px;
		margin-top: calc(100vw * 0.25);
		margin-bottom: calc(100vw * 0.4);
	}
	.top-merit:nth-of-type(4){
		margin-bottom: 80px;
	}
	.top-merit .bgsection-wrap, .top-merit:nth-of-type(even) .bgsection-wrap{
		margin-top: calc(100vw * -0.25);
	}
	.top-merit .wrap-headcontent{
		display: block;
	}
	.top-merit .bgsection-content-half-img{
		width: 90%;
		margin-bottom: 40px;
		aspect-ratio: 16 / 9;
	}
	.top-merit:nth-of-type(even) .bgsection-content-half-img{
		margin-left: auto;
	}
	.top-merit .bgsection-content-half{
		width: 100%;
		min-width: unset;
	}
	.top-merit .bgsection-content-half-inner{
		width: calc(100% - 160px);
		max-width: unset;
	}
}
@media (max-width: 700px) {
	.top-merit .wrap-headcontent{
		width: 100vw;
		margin-left: 0;
	}
	.top-merit:nth-of-type(even) .wrap-headcontent{
		width: 100vw;
		margin-right: 0;
	}
	.top-merit .bgsection-content-half-img{
		width: 90vw;
		margin: 0 auto 40px -40px;
	}
	.top-merit:nth-of-type(even) .bgsection-content-half-img{
		width: calc(90vw + 10px);
		margin: 0 -20px 40px auto;
	}
}
@media (max-width: 600px){
	.top-merit, .top-merit:nth-of-type(even){
		margin: calc(100vw* 0.25) 0 calc(100vw* 0.4);
	}
	.top-merit:nth-of-type(4){
		margin-bottom: 60px;
	}
	.top-merit .wrap-headcontent{
		margin: 0; padding: 0;
	}
	.top-merit .bgsection-content-half-img{
		margin: 0 0 30px 0;
	}
	.top-merit:nth-of-type(even) .bgsection-content-half-img{
		margin: 0 0 30px auto;
	}
	.top-merit .bgsection-content-half-inner{
		width: 100%;
		padding: 0 20px;
	}
	.top-merit .blocktitle{
		font-size: 2.6rem;
		margin-bottom:  15px;
	}
	.top-merit .blocktitle sup{
		font-size: 0.5em;
	}
	.top-merit .blocklead{
		font-size: 1.4rem;
	}
	.top-merit-popupset{
		display: flex;
		flex-direction: row;
		gap: 10px;
		margin-top: 25px !important;
	}
	.top-merit-popupbtn{
		display: flex;
		flex-direction: row;
		align-items: center;
		width: 90%;
		padding: 10px 20px 10px 5px;
	}
	.top-merit:nth-of-type(odd) .top-merit-popupbtn:nth-of-type(odd), .top-merit:nth-of-type(even) .top-merit-popupbtn:nth-of-type(even){
		margin-top: 0;
	}
	.top-merit-popupbtn:nth-of-type(odd){
		margin-left: -10%;
	}
	.top-merit-popupbtn:nth-of-type(even){
		margin-right: -10%;
	}
	.top-merit-popupbtn-text{
		line-height: 1.5;
		text-align: left;
	}
	.top-merit-popupbtn-img{
		width: 40%;
		max-width: 300px;
		margin-bottom: 0;
	}
	.top-review{
		margin-top: 25px;
	}
	.top-review-box{
		padding: 15px 10px;
	}
	.top-review-img{
		width: 70px; height: 70px;
	}
	.leadimage img{
		width: 30%;
		max-width: 120px;
	}
}
/* ------- TOP merit ------- */

/* ------- TOP user ------- */
.top-user{
	background: var(--color-base);
	border-radius: 100px;
	padding-bottom: 30px;
	margin-bottom: 100px;
}
.top-user-kv{
	display: flex;
	align-items: center;
	width: 100%;
	aspect-ratio: 16 / 9;
	margin-bottom: calc(115px + 60px);
	position: relative;
}
.top-user-kv-img {
	width: 100%;
	aspect-ratio: 16 / 9;
	position: absolute;
	top: 0; left: 0;
	z-index: 0;
}
.top-user-kv-img img{
	width: 100%; height: 100%;
	border-radius: 100px 100px 0 0;
}
.top-user-kv-textblock{
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.top-user-kv-textblock .blocktitle{
	font-size: 4.5rem;
	font-weight: normal;
	margin-top: -1.5em;
}
.top-user-kv-textblock .blocklead{
	font-size: 1.8rem;
	font-weight: bold;
}
.top-usermerit{
	display: flex;
	width: 90%;
	max-width: 1200px;
	gap: 50px;
	padding: 30px 50px;
	background: #fff;
	position: absolute;
	bottom: -115px; left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}
.top-usermerit-list{
	display: flex;
	width: 50%;
	gap: 30px;
	align-items: center;
}
.top-usermerit-list-img{
	width: 170px; height: 170px;
}
.top-usermerit-list-text{
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.7;
}
.top-userflow{
	counter-reset: flownum 0;
	width: 960px;
	padding: 0 20px;
	margin: 0 auto;
}
.top-userflow > .card{
	position: relative;
	background: #fff;
}
.top-userflow > .card::before{
	counter-increment: flownum 1;
	content: counter(flownum, decimal-leading-zero);
	font-family: "Oswald", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: 2.5rem;
	border-radius: 8px 0 8px 0;
	color: var(--color-primary);
	padding: 2px 8px 2px 10px;
	background: #fff;
	position: absolute;
	top: 0; left: 0;
}
.top-userflow .card-textbox{
	padding: 15px 10px 5px;
}
.top-userflow .card-graphic-title{
	font-size: 1.4rem;
	text-align: justify;
}
.top-userflow .card-graphic-img img{
	aspect-ratio: 4 / 3;
	padding: 0;
}
.top-usecase{
	margin: 100px auto 0;
}
.top-usecase-headwrap{
	display: flex;
	align-items: center;
	margin-bottom: 60px;
}
.top-usecase-title{
	width: 50%;
	font-size: 3rem;
	text-align: right;
	line-height: 1;
	padding: 15px 30px;
	position: relative;
}
.top-usecase-title::after{
	content: "";
	display: block;
	width: 3px; height: 60px;
	background: var(--color-primary);
	position: absolute;
	top: 50%; right: -1px;
	transform: translateY(-50%);
}
.top-usecase-title strong{
	color: var(--color-primary);
}
.top-usecase-lead{
	width: 50%;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.5;
	padding: 0 30px;
}
.top-usecase-movie{
	max-width: 100%;
	border-radius: 8px;
}
.top-uservoice{
	width: 100%;
	background: #fff;
	border-radius: 8px;
	margin-top: 80px;
	font-size: 1.4rem;
}
.top-uservoice summary{
	list-style: none;
	font-size: 2rem;
	font-weight: bold;
	color: var(--color-primary);
	padding: 30px 3rem 30px 20px;
	position: relative;
	cursor: pointer;
	padding-right: 3rem;
}
.top-uservoice summary::-webkit-details-marker {
	display: none;
}
.top-uservoice summary::after{
	content: "";
	display: block;
	background: url(../images/package-drop-service/icon-faq-plus.svg) no-repeat center center;
	background-size: contain;
	width: 2rem; height: 2rem;
	position: absolute;
	top: 50%; right: 20px;
	transform: translateY(-50%);
}
.top-uservoice details[open] summary::after{
	content: "";
	display: block;
	background: url(../images/package-drop-service/icon-faq-minus.svg) no-repeat center center;
	background-size: contain;
	width: 2rem; height: 2rem;
	position: absolute;
	top: 50%; right: 20px;
	transform: translateY(-50%);
}
.top-uservoice-content-title{
	background: var(--color-black);
	color: #fff;
	font-size: 2rem;
	padding: 20px 30px;
}
.top-uservoice-content-graph{
	width: 85%;
	margin: 50px auto;
	display: flex;
	justify-content: center;
	gap: 30px;
}
.graph-child{
	width: 50%;
	text-align: center;
}
.graph-child p{
	font-size: 1.8rem;
	font-weight: bold;
	margin-bottom: 30px;
}
.top-uservoice-content-summary{
	width: 85%;
	margin: 0 auto 80px;
	border-radius: 8px;
	border: 2px solid var(--color-primary);
	background: var(--color-base);
	display: flex;
}
.top-uservoice-content-summary-title{
	width: 20%;
	max-width: 150px;
	flex-shrink: 0;
	border-radius: 6px 0 0 6px;
	background: var(--color-primary);
	color: #fff;
	display: flex;
	align-items: center;
	padding: 15px 10px;
}
.top-uservoice-content-summary-title h5{
	font-size: 1.6rem;
	text-align: center;
	margin: 0 auto;
}
.top-uservoice-content-summary-title h5::before{
	content: "";
	display: block;
	background: url(../images/package-drop-service/icon-graph-roupe.svg) no-repeat center center;
	background-size: contain;
	width: 36px; height: 36px;
	margin: 0 auto 10px;
}
.top-uservoice-content-summary-text{
	font-weight: bold;
	font-size: 1.6rem;
	line-height: 1.7;
	padding: 20px 30px;
	display: flex;
	align-items: center;
}
.top-uservoice p.att{
	padding-bottom: 20px;
}
@media (max-width: 960px){
	.top-user-kv{
		margin-bottom: calc(85px + 60px);
	}
	.top-user-kv-textblock .blocktitle{
		font-size: 3.5rem;
	}
	.top-user-kv-textblock .blocklead{
		font-size: 1.6rem;
	}
	.top-usermerit-list-img{
		width: 130px; height: 130px;
	}
	.top-usermerit{
		gap: 30px;
		padding: 20px 30px;
		bottom: -85px;
	}
	.top-usermerit-list{
		gap: 20px;
	}
	.top-usermerit-list-text{
		font-size: 1.4rem;
	}
	.top-userflow{
		width: 90%;
		gap: 10px;
	}
	.top-userflow .flex-child-quadruple{
		width: calc(25% - 15px);
	}
	.top-usecase-title{
		width: 50%;
		font-size: 2.4rem;
	}
	.top-usecase-lead{
		font-size: 1.4rem;
	}
	.top-usecase .flex-child-triple{
		margin-bottom: 15px;
	}
	.graph-child p{
		font-size: 1.6rem;
		font-weight: bold;
		margin-bottom: 20px;
	}
}
@media (max-width: 800px){
	.top-user-kv{
		aspect-ratio: 4 / 3;
		position: relative;
	}
	.top-user-kv-img {
		aspect-ratio: 4 / 3;
	}
	.top-usecase .flex-child-triple{
		width: calc(50% - 10px);
	}
	.top-uservoice-content-summary-text{
		font-size: 1.5rem;
		padding: 10px 20px;
	}
}
@media (max-width: 700px){
	.top-user-kv-textblock .blocktitle{
		font-size: 3rem;
	}
	.top-user-kv-textblock .blocktitle::after {
		margin: 2rem 0 2.5rem;
	}
	.top-usermerit-list-img{
		width: 100px; height: 100px;
	}
	.top-usermerit{
		gap: 20px;
		padding: 10px 20px;
		bottom: -70px;
	}
	.top-usermerit-list{
		gap: 20px;
	}
	.top-usermerit-list-text{
		font-size: 1.4rem;
	}
	.top-userflow{
		gap: 20px;
	}
	.top-userflow .flex-child-quadruple{
		width: calc(50% - 15px);
	}
	.top-usecase-headwrap{
		margin-bottom: 50px;
	}
	.top-usecase-title{
		font-size: 2rem;
		padding: 10px 20px;
	}
	.top-usecase-lead{
		font-size: 1.4rem;
		padding: 0 20px;
	}
}
@media (max-width: 600px){
	.top-user{
		border-radius: 50px;
		padding-bottom: 0;
		margin-bottom: 60px;
	}
	.top-user-kv{
		display: block;
		margin-bottom: 40px;
	}
	.top-user-kv-img {
		position: static;
	}
	.top-user-kv-img img{
		width: 100%; height: auto;
		border-radius: 50px 50px 0 0;
	}
	.top-user-kv-textblock{
		width: 100%;
		max-width: unset;
		margin: 0 auto;
		padding: 0 20px;
		text-align: center;
	}
	.top-user-kv-textblock .blocktitle{
		font-size: 2.8rem;
		font-weight: normal;
		margin-top: 50px;
	}
	.top-user-kv-textblock .blocktitle::after{
		margin: 30px auto 25px;
	}
	.top-user-kv-textblock .blocklead{
		font-size: 1.4rem;
	}
	.top-usermerit{
		flex-direction: column;
		width: calc(100% - 40px);
		max-width: unset;
		margin: 25px auto 0;
		gap: 10px;
		padding: 15px;
		position: static;
		transform: unset;
	}
	.top-usermerit-list{
		width: 100%;
		gap: 15px;
	}
	.top-usermerit-list-img{
		width: 30%; height: auto;
		min-width: 90px;
	}
	.top-usermerit-list-text{
		width: 70%;
		font-size: 1.2rem;
	}
	.top-userflow.spscroll{
		display: flex;
		justify-content: unset;
		flex-wrap: nowrap;
		width: 100%;
		gap: 15px;
		overflow: auto;
		padding: 20px 20px 20px 40px;
		margin: 0;
	}
	.top-userflow.spscroll .flex-child-quadruple{
		display: block;
		width: 70%;
		flex-shrink: 0;
	}
	.top-usecase{
		margin: 60px auto;
	}
	.top-usecase-headwrap{
		display: block;
		margin-bottom: 0;
	}
	.top-usecase-title{
		width: 100%;
		font-size: 2.2rem;
		text-align: center;
		padding: 15px 20px;
	}
	.top-usecase-title::after{
		width: 60px; height: 3px;
		margin: 20px auto 10px;
		position: static;
		transform: unset;
	}
	.top-usecase-lead{
		width: 100%;
		font-size: 1.4rem;
		text-align: center;
		padding: 0 20px;
	}
	.top-usecase .flex-child-triple{
		width: 90%;
		margin: 0 auto;
	}
	.top-uservoice{
		margin-top: 50px;
		font-size: 1.4rem;
	}
	.top-uservoice summary{
		font-size: 1.6rem;
		padding: 15px 3rem 15px 15px;
	}
	.top-uservoice summary::after{
		top: 50%; right: 14px;
	}
	.top-uservoice details[open] summary::after{
		top: 50%; right: 15px;
	}
	.top-uservoice-content-title{
		font-size: 1.6rem;
		padding: 10px 15px;
	}
	.top-uservoice-content-graph{
		width: 85%;
		margin: 30px auto;
		flex-direction: column;
		gap: 30px;
	}
	.graph-child{
		width: 100%;
	}
	.graph-child p{
		font-size: 1.4rem;
		margin-bottom:  15px;
	}
	.top-uservoice-content-summary{
		width: 85%;
		margin: 0 auto 40px;
		border: none;
		background: none;
		display: block;
	}
	.top-uservoice-content-summary-title{
		width: auto;
		border-radius: 8px 8px 0 0;
		display: inline-block;
		padding: 5px 10px;
	}
	.top-uservoice-content-summary-title h5{
		font-size: 1.4rem;
		line-height: 2rem;
		margin: 0;
	}
	.top-uservoice-content-summary-title h5::before{
		display: inline-block;
		width: 1.9rem; height: 1.9rem;
		margin: 0 0.4rem -0.4rem 0;
	}
	.top-uservoice-content-summary-text{
		font-size: 1.2rem;
		padding: 12px 18px;
		border: 2px solid var(--color-primary);
		background: var(--color-base);
		border-radius: 0 8px 8px 8px;
	}
}
/* ------- TOP user ------- */

/* ------- TOP case ------- */
.top-case-partner{
	text-align: center;
	margin-top: 80px;
	padding-bottom: 0;
}
.top-case-partner-title{
	font-size: 2.5rem;
	margin-bottom: 20px;
}
.top-case-partner-lead{
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 40px;
}
.top-case-partner-list{
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	justify-content: center;
}
.top-case-partner-list li{
	width: calc((100% - 20px) / 5);
	min-height: 0;
	aspect-ratio: 16 / 9;
	padding: 2% 4%;
	background: #f9f9f9;
	border-radius: 4px;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
}
.top-case-partner-list li img{
	width: 100%; height: auto;
	aspect-ratio: 16 / 9;
	object-fit: contain;
}
.top-case-partner-list li.large{
	padding: 1.5%;
}
.top-case-partner-list li.square{
	padding: 4%;
}
@media (max-width: 800px){
	.top-case-partner-list li{
		width: calc((100% - 20px) / 4);
	}
}
@media (max-width: 600px){
	.top-case-partner{
		margin-top: 60px;
	}
	.top-case-partner-title{
		font-size: 1.6rem;
		margin-bottom: 10px;
	}
	.top-case-partner-lead{
		font-size: 1.5rem;
		font-weight: normal;
		margin-bottom: 20px;
	}
	.top-case-partner-list li{
		width: 32%; min-height: 0;
		padding: 2% 4%;
	}
	.top-case-partner-list li.large{
		padding: 2%;
	}
	.top-case-partner-list li.square{
		padding: 5%;
	}
}


/* ------- TOP case ------- */

/* ------- TOP popup ------- */
.popup-wrap {
	display: none;
	position: fixed;
	z-index: 1000; /*サイトによってここの数値は調整 */
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding-bottom: 0;
}
.popup-bg {
	width: 100%;
	height: 100%;
	background-color: rgba(30,30,30,0.6);
}
.popup-area {
	position: absolute;
	top: 50%;
	left: 50%;
	transform:translate(-50%,-50%);
	width: 70%;
	max-width: 800px;
	max-height: 80%;
	padding: 60px 50px;
	background: #fff;
	border-radius: 20px;
	overflow: auto;
}
.popup-area h1{
	font-size: 2.5rem;
	margin-top: 0;
}
.popup-area h1::after{
	content: "";
	display: block;
	width: 60px; height: 3px;
	background: var(--color-primary);
	margin: 30px 0;
}
.popup-content{
	display: flex;
	justify-content: space-between;
}
.popup-content-child{
	width: calc(50% - 15px);
}
.popup-content-child .popup-content-img{
	width: 100%;
}
.popup-content-text{
	width: calc(100% - 330px);
	display: block;
}
.popup-content-text.single{
	width: 100%;
}
.popup-content-text p, .popup-content-child p{
	padding-bottom: 20px;
}
.popup-content-img{
	width: 300px;
	margin-bottom: 30px;
}
.popup-content p, .popup-source a, .popup-content h2{
	font-size: 1.4rem;
}
.popup-source{
	padding-top: 20px;
}
.popup-source li{
	font-size: 1.2rem;
	line-height: 1.5;
	padding-left: 1.2em;
	padding-top: 0.5em;
}
.popup-source li::before{
	content: "・";
	margin-left: -1.2em;
	padding-right: 0.2em;
}
.popup-source a{
	text-decoration: underline;
	color: var(--color-black);
}
.close-popup {
	position: absolute;
	top: 1rem;
	right: 1rem;
	cursor: pointer;
}
@media (max-width: 960px){
	.popup-area {
		width: 85%;
		max-height: 85%;
		padding: 40px;
	}
	.popup-area h1{
		font-size: 2.2rem;
	}
	.popup-content-text, .popup-content-img{
		width: calc(50% - 15px);
	}
	.popup-content-img img{
		width: 100%;
	}
}
@media (max-width: 600px){
	.popup-area {
		width: 80%;
		max-width: unset;
		max-height: 80%;
		padding: 40px 30px 30px;
	}
	.popup-content{
		display: block;
	}
	.popup-content-text, .popup-content-child{
		width: 100%
	}
	.popup-content-child + .popup-content-child{
		margin-top: 20px;
	}
	.popup-content-text p{
		padding-bottom: 15px;
	}
	.popup-content-img{
		width: 100%;
		max-width: 300px;
		margin: 10px auto 20px;
	}
	.popup-content p, .popup-source a, .popup-content h2{
		font-size: 1.4rem;
	}
	.popup-source{
		padding-top: 20px;
	}
	.popup-source li{
		font-size: 1.2rem;
		line-height: 1.5;
		padding-left: 1.2em;
		padding-top: 0.5em;
	}
	.popup-source li::before{
		content: "・";
		margin-left: -1.2em;
		padding-right: 0.2em;
	}
	.popup-source a{
		text-decoration: underline;
		color: var(--color-black);
	}
}

/* ------- TOP popup ------- */


/* ------- header ------- */
.strHeader.okihai {
	background-color: rgba(255 255 255 / 0.96);
}
.strHeader.okihai .strHeader__inner{
	padding: 4px 40px;
}
.strHeader.okihai .strHeader__inner .headerContact > a{
	display: block;
	background: linear-gradient(to top right, #DA2B1D,#E89925);
	color: #fff;
	text-align: center;
	border-radius: 10em;
	padding: 11px;
	border: 0px;
}
.strHeader.okihai .headerLogo{
	width: auto;
	max-width: 200px;
}
.strHeader.okihai .headerGlobal{
	width: calc(100% - 206px - 200px);
	padding: 0 40px;
}
.strHeader.okihai .headerGlobal__list{
	justify-content: start;
	gap: 0px;
}
.strHeader.okihai .headerGlobal__list li{
	width: auto;
	line-height: 1.25;
}
.strHeader.okihai .headerGlobal__list > li > a{
	padding: 24px 16px;
}
.strHeader.okihai .headerGlobal__list > li > a:hover {
	color: #DA2B1D;
}

@media (max-width: 1000px) {
	.strHeader.okihai .strHeader__inner{
		padding: 11px 20px 11px;
	}
	.strHeader.okihai .headerLogo {
		width: 145px;
		margin-top: 0;
	}
	.strHeader.okihai .headerContact{
		width: 208px;
		font-size: 14px;
	}
	.strHeader.okihai .headerGlobal {
		width: calc(100% - 208px - 145px);
	}
}

@media (max-width: 980px) {
	.strHeader.okihai .headerGlobal{
		padding: 0 32px;
	}
	.strHeader.okihai .headerGlobal__list > li > a{
		font-size: 12px;
		padding: 24px 8px;
	}
}

@media (max-width: 768px) {
	.strHeader.okihai {
		height: auto;
	}
	.strHeader.okihai .headerGlobal {
		display: none;
	}
}


.headerGlobalSp.okihai {
	background: #fff;
	color: #DA2B1D;
}
.headerGlobalSp__inner .listBox:first-child {
	padding-top: 16px;
}
.headerGlobalSp__inner .listBox{
	padding: 32px 0 16px;
}
.headerGlobalSp__inner .listBox .listBoxTtl{
	line-height: 1;
}
.headerGlobalSp__list > li > a{
	border-bottom: 1px solid #DA2B1D;
	color: #3c3c3c;
	line-height: 1.25;
	font-size: 16px;

}
.headerGlobalSp .btnBase{
	background:linear-gradient(to top right, #DA2B1D,#E89925);
	color: #fff;
}
.headerGlobalSp__button > a > span:before,
.headerGlobalSp__button > a > span:after {
	background-color: #DA2B1D;
	border: 1px solid;
}
.headerMenuBtn > a > span:before,
.headerMenuBtn > a:before,
.headerMenuBtn > a > span:after {
	background-color: #DA2B1D;
}

/* ------- header ------- */

/* ------- footer ------- */
.footer-cva{
	width: 100%;
	display: flex;
}
.footer-cva-text{
	display: block;
	width: 50%;
	background: var(--color-base-positive);
	padding: 70px 40px;
	text-align: center;
}
.footer-cva-text p{
	display: inline-block;
	margin: 0 auto;
	font-size: 2.6rem;
	text-align: left;
}
.footer-cva-btn{
	display: flex;
	align-items: stretch;
	width: 50%;
	background: var(--gradient);
}
.footer-cva-btn a{
	display: flex;
	align-items: center;
	width: 100%;
	padding-left: 50px;
	font-size: 3rem;
	position: relative;
}
.footer-cva-btn a::after{
	content: "";
	display: block;
	background: url(../images/package-drop-service/icon-arrow-white.svg) no-repeat center center;
	background-size: contain;
	width: 3em; height: 1.5em;
	position: absolute;
	top: 50%; right: 40px;
	transform: translateY(-50%);
}
.footer-cva-btn a p{
	color: #fff;
	font-size: 3rem;
	font-weight: bold;
	width: calc(100% - 4.5em);
}
footer {
	color: #ffffff;
	background-color: #595A5E;
	padding: 64px 0 24px;
}
.footer-btnarea{
	width: 100%;
	text-align: center;
	padding-bottom: 64px;
}
.footer-menu__item {
	width: -webkit-fill-available;
	text-align: center;
}
.footer-menu__item a {
	text-decoration: unset;
	font-size: 14px;
	color: #ffffff;
	font-weight: bold;
	display: block;
	padding: 1em;
}
.footer-menu {
	color: #ffffff;
	width:50%;
	margin:0 auto;
}
.footer-menu-item {
	display: flex;
	justify-content: space-between;
	flex-direction: row;
	width: 100%;
}
.footer-menu-item__lead p {
	font-size: 14px;
	font-weight: bold;
	color: #ffffff;
}
.footer-menu-item__link {
	margin-top: 14px;
}
.footer-menu-item__link a {
	font-size: 14px;
	color: #ffffff;
	font-weight: bold;
}
.footer-menu-item__link a:hover {
	text-decoration: unset;
}
.footer-menu-item__link a::before {
	content: "";
	width: 15px;
	height: 15px;
	margin-right: 10px;
	display: inline-block;
	vertical-align: middle;
	background: no-repeat center/contain;
	background-image: url(../images/icon-blank-1.svg);
}
.footer-end {
	margin-top: 40px;
}
.footer-end__img img {
	width: 160px;
}
.footer-end-link {
	margin-top: 23.5px;
}
.footer-end-link a {
	font-size: 14px;
	font-weight: bold;
	color: #ffffff;
}
.footer-end-link a:hover {
	text-decoration: unset;
}
.footer-end-link a:nth-child(1) {
	margin-right: 30px;
}
.footer-reverse {
	margin: 62px 0 25px 0;
	text-align: center;
	font-weight: bold;
	font-size:12px;
	color:#ffffff;
}

@media (max-width: 980px) {
	.footer-cva-text{
		padding: 30px;
	}
	.footer-cva-text p{
		font-size: 2rem;
	}
	.footer-cva-btn a{
		font-size: 2.5rem;
	}
	.footer-cva-btn a::after{
		width: 2.6em; height: 1.3em;
		right: 30px;
	}
	.footer-cva-btn a p{
		font-size: 2.5rem;
		width: calc(100% - 3.5em);
	}
	.footer-menu {
		padding: 0 24px 24px;
		width: 100%;
	}
	.footer-reverse{
		font-size: 12px;
	}
}
@media (max-width: 576px) {
	.footer-cva{
		width: 100%;
		display: block;
	}
	.footer-cva-text{
		width: 100%;
		padding: 20px;
		text-align: center;
	}
	.footer-cva-text p{
		font-size: 1.4rem;
		text-align: center;
	}
	.footer-cva-btn{
		display: block;
		width: 100%;
	}
	.footer-cva-btn a{
		width: 100%;
		padding: 40px 20px;
		font-size: 1.8rem;
		position: relative;
	}
	.footer-cva-btn a::after{
		width: 2.4em; height: 1.2em;
		right: 20px;
	}
	.footer-cva-btn a p{
		font-size: 1.8rem;
		width: calc(100% - 3em);
	}
	.footer {
		padding: 40 0px 24px;
	}
	footer {
		padding-top: 10px;
	}
	.footer-btnarea{
		padding-bottom: 30px;
	}
	.footer-menu-item{
		flex-direction: column;
	}
	.foot-end{
		margin: 38px 0 0 0;
	}
	.footer-reverse{
		margin: 62px 0 0 0;
	}
	.footer-menu-item-group{
		width: 100%;
	}
	.footer-menu-item__link{
		margin-top: 10px;
	}
	.footer-end-link{
		margin-top: 21px;
	}
}


/* ------- footer ------- */

/* ------- 以下リニューアル前より変更なし ------- */

/* 連携/パートナーイベント */
.secOkihai.cooperation-overview{
	padding: 192px 0 120px;
	background-color: #F7F7F7;
}
.secOkihai.cooperation-overview .inner{
	max-width: 780px;
	width: 100%;
	margin: 0 auto;
}
.secOkihai.cooperation-overview .textBox h1{
	line-height: 1.25;
	font-size: 32px;
	margin: 0 0 32px;
}
.secOkihai.cooperation-overview .textBox p{
	font-weight: bold;
}
.secOkihai.cooperation-overview .textBox.annotation{
	margin-top: 80px;
}
.secOkihai.cooperation-overview .textBox.annotation p{
	font-size: 12px;
	font-weight: normal;
}

.cooperation-event-box .secOkihai.cooperation-event:last-of-type {
	padding-bottom: 120px;
}
.secOkihai.cooperation-event {
	background-color: #f7f7f7;
	padding: 0 0 40px;
}
.secOkihai.cooperation-event.event-detail{
	padding: 192px 0 0px;
}
.secOkihai.cooperation-event .inner{
	max-width: 980px;
	width: 100%;
	background-color: #FFF;
	padding: 80px 40px;
	margin: 0 auto;
}

.secOkihai.cooperation-event .event_top{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.secOkihai.cooperation-event .event_top .about{
	max-width: 600px;
	width: 50%;
	padding: 0 16px 0 0;
}
.secOkihai.cooperation-event .event_top .about .fee {
	padding-bottom: 16px;
}
.secOkihai.cooperation-event .event_top .about .fee h3{
	font-size: 24px;
	font-weight: bold;
	line-height: 1.5;
}
.secOkihai.cooperation-event .event_top .about .fee .fee-money{
	font-size: 32px;
	font-weight: bold;
	line-height: 1.5;
	color: #D4321F;
}
.secOkihai.cooperation-event .event_top .about h1{
	font-size: 32px;
	margin: 0 0 0.67em;
}
.secOkihai.cooperation-event .event_top .about h2{
	font-size: 24px;
	margin-bottom: 40px;
}
.secOkihai.cooperation-event .event_top .about .btnBox {
	margin-top: 40px;
}
.secOkihai.cooperation-event .event_top .about .btnBox a{
	display: table;
	color: #3c3c3c;
	border-bottom: 1px solid;
	margin: 0 0 8px;
}
.secOkihai.cooperation-event .event_top .about .btnBox p{
	font-size: 14px;
	line-height: 1.25;
	margin: 0 0 4px;
}
.secOkihai.cooperation-event .event_top .about .btnBox p::before {
	content: "";
	width: 16px;
	height: 16px;
	margin: 0 4px 4px 0px;
	display: inline-block;
	vertical-align: middle;
	background: no-repeat center/contain;
	background-image: url(../images/icon-blank-3.svg);
}
.secOkihai.cooperation-event .event_top .about p{
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 16px;
}
.secOkihai.cooperation-event .event_top .about p span.sub{
	font-size: 14px;
}
.secOkihai.cooperation-event .event_top .outline {
	max-width: 600px;
	width: 50%;
	padding: 0 0 0 16px;
}
.secOkihai.cooperation-event .event_top .outline .imgBox {
	max-width: 240px;
	margin: 0 0 40px auto;
}
.secOkihai.cooperation-event .event_top .outline .imgBox img{
	max-height: 80px;
	width: auto;
	margin: 0 0 0 auto;
}
.secOkihai.cooperation-event .event_top .outline .textBox{
	margin-bottom: 32px;
}
.secOkihai.cooperation-event .event_top .outline .textBox h3{
	margin-bottom: 32px;
}
.secOkihai.cooperation-event .event_annotation {
	max-width: 560px;
	margin: 0 auto;
}
.secOkihai.cooperation-event .event_annotation p{
	font-size: 14px;
	line-height: 1.5;
}
.secOkihai.cooperation-event .event_annotation p a{
	margin: 0;
	display: contents;
	color: #D4321F;
}

.secOkihai.cooperation-event a {
	display: table;
	margin: 40px auto 0;
}
.secOkihai.cooperation-event a .btn {
	background: linear-gradient(40deg, #DA2B1D,#E89925);
	border-radius: 2em;
	min-width: 200px;
	padding: 14px 30px;
	transition: 0.3s;
	opacity: 1;
	text-align: center;
}
.secOkihai.cooperation-event a .btn p {
	color: #fff;
	font-weight: bold;
}

.secOkihai.cooperation-event .features{
	width: 100%;
	padding: 40px 0 0;
}
.secOkihai.cooperation-event .features h3{
	font-size: 14px;
	font-weight: normal;
	margin: 0 0 0.67em;
}
.secOkihai.cooperation-event .features p{
	font-weight: bold;
	line-height: 1.5;
	margin: 0 0 8px;
}

.secOkihai.cooperation-event .eventContent {
	max-width: 1200px;
	margin: 0 auto;
	padding: 24px 0px;
}
.secOkihai.cooperation-event .contentRow {
	display: flex;
	flex-direction: row;
	width: 100%;
	border-bottom: 1px solid;
	padding: 16px 8px;
}
.secOkihai.cooperation-event .contentRow .rowLeft {
	width: 25%;
}
.secOkihai.cooperation-event .contentRow .rowLeft h4 {
	font-size: 14px;
	font-weight: bold;
	line-height: 1.5;
	padding: 8px 0;
}
.secOkihai.cooperation-event .contentRow .rowRight {
	width: 75%;
}
.secOkihai.cooperation-event .contentRow .rowRight .rowRightGroup{
	width: 100%;
	display: flex;
	flex-direction: row;
	padding: 8px 24px 8px 0;
}
.secOkihai.cooperation-event .contentRow .rowRight .rowRightGroup p{
	line-height: 1.5;
	font-size: 14px;
}
.secOkihai.cooperation-event .contentRow .rowRight .rowRightGroup p.sub{
	font-size: 12px;
	margin-top: 16px;
}
.secOkihai.cooperation-event .contentRow .rowRight .rowRightGroup ul{
	list-style: disc;
	margin-left: 1.5em;
	font-size: 14px;
}
.secOkihai.cooperation-event .contentRow .rowRight .rowRightGroup p,
.secOkihai.cooperation-event .contentRow .rowRight .rowRightGroup ul{
	margin-top: 8px;
}
.secOkihai.cooperation-event .contentRow .rowRight .rowRightGroup p:first-child,
.secOkihai.cooperation-event .contentRow .rowRight .rowRightGroup ul:first-child{
	margin-top: 0;
}
.secOkihai.cooperation-event .contentRow .rowRight .rowRightGroup .right100{
	width: 100%;
}
.secOkihai.cooperation-event .contentRow .rowRight .rowRightGroup .right50 {
	width: 50%;
}
.secOkihai.cooperation-event .contentRow .rowRight .rowRightGroup .right66{
	width: 66.66%;
}
.secOkihai.cooperation-event .contentRow .rowRight .rowRightGroup .right33{
	width: 33.33%;
}
.secOkihai.cooperation-event .contentRow .rowRight .rowRightGroup .right100,
.secOkihai.cooperation-event .contentRow .rowRight .rowRightGroup .right50,
.secOkihai.cooperation-event .contentRow .rowRight .rowRightGroup .right66,
.secOkihai.cooperation-event .contentRow .rowRight .rowRightGroup .right33 {
	padding-left: 24px;
}

.secOkihai.cooperation-btn {
	background-color: #F7F7F7;
	padding: 80px 0 120px;
}
.secOkihai.cooperation-btn a{
	display: table;
	margin: 0 auto;
}
.secOkihai.cooperation-btn a .btn{
	background-color: #ffffff;
	border: 2px solid #E89925;
	border-radius: 2em;
	min-width: 240px;
	padding: 14px 30px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	opacity: 1;
	text-align: center;
}
.secOkihai.cooperation-btn a .btn p{
	color: #3c3c3c;
	font-weight: bold;
}

/*追加分*/
.secOkihai.conditions {
	background-color: #f9e7cd;
	padding: 120px 0 80px;
}
.secOkihai.conditions .inner{
	max-width: 100%;
	width: 100%;
}
.secOkihai.conditions .ttlarea{
	max-width: 980px;
	margin: 0 auto 80px;
	text-align: center;
	display: table;
}
.secOkihai.conditions .ttlarea h2{
	padding-bottom: 16px;
	border-bottom: 4px solid #3c3c3c;
	margin-bottom: 24px;
	font-size: 32px;
}
.secOkihai.conditions .ttlarea p{
	line-height: 1.75;
}
.secOkihai.conditions .item{
	width: 100%;
}
.secOkihai.conditions .itemList{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-evenly;
	align-items: flex-start;
	max-width: 1200px;
	margin: 0 auto;
}
.secOkihai.conditions .itemList li{
	width: 240px;
	margin-bottom: 40px;
}
.secOkihai.conditions .itemList li .hero{
	height: 160px;
	margin: 0 auto 32px;
	width: 160px;
}
.secOkihai.conditions .itemList li .hero .imgBox{
	background-size: 100% auto;
	width: 100%;
	height: 100%;
}
.secOkihai.conditions .itemList li.item01 .hero .imgBox{
	background-image: url(../images/special/package-drop-service/conditions-okihai_01.svg);
	background-repeat: no-repeat;
}
.secOkihai.conditions .itemList li.item02 .hero .imgBox{
	background-image: url(../images/special/package-drop-service/conditions-okihai_02.svg);
	background-repeat: no-repeat;
}
.secOkihai.conditions .itemList li.item03 .hero .imgBox{
	background-image: url(../images/special/package-drop-service/conditions-okihai_03.svg);
	background-repeat: no-repeat;
}
.secOkihai.conditions .itemList li.item04 .hero .imgBox{
	background-image: url(../images/special/package-drop-service/conditions-okihai_04.svg);
	background-repeat: no-repeat;
}
.secOkihai.conditions .itemList li .info{
	text-align: center;
}
.secOkihai.conditions .itemList li .info .textBox h3{
	margin-bottom: 16px;
}
.secOkihai.conditions .itemList li .info .textBox p{
	line-height: 1.75;
}
.secOkihai.conditions .itemList li.item03 .info .textBox p{
	margin-bottom: 16px;
}
.secOkihai.conditions .itemList li.item03 .info .textBox p:last-child{
	margin-bottom: 0px;
}
.secOkihai.conditions .itemList li .info .textBox p.sub{
	font-size: 12px;
}
.secOkihai.conditions.event-merit {
	font-size: 24px;
}
.secOkihai.conditions.event-merit .ttlarea h2 {
	padding-bottom: 0;
	border-bottom: none;
	margin-bottom: 0;
	font-size: 32px;
}
.secOkihai.conditions.event-merit .itemList li {
	width: 360px;
}
.secOkihai.conditions.event-merit .itemList li.item01 .hero .imgBox{
	background-image: url(../images/package-drop-service/event-merit_01.svg);
	background-repeat: no-repeat;
}
.secOkihai.conditions.event-merit .itemList li.item02 .hero .imgBox{
	background-image: url(../images/package-drop-service/event-merit_02.svg);
	background-repeat: no-repeat;
}

@media (max-width: 1280px) {
}
@media (max-width: 1080px) {
	.secOkihai.cooperation-overview{
		padding: 120px 0 80px;
	}
	.secOkihai.cooperation-overview .textBox.annotation{
		margin-top: 40px;
	}
}
@media (max-width: 980px) {
	.secOkihai.cooperation-overview .info{
		padding: 0 24px;
	}

	.secOkihai.cooperation-event{
		padding: 0 24px 40px;
	}
	.secOkihai.cooperation-event.event-detail{
		padding: 120px 16px 0px;
	}

	.secOkihai.cooperation-event .inner{
		padding: 40px 24px;
	}

	.secOkihai.cooperation-event{
		padding: 0px 24px 80px;
	}
	.secOkihai.cooperation-event.first{
		padding: 120px 0 80px;
	}
	.secOkihai.cooperation-event .event_top {
		display: block;
		padding: 0 40px;
	}
	.secOkihai.cooperation-event .event_top .about{
		max-width: 100%;
		width: 100%;
		padding: 0;
		margin-bottom: 80px;
	}
	.secOkihai.cooperation-event .event_top .outline{
		max-width: 100%;
		width: 100%;
		padding: 0;
	}
	.secOkihai.cooperation-event .event_top .outline .imgBox{
		max-width: 200px;
		margin: 0 0 32px;
	}
	.secOkihai.cooperation-event .event_top .outline .imgBox img{
		margin: 0;
	}

	.secOkihai.cooperation-event .contentRow{
		display: block;
		border: none;
		padding: 16px 0px;
	}
	.secOkihai.cooperation-event .contentRow .rowLeft{
		width: 100%;
		padding-bottom: 8px;
		border-bottom: 1px solid;
	}
	.secOkihai.cooperation-event .contentRow .rowRight{
		padding-top: 8px;
		width: 100%;
	}
	.secOkihai.cooperation-event .contentRow .rowRight .rowRightGroup .right100,
	.secOkihai.cooperation-event .contentRow .rowRight .rowRightGroup .right50,
	.secOkihai.cooperation-event .contentRow .rowRight .rowRightGroup .right66,
	.secOkihai.cooperation-event .contentRow .rowRight .rowRightGroup .right33 {
		padding-left: 0px;
	}

	.secOkihai.cooperation-event .features{
		padding: 40px 40px 0;
	}
	.secOkihai.cooperation-event .eventContent{
		padding: 24px 40px 0;
	}
}
@media (max-width: 780px) {
	.secOkihai.cooperation-overview .textBox h1{
		font-size: 24px;
		margin: 0 0 0.67em ;
	}

	.cooperation-event-box .secOkihai.cooperation-event:last-of-type {
		padding-bottom: 80px;
	}
	.secOkihai.cooperation-event {
		padding: 0px 16px 40px;
	}
	.secOkihai.cooperation-event .inner{
		padding: 40px 0px;
	}

	.secOkihai.cooperation-event .event_top{
		padding: 0 16px;
	}
	.secOkihai.cooperation-event .event_top .about {
		margin-bottom: 40px;
	}
	.secOkihai.cooperation-event .event_top .about h1{
		font-size: 24px;
		margin: 0 0 0.67em;
	}
	.secOkihai.cooperation-event .event_top .about h2{
		font-size: 20px;
		margin-bottom: 32px;
	}
	.secOkihai.cooperation-event .event_top .outline .imgBox{
		max-width: 200px;
		margin: 0 0 24px;
	}
	.secOkihai.cooperation-event .event_top .outline .imgBox img{
		max-height: 72px;
	}
	.secOkihai.cooperation-event .event_top .outline .textBox h3{
		font-size: 20px;
	}

	.secOkihai.cooperation-event .features{
		padding: 40px 16px 0;
	}
	.secOkihai.cooperation-event .event_annotation{
		padding: 0 16px;
	}
	.secOkihai.cooperation-event .eventContent {
		padding: 24px 16px 0;
	}
	.secOkihai.cooperation-event .contentRow {
		padding: 16px 0;
	}
	.secOkihai.cooperation-event .contentRow .rowRight .rowRightGroup{
		display: block;
	}
	.secOkihai.cooperation-event .contentRow .rowRight .rowRightGroup > div:first-child{
		margin-bottom: 8px;
	}
	.secOkihai.cooperation-event .contentRow .rowRight .rowRightGroup .right50,
	.secOkihai.cooperation-event .contentRow .rowRight .rowRightGroup .right66,
	.secOkihai.cooperation-event .contentRow .rowRight .rowRightGroup .right33 {
		width: 100%;
		padding-left: 0px;
	}
	.secOkihai.cooperation-event a {
		margin: 40px auto 0;
	}

	.secOkihai.cooperation-btn {
		padding: 40px 0;
	}

}

/* 導入事例一覧 */
.secOkihai.caseList .ttlarea h2{
	border-bottom: none;
}
.secOkihai.caseList .case{
	margin: 0 auto;
}

@media (max-width: 1080px) {
	.secOkihai.caseList{
		padding: 120px 0 80px;
	}
}

@media (max-width: 780px) {
	.secOkihai.caseList{
		padding: 120px 0 40px;
	}
}

/* 導入事例 */
.secOkihai.case {
	padding: 192px 0 120px;
	background-color: #F7F7F7;
}
.secOkihai.case .inner{
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
}
.secOkihai.case .caseBox{
	margin-top: 40px;
	display: block;
	max-width: 780px;
	margin: auto;
	padding-bottom: 72px;
}
.secOkihai.case .caseBox:first-child{
	margin-top: 0;
}
.secOkihai.case .caseBox .imgBox{
	width: 100%;
	max-width: 100%;
}
.secOkihai.case .caseBox .imgBox img{
	width: 100%;
}
.secOkihai.case .caseBox h2{
	font-size: 24px;
	margin: 0 0 40px;
	padding: 8px 0 8px 16px;
	border-left: 8px solid #DA2B1D;
	border-image: linear-gradient(to top, #DA2B1D 0%, #E89925 100%);
	border-image-slice: 1;
}
.secOkihai.case .caseBox p{
	margin: 0 0 40px;
}
.secOkihai.case .caseBox p a{
	color: #D4321F;
}
.secOkihai.case .caseBox p:last-child{
	margin: 0 0 0px;
}
.secOkihai.case .caseBox p span{
	font-weight: bold;
}

.secOkihai.case .caseBox.overview {
	padding-bottom: 72px;
}
.secOkihai.case .caseBox.overview h1{
	font-size: 32px;
	margin: 0 0 80px;
}
.secOkihai.case .caseBox.overview .imgBox {
	padding-bottom: 80px;
}
.secOkihai.case .caseBox.info {
	background-color: #ffffff;
	padding: 24px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.secOkihai.case .caseBox.info .imgBox {
	max-width: 240px;
}
.secOkihai.case .caseBox.info .imgBox img{
	max-height: 80px;
	width: auto;
	margin: 0 0 0 auto;
}
.secOkihai.case .caseBox.info .imgBox img.vertical{
	max-height: none;
	max-width: 120px;
}
.secOkihai.case .caseBox.info .textBox {
	max-width: 600px;
	width: 100%;
	padding-right: 8px;
}
.secOkihai.case .caseBox.info .textBox dl{
	margin: 0;
	padding: 0 0 16px;
	display: flex;
}
.secOkihai.case .caseBox.info .textBox dl:last-child{
	padding: 0;
}
.secOkihai.case .caseBox.info .textBox dt{
	width: 25%;
	margin: 0;
}
.secOkihai.case .caseBox.info .textBox dt.classification{
	width: 100%;
}
.secOkihai.case .caseBox.info .textBox dd{
	margin: 0;
}


.secOkihai.case-nav {
	padding: 80px 0;
	background-color: #ffffff;
}
.secOkihai.case-nav .inner{
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
}
.secOkihai.case-nav .ttlarea{
	max-width: 980px;
	margin: 0 auto 40px;
	text-align: center;
	display: table;
}
.secOkihai.case-nav .ttlarea h3{
	font-size: 24px;
	line-height: 1.5;
}
.secOkihai.case-nav .ttlarea p{
	line-height: 1.75;
}
.secOkihai.case-nav .case-navBox{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
}
.secOkihai.case-nav .case-navBox a {
	display: block;
	color: #3c3c3c;
	background-color: rgba(255 255 255 / 0.84);
}
.secOkihai.case-nav .case-navBox .case-nav-item {
	width: 40%;
}
.secOkihai.case-nav .case-navBox .case-nav-item .info{
	width: 96%;
	background-color: rgb(255 255 255 / 88%);
	box-shadow: 0 8px 24px 0 rgb(0 0 0 / 8%);
	padding: 24px;
	margin: -40px auto 0;
	position: relative;
	border-radius: 8px;
	min-height: 340px;
}
.secOkihai.case-nav .case-navBox .case-nav-item .info h4{
	line-height: 1.25;
	margin-bottom: 16px;
	font-size: 20px;
}
.secOkihai.case-nav .case-navBox .case-nav-item .info .company{
	border-bottom: 1px solid #585A5E;
	padding-bottom: 16px;
	line-height: 1.5;
}
.secOkihai.case-nav .case-navBox .case-nav-item .info .textBox{
	padding: 16px 0 16px;
}
.secOkihai.case-nav .case-navBox .case-nav-item .info .btn {
	display: table;
	background-color: #ffffff;
	border: 2px solid #E89925;
	border-radius: 2em;
	min-width: 240px;
	margin: 0px auto 0;
	padding: 14px 30px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	opacity: 1;
	text-align: center;
}
.secOkihai.case-nav .case-navBox .case-nav-item .info .btn p {
	color: #3c3c3c;
	font-weight: bold;
}

@media (max-width: 1080px) {
	.secOkihai.case{
		padding: 120px 0 80px;
	}
	.secOkihai.case-nav .case-navBox{
		display: block;
	}
	.secOkihai.case-nav .case-navBox .case-nav-item {
		margin: 0 auto 40px;
		width: 100%;
		max-width: 780px;
	}
	.secOkihai.case-nav .case-navBox .case-nav-item:last-child {
		margin: 0 auto;
	}
}
@media (max-width: 980px) {
	.secOkihai.case .caseBox{
		padding: 0 0 80px;
	}
	.secOkihai.case .caseBox.overview{
		padding: 80px 0px;
	}
	.secOkihai.case .caseBox.info{
		padding: 16px;
		margin: 0 auto;
	}
}

@media (max-width: 780px) {
	.secOkihai.case{
		padding: 120px 0 40px;
	}
	.secOkihai.case .caseBox{
		padding: 0 24px 40px;
	}
	.secOkihai.case .caseBox h2{
		border-left: 4px solid #DA2B1D;
	}
	.secOkihai.case .caseBox h2,
	.secOkihai.case .caseBox p{
		margin: 0 0 24px;
	}
	.secOkihai.case .caseBox.overview{
		padding: 0px 24px 40px;
	}
	.secOkihai.case .caseBox.overview h1{
		font-size: 24px;
		margin: 0 0 40px;
	}
	.secOkihai.case .caseBox.overview .imgBox{
		padding-bottom: 40px;
	}
	.secOkihai.case .caseBox.info{
		display: block;
		margin: 0 24px;
	}
	.secOkihai.case .caseBox.info .imgBox {
		margin: 0;
	}
	.secOkihai.case .caseBox.info .imgBox img{
		margin: 0;
	}
	.secOkihai.case .caseBox.info .textBox {
		margin-bottom: 40px;
	}
	.secOkihai.case .caseBox.info .textBox dl{
		padding: 0 0 16px;
		display: block;
	}
	.secOkihai.case .caseBox.info .textBox dl:last-child{
		margin: 0;
	}
	.secOkihai.case .caseBox.info .textBox dt{
		width: 100%;
		margin: 0;
	}
	.secOkihai.case .caseBox.info .textBox dd{
		margin: 0 0 16px;
	}

	.secOkihai.case-nav {
		padding: 40px 0;
	}
	.secOkihai.case-nav .ttlarea h3{
		font-size: 20px;
	}
	.secOkihai.case-nav .case-navBox .case-nav-item {
		padding: 0 24px;
	}
}
.secOkihai.managementVoice .inner{
	max-width: 100%;
	width: 100%;
}
.secOkihai.managementVoice .ttlarea{
	max-width: 980px;
	margin: 0 auto 80px;
	text-align: center;
	display: table;
}
.secOkihai.managementVoice .ttlarea h2{
	padding-bottom: 16px;
	border-bottom: 4px solid #3c3c3c;
}

.secOkihai.managementVoice .case{
	max-width: 1200px;
	margin: 0 auto 80px;
}
.secOkihai.managementVoice .case .caseList{
	display: grid;
	gap: 8px;
	justify-content: center;
	grid-template-columns: repeat(3, auto);
	padding: 0 8px;
}
@media (max-width: 1080px) {
	.secOkihai.managementVoice .case .caseList{
		grid-template-columns: repeat(2, auto);
	}
}
@media (max-width: 780px) {
	.secOkihai.managementVoice .case .caseList{
		grid-template-columns: repeat(1, auto);
	}
}
.secOkihai.managementVoice .case .caseBox{
	max-width: 440px;
	padding-bottom: 40px;
}
.secOkihai.managementVoice .case .caseBox a{
	color: #3c3c3c;
}
.secOkihai.managementVoice .case .caseBox .info{
	width: 96%;
	background-color: rgb(255 255 255 / 88%);
	box-shadow: 0 8px 24px 0 rgb(0 0 0 / 8%);
	padding: 24px;
	margin: -24px auto 0;
	position: relative;
	border-radius: 8px;
	min-height: 324px;
	font-size: 14px;
}
.secOkihai.managementVoice .case .caseBox .info h3{
	font-size: 20px;
	line-height: 1.25;
	margin-bottom: 16px;
}
.secOkihai.managementVoice .case .caseBox .info .company{
	border-bottom: 1px solid #585A5E;
	padding-bottom: 8px;
}
.secOkihai.managementVoice .case .caseBox .info .textBox{
	padding: 16px 0;
}
.secOkihai.managementVoice .case .caseBox .info .btn {
	display: table;
	background-color: #ffffff;
	border: 2px solid #E89925;
	border-radius: 2em;
	min-width: 240px;
	margin: 0px auto 0;
	padding: 14px 30px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	opacity: 1;
	text-align: center;
}
.secOkihai.managementVoice .case .caseBox .info .btn p {
	color: #3c3c3c;
	font-weight: bold;
}
.secOkihai.managementVoice .case a{
	display: table;
	margin: 32px auto 0;
}
.secOkihai.managementVoice .case .btn{
	background-color: #ffffff;
	border: 2px solid #E89925;
	border-radius: 2em;
	min-width: 240px;
	padding: 14px 30px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	opacity: 1;
	text-align: center;
}
.secOkihai.managementVoice .case .btn p{
	color: #3c3c3c;
	font-weight: bold;
}

.secOkihai.managementVoice .userVoice{
	width: 100%;
	padding: 0 8px;
	margin-bottom: 80px;
}
.secOkihai.managementVoice .userVoiceList{
	width: 980px;
	margin: 0 auto;
}
.secOkihai.managementVoice .userVoiceList .voiceBox{
	width: 980px;
}
.secOkihai.managementVoice .userVoiceList .voiceBox .boxInner{
	width: 924px;
	background-color: #fff;
	box-shadow: 0 8px 24px 0 rgb(0 0 0 / 0%);
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	padding: 80px 0;
	margin: 0 auto;
}
.secOkihai.managementVoice .userVoiceList .voiceBox .quotation{
	position: absolute;
	width: 100%;
	height: 100%;
	background: url(../images/special/package-drop-service/quotation.svg) no-repeat;
	background-size: 184px auto;
	background-position: left center;
	margin-left: -40px;
}
.secOkihai.managementVoice .userVoiceList .voiceBox .info{
	font-weight: bold;
	max-width: 680px;
	position: relative;
	z-index: 2;
	padding-left: 80px;
	width: 100%;
}
.secOkihai.managementVoice .userVoiceList .voiceBox .info .textBox{
	margin-bottom: 56px;
}
.secOkihai.managementVoice .userVoiceList .voiceBox .info .textBox p{
	font-size: 24px;
	line-height: 1.5;
}
.secOkihai.managementVoice .userVoiceList .voiceBox .info .userName{
	position: absolute;
	right: 0;
	bottom: 0;
}
.secOkihai.managementVoice .userVoiceList .voiceBox .info .companyLogo{
	margin-bottom: 32px;
}
.secOkihai.managementVoice .userVoiceList .voiceBox.voice01 .info .companyLogo{
	width: 200px;
}
.secOkihai.managementVoice .userVoiceList .voiceBox.voice02 .info .companyLogo{
	width: 240px;
}
.secOkihai.managementVoice .userVoiceList .voiceBox.voice03 .info .companyLogo{
	width: 140px;
}
.secOkihai.managementVoice .userVoiceList .voiceBox .info .companyLogo img {
	width: 100%;
}

.secOkihai.clients {
	padding: 120px 0px 120px;
	width: 100%;
	margin: 0 auto;
}
.secOkihai.clients .inner{
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 8px 24px 0 rgb(0 0 0 / 8%);
	max-width: 1200px;
	width: 100%;
	margin: 0px auto;
	padding: 120px 40px;
}
.secOkihai.clients .ttlarea{
	max-width: 980px;
	margin: 0 auto 80px;
	text-align: center;
	display: table;
}
.secOkihai.clients .ttlarea h2{
	padding-bottom: 16px;
	border-bottom: 4px solid #3c3c3c;
	margin-bottom: 24px;
	font-size: 32px;
}
.secOkihai.clients .ttlarea p{
	display: inline-table;
}
.secOkihai.clients .clientsList{
	margin-left: 0;
	text-align: center;
	padding: 16px;
}
.secOkihai.clients .clientsList li{
	display: inline-block;
	margin: 8px 24px 24px;
	vertical-align: middle;
	width: 160px;
}
.secOkihai.clients .clientsList li img{
	max-height: 56px;
	width: auto;
	margin: 0 auto;
}


/* ebook */

/* ebook ダウンロードページ */

.resourcesWrap {
	background-color: #fff;
	display: flex;
	justify-content: space-between;
	min-height: 100vh;
}

.resourcesWrap .left{
	margin: 0 auto;
	width: 66%;
}

.resourcesWrap .contents{
	margin: 0 auto;
	max-width: 640px;
	padding: 0 20px;
}
.resourcesWrap .contents .contentsInner{
	margin: 0 auto;
	max-width: 640px;
	padding: 0 20px;
}
.resourcesWrap .contents h1{
	font-size: 32px;
}
.resourcesWrap .contents .ebookEyecatch{
	margin-bottom: 23.4px;
	text-align: center;
}
.resourcesWrap .contents .ebookEyecatch img{
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-height: 440px;
	width:auto;
	height:auto;
}
.resourcesWrap .contents .ebookSummary{
	background-color: #F7F7F7;
	border-radius: 4px;
	margin-bottom: 32px;
	max-width: 640px;
	padding: 32px;
}
.resourcesWrap .contents .ebookSummary h2{
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 16px 0;
}
.resourcesWrap .contents .ebookSummary ul{
	font-size: 14px;
	list-style: disc;
	margin-bottom: 0;
	margin-left: 24px;
}
.resourcesWrap header{
	background-color: #fff;
	margin-bottom: 24px;
	padding: 16px 24px 12px;
}
.resourcesWrap header .headerLogo{
	box-sizing: border-box;
	margin: 0 auto;
	width: 100%;
}
.resourcesWrap header .headerLogo a{
	box-sizing: border-box;
	display: grid;
	width: 160px;
}


footer.resourcesFooter{
	background-color: #ecf2f3;
	display: flex;
	height: 48px;
	padding: 0;
	font-size: 12px;
}
footer.resourcesFooter .footerInner{
	align-items: center;
	background-color: #595A5E;
	bottom: 0;
	display: flex;
	height: 48px;
	width: 100%;
}
footer.resourcesFooter ul{
	display: flex;
	list-style: none;
	margin: 0 16px 0 0;
	padding-left: 16px;
}
footer.resourcesFooter .copyright{
	margin: 0;
}
footer.resourcesFooter a{
	color: #fff;
}


.resourcesWrap .secOkihai.form {
	background-color: #F7F7F7;
	min-width: 467px;
	padding: 0;
	width: 34%;
}

.resourcesWrap .clearfix {
	display: block;
	width: 100%;
}
.resourcesWrap form {
	padding: 48px 32px 80px;
}
.resourcesWrap form p.formTxt{
	text-align: left;
	margin-bottom: 40px;
}
.resourcesWrap dl {
	display: block;
	margin-block-start: 1em;
	margin-block-end: 1em;
	margin-inline-start: 0px;
	margin-inline-end: 0px;
}
.resourcesWrap dt, dd {
	text-align: left;
}
.resourcesWrap dt {
	clear: both;
	width: 180px;
	margin-right: 20px;
	margin-bottom: 8px;
}
.resourcesWrap dd {
	display: block;
	margin-inline-start: 0;
	width: 100%;
	margin-bottom: 24px;
}
.resourcesWrap dt span {
	font-size: 12px;
}
.resourcesWrap span.any {
	background: #cbcbcb;
}
.resourcesWrap input[type="text"],
.resourcesWrap input[type="tel"],
.resourcesWrap input[type="email"],
.resourcesWrap textarea,
.resourcesWrap select {
	padding: 10px;
	font-size: 15px;
	background: #FFF;
	border: 1px solid #cbcbcb;
	width: 100%;
}
.resourcesWrap select{
	/* デフォルトのスタイルを解除 */
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	/* 三角マークを作る */
	background-image: linear-gradient(45deg, transparent 50%, rgba(0,0,0,0.4) 50%),  linear-gradient(135deg, rgba(0,0,0,0.4) 50%, transparent 50%);
	background-size: 5px 5px, 5px 5px;
	background-position: calc(100% - 15px) 50%, calc(100% - 10px) 50%;
	background-repeat: no-repeat;
}
.resourcesWrap input {
	-webkit-writing-mode: horizontal-tb !important;
	text-rendering: auto;
	color: -internal-light-dark(black, white);
	letter-spacing: normal;
	word-spacing: normal;
	text-transform: none;
	text-indent: 0px;
	text-shadow: none;
	display: inline-block;
	text-align: start;
	appearance: textfield;
	background-color: -internal-light-dark(rgb(255, 255, 255), rgb(59, 59, 59));
	-webkit-rtl-ordering: logical;
	cursor: text;
	margin: 0em;
	font: 400 13.3333px Arial;
	padding: 1px 2px;
	border-width: 2px;
	border-style: inset;
	border-color: -internal-light-dark(rgb(118, 118, 118), rgb(133, 133, 133));
	border-image: initial;
}
.resourcesWrap form p.error, form p.error2 {
	color: #cf4746;
	font-size: 0.8rem;
	font-weight: bold;
	display: none;
}
.resourcesWrap input[type="text"].name {
	width: 49%;
}
.resourcesWrap label {
	cursor: default;
}
.resourcesWrap input[type="checkbox" i] {
	background-color: initial;
	cursor: default;
	appearance: checkbox;
	box-sizing: border-box;
	margin: 3px 3px 3px 4px;
	padding: initial;
	border: initial;
}
.resourcesWrap input[type="submit"] {
	display: block;
	padding: 15px;
	font-size: 18px;
	width: 100%;
	color: #FFF;
	background-color: rgba(0,86,0,1);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a7df64', endColorstr='#56aa30',GradientType=1 );
	border: none;
	-webkit-border-radius: 200px;
	border-radius: 200px;
	margin: 20px auto;
	cursor: pointer;
	text-align: center;
}


@media (max-width: 980px) {

	.resourcesWrap {
		flex-direction: column;
	}

	.resourcesWrap .secOkihai.form {
		min-width: 100%;
		width: 100%;
	}

}

@media (max-width: 780px) {

	.resourcesWrap .left{
		width: 100%;
	}
	.resourcesWrap .contents{
		padding: 0;
	}
	.resourcesWrap .contents header{
		padding: 16px 16px 12px;
	}

	.resourcesWrap .secOkihai.form {
		min-width: 100%;
		width: 100%;
	}

}


/* ebook サンクスページ */

.resourcesWrap.ebookthanks{
	display: block;
	min-height: 60vh;
}
.resourcesWrap.ebookthanks header{
	margin-bottom: 0;
}
.resourcesWrap.ebookthanks .contents{
	max-width: 100%;
	text-align: center;
	display: flex;
	align-items: center;
	min-height: 60vh;
	background-color: #f9e7cd;
}
.resourcesWrap.ebookthanks .contentsInner{
	max-width: 980px;
	align-items: center;
	padding: 64px 32px;
}
.resourcesWrap.ebookthanks .contents h1{
	margin-bottom: 48px;
}
.resourcesWrap.ebookthanks .contents p{
	margin-bottom: 24px;
	line-height: 1.7;
}
.resourcesWrap.ebookthanks .contents p:last-child{
	margin-bottom: 0;
}

@media (max-width: 780px) {

	.resourcesWrap.ebookthanks{
		min-height: 50vh;
	}
	.resourcesWrap.ebookthanks .contents{
		text-align: left;
		min-height: 50vh;
	}
	.resourcesWrap.ebookthanks .contentsInner{
		padding: 64px 24px;
	}
	.resourcesWrap.ebookthanks .contents h1{
		margin-bottom: 32px;
	}
	.resourcesWrap.ebookthanks .contents{
		min-height: 50vh;
	}
}
