body {
  max-width: 16rem;
  margin: auto;
}

/*=========================
ローディング
=========================*/
.loadingAnim {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}

.loadingAnim:before,
.loadingAnim:after {
  line-height: 1;
  position: fixed;
  z-index: 99;
  right: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin-right: auto;
  margin-left: auto;
  content: " ";
  transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  /*    transition: all .3s linear 0s;*/
  transition-delay: 0.3s;
  background-color: #fff;
}

.loadingAnim:before {
  left: 0%;
}

.loadingAnim:after {
  right: 0%;
}

.loaded .loadingAnim:before {
  width: 100%;
  transform: translateX(-100%);
}

.loaded .loadingAnim:after {
  width: 100%;
  transform: translateX(100%);
}

.loadingAnim_line {
  line-height: 1;
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: inline-block;
  overflow: hidden;
  width: 50px;
  height: 1px;
  margin: auto;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  transition-delay: 0.6s;
  text-align: center;
}

.loadingAnim_line:after {
  position: absolute;
  z-index: 100;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 0;
  height: 100%;
  margin: auto auto auto 0;
  content: " ";
  animation: loadingAnim 2s ease-in-out 0.1s infinite normal backwards;
  background-color: #008090;
  will-change: transform, width;
}

.loadingAnim_line:before {
  font-size: 1rem;
  font-weight: 100;
  font-style: normal;
  line-height: 1;
  display: block;
  content: "";
  animation: loadingAnim_text 2s ease 3s infinite alternate both;
  letter-spacing: 0.1em;
  color: #008090;
  will-change: opacity;
}

.loaded .loadingAnim_line {
  overflow: hidden;
  height: 0;
}

.loaded .loadingAnim_line:after,
.loaded .loadingAnim_line:before {
  -webkit-animation: none;
  animation: none;
}

.loaded .loadingAnim_line:before {
  content: "";
}

@-webkit-keyframes loadingAnim {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
    -webkit-transform: translate(100%);
    transform: translate(100%);
  }
}

@keyframes loadingAnim {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
    -webkit-transform: translate(100%);
    transform: translate(100%);
  }
}

@-webkit-keyframes loadingAnim_text {
  0% {
    opacity: 1;
    color: #008090;
  }

  50% {
    color: #008090;
  }

  100% {
    opacity: 0.5;
    color: #008090;
  }
}

@keyframes loadingAnim_text {
  0% {
    opacity: 1;
    color: #008090;
  }

  50% {
    color: #008090;
  }

  100% {
    opacity: 0.5;
    color: #008090;
  }
}

/*============================
ヘッダー
============================*/
header {
  transition: transform 0.5s 0.3s;
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  box-sizing: border-box;
  height: 100%;
  max-height: 8rem;
  min-height: 5rem;
}

@media screen and (max-width: 599px) {
  header {
    transition: transform 0.5s 0.3s;
    position: fixed;
    z-index: 10;
    min-height: auto;
		height: auto;
  }
}

/* ヘッダーが上に消える */
/* header.hide {
	transform: translateY(-1.50rem);
} */

/* スクロールで表示された状態 */
/* header.scr {
	background-color: rgba(255, 255, 255, 0.85);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
} */

header .logo {
  position: absolute;
  width: 2.26rem;
  top: 0.6rem;
  left: 1rem;
}

@media screen and (max-width: 599px) {
  header .logo {
    position: absolute;
    width: 1rem;
    top: 0.25rem;
    left: 50%;
    transform: translateX(-50%);
  }
  header .logo img {
    display: block;
    mix-blend-mode: difference;
  }
}

/* グローバルメニュー */
header .glo_navi {
  position: absolute;
  left: 1rem;
  bottom: 2rem;
}

