@charset "UTF-8";
/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  /* 4. Add accessible line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input, button, textarea, select {
  font: inherit;
}

/* 8. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}

/*
10. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

:root {
  --color-text: #333333;
  --color-link: #246299;
  --color-white: #ffffff;
  --color-red: #A82D25;
  --target-height: 440px;
}

.first-text {
  color: var(--color-red);
}

.margin-bottom-0 {
  margin-bottom: 0 !important;
}

@media (min-width: 768px) {
  .pc-only {
    display: block;
  }
}
@media (max-width: 767.98px) {
  .pc-only {
    display: none;
  }
}

@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .sp-only {
    display: block;
  }
}

html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 62.5%;
}

body {
  font-family: Shippori Mincho B1, serif;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-text);
  overflow-x: hidden;
}
@media (min-width: 768px) {
  body {
    font-size: 16px;
  }
}
@media (max-width: 767.98px) {
  body {
    font-size: 14px;
  }
}

a {
  text-decoration: underline;
  color: var(--color-link);
}
a:hover {
  opacity: 0.6;
}

ul {
  list-style: none;
  padding-left: 0;
}

.header {
  position: relative;
  width: 100%;
  max-width: 1464px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
}
.header:before {
  content: "";
  display: block;
  width: 100vw;
  background-image: url("../images/bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media (min-width: 768px) {
  .header:before {
    height: calc(100% + 100px);
  }
}
@media (max-width: 767.98px) {
  .header:before {
    height: calc(100% + 75px);
  }
}
@media screen and (min-width: 1920px) {
  .header:before {
    background-size: cover;
  }
}
@media (min-width: 768px) {
  .header {
    padding: 120px 32px 0;
  }
  .header > * {
    width: calc((100% - 32px) / 2);
  }
}
@media (max-width: 767.98px) {
  .header {
    padding: 100px 32px 0;
  }
  .header > * {
    width: 100%;
  }
}
.header .header__menu {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  grid-column-gap: 10px;
  width: 100%;
  max-width: 1464px;
  z-index: 100;
}
@media (min-width: 768px) {
  .header .header__menu {
    grid-template-columns: 317px 1fr;
    grid-template-rows: repeat(2, auto);
    padding: 18px 32px 16px;
    grid-row-gap: 18px;
  }
}
@media (max-width: 1200px) {
  .header .header__menu {
    padding: 8px 16px 18px;
  }
}
@media (max-width: 767.98px) {
  .header .header__menu {
    grid-template-columns: 192px 1fr;
    padding: 0 12px 16px;
    grid-row-gap: 16px;
    grid-template-rows: 60px auto;
  }
}
.header .header__menu:before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background-image: url("../images/bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  position: inherit;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.header .header__menu.is-active:before {
  opacity: 1;
}
.header .header__logo {
  display: flex;
  align-items: center;
  grid-area: 1/1/2/2;
}
@media (max-width: 767.98px) {
  .header .header__logo {
    width: 192px;
  }
}
.header .header__logo > a {
  display: inline-block;
}
.header .header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  grid-area: 1/2/2/3;
}
.header .header__nav .hamburger-menu {
  display: none;
}
@media (max-width: 1200px) {
  .header .header__nav .hamburger-menu {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    border: none;
    background-color: rgb(93, 87, 73);
    width: 90px;
    height: 90px;
    z-index: 1000;
  }
}
@media (max-width: 767.98px) {
  .header .header__nav .hamburger-menu {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    border: none;
    background-color: rgb(93, 87, 73);
    width: 60px;
    height: 60px;
    z-index: 1000;
  }
}
.header .header__nav .hamburger-menu > span {
  position: inherit;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 4.5px;
  background-image: url(../images/common/header/hamburger-menu-center.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 767.98px) {
  .header .header__nav .hamburger-menu > span {
    width: 40px;
    height: 3px;
  }
}
.header .header__nav .hamburger-menu > span:before, .header .header__nav .hamburger-menu > span:after {
  content: "";
  display: block;
  width: 60px;
  height: 4.5px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: inherit;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.5s ease;
}
@media (max-width: 767.98px) {
  .header .header__nav .hamburger-menu > span:before, .header .header__nav .hamburger-menu > span:after {
    width: 40px;
    height: 3px;
  }
}
.header .header__nav .hamburger-menu > span:before {
  top: -19.5px;
  background-image: url(../images/common/header/hamburger-menu-top.svg);
}
@media (max-width: 767.98px) {
  .header .header__nav .hamburger-menu > span:before {
    top: -13px;
  }
}
.header .header__nav .hamburger-menu > span:after {
  bottom: -19.5px;
  background-image: url(../images/common/header/hamburger-menu-bottom.svg);
}
@media (max-width: 767.98px) {
  .header .header__nav .hamburger-menu > span:after {
    bottom: -13px;
  }
}
.header .header__nav .hamburger-menu__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.header .header__nav .hamburger-menu__item .hamburger-menu__instagram {
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
}
.header .header__nav .hamburger-menu__item .hamburger-menu__instagram > a {
  display: inline-block;
}
.header .header__nav .hamburger-menu__item .hamburger-menu__lang {
  padding: 0 16px;
}
.header .header__nav .hamburger-menu__item .hamburger-menu__lang:last-of-type {
  border-left: 1px solid rgb(93, 87, 73);
}
.header .header__nav .hamburger-menu__item .hamburger-menu__lang > a {
  color: rgb(51, 51, 51);
  text-decoration: none;
}
.header .header__nav .hamburger-menu__item .hamburger-menu__lang > span {
  color: rgb(156, 156, 156);
}
.header .header__nav .hamburger-menu.is-active > span {
  background-image: none;
}
.header .header__nav .hamburger-menu.is-active > span:before {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}
.header .header__nav .hamburger-menu.is-active > span:after {
  bottom: 0;
  transform: translateX(-50%) rotate(-45deg);
}
.header .header__nav--menu {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-left: 0;
}
@media (max-width: 1200px) {
  .header .header__nav--menu {
    position: fixed;
    width: 100%;
    max-width: 768px;
    height: 100vh;
    top: 0;
    right: -768px;
    background-color: #ffffff;
    transition: all 0.5s ease;
    overflow-y: auto;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .header .header__nav--menu.is-active {
    right: 0;
  }
}
.header .header__nav--item {
  list-style: none;
}
.header .header__nav--item.hamburger-menu-only {
  display: none;
}
@media (max-width: 1200px) {
  .header .header__nav--item.hamburger-menu-only {
    display: block;
  }
}
.header .header__nav--item > a:not(.header__nav--button) {
  display: block;
  text-align: center;
  color: rgb(168, 45, 37);
  text-decoration: none;
}
.header .header__nav--item > a:not(.header__nav--button):hover {
  opacity: 1;
}
.header .header__nav--item > a:not(.header__nav--button):hover > span {
  color: rgb(168, 45, 37);
}
.header .header__nav--item > a:not(.header__nav--button) > span {
  display: block;
  font-size: 1.2rem;
  color: rgb(51, 51, 51);
  transition: color 0.5s ease;
}
.header .header__nav--item .header__nav--button {
  position: relative;
  display: inline-block;
  text-decoration: none;
  max-width: 238px;
}
.header .header__nav--item .header__nav--button p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.2rem;
  text-align: center;
  transition: color 0.5s ease;
}
.header .header__nav--item .header__nav--button p > span {
  display: block;
  color: rgb(255, 236, 91);
  font-size: 1.6rem;
  transition: color 0.5s ease;
}
.header .header__nav--item .header__nav--button .svg-button-red {
  transition: fill 0.5s ease;
}
.header .header__nav--item .header__nav--button .image-hover {
  display: none;
}
.header .header__nav--item .header__nav--button:hover .image-default {
  display: none;
}
.header .header__nav--item .header__nav--button:hover .image-hover {
  display: block;
}
.header .header__nav--item .header__nav--button:hover {
  opacity: 1;
}
.header .header__nav--item .header__nav--button:hover .hover-color {
  fill: transparent;
}
.header .header__nav--item .header__nav--button:hover p {
  color: rgb(51, 51, 51);
}
.header .header__nav--item .header__nav--button:hover p > span {
  color: rgb(168, 45, 37);
}
.header .header__link {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  grid-area: 2/1/3/3;
  padding: 0 16px;
  z-index: -1;
}
@media (max-width: 1200px) {
  .header .header__link {
    padding-right: 0;
  }
}
.header .header__link > li {
  list-style: none;
  line-height: 1;
}
.header .header__link > li > a, .header .header__link > li span {
  display: inline-block;
  line-height: 1;
  font-weight: 700;
  height: 14px;
}
.header .header__link > li > a {
  text-decoration: none;
  color: rgb(51, 51, 51);
}
.header .header__link > li > span {
  color: rgb(156, 156, 156);
}
@media (min-width: 768px) {
  .header .header__link--instagram {
    margin-right: 16px;
  }
}
@media (max-width: 767.98px) {
  .header .header__link--instagram {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .header .header__link--lang {
    font-size: 1.6rem;
  }
}
.header .header__link--lang:nth-child(2) {
  margin-right: 8px;
}
.header .header__link--lang:nth-child(3) {
  margin-left: 9px;
  position: relative;
}
.header .header__link--lang:nth-child(3):before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 15px;
  background-color: rgb(0, 0, 0);
  position: absolute;
  top: 50%;
  left: -9px;
  transform: translateY(-50%);
}
.header .header__text-area {
  display: grid;
  grid-template-rows: 1fr auto auto auto;
}
.header .header__title-area {
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .header .header__period {
    padding-top: 22px;
  }
}
@media (max-width: 767.98px) {
  .header .header__period {
    padding-top: 32px;
  }
}
@media (min-width: 768px) {
  .header .header__overview {
    padding-top: 22px;
  }
}
@media (max-width: 767.98px) {
  .header .header__overview {
    padding-top: 16px;
  }
}
.header .header__organized {
  text-align: center;
}
@media (min-width: 768px) {
  .header .header__organized {
    padding-top: 22px;
    font-size: clamp(0.1rem, 1.4vw, 16px);
  }
}
@media (max-width: 767.98px) {
  .header .header__organized {
    padding-top: 12px;
  }
}
.header .header__image img {
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .header .header__image {
    order: -1;
  }
}

@media (min-width: 768px) {
  .page-top .header:before {
    height: calc(100% + 250px);
    -webkit-mask-image: linear-gradient(to top, transparent 0px, black 250px);
    mask-image: linear-gradient(to top, transparent 0px, black 250px);
  }
}
@media (max-width: 767.98px) {
  .page-top .header:before {
    height: calc(100% + 100px);
    -webkit-mask-image: linear-gradient(to top, transparent 0px, black 100px);
    mask-image: linear-gradient(to top, transparent 0px, black 100px);
  }
}
@media screen and (min-width: 1920px) {
  .page-top .header:before {
    background-size: cover;
  }
}
@media (min-width: 768px) {
  .page-top .header {
    margin: 0 auto 100px;
  }
}
@media (max-width: 767.98px) {
  .page-top .header {
    margin: 0 auto 80px;
  }
}

#overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
  z-index: 101;
}
#overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.main {
  width: 100%;
  padding: 0 16px;
  overflow-x: hidden;
}

.section__title-area > * {
  line-height: 1.2;
}
.section__title-area .section__title-lv1 {
  position: relative;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .section__title-area .section__title-lv1 {
    font-size: 4rem;
    margin-bottom: 4px;
  }
}
@media (max-width: 767.98px) {
  .section__title-area .section__title-lv1 {
    font-size: 2.6rem;
    margin-bottom: 2px;
  }
}
.section__title-area .section__title-lv2 {
  position: relative;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .section__title-area .section__title-lv2 {
    font-size: 3.2rem;
    margin-bottom: 4px;
  }
}
@media (max-width: 767.98px) {
  .section__title-area .section__title-lv2 {
    font-size: 2.6rem;
    margin-bottom: 2px;
  }
}
.section__title-area .section__title-shop {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 28px;
  line-height: 1;
}
@media (min-width: 768px) {
  .section__title-area .section__title-shop {
    font-size: 2.4rem;
    margin-bottom: 32px;
  }
}
@media (max-width: 767.98px) {
  .section__title-area .section__title-shop {
    font-size: 2rem;
    margin-bottom: 18px;
  }
}
.section__title-area .section__title-shop:before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(../images/distance.svg);
  background-repeat: no-repeat;
  background-position: bottom center;
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
}
.section__title-area .section__title-shop-small {
  margin-top: 5px;
}
@media (min-width: 768px) {
  .section__title-area .section__title-shop-small {
    font-size: 1.6rem;
    margin-bottom: 32px;
  }
}
@media (max-width: 767.98px) {
  .section__title-area .section__title-shop-small {
    font-size: 1.2rem;
    margin-bottom: 18px;
  }
}

.section-about {
  width: 100%;
  max-width: 1200px;
}
@media (min-width: 768px) {
  .section-about {
    margin: 0 auto 80px;
  }
}
@media (max-width: 767.98px) {
  .section-about {
    margin: 0 auto 60px;
  }
}
.section-about .section-about__column {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 64px;
}
@media (min-width: 768px) {
  .section-about .section-about__column {
    margin-top: 32px;
  }
  .section-about .section-about__column > * {
    width: calc((100% - 64px) / 2);
  }
}
@media (max-width: 767.98px) {
  .section-about .section-about__column {
    margin-top: 16px;
  }
  .section-about .section-about__column > * {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .section-about .section-about__column--text {
    order: 1;
  }
}
@media (min-width: 768px) {
  .section-about .section-about__column--text p {
    font-size: clamp(0.1rem, 1.9vw, 20px);
  }
}
@media (max-width: 767.98px) {
  .section-about .section-about__column--text p {
    font-size: 1.4rem;
  }
}
@media (min-width: 768px) {
  .section-about .section-about__column--text p .small-text {
    font-size: clamp(0.1rem, 1.4vw, 14px);
  }
}
@media (max-width: 767.98px) {
  .section-about .section-about__column--text p .small-text {
    font-size: 1.2rem;
  }
}
.section-about .section-about__column--text p + p {
  margin-top: 1em;
}
.section-about .section-about__column--image img {
  margin: 0 auto;
}

.section-shop {
  width: 100%;
  max-width: 1200px;
}
@media (min-width: 768px) {
  .section-shop {
    margin: 0 auto 80px;
  }
}
@media (max-width: 767.98px) {
  .section-shop {
    margin: 0 auto 60px;
  }
}
@media (min-width: 768px) {
  .section-shop > .section__title-area + .section-shop__inner {
    margin-top: 32px;
  }
}
@media (max-width: 767.98px) {
  .section-shop > .section__title-area + .section-shop__inner {
    margin-top: 18px;
  }
}
@media (min-width: 768px) {
  .section-shop .section-shop__inner + .section-shop__inner {
    margin-top: 60px;
  }
}
@media (max-width: 767.98px) {
  .section-shop .section-shop__inner + .section-shop__inner {
    margin-top: 32px;
  }
}
.section-shop .section-shop__craft--items {
  position: relative;
  list-style: none;
  padding-left: 0;
}
@media (min-width: 768px) {
  .section-shop .section-shop__craft--items {
    display: grid;
    padding: 32px 24px 0;
    gap: 32px;
    grid-template-columns: repeat(auto-fit, minmax(264px, 1fr));
  }
}
.section-shop .section-shop__craft--items:before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: linear-gradient(90deg, rgba(211, 211, 211, 0) 0%, #D3D3D3 5%, #6D6D6D 50%, #D3D3D3 95%, rgba(211, 211, 211, 0) 100%);
}
.section-shop .section-shop__craft--item {
  position: relative;
  text-align: center;
  padding-bottom: 12px;
}
@media (min-width: 768px) {
  .section-shop .section-shop__craft--item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 767.98px) {
  .section-shop .section-shop__craft--item {
    display: block;
  }
}
@media (max-width: 767.98px) {
  .section-shop .section-shop__craft--item {
    padding-top: 12px;
  }
}
.section-shop .section-shop__craft--item:after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: linear-gradient(90deg, rgba(211, 211, 211, 0) 0%, #D3D3D3 5%, #6D6D6D 50%, #D3D3D3 95%, rgba(211, 211, 211, 0) 100%);
}
.section-shop .section-shop__craft--item > a {
  text-decoration: none;
  color: var(--color-text);
}
@media (min-width: 768px) {
  .section-shop .section-shop__craft--item > a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 767.98px) {
  .section-shop .section-shop__craft--item > a {
    display: block;
  }
}
.section-shop .section-shop__craft--item > a > span {
  line-height: 1.5;
}
@media (min-width: 768px) {
  .section-shop .section-shop__craft--item > a > span:nth-child(2) {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
  }
}
@media (max-width: 767.98px) {
  .section-shop .section-shop__craft--item > a > span:nth-child(2) {
    margin-right: 5px;
  }
  .section-shop .section-shop__craft--item > a > span:nth-child(2).sp-br {
    display: block;
    margin-right: 0;
  }
}
.section-shop .section-shop__craft--item > a > span:nth-child(1),
.section-shop .section-shop__craft--item > a > span:nth-child(3) {
  display: inline-block;
}
.section-shop .section-shop__craft--item > span {
  line-height: 1.5;
}
@media (min-width: 768px) {
  .section-shop .section-shop__craft--item > span:nth-child(2) {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
  }
}
@media (max-width: 767.98px) {
  .section-shop .section-shop__craft--item > span:nth-child(2) {
    margin-right: 5px;
  }
  .section-shop .section-shop__craft--item > span:nth-child(2).sp-br {
    display: block;
    margin-right: 0;
  }
}
.section-shop .section-shop__craft--item > span:nth-child(1),
.section-shop .section-shop__craft--item > span:nth-child(3) {
  display: inline-block;
}

.section-instagram {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .section-instagram {
    padding: 0 0 80px;
  }
}
@media (max-width: 767.98px) {
  .section-instagram {
    padding: 60px 0 60px;
  }
}
.section-instagram:before {
  content: "";
  display: block;
  width: 100vw;
  background-image: url("../images/bg.webp");
  background-size: auto;
  background-repeat: no-repeat;
  background-position: top center;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0px, black 50px);
  mask-image: linear-gradient(to bottom, transparent 0px, black 50px);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media (min-width: 768px) {
  .section-instagram:before {
    top: -40px;
    height: calc(100% + 40px);
  }
}
@media (max-width: 767.98px) {
  .section-instagram:before {
    top: -30px;
    height: calc(100% + 30px);
  }
}
@media screen and (min-width: 1920px) {
  .section-instagram:before {
    background-size: cover;
  }
}
.section-instagram .section-instagram__inner {
  display: grid;
  gap: 16px;
}
@media (min-width: 768px) {
  .section-instagram .section-instagram__inner {
    grid-template-columns: repeat(4, 1fr); /* PC: 4カラム */
    margin: 32px 0;
  }
}
@media (max-width: 767.98px) {
  .section-instagram .section-instagram__inner {
    grid-template-columns: repeat(2, 1fr); /* SP: 2カラム */
    margin: 16px 0;
  }
}
.section-instagram .section-instagram__item {
  aspect-ratio: 1/1; /* 正方形比率を保つ */
  overflow: hidden;
}
.section-instagram .section-instagram__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.section-instagram .section-instagram__button {
  text-align: center;
}
.section-instagram .section-instagram__button > a {
  display: inline-block;
  line-height: 1;
  border-radius: 50px;
  color: var(--color-white);
  background: linear-gradient(86.66deg, #FF3250 17.6%, #033FE1 100%);
  text-decoration: none;
  box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.337254902);
  transition: background-color 0.5s ease;
}
.section-instagram .section-instagram__button > a:hover {
  background: linear-gradient(86.66deg, rgba(255, 50, 80, 0.6) 17.6%, rgba(3, 63, 225, 0.6) 100%);
  opacity: 1;
}
@media (min-width: 768px) {
  .section-instagram .section-instagram__button > a {
    font-size: 2.4rem;
    padding: 20px 32px;
  }
}
@media (max-width: 767.98px) {
  .section-instagram .section-instagram__button > a {
    font-size: 1.6rem;
    padding: 16px;
  }
}

