html {
  font-size: 62.5%;
}
@media screen and (max-width: 768px) {
  html {
    width: 100%;
    overflow-x: hidden;
    font-size: 31.25%;
  }
}
body {
  color: #000;
  font-size: 1.6rem;
  font-family: century-gothic, 游明朝, "Yu Mincho", YuMincho,
    "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo,
    serif;
  letter-spacing: 0.08em;
  overflow-x: hidden;
  margin: 0;
}
* {
  box-sizing: border-box;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  width: 100%;
  height: auto;
}
.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}

/* Shutter */
.shutter {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background: #000;
  z-index: 99;
  pointer-events: none;
  transition: transform 700ms ease-in-out;
  transform: translateX(-110vw);
}
.shutter.moved {
  transform: translateX(0);
}
.shutter.moved.remove {
  transform: translateX(110vw);
}
.shutter.turnoff {
  opacity: 0;
}
.shutter .shutter__logo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 550px;
  height: 20px;
  opacity: 0;
  transition: all 700ms ease-in-out;
}
@media screen and (max-width: 768px) {
  .shutter .shutter__logo {
    width: 80vw;
    height: 2.9vw;
  }
}
.shutter.moved .shutter__logo {
  opacity: 1;
}
.shutter.moved.remove .shutter__logo {
  opacity: 0;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 110px;
  padding: 25px 0 0;
  background: rgba(0, 0, 0, 1);
  transition: all 500ms ease-in-out;
}
@media screen and (max-width: 768px) {
  .header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: fixed;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 9.37vw;
    padding: 0;
    background: rgba(0, 0, 0, 1);
    transition: all 500ms ease-in-out;
  }
}
.header__logo {
  width: 550px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 56vw;
    margin: 0 auto;
  }
}
.header__nav {
  position: absolute;
  bottom: 1px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
}
.header__nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  padding: 2em;
  font-size: 1.2rem;
  color: #fff;
}
.header__nav__list__item {
  position: relative;
  margin: 0 2em;
}
.header__nav__list__item:first-child {
  position: relative;
  margin-right: auto;
}
.header__nav__list__item:first-child::after {
  position: absolute;
  left: 102%;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  width: 5rem;
  height: 1px;
  border-top: 1px solid #fff;
}
.header__nav__list__item:last-child {
  margin-left: auto;
}
.header__nav__list__item__social {
  display: flex;
  flex-wrap: wrap;
  justify-content: right;
}
.header__nav__list__item__social__item {
  width: 1.4rem;
  margin-left: 1.6em;
}
.header__nav__list__item a::after {
  position: absolute;
  border-bottom: solid 4px #fff;
  bottom: -25px;
  content: "";
  display: block;
  transition: all 500ms ease-in-out;
  width: 0;
}
.header__nav__list__item.active a::after {
  width: 100%;
}
.header__nav__list__item.nav-top.active a::after {
  width: 0;
}
.header__nav__list__item a:hover::after {
  width: 100%;
}
.header__nav__list__item__social__item a::after {
  bottom: -23px;
}
.header__copyright {
  position: absolute;
  top: 100%;
  right: 2px;
  z-index: 2;
  height: 300px;
  color: #fff;
  font-size: 1.1rem;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN",
    "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
}
@media screen and (max-width: 768px) {
  .header__copyright {
    display: none;
  }
}
.header__copyright > span {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* Footer */
.footer__breadcrumbList {
  display: flex;
  flex-wrap: wrap;
  width: 80vw;
  margin: 0 auto;
  padding: 100px 0;
  font-size: 1.2rem;
  border-top: 1px solid #ededed;
}
@media screen and (max-width: 768px) {
  .footer__breadcrumbList {
    display: none;
  }
}
.footer__breadcrumbList__item + .footer__breadcrumbList__item::before {
  content: ">";
  margin: 0 1em;
}
.footer__breadcrumbList__item > a {
  position: relative;
}
.footer__breadcrumbList__item > a::after {
  position: absolute;
  border-bottom: solid 4px #000;
  bottom: -5px;
  left: 0;
  content: "";
  display: block;
  transition: all 500ms ease-in-out;
  width: 0;
}
.footer__breadcrumbList__item > a:hover::after {
  width: 100%;
}

/* SP Menu */
.spCopyright {
  display: none;
}
.spMenu {
  display: none;
}
.spNav {
  display: none;
}
@media screen and (max-width: 768px) {
  .spCopyright {
    display: block;
    padding: 0.4em;
    border-bottom: 1px solid #fff;
    background: #000;
    text-align: center;
    color: #fff;
    font-size: 1.6rem;
    font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN",
      "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
  }
  .lookbookTop .spCopyright {
    position: absolute;
    width: 100%;
    bottom: 12vw;
  }
  .spMenu {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 12vw;
    background-color: #000;
  }
  /*開閉ボタン*/
  .spMenu__btn {
    display: block;
    width: 30px;
    height: 17px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 100;
  }
  .spMenu__btn div {
    position: relative;
  }
  .spMenu__btn span {
    display: block;
    height: 1px;
    background: #fff;
    position: absolute;
    width: 100%;
    left: 0;
    -webkit-transition: 1000ms ease-in-out;
    -moz-transition: 1000ms ease-in-out;
    transition: 1000ms ease-in-out;
  }
  .spMenu__btn span:nth-child(1) {
    top: 0px;
  }
  .spMenu__btn span:nth-child(2) {
    top: 8px;
  }
  .spMenu__btn span:nth-child(3) {
    top: 16px;
  }

  /*開閉ボタンopen時*/
  .spMenu__btn.open span:nth-child(1) {
    top: 8px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .spMenu__btn.open span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .spMenu__btn.open span:nth-child(3) {
    top: 8px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }

  .spMenu__home {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 3vw;
    margin: auto;
    width: 5vw;
    height: 5vw;
  }

  /* SP Nav */
  .spNav {
    display: block;
    position: fixed;
    top: 100vh;
    top: calc(var(--vh, 1vh) * 100);
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    background: #000;
    color: #fff;
    transition: top 1000ms ease-in-out;
  }
  .spNav.open {
    top: 0;
  }
  .spNav.hide {
    opacity: 0;
  }
  .spNav__logo {
    position: absolute;
    top: 8vw;
    right: 0;
    left: 0;
    margin: auto;
    width: 56vw;
    opacity: 0;
    transition: opacity 1000ms ease-in-out;
  }
  .spNav.open .spNav__logo {
    opacity: 1;
  }
  .spNav__list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    text-align: center;
    font-size: 3.4rem;
    opacity: 0;
    transition: opacity 1000ms ease-in-out;
  }
  .spNav.open .spNav__list {
    opacity: 1;
  }
  .spNav__list__item {
    margin: 1em 0;
  }
  .spNav__list__item.active > a {
    padding: 0 0 0.4rem;
    border-bottom: 3px solid #fff;
  }
  .spNav__list__item__social {
    display: flex;
    justify-content: center;
  }
  .spNav__list__item__social__item {
    width: 5vw;
    margin: 0 1.2em;
  }
}

/* Common */
.contentWrap {
  position: relative;
  padding-top: 110px;
  border-right: 15px solid #000;
  border-left: 15px solid #000;
  border-bottom: 15px solid #000;
}
@media screen and (max-width: 768px) {
  .contentWrap {
    padding-top: 9.37vw;
    padding-bottom: 12vw;
    border: none;
  }
  [data-lookbook="top"] .contentWrap {
    padding-bottom: auto;
  }
}

/* Top */
.top {
  position: relative;
  border: 15px solid #000;
}

.top__mv .top__logo__box{
	width: 100%;
}
@media screen and (max-width: 768px) {
  .top {
    width: 100%;
    border: none;
  }
  .top__mv {
    position: relative;
  }
  .top__mv::after {
    content: "";
/*     background-image: url("../img/common/logo_white_sp02.png"); */
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1;
    margin: auto;
    width: 306px;
    height: 41px;
  }
  .top__mv .slide_box {
    content: "";
    position: absolute;
    top: -55px;
    bottom: 0;
    left: calc((50% - 210px) / 1) !important;
    margin: auto;
    width: 430px;
    height: 62px;
	}
}

/*
.top__mv #slide_wrap {
	background-color: #000;
  width: 100%;
  height: calc(100vh - 30px);
  height: calc(var(--vh, 1vh) * 100 - 30px);
  position: relative;
  overflow: hidden;
}
*/

.top__mv #slide_wrap::after {
    content: "";
/*     background-image: url("../img/common/logo_white02.png"); */
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc((50% - 240px) / 1);
    margin: auto;
    width: 473px;
    height: 62px;
}

/*
.top__mv .slide_box{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc((50% - 240px) / 1);
    margin: auto;
    width: 473px;
    height: 62px;
}
*/
.top__mv .slide_box{
	content: "";
    position: absolute;
	top: -15px;
    bottom: 0;
    left: calc((50% - 210px) / 1);
    margin: auto;
    width: 430px;
    height: 62px;
}

/*
.top__mv .slide_box{
    content: "";
    position: absolute;
    top: 47%;
    bottom: 0;
    left: 360px;
    margin: auto;
    text-align: center;
}
*/

.top__mv #slide_wrap {
  width: 100%;
  height: calc(100vh - 30px);
  height: calc(var(--vh, 1vh) * 100 - 30px);
  position: relative;
  overflow: hidden;
  background-color: #000;
  background-image: url("../img/top/top_mv001.jpg");
  background-position:center center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .top__mv #slide_wrap {
    height: calc(100vh - 4vw);
    height: calc(var(--vh, 1vh) * 100 - 4vw);
  }
}
.top__mv #slide_wrap .slide_item {
  width: 100%;
  height: calc(100vh - 30px);
  height: calc(var(--vh, 1vh) * 100 - 30px);
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1);
  transition: opacity 2s linear, transform 7.5s linear;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .top__mv #slide_wrap .slide_item {
    height: calc(100vh - 4vw);
    height: calc(var(--vh, 1vh) * 100 - 4vw);
  }
  .top__mv #slide_wrap::after{
	  background-image: none;
  }
}

