@charset "utf-8";
/* CSS Document */

	:root {
	--baseColor: #fabd00;
	--ciColor: #254884;
	--accentColor: #b41f09;
	--subColor: #fff4d1;
	--white: #fff;
	--yellow: #faee00;
	--orange: #ea5514;
	}
	.yellowTxt{color: #fcd021;}
	.containerAll{
	display: grid;
	grid-template-areas:
		"header header"
		"leftArea leftArea"
		"footer footer";
	grid-template-columns: 1fr;
	grid-template-rows: auto 1fr auto;
	margin: auto;
	}

	img[data-src] {
	  opacity: 0;
	  transition: opacity 0.5s ease-in-out;
	}
	img[data-src].loaded {
	  opacity: 1;
	}

	.marker {
    background:linear-gradient(transparent 50%, rgba(250, 238, 0) 50%);
    display: inline;
    background-repeat: no-repeat;
    background-size: 0% 100%;
    transition:background-size 1.5s;
	}
	.marker.on {
	background-size: 100% 100%;
	}
	
	.header{
	grid-area: header;
	}
	.leftArea{
	grid-area: leftArea;
	}
	.rightArea{
	grid-area: rightArea;
	display: none;
	}
	.footer{
	grid-area: footer;
	}
	
	.headerImageArea{
	width: 100%;
	max-width: 100%;
	max-height: 640px;
	background-image: url("/wp-content/themes/wk_altpaper/lp/img-sc/new-header-img-smt.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: top center; /* 必要に応じて調整 */
	padding-bottom: calc(640 / 480 * 100%); /* 幅に対する高さの比率で padding-bottom を設定 */
	box-sizing: border-box;
	}
	.headerImageArea h1,
	.headerImageArea h2,
	.headerImageArea h3,
	.headerImageArea p{
	display: none;
	}
	.contactBtnArea{
	box-sizing: border-box;
	margin: auto auto 2em;
	padding: 2em 0.5em 3em 0.5em;
	background-color:#fff;
	text-align: center;
	width: 90%;
	max-width: 1200px;
	border: solid 1px #666;
	border-radius: 8px;
	}
	.readTit{
	color: var(--accentColor);
	font-weight: bold;
	font-size: clamp(24px,6vw,32px);
	}
	.contactButton a{
	display: block;
	margin: auto;
	padding: 0.5em;
	width: 90%;
	background: linear-gradient(to bottom,  #cc0000 0%,#350017 100%); 
	color: var(--white);
	border-radius: 8px;
	font-size: clamp(16px,7vw,24px);
	font-weight: bold;
	text-decoration: none;
	}
	.contactButton a:hover{
	background: var(--accentColor); 
	}

	.reasonArea{
	background-color: #fff;
	}.reasonArea > h2{
	margin-bottom: 2em;
	}
	.reasonArea > h2 > img{
	width: 100%;
	}
	.reasonAreaWrap{
	margin: auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	max-width: 1200px;
	}
	.reasonBox{
	margin: auto;
	width: 100%;
	max-width: 388px;
	}
	.reasonBox > h3{
	box-sizing: border-box;
	padding: 0.5em;
	background-color: #254884;
	font-weight: bold;
	color: #fff;
	text-align: center;
	border-radius: 1000px;
	}
	.reasonBoxInWrap{
	margin-bottom: 2em;
	}
	.reasonBoxInWrap p:first-of-type{
	padding: 1em 0;
	}
	.reasonTitArea{
	margin-left: 3%;
	width: 20%;
	text-align: right;
	display: flex;
	justify-content: flex-end;
	}
	.backBlue{
	box-sizing: border-box;
	padding: 1em 0;
	background-color: #2865cc;
	color: #fff;
	text-align: center;
	font-weight: bold;
	font-size: clamp(24px,2.5vw,36px);
	}
	.h3Txt{
	box-sizing: border-box;
	padding: 1em 0;
	text-align: center;
	color: #254884;
	font-weight: bold;
	font-size: clamp(24px,2.5vw,36px);
	}
	.h3Txt + p{
	margin: auto auto 1em;
	width: 90%;
	max-width: 1200px;
	text-align: center;
	font-size: clamp(18px,2.5vw,24px);
	}
	.plus4AreaWrap{
	margin: auto;
	max-width: 1072px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	}
	.plus4AreaWrap > li{
	margin: auto auto 1em;
	}
	.graphArea{
	box-sizing: border-box;
	margin: auto;
	padding: 2em 0;
	width: 90%;
	max-width: 1072px;
	}
	.circleBox{
	box-sizing: border-box;
	margin: 0 0.1em;
	padding: 0.5em 0;
	background-color: var(--accentColor);
	color: var(--white);
	width: 16vw;
	height: 16vw;
	border-radius: 50%;
	border: solid 2px #fff;
	display: flex; /* 内側のテキストを中央揃えにするためのFlexbox */
	justify-content: center; /* 水平方向中央揃え */
	align-items: center; /* 垂直方向中央揃え */
	flex-direction: column; /* 内側のテキストを縦方向に中央揃えにするため */
	}
	.circleBox h2{
	font-size: 14px;
	text-align: center;
	font-weight: bold;
	}
	.largeTxt{
	font-size: 4vw;
	}
	.reasonTxtArea{
	width: 80%;
	display: flex;
	align-items: center;
	line-height: 1.75em;
	}
	.rTxt1{
	font-size: 3.5vw;
	font-weight: bold;
	color: var(--white);
	}
	.rTxt2{
	font-size: clamp(26px,6.5vw,63px);
	font-weight: bold;
	color: var(--yellow);
	}
	
	.bgImageBox{
	padding: 0.5em 1em;
	background-image: url("/wp-content/themes/wk_altpaper/lp/img-sc/bg-parabola-w811.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom center;
	background-color: var(--subColor);
	}
	
	.reasonList li{
	margin-bottom: 1em;
	}
	
	.txtH2{
	margin: 1em auto 2em;
	font-size: clamp(14px,4vw,30px);
	font-weight: bold;
	text-align: center;
	}
	
	.orangeT{
	color: var(--orange);
	font-size: 170%;
	}
	
	.redT{
	color: var(--accentColor);
	font-size: 170%;
	}
	
	.blackT{
	font-size: 170%;
	}
	
	.optionServiceArea{
	margin: 1em auto;
	}
	.optTitArea{
	padding: 1em 1em 0.5em;
	background-color: #22487d;
	margin: auto;
	max-width: 1200px;
	box-sizing: border-box;
	}
	.optTitArea h2{
	text-align: center;
	color: var(--white);
	font-weight: bold;
	font-size: clamp(21px,6vw,52px);
	line-height: 1.25em;
	}
	.optTxt{
	font-size: 50%;

	}
	
	.foldWrap{
	display: flex;
	margin: auto;
	max-width: 1200px;
	}
	.foldWrap > div{
	width: 50%;
	}
	.foldWrap > div:last-of-type{
	text-align: right;
	}
	
	.optionListArea{
	margin: 0 auto;
	max-width: 1200px;
	}
	.optList{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	}
	.optList li{
	margin-bottom: 1em;
	padding: 0 0.5em 1em;
	width: calc(50% - 2em);
	border: solid 2px #d9d9d9;
	border-radius: 8px;
	text-align: center;
	font-size: 3.5vw;
	font-weight: bold;
	}
	.fold{
	line-height: 0;
	}
	
	.securityArea{
	margin: 1em auto 2em;
	max-width: 1200px;
	}
	.securityBox{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	}
	.securityBox li{
	box-sizing: border-box;
	margin-bottom: 1em;
	padding: 1em 0 0;
	width: 90%;
	text-align: center;
	font-size: clamp(12px,3.2vw,18px);
	line-height: 3em;
	border-radius: 8px;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
	}
	
	.clientArea{
	padding: 0.5em 0 1em;
	background-color: var(--subColor);
	}
	.clientWrap{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 1360px;
	margin: auto;
	}
	.clientBox{
	box-sizing: border-box;
	margin-bottom: 1em;
	padding: 1em;
	width: 84%;
	background-color: var(--white);
	font-size: clamp(12px,3.2vw,18px);
	border-radius: 8px;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
	}
	.clientBox img{
	display: block;
	margin-bottom: 0.6em;
	width: 100%;
	}
	.clientBox h3{
	margin-bottom: 0.5em;
	padding-bottom: 0.5em;
	border-bottom: solid 1px #000;
	font-weight: bold;
	}
	.clientBox {
	line-height: 1.75em;
	}
	
	.clientLogoArea{
	padding: 5% 1em;
	background-image: linear-gradient(0deg, rgba(255, 244, 209, 1), rgba(255, 255, 255, 1) 15% 85%, rgba(255, 244, 209, 1));
	}
	.clientLogoList{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: auto;
	max-width: 1200px;
	}
	.clientLogoList li{
	margin: 0 0.5em;
	width: calc(25% - 1em);
	}
	
	.pointArea{
	padding: 1em 0 0;
	max-width: 1200px;
	margin: auto;
	}
	.pointArea img{
	display: block;
	width: 100%;
	}
	.pointTit{
	margin: 1em;
	padding: 0.5em;
	background-color: var(--accentColor);
	color: var(--white);
	border-radius: 100px;
	font-size: clamp(12px,3.2vw,34px);
	text-align: center;
	}
	
	.flowArea{
	margin-top: 4em;
	padding: 1em 0;
	background-color: #f2f2f2;
	}
	.flowArea > h3{
	margin: 0 1em;
	font-size: clamp(14px,4vw,30px);
	font-weight: bold;
	text-align: center;
	}
	.flowBoxWrap{
	display: flex;
	flex-wrap: wrap;
	}
	.flowBox{
	margin: 1em 1em 0.5em;
	padding: 0.5em;
	display: flex;
	width: 100%;
	flex-wrap: nowrap;
	background-color: var(--white);
	border-radius: 8px;
	border: solid 2px #d9d9d9;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
	position: relative;
	}
	.flowBox img{
	display: block;
	margin-right: 0.5em;
	height: fit-content;
	}
	.flowTxt > h4{
	color: #983610;
	font-size: clamp(14px,4vw,21px);
	font-weight: bold;
	}
	.flowTxt > p{
	font-size: clamp(12px,4vw,14px);
	}
	.flowMark{
	position: absolute; /* 変更: absolute に */
	left: 50%; /* 水平方向の中央に配置 */
	transform: translateX(-50%); /* 要素自身の幅の半分だけ左に移動して中央揃え */
	bottom: -1.9em;
	z-index: 1;
	}
	

/* シミュレーター */
		.simulatebox{
		margin: auto;
		width: 90%;
		max-width: 1200px;
		}
		table#sim{
		margin: 1em auto;
		width: 100%;
		}
		table#sim th,table#sim td{
		box-sizing: border-box;
		padding: 1em;
		border-bottom: solid 1px #ccc;
		}
		table#sim th{
		background: #eee;
		}
		table#sim td#type,table#sim td#project{
		display: flex;
		}
		table#sim td#type p,
		table#sim td#project p{
		width: 50%;
		}
		div.flex{
		display: flex;
		justify-content: space-between;
		align-items: center;
		}
		.aggregate{
		background: #eee;
		width: 45%;
		text-align: center;
		box-sizing: border-box;
		padding: 2em 0;
		font-weight: bold;
		border-radius: 8px;
		}
		.campaign{
		background: #FFF7E5;
		color: var(--accentColor);
		}
		#default_price,#campaign_price{
		font-size: 200%;
		}
		.supplement{
		margin-top: 1em;
		}
		
		input#employees{
		width: 94px;
		height: 40px;
		margin-right: 12px;
		padding-left: 12px;
		}
