@charset "utf-8";
/* base
--------------------------------- */
:root {
	--LogoImgSize: 52px;
	--colorYel: #FCC800;
	--colorLightYel: #fffbed;
	--colorBlk: #2f2725;
	--colorAlphaBlk: rgba(0, 0, 0, 0.05);
	--colorLightGry: #f9f9f6;
	--headerHeight: 88px;
}
@media screen and (min-width: 768px) {
	:root {
		--headerHeight: 104px;
	}
}
body {
	font-family: 'Outfit', 'M PLUS 1p', sans-serif;
}

/* layout
--------------------------------- */
/* header */
.l-header {
	background-color: transparent !important;
}
.l-header,
.header__wrap {
	transition: height 0.4s ease;
}
.header__wrap {
	padding-left: 16px;
}
@media screen and (min-width: 1200px) {
	.l-gnav .gnav__header,
	.header__wrap {
		padding: 0 24px 0 32px;
	}
}
.header__logo a {
	padding: 8px 0;
}
.header__logo a img {
	height: 100%;
	max-height: unset;
}
.header__logo a > * {
	position: unset;
	top: unset;
	left: unset;
	transform: unset;
	transition: unset;
}

/* nav */
.appsItemCategoryTag_child p,
.appsItemCategoryTag_child a {
	word-break: break-word;
}

/* main */
.l-main.no-slide,
.l-main {
	margin-top: unset;
}
#homeCategory .project__main {
	padding-top: 32px;
}

/* footer */
.footer__logo a img {
		max-height: 120px;
}

@media screen and (max-width: 1199px) {
	.footer__logo {
		text-align: center;
	}
}
@media screen and (min-width: 768px) {
	.fnav__inner {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: -webkit-max-content 1fr;
		grid-template-rows: max-content 1fr;
		grid-template-areas:
			"logo-area logo-area"
			"guide-area menu-area";
	}
	.fnav__wrap.list__info {
		grid-area: logo-area;
	}
	.fnav__wrap.list__guide {
		grid-area: guide-area;
	}
	.fnav__wrap.list__menu {
		grid-area: menu-area;
	}
}
@media screen and (min-width: 1200px) {
	.fnav__inner {
		grid-template-columns: 0.5fr 1fr 1fr;
		grid-template-areas: "logo-area guide-area menu-area";
		gap: 0 5%;
	}

}


/* component
--------------------------------- */
/* lower header */
.concept__wrap,
.lower__header {
	padding-left: 5% !important;
	padding-right: 5% !important;
}
.set-bg.concept__wrap,
.set-bg .lower__header {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 50vw;
	max-height: 320px;
	background-color: var(--colorLightGry);
}
#homeCategory.set-bg .lower__header {
	background-size: 20%;
	background-position: center;
	background-repeat: repeat;
}
body.set-bg .lower__header::before {
	display: none;
}
body:not(.set-bg) .lower__header {
	justify-content: center;
	margin-top: 0;
}
/* .item__listitem.part,
.js-load.informationBanner__inner, */
.set-bg.concept__wrap,
.js-load.js-inview.concept__wrap,
.js-load.lower__wrap {
	opacity: 1;
	-webkit-animation: none;
			animation: none;
}
@media screen and (min-width: 768px) {
	#homeCategory.set-bg .lower__header {
		background-size: 15%;
	}
}
@media screen and (min-width: 960px) {
	#homeCategory.set-bg .lower__header {
		background-size: 12.5%;
	}
}
@media screen and (min-width: 1200px) {
	#homeCategory.set-bg .lower__header {
		background-size: 10%;
	}
}
@media screen and (min-width: 1440px) {
	#homeCategory.set-bg .lower__header {
		background-size: 8%;
	}
}
@media screen and (min-width: 1600px) {
	#homeCategory.set-bg .lower__header {
		background-size: 7%;
	}
}
@media screen and (min-width: 1920px) {
	#homeCategory.set-bg .lower__header {
		background-size: 6%;
	}
}


