@charset "UTF-8";
/*
	Reset CSS
-----------------------------------------------------------------------------------------------*/
/***
    The new CSS reset - version 1.8.4 (last updated 14.2.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
 *:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
    all: unset;
    display: revert;
}
*,*::before,*::after {
    box-sizing: border-box;
}
a, button {
    cursor: revert;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}
ol, ul, menu {
    list-style: none;
}
img {
    max-inline-size: 100%;
    max-block-size: 100%;
	vertical-align: top;
	backface-visibility: hidden;
}
table {
    border-collapse: collapse;
}
input, textarea {
    -webkit-user-select: auto;
}
textarea {
    white-space: revert;
}
meter {
    -webkit-appearance: revert;
    appearance: revert;
}
:where(pre) {
    all: revert;
}
::placeholder {
    color: unset;
}
::marker {
    content: initial;
}
:where([hidden]) {
    display: none;
}
:where([contenteditable]:not([contenteditable="false"])) {
    -moz-user-modify: read-write;
    -webkit-user-modify: read-write;
    overflow-wrap: break-word;
    -webkit-line-break: after-white-space;
    -webkit-user-select: auto;
}
:where([draggable="true"]) {
    -webkit-user-drag: element;
}
:where(dialog:modal) {
    all: revert;
}


/*
	Setting CSS
-----------------------------------------------------------------------------------------------*/
html{
	font-size:62.5%;
}
body{
	font-size:1.6em;
	font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', YuGothic, Meiryo, sans-serif;
	font-weight: var(--fw-medium);
	font-feature-settings: "palt";
	word-break: break-all;
	overflow-wrap: break-word;
}
h1, h2, h3, h4, h5, h6, p,figure,ul,ol,li,dl,dt,dd{
	line-height: var(--lh-normal);
}
p{
	text-align: justify;
	line-height: var(--lh-normal);
}
a {
	color: var(--c-bk);
	line-height: var(--lh-small);
	text-decoration: none;
	transition: color 0.2s, opacity 0.2s;
}
a:link,
a:visited {
	color: var(--c-bk);
}
@media screen and (max-width:812px){
	body{
		font-size:1.5em;
	}
}
@media (hover: hover) and (pointer: fine){
	a:hover {
		text-decoration: none;
		opacity: 0.7;
	}	
}
@media screen and (min-width:813px){
	/* iPad背景切れ対策 */
	body{
		min-width:1200px;
	}
	/* tel pcのみ無効 */
	a[href^="tel:"]{
		pointer-events:none;
	}
}
/* 表示切替 */
.switch {
	visibility: hidden;
}
.sp{
	display:none;
}
@media screen and (max-width:812px){
	body{
		text-size-adjust:100%;
		-webkit-text-size-adjust: 100%;
	}
	.pc{
		display:none;
	}
	.sp{
		display:block;
	}
	br.sp{
		display:inline-block;
	}
}


/*
	common
-----------------------------------------------------------------------------------------------*/
/* 変数 */
:root{
	/* color */
	--c-bk: #000;
	--c-wh: #fff;
	--c-main: #353535;
	--c-accent: #b48202;
	--bgc-main: #d6dae2;
	--bgc-accent: #848c96;
	--bgc-overlap: #333;
	/* font-weight */
	--fw-light: 300;
	--fw-medium: 400;
	--fw-bold: 700;
	--fw-black: 900;
	/* line-height */
	--lh-none: 1.0;
	--lh-small: 1.4;
	--lh-normal: 1.8;
    --lh-tall: 2.5;
	/* font-family */
	--ff-en: linotype-didot-headline, serif;
	--ff-min: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', YuMincho, serif;
}

/* wrapper */
#wrapper{
	position: relative;
	overflow: hidden;
}
@media screen and (max-width:812px){
}

/* ctsArea */
.ctsArea{
	width: 1200px;
	margin: 0 auto;
	padding: 120px 30px;
}
@media screen and (max-width:812px){
	.ctsArea{
		width: 100%;
		max-width: 500px;
		padding: 50px 20px;
	}
}


/* common 2025
------------------------------------------------------------------------------------------------------*/
a#btnInquiry{
	top: 40%;
	transform: translateY(-40%);
}
/* 共通ボタン */
.detailBtn{
	margin: 0 auto;
	max-width: 375px;
}
.detailBtn a{
	display: inline-block;
	padding: 20px 0;
	width: 100%;
	text-align: center;
	font-size: 1.8rem;
	font-weight: 700;
	border-radius: 50px;
	position: relative;
}
.detailBtn a::before{
	content: '';
	width: 7px;
	height: 7px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	position: absolute;
	transform: translateY(-50%) rotate(45deg);
	top: 50%;
	transition: .3s;
}
.detailBtn a:hover::before{
	transition: .3s;
}
/* 左側矢印 */
.leftArrow a::before{
	left: 8%;
}
.leftArrow a:hover::before{
	left: 9%;
}
/* 右側矢印 */
.rightArrow a::before{
	right: 8%;
}
.rightArrow a:hover::before{
	right: 7%;
}
@media screen and (max-width: 812px){
	/* 共通ボタン */
	.detailBtn{
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
	}
}






/* button_base
==================================== */
.btnArea{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding-top: 40px;
	gap: 15px;
}
a.btnBase__item{
	display: block;
	width: 380px;
	padding: 25px 65px 25px 25px;
	font-size: 1.8rem;
	text-align: center;
	color: var(--c-wh);
	background-color: var(--c-accent);
	position: relative;
	cursor: pointer;
}
.btnBase__item::before,
.btnBase__item::after{
	content: " ";
	height: 1px;
	background-color: var(--c-wh);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: right 0.2s;
}
.btnBase__item::before{
	width: 30px;
	right: 20px;
}
.btnBase__item::after{
	width: 10px;
	right: 20px;
	transform: translateY(calc(50% - 5px)) rotate(45deg);
}
/* hover */
.btnBase__item:hover{
	opacity: 1;
}
.btnBase__item:hover:before,
.btnBase__item:hover::after{
	right: 15px;
}
@media screen and (max-width:812px){
	.btnArea{
		padding-top: 20px;
	}
	a.btnBase__item{
		max-width: 300px;
		padding: 20px 55px 20px 20px;
		font-size: 1.6rem;
	}
	.btnBase__item::before{
		width: 25px;
		right: 18px;
	}
	.btnBase__item::after{
		width: 8px;
		right: 18px;
		transform: translateY(calc(50% - 5px)) rotate(45deg);
	}
	/* hover */
	.btnBase__item:hover:before,
	.btnBase__item:hover::after{
		right: 18px;
	}
}

/* tit */
.cmn__titMainArea{
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 40px 0;
	position: relative;
}
[class^="cmn__titMain"]{
	font-weight: var(--fw-bold);
	text-align: center;
	z-index: 2;
}
[class^="cmn__titMain"] .en{
	font-size: 9.0rem;
	font-family: var(--ff-en);
	color: var(--c-main);
}
[class^="cmn__titMain"] .jp{
	display: block;
	font-size: 1.8rem;
}
.cmn__titMainImg{
	height: 180px;
	margin-top: -160px;
	z-index: 1;
}
@media screen and (max-width:812px){
	.cmn__titMainArea{
		padding: 20px 0 50px;
	}
	[class^="cmn__titMain"] .en{
		font-size: 5.5rem;
	}
	[class^="cmn__titMain"] .jp{
		font-size: 1.3rem;
	}
	.cmn__titMainImg{
		height: 120px;
		margin-top: -105px;
	}
}


/*
	header 2025
-----------------------------------------------------------------------------------------------*/
#header{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	height: 75px;
	padding: 0 20px;
	position: relative;
}
.header__logo{
	width: 150px;
}
@media screen and (max-width:812px){
	#header{
		height: 60px;
	}
	.header__logo{
		width: 120px;
	}
}

/* gNav
==================================== */
#gNav{
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 75px;
	height: 75px;
	background-color: var(--c-wh);
	position: fixed;
	top: 0;
	right: 0;
	transition: opacity 0.2s;
	cursor: pointer;
	z-index: 1000;
}
[class^="gNav__line"]{
	display:block;
	width: 25px;
	height:1px;
	background-color: var(--c-main);
	transition: transform 0.2s, display 0.2s;
}
/* hover */
#gNav:hover{
	opacity: 0.7;
}
/* close */
#gNav.active [class^="gNav__line"]{
	position: absolute;
}
#gNav.active .gNav__line01{
	transform:rotate(45deg);
}
#gNav.active .gNav__line02{
	display: none;
}
#gNav.active .gNav__line03{
	transform:rotate(-45deg);
}

#gNav__wrapper{
	display: none;
	width: 100%;
	height: 100%;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
}
#gNav__area{
	display: none;
	position:fixed;
	top:50%;
	left:50%;
	transform: translate(-50%, -50%);
	z-index:100;
}
#gNav__area::-webkit-scrollbar {
	display:none;
}
#gNav__overlay{
	display: none;
	width:100%;
	height:100%;
	background-color: rgba(214,218,226,0.5);
	position:absolute;
	top:0;
	left:0;
	opacity: 0.98;
	z-index: 99;
	cursor: zoom-out;
}
.gNav__list{
	display: flex;
	flex-direction: column;
	width: 700px;
}
.gNav__list li{
	border-bottom: 1px solid var(--bgc-accent);
}
.gNav__list li:last-of-type{
	border: none;
}
a.gNav__btn{
	display: flex;
	justify-content: center;
	padding: 30px 0;
	font-family: var(--ff-min);
	font-size: 2.5rem;
}
.gNav__listSub{
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-top: 30px;
}
.gNav__listSub li{
	width: calc((100% - 30px)/3);
}
a.gNav__btn-sub{
	display: block;
	padding: 15px 10px;
	font-size: 1.3rem;
	font-weight: var(--fw-bold);
	color: var(--c-wh);
	text-align: center;
	background-color: var(--c-accent);
}
.gNav__listSub li:last-of-type a.gNav__btn-sub{
	background-color: #004080;
}
@media screen and (max-width:812px){
	#gNav{
		width: 60px;
		height: 60px;
	}
	[class^="gNav__line"]{
		width: 20px;
	}
	#gNav__area{
		width: 100%;
		padding: 20px;
	}
	@media (orientation: landscape){
		#gNav__area{
			height: 100%;
			overflow-y: scroll;
			-ms-overflow-style: none;
			scrollbar-width: none;
		}
	}
	.gNav__list{
		width: 100%;
		max-width: 500px;
		margin: 0 auto;
	}
	a.gNav__btn{
		padding: 25px 0;
		font-size: 2.0rem;
	}
	.gNav__listSub{
		gap: 10px;
		max-width: 500px;
		margin: 15px auto 0;
	}
	.gNav__listSub li{
		width:100%;
	}
	a.gNav__btn-sub{
		padding: 12px;
		font-size: 1.3rem;
	}
}


