@charset "utf-8";


:root {
	--wh: #fff;
	--bk: #1B1B1B;

	--ff_zengaku: "Zen Kaku Gothic New", sans-serif;
	--ff_jost: "Jost", "Zen Kaku Gothic New", sans-serif;

	--side: 8rem;
	--sec: 12rem;
}
@media only screen and (max-width: 767px) {	
	:root {	
		--side: 2rem;
		--sec: 8rem;
	}
}


.bfaf {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.tra {
	transition: 0.3s;
}
.flex {
	display:flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: stretch;	
}
.flex_center {
	display:flex;
	justify-content: center;
	align-items: center;	
	flex-wrap: wrap;
}
.bg {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.imgcover {
	position: relative;
}
.imgcover img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
}


/* ==============================
-----mainContents----------------
=================================*/
html {
	margin : 0;
	padding : 0;
	font-size:62.5%;
}
body {
	margin : 0;
	padding : 0;
	width : 100%;
	height:100%;
	font-family: var(--ff_zengaku);
	font-size: 1.2rem;
  font-weight: 400;
  font-style: normal;
	color: var(--bk);
	line-height:2;
  letter-spacing: 0.05em;
	z-index: 1;
	background-color:var(--wh);
	-webkit-text-size-adjust:none;
	-webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,h2,h3,h4,strong {
	font-weight: 500;
}
a {
	color: var(--bk);
	text-decoration:none;
	word-break:break-all;
	transition: 0.3s;
}
a:hover {
  opacity: 0.6;
}

img {
	display: block;
	width: 100%;
	height: auto;
	font-size:1px;
	vertical-align: text-bottom;
}
svg {
	width: 100%;
	height: auto;
	display: block;
}
li{
	list-style:none;
}
/* SVG */
.svg-block {
    display: block;
}
object {
	pointer-events: none;
}
.svg-link object {
	overflow:visible;
}
/* SVG */

::selection {
	background: #666;
	color:#fff;
}
::-moz-selection {
	background: #666;
	color:#fff;
}
form ::selection {
	background: #666;
	color:#fff;
}
form ::-moz-selection {
	background: #666;
	color:#fff;
}


/* ***** Parts **************** */
.sp {
	display: none;
}
@media only screen and (max-width: 767px) {
	.pc {
		display: none;
	}	
	.sp {
		display: inline-block;
	}
}

#maincontents {
	border-radius: 0 0 3rem 3rem;
	background: var(--beige);
}
section {
  position: relative;
}
.blockwrap {
	max-width: calc(1140px + var(--side)*2);
	margin: 0 auto;
	padding: 0 var(--side);
}


/*//================
//Global Footer
//================*/
.global-footer {
  position: relative;
  font-size: 100%;
}
.global-footer .pagetop {
  position: absolute;
}


/*//================
//Modal
//================*/
body.modal_open {
  overflow: hidden;
}


/*//================
//Icons
//================*/
.btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--ff_jost);
  font-size: 1.5rem;
  font-weight: 450;
  line-height: 1;
  color: var(--wh);
  cursor: pointer;
  transition: 0.3s;
}
.btn .subname {
  font-size: 70%;
}

.btn:hover {
  opacity: 0.6;
}
.btn:before {
  content: '';
  display: block;
  order: 9;
  transition: 0.3s;
  flex: none;
}
.i_circle:before {
  width: 0.8rem;
  height: 0.8rem;
  border: 2px solid var(--wh);
  border-radius: 50%;
}
.i_video:before {
  width: calc(1.2rem / 2 * tan(60deg));
  height: 1.2rem;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background-color: var(--wh);
}
.i_cart:before,
.i_cart:after {
  width: 1.8rem;
  height: 1.6rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/i_cart_wh.svg);
  transition: 0.3s;
}
.i_cart:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background-image: url(../img/i_cart_bk.svg);
  opacity: 0;
}
.i_arw:before {
  width: 1.8rem;
  height: 1.8rem;
  margin-top: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/i_arw.svg);
}
.i_arw_bk:before {
  background-image: url(../img/i_arw_bk.svg);
}
.i_ig:before {
  width: 1.6rem;
  height: 1.6rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/i_ig.svg);
  order: 0;
}

