@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
:root {
  --color-black: #231815;
  --color-gold: #dc8c04;
  --color-subtle-gold: #f7f3e8;
  --color-yellow: #f6d641;
  --font-gothic: "Noto Sans JP", "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --font-ten-mincho: "ten-mincho", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  --font-noto-mincho: "Noto Serif JP", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  --fz-base: 15px;
  --fz-pc-base: 14px;
  --fz-medium: 13px;
  --fz-small: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--color-black);
  font-size: var(--fz-base);
  font-family: var(--font-gothic);
  animation: fadeIn 1s ease 0s 1 normal;
  -webkit-animation: fadeIn 1s ease 0s 1 normal;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  body {
    font-size: var(--fz-pc-base);
  }
}

img {
  max-width: 100%;
  display: block;
}

html {
  scroll-behavior: smooth;
}

ul,
li,
h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

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

p {
  margin: 0;
  line-height: 1.6;
  font-feature-settings: "palt";
}

a {
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  opacity: 0.7;
}

.pc-only {
  display: none;
}

@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
  .sp-only {
    display: none;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fade-in {
  opacity: 0;
  transition-duration: 500ms;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 50px);
}

.fade-in-down {
  transform: translate(0, -50px);
}

.fade-in-left {
  transform: translate(-50px, 0);
}