/* //シミュレーター */

	.dataDlWrap{
	box-sizing: border-box;
	margin: auto;
	padding: 1em;
	display: flex;
	background-color: var(--subColor);
	}
	
	.dataDlWrap > div{
	box-sizing: border-box;
	padding: 1em;
	width: 50%;
	max-width: 600px;
	margin: 0 auto;
	}
	.dataDlWrap > div:first-of-type{
	margin-right: 0;
	}
	.dataDlWrap > div:last-of-type{
	margin-left: 0;
	}
	
	.dataTit{
	box-sizing: border-box;
	margin-bottom: 0.5em;
	padding: 0.5em;
	background-color: var(--baseColor);
	text-align: center;
	font-weight: bold;
	}
	
	.dataTxt{
	margin-bottom: 1em;
	line-height: 1.75em;
	font-size: clamp(12px,3.2vw,18px);
	text-align: justify;
	}
	
	.dataBtn a{
	box-sizing: border-box;
	margin: auto;
	padding: 2em 0.5em;
	display: block;
	text-decoration: none;
	background: linear-gradient(to bottom,  #cc0000 0%,#350017 100%); 
	color: #fff;
	text-align: center;
	width: 100%;
	border-radius: 8px;
	font-weight: bold;
	font-size: clamp(12px,3.2vw,24px);
	}
	
	.iconTxt::before{
	content: '';
	margin-right: 1em;
  display: inline-block;
	width: 26px;
	height: 26px;
	background-color: #fff;
	mask-image: url("/wp-content/themes/wk_altpaper/lp/img-sc/pict-dl-01.svg");
	mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
	vertical-align: middle;
	}
	
	.dataBtn a:hover{
	opacity: 0.7;
	}
	
	.companyInfoArea{
	padding: 1em;
	margin: auto;
	max-width: 1200px;
	}
	.companyInfoArea > h2{
	margin-bottom: 1em;
	padding-bottom: 1em;
	font-size: clamp(12px,3.2vw,18px);
	font-weight: bold;
	text-align: center;
	border-bottom: solid 1px #999;
	}
	.companyInfoArea > h3{
	color: var(--ciColor);
	font-size: clamp(21px,4vw,24px);
	font-weight: bold;
	}
	.aboutUsWrap{
	margin-bottom: 2em;
	display: flex;
	flex-wrap: nowrap;
	}
	.aboutUsWrap > div{
	margin-right: 0.5em;
	width: 20%;
	}
	.aboutUsWrap > p{
	width: 80%;
	font-size: clamp(12px,4vw,14px);
	}
	
	.companyTit{
	border-bottom: solid 1px #999;
	}
	.companyAddress,
	.compDlBox,
	.companyService{
	margin-top: 1em;
	padding-bottom: 1em;
	display: flex;
	border-bottom: solid 1px #999;
	}
	.companyAddress > dt,
	.compDlBox > dt,
	.companyService > dt{
	margin-right: 0.5em;
	width: 20%;
	font-size: clamp(12px,4vw,14px);
	}
	.companyAddress > dd,
	.compDlBox > dd,
	.companyService > dd{
	width: 80%;
	font-size: clamp(12px,4vw,14px);
	}
	.companyList > li > ul{
	margin-top: 1em;
	}
	.companyList > li > ul> li{
	margin-bottom: 1em;
	}
	.companyList > li > ul> li:last-of-type{
	margin-bottom: 0;
	}
	.companyServiceList > li{
	margin-bottom: 1em;
	}
	.companyServiceList > li:last-of-type{
	margin-bottom: 0;
	}
	
	.footer{
	padding: 1em;
	background-color: var(--baseColor);
	text-align: center;
	font-size: 12px;
	}
	
	/*
 * === 画像モーダルここから ===
 */

/* オーバーレイ（背景） */
.image-modal-overlay {
	display: none; /* JSで "active" クラスが付くと表示 */
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.85); /* 背景の黒（濃いめ） */
	z-index: 9998;
	opacity: 0;
	transition: opacity 0.3s ease;
	cursor: pointer; /* 背景クリックで閉じる */
}