/* header
------------------------------------------------------------------------------------------------------*/
header{
	position: relative;
}
.headerInner{
	height: 66px;
	padding: 0 20px;
	background: #fff;
}
.headerInner .cpLogo{
	display: inline-block;
	width: 150px;
	padding: 16px 0 0 0;
}
.headerInner .cpLogo a{
	width: 100%;
}
.headerInner .navBtnlist {
	position: absolute;
	top: 0;
	right: 65px;
}
.headerInner .gNaviIcon {
	position:fixed;
	top:0;
	right: 0;
	z-index: 10;
	padding: 32px 32px;
	cursor: pointer;
	background: #fff;
/*	z-index: 101;*/	
}
a.gNaviIcon.active {
	background: #fff;
}
.gNaviIcon,
.gNaviIcon span {
	display: inline-block;
	transition: all .4s;
}
.gNaviIcon span {
	position: absolute;
	top: 18px;
	left: 50%;
	width: 24px;
	height: 2.5px;
	background-color: #000000;
	margin: 0 0 0 -12px;
}
.gNaviIcon span:nth-of-type(1) {
	top: 24px;
}
.gNaviIcon span:nth-of-type(2) {
	top: 32px;
}
.gNaviIcon span:nth-of-type(3) {
	top: 40px;
}
.gNaviIcon span:nth-of-type(2)::after {
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 2.5px;
	background-color: #000000;
	transition: all .4s;
}
.gNaviIcon.active span:nth-of-type(2)::after {
	background-color: #000000;
}
.gNaviIcon.active span:nth-of-type(1) {
	transform: translate(50%) scale(0);
}
.gNaviIcon.active span:nth-of-type(2) {
	transform: rotate(45deg);
}
.gNaviIcon.active span:nth-of-type(2)::after {
	transform: rotate(90deg);
}
.gNaviIcon.active span:nth-of-type(3) {
	transform: translate(-50%) scale(0);
}
.gNaviAreaOut {
	position:absolute;
	top: 0;
}
.gNaviArea {
	width: 100%;
	background:rgba(255,255,255,0.95);
	position:fixed;
	top: 0;
	left: 0;
	transform: translateY(-101vh);
	opacity: 0;
	transition: 0.3s;
	z-index: 5;
}
.gNaviArea.active{
	transform: translateY(0vh);
	opacity: 1;
}
.gNaviInner {
	width: 100%;
	max-width: 770px;
	margin: 0 auto;
	padding: 70px 20px 40px 20px;
}
.gNaviInner .titLogo{
	margin: 0 0 40px 0;
	max-width: 500px;
}
.gNaviInner .titLogo img{
	width: 100%;
}
.gNaviInner .gNaviList{
	margin: 0 0 40px 0;
}
.gNaviInner ul >lo >a,
.gNaviInner .gNaviList li a{
	display: inline-block;
	color: #000;
	position: relative;
	font-size: 118%;
	font-weight: bold;
	width: 100%;
}
.gNaviInner .gNaviList li a {
	padding: 10px 10px 10px 35px;
	border-bottom: 1px solid #000;
}
.gNaviInner .gNaviList li a:before{
	content: '';
	display: block;
	position: absolute;
	top: 55%;
	left: 10px;
	width: 10px;
	height: 10px;
	border-top: 2px solid #004096;
	border-right: 2px solid #004096;
	transform: rotate(45deg);;
	transition: transform 0.3s;
	margin: -7px 0 0 0;
}
.gNaviInner .menuListTit{
	color: #004096;
	font-weight: bold;
	font-size: 2rem;
	border-bottom: 1px solid #000;
}
.gNaviInner .menuListTit p{
	font-size: 2.4rem;
	text-align: center;
}
.gNaviInner .menuList {
	margin: 12px 0 0 0;
}
.gNaviInner .menuList li a {
	width: 100%;
	padding: 10px 0;
	display: inline-block;
	position: relative;
	font-weight: bold;
	background: #004096;
	color: #fff;
	text-align: center;
}
.gNaviInner .menuList.clm2 {
	display: -ms-flex;
	display: flex;
	justify-content: space-between;
}
.gNaviInner .menuList.clm2 li {
	width: 24%;
	margin: 0px 0 10px 0;
}
.gNaviInner .menuList.clm2 li:nth-last-child(2):nth-child(odd){
	margin: 0px 0 34px 0;
}

/*事業者向け（業務用）TOP*/
.navBtnlist a.btnE{
	margin: 0 20px 0 0;
	padding: 0 36px 0 16px;
	font-size: 13px;
	line-height: 2.5;
	font-weight: bold;
	color: #fff;
	position: relative;
	display: inline-block;
	background: #00408f;
	border-radius:0 0 5px 5px;
}
.btnE::after{
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 10px;
	margin: -4px 0 0 0;
}



/*
	subNav
-----------------------------------------------------------------------------------------------*/
[class^="subNav__area"]{
	display: flex;
	position: absolute;
	right: 120px;
	z-index: 10;
}
.subNav__areaTop{
	top: 0;
}
.subNav__areaBtm{
	top: -37px;
}
a[class^="subNav__btn0"]{
	display: inline-block;
	padding: 12px 25px 12px 12px;
	font-size: 1.3rem;
	font-weight: var(--bold);
	color: var(--c-wh);
	line-height: 1.0;
	border-radius: 0 0 5px 5px;
	position: relative;
}
.subNav__areaBtm [class^="subNav__btn"]{
	border-radius: 5px 5px 0 0;
}
[class^="subNav__btn"]::after{
	content:' ';
	display:block;
	width:6px;
	height:6px;
	border-top:2px solid var(--c-wh);
	border-right:2px solid var(--c-wh);
	transform:translateY(-50%) rotate(45deg);
	transform-origin:0 0;
	position:absolute;
	top:45%;
	right:8px;
}
.subNav__btn01{
	background-color: #004080;
}
@media screen and (max-width:812px){
	[class^="subNav"]{
		display: none;
	}
}

/*IE*/
/*
@media all and (-ms-high-contrast:none){
_:-ms-lang(x)::-ms-backdrop,
}
*/
@media screen and (max-width: 812px) {
	.headerInner{
	width: 100%;
	height: 56px;
	padding: 0 10px;
	}
	.headerInner .cpLogo{
	width: 120px;
	padding: 15px 0 0 0;
	}
	.headerInner .cpLogo img{
	width:100%;
	}
	.headerInner .gNaviIcon{
		padding: 27px;
	}
	.gNaviIcon span:nth-of-type(1) {
		top: 17px;
	}
	.gNaviIcon span:nth-of-type(2) {
		top: 25px;
	}
	.gNaviIcon span:nth-of-type(3) {
		top: 33px;
	}
	.gNaviInner {
	padding: 50px 20px 40px 20px;
	}
	.gNaviInner ul >lo >a,
	.gNaviInner .gNaviList li a {
	font-size: 1.2rem;
	}
	.gNaviInner .menuListTit {
	font-size: 1.6rem;
	margin: 0 0 5px 0;
	}
	.gNaviInner .menuList li a {
	font-size: 1.3rem;
	}
	.gNaviInner .gNaviList li a:before {
	content: '';
	position: absolute;
	top: 58%;
	left: 10px;
	width: 8px;
	height: 8px;
	border-top: 2px solid #004096;
	border-right: 2px solid #004096;
	transform: rotate(45deg);
	transition: transform 0.3s;
	margin: -7px 0 0 0;
	}
	.gNaviInner .menuList.clm2 {
		flex-wrap: wrap;
	}
	.gNaviInner .menuList.clm2 li {
		width: 48%;
	}
	.headerInner .navBtnlist {
		display: none;
	}
}


/*
	kv
-----------------------------------------------------------------------------------------------*/
#kv{
	background: url("../images/bg_kv.png") no-repeat top center / cover;
	position: relative;
}
.kv__ctsArea{
	display: flex;
	justify-content: space-between;
	align-items: end;
	width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
}
.kv__txtArea{
	margin: 60px -13% 80px 0;
	position: relative;
	z-index: 10;
}
.kv__logo{
	width: 600px;
	margin-bottom: 50px;
}
.kv__catch{
	margin-left: 30px;
	margin-bottom: 15px;
	font-family: var(--ff-min);
	font-size: 3.0rem;
	font-weight: var(--fw-bold);
	position: relative;
}
.kv__catch span{
	display: inline-block;
	position: relative;
	z-index: 0;
}
.kv__catch span::after{
	content: "";
	width: 80%;
	height: 80%;
	background-color: var(--c-wh);
	position: absolute;
	top: 7px;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}