.top__mv #slide_wrap .slide_item:nth-child(1) {
  background-image: url("../img/top/top_mv1.jpg");
}
.top__mv #slide_wrap .slide_item:nth-child(2) {
  background-image: url("../img/top/top_mv2.jpg");
}
.top__mv #slide_wrap .slide_item:nth-child(3) {
  background-image: url("../img/top/top_mv3.jpg");
}
.top__mv #slide_wrap .slide_item:nth-child(4) {
  background-image: url("../img/top/top_mv4.jpg");
}
@media screen and (max-width: 768px) {
  .top__mv #slide_wrap .slide_item:nth-child(1) {
    background-image: url("../img/top/top_mv1_sp.jpg");
    background-position: top right;
  }
  .top__mv #slide_wrap .slide_item:nth-child(2) {
    background-image: url("../img/top/top_mv2_sp.jpg");
    background-position: center center;
  }
  .top__mv #slide_wrap .slide_item:nth-child(3) {
    background-image: url("../img/top/top_mv3_sp.jpg");
    background-position: top left;
  }
  .top__mv #slide_wrap .slide_item:nth-child(4) {
    background-image: url("../img/top/top_mv4_sp.jpg");
    background-position: top left;
  }
}
.top__mv #slide_wrap .slide_item:nth-child(1)::after {
  content: "";
  background-image: url("../img/common/logo_white.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 473px;
  height: 62px;
}
.top__mv #slide_wrap .slide_item:nth-child(2)::after {
  content: "";
  background-image: url("../img/common/logo_white.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 9%;
  margin: auto;
  width: 473px;
  height: 62px;
}
.top__mv #slide_wrap .slide_item:nth-child(3)::after {
  content: "";
  background-image: url("../img/common/logo_black.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 9%;
  margin: auto;
  width: 460px;
  height: 57px;
}
.top__mv #slide_wrap .slide_item:nth-child(4)::after {
  content: "";
  background-image: url("../img/common/logo_white.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc((50% - 473px) / 2);
  margin: auto;
  width: 473px;
  height: 62px;
}
@media screen and (max-width: 768px) {
  .top__mv #slide_wrap .slide_item:nth-child(1)::after,
  .top__mv #slide_wrap .slide_item:nth-child(2)::after,
  .top__mv #slide_wrap .slide_item:nth-child(3)::after,
  .top__mv #slide_wrap .slide_item:nth-child(4)::after {
    content: "";
    background-image: none;
  }
}
.top__mv #slide_wrap .slide_item:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
}
.top__mv #slide_wrap .slide_item.show_ {
  opacity: 1;
}
.top__mv #slide_wrap .slide_item.zoom_ {
  transform: scale(1.1);
}
.top__nav {
  position: absolute;
  bottom: 0;
  z-index: 2;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
}
@media screen and (max-width: 768px) {
  .top__nav {
    display: none;
  }
}
.top__copyright {
  position: absolute;
  top: 0;
  right: -13px;
  z-index: 2;
  color: #fff;
  font-size: 1.1rem;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN",
    "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
}
@media screen and (max-width: 768px) {
  .top__copyright {
    display: none;
  }
}
.top__copyright > span {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
@media screen and (max-width: 768px) {
  .top__copyright > span {
    transform: rotate(180deg) scale(0.5) translate(-4.5vw, -3vw);
  }
}


/* About Nav */
.about__navList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 100px 0;
  width: 80vw;
  margin: 0 auto;
}
.about__footer .about__navList {
  padding: 150px 0;
}
@media screen and (max-width: 768px) {
  .about__navList {
    padding: 0 0 7rem;
    width: 73vw;
  }
  .about__footer .about__navList {
    padding: 7rem 0;
  }
}
.about__navList__item {
  position: relative;
  font-size: 1.4rem;
  background: #f9f9f9;
  overflow: hidden;
  transition: all 500ms ease-in-out;
}
@media screen and (max-width: 768px) {
  .about__navList__item {
    width: 100%;
    font-size: 2.6rem;
  }
}
.about__navList__item:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-color: #000;
  transition: all 500ms ease-in-out;
}
.about__navList__item:hover {
  color: #fff;
}
.about__navList__item:hover:before {
  left: 0;
}
.about__navList__item.active {
  color: #fff;
  background: #000;
}
.about__navList__item > a {
  position: relative;
  z-index: 2;
  display: block;
  padding: 0.6rem 5rem;
}
@media screen and (max-width: 768px) {
  .about__navList__item > a {
    padding: 1em 10px;
  }
}
.about__navList__item + .about__navList__item {
  margin: 0 0 0 1rem;
}
@media screen and (max-width: 768px) {
  .about__navList__item + .about__navList__item {
    margin: 1rem 0 0;
  }
}

/* Philosophy */
.philosophy {
  text-align: center;
}
.philosophy__title {
  padding: 150px 0 0;
  font-size: 3rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .philosophy__title {
    padding: 7rem 0;
    font-size: 6rem;
  }
}
/*
.philosophy__story01 {
  position: relative;
  width: calc(100% - 15px);
  padding: 15px 0 320px;
  background: #fff;
}
*/

.philosophy__story01__imageWrap{
 display: block;
/*     height: 800px; */
}

.philosophy__howtowear__03__text {
    width: 47%;
    /* margin: 13vw 0 0; */
/*     padding: 0 2vw 0 1.5vw; */
    text-align: left;
    line-height: 2.3;
    font-size: 1.3rem;
}
@media screen and (max-width: 768px) {
  .philosophy__story01 {
    width: 100% !important;
/*     padding: 0 0 7rem; */
/*     padding: 110px 0 7rem; */
  }
}
.philosophy__story01::after {
/*   content: url("../img/philo/philo_arrow1.png"); */
  position: absolute;
  left: 10vw;
  bottom: -87px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .philosophy__story01::after {
/*     content: url("../img/philo/philo_arrow1_sp.png"); */
    position: absolute;
    left: 15vw;
    bottom: -43px;
    z-index: 2;
  }
 .philosophy__another__text {
  padding-top: 30px;
    display: block;
  }
}
.philosophy__story01__imageWrap {
/*   position: relative; */
/*
  width: 80vw;
  height: 40vw;
  overflow: hidden;
*/
/*
  width: 42vw;
  height: 110vh;
*/
/*   overflow: hidden; */
      width: 450px;
    display: block;
}
/*
.philosophy__story01__imageWrap__image {
  position: absolute;
  z-index: 1;
  top: -6vh;
  left: 0;
  width: 100%;
  height: auto;
}
*/

.philosophy__story01__imageWrap__image img{
	float: left;
	display: block;
	padding-right: 50px;
	width: 600px;
}

@media screen and (max-width: 1190px) {
/*
.philosophy__story01__imageWrap {
  position: relative;
  width: 42vw;
  height: 124vh;
  overflow: hidden;
	}
}
*/
}
@media screen and (max-width: 768px) {
  .philosophy__story01__imageWrap {
    width: 100vw;
    height: 90vw;
  }
/*
  .philosophy__story01__imageWrap__image {
    top: -8vh;
    left: -20vw;
    width: 160%;
    height: auto;
  }
*/
.philosophy__story01__imageWrap__image img {
    padding-right: 0px;
    width: 100%;
}
}
.philosophy__story01{
	width: 85%;
	margin: 0 auto;
}
.philosophy__story01__textWrap {
/*
  width: 80vw;
  margin: 0 auto;
  padding: 0 4rem;
  text-align: right;
*/
    width: 100%;
    margin: 0 auto;
/*     padding: 0 4rem; */
    text-align: left;
}
@media screen and (max-width: 768px) {
  .philosophy__story01__textWrap {
    width: 93vw;
    padding: 0;
  }
}

.philosophy__story01__textWrap__title {
  width: 87px;
/*   margin: 150px 0 135px auto; */
  padding: 0 1rem 0 0;
  box-sizing: content-box;
}

.philosophy__point1__text__catch {
	font-size: 3rem !important;
}
@media screen and (max-width: 768px) {
  .philosophy__story01__textWrap__title {
    width: 22.65vw;
    margin: -0.5rem 0 5rem auto;
  }
}
.philosophy__story01__textWrap__text {
  color: #000;
  font-size: 1.3rem;
  line-height: 3rem;
}