.section__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-footer {
  width: 100%;
  padding: 40px 16px;
}
.section-footer__inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  gap: 48px 24px;
}
@media (max-width: 767.98px) {
  .section-footer__inner {
    flex-direction: column;
    align-items: center;
  }
}
.section-footer__item {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .section-footer__item {
    width: calc((100% - 24px) / 2);
  }
}
@media (max-width: 767.98px) {
  .section-footer__item {
    width: 100%;
  }
}
.section-footer__item a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  text-decoration: none;
}
.section-footer__item a:hover {
  text-decoration: underline;
}
@media (max-width: 767.98px) {
  .section-footer__item + .section-footer__item {
    position: relative;
  }
  .section-footer__item + .section-footer__item:before {
    content: "";
    display: inline-block;
    width: 317px;
    height: 3px;
    background-image: url(../images/common/footer/border.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.section-footer__link {
  position: relative;
  margin-top: 14px;
  padding-right: 20px;
  line-height: 1;
}
.section-footer__link:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-image: url(../images/common/icon-blank.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.footer {
  position: relative;
  width: 100%;
  padding: 0 16px;
}
.footer:before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background-image: url("../images/bg.webp");
  background-size: auto;
  background-repeat: no-repeat;
  background-position: top center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (min-width: 1920px) {
  .footer:before {
    background-size: cover;
  }
}
.footer .footer__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .footer .footer__inner {
    padding: 80px 0 100px;
  }
}
@media (max-width: 767.98px) {
  .footer .footer__inner {
    padding: 60px 0;
  }
}
@media (min-width: 768px) {
  .footer .footer__title-lv2 {
    font-size: 3.2rem;
    margin-bottom: 20px;
  }
}
@media (max-width: 767.98px) {
  .footer .footer__title-lv2 {
    font-size: 2.6rem;
    margin-bottom: 16px;
  }
}
.footer .footer__title-lv3 {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .footer .footer__title-lv3 {
    font-size: 2.8rem;
  }
}
@media (max-width: 767.98px) {
  .footer .footer__title-lv3 {
    font-size: 2rem;
  }
}
.footer .footer__address {
  margin-bottom: 12px;
}
.footer .footer__contact {
  position: relative;
  margin-bottom: 24px;
  padding-left: 24px;
}
.footer .footer__contact:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(../images/mail.svg);
  background-repeat: no-repeat;
  background-position: top 5px center;
  background-size: auto;
}
.footer .footer__contact a {
  display: inline-block;
  margin-left: 8px;
}
.footer .footer__year-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  padding-left: 0;
}
.footer .footer__year-list li > a {
  display: inline-block;
  padding: 4px 0;
  line-height: 1;
  text-decoration: none;
  border-bottom: 1px solid var(--color-link);
}
@media (max-width: 767.98px) {
  .footer .footer__year-list li > a {
    font-size: 1.6rem;
  }
}
.footer .footer__year-list li > a:hover {
  opacity: 0.6;
}
.footer .footer__copyright {
  position: relative;
  display: block;
  width: 100%;
  padding: 16px 10px;
  text-align: center;
  font-size: 1rem;
  line-height: 1;
  color: var(--color-white);
  background-color: #5D5749;
}
.footer .footer__copyright:before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  background-color: inherit;
}

