html {
  font-size: 0.78125vw;
}

html, body {
  overflow-x: hidden;
  background-color: #f5f5f5;
}

.header-logo{
  width:18em;
}

.animated-text {
  display: inline-block;
  overflow: hidden;
}

.animated-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(-50px) rotate(10deg);
  animation: drop 1.2s ease-out forwards;
}

.line-break {
  display: block !important;
  height: 0;
  width: 100%;
  content: '';
  margin: 0;
  padding: 0;
}

br {
    display: block;
    margin-bottom: 10px; /* 必要に応じて調整 */
}

li {
  margin-bottom: 8px;
}

ul {
  margin-bottom: 16px;
}

@media screen and (min-width: 768px){
  .fix-button .sp{
    display: none;
  }
}

.grecaptcha-badge{
  display: none;
}

@media screen and (max-width: 768px) {
  .animated-text {
    /* position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    height: 100%; */
  }
  .header-logo{
    width:160px;
  }
}

/* アニメーションの調整 */
@keyframes drop {
  0% {
    opacity: 0;
    transform: translateY(-50px) rotate(10deg);
  }
  50% {
    opacity: 0.2;
    transform: translateY(-20px) rotate(5deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}


.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s, transform 0.8s;
}
.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}



.wrap {
  overflow: hidden;
}

.wrapper {
  max-width: 500px;
  margin: 50px auto;
}

.slide-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ddd;
}

.main, .wrap {
  background-color: #f5f5f5;
}
.main-swiper .slide-content {
  height: 300px;
}

.thumb-swiper {
  margin-top: 20px;
}
.thumb-swiper .swiper-slide {
  width: 100px;
  cursor: pointer;
}
.thumb-swiper .slide-content {
  height: 50px;
}

.menu-button {
  left: 0;
  position: fixed;
  top: 0;
}