/* モーダル本体（画像コンテナ） */
.image-modal-content {
	display: none; /* JSで "active" クラスが付くと表示 */
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.9); /* 中央配置 & 初期は少し縮小 */
	max-width: 100vw;   /* 画面幅の90%まで */
	max-height: 100vh;  /* 画面高の90%まで */
	background: #fff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.3);
	z-index: 9999;
	opacity: 0;
	transition: opacity 0.3s ease, transform 0.3s ease;
	cursor: default; /* コンテンツ上は通常のカーソル */
}

/* 閉じるボタン (×) */
.image-modal-close {
	position: absolute;
	top: -15px;  /* コンテナの少し外側 */
	right: -15px; /* コンテナの少し外側 */
	width: 34px;
	height: 34px;
	background: #333;
	color: #fff;
	border-radius: 50%;
	text-align: center;
	line-height: 34px;
	font-size: 26px;
	font-weight: bold;
	cursor: pointer;
	z-index: 10000;
	transition: background 0.2s;
}
.image-modal-close:hover {
	background: #555;
}

/* モーダル内の画像 */
#imageModalImage {
	display: block;
	max-width: 100%;
	/* 画像がコンテナの高さを超えないように調整（パディング分を引く） */
	max-height: calc(90vh - 40px);
	width: auto;
	height: auto;
	object-fit: contain; /* アスペクト比を維持 */
}