.kv__txt{
	margin-left: 30px;
	line-height: var(--lh-tall);
}
.kv__swiper{
	filter: drop-shadow(0 0 10px rgba(0,0,0,.1));
}
@media screen and (max-width:812px){
	#kv{
		background: url("../images/bg_kv.png") no-repeat top center / cover;
		position: relative;
	}
	.kv__ctsArea{
		justify-content: space-between;
		align-items: end;
		flex-direction: column;
		width: 100%;
		max-width: 500px;
		padding: 20px 20px 0;
	}
	.kv__txtArea{
		width: 100%;
		margin: 0;
	}
	.kv__logo{
		width: 100%;
		margin-bottom: 20px;
	}
	.kv__catch{
		margin-left: 0;
		margin-bottom: 0;
		font-size: 1.8rem;
		text-align: center;
	}
	.kv__catch span::after{
		top: 4px;
	}
	.kv__txt{
		display: none;
		margin-left: 0;
		font-size: 1.4rem;
		line-height: var(--lh-normal);
	}
	.kv__swiper{
		width: 100%;
		margin-top: 10px;
	}
}

/* バナー
==================================== */
a.kv__bnr{
	display: inline-flex;
	align-items: center;
	height: 90px;
	padding: 20px 80px 20px 20px;
	color: var(--c-wh);
	background-color: var(--c-main);
	position: absolute;
	right: 0;
	bottom: -45px;
	z-index: 10;
}
a.kv__bnr::before{
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-top: 1px solid var(--c-wh);
	border-right: 1px solid var(--c-wh);
	position: absolute;
	top: 50%;
	right: 22px;
	transform: translateY(-50%) rotate(45deg);
	transition: right 0.2s;
}
/* hover */
a.kv__bnr:hover{
	opacity: 1.0;
}
a.kv__bnr:hover:before{
	right: 17px;
}
@media screen and (max-width:812px){
	a.kv__bnr{
		height: 60px;
		padding: 10px 50px 10px 15px;
		font-size: 1.3rem;
		bottom: -30px;
	}
	a.kv__bnr::before{
		width: 8px;
		height: 8px;
		right: 15px;
	}
	/* hover */
	a.kv__bnr:hover:before{
		right: 15px;
	}
}


/* 動画観るボタン
==================================== */
a.kv__bnrMovie{
	display: inline-flex;
	height: 130px;
	position:fixed;
	right: 6px;
	bottom: 12px;
	z-index: 1000;
}
/* hover */
a.kv__bnrMovie:hover{
	opacity: 0.7;
}




/*
	クリエイティブノズル一覧
-----------------------------------------------------------------------------------------------*/
#product{
	position: relative;
}
.product__tit{
	margin-bottom: 30px;
	font-family: var(--ff-min);
	font-size: 3.0rem;
	font-weight: var(--fw-bold);
	text-align: center;
}
.product__txt{
	padding-bottom: 80px;
	font-size: 1.6rem;
	text-align: center;
	line-height: var(--lh-tall);
}
.product__sup{
	font-size: 1.2rem;
	vertical-align: top;
}
.product__notes{
	font-size: 1.4rem;
	color: var(--bgc-accent);
}
.product__logo{
	width: 105%;
	max-width: 1250px;
	opacity: 0.1;
	position: absolute;
	left: 50%;
	bottom: -2%;
	transform: translateX(-50%);
	z-index: -1;
}
@media screen and (max-width:812px){
	.product__tit{
		margin-bottom: 20px;
		font-size: 2.0rem;
	}
	.product__txt{
		padding-bottom: 60px;
		font-size: 1.5rem;
		text-align: left;
	}
	.product__notes{
		font-size: 1.3rem;
	}
	.product__logo{
		width: 102%;
		max-width: 550px;
	}
}

/* list
==================================== */
.productOlist{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 90px;
	counter-reset: number 0;
}
.productOlist__item{
	width: 160px;
}
.productOlist__tit{
	margin-bottom: 15px;
	font-size: 1.6rem;
	font-weight: var(--fw-bold);
	font-style: italic;
	text-align: center;
}
.productOlist__tit::before{
	content: counter(number, decimal-leading-zero);
	counter-increment: number 1;
	margin-right: 15px;
	font-weight: var(--fw-black);
}
.productOlist__img{
	transform: rotate(-335deg);
	filter: drop-shadow(0 0 10px rgba(0,0,0,.1));
}
@media screen and (max-width:812px){
	.productOlist{
		gap: 50px 40px;
	}
	.productOlist__item{
		width: calc((100% - 60px)/2);
		max-width: 150px;
	}
	.productOlist__tit{
		font-size: 1.4rem;
	}
	.productOlist__img{
		max-width: 120px;
		margin: 0 auto;
	}
}


/*
	ラインナップ
-----------------------------------------------------------------------------------------------*/
#lineup{
	position: relative;
}
.lineup__area{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 1200px;
	margin: 0 auto;
	padding: 120px 0;
}
@media screen and (max-width:812px){
	.lineup__area{
		width: 100%;
		max-width: 500px;
		padding: 80px 0;
		gap: 50px;
	}
}

/* 見出し
==================================== */
[class^="midashi0"]{
	margin-left: 10%;
}
.midashi__tit{
	margin-bottom: 10px;
	font-family: var(--ff-min);
	font-size: 2.8rem;
	font-weight: var(--fw-bold);
}
.midashi__tit span{
	display: inline-block;
	position: relative;
}
.midashi__tit span::before,
.midashi__tit span::after{
	content: "“";
	font-size: 6.0rem;
	font-weight: var(--fw-bold);
	line-height: var(--lh-none);
	opacity: 0.2;
	position: absolute;
}
.midashi__tit span::before{
	top: 0;
	left: -3.5rem;
}
.midashi__tit span::after{
	right: -3.5rem;
	bottom: 0;
	transform: rotate(-180deg);
}
/* シンプルなオペレーション */
.midashi03{
	width: 100%;
	margin: 10% 0 0 10%;
}
@media screen and (max-width:812px){
	[class^="midashi0"]{
		margin: 0 40px;
	}
	.midashi__tit{
		margin-bottom: 10px;
		font-size: 2.0rem;
	}
	.midashi__tit span::before,
	.midashi__tit span::after{
		font-size: 4.0rem;
	}
	.midashi__tit span::before{
		left: -2.2rem;
	}
	.midashi__tit span::after{
		right: -2.2rem;
	}
	/* シンプルなオペレーション */
	.midashi03{
		margin: 0 40px;
	}
}

/* 盛り付けイメージ
==================================== */
[class^="plating__wrap"]{
	width: 450px;
}
.plating__imgArea{
	position: relative;
}
.plating__imgArea::before{
	content: "";
	width: 100%;
	height: 90%;
	background: url("../images/bg_platingImg.png") no-repeat top center / cover;
	position: absolute;
	bottom: 0;
	z-index: -1;
}
.plating__num{
	font-family: var(--ff-en);
	font-size: 13.0rem;
	color: var(--c-main);
	line-height: var(--lh-none);
	position: absolute;
	top: 0;
	left: -8%;
}
.plating__imgSub{
	width: 130px;
	transform: rotate(-335deg);
	filter: drop-shadow(0 0 10px rgba(0,0,0,.1));
	position: absolute;
	right: -4%;
	bottom: -4%;
}
.plating__name{
	padding-top: 20px;
	font-size: 1.7rem;
	font-weight: var(--fw-bold);
	font-style: italic;
	text-align: center;
}
.plating__name span{
	font-size: 1.3rem;
	font-weight: var(--fw-medium);
	font-style: normal;
	color: var(--bgc-accent);
}
/* 01 */
.plating__wrap01{
	margin: 0 5% 0 0;
}
/* 02 */
.plating__wrap02{
	margin: -35% 0 0 5%;
}
.plating__wrap02 .plating__num{
	left: auto;
	right: -6%;
}
/* 03 */
.plating__wrap03{
	margin: 6% 10% 0 0;
}
.plating__wrap03 .plating__num{
	top: 15%;
	left: auto;
	right: -8%;
}
.plating__wrap03 .plating__imgSub{
	right: auto;
	left: -6%;
}
/* 04 */
.plating__wrap04{
	margin: 10% 5% 0 0;
}
/* 05 */
.plating__wrap05{
	width: 600px;
	margin: -42% 0 0 5%;
}
.plating__wrap05 .plating__num{
	top: -2%;
	left: -6%;
}
.plating__wrap05 .plating__imgArea::before{
	width: 93%;
	height: 90%;
}
.plating__wrap05 .plating__imgSub{
	right: auto;
	left: -8%;
}
/* 06 */
.plating__wrap06{
	width: 650px;
	margin-left: calc(100% - 650px);
}
.plating__wrap06 .plating__num{
	top: -2%;
	left: auto;
	right: 5%;
}
.plating__wrap06 .plating__imgSub{
	right: auto;
	left: -5%;
}
/* 07 */
.plating__wrap07{
	margin: -40% 0 0 0;
}
.plating__wrap07 .plating__num{
	left: auto;
	right: -8%;
}
/* 08 */
.plating__wrap08{
	margin: -25% 10% 0 calc(90% - 450px);
}
.plating__wrap08 .plating__num{
	left: auto;
	right: -8%;
}
/* 09 */
.plating__wrap09{
	margin: -20% 0 0 5%;
}
.plating__wrap09 .plating__num{
	top: -8%;
	left: auto;
	right: 3%;
}
/* 10 */
.plating__wrap10{
	margin: 10% 5% 0 0;
}
.plating__wrap10 .plating__num{
	top: -5%;
	left: 2%;
}
/* 11 */
.plating__wrap11{
	width: 500px;
	margin-top: -22%;
}
.plating__wrap11 .plating__num{
	left: 15%;
}
/* 12 */
.plating__wrap12{
	margin: 8% 10% 0 0;
}
.plating__wrap12 .plating__num{
	left: -15%;
}
@media screen and (max-width:812px){
	[class^="plating__wrap"]{
		width: 280px;
	}
	.plating__num{
		font-size: 8.0rem;
		left: 4%;
	}
	.plating__imgSub{
		width: 100px;
		right: -8%;
		bottom: -4%;
	}
	.plating__name{
		padding-top: 15px;
		font-size: 1.4rem;
	}
	.plating__name span{
		font-size: 1.2rem;
	}
	/* 01 */
	.plating__wrap01{
		margin: 0;
	}
	/* 02 */
	.plating__wrap02{
		margin: 0 0 0 calc(100% - 280px);
	}
	.plating__wrap02 .plating__num{
		right: 4%;
	}
	.plating__wrap02 .plating__imgSub{
		left: -8%;
	}
	/* 03 */
	.plating__wrap03{
		margin: 0;
	}
	.plating__wrap03 .plating__imgSub{
		left: auto;
		right: -8%;
	}
	/* 04 */
	.plating__wrap04{
		margin: 0 0 0 calc(100% - 280px);
	}
	.plating__wrap04 .plating__imgSub{
		left: -8%;
		right: auto;
	}
	/* 05 */
	.plating__wrap05{
		width: 100%;
		margin: 0 20px;
	}
	.plating__wrap05 .plating__num{
		top: -2%;
		left: 3%;
	}
	.plating__wrap05 .plating__imgSub{
		left: -3%;
		bottom: -9%;
	}
	/* 06 */
	.plating__wrap06{
		width: 100%;
		margin-left: 0;
	}
	.plating__wrap06 .plating__num{
		top: -5%;
	}
	.plating__wrap06 .plating__imgSub{
		left: 3%;
		bottom: -10%;
	}
	/* 07 */
	.plating__wrap07{
		margin: 0;
	}
	/* 08 */
	.plating__wrap08{
		margin: 0 0 0 calc(100% - 280px);
	}
	.plating__wrap08 .plating__num{
		left: -8%;
		right: auto;
	}
	.plating__wrap08 .plating__imgSub{
		left: -8%;
		right: auto;
	}
	/* 09 */
	.plating__wrap09{
		margin: 0;
	}
	.plating__wrap09 .plating__num{
		top: -6%;
	}
	/* 10 */
	.plating__wrap10{
		margin: 0 0 0 calc(100% - 280px);
	}
	.plating__wrap10 .plating__num{
		top: -3%;
	}
	.plating__wrap10 .plating__imgSub{
		right: auto;
		left: -10%;
	}
	/* 11 */
	.plating__wrap11{
		width: 300px;
		margin-top: 0;
	}
	/* 12 */
	.plating__wrap12{
		margin: 0 0 0 calc(100% - 280px);
	}
	.plating__wrap12 .plating__num{
		left: 4%;
	}
	.plating__wrap12 .plating__imgSub{
		left: -8%;
	}
}


