@charset "UTF-8";
/* ===========================================
 * MIXIN
 * ======================================== */
/* ===========================================
 * 基本設定
 * ======================================== */
:root {
  --white: #fff;
  --primary: #231815;
  --gray: #c5c5c5;
}

html {
  font-size: 62.5%;
  font-family: "Helvetica Neue", Arial, Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans", sans-serif;
}

body {
  font-size: 1.6rem;
}

.meiryo {
  font-family: "メイリオ", Meiryo "Hiragino Kaku Gothic ProN";
}

ol,
ul {
  list-style-type: none;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 300ms ease;
}
a:hover {
  opacity: 0.8;
  transition: all 300ms ease;
}

.sp_only {
  display: none;
}

a[href*="tel:"] {
  pointer-events: none;
}

.fade,
.load {
  opacity: 0;
  transform: translateY(30px);
  transition: all 800ms ease;
}
.fade.is_viewed,
.load.is_viewed {
  opacity: 1;
  transform: translateY(0);
  transition: all 800ms ease;
}

.delay {
  transition-delay: 300ms !important;
}

.delay02 {
  transition-delay: 600ms !important;
}

.delay03 {
  transition-delay: 900ms !important;
}

.delay04 {
  transition-delay: 1200ms !important;
}

.delay05 {
  transition-delay: 1500ms !important;
}

.delay06 {
  transition-delay: 1800ms !important;
}

/* ===========================================
 * ヘッダー
 * ======================================== */
#about .l-header {
  background: none;
  height: 70px;
}
/* #about .l-header__ham.is_active + .l-header__logo {
  display: none;
}
#about .l-header__ham {
  display: block;
}
#about .l-header__logo {
  display: none;
}
#about .l-header__nav {
  display: none;
} */

#top .l-header #hamburger,
#about .l-header #hamburger,
#feature .l-header #hamburger,
#news .l-header #hamburger,
#news_detail .l-header #hamburger,
#collection .l-header #hamburger,
#shop .l-header #hamburger {
  display: none;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  height: 90px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.l-header__ham {
  display: none;
  position: absolute;
  width: 37px;
  height: 25px;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.l-header__ham.is_active .l-header__ham-box .l-header__ham-box-item:nth-child(1) {
  width: 19px;
  top: 50%;
  transform: rotateZ(45deg);
  transition: all 300ms ease;
  margin-left: -10px;
}
.l-header__ham.is_active .l-header__ham-box .l-header__ham-box-item:nth-child(2) {
  opacity: 0;
  transition: all 300ms ease;
}
.l-header__ham.is_active .l-header__ham-box .l-header__ham-box-item:nth-child(3) {
  width: 19px;
  top: 50%;
  margin-top: -1px;
  transform: rotate(-45deg);
  transition: all 300ms ease;
  margin-right: -11px;
}
.l-header__ham-box {
  height: 15px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
}
.l-header__ham-box-item {
  position: absolute;
  border-top: 1px solid var(--primary);
}
.l-header__ham-box-item:nth-child(1) {
  left: 50%;
  top: 0;
  width: 12px;
  margin-left: -9px;
  transition: all 300ms ease;
}
.l-header__ham-box-item:nth-child(2) {
  top: 50%;
  width: 17px;
  left: 50%;
  margin-top: 0px;
  margin-left: -9px;
  transition: all 300ms ease;
}
.l-header__ham-box-item:nth-child(3) {
  bottom: 0;
  right: 50%;
  width: 12px;
  transition: all 300ms ease;
  margin-right: -9px;
}
.l-header__logo {
  width: 250px;
  height: auto;
  transition: all 300ms ease;
  opacity: 1;
  position: relative;
  top: 20px;
}
.l-header__logo img {
  width: 100%;
  height: auto;
}
.l-header__nav {
  position: fixed;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  font-size: 1.5rem;
}
.l-header__nav li {
  margin-right: 53px;
  letter-spacing: 0.05em;
}
.l-header__nav li.l-dropdown a {
  padding-bottom: 24px;
}
.l-header__nav li:last-child {
  margin-right: 0;
}
.l-header__menu {
  position: fixed;
  top: 90px;
  left: 0;
  background: rgba(255, 255, 255, 0.4);
  width: 100%;
  padding-top: 82px;
  padding-bottom: 80px;
  opacity: 0;
  pointer-events: none;
  transition: all 300ms ease;
}
.l-header__menu.is_open {
  opacity: 1;
  pointer-events: all;
  transition: all 300ms ease;
}
.l-header__menu--list {
  display: flex;
  justify-content: center;
  position: relative;
  right: 50px;
}
.l-header__menu--list--item:nth-child(1) {
  margin-right: 115px;
}
.l-header__menu--list--item:nth-child(2) {
  margin-right: 85px;
}
.l-header__menu--list--item:nth-child(3) {
  margin-right: 120px;
}
.l-header__menu--list--item:nth-child(4) {
  margin-right: 100px;
}
.l-header__menu--list--item:nth-child(5) {
  margin-right: 130px;
}
.l-header__menu--list--item:last-child {
  margin-right: 0;
}
.l-header__menu--list--item p {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  margin-bottom: 40px !important;
}
.l-header__menu--list--item ul li {
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}
.l-header__menu--list--item ul li:last-child {
  margin-bottom: 0;
}

.l-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
}
.l-logo__img {
  margin-bottom: 30px;
  width: 290px;
  height: auto;
}
.l-logo__img img {
  width: 100%;
  height: auto;
}
.l-logo__txt {
  font-size: 1.7rem;
  color: var(--white);
}

/* ===========================================
 * フッター
 * ======================================== */
#about .l-footer {
  margin-bottom: 0;
}
#about .l-footer__sns {
  bottom: 150px;
  left: 50%;
  position: fixed;
  transform: translateX(-50%);
  z-index: 10;
  width: 100%;
  margin-bottom: 0;
}
#about .l-footer__copy {
  bottom: 63px;
  left: 50%;
  position: fixed;
  transform: translateX(-50%);
  z-index: 10;
  width: 100%;
  margin-bottom: 0;
}
#about .l-footer__nav {
  bottom: 30px;
  left: 50%;
  position: fixed;
  transform: translateX(-50%);
  z-index: 10;
  width: 100%;
}
#about .l-footer__drawer.is_active {
  display: block;
}

