@charset "UTF-8";

/*common---------------------*/
html {
  scroll-behavior: smooth;
}

img {
  width: 100%;
  height: auto;
}


/*ヘッダーメニュー---------------------*/
.p-header-hamburger__menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 25px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  z-index: 1002;
  background: #433131;
}
@media screen and (max-width: 768px) {
  .p-header-hamburger__menu {
    top: 0;
    right: 0;
    width: 56px;
    height: 50px;
    gap: 8px;
    padding: 15px 15px;
  }
}

.p-header-hamburger__line {
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
  display: block;
}
@media screen and (max-width: 768px) {
  .p-header-hamburger__line {
    height: 1px;
  }
}

/* アクティブ状態（Xアニメーション） */
.p-header-hamburger__menu.active .p-header-hamburger__line:nth-child(1) {
  rotate: 45deg;
  translate: 0 15px;
}
@media screen and (max-width: 768px) {
  .p-header-hamburger__menu.active .p-header-hamburger__line:nth-child(1) {
    rotate: 35deg;
    translate: 0 10px;
  }
}

.p-header-hamburger__menu.active .p-header-hamburger__line:nth-child(2) {
  opacity: 0;
}

.p-header-hamburger__menu.active .p-header-hamburger__line:nth-child(3) {
  rotate: -45deg;
  translate: 0 -14px;
}
@media screen and (max-width: 768px) {
  .p-header-hamburger__menu.active .p-header-hamburger__line:nth-child(3) {
    rotate: -35deg;
    translate: 0 -8px;
  }
}

/* オーバーレイ */
.p-header-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 999;
}

.p-header-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* スライドメニュー */
.p-header-slide__menu.overlay-menu {
  position: fixed;
  top: 0;
  right: -600px;
  width: 600px;
  height: 100vh;
  background: #433131;
  transition: right 0.3s ease-in-out;
  z-index: 1000;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .p-header-slide__menu.overlay-menu {
    right: -100%;
    width: 100%;
  }
}
.p-header-slide__menu.overlay-menu.active {
  right: 0;
}

.p-header-slide__list {
  list-style: none;
  padding: 117px 0 0 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .p-header-slide__list {
    padding: 90px 0 0 0;
  }
}

.p-header-slide__list li {
  margin: 0;
  padding: 0;
}

.p-header-slide__list a {
  display: block;
  padding: 15px 30px;
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  font-family: "Baskervville", serif;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-header-slide__list a {
    max-width: 200px;
    width: 100%;
    font-size: 20px;
    text-align: left;
    position: relative;
    line-height: 1;
    padding: 10px 0;
    margin: 0 auto;
  }
  .p-header-slide__list a::before {
    content: "";
    display: block;
    position: absolute;
    width: 9px;
    height: 12px;
    background: url(../img/menu_arrrow.svg) no-repeat center center / contain;
    top: 50%;
    right: 0;
    translate: 0 -50%;
  }
}

.p-header-slide__list a span {
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .p-header-slide__list a span {
    font-size: 10px;
  }
}

.p-header-slide__list a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.p-header-slide__title {
  max-width: 120px;
  margin: 60px auto 0;
}
@media screen and (max-width: 768px) {
  .p-header-slide__title {
    max-width: 100px;
    margin: 60px auto 0;
  }
}

/*ブランドストーリー---------------------*/
.p-main-content-brand-story{
  background: #E5E5E5;
}

/*コンセプト---------------------*/
.p-main-content-concept{
  background: #E5E5E5;
}

/*フィロソフィー---------------------*/
.p-main-content-philosophy{
  background: #E5E5E5;
}

/*ラインナップ---------------------*/
.p-main-content-line-up{
  background: #F9F9F9;
}

.p-main-content-line-up-inner{
  padding: 0 13vw;
}
@media screen and (max-width: 768px) {
  .p-main-content-line-up-inner {
    padding: 0 7vw;
  }
}

.p-main-content-line-up-inner-area{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 2.5vw;
  row-gap: 2.5vw;
  padding-bottom: 134px;
}
@media screen and (max-width: 768px) {
  .p-main-content-line-up-inner-area{
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 10.8vw;
    padding-bottom: 26.8vw;
  }
}

.p-main-content-line-up-inner-area-item__title{
  margin: 32px 0 14px;
  font-size: clamp(12px,1.4vw,50px);
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .p-main-content-line-up-inner-area-item__title{
    margin: 5vw 0 14px;
    font-size: clamp(12px,5.4vw,50px);
  }
}

.p-main-content-line-up-inner-area-item__title span{
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: clamp(18px,2.2vw,50px);
}
@media screen and (max-width: 768px) {
  .p-main-content-line-up-inner-area-item__title span{
    font-size: clamp(18px,8.6vw,60px);
  }
}

.p-main-content-line-up-inner-area-item__link{
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: clamp(14px,1.5vw,50px);
  display: block;
  width: 11.5vw;
  padding: 0.8vw 0;
  text-align: center;
  border: 1px solid #433131;
  line-height: 1.4;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-main-content-line-up-inner-area-item__link{
    font-size: clamp(14px,5.9vw,50px);
    width: 43.2vw;
    padding: 2.4vw 0;
  }
}