/*
	導入に関するご案内
-----------------------------------------------------------------------------------------------*/
#guide{
	background-color: var(--bgc-main);
}
.guide__tit{
	margin-bottom: 30px;
	padding-bottom: 10px;
	font-family: var(--ff-min);
	font-size: 3.0rem;
	text-align: center;
	border-bottom: 1px solid;
}
.guide__txt{
	text-align: center;
}

.guide__cmnTit{
	margin-bottom: 30px;
	font-family: var(--ff-min);
	font-size: 2.5rem;
	text-align: center;
}
@media screen and (max-width:812px){
	.guide__tit{
		margin-bottom: 20px;
		padding-bottom: 10px;
		font-size: 2.0rem;
	}
	.guide__txt{
		text-align: left;
	}
	
	.guide__cmnTit{
		margin-bottom: 15px;
		font-size: 2.0rem;
	}
}


/* 導入フロー
==================================== */
#flow{
	margin-top: 80px;
}
.flowOlist{
	display: flex;
	justify-content: center;
	gap: 50px;
	counter-reset: number 0;
}
.flowOlist__item{
	width: 300px;
	background-color: var(--c-wh);
	position: relative;
}
.flowOlist__item::after{
	content: "";
	width: 10px;
	height: 20px;
	clip-path: polygon(0 0, 0 100%, 100% 50%);
	background: var(--bgc-accent);
	position: absolute;
	top: 50%;
	right: -30px;
	transform: translateY(-50%);
}
.flowOlist__item:last-of-type:after{
	display: none;
}
.flowOlist__tit{
	padding: 15px;
	font-size: 1.7rem;
	color: var(--c-wh);
	text-align: center;
	background-color: var(--bgc-accent);
	position: relative;
}
.flowOlist__tit::before{
	content: counter(number);
	counter-increment: number 1;
	font-family: var(--ff-en);
	font-size: 5.0rem;
	color: var(--c-main);
	font-weight: var(--fw-black);
	position: absolute;
	top: -40px;
	left: 15px;
}
.flowOlist__txt{
	padding: 20px 30px;
	font-size: 1.5rem;
}
@media screen and (max-width:812px){
	#flow{
		margin-top: 50px;
	}
	.flowOlist{
		flex-direction: column;
		gap: 40px;
	}
	.flowOlist__item{
		width: 100%;
	}
	.flowOlist__item::after{
		width: 20px;
		height: 10px;
		clip-path: polygon(0 0, 50% 100%, 100% 0);
		top: auto;
		right: 50%;
		bottom: -25px;
		transform: translateY(0) translateX(50%);
	}
	.flowOlist__tit{
		padding: 10px;
		font-size: 1.5rem;
	}
	.flowOlist__tit::before{
		font-size: 4.0rem;
		top: -35px;
	}
	.flowOlist__txt{
		padding: 20px;
		font-size: 1.4rem;
	}
}

/* 対象機種と専用フロントセット
==================================== */
#freezer{
	margin-top: 80px;
}
.freezer__ctsArea{
	padding: 60px;
	background-color: var(--c-wh);
}
.freezerList{
	display: flex;
	gap: 30px;
}
.freezerList__item{
	width: calc((100% - 60px)/3);
}
.freezerList__ctsArea{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
	margin-bottom: 20px;
}
.freezerList__img{
	height: 200px;
}
.freezerList__txt{
	font-size: 1.6rem;
	font-weight: var(--fw-bold);
	color: var(--c-main);
}
.freezerList__caption{
	margin-top: 10px;
	font-size: 1.3rem;
	text-align: center;
}
@media screen and (max-width:812px){
	#freezer{
		margin-top: 50px;
	}
	.freezer__ctsArea{
		padding: 0;
		background-color: transparent;
	}
	.freezerList{
		flex-direction: column;
		gap: 20px;
	}
	.freezerList__item{
		width: 100%;
		padding: 20px;
		background-color: var(--c-wh);
	}
	.freezerList__ctsArea{
		gap: 15px;
		margin-bottom: 10px;
	}
	.freezerList__caption{
		margin-top: 5px;
	}
}

/* 注釈
==================================== */
.listNotes{
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-top: 15px;
	padding-left: 1.4rem;
}
.listNotes__item{
	font-size: 1.4rem;
	text-indent: -1.4rem;
	line-height: var(--lh-small);
	position: relative;
}
.listNotes__item::before{
	content: "※";
}

/*
	事業者の方へ
-----------------------------------------------------------------------------------------------*/
.business__tit{
	margin-bottom: 20px;
	font-family: var(--ff-min);
	font-size: 2.5rem;
	text-align: center;
}
.business__txt{
	text-align: center;
}
@media screen and (max-width:812px){
	.business__tit{
		margin-bottom: 10px;
		font-size: 2.0rem;
	}
}


/*
	footer
-----------------------------------------------------------------------------------------------*/
#footer{
	display: flex;
	flex-direction: column;
	gap: 15px;
	padding: 30px;
	color: var(--c-wh);
	background-color: var(--c-main);
	position: relative;
}
#footer > [class^="footer__"]{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.footer__btm{
	flex-direction: row-reverse;
}
/* テキストリンク */
a.footer__txtLink{
	padding-left: 20px;
	color: var(--c-wh);
	position: relative;
}
.footer__txtLink::before{
	content: "";
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: var(--c-wh);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.footer__txtLink::after{
	content: "";
	width: 4px;
	height: 4px;
	border-top: 1px solid var(--c-bk);
	border-right: 1px solid var(--c-bk);
	position: absolute;
	top: 50%;
	left: 5px;
	transform: translateY(-50%) rotate(45deg);
}
.footer__copyright{
	font-size: 1.2rem;
}
/* リスト */
#footer__list{
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}
#footer__list li{
	padding-left: 15px;
	font-size: 1.3rem;
	position: relative;
}
#footer__list li::after{
	content:'|';
	position: absolute;
	left: 0;
}
#footer__list li a{
	color: var(--c-wh);
	text-decoration: underline;
}
#footer__list li a:hover{
	opacity: 1.0;
	text-decoration: none;
}
#footer__list li:first-of-type::after{
	content: none;
}
@media screen and (max-width:812px){
	#footer{
		gap: 15px;
	}
	#footer > [class^="footer__"]{
		justify-content: center;
		flex-direction: column;
		gap: 15px;
	}
	/* リスト */
	#footer__list{
		justify-content: center;
	}
	#footer__list li:first-of-type{
		padding-left: 0;
	}
}