.btn.bk {
  color: var(--bk);
}
.i_circle.bk:before {
  border-color: var(--bk);
}
.i_video.bk:before {
  background-color: var(--bk);
}
.i_cart.bk:before {
  opacity: 0;
}
.i_cart.bk:after {
  opacity: 1;
}

.hide {
  opacity: 0;
  pointer-events: none;
}

@media only screen and (max-width: 767px) {
  .btn {
    gap: 0.8rem;
    font-size: 1.3rem;
  }
  .i_circle:before {
    width: 0.7rem;
    height: 0.7rem;
  }
}


body {
  transition: background-color 0.6s, color 0.3s;
}
body.bgbk {
  background-color: #343434;
  color: var(--wh);
}
body.bgbk a {
  color: var(--wh);
}
body.bgbk .item a.btn {
  color: var(--wh);
}
body.bgbk .item a.i_cart:before {
  opacity: 1;
}
body.bgbk .item a.i_cart:after {
  opacity: 0;
}


/*//================
//Nav
//================*/
#nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  font-size: 1.5rem;
  color: var(--wh);
}
#nav_logos {
  width: 4rem;
  max-width: 45rem;
  height: 10rem;
  position: fixed;
  top: 2rem;
  left: 2rem;
}
#nav_logos path {
  fill: var(--wh);
  transition: 0.3s;
}
#nav_logos.bk path {
  fill: var(--bk);
}
#logo_fetico,
#logo_yue {
  width: 100%;
  position: absolute;
  max-width: 20rem;
}
#logo_fetico {
  top: 0;
  left: 0;
}
#logo_yue {
  right: 0;
  bottom: 0;
}
#about_btn {
  position: fixed;
  top: 2rem;
  right: 2rem;
}
#video_btn {
  position: fixed;
  left: 2rem;
  bottom: 2rem;
}
#store_btn {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
}
.close_btn {
  position: fixed;
  top: 2rem;
  right: 2rem;
  color: var(--wh);
}

@media only screen and (max-width: 767px) {
  #nav_logos {
    width: 3rem;
    height: 7.5rem;
  }
}


/*//================
// Loading
//================*/
body.loading #maincontents {
  pointer-events: none;
}
body.loading {
  overflow: hidden;
}
#loadingbg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: var(--wh);
  pointer-events: none;
}
body.loading #nav_logos path {
  fill: var(--bk);
}
#loadingcross {
  position: fixed;
  top: 50%;
  left: 49%;
  width: 3vw;
  height: 3vw;
  transform: translate(-50%, -50%);
  opacity: 0;
}
#loadingcross:before,
#loadingcross:after {
  content:'';
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--bk);
  transform: translate(-50%, -50%) rotate(45deg);
}
#loadingcross:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media only screen and (max-width: 767px) {
  #loadingcross {
    width: 2rem;
    height: 2rem;
  }
  #loadingcross:before,
  #loadingcross:after {
    height: 1px;
  }
}


/*//================
// KV
//================*/
#kv_sec {
  width: 100%;
  height: 100svh;
}
#kv_sec video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}


/*//================
// Modal
//================*/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
}
.modal .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(0deg, #000, #464646);
}

/*//================
// Video
//================*/
#modal_video_wrap {
  width: 90%;
  height: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#modal_video_wrap video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: contain;
}


/*//================
// About
//================*/
#modal_about {
  font-size: 1.3rem;
  color: var(--wh);
}
#about_blc {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
}
#about_img {
  width: 40%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
