@charset "UTF-8";
/*
	Reset CSS
-----------------------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
html{
	font-size:62.5%;
}
body{
	margin:0 auto;
	padding:0;
	font-size:1.5em;
	font-family: 'Noto Sans JP', sans-serif;
	font-feature-settings: "palt";
	overflow-wrap: break-word;
}
p{
	line-height: 1.6;
}
ol li, ul li{
	list-style: none;
}

@media screen and (min-width:813px){
	/* iPad背景切れ対策 */
	body{
		min-width:1200px;
	}
	/* 電話リンクなし */
	a[href^=tel]{
		pointer-events:none;
	}
}
*,*::before,*::after{
	box-sizing:border-box;
}
img {
	width: 100%;
	border: none;
	vertical-align: top;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
a {
	color: #000;
	text-decoration: none;
	transition: color 0.2s, opacity 0.2s;
}
a:link {
	color: var(--bk);
}
a:visited {
	color: var(--bk);
}
a:hover {
	color: var(--bk);
	opacity: 0.7;
	text-decoration: none;
}
/* button初期化 */
button{
	font: inherit;
	-webkit-appearance:none;
	appearance:none;
	padding:0;
	margin:0;
	background:none;
	border:none;
	outline:none;
}
button:hover{
	cursor:pointer;
}
button, input, select, textarea{
	font-family : inherit;
	font-size:100%;
}
table{
	width:100%;
	border-collapse: collapse;
	border-spacing: 0;
	word-wrap: break-word;
}
/* 表示切替 */
.sp{
	display:none;
}
@media screen and (max-width:812px){
	body{
		-webkit-text-size-adjust:100%;
	}
	.pc{
		display:none;
	}
	.sp{
		display:block;
	}
	br.sp{
		display:inline-block;
	}
}
/* common
------------------------------------------------------------------------------------------------------*/
main{
	position: relative;
}
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%;
	}
}

/* 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 {
	height: 32px;
	position: absolute;
	top: 0;
	right: 65px;
}
.headerInner .gNaviIcon {
	position:fixed;
	top:0;
	right: 0;
	z-index: 999;
	padding: 32px 32px;
	cursor: pointer;
	background: #fff;
/*	z-index: 101;*/	
}
a.gNaviIcon.active {
	background: none;
}
.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: 998;
}
.gNaviArea.active{
	transform: translateY(0vh);
	opacity: 1;
}
.gNaviInner {
	width: 100%;
	max-width: 840px;
	height: calc(100vh - 70px);
	margin: 70px auto 0;
	padding: 0 20px 40px 20px;
	overflow-y: scroll;
}
.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-size: 1.4rem;
	font-weight: bold;
	background: #004096;
	color: #fff;
	text-align: center;
}
.gNaviInner .menuList.clm2 {
	display: -ms-flex;
	display: flex;
	gap:  10px;
	justify-content: space-between;
}
.gNaviInner .menuList.clm2 li {
	width: calc((100% - 30px)/4);
}

/* 職人の想い */
a.specialLink{
	display: inline-block;
	margin-top: 20px;
	padding-left: 25px;
	color: #004096;
	font-size: 1.7rem;
	font-weight: bold;
	position: relative;
}
a.specialLink::before,
a.specialLink::after{
	content: '';
	position: absolute;
}
a.specialLink::before{
	width: 20px;
	height: 20px;
	background-color: #004096;
	border-radius: 50%;
	top: 3px;
	left: 0;
}
a.specialLink::after{
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
	top: 9px;
	left: 4px;
}

