@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

button {
  outline: none;
  border: none;
}

em {
  font-style: normal;
}

ul,
li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

html,
body {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  background: #fff;
  color: #000;
  overflow-x: hidden;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  font-weight: 500;
}

html {
  scroll-behavior: smooth;
}

footer {
  margin-top: 0 !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.yakuhan {
  letter-spacing: -0.6em;
}

.nowrap {
  white-space: nowrap;
}

@media screen and (min-width: 767px) {
  .br-sp {
    display: none;
  }
  .br-pc {
    display: inline;
  }
}
@media screen and (max-width: 766px) {
  .br-sp {
    display: inline;
  }
  .br-pc {
    display: none;
  }
}
.atf {
  position: relative;
  padding: 10px;
  box-sizing: border-box;
  width: 100%;
  aspect-ratio: 3560/1760;
  background: url(../img/main_pc.jpg) center/cover no-repeat;
  overflow: hidden;
  position: relative;
  max-height: 900px;
}
.atf__inner {
  border: 5px #fff solid;
  width: 100%;
  height: 100%;
  position: relative;
}

.header {
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.atf .header {
  align-items: start;
  position: absolute;
  top: 0;
  left: 0;
}

.header-logo {
  border: 5px solid #fff;
  border-right: 10px solid #fff;
  border-bottom: 10px solid #fff;
}
.header-logo img {
  height: 100px;
  width: auto;
  display: block;
}

.header-logo-text {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #1a1a1a;
}

.main-visual__copy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.main-visual__copy img {
  width: clamp(200px, 20.33vw, 400px);
  height: auto;
  display: block;
}

@media screen and (max-width: 766px) {
  .atf {
    padding: 5px;
    background: url(../img/main_sp.jpg) center/cover no-repeat;
    aspect-ratio: 750/1200;
  }
  .atf__inner {
    border-width: 4px;
  }
  .atf .header {
    padding: 0;
  }
  .header {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
  }
  .header-logo {
    border: 2px solid #fff;
    border-right: 6px solid #fff;
    border-bottom: 6px solid #fff;
  }
  .header-logo img {
    height: 60px;
    width: auto;
    display: block;
  }
  .main-visual__copy img {
    width: 226px;
    height: auto;
    display: block;
  }
}
.hamburger-btn {
  width: 120px;
  height: 120px;
  background: #fff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: absolute;
  right: -5px;
  top: -5px;
  z-index: 1100;
  transition: background 0.2s;
  flex-shrink: 0;
}
.hamburger-btn:hover {
  background: #f5f5f5;
}
.hamburger-btn .bar {
  display: block;
  width: 40px;
  height: 3px;
  background: #000;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.hamburger-btn.is-open .bar:nth-child(1) {
  transform: translateY(13px) rotate(45deg);
}
.hamburger-btn.is-open .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger-btn.is-open .bar:nth-child(3) {
  transform: translateY(-13px) rotate(-45deg);
}
@media screen and (max-width: 766px) {
  .hamburger-btn {
    width: 70px;
    height: 70px;
    gap: 7px;
    right: -4px;
    top: -4px;
  }
  .hamburger-btn .bar {
    width: 25px;
    height: 2px;
  }
  .hamburger-btn.is-open {
    position: fixed;
    background-color: #000;
  }
  .hamburger-btn.is-open .bar {
    background-color: #fff;
  }
  .hamburger-btn.is-open .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .hamburger-btn.is-open .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .hamburger-btn.is-open .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

.nav-dropdown {
  position: absolute;
  right: 0;
  top: 0px;
  width: 400px;
  padding: 80px 60px;
  background: #fff;
  z-index: 1050;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.nav-dropdown.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-dropdown .nav-list {
  list-style: none;
}
.nav-dropdown .nav-list li {
  font-size: 20px;
  display: flex;
  align-items: center;
  line-height: 1;
}
.nav-dropdown .nav-list li::before {
  content: "";
  display: block;
  background-color: #000;
  height: 2px;
  width: 20px;
  margin-right: 30px;
}
.nav-dropdown .nav-list li:last-child {
  border-bottom: none;
}
.nav-dropdown .nav-list li a {
  display: block;
  padding: 20px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.2s;
}
.nav-dropdown .nav-list li a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 766px) {
  .nav-dropdown {
    width: calc(100% + 18px);
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    box-sizing: border-box;
    padding: 40px 30px;
    background: #000 url(../img/bg_brick.png);
    background-repeat: repeat-x;
    background-position: left bottom 5px;
    background-size: 26px auto;
  }
  .nav-dropdown .nav-list li {
    font-size: 16px;
    border-bottom: 1px #4b4b4b solid;
  }
  .nav-dropdown .nav-list li::before {
    display: none;
  }
  .nav-dropdown .nav-list li a {
    padding: 30px 0;
    color: #fff;
    width: 100%;
    text-align: center;
  }
  .nav-dropdown .nav-list li::before {
    width: 15px;
    margin-right: 20px;
  }
}

.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1040;
}
.menu-overlay.is-open {
  display: block;
}

.carousel-section {
  max-width: 1500px;
  padding: 50px 0;
  margin-inline: auto;
}
@media screen and (max-width: 766px) {
  .carousel-section {
    padding: 32px 20px 48px;
  }
}

.banner-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.banner-card__image {
  width: 100%;
  aspect-ratio: 390/250;
  overflow: hidden;
  margin-bottom: 12px;
}
.banner-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.banner-card:hover .banner-card__image img {
  transform: scale(1.04);
}
.banner-card__text {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
  text-align: left;
}

.slick-prev,
.slick-next {
  width: 72px;
  height: 72px;
  background: url(../img/ico_link.svg) center/contain no-repeat !important;
  transition: all 0.2s;
}
.slick-prev::before,
.slick-next::before {
  display: none;
}

.slick-prev {
  left: -125px;
  transform: scaleX(-1);
}

.slick-next {
  right: -125px;
}

.slick-carousel {
  margin: 0 125px;
}

.slick-slide {
  margin: 0 20px 15px;
}

.slick-list {
  margin: 0 -20px;
}

.slick-dots li {
  width: auto;
  margin: 0 5px;
}

.slick-dots li button {
  width: 50px;
  height: 5px;
}

.slick-dots li button:before {
  width: 50px;
  height: 2px;
  content: "";
  background-color: #000;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.2s;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  height: 5px;
}

.slick-disabled {
  opacity: 0.2;
  pointer-events: none;
}

@media screen and (max-width: 766px) {
  .slick-list {
    margin-bottom: 15px;
  }
  .slick-carousel {
    margin: 0 0px;
  }
  .slick-prev,
  .slick-next {
    width: 30px;
    height: 30px;
    top: auto;
    bottom: -5px;
    z-index: 9999;
    transform: none;
  }
  .slick-prev {
    left: 0;
    transform: scaleX(-1);
  }
  .slick-next {
    right: 0;
    order: 3;
  }
  .slick-carousel {
    margin: 0 0;
  }
  .slick-dots li button {
    width: 100%;
    min-width: 30px;
  }
  .slick-dots li button:before {
    width: 100%;
  }
  .slick-dots {
    display: flex;
    position: relative;
    justify-content: center;
    width: auto;
    bottom: auto;
  }
}
.intro {
  display: flex;
  overflow: hidden;
  border-top: 5px #000 solid;
  justify-content: center;
}
.intro-img {
  flex: 3;
  line-height: 1;
}
.intro-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.intro-copy {
  flex: 2;
  padding: 80px 40px 200px;
  background: #fff url(../img/bg_brick.png);
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: 55px auto;
  border-bottom: 5px #000 solid;
}
.intro-copy__inner {
  margin: 0 auto;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 2em;
  font-family: "Zen Antique", serif;
}
.intro-copy p {
  margin-left: 1em;
}
@media screen and (max-width: 1023px) {
  .intro {
    border-top: none;
    flex-direction: column;
  }
  .intro-img {
    width: 100%;
    height: auto;
  }
  .intro-copy {
    padding: 30px 30px 85px;
    background-size: 26px auto;
    border: 4px #000 solid;
  }
  .intro-copy__inner {
    writing-mode: horizontal-tb;
    text-orientation: initial;
    line-height: 1.8em;
    font-size: clamp(16px, 3vw, 20px);
  }
  .intro-copy p {
    margin-left: 0;
  }
  .intro-copy p + p {
    margin-top: 1em;
  }
}

.features {
  overflow: hidden;
  margin: 10px;
  border: 5px #000 solid;
}
.features-block {
  position: relative;
  padding: 5vw calc(5vw - 10px);
}
.features-block::before {
  content: "";
  display: block;
  position: absolute;
  max-width: 300px;
  max-height: 300px;
  width: calc(600 / 3600 * 100vw);
  height: calc(600 / 3600 * 100vw);
  background: url(../img/logo_mark.svg) center/contain no-repeat;
  z-index: 1;
  top: 0;
  transform-origin: center;
}
.features-block .features-block__h {
  position: absolute;
  font-family: "Zen Antique", serif;
  letter-spacing: -0.15em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 13vw;
  font-weight: normal;
  line-height: 1;
  padding-bottom: 0.5em;
  z-index: 1;
}
.features-block .features-block__h_subject {
  display: block;
  font-size: 3.4vw;
  line-height: 1;
  letter-spacing: -0.15em;
}
.features-block .features-block__img img {
  max-width: 100%;
  height: auto;
}
.features-block .features-block__copy {
  position: absolute;
  z-index: 1;
}
.features-block .features-block__copy p {
  font-size: clamp(16px, 1.2vw, 24px);
  line-height: 1.6;
  font-family: "Zen Antique", serif;
}
.features-block .features-block__copy p span {
  background: #fff;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0.12em 0.4em;
  display: inline;
}
.features-block .features-block__copy p + p {
  margin-top: 0.8em;
}
.features-block:nth-of-type(1)::before {
  right: calc(72 / 3600 * 100vw);
  top: calc(94 / 3600 * 100vw);
  transform: rotate(29deg);
}
.features-block:nth-of-type(1) .features-block__h {
  top: 0vw;
  left: 0;
}
.features-block:nth-of-type(1) .features-block__h_subject {
  letter-spacing: -0.2em;
}
.features-block:nth-of-type(1) .features-block__copy {
  top: calc(1280 / 3600 * 100vw);
  left: 7.5vw;
}
.features-block:nth-of-type(2)::before {
  right: calc(275 / 3600 * 100vw);
  top: calc(1160 / 3600 * 100vw);
  transform: rotate(-20deg);
}
.features-block:nth-of-type(2) .features-block__h {
  top: -0.75vw;
  left: calc(2130 / 3600 * 100vw);
}
.features-block:nth-of-type(2) .features-block__copy {
  top: calc(1440 / 3600 * 100vw);
  left: 7.5vw;
}
.features-block:nth-of-type(3)::before {
  left: 50%;
  top: calc(1250 / 3600 * 100vw);
  transform: rotate(0deg) translateX(-50%);
}
.features-block:nth-of-type(3) .features-block__h {
  top: -0.75vw;
  left: calc(1050 / 3600 * 100vw);
  text-align: center;
}
.features-block:nth-of-type(3) .features-block__copy {
  top: calc(1440 / 3600 * 100vw);
  left: 7.5vw;
}
.features .slick-carousel {
  margin: 0 0 0 10vw;
}
.features .slick-carousel .slick-list {
  margin: 0;
}
.features .slick-carousel .slick-item img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 1500px;
}
.features .slick-carousel .slick-dots {
  text-align: left;
  margin-left: 0px;
  bottom: -35px;
}
.features .slick-carousel .slick-slide {
  margin: 0;
}
@media screen and (max-width: 766px) {
  .features {
    margin: calc(10 / 750 * 100vw);
    border-width: 4px;
    padding-bottom: calc(70 / 750 * 100vw);
  }
  .features-block {
    padding: calc(14 / 750 * 100vw);
  }
  .features-block::before {
    width: calc(200 / 750 * 100vw);
    height: calc(200 / 750 * 100vw);
    margin-right: calc(-10 / 750 * 100vw);
  }
  .features-block .features-block__h {
    letter-spacing: -0.15em;
    font-size: max(120px, 32vw);
  }
  .features-block .features-block__h_subject {
    font-size: max(26px, 6.93vw);
  }
  .features-block .features-block__copy {
    position: static;
  }
  .features-block .features-block__copy p {
    font-size: clamp(16px, 3vw, 24px);
    line-height: 1.4;
    letter-spacing: -0.04em;
  }
  .features-block .features-block__copy p span {
    padding: 0;
    background-color: transparent;
    line-height: 1;
    -webkit-box-decoration-break: slice;
    box-decoration-break: slice;
  }
  .features-block:nth-of-type(1) .features-block__body .features-block__h {
    position: relative;
    top: auto;
    bottom: 0;
    margin-top: calc(-180 / 750 * 100vw);
    margin-left: calc(-30 / 750 * 100vw);
    text-align: center;
    line-height: 0.95;
  }
  .features-block:nth-of-type(1) .features-block__body {
    display: flex;
    justify-content: left;
  }
  .features-block:nth-of-type(1) .features-block__copy {
    flex: 1 1 auto;
    margin-top: 10px;
    margin-left: calc(40 / 750 * 100vw);
  }
  .features-block:nth-of-type(2) {
    margin-top: calc(53 / 750 * 100vw);
  }
  .features-block:nth-of-type(2)::before {
    top: calc(395 / 750 * 100vw);
    right: calc(60 / 750 * 100vw);
  }
  .features-block:nth-of-type(2) .features-block__h {
    margin-top: -0.18em;
    right: 0;
  }
  .features-block:nth-of-type(2) .features-block__copy {
    margin-top: calc(30 / 750 * 100vw);
    margin-inline: calc(12 / 750 * 100vw);
  }
  .features-block:nth-of-type(3) {
    margin-top: calc(90 / 750 * 100vw);
  }
  .features-block:nth-of-type(3)::before {
    top: calc(730 / 750 * 100vw);
    left: auto;
    right: calc(12 / 750 * 100vw);
    transform: rotate(0deg);
  }
  .features-block:nth-of-type(3) .features-block__h {
    margin-top: calc(100 / 750 * 100vw);
    left: calc(10 / 750 * 100vw);
    text-align: center;
  }
  .features-block:nth-of-type(3) .features-block__h_subject {
    text-indent: 0.4em;
  }
  .features-block:nth-of-type(3) .features-block__copy {
    margin-left: calc(40 / 750 * 100vw);
    margin-top: calc(30 / 750 * 100vw);
  }
  .features .slick-carousel {
    margin: calc(60 / 750 * 100vw) 0 0 0;
    width: 100%;
  }
  .features .slick-carousel .slick-dots {
    justify-content: flex-end;
    margin-top: 0;
    margin-right: 0px;
    bottom: auto;
  }
}

.seal-section {
  background: url(../img/daiana_sticker.png) left calc(210 / 3600 * 100vw)/45% auto no-repeat, url(../img/bg_lemon.jpg) right bottom/60% auto no-repeat;
  padding-top: calc(210 / 3600 * 100vw);
  margin: 0 auto;
  font-weight: normal;
  font-family: "Zen Antique", serif;
  position: relative;
}
.seal-section::before, .seal-section::after {
  content: "";
  display: block;
  background-color: #000;
  width: calc(100% - 20px);
  height: 2px;
  position: absolute;
  left: 10px;
}
.seal-section::before {
  top: -8px;
}
.seal-section::after {
  bottom: 0px;
}
.seal-section__inner {
  margin-left: 50%;
  margin-right: 20px;
}
.seal-section__catch {
  font-size: min(40 / 1800 * 100vw, 40px);
  letter-spacing: -0.1em;
  margin-bottom: 4px;
}
.seal-section__title {
  font-size: min(180 / 1800 * 100vw, 180px);
  line-height: 1;
  letter-spacing: -0.08em;
  margin-bottom: 0.1em;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  font-weight: normal;
}
.seal-section__title-small {
  font-size: min(100 / 1800 * 100vw, 100px);
  letter-spacing: -0.2em;
  margin-left: 0em;
}
.seal-section__price {
  font-size: min(160 / 1800 * 100vw, 160px);
  margin-top: -0.18em;
  letter-spacing: -0.09em;
  display: flex;
  align-items: flex-end;
  gap: 0;
  line-height: 1;
  margin-bottom: 10px;
}
.seal-section__price-unit {
  letter-spacing: 0em;
  font-size: min(40 / 1800 * 100vw, 40px);
  padding-bottom: 6px;
  margin-right: 4px;
}
.seal-section__price-yen {
  font-size: min(100 / 1800 * 100vw, 100px);
  padding-bottom: 6px;
}
.seal-section__price-tax {
  font-size: min(20 / 1800 * 100vw, 20px);
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 600;
  line-height: 1;
  padding-bottom: 0.5em;
  margin-left: 1em;
  letter-spacing: 0em;
}
.seal-section__price-tax em {
  font-style: normal;
  font-size: min(36 / 1800 * 100vw, 36px);
}
.seal-section__notes {
  list-style: none;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 600;
  display: flex;
  flex-wrap: wrap;
  gap: 0 16px;
  font-size: 14px;
  margin-bottom: 2em;
}
@media screen and (max-width: 766px) {
  .seal-section {
    background: url(../img/daiana_sticker_sp.png) left calc(120 / 750 * 100vw)/100% auto no-repeat, url(../img/bg_lemon_sp.jpg) right bottom/100% auto no-repeat;
    padding-top: calc(210 / 3600 * 100vw);
  }
  .seal-section::before, .seal-section::after {
    content: "";
    display: block;
    background-color: #000;
    width: calc(100% - 10px);
    height: 2px;
    position: absolute;
    left: 5px;
  }
  .seal-section::before {
    top: 0px;
  }
  .seal-section::after {
    bottom: 0px;
  }
  .seal-section__inner {
    margin-inline: calc(40 / 750 * 100vw);
    padding-top: calc(780 / 750 * 100vw);
    position: relative;
  }
  .seal-section__header {
    position: absolute;
    top: 0;
  }
  .seal-section__catch {
    font-size: calc(20 / 375 * 100vw);
    letter-spacing: -0.1em;
    margin-bottom: -0.2em;
  }
  .seal-section__title {
    font-size: calc(100 / 375 * 100vw);
    line-height: 1;
    letter-spacing: -0.08em;
    margin-bottom: 0.1em;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
  }
  .seal-section__title-small {
    font-size: calc(46 / 375 * 100vw);
    letter-spacing: -0.2em;
    margin-left: 0em;
    margin-top: -0.15em;
    display: block;
  }
  .seal-section__price {
    justify-content: center;
    font-size: min(80 / 375 * 100vw, 80px);
    margin-top: -0.18em;
    letter-spacing: -0.09em;
    margin-bottom: 10px;
  }
  .seal-section__price-unit {
    font-size: min(30 / 375 * 100vw, 30px);
  }
  .seal-section__price-yen {
    font-size: min(46 / 375 * 100vw, 46px);
    padding-bottom: 6px;
  }
  .seal-section__price-tax {
    font-size: 12px;
  }
  .seal-section__price-tax em {
    font-style: normal;
    font-size: 20px;
  }
  .seal-section__notes {
    justify-content: center;
  }
}

.seal-box {
  margin: 3px;
  border: 2px solid #000;
}
.seal-box__wrapper {
  border: 5px #000 solid;
  max-width: 630px;
}
.seal-box dd {
  padding: 15px 20px;
  margin: 5px;
}
.seal-box__label {
  display: flex;
  align-items: center;
  font-size: 24px;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #fff;
  margin-top: -1em;
  margin-left: 0.5em;
  padding: 0 0.5em;
}
.seal-box__inner {
  padding: 16px 20px 20px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 600;
}
.seal-box__drinks {
  font-size: 18px;
}
.seal-box__price-row {
  background-color: #000;
  color: #fff;
  text-align: center;
}
.seal-box__price-p {
  font-weight: 500;
}
.seal-box__price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  font-size: min(3.75vw, 60px);
}
.seal-box__price-p {
  font-size: clamp(14px, 1.5vw, 18px);
}
.seal-box__price-before, .seal-box__price-after {
  display: flex;
  align-items: flex-end;
  line-height: 1;
  font-weight: 900;
}
.seal-box__price-after {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  font-size: min(80 / 1800 * 100vw, 80px);
}
.seal-box__price-after .seal-box__price-p {
  text-align: left;
  grid-column: 1/-1;
}
.seal-box__yen {
  font-size: 0.6em;
  padding-bottom: 0.1em;
}
.seal-box__tax {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 1;
  margin-left: 0.5em;
  margin-bottom: 0em;
  text-align: left;
}
.seal-box__tax em {
  font-size: 1.5em;
}
.seal-box__arrow img {
  width: 1em;
  height: auto;
  display: block;
  transform: translateY(-20%);
}
@media screen and (min-width: 1024px) {
  .seal-box__tax em {
    font-size: 1.8em;
  }
  .seal-box__tax em .seal-box__yen {
    font-size: 0.75em;
  }
}
@media screen and (max-width: 766px) {
  .seal-box__label {
    margin-inline: auto;
    font-size: min(20 / 375 * 100vw, 20px);
  }
  .seal-box dd {
    padding: 10px 20px;
  }
  .seal-box__drinks {
    font-size: 16px;
    text-align: center;
  }
  .seal-box__price-row {
    padding: 10px 10px 15px !important;
  }
  .seal-box__price {
    display: block;
    font-size: min(44 / 375 * 100vw, 44px);
  }
  .seal-box__price-p {
    margin-top: 1em;
    font-size: 16px;
  }
  .seal-box__price-before, .seal-box__price-after {
    /* display: flex;
    align-items: flex-end; */
    justify-content: center;
    line-height: 1;
    font-weight: 900;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
  .seal-box__price-after {
    font-size: min(60 / 375 * 100vw, 60px);
  }
  .seal-box__yen {
    font-size: 0.5em;
    padding-bottom: 0.1em;
  }
  .seal-box__tax {
    line-height: 1;
    margin-left: 0.2em;
  }
  .seal-box__tax em {
    font-size: 1.6em;
  }
  .seal-box__arrow img {
    margin: 10px auto 0;
    width: 30px;
    height: auto;
    display: block;
    transform: rotate(90deg);
    margin-inline: auto;
  }
}

.everyday {
  width: 50%;
  padding-inline: 20px;
  min-height: 38vw;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.everyday__header {
  font-family: "Zen Antique", serif;
  line-height: 1;
  letter-spacing: -0.2em;
  font-weight: normal;
}
.everyday__title {
  font-size: min(140 / 1800 * 100vw, 140px);
  font-weight: normal;
}
.everyday__subtitle {
  font-size: clamp(30px, 2vw, 40px);
  margin-top: 1em;
  line-height: 1.2;
  letter-spacing: -0.1em;
}
.everyday__copy {
  margin-top: 1.5em;
  max-width: 25em;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 600;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.5;
  padding-bottom: 6em;
}
@media screen and (max-width: 766px) {
  .everyday {
    padding: calc(200 / 750 * 100vw) 20px calc(100 / 750 * 100vw);
    width: inherit;
    margin-right: calc(130 / 750 * 100vw);
  }
  .everyday__title {
    font-size: min(66 / 375 * 100vw, 66px);
    font-weight: normal;
  }
  .everyday__subtitle {
    font-size: min(26 / 375 * 100vw, 26px);
    margin-top: 1em;
    line-height: 1.2;
  }
  .everyday__copy {
    padding-bottom: 0;
  }
}

.news-section {
  display: flex;
  align-items: flex-start;
  padding: calc(250 / 3600 * 100vw) 10vw calc(250 / 3600 * 100vw);
  box-sizing: border-box;
  position: relative;
}
.news-section::before {
  content: "";
  display: block;
  background-color: #000;
  width: calc(100% - 20px);
  height: 5px;
  position: absolute;
  left: 10px;
}
.news-section::before {
  top: 2px;
}
.news-section__heading {
  font-size: 36px;
  flex: 0 0 5vw;
  font-weight: 900;
  line-height: 1.2;
  writing-mode: vertical-lr;
  flex-shrink: 0;
}
@media screen and (max-width: 766px) {
  .news-section__heading {
    writing-mode: horizontal-tb;
    padding-top: 0;
  }
}
.news-section__body {
  flex: 1;
  min-width: 0;
}
.news-section__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  letter-spacing: 0.05em;
  padding-top: 4px;
  transition: opacity 0.2s;
}
.news-section__more:hover {
  opacity: 0.6;
}
.news-section__more-icon {
  width: 16px;
  height: 16px;
  display: block;
}
@media screen and (max-width: 766px) {
  .news-section {
    flex-direction: column;
    gap: 24px;
    padding: calc(115 / 750 * 100vw) 20px 52px;
  }
  .news-section::before, .news-section::after {
    width: calc(100% - 10px);
    left: 5px;
  }
  .news-section__body {
    flex: 1;
    width: 100%;
    min-width: 0;
  }
}

.btn-arrow {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000;
}
.btn-arrow::before {
  content: "";
  width: 1.5em;
  height: 1em;
  display: inline-block;
  background-image: url(../img/ico_link.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0px center;
  transition: all 0.2s;
}
.btn-arrow:hover::before {
  background-position: 0.2em center;
}

.news-list {
  list-style: none;
  border-top: 1px solid #000;
  margin-bottom: 20px;
}
.news-list__item {
  border-bottom: 1px solid #000;
}
.news-list__link {
  display: flex;
  align-items: baseline;
  gap: 32px;
  padding: 30px 30px;
  text-decoration: none;
  color: #000;
  transition: background 0.15s, opacity 0.15s;
}
.news-list__link:hover {
  background: #000;
  color: #fff;
}
@media screen and (max-width: 766px) {
  .news-list__link {
    flex-direction: column;
    gap: 6px;
    padding: 16px 8px;
  }
}
.news-list__date {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  min-width: 90px;
}
.news-list__title {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.store-section {
  overflow: hidden;
}
.store-section__header {
  margin-bottom: 40px;
}
.store-section__header .link__more {
  display: none;
}
.store-section__heading {
  font-size: 50px;
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 766px) {
  .store-section {
    padding-bottom: 30px;
  }
  .store-section__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0 20px;
  }
  .store-section__header .link__more {
    display: block;
  }
  .store-section__heading {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: 0em;
    text-align: left;
  }
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 3px solid #000;
  border-left: 3px solid #000;
  margin-left: -3px;
  margin-right: -3px;
}
@media screen and (max-width: 766px) {
  .store-grid {
    grid-template-columns: 1fr;
  }
}

.store-card {
  padding: 28px 40px 32px;
  border-right: 3px solid #000;
  border-bottom: 3px solid #000;
}
.store-card__link {
  color: #000;
  text-decoration: none;
}
.store-card__link h3::after {
  content: "";
  display: block;
  width: 1.6em;
  height: 1.6em;
  background: url(../img/ico_link_circle.svg) no-repeat center center/contain;
  opacity: 0;
  transition: all 0.2s;
  position: relative;
  left: -10px;
}
.store-card__link:hover h3::after {
  opacity: 1;
  left: 20px;
}
.store-card__name {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: min(36 / 1800 * 100vw, 36px);
  margin-bottom: 20px;
}
.store-card__name::before {
  content: "";
  display: block;
  width: 2em;
  height: 2em;
  background: url(../img/logo_mark.svg) no-repeat center center/contain;
}
.store-card__actions {
  display: flex;
  align-items: center;
  gap: calc(40 / 1800 * 100vw);
}
@media screen and (max-width: 1023px) {
  .store-card__actions {
    display: block;
  }
}
.store-card__tel {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 600;
  color: #000;
  text-decoration: none;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.store-card__tel::before {
  content: "";
  display: block;
  width: 25px;
  height: 40px;
  background: url(../img/ico_tel.svg) no-repeat center center/contain;
}
@media screen and (min-width: 767px) {
  .store-card__tel {
    pointer-events: none;
  }
}
.store-card__btn {
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.5em 0.5em;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: min(20 / 1800 * 100vw, 20px);
  font-weight: 600;
  color: #fff;
  background: #000;
  border: 5px solid #000;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.store-card__btn::before {
  content: "";
  display: block;
  width: 16px;
  height: 12px;
  background: url(../img/ico_blank.svg) no-repeat center center/contain;
}
.store-card__btn:hover {
  color: #000;
  background: #fff;
}
.store-card__btn:hover::before {
  background: url(../img/ico_blank_black.svg) no-repeat center center/contain;
}
.store-card__btn.reserve {
  display: none;
}
@media screen and (max-width: 1023px) {
  .store-card__btn {
    font-size: 20px;
    width: 100%;
    margin-top: 20px;
  }
}
@media screen and (max-width: 766px) {
  .store-card__btn {
    display: none;
  }
  .store-card__btn.reserve {
    display: flex;
  }
  .store-card__btn.reserve::before {
    width: 20px;
    height: 20px;
    background: url(../img/ico_net.svg) no-repeat center center/contain;
  }
  .store-card__btn.reserve:hover {
    color: #fff;
    background: #000;
  }
}
@media screen and (max-width: 766px) {
  .store-card {
    padding: 25px 20px 30px;
  }
  .store-card:last-of-type {
    border-bottom: none;
  }
  .store-card.empty {
    display: none;
  }
  .store-card__heading {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 40px;
  }
  .store-card__name {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .store-card__tel {
    font-size: 30px;
    justify-content: center;
  }
  .store-card__actions {
    display: block;
    text-align: center;
  }
}

.header-breadcrumb {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  margin-right: 16px;
}

.breadcrumb {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0;
  font-size: clamp(10px, 1.2vw, 14px);
  color: #000000;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
}
.breadcrumb__item:not(:last-child)::after {
  content: "›";
  margin: 0 1.5em;
  color: #000;
}
.breadcrumb__item a {
  color: #000000;
  text-decoration: none;
  transition: color 0.15s;
}
.breadcrumb__item a:hover {
  color: #000;
}
.breadcrumb__item[aria-current=page] {
  color: #000;
}
@media screen and (max-width: 766px) {
  .breadcrumb {
    margin-top: 1em;
  }
}

.article-main {
  margin-top: 0px;
  padding: 48px 0 80px;
}
@media screen and (max-width: 766px) {
  .article-main {
    padding: 25px 0 80px;
  }
}

.article-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: content-box;
}
@media screen and (max-width: 766px) {
  .article-container {
    padding: 0 20px;
  }
}

.article-header {
  margin-bottom: 9%;
}

.article-category {
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 0.2em;
  display: flex;
  align-items: center;
}
.article-category::before {
  content: "";
  height: 2px;
  width: 30px;
  background-color: #000;
  margin-right: 10px;
}
@media screen and (max-width: 766px) {
  .article-category {
    margin-bottom: 0.5em;
  }
  .article-category::before {
    display: none;
  }
}

.article-h1 {
  font-size: clamp(24px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 8px;
}

.article-date {
  display: block;
  font-size: 14px;
  margin-bottom: 32px;
}

.article-figure {
  margin: max(60px, 6.8%) 0 max(60px, 7.8%);
}
.article-figure--full {
  width: 100%;
}
.article-figure img {
  width: 100%;
  height: auto;
  display: block;
}
.article-figure__placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.2);
  font-size: 13px;
  letter-spacing: 0.15em;
}

.article-body > * + * {
  margin-top: 24px;
}

.article-h2 {
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 900;
  line-height: 1.4;
  margin: max(60px, 6.8%) auto max(50px, 5.8%);
}

.article-h3 {
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: bold;
  padding-bottom: 0.4em;
  border-bottom: 2px solid #000000;
  position: relative;
  margin: max(50px, 5.8%) auto max(40px, 5.4%);
}
.article-h3::after {
  content: "";
  width: 50px;
  height: 4px;
  display: block;
  background-color: #000;
  position: absolute;
  bottom: -3px;
  left: 0;
}

.article-h4 {
  font-size: clamp(20px, 2vw, 26px);
  padding: 0.25em 1em;
  border-left: 3px solid #000;
  position: relative;
  margin: max(40px, 6.3%) auto max(30px, 4.8%);
  font-weight: bold;
}
.article-h4::before {
  content: "";
  width: 2px;
  height: 100%;
  display: block;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 2px;
}

.article-h5 {
  font-size: clamp(18px, 1.5vw, 22px);
  margin: max(30px, 4.8%) auto;
}

.article-text {
  font-size: 16px;
  line-height: 1.7;
}
.article-text + .article-text {
  margin-top: 1em;
}

.article-note {
  font-size: 14px;
  text-indent: -1em;
  margin-left: 1em;
}
.article-note + .article-note {
  margin-top: 1em;
}

.article-link {
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  margin: 1em 0;
  text-decoration: none;
  color: #000;
}
.article-link:hover {
  opacity: 0.7;
  text-decoration: none;
}
.article-link::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: url(../img/ico_link.svg) no-repeat center center/contain;
  margin-left: 0.3em;
}
.article-link.article-link-back {
  flex-direction: row-reverse;
}
.article-link.article-link-back::after {
  transform: scaleX(-1);
  margin-left: 0;
  margin-right: 0.3em;
}
.article-link[target]::after {
  background: url(../img/ico_blank_black.svg) no-repeat center center/contain;
}
.article-link--inline {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #bf0000;
  display: inline-flex;
  margin: 0;
  margin-inline: 0em 0.25em;
}

.article-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
@media screen and (max-width: 766px) {
  .article-cols {
    grid-template-columns: 1fr;
  }
}
.article-cols__figure {
  margin: 0;
}
.article-cols__figure img {
  width: 100%;
  height: auto;
  display: block;
}
.article-cols__figure .article-figure__placeholder {
  aspect-ratio: 4/3;
}

.article-gallery {
  display: grid;
  gap: min(6.3vw, 70px);
  margin: max(5.4%, 30px) auto;
}
.article-gallery--2col {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 766px) {
  .article-gallery--2col {
    grid-template-columns: 1fr;
  }
}
.article-gallery--3col {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 766px) {
  .article-gallery--3col {
    grid-template-columns: repeat(2, 1fr);
  }
}
.article-gallery__item {
  margin: 0;
}
.article-gallery__item img {
  width: 100%;
  height: auto;
  display: block;
}
.article-gallery__item .article-figure__placeholder {
  aspect-ratio: 4/3;
}
.article-gallery__caption {
  font-size: clamp(16px, 1.2vw, 18px);
  margin-top: 0.5em;
}

.article-list {
  padding-left: 0;
  list-style: none;
  font-size: 16px;
}
.article-list li + li {
  margin-top: 1em;
}
.article-list--bullet li {
  display: flex;
  gap: 10px;
}
.article-list--bullet li::before {
  content: "■";
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 5px;
  color: #000;
}
.article-list--number {
  counter-reset: article-ol;
}
.article-list--number li {
  display: flex;
  gap: 10px;
  counter-increment: article-ol;
}
.article-list--number li::before {
  content: counter(article-ol) ".";
  flex-shrink: 0;
  min-width: 18px;
  font-size: 20px;
  margin-top: -3px;
}

.article-table {
  width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 766px) {
  .article-table {
    min-width: 1000px;
  }
}
.article-table {
  border-collapse: collapse;
}
.article-table__wrapper {
  overflow-x: auto;
  margin-right: -20px;
}
.article-table th,
.article-table td {
  padding: 14px 28px;
  border-bottom: 1px solid #000000;
  vertical-align: top;
  text-align: left;
  font-size: 16px;
  vertical-align: middle;
}
.article-table th {
  font-weight: 700;
  font-size: 18px;
  font-weight: 18px;
  min-width: 240px;
}
@media screen and (max-width: 766px) {
  .article-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.btn-outline {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  padding: 1em 1.1875em;
  margin: min(6.5vw, 30px) 0;
  color: #000;
  background: #fff;
  border: 2px solid #000;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover {
  background: #000;
  color: #fff;
}
.btn-outline:hover::after {
  background: url(../img/ico_link_white.svg) no-repeat center center/contain;
}
.btn-outline:hover[target]::after {
  background: url(../img/ico_blank.svg) no-repeat center center/contain;
}

.article-cta {
  margin: max(5.4%, 30px) auto;
  text-align: center;
}

.btn-large {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  padding: 1em 1.1875em;
  width: 100%;
  min-height: 90px;
  max-width: 600px;
  font-size: 22px;
  color: #fff;
  background: #000;
  border: 2px solid #000;
  text-decoration: none;
  position: relative;
  transition: background 0.2s, color 0.2s;
}
.btn-large:hover {
  background: #fff;
  color: #000;
}
.btn-large:hover::after {
  background: url(../img/ico_link.svg) no-repeat center center/contain;
}
.btn-large::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url(../img/ico_link_white.svg) no-repeat center center/contain;
  margin-left: 0.3em;
  position: absolute;
  right: 1.5em;
}
@media screen and (max-width: 766px) {
  .btn-large {
    justify-content: flex-start;
    min-height: 70px;
  }
  .btn-large::after {
    width: 14px;
    height: 14px;
    right: 20px;
  }
}

.article-back {
  text-align: center;
  display: flex;
  justify-content: center;
}
.article-back .btn-outline {
  margin-top: 0;
}/*# sourceMappingURL=daianalp.css.map */