.philosophy__story01__textWrap__text01 {
  color: #000;
  font-size: 1.3rem;
  line-height: 3rem;
/*   padding-right: 100px; */
}
@media screen and (max-width: 768px) {
  .philosophy__story01__textWrap__text {
    font-size: 2.4rem;
    line-height: 2.42;
    margin-top: 0;
    
  }  
  
  .philosophy__story01__textWrap__text01 {

  padding-right: 0;
}
  .philosophy__story01__textWrap__text01 {
    font-size: 2.4rem;
    line-height: 2.42;
    margin-top: 0;
  }
  
  
}
/*
.philosophy__story02 {
  position: relative;
  width: calc(100% - 15px);
  padding: 15px 0 320px;
  background: #fff;
}
*/
@media screen and (max-width: 768px) {
  .philosophy__story02 {
    width: 100%;
    padding: 24.7vw 0 7rem;
  }
}
.philosophy__story02::after {
/*   content: url("../img/philo/philo_arrow2.png"); */
  position: absolute;
  right: 10vw;
  bottom: -87px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .philosophy__story02::after {
/*     content: url("../img/philo/philo_arrow2_sp.png"); */
    position: absolute;
    right: 15vw;
    bottom: -43px;
    z-index: 2;
  }
}
.philosophy__story02__imageWrap {
  position: relative;
  width: 80vw;
  height: 40vw;
  margin: 0 0 0 auto;
  overflow: hidden;
}
.philosophy__story02__imageWrap__image {
  position: absolute;
  z-index: 1;
  top: -10vh;
  left: 0;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .philosophy__story02__imageWrap {
    width: 100vw;
    height: 70vw;
    overflow: hidden;
  }
  .philosophy__story02__imageWrap__image {
    top: -9vh;
    left: 0;
    width: 160%;
    height: auto;
  }
}
.philosophy__story02__textWrap {
  width: 80vw;
  margin: 0 auto;
  padding: 0 4rem;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .philosophy__story02__textWrap {
    width: 90vw;
    padding: 0;
  }
}
.philosophy__story02__textWrap__title {
  width: 87px;
  margin: 150px auto 135px 0;
}
@media screen and (max-width: 768px) {
  .philosophy__story02__textWrap__title {
    width: 22.65vw;
    margin: -0.5rem auto 5rem 0;
  }
  
  .philosophy__howtowear__03__text__box{
	width: 100%;
    font-size: 12px;
    text-align: left;
    margin: 0 auto;
    line-height: 5rem
  }
  
  .philosophy__howtowear__03__text {
	  width: 100%;
  }
}
/*
.philosophy__story02__textWrap__text {
  color: #000;
  font-size: 1.3rem;
  line-height: 3.84;
}
*/
.howtowear__03__image__photo rellax{
	margin-top: -40px;
}

.philosophy__story02__textWrap__text {
    color: #000;
    font-size: 1.3rem;
    line-height: 3.84;
    text-align: left;
    width: 94%;
    margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .philosophy__story02__textWrap__text {
    font-size: 2.4rem;
    line-height: 2.42;
  }
}
.philosophy__story03 {
  position: relative;
  width: calc(100% - 15px);
  padding: 15px 0 320px;
  background: #000;
}
@media screen and (max-width: 768px) {
  .philosophy__story03 {
    width: 100%;
    padding: 0 0 7rem;
  }
}
.philosophy__story03::after {
  content: url("../img/philo/philo_arrow3.png");
  position: absolute;
  right: 0;
  left: 0;
  bottom: -82px;
  margin: auto;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .philosophy__story03::after {
    content: url("../img/philo/philo_arrow3_sp.png");
    position: absolute;
    left: 0;
    right: 0;
    bottom: -41px;
    margin: auto;
    z-index: 2;
  }
}
.philosophy__story03__imageWrap {
  position: relative;
  width: 80vw;
  height: 40vw;
  overflow: hidden;
}
.philosophy__story03__imageWrap__image {
  position: absolute;
  z-index: 1;
  top: -10vh;
  left: 0;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .philosophy__story03__imageWrap {
    width: 100vw;
    height: 70vw;
  }
  .philosophy__story03__imageWrap__image {
    top: -10vh;
    left: auto;
    right: 0;
    width: 150%;
    height: auto;
  }
}
.philosophy__story03__textWrap {
  width: 80vw;
  margin: 0 auto;
  padding: 0 4rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .philosophy__story03__textWrap {
    width: 90vw;
    padding: 0;
  }
}
.philosophy__story03__textWrap__title {
  width: 87px;
  margin: 150px auto 135px;
  box-sizing: content-box;
}
@media screen and (max-width: 768px) {
  .philosophy__story03__textWrap__title {
    width: 22.65vw;
    margin: -0.5rem auto 5rem;
  }
}
.philosophy__story03__textWrap__text {
  color: #fff;
  font-size: 1.3rem;
  line-height: 3.84;
}
@media screen and (max-width: 768px) {
  .philosophy__story03__textWrap__text {
    font-size: 2.4rem;
    line-height: 2.42;
  }
}


/* How to wear a Tuxedo? */
.howtowear {
  text-align: center;
}
.howtowear__title {
  padding:0;
  font-size: 3rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .howtowear__title {
    padding: 7rem 0;
    font-size: 6rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 768px) {
  .howtowear__spSection {
    padding: 0 0 8rem;
  }
  .howtowear__spSection__image {
    width: 100%;
    margin: 0 auto;
  }
  .howtowear__spSection__image__titleWrap {
    width: 70vw;
    margin: 4rem auto 0;
    padding: 0;
    text-align: left;
  }
  .howtowear__spSection__image__titleWrap__titleJp {
    margin: 0 0 0.6em;
    font-size: 1.4rem;
  }
  .howtowear__spSection__image__titleWrap__titleEng {
    font-size: 2.6rem;
    font-weight: bold;
  }
  .howtowear__spSection__text {
    width: 70vw;
    margin: 2rem auto 0;
    padding: 0;
    line-height: 2.16;
    font-size: 2.4rem;
    text-align: left;
  }
}

.howtowear__01 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: top;
  width: 100%;
  margin: 2rem 0 0;
}
.howtowear__01__image {
  position: relative;
  width: 50%;
}
.howtowear__01__image__titleWrap {
  position: absolute;
  top: 3rem;
  left: -24rem;
  padding: 0 8em 0.6em 0;
  border-bottom: 1px solid #000;
  text-align: left;
}
.howtowear__01__image__titleWrap__titleJp {
  margin: 0 0 0.6em;
  font-size: 1.1rem;
}
.howtowear__01__image__titleWrap__titleEng {
  font-size: 1.6rem;
  font-weight: bold;
}
.howtowear__01__text {
  width: 50%;
  margin: 8.5vw 0 0;
  padding: 0 2vw 0 10vw;
  text-align: left;
  line-height: 2.3;
  font-size: 1.3rem;
}
.howtowear__02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  margin: 2rem 0 0;
  align-items: top;
}
.howtowear__02__image {
  position: relative;
  width: 53%;
  padding: 0 0 0 10vw;
}
.howtowear__02__image__titleWrap {
  position: absolute;
  top: 12rem;
  right: -23rem;
  padding: 0 0 0.6em 8em;
  border-bottom: 1px solid #000;
  text-align: right;
}
.howtowear__02__image__titleWrap__titleJp {
  margin: 0 0 0.6em;
  font-size: 1.1rem;
}
.howtowear__02__image__titleWrap__titleEng {
  font-size: 1.6rem;
  font-weight: bold;
}
.howtowear__02__text {
  width: 47%;
  margin: 14vw 0 0;
  padding: 0 10vw 0 0;
  text-align: right;
  line-height: 2.3;
  font-size: 1.3rem;
}
.howtowear__03 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 100%;
  margin: 2rem 0 0;
  align-items: top;
}
.howtowear__03__text {
  width: 47%;
  margin: 13vw 0 0;
  padding: 0 2vw 0 10vw;
  text-align: left;
  line-height: 2.3;
  font-size: 1.3rem;
}
.howtowear__03__image {
  position: relative;
  width: 53%;
  padding: 0 10vw 0 0;
}
.howtowear__03__image__titleWrap {
  position: absolute;
  top: 10rem;
  left: -25rem;
  padding: 0 8em 0.6em 0;
  border-bottom: 1px solid #000;
  text-align: left;
}
.howtowear__03__image__titleWrap__titleJp {
  margin: 0 0 0.6em;
  font-size: 1.1rem;
}
.howtowear__03__image__titleWrap__titleEng {
  font-size: 1.6rem;
  font-weight: bold;
}
.howtowear__04 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin: 2rem 0 0;
  align-items: top;
}
.howtowear__04__image {
  position: relative;
  width: 50%;
}
.howtowear__04__image__titleWrap {
  position: absolute;
  top: 10rem;
  right: -15rem;
  padding: 0 0 0.6em 8em;
  border-bottom: 1px solid #000;
  text-align: right;
}
.howtowear__04__image__titleWrap__titleJp {
  margin: 0 0 0.6em;
  font-size: 1.1rem;
}
.howtowear__04__image__titleWrap__titleEng {
  font-size: 1.6rem;
  font-weight: bold;
}
.howtowear__04__text {
  width: 50%;
  margin: 13vw 0 0;
  padding: 0 10vw 0 2vw;
  text-align: right;
  line-height: 2.3;
  font-size: 1.3rem;
}
.howtowear__05 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin: 2rem 0 0;
  align-items: top;
}
.howtowear__05__text {
  width: 50%;
  margin: 14vw 0 0;
  padding: 0 2vw 0 10vw;
  text-align: left;
  line-height: 2.3;
  font-size: 1.3rem;
}
.howtowear__05__image {
  position: relative;
  width: 50%;
  padding: 0 10vw 0 0;
}
.howtowear__05__image__titleWrap {
  position: absolute;
  top: 12rem;
  left: -13rem;
  padding: 0 8em 0.6em 0;
  border-bottom: 1px solid #000;
  text-align: left;
}
.howtowear__05__image__titleWrap__titleJp {
  margin: 0 0 0.6em;
  font-size: 1.1rem;
}
.howtowear__05__image__titleWrap__titleEng {
  font-size: 1.6rem;
  font-weight: bold;
}
.howtowear__06 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin: 2rem 0 0;
  align-items: top;
}
.howtowear__06__image {
  position: relative;
  width: 50%;
}
.howtowear__06__image__titleWrap {
  position: absolute;
  top: 10rem;
  right: -23rem;
  padding: 0 0 0.6em 8em;
  border-bottom: 1px solid #000;
  text-align: right;
}
.howtowear__06__image__titleWrap__titleJp {
  margin: 0 0 0.6em;
  font-size: 1.1rem;
}
.howtowear__06__image__titleWrap__titleEng {
  font-size: 1.6rem;
  font-weight: bold;
}
.howtowear__06__text {
  position: relative;
  top: -4vw;
  width: 50%;
  margin: 16.5vw 0 0;
  padding: 0 10vw 0 0;
  text-align: right;
  line-height: 2.3;
  font-size: 1.3rem;
}
.howtowear__07 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 85%;
  margin: -10vw 0 0 auto;
  align-items: top;
}
.howtowear__07__image {
  position: relative;
  width: 50%;
}
.howtowear__07__image__titleWrap {
  position: absolute;
  top: 12rem;
  right: -20rem;
  padding: 0 0 0.6em 8em;
  border-bottom: 1px solid #000;
  text-align: right;
}
.howtowear__07__image__titleWrap__titleJp {
  margin: 0 0 0.6em;
  font-size: 1.1rem;
}
.howtowear__07__image__titleWrap__titleEng {
  font-size: 1.6rem;
  font-weight: bold;
}
.howtowear__07__text {
  position: relative;
  top: -1vw;
  width: 50%;
  margin: 15vw 0 0;
  padding: 0 10vw 0 0;
  text-align: right;
  line-height: 2.3;
  font-size: 1.3rem;
}
.howtowear__08 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 100%;
  margin: 2rem 0 0;
  align-items: top;
}
.howtowear__08__text {
  width: 50%;
  margin: 13.5vw 0 0;
  padding: 0 2vw 0 10vw;
  text-align: left;
  line-height: 2.3;
  font-size: 1.3rem;
}
.howtowear__08__image {
  position: relative;
  width: 50%;
}
.howtowear__08__image__titleWrap {
  position: absolute;
  top: 10rem;
  left: -17rem;
  padding: 0 8em 0.6em 0;
  border-bottom: 1px solid #000;
  text-align: left;
}
.howtowear__08__image__titleWrap__titleJp {
  margin: 0 0 0.6em;
  font-size: 1.1rem;
}
.howtowear__08__image__titleWrap__titleEng {
  font-size: 1.6rem;
  font-weight: bold;
}