#about_img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
#about_txt {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60%;
  margin: 0 auto;
  padding: 8rem 6rem;
  overflow: auto;
}
#about_txt .brand {
  width: 100%;
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6rem;
}
#about_txt .brand + .brand {
  margin-top: 8rem;
}
#about_txt .brand .logo {
  width: 8rem;
  margin: 0 auto;
}
#about_txt .brand .txt_blc {
  width: calc(100% - 8rem);
}
#about_txt .brand .txt_blc strong {
  font-weight: 700;
}
#about_txt .brand .btn {
  margin-top: 2rem;
  justify-content: flex-start;
  font-size: 1.3rem;
}
@media only screen and (max-width: 1080px) {	
  #about_img {
    width: 30%;
  }
  #about_txt {
    width: 70%;
    padding: 8rem 4rem;
  }
  #about_txt .brand {
    gap: 4rem;
  }
  #about_txt .brand + .brand {
    margin-top: 6rem;
  }
}
@media only screen and (max-width: 767px) {
  #modal_about {
    font-size: 1.3rem;
    color: var(--wh);
    overflow: auto;
  }
  #about_blc {
    width: 100%;
    height: auto;
    flex-direction: column-reverse;
  }
  #about_img {
    width: 100%;
    height: 140vw;
  }
  #about_txt {
    align-items: flex-start;
    width: 100%;
    padding: 6rem 4rem;
    padding-top: 8rem;
    background-image: linear-gradient(0deg, #000, #464646);
  }
  #about_txt .brand {
    flex-direction: column;
    max-width: 100%;
    gap: 4rem;
  }
  #about_txt .brand + .brand {
    margin-top: 6rem;
  }
  #about_txt .brand .logo {
    width: 6rem;
  }
  #about_txt .brand .txt_blc {
    width: 100%;
  }
  #about_txt .brand .txt_blc .txt {
    padding-bottom: 2rem;
  }
}


/*//================
// Concept
//================*/
#concept {
  padding: var(--sec) 0;
}
#concept h2 {
  margin-bottom: 8rem;
  font-family: var(--ff_jost);
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
}
#concept_blc {
  display: flex;
  justify-content: space-between;
}
#concept_blc h1 {
  width: 50%;
  padding-right: 2rem;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.6;
}
#concept_blc .txt {
  width: 50%;
  font-size: 1.8rem;
}
#concept_blc .txt .sub {
  margin-top: 4rem;
  padding-right: 1rem;
  line-height: 1.4;
}
#concept_blc .txt .sub span {
  font-size: 70%;
}

@media only screen and (max-width: 1080px) {	
  #concept .blockwrap{
    padding: 0;
    padding-right: 2rem;
  }
  #concept_blc {
    padding-left: 7rem;
    overflow: hidden;
  }
  #concept_blc h1 {
    font-size: 2.8rem;
  }
  #concept_blc .txt {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  #concept .blockwrap{
    padding-right: 0;
  }
  #concept h2 {
    margin-bottom: 6rem;
    font-size: 1.3rem;
  }
  #concept_blc {
    flex-direction: column;
    gap: 4rem;
  }
  #concept_blc h1 {
    width: 100%;
    padding-right: 0;
    font-size: 2.8rem;
    white-space: nowrap;
  }
  #concept_blc .txt {
    width: 100%;
    font-size: 1.5rem;
  }
}


/*//================
// Products
//================*/
.item {
  display: flex;
  align-items: flex-start;
  padding: 20rem var(--side);
}
.item_img {
  overflow: hidden;
}
.item_txt {
  position: fixed;
  top: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  text-align: center;
  color: var(--bk);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
body.bgbk .item_txt {
  color: var(--wh);
}
.active .item_txt {
  opacity: 1;
  pointer-events: auto;
}
.item_txt .in {
  max-width: 38rem;
  padding: 0 2rem;
}
.item_txt h3,
.item_txt .model,
.item_txt .links h4 {
  font-family: var(--ff_jost);
  font-weight: 500;
  line-height: 1;
}
.item_txt h3 {
  margin-bottom: 2rem;
  font-size: 2.4rem;
}
.item_txt h3 .subname {
  font-size: 70%;
}
.item_txt .model {
  margin-bottom: 3rem;
  font-size: 1.3rem;
}
.item_txt .txt {
  margin-bottom: 6rem;
  font-weight: 500;
  text-align: left;
}
.item_txt .txt .sub {
  margin-top: 2rem;
  font-family: var(--ff_jost);
  font-weight: 400;
}
.item_txt .txt a {
  text-decoration: underline;
}
.item_txt .links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 2rem;
}
.item_txt .links h4 {
  width: 100%;
  margin-bottom: 2rem;
  font-size: 1rem;
  text-align: center;
}
.item_txt .links h4 span {
  display: inline-block;
  padding: 0 1rem;
  border-left: 1px solid #888;
  border-right: 1px solid #888;
}

