@charset "UTF-8";

/*
**************************************************************************
*	pamouna-ec style.css
**************************************************************************/


/* --------------------------------------------------
		foundation
-------------------------------------------------- */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20210126
   License: none (public domain)
*/
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
@font-face {
    font-family: 'Noto Sans JP';
	font-display: swap;
    font-style: normal;
    font-weight: 400;
    src: url(../assets/fonts/NotoSansJP-Regular.woff2) format('woff2'), url(../assets/fonts/NotoSansJP-Regular.woff) format('woff'), url(../assets/fonts/NotoSansJP-Regular.ttf) format('truetype');
}
@font-face {
    font-family: 'Noto Sans JP';
	font-display: swap;
    font-style: normal;
    font-weight: 500;
    src: url(../assets/fonts/NotoSansJP-Medium.woff2) format('woff2'), url(../assets/fonts/NotoSansJP-Medium.woff) format('woff'), url(../assets/fonts/NotoSansJP-Medium.ttf) format('truetype');
}
@font-face {
    font-family: 'Noto Sans JP';
	font-display: swap;
    font-style: normal;
    font-weight: 700;
    src: url(../assets/fonts/NotoSansJP-Bold.woff2) format('woff2'), url(../assets/fonts/NotoSansJP-Bold.woff) format('woff'), url(../assets/fonts/NotoSansJP-Bold.ttf) format('truetype');
}
@font-face {
	font-family: 'Open Sans';
	font-display: swap;
    font-weight: 400;
	src: url('../assets/fonts/OpenSans-Regular.ttf') format('TrueType');
}
@font-face {
	font-family: 'Open Sans';
	font-display: swap;
    font-weight: 700;
	src: url('../assets/fonts/OpenSans-Bold.ttf') format('TrueType');
}
@font-face {
	font-family: 'Renogare';
	src: url('../assets/fonts/Renogare.otf') format('opentype'),
		 url('../assets/fonts/Renogare.woff') format('woff');
}
* {
	box-sizing: border-box;
}
html {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 62.5%;
	word-wrap: break-word;
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
	overflow-y: scroll;
	height: 100%;
	background-color: #FAFAFA;
}
body {
	position: relative;
	overflow-x: hidden;
	font-size: 1.6rem;
	line-height: 1.5;
	color: #3C3C3C;
}
a {
	outline: none;
	color: #3C3C3C;
	text-decoration: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}