/*landscape
------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 812px) {
	@media screen and (orientation: landscape) {
		.sixCtsBox ul, .ctsDetailinne, .infoArea, #nozzleArea .titBox, #OSSArea{
			width: 480px;
			margin: 0 auto;
		}
		.ctsInBox{
			width: 410px;
			margin: 0 auto;
		}
		.gNaviInner {
			padding: 2px 80px;
		}
		.gNaviInner .menuListTit p {
			font-size: 2.0rem;
		}
		.gNaviInner .gNaviList {
			margin: 0 0 15px 0;
		}
	}
}
/*kvArea
------------------------------------------------------------------------------------------------------*/
#kvArea{
	min-width: 1200px;
	min-height: 720px;
	overflow: hidden;
	position: relative;
}
#kvArea .kvTitArea{
	margin: 0 auto;
	z-index: 99;
}
.kvImgBox{
	margin: 91px 0 0 0;
	position: relative;
}
.kvImgBox .tit{
	width: 505px;
	margin: 0 auto;
	position: relative;
}
.kvImgBox .frzrImg{
	width: 500px;
	margin: -41px auto 0 auto;
	position: relative;
}
#kvArea .videoArea{
	width: 100%;
	min-width: 1200px;
	min-height: 600px;
	overflow: hidden;
	position: absolute;
	top: 0;
	z-index: -1;
}
#kvArea .videoArea::after{
	content: '';
	width: 100%;
	height: 100%;
	background: url("../images/kv_bgImg.png") no-repeat bottom/cover;
	position: absolute;
	
}
#kvArea .videoBg{
	width: 100%;
	height: 80%;
	min-width: 1200px;
	min-height: 600px;
	position: absolute;
	bottom: 0;
	transform: translate(0, -100%);
}
#kvArea .videoArea video{
	width: 100%;
	position: absolute;
	transform: translateY(-50%);
	top: 50%;
	z-index: -1;
}
/* 取説banner 遷移btn */
a.transBanner{
	display: block;
	padding: 15px 80px 15px 25px;
	background-color: #000;
	color: #fff;
	font-size: 1.6rem;
	position: absolute;
	bottom: 80px;
	right: 0;
	transition: .4s;
}
a.transBanner::after{
	content: '';
	width: 10px;
    height: 10px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    position: absolute;
    transform: translateY(-50%) rotate(45deg);
    top: 50%;
    right: 24px;
	transition: .4s;
}
a.transBanner:hover{
	background-color: #737373;
	opacity: 1;
	transition: .4s;
}
a.transBanner:hover::after{
    right: 22px;
	transition: .4s;
}
/* クリエイティブノズル bnr */
.pickup-bnr{
	display: block;
	width: 230px;
	position: absolute;
	right: 0;
	bottom: 28%;
}
/* animation bnr*/
.pickup-bnr{
	animation: scroll-y ease-in-out 2.5s infinite;
}
@keyframes scroll-y{
	0%{
		transform: translateY(0%);
	}
	50%{
		transform: translateY(10px);
	}
    100%{
		transform: translateY(0%);
	}
}

/*IE*/
@media screen and (max-width: 812px) {
	#kvArea{
	min-width: 100%;
	height: 570px;
	}
	.kvImgBox{
		margin: 90px 0 0 0;
	}
	.kvImgBox .tit{
		width: 250px;
	}
	.kvImgBox .frzrImg{
		width: 322px;
		margin: 33px auto 0 auto;
	}
	#kvArea{
		height: auto;
		min-height: 418px;
	}
	#kvArea .videoArea{
		height: 418px;
		min-width: 375px;
		min-height: 436px;
	}
	#kvArea .videoArea::after{
		max-height: 438px;
		}
	#kvArea .videoArea video {
		width: 100%;
		position: absolute;
		transform: translateX(-50%);
		left: 50%;
		top: 0;
		z-index: -1;
	}
	/* 取説page 遷移btn */
	a.transBanner{
		padding: 10px 35px 10px 20px;
		font-size: 1.4rem;
		bottom: 20px;
	}
	a.transBanner::after{
		width: 7px;
		height: 7px;
		right: 18px;
	}
	a.transBanner:hover::after{
		right: 16px;
	}
	a.transBanner span{
		display: none;
	}
	/* クリエイティブノズル bnr */
	.pickup-bnr{
		display: none;
	}
}

/*ctsArea
------------------------------------------------------------------------------------------------------*/
.abCtsDetailinner {
	width: 1040px;
	height: auto;
	margin: 0 auto;
	z-index: 1;
}
.abCtsDetailinner .abnav{
	background:#004097;
	width: 100%;
	z-index: 3;
}
.abCtsDetailinner .abnav ul {
	margin: 0 15px;
	display: -ms-flex;
	display: flex;
	color: #fff;
	justify-content: space-between;
}
.abCtsDetailinner .abnav ul li{
	margin: 0 0 0 10px;
	position: relative;
	display: block;
	line-height:3.5;

}
.abCtsDetailinner .abnav ul li::after{
	content: '｜';
	position: absolute;
}
.abCtsDetailinner .abnav ul li:first-of-type{
	margin: 0;

}
.abCtsDetailinner .abnav ul li:last-of-type::after {
	content: none;
}
.abCtsDetailinner .abnav ul li:first-of-type a{
	padding:0 18px 0 14px;
	width: 100%;
	height: 100%;
}
.abCtsDetailinner .abnav ul li:last-of-type a {
	padding:0 8px 0 14px;
	width: 100%;
	height: 100%;

}
.abCtsDetailinner .abnav ul li a{
	font-size: 1em;
	color: #fff;
	font-weight: bold;
	width: 100%;
	height: 100%;
	padding: 0 18px 0 14px;
}
.abCtsDetailinner .abnav ul li a::before{
	content: '';
	width: 10px;
	height: 7px;
	display: block;
	background:url("../images/icon_arrow.svg") no-repeat;
	position: absolute;
	transform: translateY(-50%);
	top: 50%;
	left: 0;
}
/*-- オプション部品 --*/
.optionLink{
	display: flex;
	padding: 15px;
	color: #004097;
	font-size: 1.3rem;
	font-weight: bold;
	background-color: #bad7ff;
	position: relative;
}
.optionLink__txt{
	margin-right: 15px;
	padding-right: 15px;
	border-right: 1px solid #fff;
}
.optionLink__list{
	display: flex;
	flex-wrap: wrap;
	gap: 8px 20px;
	justify-content: flex-start;
}
.optionLink__list li a{
	padding-left: 20px;
	position: relative;
}
.optionLink__list li a::before{
	content: '';
	width: 14px;
	height: calc(tan(50deg) * 18px / 2);
	background-color: #004097;
	clip-path: polygon(50% 0, 100% 100%, 0 100%);
	transform: translateY(-50%) rotate(90deg);
	position: absolute;
	top: 50%;
	left: 0;
}
span.new{
	display: inline;
	margin-left: 8px;
	padding: 1px 6px;
	color: #fff;
	font-size: 1.1rem;
	font-weight: normal;
	line-height: 1;
	background-color: #ed2079;
}
span.line{
	border-bottom: 1px solid #004097;
}
.abInfoArea {
	text-align: center;
	align-items: center;
	position: relative;
}
.abInfoArea .tit {
	margin:0 0 20px 0;
	font-size: 2.2rem;
	font-weight: bold;
	letter-spacing: 0.2rem;
	line-height: 1.8;
	color: #5aa6dc;
}
.abInfoArea .abPh {
	position: absolute;
	top:-160px;
	right: -120px;
	z-index: 1;
}
/* クリエイティブノズル bnr */
.optionLink .pickup-bnr{
	display: none;
}
/*--日世フリーザーの特徴--*/
.ctsInBox{
	padding: 80px 0 100px 0;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background: url("../images/feature_bg_fami.png") no-repeat center/cover;
}
.ctsInBox .feature{
	margin: 0 0 50px 0;
}

