@charset "utf-8";

/*===================================================
	1-1. Font (Yahoo UI Library Fonts CSS)
===================================================*/

body {
	font-size: 12px;
	font-size: small;
	font: x-small;
	font-family: "Noto Sans JP", sans-serif;
}

table {
	font-size: inherit;
}

select, 
input, 
textarea {
	font: 99% arial,helvetica,clean,sans-serif;
}

pre, 
code {
	font: 115% monospace;
	font-size: 100%;
}
a {
	text-decoration:none;
}

/*===================================================
					共通CSS
===================================================*/



#ccBOx {
	width: 100%;
	padding-top: 140px;
	padding-bottom: 5%;
	text-align: center;
	align-items: center;
}

@media screen and (max-width: 980px) {
#ccBOx {
	width: 100%;
	padding-top: 0px;
	padding-bottom: 5%;
}
}

/*===================================================
				Century Gothic フォント
===================================================*/

@import url("https://p.typekit.net/p.css?s=1&k=izc7peq&ht=tk&f=60838&a=87929704&app=typekit&e=css");

@font-face {
font-family:"century-gothic-std";
src:url("https://use.typekit.net/af/d3f1b9/0000000000000000773f3cf0/31/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff2"),url("https://use.typekit.net/af/d3f1b9/0000000000000000773f3cf0/31/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff"),url("https://use.typekit.net/af/d3f1b9/0000000000000000773f3cf0/31/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("opentype");
font-display:auto;font-style:normal;font-weight:300;font-stretch:normal;
}

/*===================================================
			   オリジナルCSS
===================================================*/
.scroll-block {
	transform: translateY(-100px);
	transition: all 1.5s;
	opacity: 0;
	margin-bottom: 1%;
}
.blockIn {
	transform: translateY(0px);
	opacity: 1;
}

/* 1枚ずつ発火のタイミングをずらす */
.delay01 { transition-delay: 0s; }
.delay02 { transition-delay: 0.2s; }
.delay03 { transition-delay: 0.4s; }

/*メインバナー*/

.brandBox {
	display: flex;
	text-align: center;
	margin:0 auto 15% auto ;
}

.brandBox .titleImg_pc {
		width: 100%;
		display: block;
		margin:0 auto 5% auto ;
		object-fit: contain;
		max-width: fit-content;

}

.brandBox .titleImg_sp {
		display: none;
}

.mainBox {
	width: 100%;
	margin:0 auto 0 auto ;
	background-color: #f2f2f2;
	padding-bottom: 1%;
}

.aboutBox{
	width: 75%;
	max-width: fit-content;
	display: grid;
	grid-template-columns: repeat(2, 1fr);/**画像二つの時は(2,1fr)に修正**/
	column-gap: 5%;
	align-items: center;
	margin: 0 auto 5% auto;
	    transform: translateY(-24%);

}

.about-picture img {
	width: 80%;
	max-width: fit-content;
}

.about-Txt {
	display: block;
	text-align: left;
	width: 100%;
	margin: 0 auto 5% auto;
}

.about-Txt .Title {
	margin-bottom: 10%;
}

.about-Txt .Title span {
	font-size: 250% ;
    font-family: "Gilda Display",sans-serif;
	font-weight: 500;
	text-align: left;
}

.about-Txt .Concept {
	margin-bottom: 10%;
}

.about-Txt .Concept span {
	font-size: 110% ;
    font-family: Arial, Helvetica, sans-serif;
	text-align: left;
	margin-bottom: 10%;
	line-height: 180%;
}

.about-Txt .Btn {
	background-color: #000;
	padding: 3% 1%;
	color: #fff;
	width: 40%;
	margin: 0;
	font-size: 90% ;
    font-family: "century-gothic-std",sans-serif;
	justify-content: left;
	text-align: center;
}

.about-Txt .Btn a {
	color: #FFFFFF;
	text-decoration: none;
}

.about-Txt .Btn:hover {
	color: #fff;
	background-color: #4d4d4d;
}

.overlapGallery {
	position: relative;   /* 子要素のabsoluteの基準点にする */
	width: 80%;
	margin: 0 10% 15% 10%;
	height: 1300px;       /* 3枚の画像が収まる高さを確保 */
}

.img01, .img02, .img03 {
	position: absolute;
	overflow: hidden;
}

.img01 { top: 0;    left: 0;   width: 34%; z-index: 1; }
.img02 { top: 20%;  left: 31%; width: 34%; z-index: 2; }
.img03 { top: 38%;  right: 2%;  width: 36%; z-index: 3; }

.overlapGallery img {
	width: 100%;
	height: auto;
	display: block;
}

.scrollBox {
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
}

.scrollBtn {
	width: 100%;
	padding: 3% 0;
	color: #000;
	border: none;
	font-size: 150%;
	cursor: pointer;
	text-align: left;
}

.scrollContent {
	max-height: 0;             /* 初期状態：高さ0で隠す */
	overflow: hidden;          /* はみ出た中身を隠す */
	transition: max-height 1.0s ease;  /* 変化を滑らかに */
}

/* クリックで付与される isOpen クラスがあるときだけ展開 */
.scrollContent.isOpen {
	max-height: 100px;
	text-align: left;
}

.scrollContent p {
	margin: 0;
	text-align: left;
    font-family: "Gilda Display",sans-serif;
	font-weight: 600;
	color: #000;
}

.shouhinBox{
	width: 75%;
	max-width: fit-content;
	display: grid;
	grid-template-columns: repeat(2, 1fr);/**画像二つの時は(2,1fr)に修正**/
	column-gap: 5%;
	align-items: center;
	margin: 0 auto 10% auto;
}

.shouhinBox .text-title {
	display: block;
	width: 70%;
	margin: 0 auto;
	text-align: left;
}

.shouhinBox .text-comment {
	border-top: 2px solid #000;
	display: block;
	width: 70%;
	margin: 0 auto 10% auto;
	padding-top: 10%;
	text-align: left;
}


.shouhinBox .text-title h1 {
    font-family: "Gilda Display","Noto Sans JP",sans-serif;
	font-size: 200%;
	font-weight: 600;
}

.shouhinBox .text-title span {
    font-family : "Arial", "Noto Sans JP",sans-serif;
	font-size: 120%;
	font-weight: 500;
	line-height: 200%;
}


.shouhinBox .text-comment span {
    font-family: "Noto Sans JP",sans-serif;
	font-size: 110%;
	margin: 10% 0;
}

.item-card__colors {
	display: block;
	width: 70%;
	margin: 7% auto 6% auto;
	text-align: left;
	gap: 5%;
}
.item-card__color {
  width: 16px;
  height: 16px;
  display: inline-block;
}

.shouhinBox .picture {
	width: 100%;
	height: auto;
	display: flex;
	gap: 3%;
}

.shouhinBox .picture img {
	width: 100%;
	height: auto;
}

.text-Btn {
	color: #000;
	width: 40%;
	margin-bottom: 10%;
	padding-left: 2%;
	font-size: 120% ;
    font-family: "Noto Sans JP",sans-serif;
	justify-content: left;
}

.text-Btn a {
	color: #000;
	text-decoration: none;
}

.text-Btn :hover {
	color: #707070;
}

.text-Btn:hover a {
	color: #707070;
}

.text .text-picture  {
	display: flex;
	text-align: left;
	margin-left: 15%;
	gap: 3%;
}

.text .text-picture img {
	width: 40%;
	height: auto;
}

.allBtn {
	background-color: #000;
	padding: 1%;
	color: #fff;
	width: 20%;
	margin: 0 auto 5% auto;
	font-size: 100% ;
    font-family: "century-gothic-std",sans-serif;
	text-align: center;
}

.allBtn a {
	color: #FFFFFF;
	text-decoration: none;
}

.allBtn:hover {
	color: #fff;
	background-color: #4d4d4d;
}



/*===================================================
					Footer CSS
===================================================*/
.copy {
	width: 100%;
	background-color: #153e35;
	position: absolute;
}
.copy .c_text {
	color: #ffffff;
	padding: 1%;
	text-align: center;
}
/*===================================================
			戻るボタン　CSS
===================================================*/

html {
    scroll-behavior: smooth;
}
.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #fff;
    border: solid 2px #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #000;
    border-right: 3px solid #000;
    transform: translateY(20%) rotate(-45deg);
}

