@charset "utf-8";

html,body {
	font-size: 62.5%;	/*文字サイズ*/
}

/*** フェードインアニメーションを作って ***/
@keyframes fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}
  /*** bodyやメインコンテンツの要素に反映させる ***/
body {
	margin: 0px;
	padding: 0px;
	color: #292929;	/*全体の文字色*/
	font-family:'Noto Sans JP', sans-serif;	/*フォント種類*/
	line-height: 2;		/*行間*/
	background: #FEFEFE;	/*背景色*/
	-webkit-text-size-adjust: none;
	overflow-x: hidden;
	animation: fadeIn 4s forwards;
}


h1{
	font-family: 'Exo', sans-serif;
	font-size:6rem;
	font-style: italic;
}

h2{
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 3rem;
}

p{
	font-size: 1.6rem;
	font-weight: 500;
}

a{
	text-decoration: none;
	color:inherit;
}

/* ヘッダー */
:root {
	--header: 90px;
	scroll-padding: var(--header);
	scroll-padding: calc(var(--header) + 30px);
	scroll-behavior: smooth;
  }


.pcHeader{
	width:100%;
	height: var(--header);
	background-color: #FFFFFF;
	position: fixed;
	z-index: 100;
	display: flex;
	justify-content:space-between ;
	top:0;
}

@media screen and (max-width: 800px){
	.pcHeader{
		display: block;
	}
}

.globalNav{
	height: 100%;
	padding-left: 36px;
	display: flex;
}

@media screen and (max-width: 800px){
	.globalNav{
		height: 90px;
		padding-left: 10px;
	}
}

.logo{
	width: 190px;
	height: 100%;
	display: flex;
	align-items: center;
}

@media screen and (max-width: 800px){
	.logo{
		width: 30%;
	}
}

.menuTitle{
	display: flex;
	justify-content: start;
	font-weight: 700;
	font-size: 18px;
	color:#3b3b3b;
	align-items: center;
	line-height: 1.5;
}

@media screen and (max-width: 800px){
	.menuTitle{
		font-size: 16px;
	}
}

.menuTitle li{
	padding-left: 64px;
}

@media screen and (max-width: 800px){
	.menuTitle li{
		padding-left: 30px;
	}
}