/* Order Tuxedo */
.order {
  text-align: center;
}
.order__title {
  padding: 150px 0 0;
  font-size: 3rem;
  letter-spacing: 0.2em;
}

.order_contactarea{
	margin:2.5em auto 0 auto;
	padding:0;
	text-align: center;
}

.order_contactarea img{
	width: 50%;
	}

@media screen and (max-width: 768px) {
  .order__title {
    padding: 7rem 0;
    font-size: 6rem;
  }
	
.order_contactarea img{
	width:90%;
	}
}
.order__point1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 8rem 0 0;
  padding: 0 0 0 45vw;
  width: 100%;
  height: 800px;
  color: #fff;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .order__point1 {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 130vw;
    padding: 57vw 0 0;
    color: #fff;
    overflow: hidden;
  }
}
.order__point1__image {
  position: absolute;
  top: -4vw;
  left: 0;
  z-index: -1;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .order__point1__image {
    display: none;
  }
}
.order__point1__spImage {
  display: none;
}
@media screen and (max-width: 768px) {
  .order__point1__spImage {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
  }
}
.order__point1__text__catch {
  letter-spacing: 0.2em;
  font-size: 4.2rem;
  font-family: century-gothic, 游明朝, "Yu Mincho", YuMincho,
    "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo,
    serif;
}
@media screen and (max-width: 768px) {
  .order__point1__text__catch {
    font-size: 5.6rem;
    position: relative;
    left: 0.2em;
  }
}
.order__point1__text__catchSmall {
  margin: 30px auto 100px;
}
@media screen and (max-width: 768px) {
  .order__point1__text__catchSmall {
    margin: 1rem auto 3rem;
  }
}
.order__point1__text__catchSmall > span {
  position: relative;
  display: inline-block;
  font-size: 1.2rem;
  letter-spacing: 0.4em;
}
@media screen and (max-width: 768px) {
  .order__point1__text__catchSmall > span {
    font-size: 2rem;
  }
}
.order__point1__text__catchSmall > span::before,
.order__point1__text__catchSmall > span::after {
  position: absolute;
  top: 0.5em;
  content: "";
  width: 50px;
  height: 0;
  border-bottom: 1px solid #fff;
}
.order__point1__text__catchSmall > span::before {
  right: calc(100% + 1.4em);
}
.order__point1__text__catchSmall > span::after {
  left: calc(100% + 1em);
}
.order__point1__text__body {
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  line-height: 3.33;
}
.order__point2 {
  position: relative;
  padding: 150px 0;
}

.order__point1__text{
	position: absolute;
    left: 20px;
    top: 300px;
}
@media screen and (max-width: 768px) {
  .order__point2 {
    height: 120vw;
    padding: 0;
    margin: 15vw 0 0;
  }
}
.order__point2__image {
  width: 62.6vw;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 768px) {
  .order__point2__image {
    width: 100vw;
    margin: 0;
  }
  .order__point2__image > img {
    width: 100vw;
    height: 75vw;
    object-fit: cover;
    object-position: left center;
  }
}
.order__point2__text {
  position: absolute;
  bottom: 16vw;
  left: 10vw;
  width: 40vw;
  padding: 6rem;
  font-size: 1.3rem;
  line-height: 2.3;
  text-align: left;
  background-color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 768px) {
  .order__point2__text {
    position: absolute;
    top: 44vw;
    bottom: auto;
    left: 0;
    width: 85.6vw;
    padding: 2rem;
    font-size: 2rem;
    line-height: 2;
    text-align: left;
    background-color: rgba(0, 0, 0, 1);
    color: #fff;
  }
}
.order__detail {
  padding: 100px 10vw;
  background-color: #000;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .order__detail {
    padding: 0;
  }
}
.order__detail__hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto 100px;
}
@media screen and (max-width: 768px) {
  .order__detail__hero {
    margin: 0 auto 6rem;
  }
}
.order__detail__hero__image {
  width: 50%;
}
.order__detail__hero__text {
  width: 47.5%;
}
@media screen and (max-width: 768px) {
  .order__detail__hero__image {
    width: 100%;
  }
  .order__detail__hero__image > img {
    width: 100%;
    height: 105vw;
    object-fit: cover;
    object-position: center bottom;
  }
  .order__detail__hero__text {
    width: 100%;
    margin: 2rem 0 0;
  }
}
.order__detail__hero__text__title {
  margin: 0 0 2rem;
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .order__detail__hero__text__title {
    margin: 4rem 0 2rem;
    font-size: 2.6rem;
  }
}
.order__detail__hero__text__description {
  font-size: 1.3rem;
  line-height: 2.3;
}
@media screen and (max-width: 768px) {
  .order__detail__hero__text__description {
    width: 70vw;
    margin: auto;
    font-size: 2.4rem;
  }
}
.order__detail__hero__text__box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 4rem 0 0;
  padding: 1rem 18% 6rem;
  border: 1px solid #fff;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .order__detail__hero__text__box {
    width: 88vw;
    margin: 2rem auto 0;
    padding: 1rem 9vw 3rem;
    font-size: 2.2rem;
  }
}
.order__detail__hero__text__box__type {
  width: 20%;
  margin: 4rem 0 0;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .order__detail__hero__text__box__type {
    width: 30%;
    margin: 2rem 0 0;
    text-align: left;
  }
}
.order__detail__hero__text__box__type > span {
  padding: 0 0 0.4em;
  border-bottom: 1px solid #fff;
}
.order__detail__hero__text__box__key {
  width: 80%;
  margin: 4rem 0 0;
}
@media screen and (max-width: 768px) {
  .order__detail__hero__text__box__key {
    width: 70%;
    margin: 2rem 0 0;
  }
}
.order__detail__brandHeadline {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
}
.order__detail__brandHeadline > span {
  font-size: 1.3rem;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .order__detail__brandHeadline {
    font-size: 3.6rem;
  }
  .order__detail__brandHeadline > span {
    font-size: 2.2rem;
  }
}
.order__detail__brandList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 4rem 0 0;
}
@media screen and (max-width: 768px) {
  .order__detail__brandList {
    width: 88vw;
    margin: 2rem auto 0;
    padding: 0 0 3rem;
  }
}
.order__detail__brandList__item {
  width: 32%;
  padding: 3vw 3%;
  background: #fff;
  color: #000;
}
@media screen and (max-width: 768px) {
  .order__detail__brandList__item {
    width: 100%;
    padding: 6vw 9vw;
    background: #fff;
    color: #000;
  }
  .order__detail__brandList__item + .order__detail__brandList__item {
    margin: 0.6rem 0 0;
  }
}
.order__detail__brandList__item__logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 70%;
  height: 8vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .order__detail__brandList__item__logo {
    width: 45%;
    height: 22vw;
    margin: 0 auto;
  }
}
.order__detail__brandList__item__name {
  margin: 4rem 0 2rem;
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .order__detail__brandList__item__name {
    margin: 1.6rem 0 1rem;
    font-size: 2.6rem;
  }
}
.order__detail__brandList__item__description {
  font-size: 1.2rem;
  line-height: 2.16;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .order__detail__brandList__item__description {
    font-size: 2rem;
    line-height: 2.1;
  }
}