/* title */
.about__title,
.concept__catch,
body:not(#homeSearch) .lower__title {
	overflow: hidden;
	transform: translate(-100%, 0);
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}
.concept__catch,
body:not(#homeSearch) .lower__title {
	margin: 0 auto;
}
.concept__catch span,
body:not(#homeSearch) .lower__title span {
	display: block;
	transform: translate(100%, 0);
	padding: .1em .4em;
	background-color: var(--colorBlk);
	font-size: clamp(24px, 7.2vw, 40px);
	line-height: 1.4;
	color: var(--colorWht);
}
body#privacyPage .lower__title span,
body#lawPage .lower__title span {
	font-size: clamp(24px, 7vw, 40px);
}
.about__title span {
	display: block;
	transform: translate(calc(100% + 1px), 0);
}
.concept__catch span::after,
body:not(#homeSearch) .lower__title span::after {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	transform: translate(0, 0);
	width: 100%;
	height: 100%;
	background-color: var(--colorBlk);
}
.about__title.js-visible,
.about__title.js-visible span,
.concept__catch.js-visible,
.concept__catch.js-visible span,
.lower__title.js-visible,
.lower__title.js-visible span {
	-webkit-animation: slideIn .3s ease .2s forwards;
			animation: slideIn .3s ease .2s forwards;
}
.concept__catch.js-visible span::after,
.lower__title.js-visible span::after {
	-webkit-animation: slideOut .3s ease-in-out .4s forwards;
			animation: slideOut .3s ease-in-out .4s forwards;

}
.concept__catch,
.concept__catch span {
	display: none;
}
.concept__catch.js-visible,
.concept__catch.js-visible span {
	display: block;
}
@-webkit-keyframes slideIn {
	0% {
	}
	100% {
		transform: translate(0, 0);
	}
}
@keyframes slideIn {
	0% {
	}
	100% {
		transform: translate(0, 0);
	}
}
@-webkit-keyframes slideOut {
	0% {
	}
	100% {
		transform: translate(100%, 0);
	}
}
@keyframes slideOut {
	0% {
	}
	100% {
		transform: translate(100%, 0);
	}
}
#community .communityMain .communityItems .communityItem .communityItemTitle,
.related__title,
.item__title {
	word-break: break-word;
}

/* concept */
.set-bg.concept__wrap {
	position: relative;
}
.set-bg.concept__wrap .concept__contents {
	width: 100%;
}
.set-bg.concept__wrap .concept__catch {
	margin-bottom: unset;
}
.set-bg.concept__wrap .concept__txt,
.set-bg.concept__wrap .btn__wrap {
	display: none;
}
.set-bg.concept__wrap .concept__overlay {
	display: none;
}
.set-bg.concept__wrap .concept__img {
	position: absolute;
	z-index: unset;
	height: 100%;
}



/* about
--------------------------------- */
.about__detail {
	overflow: hidden;
}
.about__contents .about__title span::before {
	display: block;
	margin-top: -0.2em;
	font-size: min(21vw, 100px);
	line-height: 1.2;
	color: #eee;
}
.about__contents:nth-of-type(1) .about__title span::before {
	content: "About";
}
.about__contents:nth-of-type(2) .about__title span::before {
	content: "Origin";
}
.about__contents:nth-of-type(3) .about__title span::before {
	content: "Profile";
}
.shop__description {
	display: none;
}
@media screen and (min-width: 1600px) {
	.about__contents .about__title::before {
		font-size: min(21vw, 120px);
	}
}



/* item page
--------------------------------- */
@media screen and (orientation: landscape) {
	#itemDetail .project__main {
		padding-top: 0;
	}
	#itemDetail .itemimg__wrap {
		top: 104px !important;
		align-self: unset !important;
		bottom: unset !important;
	}
}
.itemimg__wrap .slide__nav .swiper-button-next,
.itemimg__wrap .slide__nav .swiper-button-prev {
	background-color: var(--colorBlk);
	border: none;
	color: var(--colorWht);
}
.itemimg__wrap .swiper-pagination {
	left: 50%;
	right: auto;
	bottom: 8px;
	transform: translateX(-50%);
	background-color: var(--colorBlk);
	color: var(--colorWht);
}
.detail__order {
	gap: 40px;
	margin-bottom: 40px;
}
#itemDetail .item__description {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: unset;
}
.delivery__type + .item__description {
	margin-top: -24px;
}