.l-footer {
  margin-bottom: 25px;
}
.l-footer__sns {
  margin-bottom: 65px;
  display: flex;
  justify-content: center;
}
.l-footer__sns li {
  margin-right: 30px;
}
.l-footer__sns li:last-child {
  margin-right: 0;
}
.l-footer__sns li.youtube img {
  width: 27px;
  height: 25px;
}
.l-footer__sns li.tiktok img {
  width: 25px;
  height: 25px;
}
.l-footer__sns li.insta img {
  width: 25px;
  height: 25px;
}
.l-footer__copy {
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.3rem;
  color: var(--primary);
}
.l-footer__nav {
  text-align: center;
  font-size: 1.3rem;
  display: flex;
  justify-content: center;
}
.l-footer__nav li {
  margin-right: 28px;
}
.l-footer__nav li:last-child {
  margin-right: 0;
}
.l-footer__nav li a {
  color: var(--primary);
}
.l-footer__drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  background: var(--white);
  opacity: 0;
  pointer-events: none;
  transition: all 800ms ease;
}
.l-footer__drawer.is_active {
  opacity: 1;
  pointer-events: all;
  transition: all 800ms ease;
}
.l-footer__inner {
  max-width: 780px;
  width: 100%;
  margin-inline: auto;
  margin-top: 100px;
  height: 100%;
  overflow: auto;
  padding-bottom: 200px;
}
.l-footer__inner-logo {
  margin-bottom: 90px;
  width: 200px;
  height: auto;
}
.l-footer__inner-logo img {
  width: 100%;
  height: auto;
}
.l-footer__inner-nav {
  margin-bottom: 100px;
}
.l-footer__inner-nav > li {
  margin-bottom: 50px;
  letter-spacing: 0.1em;
}
.l-footer__inner-nav > li:last-child {
  margin-bottom: 0;
}
.l-footer__inner-sns {
  display: flex;
}
.l-footer__inner-sns li {
  margin-right: 30px;
}
.l-footer__inner-sns li.youtube img {
  width: 27px;
  height: 25px;
}
.l-footer__inner-sns li.tiktok img {
  width: 25px;
  height: 25px;
}
.l-footer__inner-sns li.insta img {
  width: 25px;
  height: 25px;
}
.l-footer .l-toggle {
  margin-bottom: 25px;
}
.l-footer .l-toggle.is_open {
  margin-bottom: 25px;
}
.l-footer .l-toggle.is_open > a::before {
  transition: all 300ms ease;
}
.l-footer .l-toggle.is_open > a::after {
  transition: all 300ms ease;
  transform: rotate(0deg);
}
.l-footer .l-toggle.is_open .l-toggle__list {
  border-bottom: 1px solid var(--gray);
}
.l-footer .l-toggle.is_open .l-toggle__list--body {
  border-top: 1px solid var(--gray);
}
.l-footer .l-toggle > a {
  height: 33px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
}
.l-footer .l-toggle > a::before {
  content: "";
  position: absolute;
  top: 50%;
  background: var(--primary);
  transition: all 300ms ease;
  right: 10px;
  width: 12px;
  height: 2px;
}
.l-footer .l-toggle > a::after {
  content: "";
  position: absolute;
  top: 50%;
  background: var(--primary);
  transform: rotate(-90deg);
  transition: all 300ms ease;
  right: 10px;
  width: 12px;
  height: 2px;
}
.l-footer .l-toggle__list {
  height: 0;
  overflow: hidden;
  transition: all 0.5s;
}
.l-footer .l-toggle__list--body--item {
  display: flex;
  border-bottom: 1px solid var(--gray);
  padding-top: 20px;
  padding-bottom: 20px;
}
.l-footer .l-toggle__list--body--item:nth-last-of-type(1) {
  padding-bottom: 0;
}
.l-footer .l-toggle__list--body--item > div {
  width: 50%;
}
.l-footer .l-toggle__list--body--item > div:nth-last-child(1) {
  padding-left: 8px;
}
.l-footer .l-toggle__list--body--item > div p {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.l-footer .l-toggle__list--body--item > div ul li {
  margin-bottom: 15px;
  font-size: 1.1rem;
}
.l-footer .l-toggle__list--body--item > div ul li:last-child {
  margin-bottom: 0;
}

/* ===========================================
 * ボタン
 * ======================================== */
.c-btn {
  width: 190px;
  height: 40px;
}
.c-btn span,
.c-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
/*  border: 1px solid var(--white);*/
  border: 1px solid #000; /* 追加分 */
  width: 100%;
  height: 100%;
/*  color: var(--white);*/
  color: #000; /* 追加分 */
  font-size: 1.1rem;
  letter-spacing: 0.2em;
}
.c-btn span:hover,
.c-btn a:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* ===========================================
 * ページトップリンク
 * ======================================== */
.c_pagetop {
  position: fixed;
  bottom: 20px;
  right: 10px;
  width: 50px;
  height: 50px;
  z-index: 20;
}
.c_pagetop a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c_pagetop a img {
  width: 35px;
  height: 35px;
}

/* ===========================================
 * TOP
 * ======================================== */
.l-video {
  position: relative;
  width: 100%;
  height: 100dvh;
}
.l-video__box {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.l-video__box img,
.l-video__box video {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
}
.l-video__txt {
  position: absolute;
  bottom: 60px;
  left: 50px;
  color: var(--white);
  z-index: 1;
}
.l-video__txt h2 {
  font-size: 2.4rem;
  letter-spacing: 0.2em;
  margin-bottom: 18px;
}
.l-video__txt p {
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  margin-bottom: 40px;
}

.l-mv {
  position: fixed;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  pointer-events: none;
  background: url(../images/top/mv.jpg);
  background-size: cover;
  background-position: center;
}
.l-mv::before {
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(35, 24, 21, 0.1);
  z-index: 1;
  position: absolute;
}

.l-row {
  display: flex;
}
.l-row.row02 {
  margin-bottom: 150px;
}
.l-row__col {
  position: relative;
  width: 50%;
}
.l-row__col--link video,
.l-row__col--link img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.l-row__col--link--txt {
  position: absolute;
  bottom: 60px;
  left: 50px;
  color: var(--white);
}
.l-row__col--link--txt h2 {
  color: #000; /* 追加分 */
  font-size: 2.4rem;
  letter-spacing: 0.2em;
  margin-bottom: 18px;
}
.l-row__col--link--txt p {
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  margin-bottom: 40px;
}

.l-row02__link {
  display: flex;
}
.l-row02__link--col {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  width: 50%;
}
.l-row02__link--col video,
.l-row02__link--col img {
  width: 100%;
  height: auto;
}
.l-row02__link--col p {
  font-size: 2.8rem;
  letter-spacing: 0.2em;
  font-weight: bold;
  line-height: 1.3;
}
.l-row02__link--col span {
  letter-spacing: 0.2em;
  line-height: 1.3;
  font-size: 1.8rem;
  display: block;
  margin-top: 20px;
}

.l-row03 {
  position: relative;
}
.l-row03__img img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.l-row03__img02 {
  position: absolute;
  left: 50%;
  bottom: 105px;
  transform: translateX(-50%);
  max-width: 83.3333333333vw;
  width: 100%;
  height: auto;
}

.l-row04 {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 200px;
}
.l-row04__col {
  width: 33.3333%;
}
.l-row04__col video,
.l-row04__col img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* ===========================================
 * ABOUT
 * ======================================== */
#about .l-about__ttl {
  position: absolute;
  top: 165px;
  left: 160px;
  z-index: 10;
  line-height: 1;
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
}
#about .l-about__mv {
  position: fixed;
  width: 40.1041666667vw;
  z-index: 1;
  padding-left: 8.3333333333vw;
  top: 23.9583333333vh;
  height: 100%;
  display: flex;
  flex-direction: column;
}
#about .l-about__mv-box {
  width: 26.0416666667vw;
}
#about .l-about__mv-box img {
  width: 415px;
  height: auto;
  margin-bottom: 2.0833333333vh;
}
#about .l-about__mv-box-ttlsp {
  display: none;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: left;
  line-height: 1;
  font-size: 1.5rem;
}
#about .l-about__mv-box-txt p {
  font-size: 1.1rem;
  letter-spacing: 0.22em;
  line-height: 3;
}
#about .l-about__mv-box-txt p.mb_pattrn01 {
  margin-bottom: 3.9583333333vh;
  font-weight: bold;
}
#about .l-about__mv-box-txt p.mb_pattrn02 {
  margin-bottom: 3.0208333333vh;
}
#about .l-about__mv-box-txt p:last-child {
  margin-bottom: 0;
}
#about .l-about__mv-box-txt p.fwb {
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  font-weight: bold;
  margin-bottom: 4.9479166667vh;
}
#about .l-about .l-swiper {
  margin-left: 40.1041666667vw;
}
#about .l-about .l-swiper .swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100vh;
  /* ===========================================
  * ABOUT スライド画像 設定変更箇所
  * ======================================== */
}
#about .l-about .l-swiper .swiper .swiper-wrapper .swiper-slide.slide01 {
  background: url(../images/about/mv01.jpg);
  background-position: center;
  background-size: cover;
}
#about .l-about .l-swiper .swiper .swiper-wrapper .swiper-slide.slide02 {
  background: url(../images/about/mv02.jpg);
  background-position: center;
  background-size: cover;
}
#about .l-about .l-swiper .swiper .swiper-wrapper .swiper-slide.slide03 {
  background: url(../images/about/mv03.jpg);
  background-position: center;
  background-size: cover;
}
#about .l-about .l-video {
  width: 59.8958333333vw;
  left: 40.1041666667vw;
}