.menuTitle a{
	display: inline;
  background-image: linear-gradient(90deg, #FFE42E, #FFE42E); /* マーカーの色を指定 */
	background-repeat: no-repeat;
  background-position: left bottom; /* マーカーの発生位置を左下に設定 */
  background-size: 0 40%; /* マーカーの横幅 / 縦幅 */
  transition: all 0.8s ease; /* マーカーを引く速度 */
  cursor: pointer; /* ホバー時のカーソルをポインターにする */
}

.menuTitle a:hover{
	background-size: 100% 40%;
}

.globalHeaderContact{
	width: 30%;
	height: 100%;
	display: flex;
	justify-content: center;
	margin-left: 20px;

}

.SPContact{

	display: none;
	width:100%;
	margin-left: 0px;
	height: 90px;
	position: fixed;
	bottom:0;
}

@media screen and (max-width: 800px){
	.globalHeaderContact{
		display: none;
	}
}

@media screen and (max-width: 800px){
	.SPContact{
		display: flex;
	}
}

.SpHeader{
	position: absolute;
	z-index: 50;
}

.globalHeaderContact li,
.SPContact li{
	width: calc(100%/2);
	height: 100%;
	align-items: center;
	display: flex;
}

.globalHeaderContact li a,
.SPContact li a{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.onlineStore a{
	background-color: #FFE42E;
	font-family: 'Exo', sans-serif;
	font-weight: 700;
	font-size: 18px;
	transition: 0.5s;
}



@media screen and (max-width: 1000px){
	.onlineStore a{
		font-size: 0;
	}
}

@media screen and (max-width: 800px){
	.onlineStore a{
		font-size: 16px;
	}
}

.store::before{
	content:url(/assets/image/cart.svg);
	margin-right:10px;
	transform: translate(0, 5px);
}

@media screen and ( 800px < width < 1000px){
	.store::before{
		margin-right: 0px;
		transform: translate(0, 0);
	}
}

.onlineStore a:hover{
	opacity: 0.5;
}

.headerContact a{
	background-color: #2B2B2B;
	font-weight: 700;
	font-size: 18px;
	color: white;
	transition: 0.5s;
}

@media screen and (max-width: 1000px){
	.headerContact a{
		font-size: 0;
	}
}

@media screen and (max-width: 800px){
	.headerContact a{
		font-size: 16px;
	}
}

.hContact::before{
	content:url(/assets/image/mail.svg);
	margin-right: 10px;
	transform: translate(0, 5px);
}

@media screen and ( 800px < width < 1000px){
	.hContact::before{
		margin-right: 0;
		transform: translate(0, 0);
	}
}

.headerContact a:hover{
	opacity: 0.5;
}



/* メインイメージ */
.main{
	width: 100vw;
	height: 725px;
	position: relative;
	margin-top: 90px;
}

.bg-slider {
	width: 100vw;
	height: 100%;
	background-position:center center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mainTitle{
	position: absolute;
	top:0;
	left:0;
	max-width: 1027px;
	height: 100%;
	padding-left: calc(200vw*100/1920);
	padding-right: calc(100vw*100/1920);
	background-color: rgba(255,255,255,0.6);
	backdrop-filter: blur(6px);
	align-items: center;
	justify-content: center;
	display: flex;
	flex-direction: column;
}

.mainTitle p{
	font-weight: 700;
	font-size: 3rem;
	text-align: center;
	margin-bottom: 17px;
}

@media screen and (max-width: 800px){
	.mainTitle p{
	font-size: 2.5rem;
	}
}

.mainTitle span{
	font-size: 3vw;
}

@media screen and (max-width: 1200px){
	.mainTitle span{
		font-size: 5vw;
	}
}

@media screen and (max-width: 560px){
	.mainTitle span{
		font-size: 6vw;
	}
}

.mainTitle img{
	width: 33.5vw;
	/* height: 226px; */
}

@media screen and (max-width: 1200px){
	.mainTitle img{
		width: 80%;
	}
}

@media screen and (max-width: 560px){
	.mainTitle img{
		width: 100%;
	}
}

.mainTitle p.discription{
	font-size: 2.7rem;
	display: inline;
  background-image: linear-gradient(90deg, #FFE42E, #FFE42E); /* マーカーの色を指定 */
	background-repeat: no-repeat;
  background-position: left bottom; /* マーカーの発生位置を左下に設定 */
  background-size: 100% 40%; /* マーカーの横幅 / 縦幅 */
}

@media screen and (max-width: 800px){
	.mainTitle p.discription{
		font-size: 1.8rem;
	}
}

/* アンカーメニュー */
.anchorMenu{
	width: 100vw;
	height: 268px;
	position: absolute;
	top:769px;
}

.circleButtons{
	display: flex;
	justify-content: center;

}

.circleButtons li{
	margin:0px 50px;
	text-align: center;
}

@media screen and (max-width: 1120px){
	.circleButtons li{
		margin:0px auto;
	}
}

.circleButtons a{
	display: flex;
	width: 268px;
	height: 268px;
	border-radius: 50%;
	justify-content: center;
	align-items: center;
	box-shadow: 0px 3px 6px 0 rgba(0,0,0,0.2);
	position: relative;
	transition: 0.5s;
}

@media screen and (max-width: 960px){
	.circleButtons a{
		width: 28vw;
		height: 28vw;
	}
}

@media screen and (max-width: 560px){
	.circleButtons a{
		width: 32vw;
		height: 32vw;
	}
}

.circleButtons a:hover{
	transform: translate(0px,-20px);
}


.circleButtons p::after{
	content:url(/assets/image/allow.svg);
	display: block;
}

@media screen and (max-width: 560px){
	.circleButtons p::after{
		display: none;
	}
}

.circleButtons .blue a{
	background-color: #4FDADF;
}

.circleButtons .yellow a{
	background-color: #FFCC41;
}

.circleButtons .pink a{
	background-color: #F85799;
}

.circleButtons p{
	font-size: 3.4rem;
	line-height: 1.5;
	font-weight: 800;
	transform: translate(0px,10px);
}

@media screen and (max-width: 960px){
	.circleButtons p{
		font-size: 3.5vw;
	}
}

@media screen and (max-width: 560px){
	.circleButtons p{
		font-size: 4vw;
		transform: translate(0, 0);
	}
}

.circleButtons span{
	font-size: 2.2rem;
	line-height: 1.5;
	font-weight: 700;
	color: white;
	background-color:#1D1D1D ;
	padding: 0px 10px;
}

@media screen and (max-width: 960px){
	.circleButtons span{
		font-size: 2.3dvw;
	}
}

@media screen and (max-width: 560px){
	.circleButtons span{
		font-size: 3vw;
	}
}

/* アイテム */
.items{
	margin-top: 330px;
}

@media screen and (max-width: 1400px){
	.items{
		margin-left: 10px;
		margin-right: 10px;
	}
}

@media screen and (max-width: 960px){
	.items{
		margin-top: 34vw;
	}
}

.item{
	max-width: 1400px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 120px;
	background-color: #FFFFFF;
	border-radius: 16px;
	box-shadow: 0 3px 6px 0 rgba(0,0,0,0.2);
	padding: 50px;
	border: 4px solid;
	text-align: center;
}

@media screen and (max-width: 960px){
	.item{
		padding-left: 5vw;
		padding-right: 5vw;
	}
}

.itemBlue{
	border-color: #4FDADF;
}

.itemYellow{
	border-color: #FFCC41;
}

.itemPink{
	border-color: #F85799;
}

.item h2{
	font-family: 'Exo', sans-serif;
	font-style: italic;
	font-weight: 700;
	line-height: 1.5;
	font-size: 6rem;
	text-shadow: 0 3px 0 rgba(0,0,0,0.2);
	color: #FFFFFF;
	display: block;
	width: 600px;
	height: 84px;
	border-radius: 42px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 25px;
}

@media screen and (max-width: 960px){
	.item h2{
		font-size: 6.25vw;
		width: 62.5vw;
		height: 8.75vw;
	}
}

.itemBlue h2{
	background-color: #4FDADF;
}

.itemYellow h2{
	background-color: #FFCC41;
}

.itemPink h2{
	background-color: #F85799;
}

.item h3{
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 15px;
}

.introduce{
	display: flex;
	flex-wrap: wrap;
	margin-top: 20px;
}

.introduce li{
	width: calc( 100% / 3 );
	padding-left: 30px;
	padding-right: 30px;
}

@media screen and (max-width: 960px){
	.introduce li{
		padding-left: 3vw;
		padding-right: 3vw;
		width: calc( 100% / 2 );
	}
}

@media screen and (max-width: 560px){
	.introduce li{
		width: 100%;
	}
}

.introduce li img{
	width: 100%;
	height: 310px;
	object-fit: contain;
	margin-bottom: 10px;
}

.introduce li p{
	text-align: left;
	font-size: 1.6rem;
}

.introduce li span{
	font-size: 1.7rem;
	font-weight: 600;
}

/* オリジナル商品一覧へボタン */
.goButton {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 290px;
    margin: 0 auto;
    padding: .9em 2em;
    border: 2px solid;
    border-radius: 35px;
    background-color: #FFFFFF;
	font-size: 1.6rem;
	box-shadow: 0 3px 6px rgba(0,0,0,0.2);
	margin-top: 70px;
	transition: 0.5s;
}

.goButton:hover{
	transform: translate(0px,-10px);
}

.goButton p{
	font-weight: 700;
}

.buttonBlue{
	color:#4FDADF;
	border-color: #4FDADF;
	transition: 0.5s;
}

.buttonBlue:hover{
	color: white;
	background-color: #4FDADF;
}

.buttonYellow{
	color:#FFCC41;
	border-color: #FFCC41;
	transition: 0.5s;
}

.buttonYellow:hover{
	color: white;
	background-color: #FFCC41;
}

.buttonPink{
	color:#F85799;
	border-color: #F85799;
	transition: 0.5s;
}

.buttonPink:hover{
	color: white;
	background-color: #F85799;
}

.goButton::before {
    position: absolute;
    right: calc(2em + 2.5px);
    transform: translateX(50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    content: '';
	transition: 0.5s;
}

.buttonBlue::before{
	background-color: #4FDADF;
}

.goButton:hover::before{
	background-color: white;
}

.buttonYellow::before{
	background-color: #FFCC41;
}

.buttonPink::before{
	background-color: #F85799;
}

.goButton::after {
    transform: rotate(45deg);
    width: 13px;
    height: 13px;
    margin-left: 10px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    content: '';
	transition: 0.5s;
}

.goButton:hover::after{
	transform: rotate(45deg) scale(1.2);
}

.buttonBlue:hover::after{
	border-color: #4FDADF;
}

.buttonYellow:hover::after{
	border-color: #FFCC41;
}

.buttonPink:hover::after{
	border-color: #F85799;
}

/* メッセージ */
.message{
	text-align: center;
	max-width: 1400px;
	margin-top: 140px;
	margin-left: auto;
	margin-right: auto;
}

@media screen and (max-width: 1400px){
	.message{
		margin-left: 10px;
		margin-right: 10px;}
	}


.message img{
	width: 454px;
	margin-bottom: 20px;
	margin-left: auto;
	margin-right: auto;
}

.message .factoryIM{
	width: 100%;
	margin-top: 46px;
}

/* ページタイトル */
.pagetitle{
	width: 100vw;
	height: 360px;
	position: relative;
	margin-top: 90px;
	text-align: center;
	padding-top: 96px;
}

@media screen and (max-width: 800px) {
	.pagetitle{
		margin-top: 90px;
	}
	
}

.pagetitle h1{
	text-shadow: 0 3px 0 rgba(0,0,0,0.2);
	margin-bottom: 19px;
}

.pagetitle h2::after{
	content: "";
	width: 100px;
	height: 3px;
	background-color:#FFE42E ;
	margin-top: 40px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/* プロダクトリスト */
.itemList{
	max-width: 1420px;
	margin-left: auto;
	margin-right: auto;
}

.itemList li{
	margin-bottom: 90px;
}

.buttonImg{
	position: relative;
}

.hover-mask {
	align-items: center; /* テキストの中央揃え */
	background: rgba(0, 0, 0, .3); /* マスクの色(黒の50%) */
	bottom: 0;
	color: #fff; /* テキストの色 */
	display: flex; /* テキストの中央揃え */
	height: auto;
	justify-content: center; /* テキストの中央揃え */
	left: 0;
	opacity: 0; /* 最初は透明(非表示) */
	position: absolute;
	right: 0;
	top: 0;
	transition: opacity .6s ease; /* ゆっくりopacityのみへ変化させる */
	width: 100%;
}

.hover-mask p{
	font-size: 1.6rem !important;
	background-color: #2B2B2B;
	display: flex;
	width: 203px;
	height: 45px;
	justify-content: center;
	align-items: center;
}

.hover-mask p::after{
	content: url(/assets/image/link-external.svg);
	margin-left: 7px;
}

.itemList a:hover .hover-mask{
	opacity: 1;
}

/* about */
.lead{
	font-size: 1.8rem;
	font-weight: 500;
	text-align: center;
	line-height: 2.3;
}

/* 2カラム */
.column{
	max-width: 1420px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	margin-top: 150px;
	flex-wrap: wrap;
}

.imageContent{
	width: 52%;
	object-fit: cover;
}

@media screen and (max-width: 760px){
	.imageContent{
		width: 100%;
	}
}

.textContent{
	width:48%;
}


.textContent h2{
	margin-bottom:32px ;
}

.leftText{
	padding-right:6.5vw ;
}

@media screen and (max-width: 1420px){
	.leftText{
		padding-left: 20px;
	}
}

.rightText{
	padding-left: 6.5vw;
}

@media screen and (max-width: 1420px){
	.rightText{
		padding-right: 20px;
	}
}

@media screen and (max-width: 760px){
	.textContent{
		width: 100%;
		padding:20px;
	}
}


/* コンタクトページ */
.contactForm{
	max-width: 940px;
	margin-left: auto;
	margin-right: auto;
}

@media screen and (max-width: 960px){
	.contactForm{
		margin-left: 10px;
		margin-right: 10px;
	}
}


/* フッター */
footer{
	margin-top: 120px;
}
/* OEM問い合わせボタン */
.oemButton{
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

@media screen and (max-width: 800px){
	.oemButton{
		margin-left: 10px;
		margin-right: 10px;
	}
}


.oemButton a{
	display: flex;
	max-width: 100%;
	min-height: 156px;
	background-color: #232323;
	border-radius: 16px;
	text-align: center;
	align-items: center;
	position: relative;
	box-shadow: 0 3px 6px rgba(0,0,0,0.2);
	transition: 0.5s;
}

.oemButton a:hover{
	opacity: 0.9;
	transform: translate(0px, -10px);
}

.oem{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

@media screen and (max-width: 560px){
	.oemButton a{
	padding: 10px;
	}
}

.oem::after{
	content: url(/assets/image/pin.svg);
	position: absolute;
	right:3vw;
	transition: 0.5s;
}

@media screen and (max-width: 560px){
	.oem::after{
		display: none;
	}
}

.oem:hover::after{
	transform: translate(10px,0px);
}

.oemButton a span{
	font-family: 'Exo', sans-serif;
	font-size: 4.9rem;
	font-style: italic;
	font-weight: 700;
	color: white;
	line-height: 1.5;
}

@media screen and (max-width: 560px){
	.oemButton a span{
		font-size: 4rem;
	}
}

.oemButton a p{
	font-size: 1.7rem;
	color: white;
}

@media screen and (max-width: 560px){
	.oemButton a p{
		font-size: 1.4rem;
	}
}

/* お問い合わせボタン */
.wideContact{
	width: 100vw;
	height: 300px;
	margin-top: 150px;
}

.wideContact a{
	display: flex;
	width: 100%;
	height: 100%;
	background-image: url(/assets/image/wideButton.jpg);
	object-fit: cover;
	text-align: center;
	justify-content: center;
	align-items: center;
	position: relative;
}

.wideContact a::before {
	background: rgba(0, 0, 0, .5); /* マスクの色(黒の50%) */
	bottom: 0;
	content: '';
	height: auto;
	left: 0;
	opacity: 0; /* 最初は透明(非表示) */
	position: absolute;
	right: 0;
	top: 0;
	transition: opacity .6s ease; /* ゆっくりopacityのみへ変化させる */
	width: 100%;
}

.wideContact a:hover::before {
	opacity: .8; /* hoverしたら透過しない(表示させる) */
}

.wideContact span{
	font-family: 'Exo', sans-serif;
	font-size: 6.8rem;
	font-style: italic;
	font-weight: 700;
	color: white;
	text-shadow: 0 3px 0 rgba(0,0,0,0.2);
	position: relative;
}

@media screen and (max-width: 960px){
	.wideContact span{
		transform: translate(0 , 50px);
	}
}

@media screen and (max-width: 560px){
	.wideContact span{
		font-size: 5rem;
	}
}

.wideContact span::before{
	content: url(/assets/image/bigContact.svg);
	position: absolute;
	top:15px;
	left:-150px;
}

@media screen and (max-width: 960px){
	.wideContact span::before{
	top: -100px;
	left: 35%;
}
}

/* インフォメーション */
.company{
	max-width: 1400px;
	padding-top: 80px;
	margin-left: auto;
	margin-right: auto;
}

@media screen and (max-width: 1400px){
	.company{
		margin-left: 10px;
		margin-right: 10px;
	}
}

.company img{
	max-width: 235px;
}

.company p{
	font-size: 1.6rem;
	font-weight: 500;
}

.adress{
	display: flex;
	flex-wrap: wrap;
	font-size: 1.6rem;
	margin-top: 17px;
	line-height: 1.7;
}

.adress dt{
	width: 12%;
}

@media screen and (max-width: 960px){
	.adress dt{
		width: 20%;
	}
}

@media screen and (max-width: 560px){
.adress dt{
	width: 100%;
}
}

.adress dd{
	width: 88%;
	margin-bottom: 5px;
}

@media screen and (max-width: 960px){
	.adress dd{
		width: 80%;
	}
}

@media screen and (max-width: 560px){
	.adress dd{
		width: 100%;
	}
}

.copylight{
	width: 100vw;
	text-align: center;
	font-family: 'Lato', sans-serif;
	font-size: 1.5rem;
	color: #030303;
	margin-top: 78px;
	padding-bottom: 50px;
}

@media screen and (max-width: 800px){
	.copylight{
		padding-bottom: 140px;
	}
}