#item1 .item_img {
  width: 60%;
}
#item1 .item_txt {
  width: 40%;
  right: 0;
}
#item2 .item_img {
  width: 50%;
  margin-left: auto;
}
#item2 .item_txt {
  width: 50%;
  left: 0;
}
#item3 .item_img {
  width: 55%;
  margin-left: 5%;
}
#item3 .item_txt {
  width: 40%;
  right: 0;
}
#item4 .item_img {
  width: 60%;
  margin-left: auto;
  margin-right: -2%;
}
#item4 .item_txt {
  width: 42%;
  left: 0;
}

@media only screen and (max-width: 767px) {
  .item {
    flex-direction: column;
    gap: 4rem;
    padding: 8rem 1rem;
  }
  .item_txt {
    position: relative;
    top: auto;
    height: auto;
    display: block;
    text-align: center;
    padding: 0 1rem;
  }
  .active .item_txt {
    opacity: 0;
    pointer-events: none;
  }
  .sp_active .item_txt {
    opacity: 1;
    pointer-events: auto;
  }
  .item_txt .in {
    margin: 0 auto;
    padding: 0;
  }
  .item_txt h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
  }
  .item_txt .model {
    margin-bottom: 2rem;
    font-size: 1.2rem;
  }
  .item_txt .txt {
    margin-bottom: 3rem;
  }
  .item_txt .txt .sub {
    margin-top: 1rem;
  }
  #item1 {
    width: 90%;
    padding-top: 0;
  }
  #item1 .item_img {
    width: 100%;
  }
  #item1 .item_txt {
    width: 100%;
    right: auto;
  }
  #item2 {
    width: 90%;
    margin-left: auto;
  }
  #item2 .item_img {
    width: 100%;
    margin: 0;
  }
  #item2 .item_txt {
    width: 100%;
  }
  #item3 {
    width: 90%;
    margin: 0 auto;
  }
  #item3 .item_img {
    width: 100%;
    margin: 0;
  }
  #item3 .item_txt {
    width: 100%;
  }
  #item4 {
    width: 90%;
  }
  #item4 .item_img {
    width: 100%;
    margin: 0;
  }
  #item4 .item_txt {
    width: 100%;
  }
}


/*//================
// Stockists
//================*/
#stockists {
  padding: var(--sec) 0;
  color: var(--bk);
  background: var(--wh);
}
#stockists a {
  color: var(--bk);
}
#stockists h2 {
  margin-bottom: 6rem;
  font-family: var(--ff_jost);
  font-size: 1.5rem;
  font-weight: 500;
}
#stockists_list ul {
  width: 100%;
  margin-bottom: 6rem;
  display: flex;
  flex-wrap: wrap;
  row-gap: 4rem;
  font-size: 1.4rem;
  font-weight: 500;
}
#stockists_list ul li {
  width: 33.33%;
  line-height: 1.4;
}
#stockists_list a {
  display: inline-flex;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {	
  #stockists h2 {
    margin-bottom: 4rem;
    font-size: 1.3rem;
  }
  #stockists_list ul {
    margin-bottom: 4rem;
    row-gap: 3rem;
    font-size: 1.3rem;
  }
  #stockists_list ul li {
    width: 50%;
    padding-right: 1rem;
  }
}