/* --- 表示時のアクティブクラス --- */
.image-modal-overlay.active,
.image-modal-content.active {
	display: block;
	opacity: 1;
}

.image-modal-content.active {
	transform: translate(-50%, -50%) scale(1); /* 表示時は通常サイズに */
}

/* ========================================
   画像モーダル ＆ スライダー用CSS
   ======================================== */

/* --- モーダル関連 --- */

/* オーバーレイ（背景） */
.image-modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.85);
	z-index: 9998;
	opacity: 0;
	transition: opacity 0.3s ease;
	cursor: pointer;
}

/* モーダル本体 */
.image-modal-content {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.9);
	max-width: 90vw;
	max-height: 90vh;
	background: #fff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.3);
	z-index: 9999;
	opacity: 0;
	transition: opacity 0.3s ease, transform 0.3s ease;
	cursor: default;
}

/* 閉じるボタン */
.image-modal-close {
	position: absolute;
	top: -15px;
	right: -15px;
	width: 34px;
	height: 34px;
	background: #333;
	color: #fff;
	border-radius: 50%;
	text-align: center;
	line-height: 34px;
	font-size: 26px;
	font-weight: bold;
	cursor: pointer;
	z-index: 10000;
	transition: background 0.2s;
}
.image-modal-close:hover {
	background: #555;
}