/* Look Book */
.lookbook {
  text-align: center;
}
.lookbook__top {
  display: flex;
  justify-content: center;
}
.lookbook__top > div {
  width: 50%;
  height: calc(100vh - 110px - 15px);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .lookbook__top > div {
    height: calc(100vh - 9.37vw - 12vw);
    height: calc(var(--vh, 1vh) * 100 - 9.37vw - 12vw);
  }
}
.lookbook__top__formal {
  position: relative;
}
.lookbook__top__casual {
  position: relative;
}
.lookbook__top__formal__image {
  width: 100%;
  height: calc(100vh - 110px - 15px);
  background-image: url("../img/lookbook/lookbook_top_formal01.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition: all 3000ms ease-in-out;
  transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  will-change: transform;
}
.lookbook__top__formal__image:hover {
  transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0.9);
}
@media screen and (max-width: 768px) {
  .lookbook__top__formal__image {
/*     background-position: left 23% top; */
    background-position: center center;
    height: calc(100vh - 9.37vw - 12vw);
    height: calc(var(--vh, 1vh) * 100 - 9.37vw - 12vw);
  }
  .lookbook__top__formal__image:hover {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}
.lookbook__top__casual__image {
  width: 100%;
  height: calc(100vh - 110px - 15px);
  background-image: url("../img/lookbook/lookbook_top_casual01.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition: all 3000ms ease-in-out;
  transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  will-change: transform;
}
.lookbook__top__casual__image:hover {
  transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0.9);
}
@media screen and (max-width: 768px) {
  .lookbook__top__casual__image {
/*     background-position: right 25% top; */
    background-position: center center;
    height: calc(100vh - 9.37vw - 16vw);
    height: calc(var(--vh, 1vh) * 100 - 9.37vw - 16vw);
  }
  .lookbook__top__casual__image:hover {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}
.lookbook__top__formal__btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 20vw;
  height: 6rem;
}
.lookbook__top__formal__btn > a {
/*
  position: relative;
  display: block;
  padding: 1.4em 0;
  font-size: 1.6rem;
  background-color: rgba(255, 255, 255, 0.7);
  transition: background-color 500ms ease-in-out;
*/
	position: absolute;
	display: block;
	padding: 300px 0;
	font-size: 3rem;
	background-color: rgba(255, 255, 255, 0.5);
	transition: background-color 500ms ease-in-out;
	width: 600px;
	margin: 0 auto;
	top: -277px;
	left: -160px;
	height: 620px;
}
.lookbook__top__formal__btn > a:hover {
  background-color: rgba(255, 255, 255, 1);
}
/*
.lookbook__top__formal__btn > a::before {
  display: block;
  content: "";
  position: absolute;
	top: 33.5%;
	left: 35%;
  width: 0;
  height: 0;
  margin-top: -4px;
  border: 4px solid transparent;
  border-left: 4px solid #000;
}
*/
@media screen and (max-width: 768px) {
  .lookbook__top__formal__btn {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 50vw;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
  }
  .lookbook__top__formal__btn > a {
    position: relative;
    display: block;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    background-color: inherit;
    transition: background-color 500ms ease-in-out;
    color: transparent;
    top: auto;
    background-color: rgba(255, 255, 255, 0.3);
  }
  .lookbook__top__formal__btn > a:hover {
    background-color: rgba(255, 255, 255, 1);
  }
/*
  .lookbook__top__formal__btn > a::before {
    display: flex;
    flex-direction: column;
    justify-content: center;
    content: "FORMAL STYLE";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    border: none;
    font-size: 2.6rem;
    background-color: rgba(255, 255, 255, 0.3);
    color: #000;
  }
*/
}
.lookbook__top__casual__btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 20vw;
  height: 6rem;
}
.lookbook__top__casual__btn > a {
  position:absolute;
  display: block;
/*   padding: 1.4em 0; */
  font-size: 3rem;
/*   color: #fff; */
/*   background-color: rgba(0, 0, 0, 0.7); */
	background-color: rgba(255, 255, 255, 0.5);
  transition: background-color 500ms ease-in-out;
  top: -277px;
	left: -150px;
	height: 620px;
	width: 600px;
	padding: 300px 0;
}
.lookbook__top__casual__btn > a:hover {
/*   background-color: rgba(0, 0, 0, 1); */
  background-color: rgba(255, 255, 255, 1);
}

.lookbook__top__subtext{
	font-size: 1rem;
}

.lookbook__title__text{
	display: block;
    z-index: 1000;
    color: #000;
    opacity: 1;
    padding-right: 80px;
    text-align: center;
}