.fade-in-right {
  transform: translate(50px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

.fv-fade-in {
  opacity: 0;
  transition: 1s;
}

.fv-fade-in.scroll-in {
  opacity: 1;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(67px, 17.8vw, 78px);
  font-family: "garamond-premier-pro", serif;
  font-weight: 700;
  line-height: 1;
}
.section-title span {
  font-size: var(--fz-small);
  font-family: var(--font-noto-mincho);
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .section-title span {
    font-size: var(--fz-base);
  }
}

.section-subtitle {
  font-size: clamp(40px, 10.6vw, 46px);
  font-family: "garamond-premier-pro", serif;
  font-weight: 700;
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 98;
  letter-spacing: 0.04em;
  /* ハンバーガー */
}
.header__hamburger {
  display: block;
  position: absolute;
  top: 20px;
  right: 25px;
  z-index: 2;
  height: 23px;
  z-index: 99;
  cursor: pointer;
}
.header__hamburger span {
  display: block;
  position: relative;
  top: 10px;
  width: 25px;
  height: 4px;
  background: #fff;
  transition: 0.3s;
}
.header__hamburger span::before, .header__hamburger span::after {
  content: "";
  display: block;
  position: absolute;
  height: 4px;
  background: #fff;
  transition: 0.3s;
}
.header__hamburger span::before {
  bottom: 10px;
  width: 37px;
}
.header__hamburger span::after {
  top: 10px;
  width: 12px;
}
.header {
  /* ハンバーガー 閉じる */
}
.header__hamburger.is-open span {
  background: transparent;
}
.header__hamburger.is-open span::before, .header__hamburger.is-open span::after {
  height: 3px;
  background: var(--color-black);
}
.header__hamburger.is-open span::before {
  bottom: 0;
  width: 37px;
  transform: rotate(30deg);
}
.header__hamburger.is-open span::after {
  top: 0;
  width: 37px;
  transform: rotate(150deg);
}
.header__menu {
  display: none;
  width: 89.3%;
  margin-left: auto;
  background: #fff;
  padding: 65px 0 34px 34px;
  border-bottom-left-radius: 32px;
}
.header__lists {
  margin-bottom: 45px;
}
.header__list a {
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid #f2bc00;
  padding: 12px 2px;
  line-height: 1;
  color: var(--color-black);
  font-size: 17px;
  font-weight: 500;
}
.header__list a span {
  font-size: 12px;
}
.header__list.--concept a {
  border-bottom: none;
}
.header__sublist a {
  display: block;
  border-bottom: none;
}
.header__sublist a::before {
  content: "―";
  margin-right: 2px;
  font-weight: 500;
}
.header__col {
  display: flex;
  align-items: flex-end;
  gap: 28px;
  margin-bottom: 27px;
}
.header__logo {
  width: 68.5%;
  max-width: 203px;
}
.header__x {
  width: 12.4%;
  max-width: 37px;
}
.header__brand {
  width: 132px;
  margin-left: 60px;
}
.header__hop {
  display: block;
  width: 82px;
  margin: 0 auto;
}
.header__sapporo {
  display: block;
  margin-top: 10px;
  padding-top: 10px;
  padding-right: 40px;
  border-top: 1px solid var(--color-black);
}

.fv {
  position: relative;
}
.fv__sapporo {
  position: absolute;
  top: 13px;
  left: 15px;
  width: 164px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .fv__sapporo {
    top: 24px;
    left: auto;
    right: 24px;
  }
}
.fv__block {
  padding: 34px 8% 88px;
}
@media screen and (min-width: 768px) {
  .fv__block {
    position: absolute;
    top: 44%;
    left: 42%;
    transform: translate(0, -50%);
    padding: 0;
    text-align: left;
    z-index: 1;
  }
}
.fv__title {
  max-width: 314px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .fv__title {
    width: 42vw;
    max-width: 540px;
    margin: 0;
  }
}
.fv__text {
  margin-top: 25px;
  text-align: center;
  font-family: var(--font-ten-mincho);
  font-size: 19px;
}
.fv__text-img {
  width: 36.7vw;
  max-width: 683px;
  margin-left: 11%;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-slide img {
  transform: scale(1.03);
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  display: flex;
  flex-direction: column;
  width: auto;
  left: auto;
  right: 20px;
  bottom: 20px;
  gap: 10px;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  border: 1px solid var(--color-black);
  background: #fff;
  width: 10px;
  height: 10px;
  opacity: 1;
  transition: 0.5s;
}

.swiper-pagination-bullet-active {
  height: 25px !important;
  background: var(--color-gold) !important;
  border-radius: 99rem;
  border: 0 !important;
}

.nav {
  background: var(--color-subtle-gold);
}
.nav__lists {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1280px;
  margin: 0 auto;
}
.nav__list {
  position: relative;
}
.nav__list a {
  display: block;
  padding: 10px;
  color: var(--color-black);
  font-size: 24px;
  font-family: var(--font-noto-mincho);
  text-align: center;
  line-height: 1;
  transition: 0.3s;
}
.nav__list a span {
  display: block;
  margin-top: 2px;
  font-size: var(--fz-base);
}
.nav__list a:hover {
  color: #fff;
  background: var(--color-gold);
  opacity: 1;
}
.nav__list + .nav__list {
  border-left: 1px solid var(--color-black);
}
.nav__sublists {
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 35px;
  background: var(--color-gold);
  transform: translateY(100%);
  z-index: 3;
}
.nav__list.--concept:hover .nav__sublists {
  visibility: visible;
  opacity: 1;
}
.nav__sublist a {
  display: block;
  margin-bottom: 10px;
  padding: 0 0 0 23.4%;
  color: #fff;
  font-size: var(--fz-base);
  text-align: left;
}
.nav__sublist a::before {
  content: "―";
  margin-right: 2px;
}

.news__inner {
  position: relative;
  padding: 0 28px;
  margin-top: 70px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .news__inner {
    max-width: 748px;
    margin: 107px auto 180px;
    padding-left: 40px;
    padding-right: 0;
  }
}
.news__img {
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
}
@media screen and (min-width: 768px) {
  .news__img {
    top: -10px;
    left: 40px;
    transform: translateX(-50%);
    width: 140px;
  }
}
.news__block {
  padding: 56px 38px 10px;
  background: radial-gradient(#f5ecd3, #ead9a5);
}
@media screen and (min-width: 768px) {
  .news__block {
    padding: 50px 38px 10px;
  }
}
@media screen and (min-width: 768px) {
  .news__lists {
    width: 55%;
    min-width: 418px;
    margin: 0 auto;
  }
}
.news__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 15px;
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .news__list {
    flex-direction: row;
    gap: 28px;
    margin-bottom: 10px;
  }
}
.news__list a {
  color: var(--color-black);
}
.news__list time {
  display: block;
}
@media screen and (min-width: 768px) {
  .news__list time {
    display: inline;
  }
}
.news__list-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.news__pdf-icon {
  width: 16px;
}
.news__more {
  display: flex;
  justify-content: flex-end;
}
.news__more a {
  font-family: var(--font-noto-mincho);
  color: var(--color-black);
}
.news__more a::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border-top: 8px solid transparent;
  border-right: 8px solid var(--color-black);
  border-bottom: 8px solid transparent;
  border-left: 8px solid transparent;
  transform: translateY(50%) rotate(-45deg);
}
.news .section-title {
  position: relative;
  flex-direction: column;
  align-items: flex-end;
  width: 190px;
  margin: 0 auto 10px;
  z-index: 2;
  gap: 0;
}
@media screen and (min-width: 768px) {
  .news .section-title {
    width: auto;
    flex-direction: row;
    align-items: center;
    margin-left: 116px;
    gap: 12px;
  }
}

.concept .section-title {
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 0;
  width: 235px;
  margin: 0 auto 16px;
}
@media screen and (min-width: 768px) {
  .concept .section-title {
    width: 266px;
    margin-right: auto;
    margin-left: 0;
  }
}
.concept .section-title span {
  margin-bottom: -15px;
  margin-right: 3px;
}
.concept__inner {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .concept__inner {
    flex-direction: column-reverse;
    margin-bottom: 87px;
  }
}
.concept__lead {
  position: relative;
  padding: 30px;
}
@media screen and (min-width: 768px) {
  .concept__lead {
    max-width: 1038px;
    margin: 0 auto;
    padding: 30px 30px 20px;
  }
}
.concept__lead-text {
  max-width: 325px;
  margin: 0 auto 50px;
}
@media screen and (min-width: 768px) {
  .concept__lead-text {
    position: absolute;
    top: 127px;
    right: 6vw;
    width: clamp(115px, 15vw, 193px);
  }
}
@media screen and (min-width: 1130px) {
  .concept__lead-text {
    top: 37px;
    right: 0;
  }
}
.concept__text {
  margin-bottom: 40px;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .concept__text {
    width: 76%;
    margin-bottom: 16px;
  }
}
.concept__note {
  font-size: var(--fz-medium);
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .concept__note {
    width: 76%;
    font-size: var(--fz-small);
  }
}
.concept__block {
  position: relative;
  padding: 30px;
}
@media screen and (min-width: 768px) {
  .concept__block {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: content-box;
  }
}
.concept__grid {
  display: grid;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .concept__grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: flex-start;
  }
}
@media screen and (min-width: 1010px) {
  .concept__grid {
    align-items: stretch;
  }
}
.concept__quality-lead {
  margin-bottom: 36px;
}
.concept__quality-lead-text {
  text-align: justify;
}
.concept .section-subtitle {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 5px;
  font-size: 40px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .concept .section-subtitle {
    margin-bottom: 10px;
    font-size: 46px;
  }
}
.concept .section-subtitle::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: var(--color-black);
}
@media screen and (min-width: 1010px) {
  .concept .section-subtitle::after {
    min-width: 450px;
  }
}
@media screen and (min-width: 768px) {
  .concept .section-subtitle.-quality {
    width: 91.4%;
  }
}
.concept .section-subtitle span {
  font-size: var(--fz-pc-base);
}
.concept__subleading {
  margin-bottom: 15px;
  font-family: var(--font-ten-mincho);
  font-size: 21px;
  line-height: 1.5;
  font-feature-settings: "palt";
}
.concept__sublead-text {
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .concept__sublead-text.-quality {
    width: 90%;
  }
}
.concept__list {
  padding: 28px;
  background: var(--color-subtle-gold);
}
@media screen and (min-width: 768px) {
  .concept__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}