.ctsInBox .feature .titBox{
	width: 100%;
}
.ctsInBox .feature h2{
	padding: 0 0 30px 0;
	font-size: 2.8rem;
	font-weight: 900;
	color: #004096;
	text-align: center;
	position: relative;
}
.ctsInBox .feature h2::after{
	content: '';
	width: 45px;
	height: 4px;
	background: #5aa5db;
	position: absolute;
	bottom: 0;
	transform: translateX(-50%);
	left: 50%;
}
.listTxt{
	margin: 0 auto;
	padding: 0 0 0 350px;
	display: inline-block;
}
.listTxt p{
	margin: 0 0 50px 0;
	font-size: 2.4rem;
	font-weight: 900;
	line-height: 1.8;
	color: #004096;
}
.ctsInBox .feature .listTxt{
	line-height: 1.8;
}
.ctsInBox .feature .listTxt p{
	margin: 0 0 42px 0;
	color: #004096;
	font-size: 2.4rem;
	font-weight: 900;
	letter-spacing: 0.2rem;
}
.checkList{
	font-size: 2.0rem;
}
.checkList li{
	margin: 0 0 30px 0;
	padding: 0 0 0 40px;
	position: relative;
}
.checkList li:last-child{
	margin: 0;
}
.checkList li::before{
	content: '';
	width: 30px;
	height: 30px;
	background: url("../images/icon_check.svg") no-repeat center;
	position: absolute;
	transform: translateY(-50%);
	top: 50%;
	left: 0;
}
@media screen and (max-width: 812px) {
	.abCtsDetailinner {
		width: 90%;
		margin: 0 auto;
		padding: 10px 0;
		position: relative;
		z-index: 1;
	}
	.abInfoArea {
		display: block;
	}
	.abInfoArea .tit {
		font-size: 1.7rem;
		line-height: 1.6;
		text-align: center;
		margin:0 0 20px 0;
	}
	.abInfoArea .txt {
		font-size: 1.3rem;
		font-weight: normal;
		line-height: 1.8;
	}
	.abTxtArea {
		position: static;
		margin: 0 0 20px 0;
	}
	.abInfoArea .abPh {
		position: static;
		width: 100%;
	}
	.abCtsDetailinner .abnav{
		position: static;
		width: 100%;
		margin: 0 auto;
	}
	.abCtsDetailinner .abnav ul {
		margin: 0;
		display: -ms-flex;
		display: flex;
		padding: 10px 0;
		justify-content: center;
		flex-wrap: wrap;
	}
	.abCtsDetailinner .abnav ul li{
		margin: 0;
		text-align: center;
		width: 31%;
		line-height: 1.2;
		border-right: 1px solid #fff;
		border-bottom: 1px solid #fff;
	}
	.abCtsDetailinner .abnav ul li::after{
		content: none;
	}
	.abCtsDetailinner .abnav ul li:nth-child(3n+1):nth-last-child(-n+3),
	.abCtsDetailinner .abnav ul li:nth-child(3n+1):nth-last-child(-n+3) ~ li {
		border-bottom:none;
	}
	.abCtsDetailinner .abnav ul li:nth-of-type(3n){
		border-right: none;
	}
	.abCtsDetailinner .abnav ul li:last-of-type{
		border-right: none;
		width: 100%;
	}
	.abCtsDetailinner .abnav ul li a{
		font-size: 1.1rem;
		line-height: 1.2;
		padding: 10px 0 20px 0 ;
		display: inline-block;
	}
	.abCtsDetailinner .abnav ul li:first-of-type a{
		padding: 10px 0 20px 0 ;
	}
	.abCtsDetailinner .abnav ul li:last-of-type a {
		padding: 10px 0 20px 0 ;
	}
	.abCtsDetailinner .abnav ul li a::before{
		content: '';
		position: absolute;
		bottom: 10px;
		left: 50%;
		top: auto;
		bottom: 12spx;
		transform: translate(-50%,0);
	}
	.abCtsDetailinner .abnav ul li:first-of-type a::before{
		content: '';
		position: absolute;
		top: auto;
		bottom: 10px;
		left: 50%;
	}
	/*-- オプション部品 --*/
	.optionLink{
		display: block;
		width: 100%;
		color: #004097;
		font-size: 1.2rem;
		font-weight: bold;
		background-color: #bad7ff;
	}
	.optionLink__txt{
		margin-right: 0;
		margin-bottom: 10px;
		padding-right: 0;
		padding-bottom: 5px;
		min-width: 100%;
		border-right: none;
		border-bottom: 1px solid #fff;
	}
	.optionLink__list{
		gap: 15px 10px;
	}
	.optionLink__list li a{
		padding-left: 15px;
	}
	.optionLink__list li a::before{
		width: 10px;
		height: calc(tan(40deg) * 15px / 2);
	}
	span.new{
		padding: 1px 4px;
		color: #fff;
		font-size: 1rem;
	}
	/* クリエイティブノズル bnr */
	.optionLink .pickup-bnr{
		display: block;
        max-width: 140px;
        width: 100%;
        position: absolute;
        right: 0;
        bottom: -70%;
	}
	/*--日世フリーザーの特徴--*/
	.ctsInBox{
		max-width: 450px;
		margin: 0 auto;
		padding: 80px 0;
		background: url("../images/feature_bg_sp.png") no-repeat center/cover;
	}
	.ctsInBox .feature{
		margin: 0;
	}
	.ctsInBox .feature .titBox{
		width: 100%;
	}
	.ctsInBox .feature h2{
		padding: 0 0 30px 0;
		font-size: 2.8rem;
		font-weight: 900;
		color: #004096;
		text-align: center;
		position: relative;
	}
	.ctsInBox .feature h2::after{
		content: '';
		width: 45px;
		height: 4px;
		background: #5aa5db;
		position: absolute;
		bottom: 0;
		transform: translateX(-50%);
		left: 50%;
	}
	.listTxt{
		margin: 0 auto;
		padding: 300px 0 0 0;
		display: inline-block;
	}
	.listTxt p{
		margin: 30px 0;
		font-size: 2.0rem;
		font-weight: 900;
		line-height: 1.6;
		color: #004096;
		text-align: center;
	}
	.checkList{
		font-size: 1.4rem;
	}
	.checkList li {
		margin: 0 0 12px 0;
		padding: 0 0 0 32px;
	}
	.checkList li::before{
		width: 22px;
		height: 22px;
	}
}
/*sixCtsArea
------------------------------------------------------------------------------------------------------*/
#sixCtsArea{
	padding: 80px 0;
}
.sixCtsBox{
	width: 1100px;
	margin: 0 auto;
	padding: 0 30px;
}
.sixCtsBox ul{
	margin: 0 0 -55px 0;
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
}
.sixCtsBox ul li{
	width: calc((100% - 66px)/3);
	margin: 0 33px 55px 0;
}
.sixCtsBox ul li:nth-of-type(3n){
	margin: 0;
}
.sixCtsBox ul li img{
	margin: 0 0 10px 0;
	position: relative;
	z-index: -2;
}
.ctsDeco{
	position: relative;
}
.ctsDeco::before{
	content: '';
	width: 75px;
	height: 75px;
	position: absolute;
	top: -20px;
	left: -20px;
	z-index: -1;
}
.eisei::before{
	background: url("../images/feature_icon01.png") no-repeat center/cover;
}
.hinshitsu::before{
	background: url("../images/feature_icon02.png") no-repeat center/cover;
}
.sousa::before{
	background: url("../images/feature_icon03.png") no-repeat center/cover;
}
.hozen::before{
	background: url("../images/feature_icon04.png") no-repeat center/cover;
}
.anzen::before{
	background: url("../images/feature_icon05.png") no-repeat center/cover;
}
.kankyou::before{
	background: url("../images/feature_icon06.png") no-repeat center/cover;
}
.sixTit{
	margin: 0 0 12px 0;
	font-size: 1.6rem;
	font-weight: 700;
	color: #004096;
}
.sixNote{
	font-size: 1em;
	text-align: justify;
}
@media screen and (max-width: 812px) {
	.sixCtsBox{
		width: 100%;
		margin: 0 auto;
		padding: 0 30px;
	}
	.sixCtsBox ul{
		margin: 0 auto;
		display: block;
	}
	.sixCtsBox ul li{
		width: 100%;
	}
	.sixCtsBox ul li:nth-child(3) {
		margin: 0 0 55px 0;
	}
	.sixTit{
		margin: 0 0 8px 0;
		font-size: 1.8rem;
		line-height: 1.3;
	}
}
/*lineUp(1~5)
------------------------------------------------------------------------------------------------------*/
#lineUp01, #lineUp03, #lineUp05{
	background: url("../images/bg_blue.png") no-repeat center/cover;
	z-index: -100;
}

.lineUpArea{
	padding: 100px 0 80px 0;
}
/*-- 見出し Start--*/
.ctsDetailinner{
	padding: 0 30px;
}
.titArea{
	width: 100%;
	margin: 0 auto;
	text-align: center;
	border-bottom: 2px solid #004097;
	position: relative;
}
.ciSoft::after{
	content: '';
	width: 380px;
	height: 220px;
	background: url("../images/lineup_img01.png") no-repeat center/cover;
	position: absolute;
	bottom: 0;
	left: auto;
	right: 50px;
	z-index: 0;
}
.tripleW::after{
	content: '';
	width: 380px;
	height: 220px;
	background: url("../images/lineup_img02.png") no-repeat center/cover;
	position: absolute;
	bottom: 0;
	left: auto;
	right: 55px;
	z-index: 0;
}
.single::after{
	content: '';
	width: 185px;
	height: 220px;
	background: url("../images/lineup_img03.png") no-repeat center/cover;
	position: absolute;
	bottom: 0;
	left: auto;
	right: 150px;
	z-index: 0;
}
.blend::after{
	content: '';
	width: 185px;
	height: 220px;
	background: url("../images/lineup_img04.png") no-repeat center/cover;
	position: absolute;
	bottom: 0;
	left: auto;
	right: 150px;
	z-index: 0;
}
.shake::after{
	content: '';
	width: 170px;
	height: 220px;
	background: url("../images/lineup_img05.png") no-repeat center/cover;
	position: absolute;
	bottom: 0;
	right: 150px;
	z-index: 0;
}
.titArea h3{
	margin: 0 0 30px 0;
	font-size: 4.2rem;
	font-weight: 900;
	letter-spacing: 0.4rem;
	color: #004097;
	z-index: 1;
	position: relative;
}
.titArea .txt{
	margin: 0 0 30px 0;
	font-size: 1.2em;
	font-weight: 400;
	line-height: 1.8;
	text-align: center;
	color: #000;
	z-index: 1;
	position: relative;
}
/*-- 見出し End--*/