/* ===========================================
 * SHOP
 * ======================================== */
#shop .l-shop {
  margin-top: 165px;
}
#shop .l-shop__ttl {
  font-size: 1.8rem;
  text-align: center;
  line-height: 1;
  margin-bottom: 100px;
  letter-spacing: 0.05em;
}
#shop .l-shop__list {
  margin-bottom: 100px;
}
#shop .l-shop__list--dt {
  font-weight: bold;
  letter-spacing: 0.2em;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1;
  text-align: center;
  margin-bottom: 65px;
}
#shop .l-shop__list--dd {
  max-width: 1080px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-family: "メイリオ", Meiryo "Hiragino Kaku Gothic ProN";
}
#shop .l-shop__list--dd ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
#shop .l-shop__list--dd ul li {
  max-width: 340px;
  width: 100%;
}
#shop .l-shop__list--dd ul li h2 {
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  line-height: 1;
  margin-bottom: 25px;
}
#shop .l-shop__list--dd ul li p {
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  line-height: 2;
}
#shop .l-shop__list--dd ul li p.map {
  font-size: 1.1rem;
}
#shop .l-shop__list--dd ul li p.store {
  font-size: 1.1rem;
}
#shop .l-shop__list--dd ul li p.store .shop {
  margin-right: 5px;
}
#shop .l-shop__list--dd ul li p:nth-of-type(1) {
  margin-bottom: 28px;
}
#shop .l-shop__list--dd ul li p:nth-of-type(2) {
  margin-bottom: 18px;
  line-height: 1;
}
#shop .l-shop__list--dd ul li p:nth-of-type(3) {
  margin-bottom: 5px;
}
#shop .l-shop__list--dd ul li p a .map {
  width: 8px;
  height: 12px;
  margin-right: 5px;
}
#shop .l-shop__list--dd ul li p a .shop {
  width: 14px;
  height: 12px;
}
#shop .l-shop__list02 .l-shop__list--dd ul {
  justify-content: flex-start;
}
#shop .l-shop__list02 .l-shop__list--dd ul li {
  margin-bottom: 55px;
  margin-right: 30px;
}
#shop .l-shop__list02 .l-shop__list--dd ul li:nth-child(3n) {
  margin-right: 0;
}
#shop .l-shop__list02 .l-shop__list--dd ul li:nth-child(n+4) {
  margin-bottom: 0;
}

/* ===========================================
 * FEATURE
 * ======================================== */
#feature .l-feature {
  margin-top: 165px;
  margin-bottom: 200px;
}
#feature .l-feature__ttl {
  font-size: 1.8rem;
  text-align: center;
  line-height: 1;
  margin-bottom: 105px;
  letter-spacing: 0.05em;
}
#feature .l-feature__blk {
  max-width: 1080px;
  width: 100%;
  margin-inline: auto;
}
#feature .l-feature__blk:nth-of-type(1), #feature .l-feature__blk:nth-of-type(2) {
  opacity: 0;
  transform: translateY(30px);
  transition: all 800ms ease;
}
#feature .l-feature__blk:nth-of-type(1).is_viewed, #feature .l-feature__blk:nth-of-type(2).is_viewed {
  opacity: 1;
  transform: translateY(0);
  transition: all 800ms ease;
}
#feature .l-feature__blk--link--item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
#feature .l-feature__blk--link--item--img {
  max-width: 720px;
  width: 100%;
}
#feature .l-feature__blk--link--item--img img {
  width: 100%;
  height: auto;
}
#feature .l-feature__blk--link--item--txt {
  max-width: 320px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
#feature .l-feature__blk--link--item--txt h2 {
  font-size: 2.8rem;
  line-height: 1.3;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
#feature .l-feature__blk--link--item--txt p {
  letter-spacing: 0.2em;
  line-height: 1.3;
  font-size: 1.8rem;
  font-weight: bold;
}

/* ===========================================
 * FEATURE DETAIL
 * ======================================== */

 #feature_detail {
  margin: 0;
 }
 #feature_detail .l-header img {
  vertical-align: unset;
 }
 #feature_detail .l-footer__inner-logo img {
  vertical-align: unset;
 }

 #feature_detail .l-feature_detail {
  margin-top: 90px;
  margin-bottom: 200px;
 }

/* ===========================================
 * COLLECTION
 * ======================================== */
#collection .l-collection {
  margin-top: 165px;
}
#collection .l-collection #photographe {
  margin-top: -120px;
  padding-top: 120px;
}
#collection .l-collection__ttl {
  font-size: 1.8rem;
  text-align: center;
  line-height: 1;
  margin-bottom: 105px;
  letter-spacing: 0.05em;
}
#collection .l-collection__body {
  max-width: 1080px;
  width: 100%;
  margin-inline: auto;
  margin-bottom: 200px;
}
#collection .l-collection__body video,
#collection .l-collection__body img {
  max-width: 100%;
  vertical-align: bottom;
}
#collection .l-collection__body .heading {
  border-bottom: 3px solid var(--primary);
  border-top: 3px solid var(--primary);
  font-size: 2.6rem;
  letter-spacing: 0.21em;
  padding-top: 20px;
  padding-bottom: 18px;
  margin-bottom: 28px;
}
#collection .l-collection__body .heading02 {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.065em;
  margin-bottom: 100px;
}
#collection .l-collection__body--mov {
  margin-bottom: 150px;
}
#collection .l-collection__body--mov video,
#collection .l-collection__body--mov img {
  width: 100%;
}
#collection .l-collection__body--mov02 {
  margin-bottom: 55px;
}
#collection .l-collection__body--mov02 video,
#collection .l-collection__body--mov02 img {
  width: 100%;
}
#collection .l-collection__body--img {
  margin-bottom: 150px;
}
#collection .l-collection__body--imgfull {
  margin-left: auto;
  text-align: right;
  margin-bottom: 105px;
}
#collection .l-collection__body--imgfull a {
  display: block;
  margin-bottom: 24px;
}
#collection .l-collection__body--imgfull a img {
  width: 100%;
}
#collection .l-collection__body--imgfull p {
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}
#collection .l-collection__body--imgfull p a {
  display: inline-block;
}
#collection .l-collection__body--imgright {
  margin-left: auto;
  text-align: right;
  margin-bottom: 105px;
}
#collection .l-collection__body--imgright a {
  display: inline-block;
  margin-bottom: 24px;
}
#collection .l-collection__body--imgright p {
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}
#collection .l-collection__body--imgleft {
  margin-bottom: 105px;
}
#collection .l-collection__body--imgleft--blk {
  display: inline-block;
}
#collection .l-collection__body--imgleft--blk a {
  display: inline-block;
  margin-bottom: 24px;
}
#collection .l-collection__body--imgleft--blk p {
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}
#collection .l-collection__body--imgleft--blk p.txt_r {
  text-align: right;
}
#collection .l-collection__body--imgcenter {
  margin-bottom: 105px;
  text-align: center;
  margin-inline: auto;
}
#collection .l-collection__body--imgcenter--blk {
  display: inline-block;
}
#collection .l-collection__body--imgcenter--blk a {
  display: inline-block;
  margin-bottom: 24px;
}
#collection .l-collection__body--imgcenter--blk p {
  text-align: right;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}