@media screen and (min-width: 768px) {
  .concept__list.-taru {
    margin-top: 64px;
  }
}
@media screen and (min-width: 1010px) {
  .concept__list {
    flex-direction: row;
  }
}
@media screen and (min-width: 1010px) {
  .concept__img {
    min-width: 233px;
  }
}
.concept__img img {
  width: 100%;
}
.concept__head {
  margin-bottom: 14px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--color-black);
  font-size: 22px;
  font-weight: 400;
  font-family: var(--font-ten-mincho);
  line-height: 1;
}
.concept__body {
  margin-bottom: 14px;
  font-size: var(--fz-medium);
  line-height: 1.6;
  font-feature-settings: "palt";
  text-align: justify;
}
.concept__row {
  display: flex;
  flex-direction: column;
  max-width: 1060px;
  margin: 38px auto 50px;
}
@media screen and (min-width: 768px) {
  .concept__row {
    flex-direction: row-reverse;
    margin-top: 122px;
    margin-bottom: 70px;
    padding: 0 30px;
    gap: 48px;
    box-sizing: content-box;
  }
}
@media screen and (min-width: 768px) {
  .concept__pairing-img {
    min-width: 357px;
  }
}
@media screen and (min-width: 1010px) {
  .concept__pairing-img {
    min-width: 506px;
  }
}
.concept__story {
  padding: 52px 27px 68px;
  background: linear-gradient(#ead9a5, #ffffff);
}
@media screen and (min-width: 1050px) {
  .concept__story {
    display: flex;
    gap: 53px;
    padding: 70px;
    max-width: 1060px;
    margin: 0 auto;
  }
}
.concept__story-logo {
  width: 90%;
  max-width: 295px;
  margin: 52px auto 48px;
}
@media screen and (min-width: 1050px) {
  .concept__story-logo {
    width: 360px;
    max-width: auto;
    margin: 70px auto 0;
  }
}
.concept__story-lists {
  margin-left: 18px;
  border-left: 2px solid var(--color-gold);
}
@media screen and (min-width: 1050px) {
  .concept__story-lists {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.concept__story-list {
  position: relative;
  padding: 15px 15px 5px 15px;
  font-size: var(--fz-pc-base);
  font-family: var(--font-noto-mincho);
  letter-spacing: 0.06em;
}
@media screen and (min-width: 1050px) {
  .concept__story-list {
    font-size: var(--fz-medium);
    padding: 15px 15px 5px 20px;
  }
}
.concept__story-list::before {
  position: absolute;
  top: 35px;
  left: -1px;
  transform: translate(-50%, -50%);
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-black);
}
.concept__story-list::after {
  position: absolute;
  top: 35px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: var(--color-black);
}
@media screen and (min-width: 1050px) {
  .concept__story-list::after {
    width: 79%;
  }
}
@media screen and (min-width: 1050px) {
  .concept__story-list:nth-child(1)::after, .concept__story-list:nth-child(4)::after {
    width: 66%;
  }
}
.concept__story-list time {
  display: block;
  margin-bottom: 4px;
}
.concept__story-text {
  line-height: 1.4;
}
.concept__story-shop {
  position: relative;
  width: 140px;
}
@media screen and (min-width: 1050px) {
  .concept__story-shop {
    position: absolute;
    top: 11px;
    right: 11px;
  }
}
.concept__story-shop.--hitose {
  width: 144px;
}

@media screen and (min-width: 768px) {
  #pairing .concept__block {
    padding: 0;
  }
}
#pairing .section-subtitle {
  flex-direction: column-reverse;
  gap: 0;
  align-items: flex-end;
  margin-top: 10px;
  font-size: 39px;
}
@media screen and (min-width: 768px) {
  #pairing .section-subtitle {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-top: 0;
    font-size: 46px;
  }
}
#pairing .concept__subleading {
  font-feature-settings: unset;
}