@media screen and (min-width: 769px) {
  .p-main-content-line-up-inner-area-item__link{
    opacity: 1;
    transition: 0.3s ease;
  }
  
  .p-main-content-line-up-inner-area-item__link:hover{
    opacity: 0.5;
  }
}

/*cta---------------------*/
.p-main-content-cta{
  position: relative;
}

.p-main-content-cta__button{
  position: absolute;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: clamp(10px,1.3vw,40px);
  color: #433131;
  background: #fff;
  padding: 14px 25px;
  bottom: 2.8vw;
  right: 3vw;
}
@media screen and (max-width: 768px) {
  .p-main-content-cta__button{
    font-size: 13.5px;
    padding: 6px 12px;
    bottom: 2.1vw;
    right: 2.1vw;
    padding: 6px 12px;
  }
}

/*Instagram---------------------*/
.p-main-content-instagram{
  background: #fff;
  padding-bottom: 10vw;
}
@media screen and (max-width: 768px) {
  .p-main-content-instagram{
    padding-bottom: 21.4vw;
  }
}

.p-main-content-instagram-inner{
  padding: 0 12vw;
}
@media screen and (max-width: 768px) {
  .p-main-content-instagram-inner {
    padding: 0 7vw;
  }
}

.p-main-content-instagram-inner-area{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 2.5vw;
  row-gap: 2.5vw;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .p-main-content-instagram-inner-area{
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 5.1vw;
    row-gap: 5.1vw;
    padding-bottom: 10.8vw;
  }
  .p-main-content-instagram-inner-area-item:nth-of-type(1){
    order: 0;
  }
  .p-main-content-instagram-inner-area-item:nth-of-type(2){
    order: 2;
  }
  .p-main-content-instagram-inner-area-item:nth-of-type(3){
    order: 5;
  }
  .p-main-content-instagram-inner-area-item:nth-of-type(4){
    order: 3;
  }
  .p-main-content-instagram-inner-area-item:nth-of-type(5){
    order: 1;
  }
  .p-main-content-instagram-inner-area-item:nth-of-type(6){
    order: 4;
  }
}

.p-main-content-instagram-inner-area-item__title{
  margin: 32px 0 14px;
  font-size: clamp(16px,2vw,20px);
  text-align: center;
  line-height: 1.6;
}

.p-main-content-instagram-inner__button{
  width: 26vw;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-main-content-instagram-inner__button{
    width: 76.6vw;
  }
}

@media screen and (min-width: 769px) {
  .p-main-content-instagram-inner__button{
    opacity: 1;
    transition: 0.3s ease;
  }
  
  .p-main-content-instagram-inner__button:hover{
    opacity: 0.5;
  }
}


/*メンバーシップ---------------------*/
.p-main-content-member-ship{
  background: #F9F9F9;
  padding-bottom: 11vw;
}
@media screen and (max-width: 768px) {
  .p-main-content-member-ship{
    padding-bottom: 19.3vw;
  }
}

.p-main-content-member-ship__img{
  margin-bottom: 3vw;
  display: block;
}
@media screen and (max-width: 768px) {
  .p-main-content-member-ship__img{
    margin-bottom: 10.7vw;
  }
}

.p-main-content-member-ship__button{
  display: block;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: clamp(12px,1.5vw,50px);
  display: block;
  width: 15.5vw;
  padding: 0.6vw 0;
  text-align: center;
  border: 1px solid #433131;
  line-height: 1.4;
  margin: 0 auto;
  color: #433131;
}
@media screen and (max-width: 768px) {
  .p-main-content-member-ship__button{
    font-size: clamp(12px,5.9vw,50px);
    width: 50.4vw;
    padding: 2.7vw 0;
    font-weight: 400;
  }
}


/*フッター---------------------*/
footer {
  padding: 160px 0;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 26.8vw 0;
  }
}

.p-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.p-footer-inner__logo{
  max-width: 180px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-footer-inner__logo{
    max-width: 36.8vw;
  }
}

.p-footer-inner__icon{
  display: flex;
  max-width: 155px;
  margin: 80px auto 0;
  column-gap: 6px;
}
@media screen and (max-width: 768px) {
  .p-footer-inner__icon{
    max-width: 156px;
    margin: 40px auto 0;
    column-gap: 6px;
  }
}

.p-footer-inner__link{
  display: flex;
  max-width: 1000px;
  margin: 32px auto;
  column-gap: 24px;
  font-size: 20px;
  line-height: 2.2;
  padding: 0 20px;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
}
@media screen and (max-width:1000px) {
  .p-footer-inner__link{
    font-size: 1.9vw;
    justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  .p-footer-inner__link{
    flex-direction: column;
    align-items: center;
    margin: 24px auto;
    line-height: 2.5;
    font-size: 20px;
  }
}

.p-footer-inner__copyright{
  font-size: 16px;
  display: block;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-footer-inner__copyright{
    font-size: 12px;
  }
}