/*===================================================
===================================================*/

.storeinfo {
	background:#d0cece;
	padding:5% 5%;
	box-sizing:border-box;
}
.storeinfo.aboutseries {
	background:none;
	padding:5% 5%;
	box-sizing:border-box;
}
.storeinfo .infoTitle {
	font-weight:600;
	font-size:105%;
}
.storeinfo ul.info li.info__title {
	font-size:105%;
}
.storeinfo ul.info .info__title > span {
	padding-bottom:0.1em;
	border-bottom:1px solid #000;
}
.storeinfo ul.info {
	margin:0 auto 3% auto;
}
.storeinfo ul.info .info__title {
	margin:2.0em auto 1.5em auto;
}
.storeinfo ul.info .info__txt {
	margin:0 auto 0.5em auto;
	line-height:1.5em;
}

/*===================================================
スマホ表示用調整
===================================================*/

@media screen and (max-width: 980px) {

.scroll-block {
	transform: translateY(-100px);
	transition: all 1.5s;
	opacity: 0;
	margin-bottom: 1%;
}
.blockIn {
	transform: translateY(0px);
	opacity: 1;
}

/* 1枚ずつ発火のタイミングをずらす */
.delay01 { transition-delay: 0s; }
.delay02 { transition-delay: 0.2s; }
.delay03 { transition-delay: 0.4s; }

/*メインバナー*/

.brandBox .titleImg_pc {
	display: none;
}

.brandBox .titleImg_sp {
		width: 100%;
		display: block;
		margin:0 auto 5% auto ;
		object-fit: contain;
		max-width: fit-content;
}

.mainBox {
	width: 100%;
	margin:0 auto 0 auto ;
	background-color: #f2f2f2;
}

.aboutBox{
	width: 85%;
	max-width: fit-content;
	display: block;
	align-items: center;
	margin: 5% auto 15% auto;
	transform: initial;
}

.about-picture {
	margin: 5% auto 3% auto;
}

.about-picture img {
	width: 100%;
	max-width: fit-content;
}

.about-Txt {
	display: block;
	text-align: left;
	width: 80%;
	margin: 0 auto 3% auto;
}

.about-Txt .Title {
	text-align: center;
	margin-top: 5%;
}

.about-Txt .Title span {
	font-size: 200% ;
    font-family: "Gilda Display",sans-serif;
	font-weight: 600;
	letter-spacing: 1px;
}

.about-Txt .Concept {
	margin-bottom: 10%;
}

.about-Txt .Concept span {
	font-size: 110% ;
    font-family: Arial, Helvetica, sans-serif;
	text-align: left;
	margin-bottom: 10%;
	line-height: 160%;
}

.about-Txt .Btn {
	background-color: #000;
	padding: 3% 1%;
	color: #fff;
	width: 70%;
	margin: 0 15% 5% 15%;
	font-size: 90% ;
    font-family: "century-gothic-std",sans-serif;
	text-align: center;
}

.about-Txt .Btn a {
	color: #FFFFFF;
	text-decoration: none;
}

.about-Txt .Btn:hover {
	color: #fff;
	background-color: #4d4d4d;
}

.overlapGallery {
	position: initial;
	width: 90%;
	margin: 0 auto 20% auto;
	height: 100%;       /* 3枚の画像が収まる高さを確保 */
}

.img01, .img02, .img03 {
	position: initial;
	overflow: initial;
	width: 80%;
	margin: 0 10% 5% 10%
}

.overlapGallery img {
	width: 100%;
	display: block;
}

.scrollBox {
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
}

.scrollBtn {
	width: 100%;
	padding: 3% 0;
	color: #000;
	border: none;
	font-size: 150%;
	cursor: pointer;
	text-align: left;
}

.scrollContent {
	max-height: 0;             /* 初期状態：高さ0で隠す */
	overflow: hidden;          /* はみ出た中身を隠す */
	transition: max-height 1.0s ease;  /* 変化を滑らかに */
}

.scrollContent p {
	margin: 0;
	text-align: left;
    font-family: "Gilda Display",sans-serif;
	font-weight: 600;
	color: #000;
}

/* ボタンにカーソルを合わせたら、直後のscrollContentを展開 */
.scrollBtn:hover + .scrollContent {
	max-height: 100px;         /* 中身が収まる十分な高さを指定 */
}

.shouhinBox{
	width: 80%;
	max-width: fit-content;
	display: flex;
	flex-direction: column-reverse;
	grid-template-columns: initial;
	column-gap: initial;
	align-items: center;
	margin: 30% auto 30% auto;
}
.shouhinBox .text {
	width: 90%;
}


.shouhinBox .text-title {
	display: block;
	width: 100%;
	margin: 0 auto;
	text-align: left;
}

.shouhinBox .text-comment {
	border-top: 2px solid #000;
	display: block;
	width: 100%;
	margin: 0 auto 10% auto;
	padding-top: 10%;
	text-align: left;
}


.shouhinBox .text-title h1 {
    font-family: "Gilda Display","Noto Sans JP",sans-serif;
	font-size: 200%;
	font-weight: 600;
}

.shouhinBox .text-title span {
    font-family : "Arial" "Noto Sans JP",sans-serif;
	font-size: 120%;
	font-weight: 500;
	line-height: 200%;
}


.shouhinBox .text-comment span {
	width: 90%;
    font-family: "Noto Sans JP",sans-serif;
	font-size: 110%;
	margin: 10% 0;
}

.item-card__colors {
	display: block;
	width: 100%;
	margin: 7% auto 6% auto;
	text-align: left;
	gap: 5%;
}
.item-card__color {
  width: 16px;
  height: 16px;
  display: inline-block;
}

.shouhinBox .picture {
	width: 100%;
	height: auto;
	display: flex;
	gap: 3%;
}

.shouhinBox .picture img {
	width: 100%;
	height: auto;
}

.text-Btn {
	color: #000;
	width: 100%;
	text-align: left;
	margin-bottom: 7%;
	padding-left: 0%;
	font-size: 120% ;
    font-family: "Noto Sans JP",sans-serif;
	justify-content: left;
}

.text-Btn a {
	color: #000;
	text-decoration: none;
}

.text-Btn :hover {
	color: #707070;
}

.text-Btn:hover a {
	color: #707070;
}

.text .text-picture  {
	display: flex;
	text-align: left;
	margin-left: 0%;
	gap: 3%;
}

.text .text-picture img {
	width: 70%;
	height: auto;
}

.allBtn {
	background-color: #000;
	padding: 3% 1%;
	color: #fff;
	width: 70%;
	margin: 0 auto 5% auto;
	font-size: 100% ;
    font-family: "century-gothic-std",sans-serif;
	text-align: center;
}

.allBtn a {
	color: #FFFFFF;
	text-decoration: none;
}

.allBtn:hover {
	color: #fff;
	background-color: #4d4d4d;
}
}