#collection .l-collection__body--row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  margin-top: 50px;
}
#collection .l-collection__body--row.reverse .l-collection__body--row--thumb {
  order: 2;
}
#collection .l-collection__body--row--ttl {
  display: none;
}
#collection .l-collection__body--row--thumb {
  max-width: 380px;
  width: 100%;
}
#collection .l-collection__body--row--thumb img {
  vertical-align: bottom;
  margin-bottom: 8px;
}
#collection .l-collection__body--row--thumb p {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}
#collection .l-collection__body--row--txt {
  max-width: 650px;
  width: 100%;
}
#collection .l-collection__body--row--txt h2 {
  font-size: 1.8rem;
  letter-spacing: 0.064em;
  margin-bottom: 50px;
}
#collection .l-collection__body--row--txt h2 span {
  display: block;
  font-size: 2rem;
  margin-bottom: 18px;
}
#collection .l-collection__body--row--txt--group {
  font-size: 1.3rem;
  margin-bottom: 40px;
}
#collection .l-collection__body--row--txt--group p {
  line-height: 2;
  letter-spacing: 0.2em;
}
#collection .l-collection__body--row--txt ul li {
  margin-bottom: 4px;
}
#collection .l-collection__body--row--txt ul li a {
  font-size: 1.1rem;
  letter-spacing: 0.19em;
}
#collection .l-collection__body--list {
  display: flex;
  gap: 45px;
}
#collection .l-collection__body--list li {
  max-width: 330px;
  width: 100%;
}

/* ===========================================
 * NEWS
 * ======================================== */
#news .l-news {
  margin-top: 165px;
  margin-bottom: 200px;
}
#news .l-news__ttl {
  font-size: 1.8rem;
  text-align: center;
  line-height: 1;
  margin-bottom: 105px;
  letter-spacing: 0.05em;
}
#news .l-news__list {
  display: flex;
  flex-wrap: wrap;
  max-width: 1080px;
  width: 100%;
  margin-inline: auto;
  gap: 45px;
}
#news .l-news__list--item {
  max-width: 330px;
  width: 100%;
}
#news .l-news__list--item:nth-of-type(1), #news .l-news__list--item:nth-of-type(2), #news .l-news__list--item:nth-of-type(3) {
  opacity: 0;
  transform: translateY(30px);
  transition: all 800ms ease;
}
#news .l-news__list--item:nth-of-type(1).is_viewed, #news .l-news__list--item:nth-of-type(2).is_viewed, #news .l-news__list--item:nth-of-type(3).is_viewed {
  opacity: 1;
  transform: translateY(0);
  transition: all 800ms ease;
}
#news .l-news__list--item a img {
  vertical-align: bottom;
  margin-bottom: 14px;
  width: 100%;
  height: auto;
}
#news .l-news__list--item a p {
  font-size: 1.1rem;
  line-height: 2;
  letter-spacing: 0.23em;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#news .l-news__list--item a time {
  font-size: 1rem;
  letter-spacing: 0.23em;
}

/* ===========================================
 * NEWS DETAIL
 * ======================================== */