/* モーダル内の画像 */
#imageModalImage {
	display: block;
	max-width: 100%;
	max-height: calc(90vh - 40px);
	width: auto;
	height: auto;
	object-fit: contain;
}

/* 表示時のアクティブクラス */
.image-modal-overlay.active,
.image-modal-content.active {
	display: block;
	opacity: 1;
}
.image-modal-content.active {
	transform: translate(-50%, -50%) scale(1);
}

/* --- ホットスポット付きスライダー関連 --- */

/* コンテナ全体のレイアウト */
.hotspot-slider-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
    max-width: 960px;
    margin: 0 auto 60px;
    position: relative;
    background: #f9f9f9;
}

/* 左右の黒帯ナビゲーション */
.slider-nav {
    width: 64px;
    min-width: 64px;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s, opacity 0.3s;
    z-index: 2;
}
.slider-nav:hover {
    background-color: #333;
}
.slider-nav svg {
    width: 32px;
    height: 32px;
}


/* ボタンが無効な時のスタイル */
.slider-nav.disabled {
    opacity: 0.3;
    pointer-events: none;
    cursor: default;
}

/* スライドエリア */
.slider-container {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 200px;
}
.prev-slide{
border-top-left-radius: 8px;
border-bottom-left-radius: 8px;
}
.next-slide{
border-top-right-radius: 8px;
border-bottom-right-radius: 8px;
}
/* スライドアイテム */
.slide-item {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
    animation: fadeEffect 0.8s ease-in-out;
}
.slide-item.active {
    display: block;
}
.slide-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* フェードインアニメーション */
@keyframes fadeEffect {
    from {
        opacity: 0; /* 透明からスタート */
        /* 下の1行を追加すると、少し右からスライドしてくる演出になります */
        /* transform: translateX(10px); */
    }
    to {
        opacity: 1; /* 不透明（表示） */
        /* transform: translateX(0); */
    }
}