@media screen and (max-width: 599px) {
  header .glo_navi {
    position: absolute;
    left: 0;
    top: 0.45rem;
    bottom: auto;
    width: 100%;
    overflow: hidden;
    display: none;
    z-index: 10;
  }
  header .glo_navi::before {
    content: "";
    width: 1rem;
    height: 0.38rem;
    background-image: url(../img/logo_white.svg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: -0.2rem;
    left: 50%;
    transform: translateX(-50%);
  }
  header .glo_navi .list {
    width: 100%;
    background-color: #000;
    z-index: 3;
    padding-bottom: 0.3rem;
  }
}

header .glo_navi .list .link {
  padding-top: 0.3rem;
}

@media screen and (max-width: 599px) {
  header .glo_navi .list .link {
    padding-left: 0.3rem;
  }
}

header .glo_navi .list .link a {
  font-size: 0.18rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #111;
  text-decoration: none;
  position: relative;
}

@media screen and (max-width: 599px) {
  header .glo_navi .list .link a {
    font-size: 0.16rem;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #fff;
    text-decoration: none;
    position: relative;
  }
}

header .glo_navi .list .link a::before {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #333;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}

header .glo_navi .list .link a.soon::before {
  content: none;
}

@media screen and (max-width: 599px) {
  header .glo_navi .list .link a::before {
    content: none;
  }
}

header .glo_navi .list .link a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

header .glo_navi .list .link a.soon {
  opacity: 0.5;
  text-decoration: line-through;
}

@media screen and (max-width: 599px) {
  header .glo_navi .list .link a.soon::after {
    content: "coming soon...";
    font-size: 0.1rem;
    letter-spacing: 0.05em;
    display: inline-block;
    padding-left: 0.1rem;
  }
}

/* SNSリンク */
header .sns_link {
  position: absolute;
  top: 0.35rem;
  right: 0.4rem;
}

header .sns_link .list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

header .sns_link .list .link {
  padding-left: 0.3rem;
}

header .sns_link .list .link a {
  display: block;
  width: 0.26rem;
	opacity: 0.4;
}

@media screen and (max-width: 599px) {
  header .sns_link {
    position: relative;
    top: auto;
    right: auto;
    border-top: 1px solid #333;
    background-color: #000;
    padding: 0.3rem 0;
  }

  header .sns_link .sns_list {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 0 0.3rem;
  }
  header .sns_link .sns_list .sns_icon {
    width: 0.24rem;
  }
}

/*============================
コピーライト
============================*/
.copyright {
  position: fixed;
  left: 0.2rem;
  bottom: 0.6rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.12rem;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  z-index: 10;
}

@media screen and (max-width: 599px) {
  .copyright {
    position: relative;
    left: auto;
    bottom: auto;
    font-size: 0.1rem;
    letter-spacing: 0.1em;
    writing-mode: inherit;
    text-align: center;
    padding-bottom: 0.2rem;
  }
}

/*============================
MV
============================*/
.mv {
  height: 100%;
  max-height: 8rem;
  min-height: 7rem;
  width: calc(100% - 2rem);
  margin-left: auto;
  margin-top: 1rem;
  background-image: url(../img/mv_pc.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 599px) {
  .mv {
    height: 3.5rem;
    max-height: auto;
    min-height: auto;
    width: 100%;
    margin-left: auto;
    margin-top: 0.5rem;
    background-image: url(../img/mv_sp.jpg);
  }
}

/* 英文デコ */
.mv::after {
  content: "";
  width: 3.62rem;
  height: 1.86rem;
  background-image: url(../img/mv_deco.svg);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 1.6rem;
  bottom: 0.4rem;
}

@media screen and (max-width: 599px) {
  .mv::after {
    content: "";
    width: 1.62rem;
    height: 0.86rem;
    background-image: url(../img/mv_deco.svg);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: -0.2rem;
    bottom: 0.2rem;
  }
}

.mv .in {
  height: 100%;
  max-height: 8rem;
  min-height: 7rem;
}

@media screen and (max-width: 599px) {
  .mv .in {
    height: 100%;
    max-height: 100%;
    min-height: 100%;
  }
}

/* OPENING */
.mv .catch {
  width: 6rem;
  position: absolute;
  left: 0.3rem;
  bottom: 0.3rem;
  z-index: 1;
}

@media screen and (max-width: 599px) {
  .mv .catch {
    width: 3rem;
    position: absolute;
    left: 0.2rem;
    bottom: 0.2rem;
  }
}

/*============================
BRAND CONCEPT
============================*/
#concept {
  padding: 1.6rem 0 1.00rem;
}

@media screen and (max-width: 599px) {
  #concept {
    padding: 0.6rem 0 0.30rem;
  }
}

#concept .in {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#concept .in .ph_wrap {
  width: 50%;
  min-height: 4.92rem;
  padding-top: 0.4rem;
  position: relative;
}