@media screen and (min-width: 768px) {
  #story .section-subtitle::after {
    width: 283px;
    min-width: auto;
  }
}

.shops {
  background: var(--color-subtle-gold);
  padding: 72px 0;
}
@media screen and (min-width: 768px) {
  .shops {
    padding: 200px 0 167px;
  }
}
.shops__inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 28px;
}
@media screen and (min-width: 768px) {
  .shops__inner {
    padding: 0 40px;
  }
}
.shops .section-title {
  position: relative;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .shops .section-title {
    margin-bottom: 72px;
  }
}
.shops .section-title::after {
  content: "";
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 111px;
  height: 2;
  background: var(--color-black);
}
@media screen and (min-width: 768px) {
  .shops .section-title::after {
    display: none;
  }
}
.shops__block + .shops__block {
  margin-top: 72px;
}
@media screen and (min-width: 768px) {
  .shops__block + .shops__block {
    margin-top: 135px;
  }
}
.shops__title {
  position: relative;
  border-bottom: 1px solid var(--color-black);
  margin-bottom: 20px;
  padding-bottom: 12px;
  font-family: var(--font-noto-mincho);
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .shops__title {
    margin-bottom: 36px;
  }
}
.shops__title h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 29px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .shops__title h3 {
    flex-direction: row;
    gap: 15px;
    font-size: 34px;
  }
}
.shops__title span {
  font-size: 19px;
}
@media screen and (min-width: 768px) {
  .shops__title span {
    font-size: 23px;
  }
}
.shops__logo {
  margin: 0 auto 30px;
  padding-left: 15px;
}
@media screen and (min-width: 768px) {
  .shops__logo {
    position: absolute;
    top: 0;
    margin: 0;
    padding-left: 0;
    transform: translateY(-40%);
  }
}
.shops__logo.-chitose {
  width: 269px;
}
@media screen and (min-width: 768px) {
  .shops__logo.-chitose {
    right: 15px;
    width: 172px;
  }
}
.shops__logo.-sapporo {
  width: 262px;
}
@media screen and (min-width: 768px) {
  .shops__logo.-sapporo {
    right: 10px;
    width: 168px;
  }
}
.shops__row {
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .shops__row {
    display: flex;
    gap: 7.1%;
  }
}
.shops__shop-img {
  position: relative;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .shops__shop-img {
    width: 51%;
    margin-bottom: 0;
  }
}
.shops__shop-bg {
  width: 100%;
}
.shops__shop-cup {
  width: 195px;
  margin: -40px auto 0;
  transform: translateX(18%);
}
@media screen and (min-width: 768px) {
  .shops__shop-cup {
    position: absolute;
    bottom: -30px;
    left: -43px;
    width: 151px;
    margin: 0;
  }
}
@media screen and (min-width: 768px) {
  .shops__shop-cup.-sapporo {
    bottom: 5px;
  }
}
@media screen and (min-width: 768px) {
  .shops__detail {
    width: 41%;
  }
}
.shops__copy {
  margin-bottom: 30px;
  font-family: var(--font-ten-mincho);
  font-size: 21px;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .shops__copy {
    text-align: left;
  }
}
.shops__info-group {
  display: flex;
  gap: 34px;
  border-top: 1px solid var(--color-black);
  padding: 18px 4px;
}
@media screen and (min-width: 768px) {
  .shops__info-group {
    gap: 27px;
  }
}
.shops__info-head {
  min-width: 47px;
  font-family: var(--font-noto-mincho);
  font-size: var(--fz-pc-base);
  font-weight: 600;
}
.shops__info-body {
  font-size: var(--fz-pc-base);
  line-height: 1.4;
}
.shops__info-body a {
  color: var(--color-black);
}
.shops__info-map {
  display: inline-block;
  margin-left: 4px;
  width: 13px;
}
.shops__info-note {
  text-indent: -1em;
  padding-left: 1em;
}
.shops__menu {
  padding: 35px 28px 0;
  background: radial-gradient(#f5ecd3, #ead9a5);
}
@media screen and (min-width: 768px) {
  .shops__menu {
    padding: 20px 20px 0 20px;
  }
}
.shops__heading {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .shops__heading {
    text-align: left;
  }
}
.shops__heading span {
  display: inline-block;
  margin: 0 auto 30px;
  padding: 2px 45px;
  border-bottom: 2px solid var(--color-black);
  font-size: 30px;
  font-family: "garamond-premier-pro", serif;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .shops__heading span {
    padding: 0 4px;
    margin-right: auto;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 768px) {
  .shops__lists {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 53px;
    max-width: 695px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .shops__lists.-sapporo {
    grid-template-columns: repeat(1, 1fr);
    max-width: 454px;
  }
}
.shops__list {
  margin-bottom: 67px;
}
@media screen and (min-width: 768px) {
  .shops__list {
    margin-bottom: 25px;
  }
}
.shops__list img {
  width: 68.8%;
  margin: 0 auto 10px;
}
@media screen and (min-width: 768px) {
  .shops__list img {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .shops__list.-row {
    display: flex;
    align-items: center;
    gap: 17px;
  }
}
@media screen and (min-width: 768px) {
  .shops__list.-row img {
    width: 170px;
  }
}
.shops__list-title {
  width: 68.8%;
  margin: 0 auto;
  font-size: var(--fz-pc-base);
  font-weight: 600;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .shops__list-title {
    width: 100%;
  }
}
.shops__list-price {
  width: 68.8%;
  margin: 0 auto 10px;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .shops__list-price {
    width: 100%;
  }
}
.shops__list-yen {
  font-size: var(--fz-pc-base);
  font-weight: 700;
}
.shops__list-taxin {
  font-size: var(--fz-pc-base);
  font-weight: 400;
}
.shops__list-text {
  font-size: var(--fz-medium);
  line-height: 1.5;
  text-align: justify;
}
.shops__text {
  margin-bottom: 13px;
  font-size: var(--fz-pc-base);
  text-align: center;
}
.shops__text-news {
  color: var(--color-gold);
  font-weight: 600;
}
.shops__text-underline {
  padding: 0 6px;
  background: linear-gradient(transparent 60%, #f6d641 60%);
}
.shops__note {
  font-size: var(--fz-small);
}
@media screen and (min-width: 768px) {
  .shops__note {
    text-align: center;
  }
}
.shops__btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 202px;
  height: 70px;
  margin: 0 auto;
  transform: translateY(38%);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--color-black);
  color: var(--color-black);
  font-size: var(--fz-pc-base);
}
.shops__pdf {
  width: 17px;
}
.shops__arrow {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%);
  width: 27px;
  height: 27px;
}
.shops__pay {
  width: 75.2%;
  min-width: 282px;
  margin: 75px auto 60px;
}
@media screen and (min-width: 768px) {
  .shops__pay {
    width: 100%;
    max-width: 720px;
    margin: 100px auto 132px;
  }
}
.shops__pay-ja {
  width: 256px;
  margin: 0 auto 10px;
}
@media screen and (min-width: 768px) {
  .shops__pay-ja {
    width: 474px;
  }
}
.shops__pay-en {
  background: var(--color-gold);
  padding: 10px;
  color: #fff;
  font-size: 31px;
  font-family: "garamond-premier-pro", serif;
  text-align: center;
  line-height: 1;
  letter-spacing: -0.03em;
}
@media screen and (min-width: 768px) {
  .shops__pay-en {
    padding: 15px;
    font-size: 35px;
  }
}
.shops__person {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 28px;
}
@media screen and (min-width: 768px) {
  .shops__person {
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .shops__person-row {
    display: flex;
    gap: 26px;
  }
}
.shops__person-row + .shops__person-row {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .shops__person-row + .shops__person-row {
    margin-top: 40px;
  }
}
.shops__person-img {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .shops__person-img {
    width: 43.6%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .shops__person-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 53%;
  }
}
.shops__person-text {
  margin-bottom: 20px;
  text-align: justify;
}
.shops__person-name {
  font-size: 18px;
  font-family: var(--font-ten-mincho);
  line-height: 1.5;
}

.brand {
  position: relative;
}
@media screen and (min-width: 768px) {
  .brand__img img {
    min-height: 485px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.brand__copy {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 129px;
}
@media screen and (min-width: 768px) {
  .brand__copy {
    top: -14px;
    right: auto;
    left: 80%;
    width: clamp(129px, 15.1vw, 194px);
  }
}
@media screen and (min-width: 1070px) {
  .brand__copy {
    left: 74%;
  }
}
@media screen and (min-width: 768px) {
  .brand__inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1060px;
    margin: 0 auto;
    color: #fff;
  }
}
.brand__group {
  padding: 36px 28px 28px;
  background: radial-gradient(#f5ecd3, #ead9a5);
}
@media screen and (min-width: 768px) {
  .brand__group {
    width: 66%;
    padding: 30px 30px 0 30px;
    background: transparent;
  }
}
.brand__heading {
  width: 312px;
  margin-bottom: 17px;
}
@media screen and (min-width: 768px) {
  .brand__heading {
    width: clamp(470px, 47.1vw, 604px);
  }
}
.brand__lead {
  margin-bottom: 14px;
  font-family: var(--font-ten-mincho);
  font-size: 21px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .brand__lead {
    margin-bottom: 20px;
    font-size: 26px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1070px) {
  .brand__lead {
    margin-bottom: 35px;
  }
}
.brand__lead span {
  text-wrap: nowrap;
}
.brand__text {
  margin-bottom: 40px;
  font-size: var(--fz-pc-base);
  font-weight: 600;
  font-family: var(--font-noto-mincho);
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .brand__text {
    margin-bottom: 27px;
  }
}
.brand__note {
  font-size: var(--fz-medium);
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .brand__note {
    width: 81%;
    font-size: var(--fz-small);
  }
}
.brand__btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 34px;
  background-image: url(../images/bg_btn_sp.webp);
  background-repeat: no-repeat;
  background-size: 100% auto;
  color: #fff;
  font-size: 22px;
  font-family: var(--font-noto-mincho);
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .brand__btn {
    width: clamp(390px, 39vw, 500px);
    min-height: clamp(37px, 3.9vw, 50px);
    margin-top: 28px;
    margin-left: 30px;
    padding: 10px 18px;
    background-image: url(../images/bg_btn_pc.webp);
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1;
  }
}
.brand__btn span {
  font-family: var(--font-noto-mincho);
  font-size: 15px;
  color: #fff;
}
.brand__btn span::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border-top: 8px solid transparent;
  border-right: 8px solid #fff;
  border-bottom: 8px solid transparent;
  border-left: 8px solid transparent;
  transform: translateY(50%) rotate(-45deg);
}

.footer {
  padding: 88px 0 24px;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 158px 0 40px;
  }
}
.footer__row {
  display: flex;
  flex-direction: column;
  padding: 0 43px 40px;
  gap: 17px;
}
@media screen and (min-width: 768px) {
  .footer__row {
    flex-direction: row;
    justify-content: center;
    padding: 0 43px 123px;
    gap: 178px;
  }
}
@media screen and (min-width: 768px) {
  .footer__flex {
    display: flex;
  }
}
@media screen and (min-width: 768px) {
  .footer__block + .footer__block {
    border-left: 1px solid var(--color-black);
  }
}
.footer__block.-logo {
  display: flex;
  align-items: flex-end;
  gap: 30px;
  padding-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .footer__block.-logo {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding-bottom: 0;
    padding-right: 50px;
  }
}
.footer__lists {
  padding: 0 20px;
}
.footer__list a {
  display: block;
  margin-bottom: 17px;
  color: var(--color-black);
  font-size: var(--fz-medium);
  line-height: 1;
}
.footer__sublist a {
  display: block;
}
.footer__sublist a::before {
  content: "―";
  margin-right: 2px;
  font-weight: 500;
}
.footer__logo {
  width: 71%;
  max-width: 203px;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    width: 203px;
  }
}
.footer__x {
  width: 13%;
  max-width: 37px;
}
@media screen and (min-width: 768px) {
  .footer__x {
    width: 37px;
  }
}
.footer__brand {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .footer__brand {
    flex-direction: column;
  }
}
.footer__hop {
  display: block;
  width: 83px;
  min-width: 83px;
  padding-right: 32px;
  border-right: 1px solid var(--color-black);
  box-sizing: content-box;
}
@media screen and (min-width: 768px) {
  .footer__hop {
    padding-right: 0;
    padding-bottom: 11px;
    border-right: 0;
  }
}
.footer__sapporo {
  display: block;
  width: 115px;
  min-width: 115px;
  padding-left: 32px;
  box-sizing: content-box;
}
@media screen and (min-width: 768px) {
  .footer__sapporo {
    padding: 11px;
    border-top: 1px solid var(--color-black);
  }
}
.footer__law {
  width: 93%;
  max-width: 1060px;
  margin: 0 auto;
  font-family: var(--font-noto-mincho);
}
@media screen and (min-width: 768px) {
  .footer__law {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .footer__stop {
    width: 434px;
  }
}
.footer__group {
  margin-top: 40px;
  text-align: center;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .footer__group {
    margin-top: 0;
    text-align: left;
  }
}
.footer__copyright {
  margin-bottom: 13px;
  font-size: 11px;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-bottom: 5px;
    font-size: 9px;
  }
}
.footer__small {
  display: block;
  color: var(--color-black);
  font-size: 8px;
}

.pagetop {
  position: fixed;
  bottom: 24px;
  right: 18px;
  width: 34px;
  height: 34px;
}
@media screen and (min-width: 768px) {
  .pagetop {
    width: 45px;
    height: 45px;
  }
}

.article-header__sapporo {
  margin-bottom: 25px;
  padding: 15px;
}
@media screen and (min-width: 768px) {
  .article-header__sapporo {
    margin-bottom: 0;
    padding: 23px 23px 10px 23px;
  }
}
.article-header__sapporo img {
  width: 165px;
}
@media screen and (min-width: 768px) {
  .article-header__sapporo img {
    margin-left: auto;
  }
}
.article-header__inner {
  width: 182px;
  margin: 0 auto 10px;
}
@media screen and (min-width: 768px) {
  .article-header__inner {
    width: 364px;
    margin: 0 auto 40px;
  }
}
.article-header .section-title {
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  font-size: 65px;
}
@media screen and (min-width: 768px) {
  .article-header .section-title {
    font-size: 130px;
  }
}
.article-header .section-title span {
  margin-top: -5px;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .article-header .section-title span {
    margin-top: -15px;
    font-size: 23px;
  }
}

.article {
  padding: 40px 60px 38px;
  background: radial-gradient(#f5ecd3, #ead9a5);
}
@media screen and (min-width: 768px) {
  .article {
    padding: 60px 30px 78px;
  }
}
.article__inner {
  box-sizing: content-box;
  max-width: 612px;
  margin: 0 auto;
}
.article__list a {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-black);
  color: var(--color-black);
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .article__list a {
    flex-direction: row;
    gap: 30px;
    padding: 32px;
  }
}
.article__list a time {
  min-width: 73px;
}
.article__time {
  display: inline-block;
  margin-bottom: 25px;
  padding: 4px 10px;
  border-bottom: 1px solid var(--color-black);
  font-size: 15px;
  line-height: 1;
}
.article__heading {
  margin-bottom: 20px;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.5;
}
.article__content {
  font-size: var(--fz-medium);
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .article__content {
    font-size: var(--fz-pc-base);
    line-height: 1.7;
  }
}
.article__content img {
  margin: 10px auto;
}
.article__list-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.article__pdf-icon {
  width: 16px;
}
.article__back {
  margin-top: 40px;
  text-align: center;
}
.article__back a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--color-black);
  font-size: var(--fz-base);
  font-family: var(--font-noto-mincho);
  line-height: 1;
}
.article__back-icon {
  width: 16px;
}
.article__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 40px;
  font-family: var(--font-noto-mincho);
}
@media screen and (min-width: 768px) {
  .article__pagination {
    margin-top: 56px;
    gap: 8px;
  }
}
.article__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 6px;
  color: var(--color-black);
  font-size: var(--fz-small);
  border-bottom: 1px solid transparent;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .article__pagination .page-numbers {
    min-width: 40px;
    height: 40px;
    font-size: var(--fz-pc-base);
  }
}
.article__pagination .page-numbers.current {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
  font-weight: 600;
  opacity: 1;
}
.article__pagination .page-numbers.dots {
  border-bottom: none;
}/*# sourceMappingURL=style.css.map */