.infoArea .noFlexItem{
	display: -ms-flex;
	display: flex;
	justify-content: center;
	align-items: center;
}
.infoArea .lineUpItem{
	width: 1100px;
	margin: auto;
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.lineUpBox{
	width: calc((50% - 4%));
	margin: 100px 0 0 0;
	display: inline-block;
}
.lineUpBox:nth-last-child(1),
.lineUpBox:nth-child(2){
	margin: 0;
}
.liBox{
	display: -ms-flex;
	display: flex;
	margin: 0 0 55px 0;
}
.listphoto{
	display: -ms-flex;
	display: flex;
	justify-content: space-around;
	align-items: center;
}
.listphoto img{
	width: auto;
	height: 440px;
}
.listphoto .sPhoto{
	height: 400px;
}
.listphoto .widthVer{
	width: 180px;
	height: auto
}
.frzrDetail{
	max-width: 262px;
	margin: 0 0 0 40px;
	display: -ms-flex;
	display: flex;
	flex-flow:column;
	justify-content:space-between;
}
.sDetail{
	padding: 20px 0;
}
.listTxtArea .txt{
	font-size: 1.6rem;
	font-weight: 700;
	color: #5aa6dc;
}
.listTxtArea .name{
	margin: 0 0 3px 0;
	font-size: 3.8rem;
	font-weight: 900;
	color: #004097;
}
.listTxtArea .type{
	margin: 0 0 25px 0;
	font-size: 1.1rem;
	font-weight: 700;
	color: #004097;
}
.listTxtArea .type span{
	margin: 0 6px 0 0;
	padding: 5px 10px;
	background: #004097;
	color: #fff;
}
.listTxtArea .note{
	font-size: 1.7rem;
	font-weight: 500;
}
.lineNote{
	min-width: 484px;
}
.lineNote li{
	margin: 0 0 30px 0;
	padding-left: 1rem;
	text-indent: -1.5rem;
	font-size: 1.7rem;
	font-weight: 500;
	letter-spacing: 0.1rem;
	line-height: 1.6;
}
.memo p{
	margin: 0 0 20px 0;
	font-size: 1.2rem;
}
.memo .mark{
	width: 225px;
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
}
.memo ul li{
	margin: 0 5px 5px 0;
	position: relative;
}
.memo ul li:last-child{
	margin: 0 0 5px 0;
}
.memo ul li img{
	width: 40px;
	height: 40px;
}
.memo ul li img:hover + .fukidashi{
	display: none;
}
.fukidashi{
	display: none;
}
.listBtnArea{
	max-width: 440px;
	margin: 0 auto;
	padding: 0 0 25px 0;
	text-align: center;
}
.listBtnArea ul{
	margin: 0 auto;
	display: -ms-flex;
	display: flex;
	gap: 0 5px;
	justify-content: space-between;
}
.listBtnArea ul li{
	width: calc((100% - 15px)/4);
}
.listBtnArea a{
	width: 100%;
	padding: 12px 0;
	display: block;
	font-size: 1.2rem;
	font-weight: 500;
	letter-spacing: 0.1rem;
	line-height: 1;
	color: #004097;
	background-color: #fff;
	border: 1px solid #004097;
	position: relative;
	justify-content: space-between;
	transition: all .2s;
}
.listBtnArea a::after, .movieBtn a::after{
	content: '';
	width: 6px;
	height: 6px;
	border-top: 1px solid #004097;
	border-right: 1px solid #004097;
	transform: translateY(-50%) rotate(45deg);
	position: absolute;
	top: 50%;
	right: 10px;
	transition: all .2s;
}
.listBtnArea a:hover::after{
	right: 8px;
}
.movieBtn a{
	width: 250px;
	margin: 10px auto 0 auto;
	padding: 12px 0;
	display: block;
	font-size: 1.6rem;
	font-weight: 500;
	text-align: center;
	letter-spacing: 0.1rem;
	color: #fff;
	background-color: #00b7ed;
	background-image: -webkit-linear-gradient(67deg, #00b7ed 0%, #0b76e2 52%);
	background-image: -o-linear-gradient(67deg, #00b7ed 0%, #0b76e2 52%);
	background-image: linear-gradient(157deg, #00b7ed 0%, #0b76e2 52%);
	border-radius: 50px;
	position: relative;
	justify-content: space-between;
	transition: all .2s;
}
.movieBtn a::after{
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	right: 22px;
}
.movieBtn a:hover::after{
	right: 18px;
}
.featuresBtn a::after{
	content: '';
	width: 6px;
	height: 6px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: translateY(-50%) rotate(45deg);
	position: absolute;
	top: 50%;
	right: 12px;
	transition: all .2s;
}
.featuresBtn a{
	max-width: 440px;
	margin: -40px auto 20px auto;
	padding: 12px 0;
	display: block;
	font-size: 1.6rem;
	font-weight: 500;
	text-align: center;
	letter-spacing: 0.1rem;
	color: #fff;
	background-color: #e2c53b;
	background-image: -webkit-linear-gradient(67deg, #65b5f6 0%, #004097 52%);
	background-image: -o-linear-gradient(67deg, #65b5f6 0%, #004097 52%);
	background-image: linear-gradient(157deg, #65b5f6 0%, #004097 52%);
	border-radius: 4px;
	position: relative;
	justify-content: space-between;
	transition: all .2s;
}
.featuresBtn a::after{
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	right: 22px;
}
.featuresBtn a:hover::after{
	right: 15px;
}


.bnrArea{
	width: 800px;
	margin: 50px auto 25px auto;
}
.ciBnr{
	margin: 80px 0 18px 0;
	font-size: 2.0rem;
	text-align: center;
	font-weight: 700;
}
.bnrArea a{
	display: block;
}
.bnrArea .WhiteB{
	border: 6px solid #fff;
}
.handlingMemo{
	font-size: 1.2rem;
	margin: 0 0 0 120px;
	padding: 30px 0 0 0;
}
.marginS{
	margin: 0 0 0 120px;
	padding: 40px 0 0 0;
}
.oldMaschine {
	width: 440px;
	margin: 25px auto 0 auto;
}
.oldMcnName{
	margin: 0 0 3px 0;
	font-size: 1.8rem;
	font-weight: 900;
	color: #004097;
}
.oldMaschine-inner {
	padding:20px;
	background: #fff;
}
.oldMaschine .oldMaschine-inner ul{
	display: flex;
	gap: 5px 10px;
	justify-content: space-between;
	flex-wrap: wrap;
}
.oldMaschine .oldMaschine-inner ul li{
	min-width: 180px;
	font-size: 1.4rem;
	position: relative;
	padding: 0 0 0 15px;
}
.oldMaschine .oldMaschine-inner ul li::before{
	content: "";
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 0;
	height: 0;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 7px solid #004097;
}
@media screen and (max-width: 812px) {
	.lineUpArea{
		padding: 60px 20px 80px 20px;
	}
	/*-- 見出し Start--*/
	.ctsDetailinner{
		padding: 0;
	}
	.titArea{
		width: 100%;
	}
	.ciSoft::after{
		width: 180px;
		height: 100px;
		right: 10px;
	}
	.tripleW::after{
		width: 180px;
		height: 100px;
		right: 10px;
	}
	.single::after{
		width: 80px;
		height: 100px;
		right: 28px;
	}
	.blend::after{
		width: 80px;
		height: 100px;
		right: 28px;
	}
	.shake::after{
		width: 80px;
		height: 110px;
		right: 28px;
	}
	.titArea h3{
		margin: 0 0 10px 0;
		font-size: 2.4rem;
		letter-spacing: 0;
	}
	.titArea .txt{
		margin: 0 0 20px 0;
		font-size: 1.3rem;
	}
	/*--見出し end --*/
	.infoArea{
		max-width: 420px;
		margin: 0 auto;
	}
	.infoArea .threelineUpItem {
		width: 100%;
		display: -ms-flex;
		display: flex;
		flex-wrap: wrap;
	}
	.infoArea .noFlexItem{
		width: 100%;
		margin: auto;
		display: block;
	}
	.liBox{
		width: 100%;
		margin: 0 auto;
		display: block;
	}
	.listphoto{
		margin: 0 0 25px 0;
	}
	.listphoto img {
		height: 300px;
	}
	.listphoto .widthVer {
		width: 105px;
		height: auto;
	}
	.frzrDetail{
		max-width: 335px;
		margin: 0 0 20px 0;
		padding: 0;
	}
	.lineUpBox{
		width: 100%;
		height: auto;
		min-height: auto;
		margin: 50px 0 0 0;
	}
	.listTxtArea .txt{
		font-size: 1.8rem;
	}
	.listTxtArea .name{
		margin: 0;
		font-size: 4.6rem;
	}
	.listTxtArea .type{
		margin: 0 0 10px 0;
		font-size: 1.5rem;
	}
	.listTxtArea .type span{
		line-height: 2.5;
	}
	.listTxtArea .note{
		width: 100%;
		margin: 0 0 30px 0;
		font-size: 1.6rem;
		font-weight: 500;
		letter-spacing: 0.1rem;
	}
	.lineNote li{
		max-width: 335px;
		margin: 0 0 15px 0;
		text-indent: -1.5rem;
		font-size: 1.4rem;
		letter-spacing: 0.1rem;
		line-height: 1.6;
	}
	.lineNote{
		min-width: 0;
	}
	.memo .mark{
		width: 100%;
	}
	.memo .mark img{
		width: 51px;
		height: 51px;
		margin: 0 0 5px 0;
	}
	.fukidashi{
		bottom: 50px;
		left: 80px;
	}
	.fikidashiR1{
		left: 22px;
	}
	.fikidashiR2{
		left: -25px;
	}
	.listBtnArea {
		padding: 0;
		margin: 0 0 15px 0;
	}
	.listBtnArea ul{
		display: block;
	}
	.listBtnArea ul li{
		width: 100%;
		margin: 0 0 10px 0;
	}
	.listBtnArea ul li:last-child{
		margin: 0;
	}
	.listBtnArea a{
		width: 100%;
		padding: 15px 15px;
		font-size: 1.6rem;
	}
	.movieBtn a{
		width: 100%;
		padding: 20px 20px;
		font-size: 1.8rem;
	}
	.listBtnArea a::after,
	.movieBtn a::after,
	.featuresBtn a::after{
		right: 20px;
	}
	.featuresBtn a{
		margin: -20px auto 20px auto;
		padding: 20px 20px;
		font-size: 1.8rem;
	}
	.mdFigure{
		width: 100%;
	}
	.bnrArea{
		width: 100%;
		max-width: 420px;
		margin: 50px auto 10px auto;
	}
	.handlingMemo{
		margin: 0;
		padding: 10px 0 0 0;
	}
	.marginS{
		margin: 0 0 10px 0;
	}
	.oldMaschine {
		width: 100%;
	}
}
/* nozzleArea
------------------------------------------------------------------------------------------------------*/
#nozzleArea{
	padding: 75px 0;
	width: 100%;
	background: url(../images/bg_nozzle.png) no-repeat #D6DAE2 center center / cover;
}
.nozzleDetail{
	display: flex;
	gap: 0 30px;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 1038px;
}
/* 見出し */
#nozzleArea .titBox h2{
	margin-bottom: 30px;
	padding: 0 0 30px 0;
	font-size: 2.8rem;
	font-weight: 900;
	color: #004096;
	text-align: center;
	position: relative;
}
#nozzleArea .titBox h2::after{
	content: '';
	width: 45px;
	height: 4px;
	background: #5aa5db;
	position: absolute;
	bottom: 0;
	transform: translateX(-50%);
	left: 50%;
}
/* titArea */
#nozzleArea .titArea{
	margin-bottom: 50px;
	text-align: left;
	border-bottom: none;
}
#nozzleArea .titArea h3{
	margin-bottom: 25px;
	color: #000;
	line-height: 1;
}
#nozzleArea .titArea .txt{
	display: flex;
	margin-bottom: 0;
	align-items: center;
	font-size: 3rem;
	font-weight: 700;
	line-height: 1;
}
.kinds{
	margin-left: 8px;
	padding: 8px 10px;
	color: #fff;
	font-size: 1.8rem;
	background-color: #000;
}
/* nozzleTxtBox */
.nozzleTxtBox{
	margin: 0;
	padding: 0;
	color: #000;
	font-size: 2.4rem;
}
.nozzleTxt{
    font-weight: 700;
}
.nozzleTxt__s{
	margin-top: 30px;
	text-align: justify;
	font-size: 1.7rem;
}
#nozzleArea .note{
	margin-top: 20px;
	padding-left: 14px;
	font-size: 1.2rem;
	line-height: 1.5;
	position: relative;
}
#nozzleArea .note::before{
	content: '※';
	position: absolute;
	top: 1px;
	left: 0;
}
#nozzleArea .figureBox{
	min-width: 459px;
}
/* 対応機種 */
.nozzleModel{
	margin-top: 40px;
	font-size: 1.2rem;
}
.nozzleModelTit{
	font-weight: 700;
}
/* ボタン */
#nozzleArea .detailBtn{
	margin-top: 30px;
	color: #fff;
}
#nozzleArea .detailBtn a{
	background-color: #8F8F8F;
}