.menu {
  transform: translateX(-100%);
  transition-duration: 0.3s;
}
.menu.is-open {
  transform: translateX(0);
}
.menu > .menu-inner {
  overflow-y: scroll;
}
.menu > .menu-inner > .menu-inner-02 {
  padding-bottom: clamp(72px, 9.6rem, 96px);
  padding-left: clamp(42px, 5.6rem, 56px);
  padding-right: clamp(42px, 5.6rem, 56px);
  padding-top: clamp(72px, 9.6rem, 96px);
}
@media screen and (max-width: 1024px) {
  .menu > .menu-inner > .menu-inner-02 {
    padding-left: clamp(42px, 5.6rem, 56px);
    padding-right: clamp(42px, 5.6rem, 56px);
  }
}
.menu > .menu-inner > .menu-inner-02 > .list-F {
  gap: clamp(36px, 4.8rem, 48px);
}
@media screen and (max-width: 1024px) {
  .menu > .menu-inner > .menu-inner-02 > .list-F {
    gap: clamp(24px, 3.2rem, 32px);
  }
}
@media screen and (max-width: 768px) {
  .menu > .menu-inner > .menu-inner-02 > .list-F {
    gap: clamp(18px, 2.4rem, 24px);
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 375px) {
  .menu > .menu-inner > .menu-inner-02 > .list-F {
    gap: clamp(6px, 0.8rem, 8px);
  }
}
.menu > .menu-inner > .menu-inner-02 > .list-F > .item {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .menu > .menu-inner > .menu-inner-02 > .list-F > .item {
    width: 100%;
  }
}
.menu > .menu-inner > .menu-inner-02 > .list-G {
  margin-bottom: clamp(42px, 5.6rem, 56px);
}

.section {
  padding-left: clamp(28px, 5.6rem, 56px);
  padding-right: clamp(28px, 5.6rem, 56px);
  background-color: #f5f5f5;
}
@media screen and (max-width: 768px) {
  .section {
    padding-left: 24px;
    padding-right: 24px;
  }
  .main .section {
    height: 80vh;
  }
}

.section-A {
  padding-bottom: clamp(60px, 8rem, 80px);
  padding-top: clamp(30px, 4rem, 40px);
}
.section-A > .head-A {
  padding-bottom: clamp(30px, 4rem, 40px);
}

.header {
  background-color: #f5f5f5;
  box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2vh;
  padding-left: 5%;
  padding-right: 5%;
  padding-top: 2vh;
  position: fixed;
  top: 0;
  z-index: 2;
  width: calc(100% - 24px);
}
@media screen and (max-width: 768px) {
  .header {
    width: 100%;
    padding: 5%;
  }
}

.header > .header-inner {
  align-items: center;
  justify-content: right;
}
.header > .header-inner > .g-navi {
  margin-right: clamp(30px, 4rem, 40px);
  margin-bottom: 0 !important;
}
@media screen and (max-width: 1024px) {
  .header > .header-inner > .g-navi {
    display: flex;
    text-align: left;
    width: 80%;
    margin: 0 auto;
  }
}
.header > .header-inner > .u-navi {
  margin-right: clamp(30px, 4rem, 40px);
}
@media screen and (max-width: 1024px) {
  .header > .header-inner > .u-navi {
    margin: clamp(12px, 2.4rem, 24px);
    text-align: left;
  }
}

.main {
  padding-top: clamp(40px,5rem,56px);
}
@media screen and (max-width: 768px) {
  .main {
    padding-top: 0;
  }
}
.main-visual > .main-visual-wrap {
  padding-bottom: clamp(60px, 8rem, 80px);
  height: 90vh;
}
@media screen and (max-width: 768px) {
  .main-visual > .main-visual-wrap {
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    padding-bottom: 0;
    height: 100%;
  }
  .main-visual > .main-visual-wrap .swiper-wrapper {
    margin: 10px 0;
  }
}
.main-visual > .main-visual-wrap > *:nth-child(1) {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .main-visual > .main-visual-wrap > *:nth-child(1) {
    width: 100% !important;
    height: 90%;
    padding-top: 24px;
  }
}
.main-visual > .main-visual-wrap > *:nth-child(2) {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .main-visual > .main-visual-wrap > *:nth-child(2) {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .main-visual > .main-visual-wrap {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .main-visual > .main-visual-wrap > .list-A {
    width: 100%;
  }
}
.main-visual > .main-visual-wrap > .main-visual-inner {
  position: relative;
  padding: calc(4% + 8px) 0;
}
@media screen and (max-width: 768px) {
  .main-visual > .main-visual-wrap > .main-visual-inner {
    /* align-items: flex-end;
    justify-content: space-between;
    width: 90%;
    height: 90vh;
    position: absolute;
    z-index: 99;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 !important; */
  }
}
@media screen and (max-width: 768px) {
  .main-visual > .main-visual-wrap > .main-visual-inner {
    flex-wrap: wrap;
    padding: 0;
    height: auto;
  }
}
.main-visual > .main-visual-wrap > .main-visual-inner > .catch-A {
  writing-mode: horizontal-tb;
  margin: 0 auto;
  width: 80% !important;
  height: 25vh;
}
.main-visual > .main-visual-wrap > .main-visual-inner > .catch-A, .main-visual > .main-visual-wrap > .main-visual-inner .utility {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .main-visual > .main-visual-wrap > .main-visual-inner > .catch-A {
    position: relative;
    writing-mode: horizontal-tb !important;
  }
  .main-visual > .main-visual-wrap > .main-visual-inner > .catch-A, .main-visual > .main-visual-wrap > .main-visual-inner .utility {
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .main-visual > .main-visual-wrap > .main-visual-inner > .catch-A, .main-visual > .main-visual-wrap > .main-visual-inner .utility {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .main-visual > .main-visual-wrap > .main-visual-inner > .catch-A {
    display: none;
    width: 90%;
    margin: 0 auto;
  }
  .main-visual > .main-visual-wrap > .main-visual-inner > .catch-A span {
    color: #1c1c1c;
    margin: 0 !important;
  }
}
@media screen and (max-width: 768px) {
  .main-visual > .main-visual-wrap > .main-visual-inner > .catch-A span {
    text-align: left;
  }
}
.main-visual > .main-visual-wrap > .main-visual-inner > .utility {
  bottom: 0;
  position: absolute;
  width: 100%;
  right: 0;
}
@media screen and (max-width: 768px) {
  .main-visual > .main-visual-wrap > .main-visual-inner > .utility {
    position: static;
    width: 100%;
    height: 10vh;
  }
}
@media screen and (max-width: 768px) {
  .main-visual > .main-visual-wrap > .main-visual-inner > .utility {
    width: 100%;
  }
}
.main-visual > .main-visual-wrap > .main-visual-inner > .utility > .numbers-wrap {
  width: 80%;
  margin: 0 auto 8px auto;
}

.home-about {
  padding-bottom: clamp(60px, 8rem, 80px);
  padding-top: clamp(24px, 3.2rem, 32px);
}
.home-about > .catch-B {
  margin-bottom: clamp(30px, 4rem, 40px);
}

.salon {
  padding-bottom: clamp(66px, 8.8rem, 88px);
  padding-top: clamp(54px, 7.2rem, 72px);
}
.salon > .head-A {
  margin-bottom: clamp(30px, 4rem, 40px);
}

.salon-detail > .head-C, .salon-detail > .catch-B {
  margin-bottom: clamp(42px, 5.6rem, 56px);
}
.salon-detail > .catch-B {
  text-align: center;
}
.salon-detail > .visual-A {
  margin-bottom: clamp(48px, 6.4rem, 64px);
}
.salon-detail > .visual-A > img {
  width: 100%;
}
.salon-detail > .txt-B, .salon-detail > .buttons-A, .salon-detail > .txt-box-C {
  margin-bottom: clamp(78px, 10.4rem, 104px);
}
.salon-detail > .txt-B {
  text-align: center;
}
.salon-detail > .head-D {
  margin-bottom: clamp(30px, 4rem, 40px);
  text-align: center;
}

.media {
  align-items: stretch;
  padding-bottom: clamp(60px, 8rem, 80px);
  padding-top: clamp(60px, 8rem, 80px);
}
@media screen and (max-width: 768px) {
  .media {
    flex-wrap: wrap;
  }
}
.media > *:nth-child(1) {
  width: 31.25%;
}
@media screen and (max-width: 768px) {
  .media > *:nth-child(1) {
    width: 100%;
  }
}
.media > *:nth-child(2) {
  width: 68.75%;
}
@media screen and (max-width: 768px) {
  .media > *:nth-child(2) {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .media {
    display: block !important;
  }
}
.media > .section-inner {
  position: relative;
}
@media screen and (max-width: 768px) {
  .media > .section-inner > .head-A {
    margin-bottom: clamp(54px, 7.2rem, 72px);
  }
}
.media > .section-inner > .link-A, .media > .section-inner .arrows-A {
  bottom: 0;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .media > .section-inner > .link-A {
    bottom: auto;
    right: 0;
    top: clamp(18px, 2.4rem, 24px);
  }
}
.media > .section-inner .arrows-A {
  right: 0;
}
@media screen and (max-width: 768px) {
  .media > .section-inner .arrows-A {
    margin-top: clamp(42px, 5.6rem, 56px);
    position: static;
  }
}

.menu-detail > .menu-detail-inner {
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(42px, 5.6rem, 56px);
}
@media screen and (max-width: 768px) {
  .menu-detail > .menu-detail-inner {
    flex-wrap: wrap;
  }
  .menu-detail > .menu-detail-inner > * {
    width: 100%;
  }
  .menu-detail > .menu-detail-inner > *.head-A {
    margin-bottom: clamp(24px, 3.2rem, 32px);
  }
}
.menu-detail > .box-A {
  margin-bottom: clamp(118.5px, 15.8rem, 158px);
}

/* お知らせスタイル */
.news {
  align-items: stretch;
  padding-bottom: clamp(54px, 7.2rem, 72px);
  padding-top: clamp(54px, 7.2rem, 72px);
}
.news > *:nth-child(1) {
  width: 52.67%;
}
.news > *:nth-child(2) {
  width: 47.33%;
}
.news > .section-inner {
  position: relative;
}
.news > .section-inner > .head-A {
  margin-bottom: clamp(60px, 8rem, 80px);
}
.news > .section-inner > .link-A {
  bottom: 0;
  position: absolute;
}
.news > .section-inner:nth-of-type(1) {
  padding-right: clamp(131.25px, 17.5rem, 175px);
}
.news- > .head-A {
  margin-bottom: clamp(60px, 8rem, 80px);
}
.news-detail h1{
  font-size: 20px !important;
  margin-bottom: 0px !important;
}
.post-title h2{
  font-size: 15px !important;
  font-weight: normal !important;
}
@media screen and (max-width: 768px) {
  .news {
    flex-wrap: wrap;
  }
  .news > *:nth-child(1) {
    width: 100%;
  }
  .news > *:nth-child(2) {
    width: 100%;
  }
  .news > .section-inner > .link-A {
    position: static;
  }
  .news > .section-inner > .list-E {
    margin-bottom: clamp(52.5px, 7rem, 70px);
  }
  .news > .section-inner:nth-of-type(1) {
    margin-bottom: clamp(52.5px, 7rem, 70px);
    padding-right: 0;
  }
}


.media-detail, .news-detail {
  padding-bottom: clamp(60px, 8rem, 80px);
  padding-top: clamp(60px, 8rem, 80px);
}
.media-detail > .head-A, .news-detail > .head-A {
  margin-bottom: clamp(6px, 0.8rem, 8px);
}
.media-detail > .thumb-C, .news-detail > .thumb-C {
  margin-bottom: clamp(30px, 4rem, 40px);
  margin-left: auto;
  margin-right: auto;
}
.media-detail > .tit-E, .news-detail > .tit-E {
  margin-bottom: clamp(6px, 0.8rem, 8px);
}
.media-detail > .date-C, .news-detail > .date-C {
  margin-bottom: clamp(30px, 4rem, 40px);
}
.media-detail > .txt, .news-detail > .txt {
  line-height: 1.75;
}

.detail {
  padding-bottom: clamp(90px, 12rem, 120px);
  padding-top: clamp(90px, 12rem, 120px);
}
.detail > .tit-E {
  margin-bottom: clamp(6px, 0.8rem, 8px);
}
.detail > .date-C {
  margin-bottom: clamp(42px, 5.6rem, 56px);
}
@media screen and (max-width: 768px) {
  .detail > .section-inner {
    flex-wrap: wrap;
  }
}
.detail > .section-inner > *:nth-child(1) {
  width: 43.57%;
}
@media screen and (max-width: 768px) {
  .detail > .section-inner > *:nth-child(1) {
    width: 100%;
  }
}
.detail > .section-inner > *:nth-child(2) {
  width: 56.43%;
}
@media screen and (max-width: 768px) {
  .detail > .section-inner > *:nth-child(2) {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .detail > .section-inner > .list-K-wrap {
    margin-bottom: clamp(12px, 1.6rem, 16px);
  }
}
.detail > .section-inner > .section-inner02 {
  padding-left: clamp(66px, 8.8rem, 88px);
  position: relative;
}
@media screen and (max-width: 768px) {
  .detail > .section-inner > .section-inner02 {
    padding-left: 0;
  }
}
.detail > .section-inner > .section-inner02 > .unit-A {
  margin-bottom: clamp(30px, 4rem, 40px);
}
.detail > .section-inner > .section-inner02 > .list-L-wrap {
  bottom: 0;
  left: clamp(66px, 8.8rem, 88px);
  position: absolute;
}
@media screen and (max-width: 768px) {
  .detail > .section-inner > .section-inner02 > .list-L-wrap {
    margin-bottom: clamp(42px, 5.6rem, 56px);
    position: static;
  }
}

.local-main-visual {
  background: url(../img/recruit/main.jpg) no-repeat center center/cover;
  height: clamp(336px, 67.2rem, 672px);
  position: relative;
}
@media screen and (max-width: 768px) {
  .local-main-visual {
    background: url(../img/recruit/main.jpg) no-repeat center top/cover;
    margin-bottom: clamp(173.25px, 23.1rem, 231px);
  }
}
.local-main-visual > .catch {
  background-color: #616420;
  bottom: clamp(-42px, -5.6rem, -56px);
  color: #FFF;
  padding-bottom: clamp(42px, 5.6rem, 56px);
  padding-left: clamp(30px, 4rem, 40px);
  padding-right: clamp(30px, 4rem, 40px);
  padding-top: clamp(36px, 4.8rem, 48px);
  position: absolute;
  right: clamp(42px, 5.6rem, 56px);
  width: clamp(372px, 49.6rem, 496px);
}
@media screen and (max-width: 768px) {
  .local-main-visual > .catch {
    bottom: 0;
    right: 0;
    transform: translateY(100%);
    width: 100%;
  }
}
.local-main-visual > .catch > .head-F {
  color: #FFF;
  margin-bottom: clamp(24px, 3.2rem, 32px);
  text-align: left;
}
.local-main-visual > .catch > .head-F > * {
  display: block;
}
.local-main-visual > .catch > .head-F > *.ja {
  font-size: clamp(18px, 2.4rem, 24px);
  font-weight: 700;
}
.local-main-visual > .catch > .txt {
  line-height: 1.75;
  text-align: justify;
}

.intro {
  padding-bottom: clamp(90px, 12rem, 120px);
  padding-top: clamp(90px, 12rem, 120px);
}
.intro > .img {
  margin-left: auto;
  margin-right: auto;
  width: clamp(201px, 26.8rem, 268px);
  margin-bottom: clamp(54px, 7.2rem, 72px);
}
.intro > .txt-box-C {
  margin-bottom: clamp(84px, 11.2rem, 112px);
}
.intro > .button-B {
  margin-left: auto;
  margin-right: auto;
  width: clamp(183px, 24.4rem, 244px);
}

.forte, .howto, .voice, .stylist, .hiring, .works, .message {
  padding-bottom: clamp(120px, 16rem, 160px);
  padding-top: clamp(96px, 12.8rem, 128px);
}
.forte > .head-F, .howto > .head-F, .voice > .head-F, .stylist > .head-F, .hiring > .head-F, .works > .head-F, .message > .head-F {
  margin-bottom: clamp(60px, 8rem, 80px);
}

.howto > .box-B {
  margin-bottom: clamp(120px, 16rem, 160px);
}
.howto > .button-B {
  margin-left: auto;
  margin-right: auto;
  width: clamp(183px, 24.4rem, 244px);
}

.stylist > .head-F {
  color: #FFF;
}
.stylist > .box-D > .inner > .name-C {
  color: #FFF;
}
.stylist > .box-D > .inner > .name-C > * {
  color: #FFF;
}
.stylist > .box-D > .inner > .tit-G::after {
  background-color: #FFF;
}

.hiring > .img {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.hiring > .box-E {
  margin-bottom: clamp(90px, 12rem, 120px);
}
.hiring > .button-B {
  margin-left: auto;
  margin-right: auto;
  width: clamp(183px, 24.4rem, 244px);
}

.head-F {
  color: #1c1c1c;
  text-align: center;
}
.head-F > * {
  display: block;
}
.head-F > .en {
  font-size: clamp(36px, 4.8rem, 48px);
  margin-bottom: clamp(12px, 1.6rem, 16px);
}

.list-P {
  flex-wrap: wrap;
  gap: 64px;
}
@media screen and (max-width: 768px) {
  .list-P {
    gap: 32px;
  }
}
.list-P > .item {
  width: calc(50% - 32px);
}
@media screen and (max-width: 768px) {
  .list-P > .item {
    width: calc(50% - 16px);
  }
}
@media screen and (max-width: 768px) {
  .list-P > .item {
    width: 100%;
  }
}
.list-P > .item > .head-E {
  margin-bottom: clamp(18px, 2.4rem, 24px);
}
.list-P > .item > .txt-box-A > .txt {
  text-align: justify;
}

.tit-F {
  color: #1c1c1c;
  font-size: clamp(18px, 2.4rem, 24px);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .box-B {
    flex-wrap: wrap;
  }
}
.box-B > .img {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: clamp(433.5px, 57.8rem, 578px);
  width: calc(100% - clamp(341.25px, 45.5rem, 455px));
}
@media screen and (max-width: 768px) {
  .box-B > .img {
    margin-bottom: clamp(24px, 3.2rem, 32px);
    width: 100%;
    background-size: 100%;
    height: 240px;
  }
}
.box-B > .inner {
  padding-left: clamp(75px, 10rem, 100px);
  padding-right: clamp(28px, 5.6rem, 56px);
  width: clamp(341.25px, 45.5rem, 455px);
}
@media screen and (max-width: 768px) {
  .box-B > .inner {
    padding-left: clamp(28px, 5.6rem, 56px);
    width: 100%;
  }
}
.box-B > .inner > .num-A {
  margin-bottom: clamp(37.5px, 5rem, 50px);
}
.box-B > .inner > .tit-F {
  margin-bottom: clamp(12px, 1.6rem, 16px);
}
.box-B > .inner > .txt {
  line-height: 1.75;
  text-align: justify;
}
.box-B.fl- > .inner {
  padding-right: clamp(75px, 10rem, 100px);
  padding-left: clamp(28px, 5.6rem, 56px);
}
@media screen and (max-width: 768px) {
  .box-B.fl- > .inner {
    padding-right: clamp(28px, 5.6rem, 56px);
  }
}

.box-C {
  gap: clamp(24px, 3.2rem, 32px);
}
@media screen and (max-width: 768px) {
  .box-C {
    gap: clamp(60px, 8rem, 80px);
    flex-wrap: wrap;
  }
}
.box-C > .inner {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .box-C > .inner {
    width: 100%;
  }
}
.box-C > .inner > .img {
  aspect-ratio: 133/87;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin-bottom: clamp(42px, 5.6rem, 56px);
  width: 100%;
}
.box-C > .inner > .name-C {
  margin-bottom: clamp(21px, 2.8rem, 28px);
}
.box-C > .inner > .years, .box-C > .inner .unit-D {
  margin-bottom: clamp(48px, 6.4rem, 64px);
}
.box-C > .inner > .years:last-child, .box-C > .inner .unit-D:last-child {
  margin-bottom: 0;
}

.box-D > *:nth-child(1) {
  width: 310px;
}
.box-D > *:nth-child(2) {
  width: calc(100% - 310px);
}
@media screen and (max-width: 768px) {
  .box-D {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .box-D > .inner {
    margin-bottom: clamp(24px, 3.2rem, 32px);
    width: 100%;
  }
  .box-D > .inner:last-child {
    margin-bottom: 0;
  }
}
.box-D > .inner > .name-C {
  margin-bottom: clamp(24px, 3.2rem, 32px);
}
.box-D > .inner > .img {
  aspect-ratio: 133/87;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin-bottom: clamp(36px, 4.8rem, 48px);
  max-width: 532px;
}
.box-D > .inner > .tit-G {
  margin-bottom: clamp(24px, 3.2rem, 32px);
}
.box-D > .inner > .txt-box-A {
  margin-bottom: clamp(24px, 3.2rem, 32px);
}

@media screen and (max-width: 768px) {
  .box-E {
    flex-wrap: wrap;
  }
}
.box-E > * {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .box-E > * {
    width: 100%;
  }
}
.box-E > *.img {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.box-E > *.inner {
  padding-left: clamp(28px, 5.6rem, 56px);
  padding-right: clamp(28px, 5.6rem, 56px);
}
@media screen and (max-width: 768px) {
  .box-E > *.inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.years {
  border: 1px solid #e5e5e5;
  display: inline-block;
  line-height: clamp(13.5px, 1.8rem, 18px);
  padding-left: clamp(3.75px, 0.5rem, 5px);
  padding-right: clamp(3.75px, 0.5rem, 5px);
}

.num-A {
  display: inline-block;
}
.num-A > * {
  color: #1c1c1c;
  display: block;
  text-align: center;
}
.num-A > .txt {
  font-size: clamp(11px, 4.4rem, 44px);
  letter-spacing: 0.24em;
}
.num-A > .num {
  font-size: clamp(50px, 20rem, 200px);
}

.unit-D > .label {
  margin-bottom: clamp(24px, 3.2rem, 32px);
}
.unit-D > .item {
  line-height: 1.75;
  text-align: justify;
}

.unit-D > .item > p {
  line-height: 1.75;
}

.tit-G {
  font-weight: 700;
  padding-left: 76px;
  position: relative;
  position: relative;
}
.tit-G::after {
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  width: 56px;
}
.tit-G::after {
  background-color: #1c1c1c;
  bottom: 0;
  left: 0;
  margin: auto 0;
  top: 0;
}

.section-green {
  background-color: #616420;
  color: #FFF;
}

.menu-button {
  background-color: #616420;
  height: 100vh;
  width: clamp(24px, 4.8rem, 48px);
  z-index: 12;
}
.menu-button > a {
  position: relative;
}
.menu-button > a > .menu-button-inner {
  bottom: 0;
  display: block;
  height: 15px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 7px;
}
.menu-button > a > .menu-button-inner > span {
  background-color: #FFF;
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  transition-duration: 0.3s;
  width: 1px;
}
.menu-button > a > .menu-button-inner > span:nth-child(1) {
  left: 0;
}
.menu-button > a > .menu-button-inner > span:nth-child(2) {
  left: 0;
  margin: 0 auto;
  right: 0;
}
.menu-button > a > .menu-button-inner > span:nth-child(3) {
  right: 0;
}
.menu-button.is-open > a > .menu-button-inner > span:nth-child(1) {
  margin: 0 auto;
  right: 0;
  transform: rotate(-45deg);
}
.menu-button.is-open > a > .menu-button-inner > span:nth-child(2) {
  opacity: 0;
}
.menu-button.is-open > a > .menu-button-inner > span:nth-child(3) {
  left: 0;
  margin: 0 auto;
  transform: rotate(45deg);
}

.menu {
  background-color: #616420;
  height: 100vh;
  left: 0;
  padding-left: clamp(24px, 4.8rem, 48px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 11;
}
.menu > .menu-inner {
  border-left: 1px solid #8D9588;
  height: 100%;
  width: 100%;
}

.ci-A {
  width: 30%;
}
@media screen and (max-width: 1024px) {
  .ci-A {
    width: 50%;
  }
}

.ci-B {
  height: clamp(15px, 2rem, 20px);
  text-align: center;
}

@media screen and (max-width: 1024px) {
}
.g-navi > .item {
  margin-right: clamp(20px, 4rem, 40px);
}
@media screen and (max-width: 1280px) {
  .g-navi > .item {
    margin-right: clamp(12px, 2.4rem, 24px);
  }
}
@media screen and (max-width: 1024px) {
  .g-navi > .item {
    margin-right: clamp(12px, 2.4rem, 24px);
  }
}
.g-navi > .item:last-child {
  margin-right: 0;
}
.g-navi > .item > a {
  font-family: 'Helvetica Neue', -apple-system, system-ui, 'Open Sans', sans-serif;
  color: #1c1c1c;
  font-size: 13px;
  font-weight: normal;
}
@media screen and (max-width: 1024px) {
  .g-navi > .item > a {
    font-size: 18px;
    font-family: Georgia, 'Times New Roman', Times, serif;
  }
}

.u-navi > .item {
  color: #1c1c1c;
  margin-right: clamp(6px, 0.8rem, 8px);
  padding-right: clamp(6px, 0.8rem, 8px);
  position: relative;
  position: relative;
}
.u-navi > .item::after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 1px;
}
.u-navi > .item::after {
  background-color: #ccc;
  bottom: 0;
  margin: auto 0;
  right: 0;
  top: 0;
  transform: translateX(100%);
}
.u-navi > .item:last-child {
  margin-right: 0;
  padding-right: 0;
}
.u-navi > .item:last-child::after {
  display: none;
}

.catch-A {
  color: #1c1c1c;
}
.catch-A > * {
  display: block;
}
.catch-A > *.en {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 4vw;
  line-height: normal;
  letter-spacing: 0px;
  font-weight: 500;
  margin-bottom: clamp(15px, 2rem, 32px);
}
@media screen and (max-width: 768px) {
  .catch-A > *.en {
    font-size: 22px;
    line-height: 36px;
    padding-bottom: 15px !important
  }
  .catch-A > *.en > br {
    display: none;
  }
  .catch-A > *.ja {
    display:none;
  }
}
.catch-A > *.ja {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 4px;
  padding-right: clamp(42px, 5.6rem, 56px);
  line-height: 24px;
  margin: 24px 0;
  position: relative;
}

.catch-B > * {
  display: block;
}
.catch-B > *.en {
  color: #E6E6E6;
  font-size: clamp(35px, 7rem, 70px);
  letter-spacing: 0.1em;
  line-height: 1.25;
  margin-bottom: clamp(24px, 3.2rem, 32px);
}
@media screen and (max-width: 768px) {
  .catch-B > *.en {
    font-size: clamp(32px, 6.4rem, 64px);
  }
}
.catch-B > *.ja {
  color: #1c1c1c;
  font-size: clamp(10.5px, 1.4rem, 14px);
  font-weight: 600;
  letter-spacing: 0.4em;
  line-height: 1.75;
}

.head-A {
  color: #1c1c1c;
  font-size: clamp(36px, 4.8rem, 48px);
}

.head-C {
  height: clamp(33px, 4.4rem, 44px);
}

.head-D {
  font-size: clamp(36px, 4.8rem, 48px);
}

.head-E {
  color: #1c1c1c;
  font-size: clamp(18px, 2.4rem, 24px);
  font-weight: 700;
  line-height: 1.75;
}

.head-gray {
  color: #E6E6E6;
}

.txt-box-A > .txt, .txt-box-A > p {
  line-height: 1.75;
  margin-bottom: clamp(24px, 3.2rem, 32px);
}
.txt-box-A- > .txt, .txt-box-A- > p {
  line-height: 1.75;
  margin-bottom: 0;
}
.txt-box-A > .txt:last-child, .txt-box-A > p:last-child {
  margin-bottom: 0;
}

.table-A {
  border-top: 1px solid #e5e5e5;
}
.table-A > .table-unit {
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
  color: #1c1c1c;
  font-size: clamp(10.5px, 1.4rem, 14px);
  padding-bottom: clamp(18px, 2.4rem, 24px);
  padding-top: clamp(18px, 2.4rem, 24px);
}
.table-A > .table-unit > *:nth-child(1) {
  width: 180px;
}
.table-A > .table-unit > *:nth-child(2) {
  width: calc(100% - 180px);
}
@media screen and (max-width: 768px) {
  .table-A > .table-unit > *:nth-child(1) {
    width: 90px;
  }
  .table-A > .table-unit > *:nth-child(2) {
    width: calc(100% - 90px);
  }
}
.table-A > .table-unit > .label, .table-A > .table-unit > .item {
  line-height: 1.75;
}
.table-B > .unit {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 16px;
}
.table-B > .unit > *:nth-child(1) {
  width: 25%;
  padding-right: 8px;
}
.table-B > .unit > *:nth-child(1) p{
  font-size: 13px;
}
.table-B > .unit > *:nth-child(2) {
  width: 75%;
}
@media screen and (max-width: 768px) {
  .table-B {
    width: 90%;
    margin: 0 auto;
  }
  .table-B > .unit {
    flex-wrap: wrap;
    padding: 0;
  }
.table-B .unit p {
margint: 5px 0;
}
input[type=text], input[type=email], input[type=number], input[type=tel] {
line-height: normal;
}
}
.table-B > .unit > * {
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .table-B > .unit > * {
    width: 100% !important;
  }
  .table-B > .unit > *.label {
    margin-bottom: clamp(6px, 0.8rem, 8px);
  }
}

.num-A {
  color: #B2B2B2;
  font-size: clamp(15px, 2rem, 20px);
}

.name-A {
  color: #B2B2B2;
}

.name-B {
  color: #1c1c1c;
  font-size: clamp(15px, 2rem, 20px);
  font-weight: 500;
}

.name-C > * {
  display: block;
}
.name-C > *.en {
  color: #b2b2b2;
  font-size: clamp(12px, 1.6rem, 16px);
  margin-bottom: clamp(6px, 0.8rem, 8px);
}
.name-C > *.ja {
  color: #1c1c1c;
  font-size: clamp(24px, 3.2rem, 32px);
  font-weight: 500;
}

.office-A {
  height: clamp(12px, 1.6rem, 16px);
}

.cat-A {
  color: #1c1c1c;
  font-size: clamp(18px, 2.4rem, 24px);
}

.cat-B {
  border: 1px solid #e5e5e5;
  line-height: clamp(18px, 2.4rem, 24px);
  padding-left: clamp(6px, 0.8rem, 8px);
  padding-right: clamp(6px, 0.8rem, 8px);
}

.tit-A {
  color: #1c1c1c;
  font-size: clamp(10.5px, 1.4rem, 14px);
}

.tit-B {
  color: #1c1c1c;
  font-size: clamp(12px, 1.6rem, 16px);
  font-weight: 700;
}

.tit-C {
  color: #1c1c1c;
  padding-bottom: clamp(12px, 1.6rem, 16px);
  position: relative;
  position: relative;
  writing-mode: vertical-rl;
}
.tit-C::after {
  content: "";
  display: block;
  height: 48px;
  position: absolute;
  width: 1px;
}
.tit-C::after {
  background-color: #1c1c1c;
  bottom: 0;
  left: 0;
  margin: 0 auto;
  right: 0;
  transform: translateY(100%);
}

.tit-D {
  color: #1c1c1c;
  font-size: clamp(13.5px, 1.8rem, 18px);
  font-weight: 500;
}

.tit-E {
  color: #1c1c1c;
  font-size: clamp(18px, 2.4rem, 24px);
  font-weight: 700;
}

.date-A {
  font-size: 10px;
  font-weight: 700;
}

.date-B {
  color: #1c1c1c;
  font-size: 12px;
}

.date-C {
  color: #1c1c1c;
  font-size: 10px;
}

.name-A > * {
  display: block;
}
.name-A > *.en {
  color: #b2b2b2;
  font-size: 10px;
  margin-bottom: clamp(6px, 0.8rem, 8px);
}
.name-A > *.ja {
  color: #1c1c1c;
  font-size: clamp(10.5px, 1.4rem, 14px);
}

.list-A > .item {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  aspect-ratio: 148/99;
  width: 100%;
}

.list-B {
  flex-wrap: wrap;
  margin-left: clamp(-18px, -2.4rem, -24px);
  margin-right: clamp(-18px, -2.4rem, -24px);
}
@media screen and (max-width: 1024px) {
  .list-B {
    margin-left: clamp(-6px, -0.8rem, -8px);
    margin-right: clamp(-6px, -0.8rem, -8px);
  }
}
.list-B > .item {
  padding-left: clamp(18px, 2.4rem, 24px);
  padding-right: clamp(18px, 2.4rem, 24px);
  width: 25%;
}
@media screen and (max-width: 768px) {
  .list-B > .item {
    padding-left: clamp(6px, 0.8rem, 8px);
    padding-right: clamp(6px, 0.8rem, 8px);
    width: 50%;
  }
}
.list-B > .item > .num-A {
  border-top: 1px solid #E5E5E5;
  margin-bottom: clamp(12px, 1.6rem, 16px);
  padding-top: clamp(18px, 2.4rem, 24px);
}
.list-B > .item > .name-A {
  border-top: 1px solid #E5E5E5;
  margin-bottom: clamp(9px, 1.2rem, 12px);
  padding-top: clamp(18px, 2.4rem, 24px);
}
.list-B > .item > .date-B {
  border-top: 1px solid #E5E5E5;
  margin-bottom: clamp(36px, 4.8rem, 48px);
  padding-top: clamp(18px, 2.4rem, 24px);
}
.list-B > .item > .cat-A {
  margin-bottom: clamp(24px, 3.2rem, 32px);
}
.list-B > .item > .name-B {
  margin-bottom: clamp(12px, 1.6rem, 16px);
}
.list-B > .item > .thumb {
  aspect-ratio: 198/265;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin-bottom: clamp(12px, 1.6rem, 16px);
}
.list-B > .item > .thumb-D, .list-B > .item > .thumb-E {
  margin-bottom: clamp(12px, 1.6rem, 16px);
}
.list-B > .item > .thumb-E {
  border-top: 1px solid #E5E5E5;
  padding-top: clamp(18px, 2.4rem, 24px);
}
.list-B > .item > .thumb-E > .thumb-inner {
  aspect-ratio: 198/265;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.list-B > .item > .thumb-F, .list-B > .item > .thumb-G {
  margin-bottom: clamp(12px, 1.6rem, 16px);
}
.list-B > .item > .tit-A {
  margin-bottom: clamp(12px, 1.6rem, 16px);
}
.list-B > .item > .txt {
  line-height: 1.75;
  margin-bottom: clamp(24px, 3.2rem, 32px);
}
.list-B > .item > .link-A {
  margin-bottom: clamp(24px, 3.2rem, 32px);
  width: 100%;
}

.list-C {
  gap: clamp(24px, 3.2rem, 32px);
}
@media screen and (max-width: 768px) {
  .list-C {
    flex-wrap: wrap;
  }
}
.list-C > .item {
  width: 33.33333%;
}
@media screen and (max-width: 768px) {
  .list-C > .item {
    width: 100%;
  }
}
.list-C > .item > .thumb-B {
  aspect-ratio: 559/205;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin-bottom: clamp(12px, 1.6rem, 16px);
}
.list-C > .item > .ci-B {
  margin-bottom: clamp(12px, 1.6rem, 16px);
}
.list-C > .item > .txt {
  line-height: 1.75;
  margin-bottom: clamp(12px, 1.6rem, 16px);
}

.list-D > .item {
  display: flex !important;
}
.list-D > .item > .item-inner {
  padding-left: clamp(30px, 4rem, 40px);
}
.list-D > .item > .item-inner > .tit-B {
  margin-bottom: clamp(6px, 0.8rem, 8px);
}
.list-D > .item > .item-inner > .date-A {
  margin-bottom: clamp(33.75px, 4.5rem, 45px);
}
.list-D > .item > .item-inner > .txt {
  line-height: 1.75;
  margin-bottom: clamp(30px, 4rem, 40px);
  text-align: justify;
  width: clamp(102px, 13.6rem, 136px);
}
.list-D > .item > .item-inner > .name-A {
  margin-bottom: clamp(6px, 0.8rem, 8px);
}
.list-D > .item > .item-inner > .link-B {
  margin-bottom: clamp(30px, 4rem, 40px);
}
@media screen and (max-width: 375px) {
  .list-D > .item {
    flex-wrap: wrap;
  }
  .list-D > .item > .thumb-C {
    margin-bottom: clamp(24px, 3.2rem, 32px);
    width: 100%;
  }
  .list-D > .item > .item-inner {
    padding-left: 0;
    width: 100%;
  }
  .list-D > .item > .item-inner > .date-A {
    margin-bottom: clamp(18px, 2.4rem, 24px);
  }
  .list-D > .item > .item-inner > .txt {
    margin-bottom: clamp(18px, 2.4rem, 24px);
    width: 100%;
  }
  .list-D > .item > .item-inner > .link-B {
    margin-bottom: 0;
  }
  .list-D > .item > .item-inner > .arrows-A {
    bottom: 0;
    position: absolute;
    right: 0;
  }
}

.list-E > .item {
  margin-bottom: clamp(9px, 1.2rem, 12px);
}
.list-E > .item > .item-inner {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: clamp(9px, 1.2rem, 12px);
  width: 100%;
}
.list-E > .item > .item-inner > .date-B {
  width: 112px;
}
.list-E > .item > .item-inner > .txt {
  width: calc(100% - 112px);
}
.list-E > .item:last-child {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.list-E.list-E- {
  flex-wrap: wrap;
  margin-left: clamp(-15px, -2rem, -20px);
  margin-right: clamp(-15px, -2rem, -20px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .list-E.list-E- {
    margin-left: 0;
    margin-right: 0;
  }
}
.list-E.list-E- > .item {
  padding-left: clamp(15px, 2rem, 20px);
  padding-right: clamp(15px, 2rem, 20px);
  width: 50%;
}
@media screen and (max-width: 768px) {
  .list-E.list-E- > .item {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
}

.list-F > .item {
  margin-bottom: clamp(6px, 0.8rem, 8px);
}
.list-F > .item:last-child {
  margin-bottom: 0;
}

.list-G {
  color: #FFF;
  flex-wrap: wrap;
  margin-left: clamp(-18px, -2.4rem, -24px);
  margin-right: clamp(-18px, -2.4rem, -24px);
}
@media screen and (max-width: 1024px) {
  .list-G {
    margin-left: clamp(-12px, -1.6rem, -16px);
    margin-right: clamp(-12px, -1.6rem, -16px);
  }
}
.list-G > .item {
  margin-bottom: clamp(36px, 4.8rem, 48px);
  width: 33.33333%;
}
@media screen and (max-width: 1024px) {
  .list-G > .item {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .list-G > .item {
    width: 100%;
  }
}
.list-G > .item > a {
  align-items: center;
  border-bottom: 1px solid #8D9588;
  justify-content: space-between;
  margin-left: clamp(18px, 2.4rem, 24px);
  margin-right: clamp(18px, 2.4rem, 24px);
  padding-bottom: clamp(12px, 1.6rem, 16px);
}
@media screen and (max-width: 1024px) {
  .list-G > .item > a {
    margin-left: clamp(12px, 1.6rem, 16px);
    margin-right: clamp(12px, 1.6rem, 16px);
  }
}
.list-G > .item > a > .en {
  font-size: clamp(23px, 4rem, 40px);
}
.list-G > .item > a > .ja {
  font-size: 12px;
}
.list-G > .item > .sub-menu, .list-G > .item .sub-menu-A {
  margin-top: clamp(18px, 2.4rem, 24px);
}
.list-G > .item > .sub-menu > .item, .list-G > .item .sub-menu-A > .item {
  margin-bottom: clamp(9px, 1.2rem, 12px);
}
.list-G > .item > .sub-menu > .item:last-child, .list-G > .item .sub-menu-A > .item:last-child {
  margin-bottom: 0;
}
.list-G > .item > .sub-menu > .item > a > .name-A, .list-G > .item .sub-menu-A > .item > a > .name-A {
  color: #FFF;
  padding-left: clamp(18px, 2.4rem, 24px);
}
@media screen and (max-width: 768px) {
  .list-G > .item > .sub-menu > .item > a > .name-A, .list-G > .item .sub-menu-A > .item > a > .name-A {
    padding-left: clamp(12px, 1.6rem, 16px);
  }
}
.list-G > .item > .sub-menu > .item > a > .name-A > *.en, .list-G > .item .sub-menu-A > .item > a > .name-A > *.en {
  color: #FFF;
}
.list-G > .item > .sub-menu > .item > a > .name-A > *.ja, .list-G > .item .sub-menu-A > .item > a > .name-A > *.ja {
  color: #FFF;
}
.list-G > .item > .sub-menu {
  margin-left: clamp(18px, 2.4rem, 24px);
  margin-right: clamp(18px, 2.4rem, 24px);
}
@media screen and (max-width: 1024px) {
  .list-G > .item > .sub-menu {
    margin-left: clamp(12px, 1.6rem, 16px);
    margin-right: clamp(12px, 1.6rem, 16px);
  }
}
.list-G > .item > .sub-menu-A {
  flex-wrap: wrap;
}
.list-G > .item > .sub-menu-A > .item {
  width: 16.66666%;
}
@media screen and (max-width: 1440px) {
  .list-G > .item > .sub-menu-A > .item {
    width: 25%;
  }
}
@media screen and (max-width: 768px) {
  .list-G > .item > .sub-menu-A > .item {
    width: 33.33333%;
  }
}
@media screen and (max-width: 768px) {
  .list-G > .item > .sub-menu-A > .item {
    width: 50%;
  }
}
.list-G > .item > .sub-menu-A > .item > a {
  align-items: center;
  height: 100%;
  margin-left: clamp(18px, 2.4rem, 24px);
  margin-right: clamp(18px, 2.4rem, 24px);
  width: 100%;
}
.list-G > .item > .sub-menu-A > .item > a > *:nth-child(1) {
  width: 65px;
}
.list-G > .item > .sub-menu-A > .item > a > *:nth-child(2) {
  width: calc(100% - 65px);
}
@media screen and (max-width: 1024px) {
  .list-G > .item > .sub-menu-A > .item > a {
    margin-left: clamp(12px, 1.6rem, 16px);
    margin-right: clamp(12px, 1.6rem, 16px);
  }
}
.list-G > .item.item-A {
  width: 100%;
}

.list-H > .item {
  margin-right: clamp(12px, 1.6rem, 16px);
  padding-right: clamp(12px, 1.6rem, 16px);
  position: relative;
  position: relative;
}
.list-H > .item::after {
  content: "";
  display: block;
  height: 5px;
  position: absolute;
  width: 5px;
}
.list-H > .item::after {
  border-bottom: 1px solid #c9c9c9;
  border-right: 1px solid #c9c9c9;
  bottom: 0;
  margin: auto 0;
  right: 0;
  top: 0;
  transform: translateX(50%) rotate(-45deg);
}
.list-H > .item:last-child {
  margin-right: 0;
  padding-right: 0;
}
.list-H > .item:last-child::after {
  display: none;
}

.list-I > .item {
  margin-bottom: clamp(6px, 0.8rem, 8px);
  margin-right: clamp(6px, 0.8rem, 8px);
}
.list-I > .item:last-child {
  margin-right: 0;
}

.list-J > .item {
  margin-bottom: clamp(12px, 1.6rem, 16px);
}
.list-J > .item > *:nth-child(1) {
  width: 65px;
}
.list-J > .item > *:nth-child(2) {
  width: calc(100% - 65px);
}
.list-J > .item:last-child {
  margin-bottom: 0;
}
.list-J > .item > .item-inner {
  padding-left: clamp(18px, 2.4rem, 24px);
}
.list-J > .item > .item-inner > .name-A {
  margin-bottom: clamp(6px, 0.8rem, 8px);
}

.list-K > .item {
  aspect-ratio: 44/59;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.list-M {
  margin-bottom: clamp(-6px, -0.8rem, -8px);
}
.list-M > .item {
  margin-bottom: clamp(6px, 0.8rem, 8px);
  margin-right: clamp(6px, 0.8rem, 8px);
  height: clamp(18px, 2.4rem, 24px);
}
.list-M > .item > img {
  height: 100%;
  width: auto;
}

.list-L-wrap {
  margin-left: 0 !important;
  width: clamp(174px, 23.2rem, 232px);
}

.list-L > .item {
  width: 33.33333%;
}
.list-L > .item > a {
  aspect-ratio: 44/59;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.unit-A > .label {
  border-bottom: 1px solid #e5e5e5;
  color: #1c1c1c;
  margin-bottom: clamp(9px, 1.2rem, 12px);
  padding-bottom: clamp(9px, 1.2rem, 12px);
}
.unit-A > .item > .unit-B {
  margin-bottom: clamp(6px, 0.8rem, 8px);
}
.unit-A > .item > .unit-B:last-child {
  margin-bottom: 0;
}

.unit-B > *:nth-child(1) {
  width: 48px;
}
.unit-B > *:nth-child(2) {
  width: calc(100% - 48px);
}
.unit-B > .label {
  border: 1px solid #e5e5e5;
  font-size: 10px;
  line-height: clamp(12px, 1.6rem, 16px);
  text-align: center;
}
.unit-B > .item {
  padding-left: clamp(12px, 1.6rem, 16px);
}

.unit-C {
  align-items: center;
}
.unit-C > *:nth-child(1) {
  width: 65px;
}
.unit-C > *:nth-child(2) {
  width: calc(100% - 65px);
}
.unit-C > .face {
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.unit-C > .item-inner {
  padding-left: clamp(18px, 2.4rem, 24px);
}
.unit-C > .item-inner > .name-A {
  margin-bottom: clamp(6px, 0.8rem, 8px);
}

.link-A {
  border-bottom: 1px solid #E5E5E5;
  width: clamp(127.5px, 17rem, 170px);
  padding-bottom: clamp(6px, 0.8rem, 8px);
}
.link-A > a {
  font-size: 10px;
  position: relative;
}
.link-A > a::after {
  content: "";
  display: block;
  height: 5px;
  position: absolute;
  width: 12px;
}
.link-A > a::after {
  background: url(../img/common/arrow.svg) no-repeat center center/cover;
  bottom: 0;
  margin: auto 0;
  right: 0;
  top: 0;
}

.link-B > a {
  font-size: 10px;
  padding-right: clamp(12px, 1.6rem, 16px);
  position: relative;
  position: relative;
}
.link-B > a::after {
  content: "";
  display: block;
  height: 5px;
  position: absolute;
  width: 12px;
}
.link-B > a::after {
  background: url(../img/common/arrow.svg) no-repeat center center/cover;
  bottom: 0;
  margin: auto 0;
  right: 0;
  top: 0;
}

.button-A > a {
  background-color: #1c1c1c;
  color: #FFF;
  font-size: clamp(10.5px, 1.4rem, 14px);
  line-height: clamp(36px, 4.8rem, 48px);
  text-align: center;
}

.button-B > a {
  background-color: #1c1c1c;
  color: #FFF;
  font-size: clamp(10.5px, 1.4rem, 14px);
  font-weight: 500;
  line-height: clamp(36px, 4.8rem, 48px);
  text-align: center;
}
.button-B.button-B-orange > a {
  background-color: #616420;
}

.button-C {
  background-color: #1c1c1c;
  color: #FFF;
  cursor: pointer;
  font-size: 14px;
  line-height: clamp(36px, 4.8rem, 48px);
  text-align: center;
  width: 100%;
}

.buttons-A {
  text-align: center;
}
.buttons-A > .item {
  margin-left: clamp(6px, 0.8rem, 8px);
  margin-right: clamp(6px, 0.8rem, 8px);
  width: clamp(183px, 24.4rem, 244px);
}
.buttons-A > .item:last-child {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .buttons-A > .item {
    margin-bottom: clamp(6px, 0.8rem, 8px);
    margin-right: 0;
  }
  .buttons-A > .item:last-child {
    margin-bottom: 0;
  }
}

.txt-B {
  font-size: clamp(10.5px, 1.4rem, 14px);
  font-weight: 500;
  line-height: 2.85;
}

.section-gray {
  background-color: #F2F3F1;
}

.numbers {
  text-align: left;
}
.numbers > .item {
  margin-right: clamp(17.25px, 2.3rem, 23px);
  padding-right: clamp(17.25px, 2.3rem, 23px);
  position: relative;
  position: relative;
}
@media screen and (max-width: 768px) {
  .numbers{
    display: none;
  }
}
.numbers > .item::after {
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  width: 12px;
}
.numbers > .item::after {
  background-color: #1c1c1c;
  bottom: 0;
  margin: auto 0;
  right: 0;
  top: 0;
  transform: translateX(50%);
}
.numbers > .item:last-child {
  margin-right: 0;
  padding-right: 0;
}
.numbers > .item:last-child::after {
  display: none;
}
.numbers > .item > a {
  font-size: 12px;
}
.numbers > .item.is-active > a {
  font-weight: bold;
}

.arrow-B {
  background: url(../img/common/arrow.svg) no-repeat center center/cover;
  height: 5px !important;
  width: 12px !important;
}
.arrow-B::after {
  display: none;
}

.arrows-A {
  z-index: 1;
}
.arrows-A > .item {
  display: inline-block;
  height: clamp(42px, 5.6rem, 56px);
  margin-right: clamp(18px, 2.4rem, 24px);
  position: static;
  width: clamp(42px, 5.6rem, 56px);
}
.arrows-A > .item:last-child {
  margin-right: 0;
}
.arrows-A > .item > a {
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  position: relative;
}
.arrows-A > .item > a.arrow-A {
  position: relative;
}
.arrows-A > .item > a.arrow-A::after {
  content: "";
  display: block;
  height: 5px;
  position: absolute;
  width: 12px;
}
.arrows-A > .item > a.arrow-A::after {
  background: url(../img/common/arrow.svg) no-repeat center center/cover;
  bottom: 0;
  left: 0;
  margin: auto;
  right: 0;
  top: 0;
}
.arrows-A > .item > a.arrow-A.arrow-A-::after {
  transform: scale(-1, 1);
}
.arrows-A > .item::after {
  display: none;
}

.thumb-A-wrap {
  box-sizing: content-box;
  position: relative;
  width: 80%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .thumb-A-wrap{
    padding: 0 5%;
    width: 100%;
  }
}

.thumb-A-wrap > .arrow-B {
  bottom: 30px;
  cursor: pointer;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
}

.thumb-A-wrap-inner {
  width: 100%;
}

.thumb-A {
  width: 100%;
}
.thumb-A > .item {
  aspect-ratio: 11/7;
  width: 33.33333%;
  padding: 0px !important;
}
@media screen and (max-width: 768px) {
  .thumb-A > .item {
    width: 21% !important;
    margin-right: 2% !important;
  }
}
@media screen and (max-width: 460px) {
  .thumb-A > .item {
    width: 21% !important;
  }
}
.thumb-A > .item > a {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.thumb-A > .item.swiper-slide-thumb-active {
  border: 1px solid #1c1c1c;
}

.thumb-C {
  width: clamp(312px, 41.6rem, 416px);
}
.thumb-C > img {
  width: 100%;
}

.thumb-D {
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin-left: auto;
  margin-right: auto;
  max-width: 178px;
}

.thumb-F {
  aspect-ratio: 396/371;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.thumb-G {
  aspect-ratio: 3/2;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.pagenation {
  gap: clamp(30px, 4rem, 40px);
  justify-content: center;
  margin-top: clamp(90px, 12rem, 120px);
}
.pagenation > .item {
  font-size: clamp(10.5px, 1.4rem, 14px);
}
.pagenation > .item > a {
  color: #1c1c1c;
}
.pagenation > .item:last-child {
  margin-right: 0;
}
.pagenation > .item.is-active > a {
  text-decoration: underline;
}
.pagenation > .arrow-A {
  position: relative;
  width: 12px;
}
.pagenation > .arrow-A::after {
  content: "";
  display: block;
  height: 5px;
  position: absolute;
  width: 12px;
}
.pagenation > .arrow-A::after {
  background: url(../img/common/arrow.svg) no-repeat center center/cover;
  bottom: 0;
  left: 0;
  margin: auto;
  right: 0;
  top: 0;
}
.pagenation > .arrow-A.arrow-A-::after {
  transform: scale(-1, 1);
}

@media screen and (max-width: 768px) {
  .anchor-link {
    flex-wrap: wrap;
  }
}
.anchor-link > .item {
  border-right: 1px solid #1c1c1c;
  height: clamp(15px, 2rem, 20px);
  margin-right: clamp(30px, 4rem, 40px);
  padding-right: clamp(30px, 4rem, 40px);
}
@media screen and (max-width: 768px) {
  .anchor-link > .item {
    margin-bottom: clamp(12px, 1.6rem, 16px);
  }
}
.anchor-link > .item > a {
  color: #1c1c1c;
  font-size: clamp(13.5px, 1.8rem, 18px);
  line-height: clamp(15px, 2rem, 20px);
}
.anchor-link > .item:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

.staff-list > * {
  vertical-align: top;
}
.staff-list > .tit-C {
  margin-right: clamp(24px, 3.2rem, 32px);
}

.box-A > .img {
  margin-bottom: clamp(48px, 6.4rem, 64px);
}
.box-A > .img > img {
  width: 100%;
}
.box-A > .box-A-inner > .box-A-unit:nth-of-type(1) {
  width: calc(100% - clamp(252px, 33.6rem, 336px));
}
.box-A > .box-A-inner > .box-A-unit:nth-of-type(1) > .head-E {
  margin-bottom: clamp(40.5px, 5.4rem, 54px);
}
.box-A > .box-A-inner > .box-A-unit:nth-of-type(1) > .price-area {
  margin-bottom: clamp(40.5px, 5.4rem, 54px);
}
.box-A > .box-A-inner > .box-A-unit:nth-of-type(2) {
  width: clamp(252px, 33.6rem, 336px);
}
.box-A > .box-A-inner > .box-A-unit:nth-of-type(2) > .head-A {
  margin-bottom: clamp(40.5px, 5.4rem, 54px);
}
@media screen and (max-width: 768px) {
  .box-A > .box-A-inner {
    flex-wrap: wrap;
  }
  .box-A > .box-A-inner > * {
    width: 100% !important;
  }
  .box-A > .box-A-inner > *:nth-of-type(1) {
    margin-bottom: clamp(42px, 5.6rem, 56px);
  }
}

.en {
  font-family: Georgia, 'Times New Roman', Times, serif;
}

input[type=text],
input[type=email],
input[type=number],
input[type=tel],
textarea {
  background-color: #ffff;
  width: 100%;
}

input[type=text],
input[type=email],
input[type=number],
input[type=tel] {
  height: clamp(40px, 3rem, 50px);
  padding-left: 8px;
  padding-right: 8px;
}

textarea {
  height: clamp(150px, 20rem, 200px);
  padding-bottom: clamp(6px, 0.8rem, 8px);
  padding-left: clamp(6px, 0.8rem, 8px);
  padding-right: clamp(6px, 0.8rem, 8px);
  padding-top: clamp(6px, 0.8rem, 8px);
}

.price-area {
  border-top: 1px solid #E5E5E5;
  padding-top: clamp(12px, 1.6rem, 16px);
  max-width: 520px;
}
.price-area > .unit {
  align-items: center;
  border-bottom: 1px solid #E5E5E5;
  color: #1c1c1c;
  font-size: clamp(9.75px, 1.3rem, 13px);
  justify-content: space-between;
  margin-bottom: clamp(12px, 1.6rem, 16px);
  padding-bottom: clamp(12px, 1.6rem, 16px);
}
.price-area > .unit > .item {
  text-align: right;
}
.price-area > .unit > .item > .item-inner {
  font-size: clamp(13.5px, 1.8rem, 18px);
}

.txt-box-C {
  text-align: center;
}
.txt-box-C > p {
  font-size: clamp(10.5px, 1.4rem, 14px);
  font-weight: 500;
  line-height: 2.85;
  margin-bottom: clamp(18px, 2.4rem, 24px);
}
.txt-box-C > p:last-child {
  margin-bottom: 0;
}
.txt-box-C > p > a {
  text-decoration: underline;
}

.footer {
  background-color: #1c1c1c;
  color: #FFF;
  padding: 48px 5% 16px 5%;
}
.footer ul li,
.footer a {
  color: #FAFAFA;
}
.footer .copyright {
  color: #FAFAFA;
}
@media screen and (max-width: 768px) {
  .en {
    font-family: Georgia, 'Times New Roman', Times, serif !important;
  }
  .footer {
    padding-left: 24px;
    padding-right: 24px;
    background:linear-gradient(to top,rgba(0,0,0,0.8)0%,rgb(0,0,0,1)100%),url(http://fregrance-cafe.katana-inc.com/wp-content/themes/eclat/assets/images/concept.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }
}
.footer > .f-inner {
  margin-bottom: clamp(36px, 6rem, 64px);
  justify-content: left;
  gap: 6rem;
  width: 100%;
}
.footer > .f-bottom {
  justify-content: space-between;
  width: 100%;
  padding-top: 16px;
}
@media screen and (max-width: 768px) {
  .footer > .f-inner {
    flex-wrap: wrap;
    margin-bottom: clamp(40px, 6rem, 64px);
    gap: 1rem;
  }
  .footer > .f-inner > .list-N {
    margin-bottom: 16px;
    width: 100%;
  }
  .footer > .f-inner > .list-N:last-child {
    margin-bottom: 0;
  }
  .footer > .f-bottom {
    flex-direction: column;
  }
}
.footer > .f-inner:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .footer > .f-inner > .copyright {
    margin-top: clamp(24px, 5.6rem, 56px);
  }
}

@media screen and (max-width: 768px) {
  .list-N {
    border-top: 0px solid rgba(255, 255, 255, 0.25);
  }
}
.list-N > .item {
  margin-bottom: clamp(18px, 2.4rem, 24px);
}
@media screen and (max-width: 768px) {
  .list-N > .item {
    margin-bottom: 0;
    width: 100%;
  }
}
.list-N > .item:last-child {
  margin-bottom: 0;
}
.list-N > .item > a {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: clamp(18px, 1rem, 24px);
  letter-spacing: 0.2rem;
}
.sub-list a {
  font-size: 13px;
}
.first-link {
  margin-bottom: 80px !important;
}
.last-link {
  margin-top: 80px !important;
}
@media screen and (max-width: 768px) {
  .list-N > .item > a {
    border-bottom: 0px solid rgba(255, 255, 255, 0.25);
    display: block;
    margin-bottom: 0;
    padding-bottom: 8px;
    padding-top: 8px;
    font-size: 18px;
  }
  .first-link {
    margin-bottom: 0 !important;
  }
  .last-link {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    margin-top: 50px !important;
  }
  .sub-list a {
    font-size: 12px;
    font-weight: 200;
  }
}
@media screen and (max-width: 768px) {
  .list-N > .item > .sub-list {
    margin-top: 7px;
  }
}
.list-N > .item > .sub-list > .item {
  margin-bottom: 8px;
}
.list-N > .item > .sub-list > .item:last-child {
  margin-bottom: 0;
}

.list-O > .item {
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  margin-right: clamp(12px, 1.6rem, 16px);
  padding-right: clamp(12px, 1.6rem, 16px);
}
.list-O > .item:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

.article > * {
  margin-bottom: clamp(18px, 2.4rem, 24px);
}
.article > p {
  line-height: 1.75;
}
.article > h2 {
  font-size: clamp(15px, 2rem, 20px);
  font-weight: 700;
}
.article > ul > li {
  line-height: 1.5;
  margin-bottom: clamp(6px, 0.8rem, 8px);
  padding-left: 12px;
  position: relative;
  position: relative;
}
.article > ul > li::before {
  content: "";
  display: block;
  height: 8px;
  position: absolute;
  width: 8px;
}
.article > ul > li::before {
  background-color: #333;
  border-radius: 50%;
  left: 0;
  top: 5px;
}
.article > ul > li:last-child {
  margin-bottom: 0;
}

.bl {
  display: block;
  height: 100%;
  width: 100%;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .bl {
    font-size: 20px;
  }
}

.fl {
  display: flex;
  width: 100%;
}

.fl- {
  flex-direction: row-reverse;
}

.ib {
  letter-spacing: -0.4em;
}
.ib > * {
  display: inline-block;
  letter-spacing: 0.05em;
}

._pc {
  display: block;
}
@media screen and (max-width: 768px) {
  ._pc {
    display: none;
  }
}

._sp {
  display: none;
}
@media screen and (max-width: 768px) {
  ._sp {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */

.movie {
  margin-left: auto;
  margin-right: auto;
  margin-top: clamp(90px, 12rem, 120px);
  max-width: 1000px;
}
.movie > video {
  width: 100%;
}

.map-A > iframe {
  height: clamp(457px, 61rem, 610px);
  width: 100%;
}






* {
  font-family: "HelveticaNeueW01-45Ligh", "Noto Sans Japanese", "Noto Sans SC", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: initial;
  line-height: normal;
  font-weight: inherit;
  font-style: normal;
  color: #1c1c1c;
}

img {
  object-fit: cover;
  image-rendering: crisp-edges; /* エッジをシャープにする */
  image-rendering: -webkit-optimize-contrast; /* WebKit系ブラウザ向けの画質改善 */
}

.page-thumbnail {
  margin-top: 25px;
}

.page-thumbnail img {
  max-width: none !important;
  height: 100% !important;
  width: 100%;
}

.page-content {
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0px;
  width: 80%;
  margin: 0 auto;
  padding: 16px 0;
}

.page-content h4 {
  text-align: center;
  margin: 40px 0 30px 0;
  font-size: 26px;
  font-weight: 400;
}

.page-content p,
.page-content ul li {
  line-height: 30px;
  margin: 20px 0;
  letter-spacing: -1px;
}

.page-contact{
  width: 60% !important;
  padding: 16px 0 !important;
}
@media screen and (max-width: 768px){
  .page-contact{
    width: 100% !important;
    padding: 32px 0 0 0 !important;
  }
}

.table p,
.table ul li {
  margin: 0;
}

.left-title h4 {
  text-align: left;
}

.page-content img {
  width: 100%;
  margin: 20px 0;
}

.pagep-button-bar {
  text-align: center;
  margin: 30px 0 100px 0;
}

.pagep-button-bar a {
  padding: 10px 50px;
  background-color: #616420;
}

.pagep-button-bar a span {
  color: #FAFAFA;
}


@media screen and (max-width: 768px) {
  * {
    font-family: "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 11px;
    line-height: normal;
    font-weight: normal;
    font-style: normal;
    color: #1c1c1c;
    font-feature-settings: "palt";
  }
  .page-header h1 {
    font-size: 24px;
  }

  .page-content {
    width: 100%;
    min-width: auto;
    padding: 20px 0 40px 0;
    line-height: 30px;
    font-size: 15px;
  }

  .page-content h4 {
    font-size: 20px;
    margin: 30px 0;
  }

  .page-content p,
  .page-content ul li {
    margin: 4px 0;
  }

  .page-thumbnail img {
    height: calc(100vw* 0.6) !important;
  }

}

.carousel {
  padding: 40px 5%;
  margin-top: 80px;
}
.carousel .carousel-title {
  font-family: Georgia, 'Times New Roman', Times, serif;
  text-align: center;
  font-weight: bold;
  font-size: 28px;
  letter-spacing: 0.2rem;
}
.carousel .swiper-container {
  margin: 24px 0;
  overflow: hidden;
}
.carousel .swiper-container img {
  width: 100%;
  height: 160px !important;
  object-fit: cover;
}
.carousel .swiper-container h3 {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}
.fix-page .carousel .carousel-title,
.fix-page .product-detail-button span,
.fix-page .carousel h3,
.fix-page .carousel p {
  color: #ffff;
}
.carousel .swiper-container ul {
  margin: 16px 0 !important;
}
.carousel .swiper-container ul li {
  margin: 2px 0;
  font-size: 12px;
  padding: 0 5px;
}

.carousel .swiper-slide {
  padding: 0 20px;
}
.brand-carousel .swiper-container {
  position: relative !important;
}
.brand-carousel .swiper-button-prev,
.brand-carousel .swiper-button-next {
  color: #fff !important;
  background-color: transparent !important;
  position: absolute !important;
  top: calc(100vw* 0.1)  !important;
  width: 35px !important;
  height: 40px !important;
}
.brand-carousel .swiper-button-next:after,
.brand-carousel .swiper-button-prev:after {
  font-size: 16px !important;
}
.brand-carousel .swiper-pagination-bullet-active {
  background: #1c1c1c !important;
}
.brand-carousel .swiper-horizontal>.swiper-pagination-progressbar,
.brand-carousel .swiper-pagination-progressbar.swiper-pagination-horizontal,
.brand-carousel .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.brand-carousel .swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  bottom: 100px !important;
  top: auto !important;
}
.brand-carousel .carousel .swiper-slide {
  height: 65vh !important;
}

.footer-carousel h2{
  color: #fff !important;
}
.footer-carousel h3{
  color: #fff !important;
}
.footer-carousel p{
  color: #fff !important;
}

@media screen and (max-width: 768px) {
  .carousel .swiper-container .detail-button a{
    margin-bottom: 8px;
  }
  .carousel {
    padding: 48px 10%;
    margin-top: 40px;
  }
  .carousel .swiper-container img {
    height: calc(100vw * 0.5) !important;
  }
  .carousel .brand-excerpt p {
    font-size: 11px;
    line-height: 16px;
  }
  .brand-carousel .swiper-button-prev,
  .brand-carousel .swiper-button-next {
    top: calc(100vw* 0.28) !important;
  }
  .carousel .swiper-container {
    margin: 24px 0 0 0;
    padding: 15px 0 50px 0;
  }
  .product-carousel .swiper-container h3 {
    margin: 0 !important;
  }
.carousel .swiper-container h3 {
    margin: 0;
    font-size: 2.8rem;
    line-height: 3.5rem;
  }
  .carousel .swiper-container .detail-button {
    margin-top: 12px;
    padding: 0;
  }
  .brand-carousel .swiper-horizontal>.swiper-pagination-progressbar,
  .brand-carousel .swiper-pagination-progressbar.swiper-pagination-horizontal,
  .brand-carousel .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
  .brand-carousel .swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    bottom: 80px !important;
  }
  .carousel .carousel-title {
    font-size: 24px;
  }
}
@media screen and (max-width:460px) {
  .footer-carousel h3{
    font-size: 18px !important;
    line-height: 28px !important;
  }
}
.map-button {
  max-width: 100% !important;
}
.map-button p {
  max-width: 100% !important;
  margin: 15px 0 0 0 !important;
}
.shop-carousel .shop-info {
  width: 100% !important;
}
.shop-carousel .swiper-button-prev:after,
.shop-carousel .swiper-button-next:after {
  font-size: 16px;
  color: #1c1c1c;
}
.brand-carousel .swiper-pagination-bullet-active {
  background: #1c1c1c !important;
}

.product-carousel .swiper-slide p {
  margin-top: 0;
  font-size: 13px;
  line-height: 20px;
}
.product-carousel .swiper-container .detail-button {
  border: 0;
  padding: 0;
}
.product-carousel ul {
  margin: 20px 0 !important;
}
.product-carousel ul li {
  border-bottom: none;
}
.product-carousel .swiper-container {
  position: relative !important;
}
.product-carousel .swiper-container,
.product-carousel .swiper-wrapper {
  height: 100%;
}
.product-carousel .swiper-wrapper {
  flex-wrap: wrap;
}
.product-carousel {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}
.product-wrap{
  justify-content: left;
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  width: 100%;
  height: 100%;
}
.product-item_wrap {
  height: calc(100vw * 0.2);
}
.product-carousel .product-item {
  width: calc(94% / 4);
  opacity: 1;
  transform: translateX(0);
  max-height: 1000px;
  overflow: hidden;
  transition: transform 0.4s ease, opacity 0.4s ease, max-height 0.4s ease, margin 0.4s ease, padding 0.4s ease;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.product-item_wrap img {
  width: 100%;
  height: 100%;
}

.news-list-button, .detail-button{
  border-bottom: 1px solid #000000;
  padding: 10px;
}
.load-more-button{
  width: 75%;
  margin: 16px auto 0 auto;
  max-width: 800px;
  display: flex !important;
  justify-content: center !important;
}
.detail-button a, .maine-view_news-wrap .news-button {
  display: flex;
  justify-content: space-between;
}
.load-button p{
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  .product-item_wrap {
    height: calc(100vw * 0.5);
  }
  .product-carousel .product-item {
    width: calc(98% / 2);
    opacity: 1;
    transform: translateX(0);
    max-height: 1000px;
    overflow: hidden;
    transition: transform 0.4s ease, opacity 0.4s ease, max-height 0.4s ease, margin 0.4s ease, padding 0.4s ease;
    display: flex;
    flex-direction: column;
    margin: 4px 0 0 0;
  }
  .news-list-button, .detail-button{
  border-bottom: 1px solid #000000;
  padding: 8px 4px;
}
}
.product-item.hidden {
  opacity: 0;
  transform: translateX(30px); /* 右に30pxズレて消える */
  max-height: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

/*pickupカルーセル*/
.pickup-carousel .swiper-button-prev,
.pickup-carousel .swiper-button-next {
  color: #ffff;
  width: 3vw !important;
  height: 3vw !important;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
}
.pickup-carousel .swiper-button-prev:after,
.pickup-carousel .swiper-button-next:after {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .pickup-carousel .swiper-button-prev,
  .pickup-carousel .swiper-button-next {
    color: #000000;
    width: 10vw !important;
    height: 10vw !important;
  }
  .pickup-carousel .swiper-button-prev:after,
  .pickup-carousel .swiper-button-next:after {
    font-size: 5rem;
  }
}

.pickup-carousel .swiper-button-prev {
  position: absolute;
  top: 81%;
  left: 42%;
}
.pickup-carousel .swiper-button-next {
  position: absolute;
  top: 81%;
  right: 51%;
}
@media screen and (max-width: 768px) {
  .pickup-carousel .swiper-button-prev {
    position: absolute;
    top: unset;
    bottom: 30px;
    left: 80%;
    transform: translate(calc(-50% + -8vw));
  }
  .pickup-carousel .swiper-button-next {
    position: absolute;
    top: unset;
    bottom: 30px;
    right: 20%;
    transform: translate(calc(50% + 8vw));
  }
}

/*商品情報スタイル*/
.product-carousel .swiper-button-prev {
  left: 0;
}
.product-carousel .swiper-button-next {
  right: 0;
}
.product-carousel .swiper-button-next:after,
.product-carousel .swiper-button-prev:after {
  font-size: 16px !important;
}
.product-carousel .swiper-pagination-bullet-active {
  background: #616420 !important;
}
.product-carousel .swiper-horizontal>.swiper-pagination-progressbar,
.product-carousel .swiper-pagination-progressbar.swiper-pagination-horizontal,
.product-carousel .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.product-carousel .swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  bottom: 100px !important;
  top: auto !important;
}
.product-carousel .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #616420 !important;
}
.product-lead{
  font-size: 13px !important;
}
.single-title {
  width: 75%;
  font-size: 20px;
}
.product-carousel .product-slide-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-carousel .product-slide-content h3{
  font-size: 16px;
  font-feature-settings: "palt";
}
.product-carousel .product-slide-content .product-thumbnail {
  height: calc(100vw* 0.25) !important;
}
.product-carousel .product-slide-content .detail-button {
  margin-top: auto;
}
.product-excerpt p, .detail-button p, .detail-button span{
  font-size: 12px !important;
}

@media(min-width:461px) {
  .product-carousel .swiper-slide {
    height: auto;
  }
  .shop-carousel .swiper-slide {
    height: auto;
    width: 33.3%;
  }
}

@media screen and (max-width: 768px) {
  .product-excerpt p, .detail-button p, .detail-button span{
    font-size: 11px !important;
  }
  .product-carousel .swiper-container .detail-button a{
    margin-bottom: -8px;
  }
  .product-carousel .swiper-slide {
    padding: 0 20px;
    height: auto;
  }
  .product-carousel .swiper-button-prev,
  .product-carousel .swiper-button-next {
    top: calc(100vw* 0.28) !important;
  }
  .product-carousel .swiper-horizontal>.swiper-pagination-progressbar,
  .product-carousel .swiper-pagination-progressbar.swiper-pagination-horizontal,
  .product-carousel .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
  .product-carousel .swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    bottom: 80px !important;
  }
  .product-carousel .swiper-container .detail-button {
    margin-top: auto;
    padding: 0;
  }
  .product-carousel .button_news-list {
    margin: 100px auto 0 auto;
    width: 90%;
  }
  .single-title {
    width: 100%;
    font-size: 13px !important;
  }
  .product-carousel .product-slide-content {
      position: relative;
  }
  .product-carousel .swiper-container .detail-button a span,
  .service-list_wrap .service-detail-button a span,
  .brand-carousel .detail-button a span,
  .pickup-carousel .detail-button a span {
    font-size: 2.2rem;
  }
  .carousel .swiper-slide {
    padding: 0;
  }
  .product-carousel .product-slide-content .product-thumbnail {
    height: calc(100vw* 0.5) !important;
  }
  .product-carousel .swiper-slide p {
    font-size: 2.2rem;
    line-height: 3.5rem;
  }
}

.banner-carousel .swiper-pagination-bullet-active {
  background: #616420 !important;
}
.banner-carousel .swiper-horizontal>.swiper-pagination-progressbar,
.banner-carousel .swiper-pagination-progressbar.swiper-pagination-horizontal,
.banner-carousel .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.banner-carousel .swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  bottom: 650px !important;
  top: auto !important;
}
.banner-carousel .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #616420 !important;
}
.footer-banner-carousel{
  width: 50%;
}
.banner-slide-content {
  width: 100%;
  height: 100%;
}
.banner-slide-content img {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .banner-carousel .swiper-horizontal>.swiper-pagination-progressbar,
  .banner-carousel .swiper-pagination-progressbar.swiper-pagination-horizontal,
  .banner-carousel .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
  .banner-carousel .swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    bottom: 250px !important;
  }
  .banner-carousel .swiper-container .detail-button {
    margin-top: 20px;
    padding: 8px 5px;
  }
  .banner-carousel .button_news-list {
    margin: 100px auto 0 auto;
    width: 90%;
  }
  .footer-banner-carousel{
    width: 100%;
    padding-top: 40px;
  }
}

/* 共通スタイル */
.concept-description p, .brand-excerpt p, .filter-buttons_wrap button, .shop-filter-buttons_wrap button, .tag-filter-buttons_wrap button,
.maine-view_wrap .main-wrap_about .contents .flex .descriptions .left .concept-description,
#view-more,.maine-view_news-wrap .news-button p,
.footer .copyright,
.footer ul li, .footer a{
  font-size: 12px;
}

.page-title {
  font-size: 24px !important;
  width: 100% !important;
}
.page_wrap {
  padding: 5vh 5% 3vh 5%;
  width: 100%;
  margin: auto;
}
.page_wrap h1 {
  font-size: 20px;
  font-weight: 700;
}
.page_wrap h2 {
  font-size: 18px;
  font-weight: 700;
}
.page_wrap h3 {
  font-size: 16px;
  font-weight: 700;
}
.page_wrap h4 {
  font-size: 15px;
  font-weight: 700;
}
.page_wrap h5 {
  font-size: 13px;
  font-weight: 700;
}
.page_wrap h6 {
  font-size: 13px;
  font-weight: 700;
}
.page_wrap p,
.page_wrap a,
.page_wrap span {
  font-size: 13px;
  line-height: normal;
  margin-bottom: 0 !important;
}
.page_wrap .content_wrap {
  width: 70%;
  margin: 16px auto;
}
.all_wrap {
  width: 90%;
  margin: 0 auto 40px auto;
}
.section {
  padding: 0 !important;
}

@media(min-width:768px){
  .page-title{
    margin-bottom: 16px !important;
  }
}
.none-height p {
  line-height: normal;
}
.swiper-pagination {
  margin-bottom: 100px;
}


/*文字サイズ*/
.title h2{
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  .page_wrap {
    padding: 48px 0;
  }
  .page_wrap h1 {
    font-size: 18px;
    margin-bottom: 8px auto 4px auto;
  }
  .page_wrap h2 {
    font-size: 16px;
    margin: 8px auto 4px auto;
  }
  .page_wrap h3 {
    font-size: 15px;
    margin: 8px auto 4px auto;
  }
  .page_wrap h4 {
    font-size: 14px;
  }
  .page_wrap h5 {
    font-size: 13px;
  }
  .page_wrap p,
  .page_wrap a,
  .page_wrap span {
    font-size: 13px;
  }
  .page_wrap .content_wrap {
    width: 100%;
    margin: 8px auto;
  }
  .button_page-news-list {
    max-width: 100%;
    margin-top: 25rem;
    width: 30%;
  }
  .product-carousel .button_page-news-list {
    margin-top: 80px;
  }

  .swiper-pagination {
    margin-bottom: 56px;
  }
  .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 8px);
    top: var(--swiper-pagination-top, auto);
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
  .fix-button {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 9999;
    background-color: #1c1c1c;
    color: #fff;
    padding: 32px 12px 32px 14px;
    border-radius: 15px 0 0;
-webkit-border-radius: 15px 0 0;
    -moz-border-radius: 15px 0 0;
    -ms-border-radius: 15px 0 0;
    -o-border-radius: 15px 0 0;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  .fix-button a {
    display: inline-block;
    font-size: 12px;
    text-decoration: none;
    transition: opacity 0.3s ease;
    writing-mode: vertical-rl;
    color: #FAFAFA;
}
  .fix-button a:hover {
    opacity: 0.8;
  }
}


/* 商品詳細スタイル */
.product-summary pre{
  margin: 2px auto !important;
}
.product-content {
  margin: 60px auto;
}
.product-gallery {
  margin: 80px auto 0 auto;
} 
.product-gallery .gallery-item {
  margin: 15px 0;
} 
.product-gallery img {
  max-width: none !important;
} 
.product-purchase,
.product-list-back {
  margin: 0 auto;
  text-align: center;
  padding: 10px 0;
}
.product-purchase {
  background-color: #1c1c1c;
  color: #FAFAFA;
}
.product-list-back {
  border: 1px solid #1c1c1c;
  color: #1c1c1c;
}
.product-price,
.product-allergy {
  margin: 50px auto;
}
.single-product-cta{
  display: flex;
  width: 70%;
  gap: 32px;
  margin: 40px auto 0 auto;
}
.single-category-cta{
  width: 70%;
  margin: 40px auto 0 auto;
}
.left-button{
  width: 50%;
}
.right-button{
  width: 50%;
}
.product-note-title{
  font-weight: 600 !important;
}
.product-note-wrap{
  display: flex;
  gap: 4px;
}

@media screen and (max-width: 768px) {
  .product-content {
    margin: 30px auto;
  }
  .product-gallery {
    margin: 40px auto 0 auto;
  }
  .product-purchase,
  .product-list-back {
    padding: 0;
    padding: 10px;
  }
  .single-product-cta{
    width: 100%;
  }
}

@media screen and (max-width: 460px) {
 .single-product-cta{
    width: 100%;
    display: block;
  } 
  .left-button, .right-button{
    width: 100%;
    margin-top: 24px !important;
  }
}

/* ブランド詳細スタイル */
.single-category-wrap{
  width: 70%;
  margin: 16px auto;
}
.brand-thumbnail{
  width: 70%;
  margin: 16px auto;
  text-align: center;
}
.brand-content {
  margin: 60px auto;
  font-size: 15px;
  line-height: 32px;
  padding: 32px 0;
}
.brand-content h3{
  font-size: 20px;
  font-weight: bold;
}

.brand-content img {
  margin: 24px auto !important;
  max-width: 100% !important;
}
.brand-list-back {
  margin: 0 auto;
  text-align: center;
  padding: 5px 0;
  background-color: #616420;
  margin-top: 80px;
}
.brand-list-back a {
  color: #FAFAFA;
}
.single-category-wrap .product-list .products .product-item {
  width: 32%;
  margin: 8px 0px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.single-brand .product-list .products .product-item img {
  height: calc(100vw* 0.14) !important;
}
.single-brand .product-list .products .product-item img p {
  line-height: 22px;
  margin: 15px 0;
  font-size: 15px;
}
.single-brand .product-list .products .product-item .product-detail-button {
  border-bottom: 1px solid #1c1c1c;
  padding: 8px 4px 0 4px;
  margin-top: auto;
  margin-bottom: 0;
}
.single-brand .product-list .products .product-item .product-detail-button a {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .brand-title{
    font-size: 20px !important;
  }
  .brand-content {
    margin: 40px auto;
    padding: 16px 0;
  }
  .brand-content img {
    margin: 20px 0;
  }
  .brand-list-back {
    margin-top: 40px;
  }
  .brand-content p {
    margin-bottom: 16px;
    line-height: 24px !important;
  }
  .single-brand .product-list .products .product-item {
    width: 49%;
    margin: 16px 0;
    padding: 0 4px;
  }
  .single-brand .product-list .products .product-item p {
    font-size: 12px;
  }
  .single-brand .product-list .products .product-item img {
    height: calc(100vw* 0.4) !important;
  }
  .brand-content h3{
    margin: 24px 0 8px 0 !important;
    font-size: 14px;
    font-weight: bold;
  }
  .single-category-wrap .product-list .products .product-item{
    gap: 4px;
  }
}

/* 店舗詳細スタイル */
.shop-tag-wrapper {
  display: flex;
  gap: 4px;
}

.shop-tag {
  background-color: #1c1c1c;
  padding: 2px 12px;
}

.shop-tag span{
  color: #fff !important;
  font-size: 10px !important;
}

.shop-tag-wrapper-archive {
  flex-wrap: wrap;
  display: flex;
  gap: 4px;
}

.shop-tag-archive {
  background-color: #1c1c1c;
  width: auto;
  padding: 0px 8px;
}


.shop-tag-archive span{
  color: #fff !important;
  font-size: 10px !important;
}

#single-shop-product {
  width: calc(94% / 4) !important;
}
#single-shop-product img{
  width: auto;
}
#single-shop-product-item {
  align-self: center !important;
}
.shop-thumbnail-wrapper,
.shop-thumbnail-wrapper img {
  width: 100%;
}
.shop-name {
  width: 100%;
  margin-bottom: 24px;
  font-size: 24px !important;
}
#single-shop-product-carousel {
  margin-top: 0 !important;
  background-color: transparent !important;
}
.shop-info-wrapper {
  display: flex;
  gap: 2%;
  margin-bottom: 40px;
}
.single-shop-info {
  width: 100%;
}
.single-shop-info li {
  border-bottom: 1px solid #1c1c1c;
}
.single-shop-info li {
  display: flex;
  align-items: center;
  padding: 4px;
  font-size: 12px;
}
.single-shop-info li p:nth-child(1) {
  width: 30% !important;
}
.single-shop-info li p:nth-child(2) {
  width: 70% !important;
}

#view-more {
  padding: 8px 24px;
  border: 1px solid #1c1c1c; 
  background-color: #1c1c1c;
  color: #fff;
}
.shop-carousel .shop-slide-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.shop-carousel .shop-slide-content h3{
  font-size: 16px;
  line-height: 20px;
}
.shop-carousel .shop-slide-content .shop-thumbnail {
  height: calc(100vw* 0.25) !important;
}
.shop-carousel .shop-slide-content .detail-button {
  margin-top: auto;
}

.shop-carousel .swiper-slide p {
  margin-top: 0;
  font-size: 13px;
  line-height: 20px;
}
.shop-carousel .swiper-container .detail-button {
  border: 0;
  padding: 0;
}
.shop-carousel ul li {
  margin-bottom: 2px;
  border-bottom: none;
}
.shop-carousel .swiper-container {
  position: relative !important;
}
.shop-carousel .swiper-container,
.shop-carousel .swiper-wrapper {
  height: 100%;
}
.shop-carousel .swiper-wrapper {
  flex-wrap: wrap;
}
.shop-carousel {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  width: 100%;
}
.shop-wrap {
  justify-content: left;
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  width: 100%;
  height: fit-content;
}
.shop-item_wrap {
  height: calc(100vw * 0.15);
}
.shop-carousel .shop-item {
  width: calc(94% / 4);
  opacity: 1;
  transform: translateX(0);
  max-height: 1000px;
  overflow: hidden;
  transition: transform 0.4s ease, opacity 0.4s ease, max-height 0.4s ease, margin 0.4s ease, padding 0.4s ease;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.shop-item_wrap img {
  width: 100%;
  height: 100%;
}

.shop-info {
  margin: 0px auto;
}
.shop-thumbnail img {
  max-width: none !important;
  width: 100%;
  height: 80% !important;
}
.shop-map {
  margin: 60px auto 0 auto;
}
.shop-map iframe {
  width: 100%;
}
.shop-info li {
  display: flex;
  align-items: center;
  padding: 0 8px;
  font-size: 12px;
}
.shop-info li p:nth-child(1) {
  width: 30% !important;
}
.shop-info li p:nth-child(2) {
  width: 70% !important;
}
.shop-info li p {
  line-height: 30px;
}
.company-info li{
  display: flex;
  align-items: center;
  padding: 16px 16px 10px 16px;
  border-bottom: 1px solid #1c1c1c;
  font-size: 15px;
}
.company-info li p:nth-child(1) {
  width: 20%;
  padding-right: 8px;
}
.company-info li p:nth-child(2) {
  width: 80%;
}
.company-description img{
  width: 100%;
}
.single-shop .brand-carousel {
  background-color: transparent;
}
.single-shop .product-carousel {
  background-color: rgb(240, 240, 240)
}
.single-shop .brand-carousel {
  margin-top: 0;
}
.single-shop .fix_news {
  width: 90%;
  margin: 0 auto;
}
.sns-button {
  border-radius: 5px;
  display: flex;
  padding: 0 25px;
  border: 1px solid #616420;
  align-items: center;
}
.sns-button span {
  color: #616420;
}
.sns-button img {
  width: 25px;
  height: 25px;
  margin: 10px 0 0 5px;
}

@media screen and (max-width: 768px) {
  .sns-button{
    margin-bottom: 0px !important;
  }
  .sns-button span{
    margin-bottom: 0px !important;
  }
  .single-shop{
    padding: 16px 5% 40px 5% !important;
  }
  .shop-info-wrapper{
    display: grid;
  }
  #single-shop-product{
    width: calc(98% / 2) !important;
  }
  .shop-item_wrap {
    height: 104px;
  }
  .shop-carousel{
    gap: 24px;
  }
  .shop-carousel .shop-item {
    width: calc(96% / 2);
  }
  .shop-info {
    margin: 0px auto;
    width: 90% !important;
  }
  .shop-thumbnail img {
    height: calc(100vw* 0.5) !important;
  }
  .shop-map {
    margin: 40px auto;
    width: 90% !important;
  }
  .shop-info ul {
    margin-top: 16px;
  }
  .shop-info li {
    padding: 0px;
    line-height: 16px;
  }
  .shop-info li p {
    line-height: 25px;
  }
  .shop-info li p:nth-child(1){
    margin-bottom: 0px;
  }
  .shop-info li p:nth-child(2){
    margin-bottom: 0px;
  }
  .company-info li{
    padding: 16px 8px 10px 8px;
  }
  .company-info li p:nth-child(1) {
    width: 35%;
  }
  .company-info li p:nth-child(2) {
    width: 65%;
  }
}

/*コンセプトスタイル*/
.concept-description p{
  margin-bottom: 8px !important;
}
.concept-description img{
  width: 100%;
}

/* プライバシーポリシースタイル */
.privacy_wrap .content_wrap {
  width: 70%;
}

@media screen and (max-width: 768px) {
  .privacy_wrap h1 {
    margin: 0 !important;
  }
  .privacy_wrap .content_wrap {
    width: 100%;
  }
  .privacy_wrap .content_wrap p {
    line-height: 24px;
  }
  .privacy_wrap .page-content {
    padding-bottom: 0;
font-size: 14px;
  }
}


/* 固定お知らせ表示 */
.fix_news {
  width: 75%;
  margin: 0 auto;
  padding: 16px 0;
  max-width: 800px;
}
.fix_news h1 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 26px;
  font-weight: 400;
}
.fix_news .post-item {
  display: flex;
  align-items: center;
  padding: 8px;
  border-bottom: 1px solid #e5e5e5;
}

.fix_news .post-item .post-thumbnail img {
  width: auto !important;
  height: 10vh !important;
}
.fix_news .post-item .link {
  padding: 0 20px;
}
.fix_news .post-item div:nth-child(2) .post-categories {
  padding-right: 5px;
  font-size: 12px !important;
}
.fix_news .post-item div:nth-child(2) .post-categories a {
  color: #1c1c1c;
}
.fix_news .post-item div:nth-child(2) .post-date {
  font-size: 12px !important;
}
.button_news-list {
  margin: 0 auto;
  max-width: 200px;
  display: block;
}
.button_news-list a {
  margin: 16px auto 0 auto;
  width: 100%;
  cursor: pointer;
  text-align: center;
  font-size: 13px;
}
.news-page .categories {
  margin-bottom: 50px;
  padding-left: 10px;
}
.post-meta {
  font-size: 14px;
  margin-bottom: 30px;
}
.product-thumbnail{
  width: 70%;
  margin: 16px auto;
}
.product-thumbnail img{
  width: 100%;
  height:calc(100vw* 0.3) !important;
}
.product-slide-thumbnail{
  width: 100%;
  height: calc(100vh*0.3) !important;
}
.news-detail .content_wrap {
  font-size: 15px;
  line-height: 32px;
}
.news-detail .content_wrap img {
  width: 100%;
  margin: 30px 0;
}

@media screen and (max-width: 768px) {
  .product-slide-thumbnail{
    height: auto !important;
  }
  .fix_news {
    width: 100%;
    padding: 20px 0;
    margin: 0;
  }
  .fix_news h1 {
    font-size: 22px;
    margin-bottom: 16px;
  }
  .fix_news h4 {
    font-size: 14px;
    line-height: 20px;
  }
  .fix_news .post-item {
    padding: 8px 0;
  }
  .fix_news .post-item .post-thumbnail {
    width: 30%;
  }
  .fix_news .post-item .post-thumbnail img {
    width: auto !important;
    height: 80px !important;
  }
  .fix_news .post-item .link {
    padding: 0 10px;
    width: 70%;
  }
  .fix_news .post-item .link span,
  .fix_news .post-item .link span a {
    font-size: 12px;
  }
  .fix_news .button_page-news-list p {
    max-width: 100%;
  }
  .button_news-list {
    margin: 16px 0 0 0;
    max-width: none;
    width: 100%;
    max-width: 100%;
  }
  .button_news-list p {
    max-width: 90%;
  }
  .button_news-list a {
    margin: 0 auto;
  }
  .news-page .categories {
    margin-bottom: 30px;
    padding-left: 8px;
  }
  .product-thumbnail{
    width: 100%;
  }
  .product-thumbnail img {
    height: calc(100vw* 0.5) !important;
  }
}

/* ブランド商品一覧スタイル */
.brand-list_wrap .brand_content {
  text-align: center;
  border-top: 1px solid #1c1c1c;
  border-bottom: 1px solid #1c1c1c;
  padding: 20px 0;
  margin-top: 80px;
}
.brand-list_wrap .seasonal-brand {
  margin-top: 80px;
}
.brand-list_wrap .limited-products {
  margin: 60px 0 100px 0;
}
.brand-list_wrap .brand-item h2 {
  margin: 0 auto;
}
.brand-list_wrap .brand-section {
  margin: 32px 0;
}
.brand-list_wrap .brand-section .brand-thumbnail {
  width: 100%;
  margin: 32px auto;
  padding: 0 16px;
}
.brand-list_wrap .brand-section .brand-thumbnail img {
  width: 100%;
}
.brand-list_wrap .brand-section .title {
  margin-top: 16px;
}
.brand-list_wrap .brand-section .brand-head h3 {
  font-weight: 400;
  font-size: 24px;
}
.brand-list_wrap .brand-section .brand-head p {
  font-size: 20px;
  margin-top: 15px;
  font-weight: 500;
}
.brand-list_wrap .brand_content h1 {
  margin: 0;
  padding: 0;
}
.brand-list_wrap .brand-section .brand-detail-button {
  width: 30%;
  margin-left: auto;
  max-width: 300px;
  border-bottom: 1px solid #1c1c1c;
  padding: 15px 10px;
}
.brand-list_wrap .brand-section .brand-detail-button a {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
}
.brand-list_wrap .product-list {
  padding: 8px 0;
}
.brand-list_wrap .product-list .products,
.brand-list_wrap .brand-item .product-list {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 1%;
}
.single-category-wrap .product-list .products {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 2%;
}
.brand-list_wrap .product-list .products .product-item,
.brand-list_wrap .brand-item .product-list .product-item {
  width: 24%;
  margin: 8px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.brand-list_wrap .product-list .products .product-item img,
.brand-list_wrap .brand-item .product-list .product-item img {
  height: calc(100vw* 0.18) !important;
}
.brand-list_wrap .product-list .products .product-item .product-detail-button,
.brand-list_wrap .brand-item .product-list .product-item .brand-detail-button {
  border-bottom: 1px solid #1c1c1c;
  padding: 12px 4px 10px 4px;
  margin-top: auto;
  margin-bottom: 0;
}
.brand-list_wrap .product-list .products .product-item .product-detail-button a,
.brand-list_wrap .brand-item .product-list .product-item .brand-detail-button a {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.brand-list_wrap .thumbnail img {
  width: 100%;
  max-width: none !important;
  height: 100% !important;
}
.brand-thumbnail img {
  width: 100%;
  height: calc(100vw* 0.3) !important;
}
.brand-excerpt{
  margin-top: 4px;
  font-size: 12px !important;
}
.brand-summary h2{
  font-size: 20px !important;
}
@media(min-width:461px) {
  .maine-view_wrap .brand-carousel .swiper-slide {
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  .brand-list_wrap .seasonal-brand {
    margin-top: 40px;
  }
  .brand-list_wrap .limited-products {
    margin: 40px 0 60px 0;
  }
  .brand-list_wrap .brand-section .brand-thumbnail {
    margin: 12px 0 24px 0;
    padding: 0 8px;
  }
  .brand-thumbnail{
    width: 100%;
  }
  .brand-thumbnail img {
    height: calc(100vw* 0.5) !important;
  }
  .brand-list_wrap .brand-section .brand-head h3 {
    font-size: 26px;
  }
  .brand-list_wrap .brand-section .brand-head p {
    font-size: 16px;
    margin-top: 10px;
  }
  .brand-list_wrap .brand-section .title {
    margin: 12px 0;
    font-size: 12px;
  }
  .brand-list_wrap .brand_content {
    padding: 15px 0;
  }
  .brand-list_wrap .brand-section .brand-detail-button {
    width: 50%;
    margin: 12px 0 0 auto;
    padding: 12px 4px 4px 4px;
  }
  .brand-list_wrap .product-list {
    padding: 8px 0;
    margin-top: 0;
  }
  .brand-list_wrap .product-list .products .product-item,
  .brand-list_wrap .brand-item .product-list .product-item {
    width: 100%;
    margin: 16px auto;
  }
  .brand-list_wrap .product-list .products .product-item p,
  .brand-list_wrap .brand-item .product-list .product-item p {
    font-size: 12px;
  }
  .brand-list_wrap .product-list .products .product-item img,
  .brand-list_wrap .brand-item .product-list .product-item img {
    height: calc(100vw* 0.5) !important;
  }
  .brand-list_wrap .thumbnail img {
    height: calc(100vw* 0.5) !important;
  }
  .brand-list_wrap .brand-thumbnail img {
    height: calc(100vw* 0.5) !important;
  }
  .brand-list_wrap .brand-section .brand-thumbnail img {
    height: calc(100vw* 0.5) !important;
  }
  .single-category-wrap{
    width: 100%;
  }
  .product-item h3{
    margin: 0 !important;
  }
}

/*ピックアップ一覧のスタイル*/
.pickup-section {
  margin: 16px 0;
}
.pickup-products_wrap {
  display: flex !important;
  align-items: center;
}
.pickup-thumbnail {
  width: 100%;
  margin: 16px auto;
}
.pickup_right {
  width: 50%;
  display: flex;
  flex-direction: column;
  padding-left: 24px;
  gap: 8px;
}
.product-note-title-pickup {
  font-weight: 600 !important;
}
.product-note-title-pickup,
.product-note-content-pickup {
  font-size: 11px !important;
}

@media screen and (max-width: 768px){
  .pickup-products_wrap{
    flex-direction: column;
    margin-bottom: 8px;
  }
  .pickup_right{
    width: 100%;
    padding-left: 0;
  }
  .pickup_right h2{
    margin: 0;
  }
}


/* 固定ページのスタイル */
.fix-page {
  padding-bottom: 80px;
}
.fix-page .content_wrap h4 {
  margin: 8px 0;
}
.fix-page .content_wrap h4 strong {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.fix-page .brand-content {
  font-size: 15px;
  line-height: 32px;
}
.fix-page .brand-list-back {
  margin-top: 80px;
}
.fix-page .brand-thumbnail img {
  width: 100%;
}
.brand-slide-thumbnail{
  width: 100%;
  height: calc(100vh*0.3) !important;
}

.fix_company-list {
  background-color: rgb(240, 240, 240) !important;
  padding: 80px 0;
  margin-top: 80px;
}
.fix_company-list h1 {
  width: 90%;
  margin: 0 auto;
  text-align: center;
}
.fix_company-list .service-items {
  margin: 48px auto 0 auto;
  width: 90% !important;
}

@media screen and (max-width: 1280px) {
  .brand-slide-content .brand-thumbnail img {
    height: calc(100vw* 0.43) !important;
  }
}

@media screen and (max-width: 768px) {
  .fix-page .brand-thumbnail img {
    height: calc(100vw* 0.6) !important;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .fix-page {
    padding-bottom: 40px;
  }
  .fix-page .content_wrap {
    width: 90%;
  }
  .fix-page .content_wrap h4 strong {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
  }
  .fix-page .brand-content {
    line-height: 30px;
  }
  .fix-page .brand-list-back {
    margin-top: 40px;
  }
  .fix_company-list {
    padding: 60px 0;
    margin-top: 60px;
  }
  .fix_company-list h1 {
    font-size: 20px;
  }
  .fix_company-list .service-items {
    margin: 32px auto 0 auto;
  }
  .brand-slide-content .brand-thumbnail img {
    height: calc(100vw * 0.3) !important;
  }
}


/* 事業一覧スタイル */
.service-list_wrap h2 {
  text-align: left;
  margin: 64px 0 40px 0;
}
.service-list_wrap .content_wrap {
  width: 100%;
  margin-top: 40px;
}
.service-list_wrap .service-items {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}
.service-list_wrap .service-items .service-item {
  width: 50%;
  margin-bottom: 40px;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-list_wrap .service-items .service-item p {
  font-size: 15px;
}
.service-list_wrap .service-items .service-item img {
  width: 100%;
  height: calc(100vw* 0.25) !important;
}
.service-detail-button{
  padding-top: 16px;
}
.service-list_wrap .service-items .service-item .service-detail-button a {
  display: flex;
  width: 40%;
  justify-content: center;
  padding: 12px 0;
  border-bottom: 1px solid #1c1c1c;
  border-radius: 4px;
  font-size: 15px;
  border-radius: 4px;
}
.service-list_wrap .service-items .service-item .service-detail-button a p {
  color: #ffff;
}

@media screen and (max-width: 768px) {
  .service-list_wrap .service-items .service-item {
    width: 50%;
    margin-bottom: 32px;
  }
  .service-list_wrap h2 {
    margin: 10px 0;
  }
  .service-list_wrap .content_wrap {
    margin-top: 24px;
  }
  .service-list_wrap .service-items .service-item p {
    font-size: 12px;
    margin-bottom: 16px;
  }
  .service-list_wrap .service-items .service-item .service-detail-button {
    margin-top: auto;
  }
  .service-list_wrap .service-items .service-item .service-detail-button a {
    width: 100%;
    padding: 12px 0;
    font-size: 2.2rem;
  }
  .service-list_wrap .service-items .service-item img {
    height: calc(100vw* 0.3) !important;
  }
  .service-list_wrap .page-content {
    padding: 35px 0 50px 0;
  }
  .company .service-items .service-item {
    width: 48%;
  }
  .company .service-items .service-item img {
    height: calc(100vw* 0.3) !important;
  }
  .company .service-items .service-item h2 {
    font-size: 16px;
  }
  .company .service-items .service-item .service-detail-button a {
    padding: 10px 4px 2px 4px;
    font-size: 12px;
  }
}

/* メインビュースタイル */
.maine-view_wrap .main-wrap_about {
  background-color: #f5f5f5;
}
.maine-view_wrap .main-wrap_about .background {
  position: relative;
  text-align: right;
}
.maine-view_wrap .main-wrap_about .background img {
  width: 65%;
  height: 55vh;
}
.maine-view_wrap .main-wrap_about .contents {
  position: absolute;
  top: 0;
  height: 60vh;
  width: 100%;
}
.maine-view_wrap .main-wrap_about .contents .flex {
  display: flex;
  flex-direction: column;
  width: 90%;
  margin: 0 auto;
}

.maine-view_wrap .main-wrap_about .contents .flex .title {
  height: 10vh;
}
.maine-view_wrap .main-wrap_about .contents .flex .descriptions {
  display: flex;
  height: 55vh;
}
.maine-view_wrap .main-wrap_about .contents .flex .descriptions .left {
  width: 30%;
}
.maine-view_wrap .main-wrap_about .contents .flex .descriptions .left .concept-description{
  margin: 32px 0;
}
.maine-view_wrap .main-wrap_about .contents .flex .descriptions .left h2 {
  font-size: 5rem;
  font-weight: 500;
}
.maine-view_wrap .main-wrap_about .contents .flex .descriptions .right {
  width: 50%;
  padding: 10vh 0;
  align-content: end;
}
.maine-view_wrap .main-wrap_about .contents .flex .descriptions .right .text {
  color: #ffff;
  line-height: 24px;
  font-size: 13px;
  letter-spacing: 2px;
  text-shadow: 1px 1px 6px #888;
}

@media screen and (max-width: 768px) {
  .maine-view_wrap .main-wrap_about {
    padding-top: 50px;
    height: 65vh;
  }
  .maine-view_wrap .main-wrap_about .contents {
    top: 50px;
  }
  .maine-view_wrap .main-wrap_about h2 {
    font-size: 7rem;
  }
  .maine-view_wrap .main-wrap_about .contents .flex .title {
    height: 6vh;
    margin-top: 24px;
  }
  .maine-view_wrap .main-wrap_about .contents .flex .descriptions .left h2 {
    font-size: 40px;
    letter-spacing: 2px;
  }
  .maine-view_wrap .main-wrap_about .contents .flex .descriptions {
    height: 50vh;
  }
  .maine-view_wrap .main-wrap_about .contents .flex .descriptions {
    flex-direction: column;
  }
  .maine-view_wrap .main-wrap_about .contents .flex .descriptions .right {
    padding: 0;
  }
  .maine-view_wrap .main-wrap_about .contents .flex .descriptions .left {
    width: 100%;
    padding: 6vh 0;
  }
  .maine-view_wrap .main-wrap_about .contents .flex .descriptions .right {
    width: 65%;
    margin-left: auto;
  }
  .maine-view_wrap .main-wrap_about .contents .flex .descriptions .right .text {
    font-size: 2.2rem;
    line-height: 4rem;
  }
  .maine-view_wrap .main-wrap_about .contents .flex .descriptions .right .view-more {
    margin-top: 8rem;
  }
  .maine-view_wrap .main-wrap_about .contents .flex .descriptions .right .view-more a {
    font-size: 2.2rem;
  }
  .maine-view_wrap .main-wrap_about .background img {
    display: none;
    height: 90vh;
  }
  .maine-view_wrap .main-wrap_about .contents .flex .descriptions .left .concept-description{
    margin: 16px 0;
  }
}

.maine-view_wrap .carousel {
  margin: 0 auto;
  padding: 56px 0;
  width: 90%;
  overflow: hidden;
  position: relative;
  justify-content: center;
}
/* .maine-view_wrap .carousel .swiper-button-prev {
  left: 0 !important;
}
.maine-view_wrap .carousel .swiper-button-next {
  right: 0 !important;
} */
.maine-view_news-wrap .carousel .swiper-container {
  margin-bottom: 0;
}
.maine-view_wrap .product-carousel .swiper-horizontal>.swiper-pagination-progressbar,
.maine-view_wrap .product-carousel .swiper-pagination-progressbar.swiper-pagination-horizontal,
.maine-view_wrap .shop-carousel .swiper-horizontal>.swiper-pagination-progressbar,
.maine-view_wrap .shop-carousel .swiper-pagination-progressbar.swiper-pagination-horizontal,
.maine-view_wrap .brand-carousel .swiper-horizontal>.swiper-pagination-progressbar,
.maine-view_wrap.brand-carousel .swiper-pagination-progressbar.swiper-pagination-horizontal {
  bottom: 100px !important;
}
.maine-view_wrap .service-list_wrap {
  padding: 48px 5% 24px 5%;
  background-color: #f5f5f5 !important;
}
.maine-view_wrap .service-list_wrap h3 {
  font-size: 20px;
  font-weight: 500;
  text-align: left;
  margin-top: 8px;
}
.maine-view_wrap .service-list_wrap .service-item h2 {
  text-align: left;
  margin: 30px 0 30px 0;
}
.maine-view_wrap .service-list_wrap h2 {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.2rem;
}
.section-inner {
  display: flex;
  width: 100%;
  padding: 0;
}
.maine-view_news-wrap {
  display: flex;
  padding: 56px 0;
  width: 90%;
  margin: auto;
}
.news-list,
.next-shop_wrap {
  width: 50%;
  padding-right: 24px;
}
.news-list h2 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  padding-left: 0;
  letter-spacing: 0.2rem;
}
.next-shop_wrap img {
  width: 100%;
  height: 100% !important;
}
.maine-view_news-wrap .item-inner {
  display: flex;
  align-items: center;
}
.maine-view_news-wrap .item-inner .post-thumbnail {
  width: 15%;
  text-align: left;
  margin-right: 16px;
}
.maine-view_news-wrap .item-inner .post-thumbnail img {
  width: 100px;
  height: 100px;
}
.maine-view_news-wrap .item-inner .detail {
  width: 100%;
  padding: 0;
}
.maine-view_news-wrap .item-inner .detail span {
  font-size: 1.2rem;
}
.maine-view_news-wrap .item-inner .detail .related-shops {
  color: #616420;
}
.maine-view_news-wrap .item-inner .detail .txt {
  margin-top: 0px;
}
.maine-view_news-wrap .item-inner .detail .txt a {
  font-size: 13px !important;
}
.maine-view_news-wrap .news-button {
  margin-top: 16px;
  width: 100%;
}
.maine-view_news-wrap .news-button p {
  /* width: 50%;
  max-width: 300px;
  background-color: #616420;
  text-align: center;
  margin-top: 25px; */
  margin: 0 0 0 0;
}
.maine-view_news-wrap .news-button a {
  /* color: #FAFAFA;
  font-size: 15px;
  padding: 15px 5px; */
}
.maine-view_news-wrap .recruit-img {
  width: 50%;
}
.maine-view_news-wrap .recruit-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about_wrap {
  position: relative;
}
.about_wrap img {
  height: calc(100vw* 0.32) !important;
  width: 100%;
}
.about_wrap .content {
  position: absolute;
  left: 5%;
  width: 50%;
  top: 50%;
  left: 5%;
  width: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.about_wrap .content a,
.about_wrap .content p,
.about_wrap .content h2,
.fixation_wrap h2,
.fixation_wrap .content a,
.fixation_wrap .content p,
.fixation_wrap .content h3,
.about_wrap .content .title h1,
.about_wrap .content .title h3,
.fixation_wrap .title h2 {
  color: #FAFAFA;
}
.about_wrap .content .title h1 {
  font-size: 36px;
}
.about_wrap .content .title h3 {
  font-size: 20px;
  margin: 10px 0 25px;
}
.about_wrap .content .description p {
  font-size: 15px;
  line-height: 24px;
  margin: 16px 0;
}
.about_wrap .content .button {
  width: 50%;
  max-width: 300px;
  border-bottom: 1px solid #FAFAFA;
  padding: 10px 5px;
  margin-top: 12px;
}
.about_wrap .content .button a {
  display: flex;
  width: 100%;
  justify-content: space-between;
  font-size: 15px;
}
.fixation_wrap {
  background-color: #616420;
  color: #FAFAFA;
  padding: 80px 5%;
  margin-top: -2px;
}
.fixation_wrap .title h2 {
  font-size: 24px;
  text-align: center;
  font-weight: 400;
}
.fixation_wrap .contents {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-top: 50px;
}
.fixation_wrap .contents .content {
  width: 33%;
  margin: 10px;
  display: flex;
  flex-direction: column;
}
.fixation_wrap .contents .content .button {
  margin-bottom: 0;
  margin-top: auto;
}
/* 矢印を右にふわっと移動させる */
.button a p:last-child,
.button a span:last-child, 
.buttondown a p:last-child,
.buttondown a span:last-child {
  display: inline-block;
  transition: transform 0.3s ease;
}
/* ホバー時のエフェクト */
.button a:hover p:last-child,
.button a:hover span:last-child {
  transform: translateX(8px); /* 右に8px移動 */
}
.buttondown a:hover p:last-child,
.buttondown a:hover span:last-child {
  transform: translateY(4px); /* 下に4px移動 */
}
.fixation_wrap .content img {
  height: calc(100vw* 0.2) !important;
}
.fixation_wrap .content .detail {
  padding: 20px 0;
}
.fixation_wrap .content .detail .title h3 {
  font-weight: 400;
  font-size: 22px;
}
.fixation_wrap .content .detail .description {
  margin-top: 15px;
}
.fixation_wrap .content .detail .description p {
  font-size: 15px;
  line-height: 24px;
  margin: 12px 0;
}
.about_wrap .contents .button,
.fixation_wrap .contents .button {
  padding: 10px 5px;
  border-bottom: 1px solid #FAFAFA;
}
.about_wrap .contents .button a,
.fixation_wrap .contents .button a {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.about_wrap .contents .button a, .fixation_wrap .contents .button a {
  font-size: 15px;
}

.pickup-carousel {
  position: relative;
  margin-top: 56px !important;
  width: 100% !important;
  padding: 56px 5% 32px 5% !important;
  background-color: #efefef;
}
.pickup-carousel_wrap {
  display: flex !important;
  width: 90% !important;
  margin: 0 auto !important;
  align-items: center;
}
.pickup-carousel_left,
.pickup-carousel_right {
  width: 50%;
}
.pickup-carousel .brand-slide-content .brand-thumbnail img {
  width: 100%;
  height: calc(100vw * 0.3) !important;
  object-fit: cover;
}
.pickup-carousel_right {
  display: flex;
  flex-direction: column;
  padding-left: 80px;
  gap: 8px;
}
.pickup-carousel_right .related-brand-names .brand-name,
.product-carousel .related-brand-names .brand-name,
.pickup_right .related-brand-names .brand-name,
.shop-carousel .related-area-names .area-name {
  background-color: #1c1c1c;
  color: #ffff;
  padding: 4px 8px;
  border-radius: 0px;
  font-size: 10px;
}


@media screen and (max-width: 768px) {
  .maine-view_news-wrap{
    width: 100% !important;
    padding: 64px 5%;
    flex-direction: column;
  }
}

@media(min-width:768px) and (max-width:1023px){
  .maine-view_news-wrap .item-inner .post-thumbnail {
    width: 25%;
  }
}

@media screen and (max-width: 1128px) {
  .about_wrap img {
    height: calc(100vw* 0.5) !important;
  }
  .about_wrap .content {
    width: 90%;
  }
}

@media screen and (max-width: 768px) {
  .about_wrap img {
    height: 90vh !important;
  }
  .about_wrap .content {
    left: 0;
    width: 100%;
    top: 50%;
    padding: 0 5%;
    position: absolute;
  }
  .about_wrap .content .title h1 {
    font-size: 30px;
  }
  .about_wrap .content .title h3 {
    font-size: 20px;
    margin: 5px 0 15px;
  }
  .fixation_wrap .content .detail .title h3 {
    font-size: 20px;
  }
  .about_wrap .content .description p {
    font-size: 14px;
    line-height: 24px;
letter-spacing: 0;
  }
  .about_wrap .content .button a {
    font-size: 15px;
  }
  .fixation_wrap .title h2 {
    font-size: 24px;
  }
  .fixation_wrap .contents {
    flex-direction: column;
    margin-top: 30px;
  }
  .fixation_wrap .contents .content {
    width: 100%;
    margin: 30px 0;
  }
  .fixation_wrap .content img {
    height: calc(100vw* 0.6) !important;
    width: 100%;
  }
  .carousel .swiper-container {
    padding: 0;
  }
  .maine-view_wrap .service-list_wrap {
    padding: 10rem 5%;
  }
  .maine-view_wrap .service-list_wrap h3 {
    font-size: 2.8rem;
    margin: 0;
    line-height: 4rem;
  }
  .maine-view_wrap .service-list_wrap .service-item h2 {
    font-size: 20px;
    margin: 20px 0;
  }
  .news-list, .next-shop_wrap {
    width: 100%;
    padding: 0;
  }
  .maine-view_news-wrap .item-inner .post-thumbnail img {
    width: 80px;
    height: 80px;
  }
  .dataB{
    margin-top: 8px;
  }
  .maine-view_news-wrap .item-inner .detail .txt{
    margin-top: 0px;
    padding-left: 20px;
  }

  .maine-view_news-wrap .item-inner .detail .txt a {
    font-size: 2.2rem;
    line-height: 3.5rem;
  }

  .news-list h2 {
    font-size: 24px;
    margin-bottom: 24px;
    text-align: center;
  }
  .maine-view_wrap .carousel {
    padding: 60px 4%;
    margin: 0;
  }
  .maine-view_wrap .carousel {
    width: 100%;
  }
  .banner-carousel {
    padding-top: 0 !important;
  }
  .fixation_wrap .content .detail .description p {
    font-size: 14px;
    letter-spacing: 0;
  }
  .maine-view_news-wrap .item-inner .detail .related-shops,
  .maine-view_news-wrap .item-inner .detail span {
    font-size: 1.8rem;
    line-height: 3rem;
  }
  .maine-view_wrap .service-list_wrap h2 {
    font-size: 5rem;
    margin: 0;
  }
  .pickup-carousel{
    padding: 64px 5% 100px 5% !important;
  }
  .pickup-carousel_wrap {
    width: 100% !important;
  }
  .pickup-carousel_right {
    padding-left: 5rem;
  }
  .pickup-carousel .brand-slide-content .brand-thumbnail img {
    height: calc(100vw * 0.5) !important;
  }
  .pickup-carousel_right .related-brand-names .brand-name,
  .product-carousel .related-brand-names .brand-name {
    background-color: #1c1c1c;
    color: #ffff;
    padding: 2px;
  }
  .maine-view_news-wrap .recruit-img {
    width: 100%;
  }
}

.g-navi .item {
  position: relative;
}

.g-navi .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  padding: 10px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  z-index: 10;
  min-width: 300px;
}

.g-navi .dropdown li {
  padding: 5px 20px;
}

.g-navi .dropdown li a {
  color: #333;
  text-decoration: none;
  display: block;
  margin: 5px 0;
}

.g-navi .item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* ハンバーガーボタン */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  position: absolute;
  top: 45%;
  right: 5%;
  width: 28px;
  height: 30px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background: #1c1c1c;
  transition: all 0.3s ease;
  top: -4px;
}

.nav-toggle-label span::after {
  content: '';
  top: 8px;
}

.nav-toggle:checked + .nav-toggle-label span {
  background: transparent;
}

.nav-toggle:checked + .nav-toggle-label span::before {
  top: 0;
  transform: rotate(45deg);
  background: #333;
}

.nav-toggle:checked + .nav-toggle-label span::after {
  top: 0;
  transform: rotate(-45deg);
  background: #333;
}

@media (min-width: 1129px) {
  .g-navi .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 10;
    width: 250px;
  }

  .g-navi .dropdown li {
    padding: 5px 20px;
  }

  .g-navi .dropdown li a {
    color: #333;
    text-decoration: none;
    display: block;
    margin: 5px 0;
    line-height: 18px;
  }

  .g-navi .item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .to-brand {
    padding: 0;
    width: 90%;
    margin: 0 auto;
  }
  .to-brand-section {
    padding: 0;
    width: 90%;
    margin: 0 auto;
  }
  .to-brand-section:nth-child(2) {
    border-bottom: 1px solid #1c1c1c;
    margin-bottom: 8px;
    padding-bottom: 16px !important;
  }
}

/* メニュー制御 */
@media (max-width: 1128px) {
  .nav-toggle-label {
    display: block;
  }

  .header-inner {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    height: 100%;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .nav-toggle:checked ~ .header-inner {
    right: 0;
    padding: 25% 0;
    overflow: scroll;
  }
  
  .g-navi {
    display: block;
  }

  .g-navi {
    flex-direction: column;
    text-align: center;
  }

  .g-navi .item {
    margin: 20px 0;
  }

  .u-navi, .button-D {
    margin-top: 20px;
    width: 80%;
  }
  
  .button-R {
    margin-left: 0;
  }
  
  .back-col {
    position: absolute;
    width: 70px;
    height: 60px;
    background-color: transparent;
    top: 0;
    right: 0;
  }

  .g-navi .dropdown li a {
    font-size: 15px;
    line-height: 28px;
  }

  .g-navi .dropdown {
    margin-top: 20px;
  }

  .to-brand {
    padding: 0;
    width: 90%;
    margin: 0;
  }

  .to-brand-section {
    padding: 0;
  }
  .to-brand-section:nth-child(2) {
    border-bottom: 1px solid #1c1c1c;
    margin-bottom: 8px;
    padding-bottom: 16px !important;
  }
  .to-brand:nth-child(1) {
    padding-top: 8px;
  }
}

/* パンくずリストのスタイル */
.breadcrumbs-trail .breadcrumb {
  width: 90%;
  font-size: 12px;
}
.breadcrumbs-trail .breadcrumb span, .breadcrumbs-trail .breadcrumb a, .breadcrumbs-trail .breadcrumb p {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 12px;
}
.all_wrap .breadcrumb {
  margin: 8px 0 8px 0;
}

@media (max-width: 768px) {
  .breadcrumbs-trail .breadcrumb {
    font-size: 13px;
    margin: 10px 0 4px 0 !important;
  }
  .all_wrap .breadcrumb {
    margin: 10px 0 30px 0;
  }
  .breadcrumbs-trail{
    margin: 0 !important;
  }
}



.tabroido-pdf_wrap {
  display: flex;
  width: 90%;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding: 100px;
}
.tabroido-pdf_wrap .pdf-item {
  width: 24%;
  margin: 5px;
}
.tabroido-pdf_wrap .pdf-item h2 {
  margin: 15px 0;
  font-size: 20px;
}
.tabroido-pdf_wrap .pdf-item p {
  font-size: 18px;
  text-align: center;
}
.pdf-drawer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  -webkit-transition: transform 0.4s ease;
  -moz-transition: transform 0.4s ease;
  -ms-transition: transform 0.4s ease;
  -o-transition: transform 0.4s ease;
}
.pdf-drawer.open {
  transform: translateY(0);
}
.drawer-content {
  background: #f5f5f5;
  width: 35%;
  height: 100vh;
  max-width: 800px;
  max-height: 95vh;
  overflow: auto;
  margin: auto;
  position: relative;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
}
#close-drawer {
  display: block;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 10px;
  font-size: 28px;
  color: #FAFAFA;
  top: 10px;
  right: 10px;
  cursor: pointer;
  position: fixed;
}
.pdf-container {
  overflow-y: auto;
}
canvas {
  display: block;
  margin: 0 auto 20px;
  width: 100%;
}
.drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100%;
  background: #f5f5f5;
  box-shadow: -5px 0 10px rgba(0,0,0,0.3);
  transition: right 0.3s ease;
  z-index: 9999;
}
.drawer.open {
  right: 0;
}
.pdf-pagination {
  bottom: -10% !important;
}
#pdf-controls {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  justify-content: center;
}
#pdf-controls button {
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 10px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: background-color 0.3s;
}
#pdf-controls button:hover {
  background-color: #f0f0f0;
}

.pdf-carousel {
  width: 90%;
  margin: 0 auto;
  overflow: hidden;
  padding: 80px 0;
}
.pdf-carousel .page_wrap h2 {
  margin: 10px auto 0 auto !important;
}
.pdf-carousel .page_wrap p {
  text-align: center !important;
}

@media (max-width: 768px) {
  .tabroido-pdf_wrap {
    padding: 80px 0;
    flex-direction: column;
  }
  .tabroido-pdf_wrap .pdf-item {
    width: 100%;
    margin: 0;
  }
  .drawer-content {
    width: 100%;
    max-height: 100%;
  }
}


.fixation_wrap_s {
    width: 100%;
    margin: 0 auto;
    padding: 80px 5%;
    position: relative;
}

.fixation_wrap_s .background {
    width: 100%;
    height: 100%;
}
.fixation_wrap_s .background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fixation_wrap_s .title {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    writing-mode: vertical-rl;
    text-align: center;
    padding: 5% 5px 3% 5px;
    background: linear-gradient(to bottom, #fbd282, transparent);
}
.fixation_wrap_s .title h3 {
    margin: 0;
    line-height: 34px;
    white-space: normal;
    word-break: break-word;
    font-size: 24px;
}

.fixation_wrap_s .slider_wrap {
    width: 75%;
    margin: 0 auto;
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
}
.fixation_wrap_s .slider_wrap .slider {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-around;
    padding: 5% 0;
}
.fixation_wrap_s .slider_wrap .slider .img {
    width: 50%;
    padding: 0 20px 0 80px;
}
.fixation_wrap_s .slider_wrap .slider .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.fixation_wrap_s .slider_wrap .slider .dsc {
    width: 50%;
    padding: 0 80px 0 20px;
}
.fixation_wrap_s .slider_wrap .slider .dsc p {
    font-size: 15px;
    line-height: 26px;
}
.fixation_wrap_s .slider_wrap .swiper-button-next:after,
.fixation_wrap_s .slider_wrap .swiper-button-prev:after {
    color: #ffff;
    font-size: 25px;
    padding: 0 50px;
}

.fixation_wrap_s .float-button {
    border-radius: 50px;
    text-align: center;
    padding: 12px 5px;
    background: #ffff;
    margin: 0 auto;
    width: 300px;
}
.fixation_wrap_s .float-button a p:nth-child(2) {
    position: absolute;
    top: -10px;
    right: -2px;
    color: #ffff;
    background-color: #616420;
    border-radius: 30px;
    padding: 10px;
}
.fixation_wrap_s .float-button.button a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  text-decoration: none;
}
.fixation_wrap_s .float-button.button a p {
  margin: 0;
}

.shop-item-hidden {
    display: none !important;
}

.shop-filter-buttons_wrap .filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
    width: 100% !important;
}

.shop-filter-buttons_wrap .filter-group::before {
    content: attr(data-filter-group);
    text-transform: uppercase;
    font-size: 12px;
    opacity: .6;
    margin-right: 8px;
    width: 3%;
}
.shop-filter-buttons_wrap button.active {
    outline: 2px solid currentColor;
}

.shop-filter-buttons_wrap {
  display: flex;
  justify-content: left;
  margin-top: 8px;
  width: 100%;
  flex-wrap: wrap;
  gap: 8px 0.4%;
}

.shop-filter-buttons_wrap button {
  border: 1px solid #000000;
  height: auto;
  padding: 4px;
  font-size: 10px;
  width: calc( 90% / 11 );
  text-align: center;
  color: #000000;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.shop-filter-buttons_wrap button:hover,
.shop-filter-buttons_wrap button.active {
  cursor: pointer;
  background-color: #000000;
  height: auto;
  color: #ffffff;
}

.tag-filter-buttons_wrap {
  display: flex;
  justify-content: left;
  margin-top: 8px;
  width: 100%;
  flex-wrap: wrap;
  gap: 8px 0.5%;
}

.tag-filter-buttons_wrap button {
  border: 1px solid #000000;
  padding: 15px;
  width: calc( 98% / 5 );
  text-align: center;
  color: #000000;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.tag-filter-buttons_wrap button:hover,
.tag-filter-buttons_wrap button.active {
  cursor: pointer;
  background-color: #000000;
  color: #ffffff;
}


.filter-buttons_wrap {
  display: flex;
  justify-content: left;
  margin-top: 8px;
  width: 100%;
  flex-wrap: wrap;
  gap: 20px 1.33%;
}

.filter-buttons_wrap button {
  border: 1px solid #000000;
  padding: 15px;
  width: calc( 96% / 4 );
  text-align: center;
  color: #000000;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.filter-buttons_wrap button:hover,
.filter-buttons_wrap button.active {
  cursor: pointer;
  background-color: #000000;
  color: #ffffff;
}

.product-index {
  font-weight: bold;
  font-size: 34px;
  color: #dfdfdf;
  margin-bottom: 8px;
}

@media screen and (max-width: 768px) {
  .shop-filter-buttons_wrap .filter-group::before{
    width: 100%;
  }

  .shop-filter-buttons_wrap .filter-group{
    margin-bottom: 8px;
  }

  .filter-buttons_wrap{
    gap: 0;
    margin-top: 0;
  }
  .filter-buttons_wrap button {
    width: calc( 98% / 2 );
    margin-top: 2%;
    padding: 10px;
  }
  .shop-filter-buttons_wrap button {
    padding: 8px;
    width: calc( 94% / 4 );
    margin-right: 0.6%
  }
  .shop-filter-buttons_wrap {
    gap: 4px 0;
    justify-content: left;
  }
  .tag-filter-buttons_wrap button {
    padding: 8px;
    width: calc( 96% / 6 );
    margin-right: 0.6%
  }
  .tag-filter-buttons_wrap {
    gap: 4px 0;
    justify-content: left;
  }
}


@media screen and (max-width: 460px) {
  .maine-view_wrap .main-wrap_about h2 {
    font-size: 28px;
  }
  .maine-view_wrap .main-wrap_about .contents .flex .descriptions .right .text {
    font-size: 4rem;
    line-height: 6rem;
  }
  .maine-view_wrap .main-wrap_about .contents .flex .descriptions .right .view-more a {
    font-size: 4rem;
  }
  .maine-view_wrap .main-wrap_about .contents .flex .descriptions .right .view-more {
    width: 100%;
  }
  .maine-view_wrap .service-list_wrap h2 {
    font-size: 24px;
  }
  .maine-view_wrap .service-list_wrap h3 {
    font-size: 4rem;
    line-height: 5rem;
  }
  .service-list_wrap .service-items .service-item {
    width: 100%;
    margin-bottom: 40px;
    gap: 4px;
  }
  .service-list_wrap .service-items .service-item img {
    height: calc(100vw* 0.5) !important;
  }
  .service-detail-button{
    padding-top: 8px;
  }
  .product-carousel .swiper-container .detail-button a span,
  .service-list_wrap .service-detail-button a span,
  .brand-carousel .detail-button a span,
  .pickup-carousel .detail-button a span {
    font-size: 4rem;
  }
  .maine-view_wrap .service-list_wrap {
    padding: 18rem 5%;
  }
  .service-list_wrap .content_wrap {
    margin-top: 8rem;
  }
  .carousel .carousel-title,
  .maine-view_wrap .service-list_wrap h2 {
    font-size: 24px !important;
  }
  .brand-slide-content .brand-thumbnail img {
    height: calc(100vw * 0.6) !important;
  }
  .carousel .brand-excerpt p{
    font-size: 11px;
  }
  .maine-view_wrap .service-list_wrap h3{
    font-size: 16px;
    line-height: 22px;
  }
  .carousel .swiper-container h3 {
    font-size: 18px;
    line-height: 24px;
  }
  .button_page-news-list {
    width: 100%;
    margin-top: 12px;
  }
  .pickup-carousel_wrap {
    flex-direction: column;
  }
  .pickup-carousel_left, .pickup-carousel_right {
    width: 100% !important;
  }
  .pickup-carousel_left {
    height: calc(100vw * 0.5) !important;
  }
  .pickup-carousel_right {
    gap: 8px;
    padding: 5rem 0;
  }
  .carousel .swiper-container .detail-button a {
    font-size: 15px;
  }
  .product-carousel .product-slide-content h3 {
    font-size: 13px !important;
    line-height: 18px !important;
    all: unset;
    color: #1c1c1c;
    font-feature-settings: "palt";
  }
  .product-carousel .product-slide-content .product-excerpt p {
    color: #1c1c1c;
  }
  .product-carousel .product-slide-content .product-detail-button span {
    color: #1c1c1c;
  }
  .product-carousel .swiper-slide p,
  .maine-view_news-wrap .item-inner .detail .txt a {
    font-size: 14px;
    line-height: 20px;
  }
  .product-carousel .swiper-slide {
    height: clamp(1vh, 55vh, 380px);
  }
  .news-list h2 {
    font-size: 7rem;
  }
  .maine-view_news-wrap .news-button {
    width: 100%;
  }
  .product-carousel .button_page-news-list {
    margin-top: 15rem;
  }
  .maine-view_wrap .main-wrap_about .contents .flex::before {
    left: 0;
    width: 60%;
  }
  .maine-view_wrap .main-wrap_about .contents .flex .descriptions .right {
    width: 100%;
    margin: 10rem 0;
  }
  .maine-view_wrap .main-wrap_about .contents .flex .descriptions .right {
    margin: 0;
    padding: 32px 0;
  }
  .maine-view_wrap .main-wrap_about .contents .flex .descriptions .right .view-more {
    margin-top: 10rem;
  }
}