/*事業者向け（業務用）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-flex;
	align-items: center;
	justify-content: center;
	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;
}

/*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 {
		height: calc(100vh - 50px);
		margin-top: 50px;
		padding: 0 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: calc((100% - 10px)/2);
	}

	/* 職人の想い */
	a.specialLink{
		padding-left: 20px;
		font-size: 1.2rem;
	}
	a.specialLink::before{
		width: 15px;
		height: 15px;
		top: 2px;
	}
	a.specialLink::after{
		width: 6px;
		height: 6px;
		top: 7px;
		left: 3px;
	}

	.headerInner .navBtnlist {
		display: none;
	}
}
/*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: 0 80px 40px;
		}
		.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;
}
.abCtsDetailinner .abnav{
	background:#004097;
	width: 100%;
	z-index: 3;
}
.abCtsDetailinner .abnav ul {
	display: -ms-flex;
	display: flex;
	color: #fff;
	justify-content: space-between;
}
.abCtsDetailinner .abnav ul li{
	width: calc(100% / 4);
	position: relative;
	display: block;
	line-height:3.5;
}
.abCtsDetailinner .abnav ul li::after{
	content: '';
	width: 1px;
	height: 15px;
	background-color: #fff;
	position: absolute;
	transform: translateY(-50%);
	top: 50%;
	right: 0;
}
.abCtsDetailinner .abnav ul li:last-of-type::after {
	content: none;
}
.abCtsDetailinner .abnav ul li a{
	display: block;
	text-align: center;
	font-size: 1.1rem;
	color: #fff;
	font-weight: bold;
	width: 100%;
	height: 100%;
}
.abCtsDetailinner .abnav ul li a span{
	padding: 0 10px 0 20px;
	position: relative;
}
.abCtsDetailinner .abnav ul li a span::before{
	content: '';
	width: 10px;
	height: 7px;
	display: block;
	background:url("../images/icon_arrow.svg") no-repeat;
	position: absolute;
	top: 6px;
	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_pc.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%;
		max-width: 500px;
		padding: 10px 0;
		position: relative;
	}
	.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;
		justify-content: center;
		flex-wrap: wrap;
	}
	.abCtsDetailinner .abnav ul li{
		margin: 0;
		text-align: center;
		width: calc(100% / 2);
		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-of-type(3n),
	.abCtsDetailinner .abnav ul li:last-of-type {
		border-bottom:none;
	}
	.abCtsDetailinner .abnav ul li:nth-of-type(2n){
		border-right: none;
	}
	.abCtsDetailinner .abnav ul li:last-of-type{
		border-right: none;
	}
	.abCtsDetailinner .abnav ul li a{
		font-size: 1.1rem;
		line-height: 1.2;
		padding: 10px 0 30px 0 ;
		display: inline-block;
	}
	.abCtsDetailinner .abnav ul li:nth-of-type(3n) a,
	.abCtsDetailinner .abnav ul li:last-of-type a{
		padding: 15px 0 20px 0;
	}
	.abCtsDetailinner .abnav ul li a span{
		display: block;
		width: 100%;
		padding: 0;
	}
	.abCtsDetailinner .abnav ul li a span::before{
		width: 10px;
		height: 7px;
		transform: translateX(-50%);
		top: auto;
		bottom: -12px;
		left: 50%;
	}
	/* .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: 500px;
		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: 1.2rem;
	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, #lineUp05{
	background: url("../images/bg_blue.png") no-repeat center/cover;
	z-index: -100;
}
#lineUp02, #lineUp04{
	background: url("../images/bg_White.png") no-repeat center/cover;
}
.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.6rem;
	font-weight: 400;
	line-height: 1.8;
	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{
	margin-bottom: 30px;
	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;
	}
}

/* movieArea
------------------------------------------------------------------------------------------------------*/
#movieArea{
	padding: 80px 0 90px;
	background: url(../images/bg_movie_pc.png) no-repeat center center / cover;
}
.movieDetail{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	max-width: 1050px;
	margin: 0 auto;
}
.movieDetail .txtBox{
	color: #fff;
}
.movieDetail .txtBox .txtMain{
	margin-bottom: 25px;
	font-size: 2.0rem;
}
.movieDetail .txtBox .txtMain span{
	display: inline-block;
	margin-right: 12px;
	padding: 6px 10px;
	text-align: center;
	line-height: 1;
	border: 1px solid #fff;
}
/* 笑顔のみなもと 職人の想い */
.movieDetail .txtBox h2{
	width: 480px;
}
/* Japanese Craftmanship */
.movieDetail .txtBox .txtImg{
	width: 214px;
	margin-top: 20px;
}
/* 説明文 */
.movieDetail .txtBox .txtSub{
	margin-top: 30px;
	font-size: 1.4rem;
	letter-spacing: 0.15rem;
	line-height: 220%;
}
/* movieBox */
.movieBox{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.movieBox .movieThumbBtn:hover{
	opacity: 1;
}
.movie__thumb{
	width: 100%;
	max-width: 450px;
	border: 5px solid #fff;
	overflow: hidden;
	position: relative;
}
.movie__thumb:hover{
	cursor: pointer;
}
.movie__thumb::before{
	content: '';
	width: 72px;
	height: 72px;
	background: url(../images/icon_movie.svg) no-repeat center center / cover;
	position: absolute;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	z-index: 1;
}
.movie__thumb img{
	display: flex;
	width: 100%;
	transition: all 0.5s;
}
@media (hover: hover){
	.movieBox .movieThumbBtn:hover .movie__thumb img{
		transform: scale(1.1);
		transition: all 0.5s ease;
	}
}

/* movieBtnArea */
.movieBtnArea{
	display: flex;
	gap: 0 18px;
	width: 100%;
	margin-top: 15px;
}
.movieBtnArea a{
	display: inline-block;
	width: calc((100% - 18px)/2);
	padding: 10px 0;
	text-align: center;
	line-height: 1;
	color: #AC7D0F;
	font-size: 1.5rem;
	font-weight: bold;
	background-color: beige;
	position: relative;
}
.movieBtnArea a:hover{
	cursor: pointer;
}
.movieBtnArea a::after{
	content: '';
	border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #AC7D0F;
    border-right: 0;
	position: absolute;
	transform: translateY(-50%);
	top: 50%;
	right: 15px;
}

/* modal */
.modal_box{
	display: none;
	width: 90%;
	max-width: 1000px;
	margin: 0;
	position: fixed;
	z-index: 7777;
}
.modal__ctsArea{
	max-height: calc(100svh - 20px);
	padding: 50px;
	background-color: #fff;
	border-radius: 10px;
	overflow-y: scroll;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.modal__ctsArea iframe{
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
}

/* modal 背景 */
.modal_bg{
	display: none;
	width: 100%;
	height: 120%;
	background-color: rgba(0, 0, 0, .7);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 6666;
	opacity: 0.98;
	cursor: zoom-out;
}

/* close btn */
.modal_close{
	width: 55px;
	height: 55px;
	background-color: #000;
	border-radius: 50%;
	position: absolute;
	top: -20px;
	right: -20px;
	cursor: zoom-out;
	transition: all 0.3s;
}
.modal_close:hover{
	opacity: 0.7;
	transition: all 0.3s;
}
.modal_close::before,
.modal_close::after{
	content: '';
	width: 1px;
	height: 20px;
	background-color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}
.modal_close::after{
	transform: translate(-50%, -50%) rotate(-45deg);
}

@media screen and (max-width: 812px){
	#movieArea{
		padding: 60px 20px;
		background: url(../images/bg_movie_sp.png) no-repeat center center / cover;
	}	
	.movieDetail{
		flex-direction: column;
		gap: 30px 0;
		max-width: 500px;
	}
	.movieDetail .txtBox .txtMain{
		margin-bottom: 15px;
		font-size: 1.5rem;
	}
	.movieDetail .txtBox .txtMain span{
		margin-right: 12px;
		padding: 5px 8px;
	}
	/* 笑顔のみなもと 職人の想い */
	.movieDetail .txtBox h2{
		width: 100%;
		max-width: 350px;
	}
	/* Japanese Craftmanship */
	.movieDetail .txtBox .txtImg{
		width: 100%;
		max-width: 220px;
		margin-top: 15px;
	}
	/* 説明文 */
	.movieDetail .txtBox .txtSub{
		margin-top: 25px;
		text-align: justify;
		line-height: 200%;
	}
	/* movieBox */
	.movieBox{
		margin: 0 auto;
	}
	.movie__thumb{
		max-width: 100%;
	}
	.movie__thumb::before{
		width: 60px;
		height: 60px;
	}

	/* movieBtnArea */
	.movieBtnArea{
		flex-direction: column;
		gap: 15px 0;
		margin-top: 20px;
	}
	.movieBtnArea a{
		width: 100%;
		padding: 15px 0;
	}

	/* modal */
	.modal__ctsArea{
		padding: 15px;
		border-radius: 10px;
	}

	/* close btn */
	.modal_close{
		width: 50px;
		height: 50px;
		top: -25px;
		right: -15px;
	}
}

/*navBtnlist
------------------------------------------------------------------------------------------------------*/
.navBtnlist{
	width: 100%;
	position: absolute;
	bottom: 0;
	right: 10%;
	display: -ms-flex;
	display: flex;
	justify-content: flex-end;
}
.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){
	.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%;
	}
}