.lookbook__moretitle__text{
	display: block;
    z-index: 1000;
    color: #000;
    opacity: 1;
/*     padding-right: 100px; */
    text-align: center;
/*     margin-top: 278px; */
}
/*
.lookbook__top__casual__btn > a::before {
  display: block;
  content: "";
  position: absolute;
 top: 33.5%;
 left: 36%;
  width: 0;
  height: 0;
  margin-top: -4px;
  border: 4px solid transparent;
  border-left: 4px solid #fff;
}
*/
@media screen and (max-width: 768px) {
  .lookbook__top__casual__btn {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 50vw;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
  }
  .lookbook__top__casual__btn > a {
    position: relative;
    display: block;
    height: 200vh;
/*     height: calc(var(--vh, 1vh) * 100); */
    background-color: inherit;
    transition: background-color 500ms ease-in-out;
    color: transparent;
    background-color:rgba(255, 255, 255, 0.3); 
  }
  .lookbook__top__casual__btn > a:hover {
    background-color: rgba(0, 0, 0, 1);
  }
  .lookbook__moretitle__text{
	display: block;
    z-index: 1000;
    color: #fff;
    opacity: 1;
    padding-right: 100px;
    text-align: center;
    margin-top: 278px;
}
/*
  .lookbook__top__casual__btn > a::before {
    display: flex;
    flex-direction: column;
    justify-content: center;
    content: "CASUAL STYLE";
    position: inherit;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
   width: auto;
    height: 240vw;
    margin: auto;
    border: none;
    font-size: 2.6rem;
    background-color:rgba(255, 255, 255, 0.3); 
    color: #fff;
  }
*/
}
.lookbook__title {
  padding: 150px 0;
  font-size: 3rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .lookbook__title {
    display: none;
  }
}
.lookbook__navList {
  display: none;
}
@media screen and (max-width: 768px) {
  .lookbook__navList {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    padding: 4rem 0;
    width: 73vw;
  }
  .about__footer .lookbook__navList {
    padding: 7rem 0;
  }
  .lookbook__navList__item {
    position: relative;
    background: #f9f9f9;
    overflow: hidden;
    transition: all 500ms ease-in-out;
    width: 100%;
    font-size: 2.6rem;
  }
  .lookbook__navList__item:before {
    content: "";
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background-color: #000;
    transition: all 500ms ease-in-out;
  }
  .lookbook__navList__item:hover {
    color: #fff;
  }
  .lookbook__navList__item:hover:before {
    left: 0;
  }
  .lookbook__navList__item.active {
    color: #fff;
    background: #000;
  }
  .lookbook__navList__item > a {
    display: block;
    padding: 1em 0;
  }
  .lookbook__navList__item + .lookbook__navList__item {
    margin: 1rem 0 0;
  }
}
.lookbook__casual__spMv {
  display: none;
}
@media screen and (max-width: 768px) {
  .lookbook__casual__spMv {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 130.2vw;
  }
  .lookbook__casual__spMv::after {
    content: url("../img/lookbook/lookbook_detail_arrow_sp.png");
    position: absolute;
    right: 10vw;
    bottom: 8vw;
  }
  .lookbook__casual__spMv__image {
    position: absolute;
    top: -5px;
    left: 0;
  }
  .lookbook__casual__spMv__catch {
    position: absolute;
    left: 6.77vw;
    bottom: 8vw;
    text-align: left;
    color: #fff;
    font-size: 2.2rem;
  }
  .lookbook__casual__spMv__catch > span {
    display: inline-block;
    margin: 0.6rem 0 0;
    padding: 0.4rem;
    background: #000;
  }
}
.lookbook__casual__mv {
  position: relative;
}
@media screen and (max-width: 768px) {
  .lookbook__casual__mv {
    display: none;
  }
}
.lookbook__casual__mv__image {
  width: 67.6vw;
  margin: 0 0 0 auto;
}
.lookbook__casual__mv__textWrap {
  position: absolute;
  left: 8.5vw;
  bottom: -100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 33vw;
  height: 33vw;
  padding: 0 0 0 6vw;
  background: #000;
  color: #fff;
  text-align: left;
  box-shadow: 0px 2px 9px 1px rgba(0, 0, 0, 0.4);
}
.lookbook__casual__mv__textWrap__title {
  font-size: 4rem;
  letter-spacing: 0.2em;
}
.lookbook__casual__mv__textWrap__text {
  margin: 4rem 0 0;
  font-size: 1.4rem;
  line-height: 2.57;
}
.lookbook__casual__list {
  width: 80vw;
  min-height: 30vw;
  margin: 200px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .lookbook__casual__list {
    width: 86.84vw;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.lookbook__casual__list__item {
  width: 18vw;
  margin: 0 0 2.5vw;
}
@media screen and (max-width: 768px) {
  .lookbook__casual__list__item {
    width: 46%;
    margin: 0 0 7vw;
  }
}
.lookbook__casual__list__item > a {
  display: block;
  position: relative;
}
.lookbook__casual__list__item > a::after {
  cursor: pointer;
  content: "　VIEW DETAIL";
  background-image: url("../img/common/icon_external_link.png");
  background-repeat: no-repeat;
  background-position: left 26% center;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff;
  box-shadow: 0px 2px 9px 1px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 500ms ease-in-out;
}
@media screen and (max-width: 768px) {
  .lookbook__casual__list__item > a::after {
    content: "";
    background-image: url("../img/common/icon_external_link_sp.png");
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    position: absolute;
    top: auto;
    left: auto;
    bottom: 2.5vw;
    right: 2vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 3.5vw;
    height: 3.5vw;
    background-color: inherit;
    color: #fff;
    box-shadow: none;
    opacity: 1;
    transition: opacity 500ms ease-in-out;
  }
}
.lookbook__casual__list__item > a:hover::after {
  opacity: 1;
}
.lookbook__casual__footer {
  position: relative;
  margin: 100px 0 150px;
}
@media screen and (max-width: 768px) {
  .lookbook__casual__footer {
    position: relative;
    margin: 4rem 0 6rem;
  }
}
.lookbook__casual__footer__image {
  width: 55.2vw;
  margin: 0 auto 0 0;
}
@media screen and (max-width: 768px) {
  .lookbook__casual__footer__image {
    display: none;
  }
}
.lookbook__casual__footer__btn {
  position: absolute;
  left: 42vw;
  bottom: 5vw;
  width: 41.2vw;
}
.lookbook__casual__footer__btn > a {
  position: relative;
  display: block;
  padding: 1.4em 0;
  font-size: 1.6rem;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
  transition: background-color 500ms ease-in-out;
}
.lookbook__casual__footer__btn > a:hover {
  background-color: rgba(0, 0, 0, 1);
}
.lookbook__casual__footer__btn > a::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 5%;
  width: 0;
  height: 0;
  margin-top: -4px;
  border: 4px solid transparent;
  border-left: 4px solid #fff;
}
@media screen and (max-width: 768px) {
  .lookbook__casual__footer__btn {
    position: relative;
    left: auto;
    bottom: auto;
    width: 96.22vw;
    margin: 0 auto;
  }
  .lookbook__casual__footer__btn > a {
    position: relative;
    display: block;
    padding: 10rem 0;
    font-size: 2.6rem;
    color: #fff;
    background-color: inherit;
    background: url("../img/lookbook/lookbook_casual_footer.jpg");
    background-size: cover;
    background-position: center top;
  }
  .lookbook__casual__footer__btn > a:hover {
  }
  .lookbook__casual__footer__btn > a::before {
    display: none;
  }
}
.lookbook__formal__spMv {
  display: none;
}
@media screen and (max-width: 768px) {
  .lookbook__formal__spMv {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 130.2vw;
  }
  .lookbook__formal__spMv::after {
    content: url("../img/lookbook/lookbook_detail_arrow_sp.png");
    position: absolute;
    right: 10vw;
    bottom: 8vw;
  }
  .lookbook__formal__spMv__image {
    position: absolute;
    top: -5px;
    left: 0;
  }
  .lookbook__formal__spMv__catch {
    position: absolute;
    left: 6.77vw;
    bottom: 8vw;
    text-align: left;
    color: #fff;
    font-size: 2.2rem;
  }
  .lookbook__formal__spMv__catch > span {
    display: inline-block;
    margin: 0.6rem 0 0;
    padding: 0.4rem;
    background: #000;
  }
}
.lookbook__formal__mv {
  position: relative;
}
@media screen and (max-width: 768px) {
  .lookbook__formal__mv {
    display: none;
  }
}
.lookbook__formal__mv__image {
  width: 67.6vw;
  margin: 0 auto 0 0;
}
.lookbook__formal__mv__textWrap {
  position: absolute;
  right: 8.5vw;
  bottom: -100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 33vw;
  height: 33vw;
  padding: 0 0 0 6vw;
  background: #000;
  color: #fff;
  text-align: left;
  box-shadow: 0px 2px 9px 1px rgba(0, 0, 0, 0.4);
}
.lookbook__formal__mv__textWrap__title {
  font-size: 4rem;
  letter-spacing: 0.2em;
}
.lookbook__formal__mv__textWrap__text {
  margin: 4rem 0 0;
  font-size: 1.4rem;
  line-height: 2.57;
}
.lookbook__formal__list {
  width: 80vw;
  min-height: 30vw;
  margin: 200px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .lookbook__formal__list {
    width: 86.84vw;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.lookbook__formal__list__item {
  width: 18vw;
  margin: 0 0 2.5vw;
}
@media screen and (max-width: 768px) {
  .lookbook__formal__list__item {
    width: 46%;
    margin: 0 0 7vw;
  }
}
.lookbook__formal__list__item > a {
  display: block;
  position: relative;
}
.lookbook__formal__list__item > a::after {
  cursor: pointer;
  content: "　VIEW DETAIL";
  background-image: url("../img/common/icon_external_link.png");
  background-repeat: no-repeat;
  background-position: left 26% center;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff;
  box-shadow: 0px 2px 9px 1px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 500ms ease-in-out;
}
@media screen and (max-width: 768px) {
  .lookbook__formal__list__item > a::after {
    content: "";
    background-image: url("../img/common/icon_external_link_sp.png");
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    position: absolute;
    top: auto;
    left: auto;
    bottom: 2.5vw;
    right: 2vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 3.5vw;
    height: 3.5vw;
    background-color: inherit;
    color: #fff;
    box-shadow: none;
    opacity: 1;
    transition: opacity 500ms ease-in-out;
  }
}
.lookbook__formal__list__item > a:hover::after {
  opacity: 1;
}
.lookbook__formal__footer {
  position: relative;
  margin: 100px 0 150px;
}
@media screen and (max-width: 768px) {
  .lookbook__formal__footer {
    position: relative;
    margin: 4rem 0 6rem;
  }
}
.lookbook__formal__footer__image {
  width: 55.2vw;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 768px) {
  .lookbook__formal__footer__image {
    display: none;
  }
}
.lookbook__formal__footer__btn {
  position: absolute;
  right: 42vw;
  bottom: 5vw;
  width: 41.2vw;
}
.lookbook__formal__footer__btn > a {
  position: relative;
  display: block;
  padding: 1.4em 0;
  font-size: 1.6rem;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
  transition: background-color 500ms ease-in-out;
}
.lookbook__formal__footer__btn > a:hover {
  background-color: rgba(0, 0, 0, 1);
}
.lookbook__formal__footer__btn > a::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 5%;
  width: 0;
  height: 0;
  margin-top: -4px;
  border: 4px solid transparent;
  border-left: 4px solid #fff;
}
@media screen and (max-width: 768px) {
  .lookbook__formal__footer__btn {
    position: relative;
    right: auto;
    bottom: auto;
    width: 96.22vw;
    margin: 0 auto;
  }
  .lookbook__formal__footer__btn > a {
    position: relative;
    display: block;
    padding: 10rem 0;
    font-size: 2.6rem;
    color: #fff;
    background-color: inherit;
    background: url("../img/lookbook/lookbook_formal_footer.jpg");
    background-size: cover;
    background-position: center top;
  }
  .lookbook__formal__footer__btn > a:hover {
  }
  .lookbook__formal__footer__btn > a::before {
    display: none;
  }
}
.lookbook__detail {
  padding: 0 10vw;
}
@media screen and (max-width: 768px) {
  .lookbook__detail {
    padding: 2.4vw 1.82vw 0;
  }
}
.lookbook__detail__imageWrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .lookbook__detail__imageWrap {
    display: none;
  }
}
.lookbook__detail__imageWrap__scaleDown {
  position: relative;
  width: 48%;
}
.lookbook__detail__imageWrap__scaleDown::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 25px;
  height: 25px;
  background-image: url("../img/common/icon_zoomin.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.lookbook__detail__imageWrap__scaleDown:hover .m-lens {
  display: block;
}
.lookbook__detail__imageWrap__scaleUp {
  position: relative;
  width: 48%;
}
.lookbook__detail__imageWrap .m-lens {
  display: none;
  position: absolute;
  top: 50px; /* JSで適切な値を設定する */
  left: 30px; /* JSで適切な値を設定する */
  z-index: 2;
  background: #fff;
  opacity: 0.5;
  width: 12vw;
  height: 16vw;
}
.lookbook__detail__imageWrap .zoom-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* background: #ececec; */
}
.lookbook__detail__imageWrap .zoom-area::before {
}
.lookbook__detail__imageWrap .zoom-area img {
  width: 1500px; /* JSで適切な値を設定する */
  margin-top: -30px; /* JSで適切な値を設定する */
  margin-left: -60px; /* JSで適切な値を設定する */
  opacity: 0;
  transition: opacity 500ms ease-in-out;
}
.lookbook__detail__imageWrap .zoom-area.active img {
  opacity: 1;
}
.lookbook__detail__imageSp {
  display: none;
}
@media screen and (max-width: 768px) {
  .lookbook__detail__imageSp {
    display: block;
  }
}
.lookbook__detail__detailWrap {
  margin: 4rem 0 0;
  font-size: 1.4rem;
  text-align: left;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .lookbook__detail__detailWrap {
    margin: 4rem 0 0;
    font-size: 2.2rem;
  }
}
.lookbook__detail__detailWrap__text {
  margin: 0 0 3.5rem;
}
@media screen and (max-width: 768px) {
  .lookbook__detail__detailWrap__text {
    margin: 0 auto 3.5rem;
    padding: 0 13vw;
  }
  .lookbook__detail__detailWrap__spec {
    width: 70vw;
    margin: 0 auto;
  }
}
.lookbook__detail__footer__moreBtn {
  margin: 80px 0 100px;
}
.lookbook__detail__footer__moreBtn > a {
  position: relative;
  display: inline-block;
  padding: 1.4em 3em 1.4em 5em;
  font-size: 1.6rem;
  color: #000;
  background-color: rgba(241, 241, 241, 1);
  transition: all 500ms ease-in-out;
}
.lookbook__detail__footer__moreBtn > a:hover {
  color: #fff;
  background-color: rgba(0, 0, 0, 1);
}
.lookbook__detail__footer__moreBtn > a::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 10%;
  width: 0;
  height: 0;
  margin-top: -4px;
  border: 4px solid transparent;
  border-left: 4px solid #000;
  transition: all 500ms ease-in-out;
}
.lookbook__detail__footer__moreBtn > a:hover::before {
  border-left: 4px solid #fff;
}
@media screen and (max-width: 768px) {
  .lookbook__detail__footer__moreBtn {
    width: 70vw;
    margin: 3.5rem auto 5rem;
  }
  .lookbook__detail__footer__moreBtn > a {
    position: relative;
    display: block;
    padding: 1.4em 2em 1.4em 4em;
    font-size: 2.6rem;
    color: #000;
    background-color: rgba(241, 241, 241, 1);
    transition: all 500ms ease-in-out;
  }
  .lookbook__detail__footer__moreBtn > a:hover {
    color: #fff;
    background-color: rgba(0, 0, 0, 1);
  }
  .lookbook__detail__footer__moreBtn > a::before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 10%;
    width: 0;
    height: 0;
    margin-top: -3px;
    border: 3px solid transparent;
    border-left: 3px solid #000;
    transition: all 500ms ease-in-out;
  }
  .lookbook__detail__footer__moreBtn > a:hover::before {
    border-left: 3px solid #fff;
  }
}
.lookbook__detail__footer__moreList {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .lookbook__detail__footer__moreList {
    justify-content: space-between;
    width: 96.22vw;
    margin: 0 auto;
  }
}
.lookbook__detail__footer__moreList__item {
  width: 270px;
  margin: 0 1.6vw;
}
@media screen and (max-width: 768px) {
  .lookbook__detail__footer__moreList__item {
    width: 32%;
    margin: 0;
  }
}
.lookbook__detail__footer__moreList__item > a {
  display: block;
  position: relative;
}
.lookbook__detail__footer__moreList__item > a::after {
  cursor: pointer;
  content: "　VIEW DETAIL";
  background-image: url("../img/common/icon_external_link.png");
  background-repeat: no-repeat;
  background-position: left 26% center;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff;
  box-shadow: 0px 2px 9px 1px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 500ms ease-in-out;
}
.lookbook__detail__footer__moreList__item > a:hover::after {
  opacity: 1;
}
.lookbook__detail__footer__btn {
  width: 24vw;
  margin: 150px 0 100px auto;
}
.lookbook__detail__footer__btn > a {
  position: relative;
  display: block;
  padding: 1.4em 0;
  font-size: 1.6rem;
  color: #000;
  background-color: rgba(241, 241, 241, 1);
  transition: all 500ms ease-in-out;
}
.lookbook__detail__footer__btn > a:hover {
  color: #fff;
  background-color: rgba(0, 0, 0, 1);
}
.lookbook__detail__footer__btn > a::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 10%;
  width: 0;
  height: 0;
  margin-top: -4px;
  border: 4px solid transparent;
  border-left: 4px solid #000;
  transition: all 500ms ease-in-out;
}
.lookbook__detail__footer__btn > a:hover::before {
  border-left: 4px solid #fff;
}
@media screen and (max-width: 768px) {
  .lookbook__detail__footer__btn {
    width: 70vw;
    margin: 5rem auto;
  }
  .lookbook__detail__footer__btn > a {
    position: relative;
    display: block;
    padding: 1.4em 2em 1.4em 4em;
    font-size: 2.6rem;
    color: #000;
    background-color: rgba(241, 241, 241, 1);
    transition: all 500ms ease-in-out;
  }
  .lookbook__detail__footer__btn > a:hover {
    color: #fff;
    background-color: rgba(0, 0, 0, 1);
  }
  .lookbook__detail__footer__btn > a::before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 10%;
    width: 0;
    height: 0;
    margin-top: -3px;
    border: 3px solid transparent;
    border-left: 3px solid #000;
    transition: all 500ms ease-in-out;
  }
  .lookbook__detail__footer__btn > a:hover::before {
    border-left: 3px solid #fff;
  }
}