img {
	vertical-align: bottom;
	max-width: 100%;
}
input, button, textarea, select {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.6rem;
	line-height: 1.5;
	color: #3C3C3C;
}
.ec-layoutRole {
    overflow: hidden;
    background-color: #FAFAFA;
}
.cy-lp img {
	display: block;
	width: 100%;
}
@font-face {
    font-family: 'Lora';
	font-display: swap;
    font-style: normal;
    font-weight: 400;
    src: url(../assets/fonts/Lora-VariableFont_wght.ttf) format('truetype')
}
@keyframes bg-color {
	0% { background-color: #000; }
	100% { background-color: #FAFAFA; }
  }
  
.cy-lp .ec-layoutRole {
  background-color: #FAFAFA;
  animation-name: bg-color ; 
  animation-duration: 3s; /* 3秒間で表示 */ 
  animation-fill-mode: both;  
}
.cy-lp {
    margin:0;
    width: 100% ;
	background: #000;
}
.cy-lp .head-visual {
    position: relative;
    height: 0;
    min-height: 600px;
    padding-top: 0;
    padding-bottom: 46.875%;
}
.cy-lp .head-visual-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 1280px;
	margin: auto;
	right: 0;
}
.open-mainimg {
    animation-name: open-mainimg ;
    animation-delay: 1500ms;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    transform: translateY(50px);
    opacity: 0;
}
@keyframes open-mainimg {
    0% {
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes open-secondimg{ 
    0% {
      opacity:0; } 
    100% {
      opacity:1; } } 
  .open-secondimg { 
    animation-name: open-secondimg ; 
    animation-duration: 3s;
    animation-fill-mode: both;
	animation-delay:2s;  
}
.scroll-box {
	transition: 0.8s ease-in-out;
	transform: translateY(30px);
	opacity: 0;
}
.scroll-box.is-active {
	transform: translateY(0);
	opacity: 1.0;
  }
.timing02 {transition-delay: .2s;}
.timing03 {transition-delay: .3s;}
.cy-lp header h1 {
    position: absolute;
    top: 35%;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: block;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
	text-align: center;
    width: 555px;
    margin:auto;
    right: 0;
}
.cy-lp header h1 span {
    color: #FFF;
    font-size: 2.9rem;
    font-weight: 400;
	letter-spacing: 0.1em;
}
.cy-lp header h1 img {
    width: 555px;
    margin: 20px auto;
}
.cy-lp header h2{
	font-size: 3.0rem;
	text-align: center;
	margin: 80px 0 40px;
	letter-spacing: 0.1em;
}
.cy-lp .s1-visual,.cy-lp .s2-visual {
	min-height: 680px;
	position: relative;
	margin-bottom: 30px;
}
.cy-lp .s2-visual {
	margin-top: 40px;
}
.cy-lp .s1-visual .yellowbg{
	position: absolute;
	bottom: 0;
	background: #efece2;
	padding: 50px 0px ; 
	z-index: 0;
	min-height: 200px;
    width: 100vw;
}
.cy-lp .s2-visual .yellowbg{
	position: absolute;
	bottom: 0;
	background: #efece2;
	padding: 50px 0px ; 
	z-index: 0;
	min-height: 240px;
    width: 100vw;
}
.cy-lp .s1-visual .s1-visual-img{
	position: absolute;
	top: 0px;
	left: 50vw;
	z-index: 2;
}
.cy-lp .s2-visual .s2-visual-img{
	position: absolute;
	top: 0px;
	right: 50vw;
	z-index: 2;
}
.cy-lp .s1-visual .s1-visual-img img{
	display: inline;
	width: 1760px;
	max-width: 1760px;
}
.cy-lp .s2-visual .s2-visual-img img{
	display: inline;
	width: 1450px;
	max-width: 1450px;
	text-align: right;
}
.cy-lp .s1-visual h2{
	position: absolute;
	top: 200px;
	left: calc(50vw - 600px) ;
	z-index: 1;
	font-size: 5.0rem;
	text-align: center;
	width: 500px;
	letter-spacing: 0.1em;
}
.cy-lp .s2-visual h2{
	position: absolute;
	top: 200px;
	left: calc(50vw + 25px) ;
	z-index: 1;
	font-size: 5.0rem;
	text-align: center;
	width: 500px;
	letter-spacing: 0.1em;
}
.cy-lp .s1-visual h2 span,.cy-lp .s2-visual h2 span{
	font-size: 1.5rem;
	display: block;
	color: #939393;
	font-family: 'Lora';
	letter-spacing: 0.08em;
}
.cy-lp .s1-visual .s1-txt,.cy-lp .s2-visual .s2-txt{
	position: relative;
}
.cy-lp .s1-visual .s1-txt p{
	position: absolute;
	top: 0;
	left: calc(50vw - 600px) ;
	max-width: 500px;
}
.cy-lp .s2-visual .s2-txt p{
	position: absolute;
	top: 0;
	left: calc(50vw + 25px) ;
	max-width: 500px;
}
.cy-lp .s6-visual {
    position: relative;
    height: 0;
    min-height: 560px;
    padding-top: 0;
    padding-bottom: 43.75%;
}
.cy-lp .s6-visual img {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    min-width: 1280px;
    transform: translateX(-50%);
}
.cy-lp .s6-visual .pic_text {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: block;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
	text-align: right;
    right: 0;
    bottom: 0;
    width: 100%;
}
.cy-lp .s6-visual .pic_text p {
    max-width: 1200px;
    color: #FFF;
    margin:0 auto 10px;
}
.cy-lp .detail-h2 {
	font-size: 2.5rem;
    font-weight: 700;
	text-align: center;
	letter-spacing: 0.1em;
	margin-bottom: 50px;
	margin-top: 80px;
}
.cy-lp .detail-h3 {
	font-size: 2.0rem;
    font-weight: 700;
	margin: 20px 0;
	letter-spacing: 0.1em;
}
.cy-lp .detail-h3 span {
	padding: 0 20px 10px;
	border-bottom: 4px dotted #3c3c3c;
}
.cy-lp .detail-h3-2 {
	font-size: 2.4rem;
    font-weight: 700;
	margin: 70px auto 40px;
	text-align: center;
	letter-spacing: 0.1em;
    max-width: 1200px;
}
.cy-lp .detail-h3-2 span {
	display: block;
	margin-top: 12px;
	padding-top: 12px;
	font-family: 'Lora';
	font-size: 0.9em;
	border-top: 1px solid #3c3c3c;
	letter-spacing: 0.1em;
	font-weight: 400;
}
.cy-lp .detail-h4 {
	font-size: 2.0rem;
    font-weight: 700;
	margin: 50px 0 20px;
	letter-spacing: 0.1em;
	background: #e8e8e8;
	padding: 10px;
	text-align: center;
}
.cy-lp .detail-h5 {
	font-size: 1.8rem;
    font-weight: 700;
	margin-bottom: 18px;
	letter-spacing: 0.1em;
	padding-bottom: 15px;
	border-bottom: 1px solid #3c3c3c;
}
.cy-lp .ct {
	text-align: center;
}
.cy-lp .colorImg {
	margin-bottom:15px;
}
.cy-lp p {
	line-height: 1.8em;
	margin-bottom: 20px;
	letter-spacing: 0.1em;
}
.cy-lp .area1,.cy-lp .area2 {
	display: flex;
    justify-content: space-between;
	margin: 30px auto;
	align-items: flex-start;
    max-width: 1200px;
}
.cy-lp .s2 {
	margin-bottom: 50px;
}
.cy-lp .box1-1 {
	width: 63%;
}
.cy-lp .box1-2 {
	width: 35%;
}
.cy-lp .box1-2 img:first-of-type {
	margin-bottom: 20px;
}
.cy-lp .box2-1{
	width: calc(50% - 10px);
}
.cy-lp .box2-2{
	width: 26.5%;
}
.cy-lp .box2-3{
	width: 71%;
}
.cy-lp .box3-1{
	width: 32%;
	margin-bottom: 15px;
}
.cy-lp .mateImg {
	margin:0 auto ;
	width: 90%;
}
.cy-lp .hardness{
	margin-top: 20px;
}
.cy-lp .movie {
	width: 100%;
	aspect-ratio: 16 / 9;
}
.cy-lp .movie iframe {
	width: 100%;
	height: 100%;
}
.cy-lp .showroom-area {
	background: #fafafa;
	margin:70px auto ;
	padding: 30px 50px 50px;
    max-width: 1000px;
    border: 1px solid #000 ;
}
.cy-lp .showroom-area p{
	margin: 40px 0;
}
.cy-lp .showroom-area .showroom_link{
	margin: 30px auto 0;
}
/* simulation-custom */
.simulation-custom__list {
	max-width: 1300px;
	padding: 0 20px;
	margin: 0 auto;
}
.simulation-custom__list .cyitem {
	margin: 0 30px;
}
.simulation-custom__list .cyitem .image {
	margin-bottom: 20px;
	box-shadow: 0 3px 20px rgba(74,74,74,0.16);
}
/** update 2022.12.05 追加&修正 **/
.simulation-custom__list.non-slick {
	position: relative;
	transform: translateX(-50%);
	white-space: nowrap;
	letter-spacing: -0.4em;
}
.simulation-custom__list.non-slick .cyitem {
	display: inline-block;
	letter-spacing: 0;
	white-space: normal;
	vertical-align: top;
}
.p-slick--b .slick-list {
	overflow: visible;
}
.p-slick--b .slick-arrow {
	position: absolute;
	z-index: 10;
	top: calc(50% - 35px);
	width: 70px;
	height: 70px;
	background-color: #000000;
	font-size: 0;
	border-radius: 50% 50%;
	cursor: pointer;
	transition: opacity .2s ease;
}
.p-slick--b .slick-arrow:hover {
	opacity: 0.8;
}
.p-slick--b .slick-arrow:before {
	content: "";
	position: absolute;
	width: 12px;
	height: 12px;
	top: calc(50% - 6px);
	border-top: 2px solid #FFFFFF;
	border-left: 2px solid #FFFFFF;
}
.p-slick--b .slick-prev {
	left: -40px;
}
.p-slick--b .slick-prev:before {
	left: calc(50% - 5px);
	transform: rotate(-45deg);
}
.p-slick--b .slick-next {
	right: -40px;
}
.p-slick--b .slick-next:before {
	left: calc(50% - 9px);
	transform: rotate(135deg);
}
.p-slick--c .slick-arrow {
	position: absolute;
	z-index: 10;
	top: calc(50% - 20px);
	width: 40px;
	height: 40px;
	background-color: rgba(0,0,0,0.5);
	font-size: 0;
	border-radius: 50% 50%;
	cursor: pointer;
	transition: opacity .2s ease;
}
.showroom_link {
	width: 400px;
	display: block;
}
.showroom_link a {
	display: block;
	text-align: center;
	background: #000;
	letter-spacing: 1px;
	height: 70px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
	border: 2px solid #000000;
	color:#FFF;
}
.showroom_link a span {
	font-size: 16px;
	font-weight: 500;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin: 0 auto;
	text-align: center;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 2;
}
.showroom_link a:before {
	content: "";
	position: absolute;
	top: calc(50% - 6px);
	right: 25px;
	width: 10px;
	height: 10px;
	border-top: 2px solid #FFF;
	border-right: 2px solid #FFF;
	transform: rotate(45deg);
	transition: border-color .2s ease;
}
@media screen and (min-width: 769px) {
	.u-pc {
		display: block;
	}
	.u-sp {
		display: none;
	}
	.cy-lp .w1200 {
		max-width: 1200px;
		margin-left: auto;
		margin-right: auto;
	}
	.showroom_link a:hover {
		background-color: #FFF;
		color: #000;
	}
	.showroom_link a:hover:before {
		border-top: 2px solid #000;
		border-right: 2px solid #000;
	}
}
.cy-lp .btArea{
	background: #000;
    padding :60px 40px; 
}
.cy-lp .btArea ul {
    max-width: 1200px;
    margin: 0 auto;
	display: flex;
    justify-content: space-between;
}
.cy-lp .btArea li img {
    width: 376px;
    margin: 0 auto;
}
.cy-lp footer {
	background: #000;
    padding: 80px 0 0;
}
.cy-lp .footercopyright {
    border-top: 1px solid #FFFFFF;
    padding: 20px 0;
    text-align: center;
}
.cy-lp .copyright {
	text-align: center;
    font-size: 1.2rem;
    color: #FFFFFF;
}
@media screen and (max-width: 768px) {
	body {
		font-size: 1.4rem;
	}
	img {
		max-width: none;
		width: 100%;
	}
	.u-pc {
		display: none;
	}
	.u-sp {
		display: block;
	}
	.cy-lp header {
		margin-bottom: 50px;
	}
	.cy-lp .head-visual {
		min-height: 0;
		padding-bottom: 147%;
	}
	.cy-lp .head-visual-image {
		min-width: 0;
	}
	.cy-lp header h1 {
		width: 80vw;
		top: 15%;
	}
	.cy-lp header h1 span {
		font-size: 1.5rem;
	}
	.cy-lp header h1 img {
		width: 80vw;
	}
	.cy-lp header h2{
		font-size: 2.5rem;
		margin: 40px 0 20px;
	}
	.cy-lp header p {
		margin-top: 20px;
		margin-bottom: 20px;
	}
	.cy-lp .s1-visual .s1-visual-img{
		top: calc(4.7rem + 30px);
		left: 0;
	}
	.cy-lp .s2-visual .s2-visual-img{
		top: calc(7.4rem + 30px);
		right: 0;
	}
	.cy-lp .s1-visual {
		min-height: calc(120vw + 100px);
	}
	.cy-lp .s2-visual {
		min-height: calc(135vw + 110px);
	}
	.cy-lp .s1-visual .s1-visual-img img,.cy-lp .s2-visual .s2-visual-img img{
		width: 100%;
		max-width: 100%;
		display: block;
	}
	.cy-lp .s1-visual h2,.cy-lp .s2-visual h2{
		position: relative;
		font-size: 2.5rem;
		margin: 0 auto 20px;
		max-width: 90vw;
		top: 0;
		left: 0;
	}
	.cy-lp .s1-visual h2 span,.cy-lp .s2-visual h2 span{
		font-size: 1.2rem;
	}
	.cy-lp .s1-visual .s1-txt p,.cy-lp .s2-visual .s2-txt p{
		position: relative;
		margin: 0 auto;
		max-width: 90vw;
		left: 0;
	}
	.cy-lp .s6-visual{
		min-height: 0;
		padding-bottom: 64.40677966101695%;
	}
	.cy-lp .s6-visual img {
		min-width: 0;
	}
	.cy-lp .s6-visual .pic_text p {
		font-size: 1.3rem;
		margin-bottom: 5px;
	}
	.cy-lp .detail-h2 {
		font-size: 1.4rem;
		margin-bottom: 20px;
	}
	.cy-lp .detail-h3 {
		font-size: 1.6rem;
		margin: 15px 0;
	}
	.cy-lp .detail-h3 span {
		padding: 0 0px 15px;
	}
	.cy-lp .detail-h3-2 {
		font-size: 1.8rem;
		margin: 35px 0 20px;
	}
	.cy-lp .detail-h3-2 span {
		font-size: 0.8em;
		margin-top: 8px;
		padding-top: 8px;
	}
	.cy-lp .detail-h4 {
		font-size: 1.6rem;
		padding: 7px;
		margin: 30px 0 20px;
	}
	.cy-lp .detail-h5 {
		font-size: 1.4rem;
		margin-bottom: 15px;
		padding-bottom: 12px;
		margin-top:10px;
	}
	.cy-lp .mrl20 {
		margin-left: 20px;
		margin-right: 20px;
	}
	.cy-lp .area1 {
		display: block;
		margin: 20px 0;
	}
	.cy-lp .area2 {
		margin: 20px 0;
	}
	.cy-lp .s6 .area2 {
		margin: 20px;
	}
	.cy-lp .box1-1,
	.cy-lp .box1-2 {
		width: 100%;
	}
	.cy-lp .box1-1{
		margin-bottom: 20px;
	}
	.cy-lp .area1 .box2-1,
	.cy-lp .area1 .box2-2,
	.cy-lp .area1 .box2-3 {
		width: 100%;
	}
	.cy-lp .area1 .box2-1{
		margin-bottom: 20px;
	}
	.cy-lp .hardness{
		margin: 15px auto;
		width: 90vw;
	}
	.cy-lp .mateImg {
		width: 100%;
	}
	.cy-lp .box3-1{
		margin-bottom: 0px;
	}
	.cy-lp .box3-1 p{
		margin-bottom: 0px;
	}
	.cy-lp .colorImg {
		margin-bottom:10px;
	}
	.cy-lp .btArea{
		padding :40px 20px 20px; 
	}
	.cy-lp .btArea ul {
		display: block;
	}
	.cy-lp .btArea li img {
		width: 80vw;
		margin: 0 auto 25px;
	}
	.cy-lp .showroom-area {
		margin:20px 20px 40px ;
		padding: 20px 20px 50px;
	}
	.cy-lp .showroom-area .detail-h3 {
		font-size: 1.4rem;
	}
	.simulation-custom__list {
		max-width: none;
		padding: 0 30px;
	}
	.simulation-custom__list .cyitem {
		margin: 0 9px;
	}
	.simulation-custom__list .cyitem .image {
		margin-bottom: 10px;
	}
	.p-slick--b .slick-arrow {
		width: 30px;
		height: 30px;
	}
	.p-slick--b .slick-arrow:hover {
		opacity: 1;
	}
	.p-slick--b .slick-arrow:before {
		width: 6px;
		height: 6px;
		top: calc(50% - 4px);
	}
	.p-slick--b .slick-prev {
		left: 10px;
	}
	.p-slick--b .slick-prev:before {
		left: calc(50% - 3px);
	}
	.p-slick--b .slick-next {
		right: 10px;
	}
	.p-slick--b .slick-next:before {
		left: calc(50% - 6px);
	}
	.showroom_link {
        width: 75vw;
        height: 10vw;
        margin-bottom: 25px;
    }
	.showroom_link a {
        letter-spacing: .2vw;
        height: 60px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        position: relative;
    }
	.showroom_link a span {
        font-size: 1.4rem;
    }
	.showroom_link a:before {
        content: "";
        position: absolute;
        top: calc(50% - 4px);
        right: 15px;
        z-index: 2;
    }
	.cy-lp footer {
		padding: 40px 0 0;
	}
}