@media screen and (max-width: 812px){
	#nozzleArea{
		padding: 60px 20px;
	}
	.nozzleDetail{
		flex-direction: column;
		gap: 10px 0;
	}
	/* titArea */
	#nozzleArea .titArea{
		margin-bottom: 20px;
	}
	#nozzleArea .titArea h3{
		margin-bottom: 10px;
		font-size: 3.2rem;
	}
	#nozzleArea .titArea .txt{
		font-size: 2.2rem;
	}
	.kinds{
		font-size: 1.4rem;
	}
	/* nozzleTxtBox */
	.nozzleTxt{
		font-size: 2rem;
	}
	.nozzleTxt__s{
		margin-top: 15px;
		font-size: 1.4rem;
	}
	#nozzleArea .note{
		margin-top: 5px;
	}
	#nozzleArea .figureBox{
		min-width: 100%;
	}
	/* 対応機種 */
	.nozzleModel{
		margin-top: 20px;
	}
}


/* OSSArea
------------------------------------------------------------------------------------------------------*/
#OSSArea{
	padding: 80px 0;
	position: relative;
}
#OSSArea .titBox{
	width: 100%;
}
#OSSArea .titBox h2{
	padding: 0 0 30px 0;
	font-size: 2.8rem;
	font-weight: 900;
	color: #004096;
	text-align: center;
	position: relative;
}
#OSSArea .titBox h2::after{
	content: '';
	width: 45px;
	height: 4px;
	background: #5aa5db;
	position: absolute;
	bottom: 0;
	transform: translateX(-50%);
	left: 50%;
}
.ossImg .bnrArea{
	margin: 20px auto;
}
.ossImg p{
	margin: 0 0 35px 0;
	font-size: 1.8rem;
	text-align: center;
}
.inquiryBtn ul{
	width: 800px;
	margin: 0 auto;
	display: -ms-flex;
	display: flex;
	justify-content: space-between;
}
.inquiryBtn ul li{
	width: 374px;
	color: #fff;
}
.inquiryBtn ul li a:hover{
	transform: translateY(3px);
	transition: .2s;
}
.inquiryBtn ul li a{
	padding: 18px 0;
	font-size: 1.8rem;
	text-align: center;
	display: block;
	transition: .2s;
	position: relative;
}
.inquiryBtn ul li a::after{
	content: '';
	width: 6px;
	height: 6px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(45deg);
	transition: all .2s;
	position: absolute;
	top: 50%;
	right: 20px;
}

.inquiryBtn ul li a:hover::after{
	right: 15px;
}
.inquiryBtn ul li .bgBlue{
	background: #5abceb;
}
.inquiryBtn ul li .bgRed{
	background: #f36d61;
}
@media screen and (max-width: 812px){
	#OSSArea{
		max-width: 420px;
		margin: 0 auto;
		padding: 60px 20px;
	}
	.ossImg p{
		font-size: 1.4rem;
		text-align: left;
	}
	.inquiryBtn ul {
		width: 100%;
		margin: 0 auto;
		display: block;
		justify-content: space-between;
	}
	.inquiryBtn ul li{
		width: 100%;
		margin: 0 0 18px 0;
	}
	.inquiryBtn ul li:last-child{
		margin: 0;
	}
	.inquiryBtn ul li a{
		font-size: 1.6rem;
	}
}
/*navBtnlist
------------------------------------------------------------------------------------------------------*/
#OSSArea .ossImg .navBtnlist{
	width: 100%;
	position: absolute;
	bottom: 0;
	right: 10%;
	display: -ms-flex;
	display: flex;
	justify-content: flex-end;
	border-bottom: 2px solid #fff;
}
.navBtnlist .btnF{
	font-size: 13px;
	line-height: 2.5;
	font-weight: bold;
	color: #fff;
	position: relative;
	display: inline-block;
	padding: 0 36px 0 16px;
	border-radius: 5px 5px 0 0;
}
.btnF:first-of-type {
	background: #00408f;
	margin: 0 5px 0 0;
}
.btnF::after {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 10px;
	margin: -4px 0 0 0;
}
@media screen and (max-width: 812px){
	#OSSArea .ossImg .navBtnlist{
		right: 4%;
	}
}
/*
	footer
-----------------------------------------------------------------------------------------------*/
#footer{
	color: #fff;
	background: #004097;
	background-size: cover;
}
.footerinner {
	min-width: 1200px;
	margin: 0 auto;
	padding: 30px 30px;
}
.footerTop{
	margin: 0 0 15px;
	display: -ms-flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 1.4rem;
}
.footerLogo {
	display: -ms-flex;
	display: flex;
	align-items: center;
}
.footerLogo img{
	width: auto;
	margin: 0 20px 0 0;
}
a.footerTxtLink{
	padding: 0 0 0 20px;
	color: #fff;
	position: relative;
}
.footerTxtLink::before{
	content: "";
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #fff;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
    left: 0;
}
.footerTxtLink::after{
	content: "";
    width: 4px;
    height: 4px;
    border-top: 1px solid #444;
    border-right: 1px solid #444;
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
    left: 5px;
}
.footerBtm {
	display: -ms-flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row-reverse;
}

#footerList{
	display: -ms-flex;
	display: flex;
}

#footerList li{
	margin: 0 15px 0 0;
	padding: 0 20px 0 0;
	font-size: 1.3rem;
	position: relative;
}
#footerList li:last-of-type{
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}
#footerList li::after{
	content:'|';
	position: absolute;
	right: 0;
}
#footerList li a{
	color: #fff;
	text-decoration: underline;
}
#footerList li a:hover{
	opacity: 1.0;
	text-decoration: none;
}
#footerList li:last-of-type::after{
	content:none;
}
@media screen and (max-width: 812px)  {
	#footer{
	display: block;
	text-align: center;
	}
	.footerinner {
	min-width: 100%;
	padding: 20px 10px;
	}
	.footerTop{
	display: block;
	}
	.footerLogo {
	display: block;
	margin: 0 0 10px 0;
	}
	.footerLogo img{
	margin: 0 0 5px 0;
	}
	.footerLogo p{
	font-size: 1.2rem;
	}
	.footerBtm{
	display: block;
	}
	a.footerTxtLink{
	display: inline-block;
	margin: 0 0 20px 0;
	font-size: 1.3rem;
	}
	#footerCopyright{
	margin: 10px 0 0;
	font-size: 1.3rem;
	}
	#footerList{
	-ms-justify-content: center;
	justify-content: center;
	margin: 0 auto;
	flex-wrap: wrap;
	}
	#footerList li{
	margin: 0 10px 5px 0;
	padding: 0 15px 0 0;
	font-size: 1.2rem;
	}
	#footerList li:last-of-type{
	margin: 0 0 5px 0;
	}
}
/*
	page-top
-----------------------------------------------------------------------------------------------*/
#page-top {
	width: 70px;
	height: 70px;
	position: fixed;
	bottom: 145px;
	right: 20px;
	z-index: 500;
	margin-bottom: 10px;
	background-color: rgba(90,189,236,1);
	border-radius: 50%;
	filter: drop-shadow(0 0 10px rgba(0,0,0,.1));
}
#page-top:hover{
	cursor: pointer;
	opacity: 0.5;
	transition: .2s;
}
#page-top::after{
	content: '';
	display: block;
	width: 15px;
	height: 15px;
	border-top: 3px solid #fff;
	border-left: 3px solid #fff;
	transform: rotate(45deg);
	position: absolute;
	top: 43%;
	left: 40%;
}
@media screen and (max-width: 812px){
	#page-top {
		bottom: 5%;
	}
}