/* Brand */
.brand {
  text-align: center;
}
.brand__mv {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 635px;
  margin: 0 0 50px;
  background: url("../img/brand/brand_mv.jpg");
  background-repeat: no-repeat;
/*   background-size: cover; */
  background-position: top center;
  background-size: auto 635px;
background-color:#000;
}
@media screen and (max-width: 768px) {
  .brand__mv {
    height: calc(100vh - 9.37vw - 12vw);
    height: calc(var(--vh, 1vh) * 100 - 9.37vw - 12vw);
    margin: 0 0 5rem;
    background: url("../img/brand/brand_mv_sp.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    transition: all 2000ms ease-in-out;
  }
}

.brand__mv__headline_wrap{
	position: relative;
	width: 51%;
    margin-left: auto;
    display: block;
}
.brand__mv__headline {
    font-size: 5rem;
    letter-spacing: 0.2em;
    color: #fff;
    margin-top: 80px;
    margin-right: 150px;
    width: 700px;
}

.brand__mv__headline__subtext{
    font-size: 3rem;
}

.brand__mv__headline__secondtext{
	font-size: 1.3rem;
}

.brand__mv__headline_wrap img{
    width: 580px;
}
.brand__mv__headline_text {
	position: absolute;
	right: 1px;
    width: 580px;
    height: 100px;
}
@media screen and (max-width: 768px) {
  .brand__mv__headline {
    font-size: 5rem;
    line-height: 1.5;
    margin-top: -38vh;
    margin-right: 0;
    width: 100%;
  }
  .brand__mv__headline > span {
    display: none;
  }
  .brand__mv__headline_wrap img {
    width: 80%;
	}
	.brand__mv__headline_wrap {
    width: 100%;
    margin-left: auto;
}

.brand__mv__headline__subtext {
    font-size: 3rem;
    display: block !important;
}

.brand__mv__headline__secondtext{
	display: block !important;
	font-size: 1rem;
}
	
}
.brand__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 80vw;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 0 60px;
  border-bottom: 1px solid #ededed;
}
.brand__list::after {
  content: "";
  display: block;
  width: 28%;
}
@media screen and (max-width: 768px) {
  .brand__list {
    width: 92.18vw;
    margin: 0 auto;
    padding: 0;
  }
}
.brand__list__item {
  width: 28%;
  margin: 0 0 4rem;
}
@media screen and (max-width: 768px) {
  .brand__list__item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 0 5rem;
  }
}
.brand__list__item__image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 14vw;
}
@media screen and (max-width: 768px) {
  .brand__list__item__image {
    justify-content: flex-start;
    min-height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .brand__list__item__image {
    width: 35vw;
  }
}
.brand__list__item:nth-child(1) .brand__list__item__image > img {
  width: 8vw;
}
.brand__list__item:nth-child(2) .brand__list__item__image > img {
  width: 14vw;
}
.brand__list__item:nth-child(3) .brand__list__item__image > img {
  width: 10vw;
}
.brand__list__item:nth-child(4) .brand__list__item__image > img {
  width: 9vw;
}
.brand__list__item:nth-child(5) .brand__list__item__image > img {
  width: 7vw;
}
.brand__list__item:nth-child(6) .brand__list__item__image > img {
  width: 8vw;
}
@media screen and (max-width: 768px) {
  .brand__list__item:nth-child(1) .brand__list__item__image > img {
    width: 50%;
  }
  .brand__list__item:nth-child(2) .brand__list__item__image > img {
    width: 80%;
  }
  .brand__list__item:nth-child(3) .brand__list__item__image > img {
    width: 60%;
  }
  .brand__list__item:nth-child(4) .brand__list__item__image > img {
    width: 50%;
  }
  .brand__list__item:nth-child(5) .brand__list__item__image > img {
    width: 40%;
  }
  .brand__list__item:nth-child(6) .brand__list__item__image > img {
    width: 50%;
  }
}
.brand__list__item__image h2 {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 8%;
  margin: auto;
  font-size: 1.4rem;
  color: #333;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .brand__list__item__image h2 {
    position: relative;
    bottom: auto;
    margin: 2rem 0 0;
    font-size: 2.2rem;
    color: #333;
    font-weight: bold;
  }
}
@media screen and (max-width: 768px) {
  .brand__list__item__text {
    width: calc(100% - 35vw);
  }
}
.brand__list__item__text__description {
  margin: 0 0 2rem;
  font-size: 1.1rem;
  color: #666;
  line-height: 2.3;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .brand__list__item__text__description {
    margin: 0 0 1rem;
    font-size: 2rem;
    line-height: 1.9;
  }
}
.brand__list__item__text__link {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .brand__list__item__text__link {
    justify-content: flex-start;
  }
}
.brand__list__item__text__link__item {
  color: #666;
  font-size: 1.2rem;
}
.brand__list__item__text__link__item
  + .brand__list__item__text__link__item::before {
  content: "|";
  margin: 0 0 0 0.3em;
}
.brand__listSmall {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 54.66vw;
  margin: 5rem auto 8rem;
}
.brand__listSmall::after {
  content: "";
  display: block;
  width: 30%;
}
@media screen and (max-width: 768px) {
  .brand__listSmall {
    width: 92.18vw;
    margin: 5rem auto;
  }
  .brand__listSmall::after {
    content: "";
    display: block;
    width: 33.33%;
  }
}
.brand__listSmall__item {
  width: 30%;
  margin: 0 0 2rem;
}
@media screen and (max-width: 768px) {
  .brand__listSmall__item {
    width: 33.33%;
    margin: 0 0 2rem;
  }
}
.brand__listSmall__item__image {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 13vw;
}
@media screen and (max-width: 768px) {
  .brand__listSmall__item__image {
    min-height: 30vw;
  }
}
.brand__listSmall__item__image h3 {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 8%;
  margin: auto;
  font-size: 1.4rem;
  color: #333;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .brand__listSmall__item__image h3 {
    bottom: 0;
    font-size: 2.2rem;
  }
}
.brand__listSmall__item:nth-child(1) .brand__listSmall__item__image > img {
  width: 4vw;
}
.brand__listSmall__item:nth-child(2) .brand__listSmall__item__image > img {
  width: 10vw;
}
.brand__listSmall__item:nth-child(3) .brand__listSmall__item__image > img {
  width: 15vw;
}
.brand__listSmall__item:nth-child(4) .brand__listSmall__item__image > img {
  width: 12vw;
}
.brand__listSmall__item:nth-child(5) .brand__listSmall__item__image > img {
  width: 6vw;
}
.brand__listSmall__item:nth-child(6) .brand__listSmall__item__image > img {
  width: 10vw;
}
.brand__listSmall__item:nth-child(7) .brand__listSmall__item__image > img {
  width: 8vw;
}
.brand__listSmall__item:nth-child(8) .brand__listSmall__item__image > img {
  width: 6vw;
}
.brand__listSmall__item:nth-child(9) .brand__listSmall__item__image > img {
  width: 10vw;
}
@media screen and (max-width: 768px) {
  .brand__listSmall__item:nth-child(1) .brand__listSmall__item__image > img {
    width: 30%;
  }
  .brand__listSmall__item:nth-child(2) .brand__listSmall__item__image > img {
    width: 65%;
  }
  .brand__listSmall__item:nth-child(3) .brand__listSmall__item__image > img {
    width: 100%;
  }
  .brand__listSmall__item:nth-child(4) .brand__listSmall__item__image > img {
    width: 80%;
  }
  .brand__listSmall__item:nth-child(5) .brand__listSmall__item__image > img {
    width: 40%;
  }
  .brand__listSmall__item:nth-child(6) .brand__listSmall__item__image > img {
    width: 60%;
  }
  .brand__listSmall__item:nth-child(7) .brand__listSmall__item__image > img {
    width: 60%;
  }
  .brand__listSmall__item:nth-child(8) .brand__listSmall__item__image > img {
    width: 40%;
  }
  .brand__listSmall__item:nth-child(9) .brand__listSmall__item__image > img {
    width: 60%;
  }
}
.brand__listSmall__item__link {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .brand__listSmall__item__link {
    display: block;
    margin: 1rem 0 0;
  }
}
.brand__listSmall__item__link__item {
  color: #666;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .brand__listSmall__item__link__item {
    margin: 0.6rem 0 0;
    font-size: 1.6rem;
  }
}
.brand__listSmall__item__link__item
  + .brand__listSmall__item__link__item::before {
  content: "|";
  margin: 0 0 0 0.3em;
}
@media screen and (max-width: 768px) {
  .brand__listSmall__item__link__item
    + .brand__listSmall__item__link__item::before {
    content: "";
    margin: 0;
  }
}