@media screen and (max-width: 599px) {
  #concept .in .ph_wrap {
    width: calc(100% + 0.2rem);
    min-height: 61.33vw;
    padding-top: 0;
    position: relative;
    left: -0.2rem;
  }
}

#concept .in .ph_wrap .main {
  width: 5.5rem;
  height: 4.2rem;
  position: relative;
  left: -0.4rem;
  z-index: 0;
  overflow: hidden;
}

@media screen and (max-width: 599px) {
  #concept .in .ph_wrap .main {
    width: 64.8vw;
    height: 46.66vw;
    position: relative;
    left: 0;
  }
}

#concept .in .ph_wrap .sub {
  width: 3rem;
  height: 2.4rem;
  position: absolute;
  right: -0.2rem;
  bottom: 0;
  z-index: 1;
}

@media screen and (max-width: 599px) {
  #concept .in .ph_wrap .sub {
    width: 46.13vw;
    height: 33.33vw;
    position: absolute;
  }
}

#concept .in .ph_wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#concept .in .textbox {
  width: 50%;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

@media screen and (max-width: 599px) {
  #concept .in .textbox {
    width: 100%;
    padding: 0.4rem 0 0.6rem;
    text-align: center;
  }
}

#concept .in .textbox .sec_title {
  width: 4rem;
  padding-bottom: 0.4rem;
}

@media screen and (max-width: 599px) {
  #concept .in .textbox .sec_title {
    width: 2.27rem;
    margin: auto;
    padding-bottom: 0.3rem;
  }
}

#concept .in .en_text {
  font-size: 0.14rem;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.55;
  padding-left: 0.8rem;
  padding-bottom: 0.4rem;
}

@media screen and (max-width: 599px) {
  #concept .in .en_text {
    font-size: 0.13rem;
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.05em;
    line-height: 2;
    padding-left: 0;
    padding-bottom: 0.4rem;
  }
  #concept .in .en_text span {
    font-size: 0.16rem;
  }
}

#concept .in .textbox .concept_title {
  font-size: 0.14rem;
  letter-spacing: 0.1em;
  padding-left: 0.7rem;
  padding-bottom: 0.2rem;
}

@media screen and (max-width: 599px) {
  #concept .in .textbox .concept_title {
    font-size: 0.14rem;
    padding-left: 0;
    padding-bottom: 0.2rem;
  }
}

#concept .in .textbox .text {
  font-size: 0.12rem;
  line-height: 2.35;
  letter-spacing: 0.1em;
  padding-left: 0.8rem;
}

@media screen and (max-width: 599px) {
  #concept .in .textbox .text {
    font-size: 0.12rem;
    line-height: 2;
    letter-spacing: 0.1em;
    padding-left: 0;
  }
}

/*============================
About
============================*/
#about {
	padding-top: 0;
	position: relative;
	margin-bottom: 2.20rem;
	z-index: 1;
}

@media screen and (max-width: 599px) {
	#about {
		margin-bottom: 1.20rem;
	}
}

#about::before {
	content: "";
	width: calc(100% + 0.20rem);
	height: calc(100% - 0.30rem);
	background-color: #F2F2F2;
	position: absolute;
	left: 1.20rem;
	bottom: 0;
	z-index: 0;
}

@media screen and (max-width: 599px) {
	#about::before {
		width: calc(100% + 0.20rem);
		left: 0.20rem;
		bottom: 0;
		z-index: 0;
	}
}

#about .about_title {
	width: 2.00rem;
	margin: auto;
	position: relative;
	/* padding-bottom: 0.40rem; */
}

#about .about_title::before {
	content: "About";
	font-size: 0.22rem;
	font-family: "Poppins", sans-serif;
	letter-spacing: 0.05em;
	position: absolute;
	left: -0.10rem;
	top: -0.20rem;
}

/* #about .about_title::after {
	content: "";
	width: 0.02rem;
	height: 0.30rem;
	background-image: url(../img/about_border.svg);
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	bottom: 0;
	left: 50%;
} */

#about .text {
	text-align: center;
	font-size: 0.16rem;
	line-height: 2.12;
	position: relative;
	padding-top: 0.20rem;
	padding-bottom: 0.50rem;
	font-family: "Zen Kaku Gothic New", sans-serif;
}