.top-news__list {
  padding-left: 0;
}
@media (min-width: 768px) {
  .top-news__list {
    margin-top: 32px;
  }
}
@media (max-width: 767.98px) {
  .top-news__list {
    margin-top: 16px;
  }
}
.top-news__item {
  position: relative;
  list-style: none;
  padding: 24px;
}
.top-news__item > a {
  display: block;
  text-decoration: none;
  color: #333333;
}
.top-news__item > a:hover {
  opacity: 1;
  color: rgb(168, 45, 37);
}
.top-news__item:after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: linear-gradient(90deg, rgba(211, 211, 211, 0) 0%, #D3D3D3 5%, #6D6D6D 50%, #D3D3D3 95%, rgba(211, 211, 211, 0) 100%);
}
.top-news__date {
  font-size: 1.2rem;
  line-height: 1;
}
.top-news__text {
  width: 100%;
  margin-top: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1;
}
@media (max-width: 767.98px) {
  .top-news__text {
    font-size: 1.6rem;
  }
}

.top-present {
  display: grid;
}
@media (min-width: 768px) {
  .top-present {
    grid-template-columns: minmax(425px, 1fr) minmax(275px, 450px);
    grid-template-rows: repeat(3, auto);
    grid-column-gap: 24px;
    grid-row-gap: 32px;
    margin-top: 80px;
  }
}
@media (max-width: 767.98px) {
  .top-present {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
    grid-row-gap: 24px;
    margin-top: 60px;
  }
}
@media (min-width: 768px) {
  .top-present__title {
    grid-area: 1/1/2/2;
  }
}
@media (max-width: 767.98px) {
  .top-present__title {
    grid-area: 1/1/2/2;
  }
}
.top-present__image {
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .top-present__image {
    grid-area: 1/2/4/3;
  }
  .top-present__image img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    margin-left: auto;
  }
}
@media (max-width: 767.98px) {
  .top-present__image {
    grid-area: 2/1/3/2;
  }
  .top-present__image img {
    max-width: 100%;
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  .top-present__textarea {
    grid-area: 2/1/3/2;
    font-size: clamp(1.4rem, 1.6vw, 1.6rem);
  }
}
@media (max-width: 767.98px) {
  .top-present__textarea {
    grid-area: 3/1/4/2;
  }
}
.top-present__textarea--notes {
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .top-present__button {
    grid-area: 3/1/4/2;
  }
}
@media (max-width: 767.98px) {
  .top-present__button {
    padding: 5px;
    grid-area: 4/1/5/2;
  }
}
@media (min-width: 768px) {
  .top-present__button--link {
    display: inline-block;
    width: 234px;
    height: 76px;
    position: relative;
    text-decoration: none;
  }
}
@media (max-width: 767.98px) {
  .top-present__button--link {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    padding: 8px 10px;
    background-color: rgb(168, 45, 37);
    text-decoration: none;
    border: 1px solid rgb(168, 45, 37);
    transition: background-color 0.5s ease;
  }
  .top-present__button--link:hover {
    background-color: transparent;
  }
  .top-present__button--link svg {
    display: none;
  }
  .top-present__button--link:before, .top-present__button--link:after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 25px;
    aspect-ratio: 1;
    background: #ffffff;
  }
  .top-present__button--link:before {
    bottom: -5px;
    left: -5px;
    clip-path: polygon(0 100%, 0 0, 100% 100%);
    background: linear-gradient(45deg, #ffffff, #ffffff calc(50% - 1px), #A82D25 calc(50% - 1px));
  }
  .top-present__button--link:after {
    top: -5px;
    right: -5px;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    background: linear-gradient(45deg, #A82D25 calc(50% + 1px), #ffffff calc(50% + 1px), #ffffff);
  }
}
.top-present__button--link p {
  width: 100%;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.2rem;
  text-align: center;
  transition: color 0.5s ease;
}
@media (min-width: 768px) {
  .top-present__button--link p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
}
.top-present__button--link p > span {
  display: block;
  color: rgb(255, 236, 91);
  font-size: 1.6rem;
  transition: color 0.5s ease;
}
.top-present__button--link .svg-button-red .hover-color {
  transition: fill 0.5s ease;
}
.top-present__button--link:hover {
  opacity: 1;
}
.top-present__button--link:hover .hover-color {
  fill: transparent;
}
.top-present__button--link:hover p {
  color: rgb(51, 51, 51);
}
.top-present__button--link:hover p > span {
  color: rgb(168, 45, 37);
}

@media (min-width: 768px) {
  .top-about {
    display: grid;
    grid-template-columns: minmax(425px, 1fr) minmax(275px, 450px);
    grid-template-rows: repeat(3, auto);
    grid-column-gap: 24px;
    grid-row-gap: 32px;
    margin-top: 80px;
  }
}
@media (max-width: 767.98px) {
  .top-about {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 60px;
  }
}
@media (min-width: 768px) {
  .top-about__title {
    grid-area: 1/1/2/2;
  }
}
@media (max-width: 767.98px) {
  .top-about__title {
    grid-area: 1/1/2/2;
  }
}
.top-about__image {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .top-about__image {
    grid-area: 1/2/4/3;
  }
}
@media (max-width: 767.98px) {
  .top-about__image {
    width: 100%;
    grid-area: 2/1/3/2;
  }
}
.top-about__image .mask-image {
  width: 100%;
  max-width: 442px;
  mask-image: url(../images/common/mask-image.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 100%;
  object-fit: contain;
  aspect-ratio: 221/160;
}
.top-about__image .mask-image .slick-list {
  aspect-ratio: 221/160;
}
.top-about__image .mask-image .slick-list .slick-track {
  height: 100%;
}
.top-about__image .mask-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.top-about__image .mask-image img.mask-image-04 {
  object-position: -25px;
}
@media (min-width: 768px) {
  .top-about__textarea {
    grid-area: 2/1/3/2;
    font-size: clamp(1.4rem, 1.6vw, 1.6rem);
    max-width: 580px;
  }
}
@media (max-width: 767.98px) {
  .top-about__textarea {
    grid-area: 3/1/4/2;
  }
}
.top-about__textarea--notes {
  font-size: 1.2rem;
}
.top-about__textarea p + p {
  margin-top: 1em;
}
@media (min-width: 768px) {
  .top-about__button {
    grid-area: 3/1/4/2;
  }
}
@media (max-width: 767.98px) {
  .top-about__button {
    padding: 5px;
    grid-area: 4/1/5/2;
  }
}
@media (min-width: 768px) {
  .top-about__button--link {
    display: inline-block;
    width: 234px;
    height: 76px;
    position: relative;
    text-decoration: none;
  }
}
@media (max-width: 767.98px) {
  .top-about__button--link {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    padding: 8px 10px;
    background-color: #ffffff;
    text-decoration: none;
    border: 1px solid rgb(168, 45, 37);
    transition: background-color 0.5s ease;
  }
  .top-about__button--link:hover {
    background-color: rgb(168, 45, 37);
  }
  .top-about__button--link svg {
    display: none;
  }
  .top-about__button--link:before, .top-about__button--link:after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 25px;
    aspect-ratio: 1;
    background: #ffffff;
  }
  .top-about__button--link:before {
    bottom: -5px;
    left: -5px;
    clip-path: polygon(0 100%, 0 0, 100% 100%);
    background: linear-gradient(45deg, #ffffff, #ffffff calc(50% - 1px), #A82D25 calc(50% - 1px));
  }
  .top-about__button--link:after {
    top: -5px;
    right: -5px;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    background: linear-gradient(45deg, #A82D25 calc(50% + 1px), #ffffff calc(50% + 1px), #ffffff);
  }
}
.top-about__button--link p {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #A82D25;
  font-weight: 700;
  font-size: 1.6rem;
  text-align: center;
  transition: color 0.5s ease;
}
@media (min-width: 768px) {
  .top-about__button--link p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
}
.top-about__button--link .svg-button-red .hover-color {
  fill: transparent;
  transition: fill 0.5s ease;
}
.top-about__button--link:hover {
  opacity: 1;
}
.top-about__button--link:hover .hover-color {
  fill: #A82D25;
}
.top-about__button--link:hover p {
  color: #ffffff;
}

@media (min-width: 768px) {
  .top-craft {
    margin-top: 80px;
  }
}
@media (max-width: 767.98px) {
  .top-craft {
    margin-top: 60px;
  }
}
.top-craft__lead {
  margin-top: 32px;
}
.top-craft__contents {
  margin-top: 32px;
}
.top-craft__contents + .top-craft__contents {
  margin-top: 40px;
}
.top-craft__contents--area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.top-craft__contents.ginza .top-craft__title {
  position: relative;
}
.top-craft__contents.ginza .top-craft__title:before {
  background-color: rgb(227, 155, 161);
}
.top-craft__contents.ginza .top-craft__title span {
  color: rgb(227, 155, 161);
}
.top-craft__contents.ginza .top-craft__button span {
  color: rgb(227, 155, 161);
}
.top-craft__contents.ginza .top-craft__button .hover-boder {
  fill: rgb(227, 155, 161);
}
.top-craft__contents.ginza .top-craft__button:hover .hover-background {
  fill: rgb(227, 155, 161);
}
.top-craft__contents.aoyama .top-craft__title {
  position: relative;
}
.top-craft__contents.aoyama .top-craft__title:before {
  background-color: rgb(130, 172, 216);
}
.top-craft__contents.aoyama .top-craft__title span {
  color: rgb(130, 172, 216);
}
.top-craft__contents.aoyama .top-craft__button span {
  color: rgb(130, 172, 216);
}
.top-craft__contents.aoyama .top-craft__button .hover-boder {
  fill: rgb(130, 172, 216);
}
.top-craft__contents.aoyama .top-craft__button:hover .hover-background {
  fill: rgb(130, 172, 216);
}
.top-craft__contents.nakameguro .top-craft__title {
  position: relative;
}
.top-craft__contents.nakameguro .top-craft__title:before {
  background-color: rgb(142, 196, 171);
}
.top-craft__contents.nakameguro .top-craft__title span {
  color: rgb(142, 196, 171);
}
.top-craft__contents.nakameguro .top-craft__button span {
  color: rgb(142, 196, 171);
}
.top-craft__contents.nakameguro .top-craft__button .hover-boder {
  fill: rgb(142, 196, 171);
}
.top-craft__contents.nakameguro .top-craft__button:hover .hover-background {
  fill: rgb(142, 196, 171);
}
.top-craft__contents.new .top-craft__title {
  position: relative;
}
.top-craft__contents.new .top-craft__title:before {
  background-color: rgb(174, 157, 202);
}
.top-craft__contents.new .top-craft__title span {
  color: rgb(174, 157, 202);
}
.top-craft__contents.new .top-craft__button span {
  color: rgb(174, 157, 202);
}
.top-craft__contents.new .top-craft__button .hover-boder {
  fill: rgb(174, 157, 202);
}
.top-craft__contents.new .top-craft__button:hover .hover-background {
  fill: rgb(174, 157, 202);
}
.top-craft__title {
  position: relative;
  padding-left: 24px;
  font-size: 2rem;
}
.top-craft__title:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  mask-image: url(../images/common/icon-area.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
.top-craft__button {
  position: relative;
  display: block;
}
.top-craft__button span {
  display: block;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  transition: color 0.5s ease;
}
.top-craft__button .hover-background {
  transition: fill 0.5s ease;
}
.top-craft__button:hover {
  opacity: 1;
}
.top-craft__button:hover span {
  color: #ffffff !important;
}
@media (max-width: 767.98px) {
  .top-craft__button svg {
    width: 118px;
  }
}

@media (min-width: 768px) {
  .top-map {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}
@media (max-width: 767.98px) {
  .top-map {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
@media (min-width: 768px) {
  .top-map__lead {
    margin-top: 32px;
  }
}
@media (max-width: 767.98px) {
  .top-map__lead {
    margin-top: 24px;
  }
  .top-map__lead .top-map__lead {
    margin-top: 16px;
  }
}
.top-map__lead span {
  position: relative;
}
.top-map__lead span:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
.top-map__lead span.ginza:before {
  width: 42px;
  height: 19px;
  background-image: url(../images/top/top-map-ginza.svg);
}
.top-map__lead span.aoyama:before {
  width: 85px;
  height: 20px;
  background-image: url(../images/top/top-map-shibuya.svg);
}
.top-map__lead span.nakameguro:before {
  width: 56px;
  height: 20px;
  background-image: url(../images/top/top-map-nakameguro.svg);
}
.top-map__lead span.new:before {
  width: 42px;
  height: 20px;
  background-image: url(../images/top/top-map-new.svg);
}
.top-map__area {
  position: relative;
  width: 100%;
  overflow-x: auto;
}
@media (max-width: 767.98px) {
  .top-map__area {
    padding-bottom: 20px;
  }
}
.top-map__area--inner {
  position: relative;
  min-width: 1200px;
}
.top-map__area img {
  width: 100%;
}
.top-map__area svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.top-map__area--box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.top-map__area--box.hokkaido {
  top: 80px;
  left: 890px;
}
.top-map__area--box.iwate {
  top: 315px;
  left: 925px;
}
.top-map__area--box.akita {
  top: 145px;
  left: 610px;
}
.top-map__area--box.fukushima {
  top: 442px;
  left: 865px;
}
.top-map__area--box.saitama {
  top: 522px;
  left: 885px;
}
.top-map__area--box.tokyo {
  top: 600px;
  left: 885px;
}
.top-map__area--box.kanagawa {
  top: 760px;
  left: 885px;
}
.top-map__area--box.toyama {
  top: 422px;
  left: 595px;
}
.top-map__area--box.ishikawa {
  top: 305px;
  left: 520px;
}
.top-map__area--box.gufu {
  top: 695px;
  left: 710px;
}
.top-map__area--box.aichi {
  top: 815px;
  left: 690px;
}
.top-map__area--box.fukui {
  top: 375px;
  left: 360px;
}
.top-map__area--box.shiga {
  top: 512px;
  left: 420px;
}
.top-map__area--box.kagawa {
  top: 815px;
  left: 525px;
}
.top-map__area--box.tokushima {
  top: 900px;
  left: 485px;
}
.top-map__area--box.ehime {
  top: 817px;
  left: 365px;
}
.top-map__area--box.oita {
  top: 548px;
  left: 287px;
}
.top-map__area--box.nagasaki {
  top: 445px;
  left: 70px;
}
.top-map__area--box.kumamoto {
  top: 585px;
  left: 30px;
}
.top-map__area--box.kagoshima {
  top: 890px;
  left: 230px;
}
.top-map__area--box.okinawa {
  top: 834px;
  left: 45px;
}
.top-map__area--name {
  display: inline-block;
  font-size: 1.4rem;
  color: #ffffff;
  background-color: rgb(93, 87, 73);
  border-radius: 12px;
  line-height: 1;
  margin-bottom: 5px;
  padding: 5px 10px;
}
.top-map__area--item {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}
.top-map__area--item + .top-map__area--item {
  margin-top: 5px;
}
.top-map__area--item p {
  font-size: 1.4rem;
  color: rgb(51, 51, 51);
  font-weight: 700;
}
.top-map__area--item p > span {
  display: block;
  font-size: 1rem;
}
.top-map__area--label {
  display: flex;
  align-items: flex-end;
  margin-right: 4px;
}
.top-map__area--label > span:first-child {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 19px;
  height: 19px;
  mask-image: url(../images/common/icon-map-area.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 1px;
}
.top-map__area--label > span:last-child {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 26px;
  mask-image: url(../images/common/icon-number.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  font-size: 1.4rem;
  color: #ffffff;
  line-height: 1;
}
.top-map__area--label.ginza span {
  background-color: rgb(227, 155, 161);
}
.top-map__area--label.nakameguro span {
  background-color: rgb(142, 196, 171);
}
.top-map__area--label.aoyama span {
  background-color: rgb(130, 172, 216);
}
.top-map__area--label.new span {
  background-color: rgb(174, 157, 202);
}

@media (min-width: 768px) {
  .shop-lead {
    margin-top: 115px;
    margin-bottom: 80px;
  }
}
@media (max-width: 767.98px) {
  .shop-lead {
    margin-top: 65px;
    margin-bottom: 40px;
  }
}
@media (min-width: 768px) {
  .shop-lead__grid {
    display: grid;
    grid-template-columns: calc(55% - 12px) calc(45% - 12px);
    grid-template-rows: auto auto 1fr;
    grid-column-gap: 24px;
    grid-row-gap: 0px;
  }
}
.shop-lead__crafts {
  margin-bottom: 24px;
  line-height: 1;
}
@media (min-width: 768px) {
  .shop-lead__crafts {
    grid-area: 1/1/2/2;
    font-size: 3.2rem;
  }
}
@media (max-width: 767.98px) {
  .shop-lead__crafts {
    font-size: 2.6rem;
  }
}
.shop-lead__box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 24px;
  gap: 8px;
}
@media (min-width: 768px) {
  .shop-lead__box {
    grid-area: 2/1/3/2;
  }
}
.shop-lead__title {
  line-height: 1;
}
@media (min-width: 768px) {
  .shop-lead__title {
    font-size: 3.2rem;
  }
}
@media (max-width: 767.98px) {
  .shop-lead__title {
    font-size: 2.6rem;
  }
}
.shop-lead__area {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 27px;
  mask-image: url(../images/common/icon-region.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  font-size: 1.4rem;
  color: #ffffff;
  line-height: 1;
}
.shop-lead__area.large {
  mask-image: url(../images/common/icon-region-large.svg);
  width: 98px;
}
.shop-lead__area.ginza {
  background-color: rgb(227, 155, 161);
}
.shop-lead__area.aoyama {
  background-color: rgb(130, 172, 216);
}
.shop-lead__area.nakameguro {
  background-color: rgb(142, 196, 171);
}
.shop-lead__area.new {
  background-color: rgb(174, 157, 202);
}
@media (min-width: 768px) {
  .shop-lead__textarea {
    grid-area: 3/1/4/2;
  }
}
.shop-lead__textarea .shop-lead__sub-tiitle {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .shop-lead__textarea .shop-lead__sub-tiitle {
    font-size: 2.4rem;
  }
}
@media (max-width: 767.98px) {
  .shop-lead__textarea .shop-lead__sub-tiitle {
    font-size: 2rem;
  }
}
.shop-lead__link {
  margin-top: 24px;
}
.shop-lead__link a {
  position: relative;
  display: inline-block;
  height: 20px;
  text-decoration: none;
  padding-right: 20px;
  line-height: 1;
}
.shop-lead__link a:hover {
  text-decoration: underline;
}
.shop-lead__link a:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-image: url(../images/common/icon-blank.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (min-width: 768px) {
  .shop-lead__image {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    grid-area: 1/2/4/3;
  }
}
@media (max-width: 767.98px) {
  .shop-lead__image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
  }
}
.shop-lead__image .mask-image {
  width: 100%;
  max-width: 442px;
  mask-image: url(../images/common/mask-image.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 100%;
  object-fit: contain;
  aspect-ratio: 221/160;
}
.shop-lead__image .mask-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-work {
  position: relative;
}
@media (min-width: 768px) {
  .shop-work + .shop-details {
    padding-top: 80px;
  }
}
@media (max-width: 767.98px) {
  .shop-work + .shop-details {
    padding-top: 40px;
  }
}
@media (min-width: 768px) {
  .shop-work {
    padding: 40px 0;
  }
}
@media (max-width: 767.98px) {
  .shop-work {
    padding: 24px 0;
  }
}
.shop-work:before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background-image: url(../images/bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  transition: opacity 0.5s ease;
}
.shop-work__inner {
  width: 100%;
  background-color: #ffffff;
  border-radius: 6px;
}
@media (min-width: 768px) {
  .shop-work__inner {
    padding: 40px;
  }
}
@media (max-width: 767.98px) {
  .shop-work__inner {
    padding: 16px;
  }
}
.shop-work__title {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .shop-work__title {
    font-size: 3.2rem;
  }
}
@media (max-width: 767.98px) {
  .shop-work__title {
    font-size: 2.6rem;
  }
}
.shop-work__box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.shop-work__box.ginza .shop-work__area:before {
  background-color: rgb(227, 155, 161);
}
.shop-work__box.ginza .shop-work__area span {
  color: rgb(227, 155, 161);
}
.shop-work__box.ginza .shop-work__number {
  background-color: rgb(227, 155, 161);
}
.shop-work__box.nakameguro .shop-work__area:before {
  background-color: rgb(142, 196, 171);
}
.shop-work__box.nakameguro .shop-work__area span {
  color: rgb(142, 196, 171);
}
.shop-work__box.nakameguro .shop-work__number {
  background-color: rgb(142, 196, 171);
}
.shop-work__box.aoyama .shop-work__area:before {
  background-color: rgb(130, 172, 216);
}
.shop-work__box.aoyama .shop-work__area span {
  color: rgb(130, 172, 216);
}
.shop-work__box.aoyama .shop-work__number {
  background-color: rgb(130, 172, 216);
}
.shop-work__box.new .shop-work__area:before {
  background-color: rgb(174, 157, 202);
}
.shop-work__box.new .shop-work__area span {
  color: rgb(174, 157, 202);
}
.shop-work__box.new .shop-work__number {
  background-color: rgb(174, 157, 202);
}
.shop-work__area {
  position: relative;
  padding-left: 24px;
  font-size: 2rem;
}
.shop-work__area:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  mask-image: url(../images/common/icon-area.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
.shop-work__number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 26px;
  mask-image: url(../images/common/icon-number.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  font-size: 1.4rem;
  color: #ffffff;
  line-height: 1;
}
.shop-work__name {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .shop-work__name {
    font-size: 2.4rem;
  }
}
@media (max-width: 767.98px) {
  .shop-work__name {
    font-size: 2.2rem;
  }
}
.shop-work__details {
  display: flex;
  flex-wrap: wrap;
  gap: 0 24px;
  margin-top: 24px;
}
.shop-work__details + .shop-work__details {
  margin-top: 40px;
}
.shop-work__details--title {
  padding: 16px 2em 16px 16px;
}
.shop-work__details--text {
  position: relative;
  padding: 16px 16px 16px 0;
}
@media (min-width: 768px) {
  .shop-work__details--text {
    width: calc(100% - 104px);
  }
}
@media (max-width: 767.98px) {
  .shop-work__details--text {
    width: calc(100% - 96px);
  }
}
.shop-work__details--text:after {
  content: "";
  display: inline-block;
  height: 1px;
  position: absolute;
  bottom: 0;
  background-image: linear-gradient(90deg, rgba(211, 211, 211, 0) 0%, #D3D3D3 5%, #6D6D6D 50%, #D3D3D3 95%, rgba(211, 211, 211, 0) 100%);
}
@media (min-width: 768px) {
  .shop-work__details--text:after {
    width: calc(100% + 104px);
    left: -104px;
  }
}
@media (max-width: 767.98px) {
  .shop-work__details--text:after {
    width: calc(100% + 96px);
    left: -96px;
  }
}
.shop-work__notes {
  margin-top: 40px;
  font-size: 1.4rem;
}
.shop-work__image {
  margin-top: 40px;
}
.shop-work__image figure {
  max-width: 640px;
}

.shop-details {
  position: relative;
}
.shop-details:before {
  content: "";
  display: block;
  width: 100vw;
  background-image: url(../images/bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  transition: opacity 0.5s ease;
}
@media (min-width: 768px) {
  .shop-details {
    padding: 0 0 110px;
  }
  .shop-details:before {
    height: 30px;
  }
}
@media (max-width: 767.98px) {
  .shop-details {
    padding: 0 0 60px;
  }
  .shop-details:before {
    height: 20px;
  }
}
.shop-details__name {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .shop-details__name {
    font-size: 3.2rem;
  }
}
@media (max-width: 767.98px) {
  .shop-details__name {
    font-size: 2.6rem;
  }
}
.shop-details__grid {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  gap: 16px;
}
.shop-details__image {
  overflow: hidden;
}
@media (min-width: 768px) {
  .shop-details__image {
    width: 320px;
  }
}
@media (max-width: 767.98px) {
  .shop-details__image {
    width: 100%;
    max-width: 320px;
    text-align: center;
    margin: 0 auto;
  }
  .shop-details__image > img {
    margin: 0 auto;
  }
}
.shop-details__image img {
  transform: scale(1.5);
}
@media (min-width: 768px) {
  .shop-details__textarea {
    width: calc(100% - 336px);
  }
}
@media (max-width: 767.98px) {
  .shop-details__textarea {
    width: 100%;
  }
}
.shop-details__textarea p {
  font-size: 1.6rem;
}
.shop-details__sub-title {
  font-size: 2.4rem;
  margin-bottom: 24px;
}
.shop-details__contents {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 40px;
  gap: 32px 24px;
}
@media (max-width: 767.98px) {
  .shop-details__contents {
    flex-wrap: wrap;
  }
}
.shop-details__info {
  width: 100%;
  max-width: 622px;
  display: flex;
  flex-wrap: wrap;
  gap: 0 24px;
}
@media (max-width: 767.98px) {
  .shop-details__info {
    width: 100%;
    max-width: 100%;
    order: 1;
  }
}
.shop-details__info > dt {
  padding: 16px 0 16px 16px;
}
@media (min-width: 768px) {
  .shop-details__info > dt {
    width: 80px;
  }
}
@media (max-width: 767.98px) {
  .shop-details__info > dt {
    width: 72px;
  }
}
.shop-details__info > dd {
  position: relative;
  padding: 16px 16px 16px 0;
}
@media (min-width: 768px) {
  .shop-details__info > dd {
    width: calc(100% - 104px);
  }
}
@media (max-width: 767.98px) {
  .shop-details__info > dd {
    width: calc(100% - 96px);
  }
}
.shop-details__info > dd a {
  word-break: break-all;
}
.shop-details__info > dd:after {
  content: "";
  display: inline-block;
  height: 1px;
  position: absolute;
  bottom: 0;
  background-image: linear-gradient(90deg, rgba(211, 211, 211, 0) 0%, #D3D3D3 5%, #6D6D6D 50%, #D3D3D3 95%, rgba(211, 211, 211, 0) 100%);
}
@media (min-width: 768px) {
  .shop-details__info > dd:after {
    width: calc(100% + 104px);
    left: -104px;
  }
}
@media (max-width: 767.98px) {
  .shop-details__info > dd:after {
    width: calc(100% + 96px);
    left: -96px;
  }
}
.shop-details__gallery {
  width: 100%;
  max-width: 400px;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .shop-details__gallery {
    max-width: 100%;
  }
}
.shop-details__gallery--large .shop-details__gallery--item {
  width: 100%;
  height: auto;
}
.shop-details__gallery--large .shop-details__gallery--item img {
  width: 100%;
}
.shop-details__gallery--slide {
  margin: 10px -5px 0;
}
.shop-details__gallery--slide .shop-details__gallery--item {
  margin: 0 5px;
  height: auto;
}
.shop-details__googlemap {
  width: 100%;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .shop-details__googlemap {
    aspect-ratio: 19/6;
  }
}
@media (max-width: 767.98px) {
  .shop-details__googlemap {
    aspect-ratio: 4/3;
  }
}
.shop-details__googlemap iframe {
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .news {
    margin-top: 115px;
    margin-bottom: 80px;
  }
}
@media (max-width: 767.98px) {
  .news {
    margin-top: 65px;
    margin-bottom: 40px;
  }
}
.news__list {
  padding-left: 0;
}
.news__item {
  position: relative;
  list-style: none;
  padding: 24px;
}
.news__item > a {
  display: block;
  text-decoration: none;
  color: #333333;
}
.news__item > a:hover {
  opacity: 1;
  color: rgb(168, 45, 37);
}
.news__item:after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: linear-gradient(90deg, rgba(211, 211, 211, 0) 0%, #D3D3D3 5%, #6D6D6D 50%, #D3D3D3 95%, rgba(211, 211, 211, 0) 100%);
}
.news__date {
  font-size: 1.2rem;
  line-height: 1;
}
.news__text {
  width: 100%;
  margin-top: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1;
}
@media (max-width: 767.98px) {
  .news__text {
    font-size: 1.6rem;
  }
}
.news__inner {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 960px;
  gap: 32px;
  margin: 0 auto;
}
.news__contents {
  width: 100%;
  flex: 1;
}
@media (min-width: 768px) {
  .news__contents {
    max-width: calc(100% - 280px);
  }
}
.news__contents time {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 10px;
  line-height: 1;
}
.news__contents--title {
  font-size: 2rem;
  margin-bottom: 16px;
}
.news__contents--blockediter * {
  margin-bottom: 1em;
}
.news__contents--blockediter *:last-child {
  margin-bottom: 0;
}
.news__contents--blockediter img {
  max-width: 100%;
  height: auto;
}
.news__contents--thumbnail {
  width: 100%;
}
.news__contents--thumbnail img {
  width: 100%;
  height: auto;
}
.news__sidelist {
  width: 100%;
}
@media (min-width: 768px) {
  .news__sidelist {
    max-width: 248px;
  }
}
.news__sidelist--title {
  position: relative;
  text-align: center;
  padding-bottom: 16px;
}
@media (min-width: 768px) {
  .news__sidelist--title {
    font-size: 2.4rem;
  }
}
@media (max-width: 767.98px) {
  .news__sidelist--title {
    font-size: 2rem;
  }
}
.news__sidelist--title:after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: linear-gradient(90deg, rgba(211, 211, 211, 0) 0%, #D3D3D3 5%, #6D6D6D 50%, #D3D3D3 95%, rgba(211, 211, 211, 0) 100%);
}
.news__sidelist .news__text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  white-space: inherit;
  line-height: 1.5;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .news__sidelist .news__text {
    font-size: 1.4rem;
  }
}
@media (max-width: 767.98px) {
  .news__sidelist .news__text {
    font-size: 1.6rem;
  }
}
.news__pagelink {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
}
@media (min-width: 768px) {
  .news__pagelink {
    margin-top: 56px;
  }
}
@media (max-width: 767.98px) {
  .news__pagelink {
    margin-top: 24px;
  }
}
.news__pagelink a {
  position: relative;
  display: inline-block;
  padding: 8px;
  text-decoration: none;
  color: rgb(51, 51, 51);
}
.news__pagelink a:after {
  content: "";
  display: inline-block;
  width: 11px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.news__pagelink a[rel=prev] {
  padding-left: 24px;
}
.news__pagelink a[rel=prev]:after {
  background-image: url(../images/common/arrow-prev.svg);
  left: 8px;
}
.news__pagelink a[rel=next] {
  padding-right: 24px;
}
.news__pagelink a[rel=next]:after {
  background-image: url(../images/common/arrow-next.svg);
  right: 8px;
}

@media (min-width: 768px) {
  .about-lead {
    margin-top: 115px;
    margin-bottom: 80px;
  }
}
@media (max-width: 767.98px) {
  .about-lead {
    margin-top: 65px;
    margin-bottom: 40px;
  }
}
@media (min-width: 768px) {
  .about-lead__grid {
    display: grid;
    grid-template-columns: calc(55% - 12px) calc(45% - 12px);
    grid-template-rows: auto auto 1fr;
    grid-column-gap: 24px;
    grid-row-gap: 0px;
  }
}
.about-lead__box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 24px;
  gap: 8px;
}
@media (min-width: 768px) {
  .about-lead__box {
    grid-area: 2/1/3/2;
  }
}
.about-lead__title {
  line-height: 1;
}
@media (min-width: 768px) {
  .about-lead__title {
    font-size: 3.2rem;
  }
}
@media (max-width: 767.98px) {
  .about-lead__title {
    font-size: 2.6rem;
  }
}
.about-lead__subtitle {
  margin-top: 8px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .about-lead__subtitle {
    font-size: 1.6rem;
  }
}
@media (max-width: 767.98px) {
  .about-lead__subtitle {
    font-size: 1.4rem;
  }
}
@media (min-width: 768px) {
  .about-lead__textarea {
    grid-area: 3/1/4/2;
  }
}
.about-lead__textarea p + p {
  margin-top: 1em;
}
.about-lead__link {
  margin-top: 24px;
}
.about-lead__link a {
  position: relative;
  display: inline-block;
  height: 20px;
  text-decoration: none;
  padding-right: 20px;
  line-height: 1;
}
.about-lead__link a:hover {
  text-decoration: underline;
}
.about-lead__link a:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-image: url(../images/common/icon-blank.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (min-width: 768px) {
  .about-lead__image {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    grid-area: 1/2/4/3;
  }
}
@media (max-width: 767.98px) {
  .about-lead__image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
  }
}
.about-lead__image .mask-image {
  width: 100%;
  max-width: 442px;
  mask-image: url(../images/common/mask-image.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 100%;
  object-fit: contain;
  aspect-ratio: 221/160;
}
.about-lead__image .mask-image .slick-list {
  aspect-ratio: 221/160;
}
.about-lead__image .mask-image .slick-list .slick-track {
  height: 100%;
}
.about-lead__image .mask-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-lead__image .mask-image img.mask-image-04 {
  object-position: -25px;
}

.about-textarea {
  position: relative;
}
.about-textarea:after {
  content: "";
  display: inline-block;
  width: 45%;
  height: 100%;
  position: absolute;
  top: 0;
  right: -20%;
  background-image: url(../images/about/about-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
}
@media (max-width: 767.98px) {
  .about-textarea:after {
    display: none;
  }
}
@media (min-width: 768px) {
  .about-textarea__inner {
    width: 72%;
    margin-bottom: 80px;
  }
}
@media (max-width: 767.98px) {
  .about-textarea__inner {
    width: 100%;
    margin-bottom: 60px;
  }
}
.about-textarea__inner p + p {
  margin-top: 1em;
}
.about-textarea__title {
  position: relative;
  padding-left: 32px;
}
@media (min-width: 768px) {
  .about-textarea__title {
    font-size: 2.4rem;
    margin-bottom: 24px;
  }
}
@media (max-width: 767.98px) {
  .about-textarea__title {
    font-size: 2rem;
    margin-bottom: 16px;
  }
}
@media (min-width: 768px) {
  .about-textarea__title + .about-textarea__title {
    margin-top: 40px;
  }
}
@media (max-width: 767.98px) {
  .about-textarea__title + .about-textarea__title {
    margin-top: 24px;
  }
}
.about-textarea__title span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  background-image: url(../images/common/icon-number-border.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  font-size: 1.8rem;
  line-height: 1;
  position: absolute;
  top: 8px;
  left: 0;
  padding-bottom: 2px;
  color: rgb(168, 45, 37);
}
@media (min-width: 768px) {
  .about-textarea__title span {
    top: 8px;
  }
}
@media (max-width: 767.98px) {
  .about-textarea__title span {
    top: 5px;
  }
}
@media (min-width: 768px) {
  .about-textarea__item {
    margin-bottom: 80px;
  }
}
@media (max-width: 767.98px) {
  .about-textarea__item {
    margin-bottom: 60px;
  }
}
@media (min-width: 768px) {
  .about-textarea__item section + section {
    margin-top: 40px;
  }
}
@media (max-width: 767.98px) {
  .about-textarea__item section + section {
    margin-top: 32px;
  }
}
.about-textarea__button {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px 32px;
}
@media (min-width: 768px) {
  .about-textarea__button {
    margin-top: 32px;
    margin-bottom: 80px;
  }
}
@media (max-width: 767.98px) {
  .about-textarea__button {
    flex-wrap: wrap;
    margin-top: 16px;
    margin-bottom: 60px;
  }
}
@media (min-width: 768px) {
  .about-textarea__button > li {
    width: 264px;
    height: 70px;
    padding: 5px;
  }
}
@media (max-width: 767.98px) {
  .about-textarea__button > li {
    width: 100%;
    height: 70px;
    padding: 5px;
  }
}
.about-textarea__button--link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 8px 10px;
  background-color: #ffffff;
  text-decoration: none;
  border: 1px solid rgb(168, 45, 37);
  transition: background-color 0.5s ease;
}
.about-textarea__button--link:hover {
  background-color: rgb(168, 45, 37);
  opacity: 1;
}
.about-textarea__button--link:hover p {
  color: #ffffff;
}
.about-textarea__button--link:before, .about-textarea__button--link:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 25px;
  aspect-ratio: 1;
  background: #ffffff;
}
.about-textarea__button--link:before {
  bottom: -5px;
  left: -5px;
  clip-path: polygon(0 100%, 0 0, 100% 100%);
  background: linear-gradient(45deg, #ffffff, #ffffff calc(50% - 1px), #A82D25 calc(50% - 1px));
}
.about-textarea__button--link:after {
  top: -5px;
  right: -5px;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  background: linear-gradient(45deg, #A82D25 calc(50% + 1px), #ffffff calc(50% + 1px), #ffffff);
}
.about-textarea__button--link p {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #A82D25;
  font-weight: 700;
  font-size: 1.6rem;
  text-align: center;
  transition: color 0.5s ease;
}
@media (min-width: 768px) {
  .about-textarea__button--link p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
}

.about-organizer__mark {
  border: 1px solid rgb(51, 51, 51);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px 40px;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .about-organizer__mark {
    padding: 40px;
  }
}
@media (max-width: 767.98px) {
  .about-organizer__mark {
    padding: 24px;
  }
}
.about-organizer__mark img {
  width: 113px;
}
.about-organizer__mark h3 {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .about-organizer__mark h3 {
    font-size: 2.4rem;
  }
}
@media (max-width: 767.98px) {
  .about-organizer__mark h3 {
    text-align: center;
    font-size: 2.2rem;
  }
}
.about-organizer__mark ul {
  list-style: disc;
  padding-left: 1.25em;
}
@media (min-width: 768px) {
  .about-organizer__mark--text {
    flex: 1;
  }
}
@media (max-width: 767.98px) {
  .about-organizer__mark--text {
    width: 100%;
  }
}

.about-details {
  position: relative;
}
@media (min-width: 768px) {
  .about-details {
    padding: 40px 0;
  }
}
@media (max-width: 767.98px) {
  .about-details {
    padding: 24px 0;
  }
}
.about-details:before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background-image: url(../images/bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  transition: opacity 0.5s ease;
}
.about-details__inner {
  width: 100%;
  background-color: #ffffff;
  border-radius: 6px;
}
@media (min-width: 768px) {
  .about-details__inner {
    padding: 40px;
  }
}
@media (max-width: 767.98px) {
  .about-details__inner {
    padding: 16px;
  }
}
@media (min-width: 768px) {
  .about-details__title {
    font-size: 3.2rem;
  }
}
@media (max-width: 767.98px) {
  .about-details__title {
    font-size: 2.6rem;
  }
}
.about-details__contents {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  gap: 32px 24px;
}
@media (max-width: 767.98px) {
  .about-details__contents {
    flex-wrap: wrap;
  }
}
.about-details__contents {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0 24px;
}
.about-details__box {
  width: 100%;
}
@media (min-width: 768px) {
  .about-details__box {
    max-width: 52%;
  }
}
@media (max-width: 767.98px) {
  .about-details__box {
    order: 1;
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .about-details__box h3 {
    font-size: 2.4rem;
    margin-bottom: 24px;
  }
}
@media (max-width: 767.98px) {
  .about-details__box h3 {
    font-size: 2rem;
    margin-bottom: 16px;
    margin-top: 24px;
  }
}
.about-details__info {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0 24px;
  margin-top: 16px;
}
@media (max-width: 767.98px) {
  .about-details__info {
    width: 100%;
    max-width: 100%;
  }
}
.about-details__info > dt {
  padding: 16px 0 16px 16px;
}
@media (min-width: 768px) {
  .about-details__info > dt {
    width: 80px;
  }
}
@media (max-width: 767.98px) {
  .about-details__info > dt {
    width: 72px;
  }
}
.about-details__info > dd {
  position: relative;
  padding: 16px 16px 16px 0;
}
@media (min-width: 768px) {
  .about-details__info > dd {
    width: calc(100% - 104px);
  }
}
@media (max-width: 767.98px) {
  .about-details__info > dd {
    width: calc(100% - 96px);
  }
}
.about-details__info > dd a {
  word-break: break-all;
}
.about-details__info > dd:after {
  content: "";
  display: inline-block;
  height: 1px;
  position: absolute;
  bottom: 0;
  background-image: linear-gradient(90deg, rgba(211, 211, 211, 0) 0%, #D3D3D3 5%, #6D6D6D 50%, #D3D3D3 95%, rgba(211, 211, 211, 0) 100%);
}
@media (min-width: 768px) {
  .about-details__info > dd:after {
    width: calc(100% + 104px);
    left: -104px;
  }
}
@media (max-width: 767.98px) {
  .about-details__info > dd:after {
    width: calc(100% + 96px);
    left: -96px;
  }
}
.about-details__gallery {
  width: 100%;
  max-width: calc(48% - 24px);
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .about-details__gallery {
    max-width: 100%;
  }
}
.about-details__gallery--large .about-details__gallery--item {
  width: 100%;
  height: auto;
}
.about-details__gallery--large .about-details__gallery--item img {
  width: 100%;
}
.about-details__gallery--slide {
  margin: 10px -5px 0;
}
.about-details__gallery--slide .about-details__gallery--item {
  margin: 0 5px;
  height: auto;
}
.about-details__googlemap {
  width: 100%;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .about-details__googlemap {
    aspect-ratio: 19/6;
  }
}
@media (max-width: 767.98px) {
  .about-details__googlemap {
    aspect-ratio: 4/3;
  }
}
.about-details__googlemap iframe {
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .campaign {
    margin-top: 115px;
    margin-bottom: 80px;
  }
}
@media (max-width: 767.98px) {
  .campaign {
    margin-top: 65px;
    margin-bottom: 40px;
  }
}
@media (min-width: 768px) {
  .campaign__grid {
    display: grid;
    grid-template-columns: minmax(425px, 1fr) minmax(275px, 450px);
    grid-template-rows: 1fr;
    grid-column-gap: 24px;
    grid-row-gap: 32px;
  }
}
@media (min-width: 768px) {
  .campaign__image {
    grid-area: 1/2/2/3;
  }
  .campaign__image img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    margin-left: auto;
  }
}
@media (min-width: 768px) {
  .campaign__textarea {
    grid-area: 1/1/2/2;
  }
}
@media (max-width: 767.98px) {
  .campaign__textarea {
    margin-top: 24px;
  }
}
.campaign__textarea--text {
  font-size: 1.6rem;
}
.campaign__notes {
  border: 1px solid #000000;
  padding: 16px;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .campaign__notes {
    max-width: 640px;
    margin-top: 80px;
  }
}
@media (max-width: 767.98px) {
  .campaign__notes {
    margin-top: 24px;
  }
}
.campaign__notes ul li {
  position: relative;
  padding-left: 1em;
}
.campaign__notes ul li:before {
  content: "・";
  position: absolute;
  left: 0;
}

@media (min-width: 768px) {
  .schedule {
    margin-top: 115px;
    margin-bottom: 80px;
  }
}
@media (max-width: 767.98px) {
  .schedule {
    margin-top: 65px;
    margin-bottom: 40px;
  }
}
.schedule .preparation-text {
  text-align: center;
}
@media (min-width: 768px) {
  .schedule .preparation-text {
    font-size: 3.6rem;
  }
}
@media (max-width: 767.98px) {
  .schedule .preparation-text {
    font-size: 2.4rem;
  }
}
.schedule__date {
  position: relative;
  padding-bottom: 24px;
  margin-bottom: 40px;
}
.schedule__date:before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: linear-gradient(90deg, rgba(211, 211, 211, 0) 0%, #D3D3D3 5%, #6D6D6D 50%, #D3D3D3 95%, rgba(211, 211, 211, 0) 100%);
}
.schedule__date--title {
  position: relative;
  margin-bottom: 24px;
}
.schedule__date--title:before {
  content: "";
  display: inline-block;
  width: calc(100% - 132px);
  height: 1px;
  position: absolute;
  top: 50%;
  left: 132px;
  transform: translateY(-50%);
  background-image: linear-gradient(90deg, rgba(211, 211, 211, 0) 0%, #D3D3D3 5%, #6D6D6D 50%, #D3D3D3 95%, rgba(211, 211, 211, 0) 100%);
}
.schedule__date--list {
  display: grid;
  padding: 0 24px;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
}
.schedule__date--list li {
  line-height: 1;
}
.schedule__date--list li a {
  color: var(--color-text);
}
.schedule__date--list li button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  padding: 0;
  font-size: 1.8rem;
  color: var(--color-text);
  transition: color 0.5s ease;
}
.schedule__date--list li button.is-active {
  color: rgb(168, 45, 37);
  text-decoration: underline;
}
.schedule__date--list li button:hover {
  color: rgb(168, 45, 37);
}
.schedule__contents {
  display: none;
}
.schedule__contents.is-active {
  display: block;
}
.schedule__contents--date {
  font-weight: 700;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .schedule__contents--date {
    font-size: 2.4rem;
  }
}
@media (max-width: 767.98px) {
  .schedule__contents--date {
    font-size: 2rem;
  }
}
.schedule__contents--list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (min-width: 768px) {
  .schedule__contents--item {
    width: calc((100% - 72px) / 4);
  }
}
@media (max-width: 767.98px) {
  .schedule__contents--item {
    width: calc((100% - 24px) / 2);
  }
}
@media (max-width: 499.98px) {
  .schedule__contents--item {
    width: 100%;
  }
}
.schedule__contents--image {
  margin-bottom: 8px;
}
.schedule__contents--image img {
  width: 100%;
}
.schedule__contents--shop, .schedule__contents--event {
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .schedule__contents--shop, .schedule__contents--event {
    font-size: 2rem;
  }
}
@media (max-width: 767.98px) {
  .schedule__contents--shop, .schedule__contents--event {
    font-size: 1.6rem;
  }
}
.schedule__contents--time {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .schedule__contents--time {
    font-size: 1.6rem;
  }
}
@media (max-width: 767.98px) {
  .schedule__contents--time {
    font-size: 1.4rem;
  }
}
.schedule__contents--link svg {
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .schedule__contents--link a .event-button-sp {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .schedule__contents--link a .event-button {
    display: none;
  }
}
.schedule__contents--link a:hover {
  opacity: 1;
}
.schedule__contents--link a:hover svg .hover-background {
  width: 100%;
  height: 100%;
  transition: fill 0.5s ease;
  fill: #A82D25;
}
.schedule__contents--link a:hover svg #event-text {
  transition: fill 0.5s ease;
  fill: #ffffff;
}

.craft__shoplist.js-slick-craft {
  width: calc(100% + (100vw - 100%) / 2);
}
.craft__shoplist.js-slick-craft .craft__shoplist--item {
  width: 312px;
  padding-right: 32px;
  height: auto;
}
.craft__shoplist:not(.js-slick-craft) {
  display: grid;
  gap: 40px 32px;
}
@media (min-width: 768px) {
  .craft__shoplist:not(.js-slick-craft) {
    grid-template-columns: repeat(auto-fit, minmax(238px, 1fr));
  }
}
@media (max-width: 767.98px) {
  .craft__shoplist:not(.js-slick-craft) {
    grid-template-columns: repeat(auto-fit, minmax(122px, 1fr));
  }
}
.craft__shoplist--item {
  display: block;
}
.craft__shoplist--item a {
  text-decoration: none;
}
.craft__shoplist--image {
  position: relative;
}
.craft__shoplist--image img {
  border-radius: 6px;
}
.craft__shoplist--number {
  position: absolute;
  top: 4px;
  left: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 26px;
  mask-image: url(../images/common/icon-number.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  font-size: 1.4rem;
  color: #ffffff;
  line-height: 1;
}
.craft__shoplist__textarea {
  margin-top: 8px;
}
.craft__shoplist--area {
  display: flex;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 27px;
  mask-image: url(../images/common/icon-region.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  font-size: 1.4rem;
  color: #ffffff;
  line-height: 1;
}
.craft__shoplist--area.large {
  mask-image: url(../images/common/icon-region-large.svg);
  width: 98px;
}
.craft__shoplist--name {
  font-size: 2rem;
  color: rgb(51, 51, 51);
}
.craft__shoplist--shopname {
  color: rgb(51, 51, 51);
  font-size: 1.6rem;
  word-break: break-all;
}

.ginza .craft__shoplist--number,
.ginza .craft__shoplist--area {
  background-color: rgb(227, 155, 161);
}

.aoyama .craft__shoplist--number,
.aoyama .craft__shoplist--area {
  background-color: rgb(130, 172, 216);
}

.nakameguro .craft__shoplist--number,
.nakameguro .craft__shoplist--area {
  background-color: rgb(142, 196, 171);
}

.new .craft__shoplist--number,
.new .craft__shoplist--area {
  background-color: rgb(174, 157, 202);
}

@media (min-width: 768px) {
  .craft-lead {
    margin-top: 115px;
  }
}
@media (max-width: 767.98px) {
  .craft-lead {
    margin-top: 65px;
  }
}
.craft-lead__grid {
  display: grid;
  grid-template-rows: auto auto 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 0px;
}
@media (min-width: 768px) {
  .craft-lead__grid {
    grid-row-gap: 0px;
    grid-template-columns: minmax(520px, 1fr) minmax(200px, 333px);
  }
}
@media (max-width: 767.98px) {
  .craft-lead__grid {
    grid-row-gap: 16px;
    grid-template-columns: minmax(234px, 1fr) minmax(93px, 120px);
  }
}
@media (min-width: 768px) {
  .craft-lead__title {
    grid-area: 1/1/2/2;
  }
}
@media (max-width: 767.98px) {
  .craft-lead__title {
    grid-area: 1/1/2/3;
  }
}
@media (min-width: 768px) {
  .craft-lead__image {
    display: flex;
    align-items: center;
    grid-area: 1/2/4/3;
  }
}
@media (max-width: 767.98px) {
  .craft-lead__image {
    grid-area: 2/2/3/3;
  }
}
.craft-lead__textarea {
  grid-area: 2/1/3/2;
}
@media (min-width: 768px) {
  .craft-lead__textarea {
    margin-top: 18px;
  }
}
.craft-lead__textarea p + p {
  margin-top: 1em;
}
@media (min-width: 768px) {
  .craft-lead__buttonarea {
    grid-area: 3/1/4/2;
  }
}
@media (max-width: 767.98px) {
  .craft-lead__buttonarea {
    grid-area: 3/1/4/3;
  }
}
.craft-lead__button {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px 32px;
}
@media (min-width: 768px) {
  .craft-lead__button {
    margin-top: 64px;
  }
}
@media (max-width: 767.98px) {
  .craft-lead__button {
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) {
  .craft-lead__button > li {
    width: 264px;
    height: 70px;
    padding: 5px;
  }
}
@media (max-width: 767.98px) {
  .craft-lead__button > li {
    width: 100%;
    height: 70px;
    padding: 5px;
  }
}
.craft-lead__button--link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 8px 10px;
  background-color: #ffffff;
  text-decoration: none;
  border: 1px solid rgb(168, 45, 37);
  transition: background-color 0.5s ease;
}
.craft-lead__button--link:hover {
  background-color: rgb(168, 45, 37);
  opacity: 1;
}
.craft-lead__button--link:hover p {
  color: #ffffff;
}
.craft-lead__button--link:before, .craft-lead__button--link:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 25px;
  aspect-ratio: 1;
  background: #ffffff;
}
.craft-lead__button--link:before {
  bottom: -5px;
  left: -5px;
  clip-path: polygon(0 100%, 0 0, 100% 100%);
  background: linear-gradient(45deg, #ffffff, #ffffff calc(50% - 1px), #A82D25 calc(50% - 1px));
}
.craft-lead__button--link:after {
  top: -5px;
  right: -5px;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  background: linear-gradient(45deg, #A82D25 calc(50% + 1px), #ffffff calc(50% + 1px), #ffffff);
}
.craft-lead__button--link p {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #A82D25;
  font-weight: 700;
  font-size: 1.6rem;
  text-align: center;
  transition: color 0.5s ease;
}
@media (min-width: 768px) {
  .craft-lead__button--link p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
}

.craft-shop__list {
  margin-top: 80px;
  margin-bottom: 80px;
}
.craft-shop__list--tabbox {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767.98px) {
  .craft-shop__list--tabbox {
    justify-content: flex-start;
    overflow-x: auto;
    padding-left: 1px;
  }
}
.craft-shop__list--tabbox > li {
  line-height: 1;
}
@media (min-width: 768px) {
  .craft-shop__list--tabbox > li {
    width: 177px;
    min-width: 177px;
    margin: 0 -1px;
  }
}
@media (max-width: 767.98px) {
  .craft-shop__list--tabbox > li {
    width: 144px;
    min-width: 144px;
    margin: 0 -1px;
  }
}
.craft-shop__list--tabbox button {
  position: relative;
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}
@media (min-width: 768px) {
  .craft-shop__list--tabbox button {
    width: 100%;
    min-height: 48px;
  }
}
@media (max-width: 767.98px) {
  .craft-shop__list--tabbox button {
    width: 100%;
    min-height: 40px;
  }
  .craft-shop__list--tabbox button svg {
    width: 100%;
    height: auto;
  }
}
.craft-shop__list--tabbox button span {
  display: block;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.craft-shop__list--tabbox button .background-path {
  transition: fill 0.5s ease;
  fill: transparent;
}
.craft-shop__list--tabbox button[data-tab=ginza] span {
  color: rgb(227, 155, 161);
}
.craft-shop__list--tabbox button[data-tab=ginza] .border-path {
  fill: rgb(227, 155, 161);
}
.craft-shop__list--tabbox button[data-tab=aoyama] span {
  color: rgb(130, 172, 216);
}
.craft-shop__list--tabbox button[data-tab=aoyama] .border-path {
  fill: rgb(130, 172, 216);
}
.craft-shop__list--tabbox button[data-tab=nakameguro] span {
  color: rgb(142, 196, 171);
}
.craft-shop__list--tabbox button[data-tab=nakameguro] .border-path {
  fill: rgb(142, 196, 171);
}
.craft-shop__list--tabbox button[data-tab=new] span {
  color: rgb(174, 157, 202);
}
.craft-shop__list--tabbox button[data-tab=new] .border-path {
  fill: rgb(174, 157, 202);
}
.craft-shop__list--tabbox button:hover span, .craft-shop__list--tabbox button.is-active span {
  color: #ffffff;
}
.craft-shop__list--tabbox button:hover[data-tab=ginza] .background-path, .craft-shop__list--tabbox button.is-active[data-tab=ginza] .background-path {
  fill: rgb(227, 155, 161);
}
.craft-shop__list--tabbox button:hover[data-tab=aoyama] .background-path, .craft-shop__list--tabbox button.is-active[data-tab=aoyama] .background-path {
  fill: rgb(130, 172, 216);
}
.craft-shop__list--tabbox button:hover[data-tab=nakameguro] .background-path, .craft-shop__list--tabbox button.is-active[data-tab=nakameguro] .background-path {
  fill: rgb(142, 196, 171);
}
.craft-shop__list--tabbox button:hover[data-tab=new] .background-path, .craft-shop__list--tabbox button.is-active[data-tab=new] .background-path {
  fill: rgb(174, 157, 202);
}
.craft-shop__box {
  display: none;
  width: 100%;
  max-width: 1200px;
  margin: -2px auto 0;
  padding: 32px;
}
.craft-shop__box.is-active {
  display: block;
}
.craft-shop__box.ginza {
  border: 1px solid rgb(227, 155, 161);
}
.craft-shop__box.aoyama {
  border: 1px solid rgb(130, 172, 216);
}
.craft-shop__box.nakameguro {
  border: 1px solid rgb(142, 196, 171);
}
.craft-shop__box.new {
  border: 1px solid rgb(174, 157, 202);
}

.js-fixed-banner {
  position: fixed;
  bottom: -1px;
  right: -1px;
  width: 100%;
  display: block;
  opacity: 0;
  z-index: -1;
  transition: opacity 1s ease;
}
.js-fixed-banner.is-show {
  opacity: 1;
  z-index: 50;
}
@media (min-width: 768px) {
  .js-fixed-banner {
    max-width: 384px;
  }
}
@media (max-width: 767.98px) {
  .js-fixed-banner {
    right: 0;
    bottom: 0;
    max-width: 375px;
  }
}
.js-fixed-banner a {
  transition: opacity 0.5s ease;
}
.js-fixed-banner a:hover {
  opacity: 0.9;
}

.js-fixed-banner-inner {
  position: relative;
}

.js-fixed-close {
  width: 24px;
  height: 24px;
  position: inherit;
  top: -10px;
  left: calc(100% - 40px);
  background-color: transparent;
  border: none;
  padding: 0;
}
.js-fixed-close svg {
  width: 100%;
}

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