/* --- ホットスポット（ピン） --- */
.hotspot-pin {
    position: absolute;
    display: block;
    width: 40px;
    height: 40px;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-decoration: none;
}

/* ピン本体（円 + SVGアイコン） */
.pin-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 105, 0, 0.9); /* オレンジ */
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

/* SVGアイコンのサイズ調整 */
.pin-icon svg {
    width: 60%;
    height: 60%;
}

/* 脈動アニメーション */
.hotspot-pin::before,
.hotspot-pin::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(255, 105, 0, 0.6);
    z-index: 1;
    animation: pulse 2s infinite;
}
.hotspot-pin::after {
    animation-delay: 1s;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* ラベル（吹き出し） */
.pin-label {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    background: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    pointer-events: none;
}
.hotspot-pin:hover .pin-label {
    opacity: 1;
    visibility: visible;
    left: 60px;
}

/* --- スマホ対応（レスポンシブ） --- */
@media screen and (max-width: 768px) {
		.prev-slide{
				border-top-right-radius: 8px;
				border-bottom-left-radius: 0;
		}
				.next-slide{
				border-top-right-radius: 0;
				border-bottom-left-radius: 8px;
		}

    .hotspot-slider-wrapper {
        flex-direction: column;
        max-width: 100%;
    }
    /* スマホ時は黒帯を細く、上下配置に */
    .slider-nav {
        width: 100%;
        height: 44px; 
    }
    /* 矢印を上下に向ける */
    .slider-nav svg {
        transform: rotate(90deg);
        width: 24px;
    }
    /* ピンを少し小さく */
    .hotspot-pin {
        width: 30px;
        height: 30px;
    }
    /* SVGも合わせて調整 */
    .pin-icon svg {
        width: 50%;
        height: 50%;
    }
    /* 脈動範囲も控えめに */
    @keyframes pulse {
        0% { transform: scale(1); opacity: 0.8; }
        100% { transform: scale(2.0); opacity: 0; }
    }
}

/* * === 画像モーダルここまで === */

@media (min-width: 431px) {/* 431px以上////////////////////////////// */
	.mb01{
	margin-bottom: 1em;
	}
	
	.contactButton a{
	width: 80%;
	}

	.reasonAreaWrap{
	/*background-image: url("/wp-content/themes/wk_altpaper/lp/img-sc/bg-reason-w812.png");*/
	background-size: contain;
	}
	.reasonAreaWrap > img{
	width: 100%;
	}
	.circleBox{
	width: 16vw;
	height: 16vw;
	}

	.reasonTxtArea{
	line-height: 2em;
	}
	
	img.resPicture{
	margin: auto;
	display: block;
	width: 100%;
	max-width: 688px;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
	}

	.clientBox{
	margin-left: 1em;
	margin-right: 1em;
	width: calc(50% - 2em);
	}

}

@media (min-width: 812px) {/* 812px以上////////////////////////////// */
	.headerImageArea{
	max-width: 1200px;
	max-height: 550px;
	background-image: url("/wp-content/themes/wk_altpaper/lp/img-sc/new-header-img-pc.svg"),linear-gradient(0deg, rgba(40, 100, 204, 1), rgba(95, 154, 255, 1));;
	background-size:contain;
	padding-bottom: calc(550 / 1200 * 100%);
	}
	
	.bgImageBox{
	background-image: url("/wp-content/themes/wk_altpaper/lp/img-sc/bg-parabola-w2400.png");
	}

	.reasonTxtArea{
	line-height: 2.75em;
	}

	.contactButton a{
	width: 70%;
	}

	.circleBox h2{
	font-size: 24px;
	}
	
	.reasonPc{
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	}
	.reasonPc li{
	margin: 0 0.5em 1em;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
	}
	.reasonPc img{
	width: 100%;
	max-width: 356px;
	}
	
	.technicalPc{
	display: flex;
	justify-content: center;
	flex-wrap: nowrap;
	}
	
	.technicalPc li{
	margin: 0 0.5em 1em;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
	}
	
	.technicalPc li img{
	width: 100%;
	max-width: 552px;
	}
	
	.optList li{
	width: calc(25% - 2em);
	font-size: clamp(14px,3vw,21px);
	}

	.securityBox{
	flex-wrap: nowrap;
	}
	.securityBox li{
	margin-left: 0.5em;
	margin-right: 0.5em;
	padding: 1em 0 0;
	width: 30%;
	line-height: 1.75em;
	}
	.securityBox img{
	width: 100%;
	max-width: 80px;
	}

	img.cliPicture{
	margin: auto;
	display: block;
	width: 100%;
	}

	.clientBox{
	font-size: clamp(12px,3.2vw,14px);
	}

	.clientBox{
	display: flex;
	flex-wrap: wrap;
	width: 40%;
	}
	
	.cliLeft{
	margin-right: 1em;
	width: 30%;
	max-width: 200px;
	}

	.cliRight{
	width: calc(70% - 1em);
	}
	
	.flowBoxWrap{
	flex-wrap: nowrap;
	max-width: 1200px;
	margin: auto;
	}
	
	.flowBox{
	margin: 1em 0.5em 0.5em;
	flex-wrap: wrap;
	position: relative;
	}
	
	.flowBox img{
	margin-right: auto;
	margin-left: auto;
	}

	.flowTxt > h4{
	font-size: clamp(14px,4vw,21px);
	text-align: center;
	}

	.flowMark{
	position: absolute;
	left:auto;
	top: 45%;
	transform: translateY(-45%);
	right: -1.25em;
	transform: translateX(10%);
	/*bottom: -1.9em;*/
	}


}

@media (min-width: 1200px) {/* 1200px以上////////////////////////////// */
	.containerAll{
	grid-template-areas:
		"header rightArea"
		"leftArea rightArea"
		"footer rightArea";
	grid-template-columns: 1fr 358px;
	grid-template-rows: auto 1fr auto;
	}

	.contactButton a{
	width: 60%;
	}

	.circleBox{
	width: clamp(20px,12vw,220px);
	height: clamp(20px,12vw,220px);
	}

	.rTxt1{
	font-size: 2.7vw;
	}

	.rightArea{
	display: block;
	}
	
	#pardot_iframe{
	position: fixed;
	width: 358px;
	height: 100%;
	}
	
	#pardot_iframe iframe{
	height: 100%;
	}
	
}

@media (min-width: 1558px) {/* 1558px以上////////////////////////////// */
	.headerImageArea{
	max-width: 100%;
	height: 550px;
	background-color: #fffaf0;
	padding-bottom: 0;
	}
}