@media screen and (max-width: 599px) {
	#about .text {
		text-align: left;
		font-size: 0.13rem;
		line-height: 2;
		padding-left: 0.20rem;
		padding-bottom: 0.40rem;
		letter-spacing: 0;
	}
}

/*============================
SLIDER
============================*/
.slider_wrap {
  position: relative;
}

.slider_wrap .img {
  display: block;
}

.slider_wrap .slider01::before {
  content: "";
  width: 4.76rem;
  height: 0.78rem;
  background-image: url(../img/collection_title.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 50%;
  top: -0.6rem;
  transform: translateX(-50%);
  z-index: 2;
}

@media screen and (max-width: 599px) {
  .slider_wrap .slider01::before {
    width: 2.42rem;
    height: 0.5rem;
    background-position: center top;
    top: -0.3rem;
  }
}

/*============================
INFORMATION
============================*/
#information {
  background-color: #f2f2f2;
  padding: 0.8rem 0;
}

@media screen and (max-width: 599px) {
  #information {
    padding: 0.4rem 0;
  }
}

#information .sec_title {
  font-size: 0.36rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 599px) {
  #information .sec_title {
    font-size: 0.22rem;
    text-align: center;
    letter-spacing: 0;
  }
}

#information .info_list_wrap .info_box {
  padding-top: 0.3rem;
  display: flex;
  flex-wrap: wrap;
}

#information .info_list_wrap .info_box .date {
  width: 1rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.15rem;
  line-height: 1.65;
}

@media screen and (max-width: 599px) {
  #information .info_list_wrap .info_box .date {
    width: 100%;
    font-size: 0.13rem;
    line-height: 1;
    padding-bottom: 0.1rem;
  }
}

#information .info_list_wrap .info_box .title {
  font-size: 0.15rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.65;
  letter-spacing: 0.05em;
  width: calc(100% - 1rem);
}

@media screen and (max-width: 599px) {
  #information .info_list_wrap .info_box .title {
    font-size: 0.14rem;
    line-height: 1.65;
    letter-spacing: 0;
    width: 100%;
  }
}

#information .info_list_wrap .info_box .title a {
  color: #111;
}

/*============================
SHOPLIST
============================*/
#shoplist {
  padding-top: 1rem;
}

@media screen and (max-width: 599px) {
  #shoplist {
    padding-top: 0.6rem;
  }
}

#shoplist .sec_title {
  width: 3.15rem;
  margin: auto;
  padding-bottom: 0.4rem;
}

@media screen and (max-width: 599px) {
  #shoplist .sec_title {
    width: 1.65rem;
  }
}

#shoplist .shopname {
  font-size: 0.24rem;
  font-weight: 700;
  padding-bottom: 0.15rem;
  text-align: center;
  line-height: 1.65;
}

@media screen and (max-width: 599px) {
  #shoplist .shopname {
    font-size: 0.18rem;
  }
}

#shoplist .text {
  font-size: 0.15rem;
  letter-spacing: 0.1em;
  line-height: 2;
  padding-bottom: 0.3rem;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

@media screen and (max-width: 599px) {
  #shoplist .text {
    font-size: 0.14rem;
    letter-spacing: 0;
    line-height: 1.75;
  }
}

#shoplist .text a {
  color: #111;
  text-decoration: none;
}

@media screen and (max-width: 599px) {
  #shoplist .text a {
    font-weight: 500;
    text-decoration: underline;
  }
}

#shoplist .gmap {
  width: calc(100% - 0.6rem);
  height: 5rem;
  margin-left: auto;
}

@media screen and (max-width: 599px) {
  #shoplist .gmap {
    width: 100%;
    height: 2rem;
  }
}

#shoplist .gmap iframe {
  width: 100%;
  height: 100%;
}

/*============================
FOOTER
============================*/
footer {
  padding: 0.8rem;
}

@media screen and (max-width: 599px) {
  footer {
    padding: 0.3rem 0 0.1rem;
  }
}

footer .logo_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 599px) {
  footer .logo_wrap {
    display: block;
    text-align: center;
  }
}

footer .logo_wrap .logo {
  width: 1.5rem;
  padding-left: 0.5rem;
}

@media screen and (max-width: 599px) {
  footer .logo_wrap .logo {
    width: 1rem;
    margin: auto;
    padding: 0 0.2rem 0.2rem;
  }
}

footer .logo_wrap .logo a:hover {
  opacity: 0.5;
}