/* custom */
.blockquote__wrap,
.custom__wrap {
	display: flex;
	flex-direction: column;
	gap: 32px;
}
.custom__contents {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding-top: 32px;
	border-top: 1px solid #ddd;
}
.custom__inner {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.custom__title {
	font-size: 21px;
	line-height: 1.4;
}
.custom__subtitle {
	font-size: 18px;
	margin-top: 16px;
}
.custom__label {
	width: fit-content;
	padding: 4px 8px;
	border: 1px solid var(--colorBlk);
}
.list__notes {
	margin-left: 1.5em;
	list-style-type: disc;
	font-size: 13px;
}

/* color */
.color__list {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
}
.color__listitem {
	background-color: var(--colorBlk);
}
.color__listitem a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 56px;
	height: 56px;
	padding: 4px;
	word-break: break-word;
	text-align: center;
	font-size: 11px;
	line-height: 1.2;
	color: var(--colorBlk);
}
.color__listitem.natural a {
	background-color: #e9e7e0;
}
.color__listitem.white a {
	background-color: #fff;
	border: 1px solid #ddd;
}
.color__listitem.sumikuro a {
	background-color: #3c3c3c;
	color: var(--colorWht);
}
.color__listitem.black a {
	background-color: #111;
	color: var(--colorWht);
}
.color__listitem.purplenavy a {
	background-color: #1e2c4c;
	color: var(--colorWht);
}
.color__listitem.milkygray a {
	background-color: #cdc3b7;
}
.color__listitem.dustypink a {
	background-color: #d8b6ba;
}
.color__listitem.acidblue a {
	background-color: #b5c1cf;
}
.color__listitem.shallowgreen a {
	background-color: #b4c4be;
}
.color__listitem.lightpurple a {
	background-color: #cdbbd2;
}

/* table */
.table__wrap {
	margin-bottom: 8px;
	font-size: 13px;
	text-align: center;
}
.table__wrap tr,
.table__wrap th,
.table__wrap td {
	border: 1px solid #ddd;
	border-collapse: collapse;
	vertical-align: middle;
}
.table__wrap th {
	vertical-align: middle;
}
.table__wrap th,
.table__wrap td {
	padding: 8px;
	line-height: 1.4;
}
.table__wrap td.bg--gry,
.table__wrap th {
	background-color: var(--colorAlphaBlk);
	font-weight: 400;
}
.custom__contents.iphone .bg--gry {
	text-align: left;
}
.table__notes {
	font-size: 13px;
}

/* blockquote */
.blockquote__wrap .youtube__wrap iframe {
	width: 100%;
	height: auto;
	aspect-ratio: 16/9;
}
.blockquote__wrap cite {
	font-size: 13px;
}

/* anc */
.anc__wrap {
	position: relative;
	z-index: 1;
}
.anc__listitem {
	display: flex;
	align-items: center;
	gap: 4px;
}
.anc__listitem::before {
	display: flex;
	justify-content: center;
	align-items: center;
	content: "↓";
	width: 16px;
	height: 16px;
	border: 1px solid var(--BodyLinkColor);
	border-radius: 100%;
	font-size: 13px;
	color: var(--BodyLinkColor);
}

/* request */
.request__wrap {
	padding: min(5%, 32px);
	background-color: var(--colorLightYel);
}
#homeCategory .request__wrap {
	max-width: 800px;
	margin: 0 auto 40px;
}
.request__wrap .custom__contents {
	padding-top: unset;
	border-top: none;
}
.request__wrap .custom__subtitle {
	margin-top: unset;
	font-size: 16px;
	text-align: center;
}
.request__wrap li {
	display: inline;
}
.request__wrap ul li::after {
	content: "、";
}
.request__wrap ul li:last-of-type::after {
	display: none;
}

/* category
--------------------------------- */
/* hamburger menu */
.medium__category .appsItemCategoryTag_lowerLink {
	background-color: var(--colorLightGry);
}
.medium__category .appsItemCategoryTag_lowerLink::before {
	display: none;
}
.medium__category .appsItemCategoryTag_lowerLink span {
	background-color: var(--colorBlk);
	color: var(--colorWht);
}
.font-s .medium__category .appsItemCategoryTag_lowerLink {
	justify-content: flex-end;
	gap: 24px;
	position: relative;
	font-size: min(8vw, 32px);
}
.medium__category .appsItemCategoryTag_lowerLink .title__bg {
	padding: 0 8px;
}
.primary-cat__btn {
	padding: 0.6em 1.6em;
	border: none;
}
.menu-btn--back {
	background-color: var(--colorBlk);
}
.menu-btn__back::after {
	border-color: var(--colorBlk);
}

/*　category nav　*/
.img-bg .appsItemCategoryTag_child .img__wrap a {
	padding: 0;
	background-color: var(--colorLightGry);
	font-size: min(3.6vw, 16px);
	line-height: 1.2;
}
.img-bg .appsItemCategoryTag_child .img__wrap a::before {
	display: none;
}
.category__inner.img-bg .img__wrap .mainHeaderNavColor span:not(.catnav__arrow) {
	padding: 2px 4px;
	background-color: var(--colorBlk);
	color: var(--colorWht);
}
.category__inner.img-bg .catnav__arrow {
	display: none;
}