/* Shop */
.shop {
  text-align: center;
}
.shop__mv {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 635px;
  margin: 0 0 50px;
  background: url("../img/shop/shop_mv.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.reservationonly{
	text-align: center;
	margin: 20px auto 50px auto;
	padding: 0;
	font-size: 80%;
	}



@media screen and (max-width: 768px) {
  .shop__mv {
    height: calc(100vh - 9.37vw - 12vw);
    height: calc(var(--vh, 1vh) * 100 - 9.37vw - 12vw);
    margin: 0 0 4rem;
    background: url("../img/shop/shop_mv_sp.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    transition: all 2000ms ease-in-out;
  }
	
.reservationonly{
	text-align: center;
	margin: 20px auto 30px auto;
	padding: 0;
	font-size: 80%;
	}	
	
	
	
}
.shop__mv__headline {
  font-size: 3rem;
  letter-spacing: 0.2em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .shop__mv__headline {
    font-size: 6rem;
    line-height: 1.5;
  }
}
.shop__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 80vw;
  margin: 0 auto;
  text-align: left;
}
.shop__list::after {
  content: "";
  display: block;
  width: 27%;
}
@media screen and (max-width: 768px) {
  .shop__list {
    width: 66.27vw;
  }
}
.shop__list__item {
  width: 27%;
  margin: 0 0 10rem;
}
@media screen and (max-width: 768px) {
  .shop__list__item {
    width: 100%;
    margin: 0 0 4rem;
  }
}
.shop__list__item__location {
  margin: 0 0 4rem;
  font-size: 2rem;
  font-weight: bold;
}
.shop__list__item__location::before {
  content: "・";
}
@media screen and (max-width: 768px) {
  .shop__list__item__location {
    margin: 0 0 2rem;
    font-size: 4rem;
    text-align: center;
  }
  .shop__list__item__location::before {
    content: "";
  }
}
.shop__list__item__shopName {
  margin: 0 0 1.6rem;
  padding: 0 0 0.8rem;
  border-bottom: 1px solid #000;
  font-size: 1.4rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .shop__list__item__shopName {
    margin: 0 0 0.8rem;
    padding: 0 0 0.8rem;
    border-bottom: 1px solid #000;
    font-size: 2.4rem;
  }
}
.shop__list__item__detail {
  font-size: 1.4rem;
  line-height: 2;
}
.shop__list__item__merger {
  font-size: 1.2rem;
  line-height: 1.2;
}

@media screen and (max-width: 768px) {
  .shop__list__item__detail {
    font-size: 2.2rem;
    line-height: 1.63;
  }

}
.shop__list__item__linkBtn {
  margin: 1rem 0 0;
}
.shop__list__item__linkBtn > a {
  position: relative;
  display: inline-block;
  padding: 0.8em 4.8em 0.8em 3em;
  font-size: 1.2rem;
  color: #000;
  background-color: rgba(241, 241, 241, 1);
  transition: all 500ms ease-in-out;
}
.shop__list__item__linkBtn > a::after {
  position: absolute;
  top: calc(50% - 0.5em);
  right: 3em;
  content: "";
  width: 1em;
  height: 1em;
  background-image: url("../img/common/icon_external.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.shop__list__item__linkBtn > a:hover {
  color: #fff;
  background-color: rgba(0, 0, 0, 1);
}
.shop__list__item__linkBtn > a:hover::after {
  background-image: url("../img/common/icon_external_white.svg");
}
@media screen and (max-width: 768px) {
  .shop__list__item__linkBtn {
    margin: 1rem 0 0;
  }
  .shop__list__item__linkBtn > a {
    display: block;
    padding: 0.8em 2em 0.8em 0;
    font-size: 2.2rem;
    color: #000;
    text-align: center;
  }
  .shop__list__item__linkBtn > a::after {
    right: 6em;
  }
  .shop__list__item__linkBtn > a:hover {
    color: #fff;
    background-color: rgba(0, 0, 0, 1);
  }
}

.top__copyright__img{
	width: 11px;
	height: auto;
	display: block;
}

.howtowear__subtitle{
	font-size: 12px;
	display: block;
    margin-top: 5px;
}

.philosophy__point1__text{
/*
	position: absolute;
    top: 0vw;
    left: 50%;
    color: #000;
*/
    padding-top: 80px;
}



.philosophy__point1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 8rem 0 0;
  padding: 0 0 0 45vw;
  width: 100%;
  height: 800px;
  color: #fff;
  overflow: hidden;
}

.philosophy__howtowear__00__text{
	font-size: 13px;
    text-align: left;
    line-height: 3rem;
    margin-top: 40px;
}

.philosophy__howtowear__01__text{
	font-size: 13px;
    text-align: left;
    line-height: 3rem;
    margin-top: 40px;
}

.philosophy__howtowear__03 {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
	width: 85%;
	margin: 0 auto;
  align-items: top;
/*   padding-right: 100px; */
  }

.philosophy__another__text{
	font-weight: bold;
    font-size: 3rem;
    text-align: center;
}

.philosophy__another__subtext{
	font-weight: bold;
    font-size: 2rem;
    text-align: center;
}

.philosophy__another__wrap{
	line-height: 4rem;
    text-align: right;
}

.philosophy__point1__text__catch__sub{
	    font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
  .philosophy__point1 {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 130vw;
    padding: 57vw 0 0;
    color: #fff;
    overflow: hidden;
  }
 .philosophy__howtowear__00__text{
    font-size: 2.4rem;
    line-height: 5rem;    
}

 .philosophy__howtowear__01__text{
	margin-top: 0vw;
    font-size: 2.4rem;
    line-height: 5rem;    
}

.philosophy__howtowear__03 {
    flex-wrap: wrap-reverse;
}
.philosophy__howtowear__03 {
  padding-right: 0;
  }

.philosophy__howtowear__03 {
	width: 90%;
  }
/*
  .philosophy__point1__text {
    top: 50vw;
    left: 25vw;
	}
*/
	.philosophy__point1__text {
/*
	    top: 0vw;
	    left: 15vw;
*/
		top: 0vw;
		left: 4vw;
		width: 90%;
		margin: auto;
	}
}
.philosophy__point1__image {
  position: absolute;
  top: -4vw;
  left: 0;
  z-index: -1;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .philosophy__point1__image {
    display: none;
  }
}
.philosophy__point1__spImage {
  display: none;
}
@media screen and (max-width: 768px) {
  .philosophy__point1__spImage {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
  }
}

.philosophy__point1__text__catch {
  letter-spacing: 0.2em;
  font-size: 4.2rem;
  font-family: century-gothic, 游明朝, "Yu Mincho", YuMincho,
    "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo,
    serif;
 padding-bottom: 30px;
}

.philosophy__point1__pc__wrap{
	display: block;
}
  .philosophy__point1__wrap{
	  display: none;
  }
@media screen and (max-width: 768px) {
  .philosophy__point1__text__catch {
    font-size: 5.6rem;
    position: relative;
    left: 0.2em;
    padding-bottom: 15px;
  }
  .philosophy__point1__wrap{
	  display: block;
  }
  .philosophy__point1__pc__wrap{
	display: none;
}
}