#news_detail .l-news_detail {
  margin-top: 170px;
  margin-bottom: 150px;
  max-width: 1080px;
  width: 100%;
  margin-inline: auto;
}
#news_detail .l-news_detail__ttl {
  font-size: 1rem;
  text-align: right;
  display: block;
  line-height: 1;
  margin-bottom: 100px;
  letter-spacing: 0.2em;
}
#news_detail .l-news_detail__thumb {
  max-width: 500px;
  width: 100%;
  margin-inline: auto;
  margin-bottom: 38px;
}
#news_detail .l-news_detail__thumb img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
#news_detail .l-news_detail h1 {
  font-size: 1.4rem;
  line-height: 3;
  text-align: center;
  letter-spacing: 0.2em;
  margin-bottom: 35px;
}
#news_detail .l-news_detail__txt {
  max-width: 800px;
  width: 100%;
  margin-inline: auto;
  margin-bottom: 145px;
}
#news_detail .l-news_detail__txt p {
  font-size: 1.1rem;
  line-height: 3;
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 35px;
}
#news_detail .l-news_detail__back {
  text-align: center;
  font-size: 1rem;
}
#news_detail .l-news_detail__back a {
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1024px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
  .delay {
    transition-delay: 0 !important;
  }
  .delay02 {
    transition-delay: 0 !important;
  }
  .delay03 {
    transition-delay: 0 !important;
  }
  .delay04 {
    transition-delay: 0 !important;
  }
  .delay05 {
    transition-delay: 0 !important;
  }
  .delay06 {
    transition-delay: 0 !important;
  }
  .l-header__ham.is_active + .l-header__logo {
    opacity: 0;
    transition: all 300ms ease;
  }
  .l-header__nav {
    display: none;
  }
  .l-header__menu {
    display: none;
  }
  .l-mv {
    background-position: 57% 50%;
  }
  #about .l-about__mv-box {
    width: 100%;
  }
  #about .l-about__mv-box-txt p span {
    font-weight: bold;
  }
  #about .l-about .l-video {
    position: relative;
    height: auto;
    width: 100%;
    left: 0;
    margin-bottom: 90px;
  }
  #about .l-footer__nav {
    transform: translate(0);
    position: static;
  }
  #shop .l-shop__list--dd ul li {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  a[href*="tel:"] {
    pointer-events: all;
  }
  #about .l-header {
    height: 16vw;
  }
  #about .l-header__logo {
    display: block;
  }
  #top .l-header #hamburger,
  #about .l-header #hamburger,
  #feature_detail .l-header #hamburger,
  #feature .l-header #hamburger,
  #news .l-header #hamburger,
  #news_detail .l-header #hamburger,
  #collection .l-header #hamburger,
  #shop .l-header #hamburger {
    display: block;
  }
  .l-header {
    align-items: center;
    height: 16vw;
    background: none;
  }
  .l-header__ham {
    width: 7.2vw;
    height: 6.6666666667vw;
    left: 4.2666666667vw;
  }
  .l-header__ham.is_active .l-header__ham-box .l-header__ham-box-item:nth-child(1) {
    margin-left: -2.6666666667vw;
    width: 5.0666666667vw;
  }
  .l-header__ham.is_active .l-header__ham-box .l-header__ham-box-item:nth-child(3) {
    width: 5.0666666667vw;
    margin-top: -0.2666666667vw;
    margin-right: -2.9333333333vw;
  }
  .l-header__ham-box {
    height: 4vw;
  }
  .l-header__ham-box-item {
    border-top: 0.2666666667vw solid var(--primary);
  }
  .l-header__ham-box-item:nth-child(1) {
    margin-left: -2.4vw;
    width: 3.2vw;
  }
  .l-header__ham-box-item:nth-child(2) {
    width: 4.5333333333vw;
    margin-left: -2.4vw;
  }
  .l-header__ham-box-item:nth-child(3) {
    width: 3.2vw;
    margin-right: -2.4vw;
  }
  .l-header__logo {
    position: static;
    width: 40vw;
    height: auto;
  }
  .l-logo__img {
    width: 57.3333333333vw;
    margin-bottom: 2.6666666667vw;
  }
  .l-logo__txt {
    font-size: 4.5333333333vw;
  }
  #about .l-footer__sns {
    bottom: 26.6666666667vw;
  }
  #about .l-footer__copy {
    bottom: 11.4666666667vw;
  }
  #about .l-footer__nav {
    bottom: 4vw;
  }
  .l-footer__sns {
    margin-bottom: 12vw;
  }
  .l-footer__sns li {
    margin-right: 8vw;
  }
  .l-footer__sns li.youtube img {
    width: 6.4vw;
    height: 6.4vw;
  }
  .l-footer__sns li.tiktok img {
    width: 5.8666666667vw;
    height: 5.8666666667vw;
  }
  .l-footer__sns li.insta img {
    width: 5.8666666667vw;
    height: 5.8666666667vw;
  }
  .l-footer__copy {
    font-size: 2.6666666667vw;
    margin-bottom: 4vw;
  }
  .l-footer__nav {
    bottom: 4vw;
    font-size: 2.6666666667vw;
  }
  .l-footer__nav li {
    margin-right: 4.5333333333vw;
  }
  .l-footer__drawer {
    display: block;
  }
  .l-footer__inner {
    width: auto;
    margin-top: 21.3333333333vw;
    margin-left: 10.6666666667vw;
    margin-right: 10.6666666667vw;
    padding-bottom: 53.3333333333vw;
  }
  .l-footer__inner-logo {
    width: 36vw;
    height: auto;
    margin-bottom: 8.8vw;
  }
  .l-footer__inner-nav {
    margin-bottom: 12vw;
  }
  .l-footer__inner-nav > li {
    font-size: 3.7333333333vw;
    margin-bottom: 8.5333333333vw;
  }
  .l-footer__inner-sns li {
    margin-right: 8vw;
  }
  .l-footer__inner-sns li.youtube img {
    width: 6.4vw;
    height: 6.4vw;
  }
  .l-footer__inner-sns li.tiktok img {
    width: 5.8666666667vw;
    height: 5.8666666667vw;
  }
  .l-footer__inner-sns li.insta img {
    width: 5.8666666667vw;
    height: 5.8666666667vw;
  }
  .l-footer .l-toggle {
    margin-bottom: 2.6666666667vw;
  }
  .l-footer .l-toggle.is_open {
    margin-bottom: 6.6666666667vw;
  }
  .l-footer .l-toggle > a {
    height: 8.8vw;
    margin-bottom: 5.3333333333vw;
  }
  .l-footer .l-toggle > a::before {
    right: 2.6666666667vw;
    width: 3.2vw;
    height: 0.5333333333vw;
  }
  .l-footer .l-toggle > a::after {
    right: 2.6666666667vw;
    width: 3.2vw;
    height: 0.5333333333vw;
  }
  .l-footer .l-toggle__list--body--item {
    padding-top: 5.3333333333vw;
    padding-bottom: 5.3333333333vw;
  }
  .l-footer .l-toggle__list--body--item > div:nth-last-child(1) {
    padding-left: 2.1333333333vw;
  }
  .l-footer .l-toggle__list--body--item > div p {
    font-size: 3.2vw;
    margin-bottom: 5.3333333333vw;
  }
  .l-footer .l-toggle__list--body--item > div ul li {
    margin-bottom: 4vw;
    font-size: 2.9333333333vw;
  }
  .c-btn {
    width: 24vw;
    height: 8vw;
  }
  .c-btn span,
  .c-btn a {
    font-size: 2.6666666667vw;
  }
  .c_pagetop {
    right: 2.1333333333vw;
    bottom: 5.3333333333vw;
    width: 9.3333333333vw;
    height: 9.3333333333vw;
  }
  .c_pagetop a img {
    width: 5.3333333333vw;
    height: 5.3333333333vw;
  }
  .l-video {
    height: 126.6666666667vw;
  }
  .l-video__box img,
  .l-video__box video {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .l-video__txt {
    left: 5.3333333333vw;
    bottom: 5.3333333333vw;
  }
  .l-video__txt h2 {
    font-size: 4.2666666667vw;
    margin-bottom: 4vw;
  }
  .l-video__txt p {
    font-size: 2.6666666667vw;
    margin-bottom: 5.3333333333vw;
  }
  .l-row.row02 {
    margin-bottom: 0;
  }
  .l-row {
    display: block;
  }
  .l-row__col {
    width: 100%;
  }
  .l-row__col--link--txt {
    left: 5.3333333333vw;
    bottom: 5.3333333333vw;
  }
  .l-row__col--link--txt h2 {
    font-size: 4.2666666667vw;
    margin-bottom: 4vw;
  }
  .l-row__col--link--txt p {
    font-size: 2.6666666667vw;
    margin-bottom: 5.3333333333vw;
  }
  .l-row02__link {
    display: block;
  }
  .l-row02__link--col {
    width: 100%;
  }
  .l-row02__link--col p {
    font-size: 4.8vw;
    height: 66.6666666667vw;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .l-row02__link--col p.txt_l {
    text-align: center;
  }
  .l-row02__link--col span {
    margin-top: 3.2vw;
    font-size: 3.6666666667vw;
  }
  .l-row03__img02 {
    max-width: 89.8666666667vw;
    bottom: 8vw;
  }
  .l-row04 {
    margin-bottom: 30.6666666667vw;
  }
  .l-row04__col.is_single:nth-last-of-type(1) {
    display: none;
  }
  .l-row04__col {
    width: 50%;
  }
  #about .l-about__ttl {
    display: none;
  }
  #about .l-about__mv {
    position: static;
    transform: translateY(0);
    padding-left: 0;
    width: 100%;
    padding-left: 10.6666666667vw;
    padding-right: 10.6666666667vw;
  }
  #about .l-about__mv-box img {
    width: 57.3333333333vw;
    margin-bottom: 2.6666666667vw;
  }
  #about .l-about__mv-box-ttlsp {
    display: block;
    font-size: 4vw;
    margin-bottom: 16vw;
  }
  #about .l-about__mv-box-txt p {
    font-size: 2.6666666667vw;
    line-height: 2.5;
  }
  #about .l-about__mv-box-txt p.mb_pattrn01 {
    margin-bottom: 5.8666666667vw;
  }
  #about .l-about__mv-box-txt p.mb_pattrn02 {
    margin-bottom: 6.4vw;
  }
  #about .l-about__mv-box-txt p.fwb {
    font-size: 2.6666666667vw;
    margin-bottom: 8vw;
  }
  #about .l-about .l-swiper {
    margin-left: 0;
    margin-bottom: 10.6666666667vw;
  }
  #about .l-about .l-video video {
    position: static;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    transform: translate(0);
    height: 186.6666666667vw;
  }
  #about .l-footer {
    margin-top: 30.6666666667vw;
    padding-bottom: 5.3333333333vw;
  }
  #about .l-footer__sns {
    position: static;
    transform: translateX(0);
    margin-bottom: 10.6666666667vw;
  }
  #about .l-footer__copy {
    position: static;
    text-align: center;
    transform: translate(0);
    font-size: 2.6666666667vw;
    margin-bottom: 4vw;
  }
  #shop .l-shop {
    margin-top: 18.6666666667vw;
  }
  #shop .l-shop__ttl {
    font-size: 4vw;
    margin-bottom: 12vw;
  }
  #shop .l-shop__list {
    margin-bottom: 12vw;
  }
  #shop .l-shop__list--dt {
    font-size: 3.7333333333vw;
    margin-bottom: 14.6666666667vw;
  }
  #shop .l-shop__list--dd ul li h2 {
    font-size: 3.2vw;
    margin-bottom: 4vw;
  }
  #shop .l-shop__list--dd ul li p {
    font-size: 2.6666666667vw;
  }
  #shop .l-shop__list--dd ul li p.map {
    font-size: 2.6666666667vw;
  }
  #shop .l-shop__list--dd ul li p.store {
    font-size: 2.6666666667vw;
  }
  #shop .l-shop__list--dd ul li p {
    font-size: 2.6666666667vw;
  }
  #shop .l-shop__list--dd ul li p:nth-of-type(1) {
    margin-bottom: 6.6666666667vw;
  }
  #shop .l-shop__list--dd ul li p:nth-of-type(2) {
    margin-bottom: 4vw;
  }
  #shop .l-shop__list--dd ul li p:nth-of-type(3) {
    margin-bottom: 1.3333333333vw;
  }
  #shop .l-shop__list--dd ul li p a .map {
    width: 2.1333333333vw;
    height: 3.2vw;
  }
  #shop .l-shop__list--dd ul li p a .shop {
    width: 3.7333333333vw;
    height: 3.2vw;
  }
  #shop .l-shop__list02 .l-shop__list--dd ul li {
    margin-right: 0;
    margin-bottom: 12vw;
  }
  #shop .l-shop__list02 .l-shop__list--dd ul li:nth-child(n+4) {
    margin-bottom: 12vw;
  }
  #feature .l-feature {
    margin-bottom: 32vw;
    margin-top: 18.6666666667vw;
  }
  #feature .l-feature__ttl {
    font-size: 4vw;
    margin-bottom: 14.6666666667vw;
  }
  #feature .l-feature__blk {
    padding-left: 10.6666666667vw;
    padding-right: 10.6666666667vw;
  }
  #feature .l-feature__blk--link--item {
    display: block;
    margin-bottom: 11.7333333333vw;
  }
  #feature .l-feature__blk--link--item--txt {
    max-width: 100%;
    margin-bottom: 5.3333333333vw;
  }
  #feature .l-feature__blk--link--item--txt h2 {
    font-size: 4.8vw;
    margin-bottom: 3.2vw;
  }
  #feature .l-feature__blk--link--item--txt p {
    font-size: 3.6666666667vw;
  }
  #feature_detail .l-feature_detail {
    margin-bottom: 32vw;
    margin-top: 16vw;
  }
  #collection .l-collection {
    margin-top: 18.6666666667vw;
  }
  #collection .l-collection #photographe {
    margin-top: -16vw;
    padding-top: 16vw;
  }
  #collection .l-collection__ttl {
    font-size: 4vw;
    margin-bottom: 16vw;
  }
  #collection .l-collection__body .heading {
    font-size: 3.4666666667vw;
    padding-bottom: 3.2vw;
    padding-top: 2.6666666667vw;
    margin-left: 5.3333333333vw;
    margin-right: 5.3333333333vw;
    margin-bottom: 5.3333333333vw;
  }
  #collection .l-collection__body .heading02 {
    font-size: 3.2vw;
    margin-left: 5.3333333333vw;
    margin-right: 5.3333333333vw;
    margin-bottom: 13.3333333333vw;
  }
  #collection .l-collection__body--mov {
    margin-bottom: 21.3333333333vw;
  }
  #collection .l-collection__body--mov02 {
    margin-bottom: 8vw;
  }
  #collection .l-collection__body--img {
    margin-bottom: 21.3333333333vw;
  }
  #collection .l-collection__body--imgfull {
    margin-bottom: 10.6666666667vw;
  }
  #collection .l-collection__body--imgfull a {
    margin-bottom: 4vw;
  }
  #collection .l-collection__body--imgfull p {
    font-size: 2.6666666667vw;
    margin-right: 2.6666666667vw;
    margin-left: 2.6666666667vw;
  }
  #collection .l-collection__body--imgright {
    margin-bottom: 10.6666666667vw;
    max-width: 66.6666666667vw;
  }
  #collection .l-collection__body--imgright a {
    margin-bottom: 4vw;
  }
  #collection .l-collection__body--imgright p {
    font-size: 2.6666666667vw;
    margin-right: 2.6666666667vw;
    margin-left: 2.6666666667vw;
  }
  #collection .l-collection__body--imgleft {
    margin-bottom: 10.6666666667vw;
    max-width: 66.6666666667vw;
  }
  #collection .l-collection__body--imgleft--blk a {
    margin-bottom: 4vw;
  }
  #collection .l-collection__body--imgleft--blk p {
    font-size: 2.6666666667vw;
    margin-right: 2.6666666667vw;
    margin-left: 2.6666666667vw;
  }
  #collection .l-collection__body--imgcenter {
    margin-bottom: 10.6666666667vw;
    max-width: 66.6666666667vw;
  }
  #collection .l-collection__body--imgcenter--blk a {
    margin-bottom: 4vw;
  }
  #collection .l-collection__body--imgcenter--blk p {
    font-size: 2.6666666667vw;
    margin-right: 2.6666666667vw;
    margin-left: 2.6666666667vw;
  }
  #collection .l-collection__body--row {
    display: block;
    margin-inline: auto;
    margin-left: 10.6666666667vw;
    margin-right: 10.6666666667vw;
    margin-bottom: 13.3333333333vw;
    margin-top: 13.3333333333vw;
  }
  #collection .l-collection__body--row--ttl {
    display: block;
    font-size: 3.2vw;
    letter-spacing: 0.064em;
    margin-bottom: 8vw;
  }
  #collection .l-collection__body--row--ttl span {
    display: block;
    font-size: 3.7333333333vw;
    margin-bottom: 2.6666666667vw;
  }
  #collection .l-collection__body--row--thumb {
    max-width: 53.3333333333vw;
    margin-inline: auto;
    margin-bottom: 6.6666666667vw;
  }
  #collection .l-collection__body--row--thumb p {
    font-size: 2.6666666667vw;
  }
  #collection .l-collection__body--row--txt h2 {
    display: none;
  }
  #collection .l-collection__body--row--txt--group {
    margin-bottom: 8vw;
  }
  #collection .l-collection__body--row--txt--group p {
    font-size: 2.6666666667vw;
  }
  #collection .l-collection__body--row--txt ul li a {
    font-size: 2.6666666667vw;
  }
  #collection .l-collection__body--list {
    display: block;
    margin-left: 5.3333333333vw;
    margin-right: 5.3333333333vw;
    width: auto;
  }
  #collection .l-collection__body--list li {
    max-width: 48vw;
    margin-bottom: 8vw;
  }
  #collection .l-collection__body--list li:nth-of-type(2) {
    margin-left: auto;
  }
  #collection .l-collection__body--list li:nth-of-type(3) {
    margin-left: 5.3333333333vw;
  }
  #news .l-news {
    margin-top: 18.6666666667vw;
    margin-bottom: 16vw;
  }
  #news .l-news__ttl {
    font-size: 4vw;
    margin-bottom: 16vw;
  }
  #news .l-news__list {
    gap: 4%;
    margin-left: 5.3333333333vw;
    margin-right: 5.3333333333vw;
    width: auto;
  }
  #news .l-news__list--item {
    max-width: 100%;
    width: 48%;
    margin-bottom: 12vw;
  }
  #news .l-news__list--item a img {
    margin-bottom: 2.1333333333vw;
  }
  #news .l-news__list--item a p {
    font-size: 2.6666666667vw;
    min-height: 11.2vw;
    -webkit-line-clamp: 2;
  }
  #news .l-news__list--item a time {
    letter-spacing: 0.28em;
    font-size: 2.6666666667vw;
  }
  #news_detail .l-news_detail {
    margin-top: 18.6666666667vw;
    margin-bottom: 32vw;
    margin-left: 5.3333333333vw;
    margin-right: 5.3333333333vw;
    width: auto;
  }
  #news_detail .l-news_detail__ttl {
    font-size: 2.6666666667vw;
    margin-bottom: 16vw;
  }
  #news_detail .l-news_detail__thumb {
    margin-left: 5.3333333333vw;
    margin-right: 5.3333333333vw;
    max-width: 100%;
    width: auto;
    margin-bottom: 5.8666666667vw;
  }
  #news_detail .l-news_detail h1 {
    font-size: 3.2vw;
    margin-bottom: 4vw;
  }
  #news_detail .l-news_detail__txt {
    margin-bottom: 25.3333333333vw;
  }
  #news_detail .l-news_detail__txt p {
    font-size: 2.6666666667vw;
    margin-bottom: 5.3333333333vw;
  }
  #news_detail .l-news_detail__back {
    font-size: 2.6666666667vw;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1280px) {
  #about .l-header {
    height: 60px;
  }
  #about .l-header__logo {
    display: block;
  }
  #top .l-header #hamburger,
  #feature .l-header #hamburger,
  #feature_detail .l-header #hamburger,
  #news .l-header #hamburger,
  #news_detail .l-header #hamburger,
  #collection .l-header #hamburger,
  #shop .l-header #hamburger {
    display: block;
  }
  .l-header {
    align-items: center;
    height: 60px;
  }
  .l-header__ham.is_active + .l-header__logo {
    opacity: 0;
    transition: all 300ms ease;
  }
  .l-header__logo {
    width: 150px;
    height: auto;
    top: 0;
  }
  .l-header__nav {
    display: none;
  }
  .l-header__menu {
    display: none;
  }
  .l-footer__copy {
    margin-bottom: 15px;
  }
  .l-footer__drawer {
    display: block;
  }
  .l-footer .l-toggle {
    margin-bottom: 25px;
  }
  .l-row03__img02 {
    width: 90%;
  }
  #about .l-about__ttl {
    display: none;
  }
  #about .l-about__mv {
    position: static;
    transform: translateY(0);
    padding-left: 0;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
  #about .l-about__mv-box {
    width: 100%;
  }
  #about .l-about__mv-box img {
    width: 215px;
    margin-bottom: 10px;
  }
  #about .l-about__mv-box-ttlsp {
    display: block;
    margin-bottom: 60px;
  }
  #about .l-about__mv-box-txt p span {
    font-weight: bold;
  }
  #about .l-about__mv-box-txt p.mb_pattrn01 {
    margin-bottom: 22px;
  }
  #about .l-about__mv-box-txt p.mb_pattrn02 {
    margin-bottom: 24px;
  }
  #about .l-about__mv-box-txt p.fwb {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  #about .l-about .l-swiper {
    margin-left: 0;
    margin-bottom: 40px;
  }
  #about .l-about .l-video {
    position: relative;
    height: auto;
    width: 100%;
    left: 0;
    margin-bottom: 90px;
  }
  #about .l-about .l-video video {
    position: static;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    transform: translate(0);
    height: 700px;
  }
  #about .l-footer {
    margin-top: 115px;
    padding-bottom: 20px;
  }
  #about .l-footer__sns {
    position: static;
    transform: translateX(0);
    margin-bottom: 40px;
  }
  #about .l-footer__copy {
    position: static;
    text-align: center;
    transform: translate(0);
    margin-bottom: 15px;
  }
  #about .l-footer__nav {
    transform: translate(0);
    position: static;
  }
  #shop .l-shop__list--dd ul li {
    max-width: 100%;
    width: 31%;
  }
  #shop .l-shop__list02 .l-shop__list--dd ul li {
    margin-right: 3.3333%;
  }
  #feature .l-feature__blk {
    width: 90%;
  }
  #feature .l-feature__blk--link--item--img {
    max-width: 100%;
    width: 58%;
  }
  #feature .l-feature__blk--link--item--txt {
    max-width: 100%;
    width: 38%;
  }
  #feature_detail .l-feature_detail {
    margin-top: 60px;
  }
  #collection .l-collection #photographe {
    margin-top: -60px;
    padding-top: 60px;
  }
  #collection .l-collection__body .heading {
    width: 90%;
    margin-inline: auto;
  }
  #collection .l-collection__body .heading02 {
    width: 90%;
    margin-inline: auto;
  }
  #collection .l-collection__body--mov {
    width: 90%;
    margin-inline: auto;
  }
  #collection .l-collection__body--mov02 {
    width: 90%;
    margin-inline: auto;
  }
  #collection .l-collection__body--imgfull {
    width: 90%;
    margin-inline: auto;
  }
  #collection .l-collection__body--imgfull p {
    margin-right: 10px;
  }
  #collection .l-collection__body--imgright {
    width: 70%;
  }
  #collection .l-collection__body--imgright p {
    margin-right: 10px;
  }
  #collection .l-collection__body--imgleft {
    width: 70%;
  }
  #collection .l-collection__body--imgleft--blk p {
    margin-right: 10px;
  }
  #collection .l-collection__body--imgcenter {
    width: 90%;
  }
  #collection .l-collection__body--imgcenter--blk p {
    margin-right: 10px;
  }
  #collection .l-collection__body--row {
    width: 90%;
    margin-inline: auto;
  }
  #collection .l-collection__body--row--thumb {
    max-width: 100%;
    width: 38%;
  }
  #collection .l-collection__body--row--txt {
    max-width: 100%;
    width: 58%;
  }
  #collection .l-collection__body--list {
    width: 90%;
    margin-inline: auto;
  }
  #news .l-news__list {
    gap: 3.333%;
    width: 90%;
    margin-inline: auto;
  }
  #news .l-news__list--item {
    max-width: 100%;
    width: 31%;
    margin-bottom: 45px;
  }
  #news_detail .l-news_detail {
    width: 90%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #about .l-header {
    height: 60px;
  }
  #about .l-header__logo {
    display: block;
  }
  #top .l-header #hamburger,
  #feature_detail .l-header #hamburger,
  #feature .l-header #hamburger,
  #news .l-header #hamburger,
  #news_detail .l-header #hamburger,
  #collection .l-header #hamburger,
  #shop .l-header #hamburger {
    display: block;
  }
  .l-header {
    align-items: center;
    height: 60px;
    background: none;
  }
  .l-header__ham {
    width: 27px;
    left: 16px;
  }
  .l-header__ham-box-item:nth-child(2) {
    margin-top: -1px;
  }
  .l-header__logo {
    width: 150px;
    height: auto;
    top: 0;
  }
  .l-logo__img {
    width: 215px;
    margin-bottom: 10px;
  }
  .l-footer__sns {
    margin-bottom: 40px;
  }
  .l-footer__copy {
    margin-bottom: 15px;
  }
  .l-footer__drawer {
    display: block;
  }
  .l-footer__inner {
    max-width: 100%;
    margin-left: 40px;
    margin-right: 40px;
    width: auto;
  }
  .l-footer__inner-logo {
    width: 135px;
    height: auto;
    margin-bottom: 57px;
  }
  .l-footer__inner-nav > li {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }
  .l-footer .l-toggle {
    margin-bottom: 0;
  }
  .l-video__txt {
    left: 40px;
    bottom: 40px;
  }
  .l-row__col--link--txt {
    left: 40px;
    bottom: 40px;
  }
  .l-row03__img02 {
    width: 90%;
  }
  .l-row04 {
    margin-bottom: 120px;
  }
  #about .l-about__ttl {
    display: none;
  }
  #about .l-about__mv {
    position: static;
    transform: translateY(0);
    padding-left: 0;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
  #about .l-about__mv-box img {
    width: 215px;
    margin-bottom: 10px;
  }
  #about .l-about__mv-box-ttlsp {
    display: block;
    margin-bottom: 60px;
  }
  #about .l-about__mv-box-txt p {
    font-size: 1rem;
    line-height: 2.5;
  }
  #about .l-about__mv-box-txt p.mb_pattrn01 {
    margin-bottom: 22px;
  }
  #about .l-about__mv-box-txt p.mb_pattrn02 {
    margin-bottom: 24px;
  }
  #about .l-about__mv-box-txt p.fwb {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  #about .l-about .l-swiper {
    margin-left: 0;
    margin-bottom: 40px;
  }
  #about .l-about .l-video video {
    position: static;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    transform: translate(0);
    height: 700px;
  }
  #about .l-footer {
    margin-top: 115px;
    padding-bottom: 20px;
  }
  #about .l-footer__sns {
    position: static;
    transform: translateX(0);
    margin-bottom: 40px;
  }
  #about .l-footer__copy {
    position: static;
    text-align: center;
    transform: translate(0);
    margin-bottom: 15px;
  }
  #shop .l-shop {
    margin-top: 75px;
  }
  #shop .l-shop__ttl {
    font-size: 1.5rem;
    margin-bottom: 45px;
  }
  #shop .l-shop__list {
    margin-bottom: 45px;
  }
  #shop .l-shop__list--dt {
    font-size: 1.3rem;
    margin-bottom: 65px;
  }
  #shop .l-shop__list--dd ul li h2 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
  #shop .l-shop__list--dd ul li p {
    font-size: 1rem;
  }
  #shop .l-shop__list--dd ul li p:nth-of-type(2) {
    margin-bottom: 18px;
  }
  #shop .l-shop__list02 .l-shop__list--dd ul li {
    margin-right: 0;
    margin-bottom: 55px;
  }
  #shop .l-shop__list02 .l-shop__list--dd ul li:nth-child(n+4) {
    margin-bottom: 45px;
  }
  #feature .l-feature {
    margin-top: 75px;
  }
  #feature .l-feature__ttl {
    font-size: 1.5rem;
    margin-bottom: 85px;
  }
  #feature .l-feature__blk {
    width: 90%;
  }
  #feature .l-feature__blk--link--item--img {
    max-width: 100%;
    width: 58%;
  }
  #feature .l-feature__blk--link--item--txt {
    max-width: 100%;
    width: 38%;
  }
  #feature_detail .l-feature_detail {
    margin-top: 60px; 
  }
  #collection .l-collection {
    margin-top: 75px;
  }
  #collection .l-collection #photographe {
    margin-top: -60px;
    padding-top: 60px;
  }
  #collection .l-collection__ttl {
    font-size: 1.5rem;
    margin-bottom: 85px;
  }
  #collection .l-collection__body .heading {
    width: 90%;
    margin-inline: auto;
  }
  #collection .l-collection__body .heading02 {
    width: 90%;
    margin-inline: auto;
  }
  #collection .l-collection__body--mov {
    width: 90%;
    margin-inline: auto;
  }
  #collection .l-collection__body--mov02 {
    width: 90%;
    margin-inline: auto;
  }
  #collection .l-collection__body--imgfull {
    width: 90%;
    margin-inline: auto;
  }
  #collection .l-collection__body--imgfull p {
    margin-right: 10px;
  }
  #collection .l-collection__body--imgright {
    width: 70%;
  }
  #collection .l-collection__body--imgright p {
    margin-right: 10px;
  }
  #collection .l-collection__body--imgleft {
    width: 70%;
  }
  #collection .l-collection__body--imgleft--blk p {
    margin-right: 10px;
  }
  #collection .l-collection__body--imgcenter {
    width: 90%;
  }
  #collection .l-collection__body--imgcenter--blk p {
    margin-right: 10px;
  }
  #collection .l-collection__body--row {
    width: 90%;
    margin-inline: auto;
  }
  #collection .l-collection__body--row--thumb {
    max-width: 100%;
    width: 38%;
  }
  #collection .l-collection__body--row--txt {
    max-width: 100%;
    width: 58%;
  }
  #collection .l-collection__body--row--txt h2 {
    margin-bottom: 20px;
  }
  #collection .l-collection__body--row--txt--group {
    margin-bottom: 20px;
  }
  #collection .l-collection__body--list {
    width: 90%;
    margin-inline: auto;
  }
  #news .l-news {
    margin-top: 75px;
    margin-bottom: 100px;
  }
  #news .l-news__ttl {
    font-size: 1.5rem;
    margin-bottom: 85px;
  }
  #news .l-news__list {
    gap: 3.333%;
    width: 90%;
    margin-inline: auto;
  }
  #news .l-news__list--item {
    max-width: 100%;
    width: 31%;
    margin-bottom: 45px;
  }
  #news_detail .l-news_detail {
    margin-top: 75px;
    margin-bottom: 100px;
    width: 90%;
  }
  #news_detail .l-news_detail__ttl {
    font-size: 1.5rem;
    margin-bottom: 85px;
  }
}
@media screen and (min-width: 1281px) and (max-width: 1919px) {
  #about .l-about__ttl {
    top: 140px;
    left: 100px;
  }
  #about .l-about__mv {
    padding-left: 7.806401249vw;
  }
  #about .l-about__mv-box img {
    width: 315px;
    margin-bottom: 10px;
  }
  #about .l-about__mv-box-txt p.mb_pattrn01 {
    margin-bottom: 22px;
  }
  #about .l-about__mv-box-txt p.mb_pattrn02 {
    margin-bottom: 24px;
  }
  #about .l-about__mv-box-txt p.mb_pattrn02 .pc2_none {
    display: none;
  }
  #about .l-about__mv-box-txt p.fwb {
    font-size: 1rem;
    margin-bottom: 50px;
  }
}
@media screen and (max-height: 1000px) and (min-width: 768px) {
  #about .l-about__mv {
    top: 220px;
    height: calc(100% - 220px);
    overflow-y: scroll;
    scrollbar-width: none;
    padding-bottom: 30px;
  }
}

/*# sourceMappingURL=style.css.map */