@charset "UTF-8";
/* global.scss */
/* == 完全リセットCSS == */
/* 1. デフォルトスタイルをゼロに */
*::before,
*,
*::after {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  vertical-align: baseline;
  font-style: normal;
}

/* 2. HTML5要素を block に統一 */
article, aside, details, figcaption, figure,
footer, header, main, nav, section, summary {
  display: block;
}

/* 3. リスト・テーブル・フォームの初期化 */
ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button, input, select, textarea {
  background: none;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* 4. aタグとbuttonを素の状態に */
a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
}

/* 5. 画像とメディア系もリセット */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 6. html, bodyの基礎設定 */
html, body {
  width: 100%;
  font-size: 4.266vw;
  font-family: sans-serif;
  background: #fff;
  color: #000;
}

/* 7. 見出しもフラットに */
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: normal;
}

* {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  text-align: center;
}

#instagram {
  width: 3.3vw;
  max-width: 63px;
}

button {
  box-shadow: 2px 2px 4px 2px rgba(0, 0, 0, 0.3333333333);
}

.button {
  font-family: Futura, serif;
  font-size: 1.375rem;
  color: rgb(80, 111, 89);
  background-color: #F0E0C8;
  padding: 0.7291vw 3.177vw 0.67708vw 3.177vw;
  border-radius: 3rem;
  transition: all 0.3s ease;
  border: none;
  letter-spacing: 0.02em;
}

.button_green {
  font-family: Futura, serif;
  font-size: 1.375rem;
  color: #FAFAFA;
  background-color: rgb(80, 111, 89);
  padding: 0.7291vw 3.177vw 0.67708vw 3.177vw;
  border-radius: 3rem;
  transition: all 0.3s ease;
  border: none;
  letter-spacing: 0.02em;
}

.button:hover {
  color: #F0E0C8;
  background-color: rgb(80, 111, 89);
  transform: scale(1.05);
  cursor: pointer;
}

.button_green:hover {
  color: #FAFAFA;
  background-color: #8C795E;
  transform: scale(1.05);
  cursor: pointer;
}

.store_button .button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: #FAFAFA;
  background-color: rgb(80, 111, 89);
  font-size: clamp(16px, 1.15vw, 22px);
  padding: 0.73vw 1.35vw;
}
.store_button .button img {
  display: inline;
  width: 15%;
}
.store_button .button:hover {
  background-color: #8C795E;
}

@media screen and (min-width: 375px) and (max-width: 1023px) {
  .button {
    width: 49vw;
    height: 10.7vw;
    font-size: 0.93rem;
    padding: 0;
    font-family: Futura, serif;
    border-radius: 3rem;
    transition: all 0.3s ease;
    border: none;
    letter-spacing: 0.02em;
  }
  .button_green {
    width: 49vw;
    height: 10.7vw;
    font-size: 0.93rem;
    padding: 0;
    font-family: Futura, serif;
    border-radius: 3rem;
    transition: all 0.3s ease;
    border: none;
    letter-spacing: 0.02em;
  }
  .button:hover {
    color: #F0E0C8;
    background-color: rgb(80, 111, 89);
    transform: scale(1.05);
    cursor: pointer;
  }
  .button_green:hover {
    color: #FAFAFA;
    background-color: #8C795E;
    transform: scale(1.05);
    cursor: pointer;
  }
  .store_button .button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    color: #FAFAFA;
    background-color: rgb(80, 111, 89);
    font-size: clamp(16px, 1.15vw, 22px);
    padding: 0.73vw 1.35vw;
  }
  .store_button .button img {
    display: inline;
    width: 15%;
  }
  .store_button .button:hover {
    background-color: #8C795E;
  }
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.break-point {
  display: block;
  padding: 4.5px 0;
}

@media screen and (min-width: 1024px) {
  html {
    font-size: 0.833333vw;
  }
  header.mobile_view {
    display: none;
  }
  header.pc_view {
    position: fixed;
    width: 100%;
    height: 11.5625vw;
    z-index: 10000;
    background-image: url("/img/header/header_bg.svg");
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: 100%;
  }
  header.pc_view a {
    width: fit-content;
    height: fit-content;
  }
  header.pc_view #header_box {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 7.5vw;
  }
  header.pc_view #header_box #logo_box {
    padding-top: 2.2916vw;
    padding-left: 11.9791667vw;
  }
  header.pc_view #header_box #logo_box img {
    width: 10.9375vw;
  }
  header.pc_view #header_box #header_button {
    display: flex;
    justify-content: center;
    align-content: center;
    padding-right: 10.41666vw;
  }
  header.pc_view #header_box #header_button #nav {
    display: flex;
    justify-content: space-between;
    gap: 2.23958vw;
    margin-right: 2.23958vw;
  }
  header.pc_view #header_box #header_button #nav li {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header.pc_view #header_box #header_button #nav li a {
    font-size: 1.5625rem;
  }
  header.pc_view #header_box #header_button #instagram {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 2.23958vw;
  }
  header.pc_view #header_box #header_button .store_button {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (min-width: 375px) and (max-width: 1023px) {
  header.pc_view {
    display: none;
  }
  header.mobile_view {
    display: block;
  }
  header.header {
    position: fixed;
    display: flex;
    justify-content: space-between;
    width: 100%;
    z-index: 1000;
    background-color: #f0e0c8;
    background-image: none;
    height: fit-content;
    padding: 0;
  }
  header.header .logo_box {
    padding: 3vw 8vw;
    height: fit-content;
  }
  header.header .logo_box img {
    display: inline-block;
    height: 12.2666vw;
  }
  header.header .menu_button {
    display: flex;
    height: 100%;
  }
  header.header .menu_button img {
    height: 100%;
    width: 18.66666vw;
  }
}
footer {
  background-image: url("../../../img/footer/footer_bg.jpg");
  padding-top: 4.17vw;
}
footer .wrapper {
  display: flex;
  gap: 1.82vw;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 2.92vw;
}
footer .wrapper .right_box address {
  margin-bottom: 1.25vw;
}
footer .wrapper .right_box address p {
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.3vw;
  letter-spacing: 0.03em;
  line-height: 1.35;
}
footer .wrapper .button_box {
  display: flex;
  gap: 1.67vw;
}
footer ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5vw;
  margin-bottom: 3.75vw;
}
footer ul a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
footer ul a .footer_menu_caption {
  font-size: 0.73vw;
  margin-bottom: 0.42vw;
}
footer ul a .footer_menu_text {
  font-size: 1.25vw;
  font-weight: 500;
}
footer .copyright {
  background-color: rgb(80, 111, 89);
  color: #fff;
  padding: 2rem;
  text-align: center;
  height: 2.916666vw;
  font-size: 1.375rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 375px) and (max-width: 1023px) {
  footer.pc_view {
    display: none;
  }
  footer.mobile_view {
    position: relative;
  }
  footer.mobile_view .footer_logo_box {
    padding: 7.46666vw 30.13333vw 5.3333vw 30.1333vw;
  }
  footer.mobile_view .footer_logo_box img {
    width: 39.73333vw;
  }
  footer.mobile_view .top_btn {
    position: absolute;
    top: 0; /* 下から10pxの位置 */
    right: 5.33333vw; /* 右から10pxの位置 */
  }
  footer.mobile_view .top_btn img {
    height: 46.6666vw;
  }
  footer.mobile_view .footer_address {
    margin-bottom: 10.6666vw;
  }
  footer.mobile_view .footer_address p {
    text-align: center;
    font-family: "source-han-sans-japanese", sans-serif;
    font-size: 1rem;
    line-height: 1.4;
  }
  footer.mobile_view .footer_btn_box {
    display: flex;
    width: 100%;
  }
  footer.mobile_view .footer_btn_box img {
    width: 50%;
  }
  footer.mobile_view .copy_write_box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 8vw;
    font-family: "source-han-sans-japanese", sans-serif;
    background-color: rgb(80, 111, 89);
    font-size: 0.8125rem;
    color: #FAFAFA;
  }
}
html {
  font-size: 0.83333vw;
}

main {
  background-image: url("/img/components/bg/section_bg1.jpg");
}

section {
  padding: 6.25vw 10.4167vw;
}

.sections {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6.25vw;
}
.sections h2 {
  border-bottom: 1px solid;
  margin-bottom: 5.4167vw;
  color: rgb(80, 111, 89);
}

.section-title {
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section-title .sub-title1 {
  color: rgb(80, 111, 89);
  font-family: "modesto-expanded", serif;
  font-style: normal;
  font-weight: 300;
  font-size: 58px;
  text-align: left;
  margin-bottom: 2rem;
}
.section-title .sub-title2 {
  color: rgb(80, 111, 89);
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 25px;
  vertical-align: auto;
  margin-bottom: 0.3rem;
}
.section-title .title-text {
  color: rgb(80, 111, 89);
  font-family: "ten-mincho-text", serif;
  font-size: 40px;
  text-align: center;
  padding-bottom: 1.6667vw;
}

#about {
  width: 100%;
  background-image: url("/img/about/about_bg.jpg");
  padding-top: 10.416666vw;
  padding-right: 0;
}
#about .wrapper {
  display: flex;
  justify-content: space-between;
}
#about .wrapper .left_box {
  width: 45%;
  text-align: left;
}
#about .wrapper .left_box .about-title {
  margin-right: 6.25vw; /* 120px → (120/1920)*100 = 6.25vw */
  text-align: left;
  color: #fff;
  font-family: "ten-mincho-text", serif;
  font-size: 3.125rem; /* 変換対象外（変数のまま） */
  line-height: 1.2;
  width: 100%;
}
#about .wrapper .left_box .about-title .small-spacing {
  letter-spacing: -0.2rem;
  font-family: "ten-mincho-text", serif;
}
#about .wrapper .left_box .border-line {
  padding-bottom: 2.92vw; /* 56px → (56/1920)*100 = 2.9166vw */
  margin-bottom: 2.08vw; /* 40px → (40/1920)*100 = 2.0833vw */
  border-bottom: 2px #fff solid;
  width: 35.42vw;
}
#about .wrapper .left_box .about_text {
  display: flex;
  flex-direction: column;
  justify-content: left;
  margin-bottom: 56px;
}
#about .wrapper .left_box .about_text .text.pc_view {
  color: #fff;
  font-size: 1.5625rem;
  line-height: 1.8;
}
#about .wrapper .left_box .about_text .mini_text {
  text-align: left;
  color: #fff;
  font-size: 1.25rem;
}
#about .wrapper .left_box .button_box {
  margin: 0;
  text-align: left;
}
#about .wrapper .right_box {
  position: relative;
  background-color: transparent;
}
#about .wrapper .right_box .mame {
  width: 7vw;
  position: absolute;
  top: 0.3%;
  left: 0.3%;
}
#about .wrapper .right_box .baisen {
  width: 47.92vw;
  margin-top: 41.5px;
}
#about .wrapper .right_box .cup {
  width: 13.3vw;
  position: absolute;
  bottom: 26.2%;
  right: 6.3%;
}

#access {
  background-image: url("/img/components/bg/section_bg1.jpg");
}
#access .wrapper {
  display: flex;
  justify-content: space-between;
}
#access .wrapper .left_box {
  width: 50%;
  padding-top: 1.9vw;
}
#access .wrapper .left_box .section-title {
  font-size: 3.625rem;
  display: flex;
  flex-direction: row;
  text-align: left;
  margin: 0;
}
#access .wrapper .left_box .section-title .sub-title1 {
  color: rgb(80, 111, 89);
  font-family: modesto-expanded, serif;
  font-style: normal;
  font-weight: 300;
  font-size: 58px;
  text-align: left;
}
#access .wrapper .left_box .section-title .sub-title2 {
  color: rgb(80, 111, 89);
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 25px;
  margin-left: 1.8rem;
  vertical-align: auto;
}
#access .wrapper .left_box .title-text {
  color: rgb(80, 111, 89);
  font-family: "ten-mincho-text", serif;
  font-size: 40px;
  text-align: left;
  margin-bottom: 1.67vw;
}
#access .wrapper .left_box .main-text p {
  text-align: left;
  font-size: 1.5626rem;
  line-height: 1.68;
  font-weight: 600;
  padding-bottom: 2.916vw;
  border-bottom: 2pt solid black;
  margin-bottom: 2.916vw;
}
#access .wrapper .left_box address p {
  font-family: "source-han-sans-japanese", sans-serif;
  text-align: left;
  font-size: 1.5626rem;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 0.88vw;
}
#access .wrapper .left_box .button_box {
  margin: 0;
  text-align: left;
}
#access #schedule {
  background-image: url("/img/components/bg/section_bg1.jpg");
}

#schedule {
  position: relative;
  padding-top: 6.25vw;
  background-image: url("/img/components/bg/section_bg2.jpg");
}
#schedule div.coffee_beans1 {
  width: fit-content;
  position: absolute;
  top: 0;
  left: 0;
}
#schedule div.coffee_beans1 img {
  width: 21.197916vw;
}
#schedule h2 span {
  color: #fff;
}
#schedule div.calendar_box {
  width: fit-content;
  margin: 0 auto;
}
#schedule div.calendar_box .calendar {
  background-image: url("/img/calendar/calendar_bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 21px 25px 29px 25px;
  width: 47.083vw;
  height: fit-content;
  margin: 0 auto 0.5208vw;
  box-shadow: 2px 2px 4px 2px rgba(0, 0, 0, 0.3333333333);
}
#schedule div.calendar_box .calendar #calendar-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 6.5104vw;
}
#schedule div.calendar_box .calendar #calendar-nav button {
  box-shadow: none;
}
#schedule div.calendar_box .calendar #calendar-nav #month-label #month {
  font-family: Futura, serif;
  font-size: 4.25rem;
}
#schedule div.calendar_box .calendar #calendar-nav #month-label #year {
  font-family: Futura, serif;
  font-size: 1.6875rem;
}
#schedule div.calendar_box .calendar #calendar {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0.8541vw 0.38vw;
}
#schedule div.calendar_box .calendar #calendar th {
  padding-bottom: 0.52vw;
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: normal;
  font-size: 1.875rem;
}
#schedule div.calendar_box .calendar #calendar .calendar-cell {
  width: 5.2083vw;
  height: 3.8338541vw;
  padding: 0.2083vw;
  border: 0.052vw solid #ccc;
  box-sizing: border-box;
  text-align: center;
  vertical-align: middle;
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 400;
  font-size: 1.875rem;
  background-color: #F0E0C8;
}
#schedule div.calendar_box .calendar #calendar .calendar-cell.open {
  background-color: #F0E0C8; /* 薄緑（営業） */
}
#schedule div.calendar_box .calendar #calendar .calendar-cell.closed {
  background-color: rgb(80, 111, 89); /* 薄赤（休業） */
  color: #ffffff;
}
#schedule div.calendar_box .day_off {
  display: flex;
  justify-content: flex-end;
  align-content: baseline;
  width: 100%;
  font-size: 1.3125rem;
}
#schedule div.calendar_box .day_off span {
  font-family: "source-han-sans-japanese", sans-serif;
  color: #FAFAFA;
  display: inline-block;
  line-height: 2.1875vw;
  height: 2.1875vw;
}
#schedule div.calendar_box .day_off img {
  width: 1.61458vw;
}
#schedule .coffee_beans2 {
  width: fit-content;
  position: absolute;
  bottom: 0;
  right: 0;
}
#schedule .coffee_beans2 img {
  width: 18.17708vw;
}

#pickup .shop-container {
  display: flex;
  gap: 5.21vw;
}
#pickup .shop-container figure {
  width: 22.92vw;
  border: none;
}
#pickup .shop-container figure img {
  height: 22.92vw;
  margin-bottom: 24px;
  box-shadow: 2px 2px 4px 2px rgba(0, 0, 0, 0.3333333333);
}
#pickup .shop-container figure figcaption {
  display: flex;
  flex-direction: column;
}
#pickup .shop-container figure figcaption .fig-date {
  font-size: 27px;
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: lighter;
}
#pickup .shop-container figure figcaption .fig-title {
  font-size: 33px;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: bold;
  color: rgb(80, 111, 89);
}
#pickup .shop-container figure figcaption .fig-text {
  font-size: 25px;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: bold;
}
#pickup .shop-container figure figcaption span {
  display: block;
  text-align: left;
  margin-bottom: 16px;
}
#pickup .mobile_view {
  display: none;
}

#lineup .lineup-container {
  display: flex;
  gap: 2.96875vw;
}
#lineup .lineup-container figure {
  box-shadow: 2px 2px 4px 2px rgba(0, 0, 0, 0.3333333333);
  width: 17.552083vw;
}
#lineup .lineup-container figure img {
  width: 17.92vw;
  height: 17.92vw;
}
#lineup .lineup-container figure figcaption {
  position: relative;
  flex-direction: column;
  height: 88px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#lineup .lineup-container figure figcaption .blend_layer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(140, 121, 94, 0.9411764706);
  mix-blend-mode: multiply;
}
#lineup .lineup-container figure figcaption span {
  display: block;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 33px;
  color: #fff;
  z-index: 111;
}

#topics {
  background-image: url("/img/components/bg/section_bg2.jpg");
}
#topics h2 {
  color: #fff;
}
#topics h2 span {
  color: #fff;
}
#topics .insta-container {
  display: flex;
  gap: 2.96875vw;
}
#topics .insta-container figure {
  font-size: 25px;
  border: solid 1px #fff;
  width: 17.552083vw;
}
#topics .insta-container figure img {
  width: 17.55vw;
  height: 22.03vw;
}
#topics .insta-container figure figcaption {
  display: flex;
  flex-direction: column;
}
#topics .insta-container figure figcaption span {
  display: block;
  text-align: justify;
  margin-bottom: 1rem;
}
#topics .insta-container figure figcaption .fig-date {
  font-size: 1.6875rem;
  font-family: "source-han-sans-japanese", sans-serif;
}
#topics .insta-container figure figcaption .fig-text {
  font-size: 1.5625rem;
}

#service {
  background-image: url("/img/components/bg/section_bg1.jpg");
}
#service .grid_box.mobile_view {
  display: none;
}
#service h2 span {
  color: rgb(80, 111, 89);
}
#service .grid_box {
  grid-template-columns: repeat(2, 1fr);
  display: grid;
  gap: 4.17vw;
}
#service .grid_box .service_item {
  display: flex;
  height: 12.5vw;
}
#service .grid_box .service_item:hover {
  transform: scale(1.02);
  transition: all 0.3s ease;
  cursor: pointer;
}
#service .grid_box .service_item_left img {
  width: 12.5vw;
}
#service .grid_box .service_item_right {
  position: relative;
  background-color: rgb(80, 111, 89);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.8125vw 3.13vw;
}
#service .grid_box .service_item_right .service_item_title {
  font-size: 2.0625rem;
  text-align: center;
  border-bottom: solid 2px #fff;
  margin-bottom: 0.83vw;
  width: fit-content;
}
#service .grid_box .service_item_right .service_item_text {
  font-size: 1.04vw;
  line-height: 1.3;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}
#service .grid_box .service_item_right .click {
  margin: 0;
  width: fit-content;
  position: absolute;
  bottom: 0.78vw;
  right: 0;
}
#service .grid_box .service_item_right .click img {
  width: 4.17vw;
}

div.mobile_view {
  display: none;
}

p.mobile_view {
  display: none;
}

span.mobile_view {
  display: none;
}

address.mobile_view {
  display: none;
}

figure.mobile_view {
  display: none;
}

footer.mobile_view {
  display: none;
}

@media screen and (min-width: 375px) and (max-width: 1023px) {
  html, body {
    font-size: 4.2666vw;
  }
  * {
    border: none;
  }
  h2.section-title {
    border: none;
    flex-direction: column;
  }
  h2.section-title span.sub-title2 {
    font-size: 1rem;
    order: 2;
  }
  h2.section-title span.sub-title1 {
    font-size: 2.1875rem;
    order: 1;
    margin: 0;
  }
  h2.section-title span.title-text {
    font-size: 1.25rem;
    line-height: 1.35;
    order: 3;
  }
  h3.title-text {
    margin-top: 8vw;
  }
  main {
    margin-top: 18.66666vw;
  }
  #about {
    width: 100%;
    background-image: url("/img/about/about_bg.jpg");
    padding: 21.3vw 8vw 32.26vw;
    margin: 0;
  }
  #about p.mobile_view {
    display: block;
  }
  #about .wrapper {
    display: flex;
    flex-direction: column;
  }
  #about .wrapper .left_box {
    width: 100%;
  }
  #about .wrapper .left_box .about-title {
    text-align: center;
    font-size: 1.5rem; /* 変換対象外（変数のまま） */
    line-height: 1.36;
    width: 100%;
    margin-bottom: 8vw;
    padding: 0;
    color: #fff;
  }
  #about .wrapper .left_box .about-title .small-spacing {
    letter-spacing: -0.2rem;
    font-family: "ten-mincho-text", serif;
  }
  #about .wrapper .left_box .border-line {
    display: none;
  }
  #about .wrapper .left_box .about_text {
    margin-bottom: 0;
  }
  #about .wrapper .left_box .about_text .mobile_view {
    color: #fff;
    display: block;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 5.33vw;
  }
  #about .wrapper .left_box .about_text p.text.mobile_view {
    line-height: 1.75;
    font-weight: 600;
  }
  #about .wrapper .left_box .about_text .mini_text.mobile_view {
    line-height: 1.13;
    font-weight: 600;
  }
  #about .wrapper .left_box .about_text .mini_text {
    text-align: center;
    font-size: 0.81rem;
  }
  #about .wrapper .left_box .button_box {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #about .wrapper .right_box {
    margin-top: 10.6vw;
    position: relative;
    padding-bottom: 0;
  }
  #about .wrapper .right_box .mame {
    width: auto;
    height: 26.13vw;
    position: absolute;
    top: -4.133vw;
    left: -5vw;
  }
  #about .wrapper .right_box .baisen {
    width: 100%;
    margin: 0;
    height: auto;
  }
  #about .wrapper .right_box .cup {
    width: auto;
    height: 33.3vw;
    position: absolute;
    bottom: -10.88vw;
    right: -5.22vw;
  }
  #access {
    padding: 32.26vw 0;
    background-image: url("/img/components/bg/section_bg1.jpg");
  }
  #access .wrapper {
    display: flex;
    flex-direction: column;
  }
  #access .wrapper div.left_box {
    width: 100%;
  }
  #access .wrapper div.left_box h2.section-title {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
  }
  #access .wrapper div.left_box h2.section-title .sub-title1 {
    margin-bottom: 1.6vw;
  }
  #access .wrapper div.left_box h2.section-title .sub-title2 {
    margin: 0 auto;
  }
  #access .wrapper div.left_box h2.section-title .title-text {
    font-size: 1.25rem;
    text-align: center;
    padding-left: 1rem;
    margin: 8vw auto 5.3vw;
  }
  #access .wrapper div.left_box h2.section-title .title-text .spacing-wide {
    letter-spacing: 0.2rem;
    color: rgb(80, 111, 89);
    font-family: "ten-mincho-text", serif;
  }
  #access .wrapper div.left_box h3.title-text {
    margin-top: 8vw;
    text-align: center;
    font-size: 1.25rem;
  }
  #access .wrapper div.left_box h3.title-text span.spacing-wide {
    font-family: "ten-mincho-text", serif;
  }
  #access .wrapper div.left_box div.main-text.mobile_view {
    display: block;
    margin-top: 5.3333vw;
    margin-bottom: 5.333vw;
  }
  #access .wrapper div.left_box div.main-text.mobile_view p {
    text-align: left;
    font-size: 1rem;
    padding: 0 8vw;
    line-height: 1.5;
    border: none;
  }
  #access .wrapper div.left_box .map {
    display: block;
    width: 100%;
    background-color: #FAFAFA;
    padding: 0 8vw;
    margin-bottom: 5.333vw;
  }
  #access .wrapper div.left_box .map img {
    width: 100%;
  }
  #access .wrapper div.left_box address {
    width: fit-content;
    margin: 0 auto;
    padding-bottom: 8vw;
  }
  #access .wrapper div.left_box address p {
    font-size: 0.9375rem;
    line-height: 1.5;
  }
  #access .wrapper div.left_box address .address_cap {
    font-size: 0.8125rem;
    margin-top: 1.333vw;
  }
  #access .wrapper div.left_box .button_box {
    margin: 0;
    text-align: center;
  }
  #schedule {
    width: 100%;
    position: relative;
    padding-top: 21.3333vw;
    padding-bottom: 21.333vw;
    background-image: url("/img/components/bg/section_bg2.jpg");
  }
  #schedule div.coffee_beans1 {
    width: fit-content;
    position: absolute;
    top: 4vw;
    left: 2.666vw;
  }
  #schedule div.coffee_beans1 img {
    width: 25vw;
  }
  #schedule h2 span {
    color: #fff;
  }
  #schedule div.calendar_box {
    width: fit-content;
    margin: 0 auto;
  }
  #schedule div.calendar_box div.calendar {
    background-image: url("/img/calendar/calendar_bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 21px 25px 29px 25px;
    width: 84vw;
    height: fit-content;
    margin: 0 auto 2.66666vw;
    box-shadow: 2px 2px 4px 2px rgba(0, 0, 0, 0.3333333333);
  }
  #schedule div.calendar_box div.calendar #calendar-nav {
    display: flex;
    justify-content: space-between;
  }
  #schedule div.calendar_box div.calendar #calendar-nav button {
    box-shadow: none;
    width: 1.3973vw;
  }
  #schedule div.calendar_box div.calendar #calendar-nav #month-label {
    height: fit-content;
  }
  #schedule div.calendar_box div.calendar #calendar-nav #month-label span#month {
    font-family: Futura, serif;
    font-size: 1.375rem;
  }
  #schedule div.calendar_box div.calendar #calendar-nav #month-label #year {
    font-family: Futura, serif;
    font-size: 0.5rem;
  }
  #schedule div.calendar_box div.calendar #calendar {
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0.8541vw 0.38vw;
  }
  #schedule div.calendar_box div.calendar #calendar th {
    padding-bottom: 0.52vw;
    font-family: "source-han-sans-japanese", sans-serif;
    font-size: 0.5rem;
  }
  #schedule div.calendar_box div.calendar #calendar td.calendar-cell {
    width: 10.056vw;
    height: 6.89866vw;
    padding: 0.2083vw;
    border: 0.052vw solid #ccc;
    box-sizing: border-box;
    text-align: center;
    vertical-align: middle;
    font-family: "source-han-sans-japanese", sans-serif;
    font-weight: 400;
    font-size: 0.5rem;
    background-color: #F0E0C8;
  }
  #schedule div.calendar_box div.calendar #calendar .calendar-cell.open {
    background-color: #F0E0C8; /* 薄緑（営業） */
  }
  #schedule div.calendar_box div.calendar #calendar .calendar-cell.closed {
    background-color: rgb(80, 111, 89); /* 薄赤（休業） */
    color: #ffffff;
  }
  #schedule div.calendar_box div.day_off {
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: fit-content;
  }
  #schedule div.calendar_box div.day_off span.mobile_view {
    font-family: "source-han-sans-japanese", sans-serif;
    color: #FAFAFA;
    font-size: 0.9375rem;
    display: inline-block;
    line-height: 2.1875vw;
    height: 2.1875vw;
    text-align: center;
  }
  #schedule div.calendar_box div.day_off img {
    width: 5.333vw;
  }
  #schedule .coffee_beans2 {
    width: fit-content;
    position: absolute;
    bottom: 5.866666vw;
    right: 2.666vw;
  }
  #schedule .coffee_beans2 img {
    width: 25vw;
  }
  #pickup {
    padding: 21.33333vw 0;
  }
  #pickup div.mobile_view {
    display: block;
  }
  #pickup h2 {
    border: none;
  }
  #pickup .shop-container.pc_view {
    display: none;
  }
  #pickup .shop-container {
    position: relative;
    overflow: hidden;
    width: 100vw;
  }
  #pickup .shop-container .slider-wrapper {
    position: relative;
    overflow: hidden;
  }
  #pickup .shop-container .slider-track {
    display: flex;
    margin-left: -57vw;
    gap: 8vw;
  }
  #pickup .shop-container figure {
    flex: 0 0 auto;
    width: 66vw;
  }
  #pickup .shop-container figure img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1vw;
  }
  #pickup .shop-container figure figcaption {
    padding: 1vw 0;
    font-size: 3vw;
    line-height: 1.3;
  }
  #pickup .shop-container figure figcaption .fig-date {
    display: none;
  }
  #pickup .shop-container figure figcaption .fig-title {
    font-size: 1.25rem;
  }
  #pickup .shop-container figure figcaption .fig-text {
    font-size: 1rem;
  }
  #pickup .shop-container figure figcaption .fig-title,
  #pickup .shop-container figure figcaption .fig-text {
    display: block;
    margin-bottom: 0.8vw;
  }
  #pickup .shop-container .slide-btn {
    width: 10.6666vw;
    position: absolute;
    top: 30%;
    z-index: 10;
    background: none;
    border: none;
    box-shadow: none;
  }
  #pickup .shop-container .slide-btn img {
    width: 100%;
    height: auto;
    display: block;
    background: none;
    border: none;
    box-shadow: none;
  }
  #pickup .shop-container .slide-btn.prev {
    left: 8vw;
  }
  #pickup .shop-container .slide-btn.next {
    right: 8vw;
  }
  #lineup {
    padding-bottom: 21.33333vw;
  }
  #lineup h2 {
    border: none;
  }
  #lineup h2 span.mobile_view {
    display: block;
    line-height: 1.35;
  }
  #lineup .section-title {
    margin-bottom: 8vw;
  }
  #lineup .section-title .title-text {
    order: 3;
    margin: 0 auto;
  }
  #lineup .lineup-container {
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 6.13333vw;
  }
  #lineup .lineup-container figure {
    width: fit-content;
    height: fit-content;
  }
  #lineup .lineup-container figure figcaption span.fig-name {
    font-size: 1rem;
  }
  #lineup .lineup-container figure img {
    width: 100%;
    height: 100%;
    box-shadow: none;
  }
  #topics {
    padding: 21.33333vw 0;
  }
  #topics h2 {
    border: none;
  }
  #topics h2 span.mobile_view {
    display: block;
    line-height: 1.35;
  }
  #topics .insta-container figure {
    width: 69.333vw;
    display: none;
  }
  #topics .insta-container figure.active_figure {
    display: block;
  }
  #topics .insta-container figure img {
    height: 87.4vw;
  }
  #service {
    padding: 21.33333vw 0;
  }
  #service .grid_box.mobile_view {
    display: block;
  }
  #service .grid_box.pc_view {
    display: none;
  }
  #service .grid_box {
    display: grid;
    grid-template-rows: 4fr;
    grid-template-columns: 1fr;
  }
  #service .grid_box .grid_item {
    width: 83.73333vw;
  }
  #service .grid_box .grid_item div.service_item {
    margin-bottom: 5.3333vw;
    height: fit-content;
  }
  #service .grid_box .grid_item div.service_item div.service_item_left {
    width: fit-content;
  }
  #service .grid_box .grid_item div.service_item div.service_item_left img {
    width: 42vw;
  }
  #service .grid_box .grid_item div.service_item .service_item_right {
    width: 42vw;
    height: 31.46vw;
  }
  #service .grid_box .grid_item div.service_item .service_item_right .service_item_title {
    font-size: 1rem;
    border-bottom: none;
  }
  #service .grid_box .grid_item div.service_item .service_item_right .click {
    width: fit-content;
  }
  #service .grid_box .grid_item div.service_item .service_item_right .click img {
    width: 10.6666vw;
  }
  #service .grid_box .grid_item p.service_item_text {
    margin: 0 auto 8vw;
    text-align: center;
    font-size: 1rem;
    line-height: 1.25;
  }
  #service h2 {
    border: none;
  }
  div.pc_view {
    display: none;
  }
  p.pc_view {
    display: none;
  }
  span.pc_view {
    display: none;
  }
  address.pc_view {
    display: none;
  }
  figure.pc_view {
    display: none;
  }
  footer.pc_view {
    display: none;
  }
  footer.mobile_view {
    display: block;
  }
}
.logo_image {
  opacity: 0;
  position: absolute;
  padding: 1rem;
  border-radius: 0.3rem;
  top: 30%;
  left: 40%;
  transition: opacity 2s ease, transform 2s ease;
  z-index: 999;
}

.logo_image.show {
  opacity: 1;
}

.logo_image.hide {
  opacity: 0;
}

.slideshow {
  position: relative;
  width: 100vw;
  height: 52.7vw;
  overflow-y: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  clip-path: circle(0% at 0 0);
  transition: clip-path 2.5s ease-in;
  z-index: 0; /* ← 追加 */
}

.slide.active {
  opacity: 1;
  clip-path: circle(150% at 0 0);
  z-index: 2; /* ← 前に出す */
}

.slide.previous {
  opacity: 1;
  clip-path: circle(150% at 0 0);
  z-index: 1; /* ← その下に置く */
}

@media screen and (min-width: 375px) and (max-width: 1023px) {
  html, body {
    overflow-x: hidden;
  }
  main {
    margin-top: 18.66666vw;
  }
  .logo_image {
    transition: opacity 2s ease, transform 2s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    padding: 0;
  }
  .logo_image img {
    width: 100%;
    margin: 0;
  }
  .logo_image.show {
    opacity: 1;
  }
  .logo_image.hide {
    opacity: 0;
  }
  .slideshow {
    position: relative;
    width: 100vw;
    height: 104vw;
    overflow: hidden;
  }
  .slide {
    position: absolute;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    clip-path: circle(0% at 0 0);
    transition: clip-path 2.5s ease-in;
    z-index: 0; /* ← 追加 */
  }
  .slide.active {
    opacity: 1;
    clip-path: circle(150% at 0 0);
    z-index: 2; /* ← 前に出す */
  }
  .slide.previous {
    opacity: 1;
    clip-path: circle(150% at 0 0);
    z-index: 1; /* ← その下に置く */
  }
}
#notFund {
  width: 100vw;
  height: 100vh;
  background: url("../../../img/404/404.jpg") no-repeat center center/cover;
  padding: 13.2vw 22.97vw 7.76vw 23.02vw;
}
#notFund .centerBox {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  background-color: rgba(250, 250, 250, 0.8);
  width: 54.01vw;
  height: 33.33vw;
  text-align: left;
  padding: 136px 326px 136px 80px;
  position: relative;
}
#notFund .centerBox .content_box {
  position: absolute;
  top: 25%;
}
#notFund .centerBox .content_box h1 {
  display: flex;
  justify-content: flex-start;
  align-items: end;
  gap: 24px;
  color: rgb(80, 111, 89);
  margin-bottom: 40px;
  padding: 0;
  width: 100%;
}
#notFund .centerBox .content_box h1 .large {
  font-family: modesto-expanded, serif;
  font-weight: 300;
  font-size: 100px;
}
#notFund .centerBox .content_box h1 .middle {
  font-size: 33px;
  font-weight: bold;
}
#notFund .centerBox .content_box p {
  margin-bottom: 48px;
  font-size: 27px;
  line-height: 44px;
}
#notFund .centerBox .content_box .button_box {
  display: flex;
  justify-content: flex-start;
  gap: 56px;
}
#notFund .centerBox .content_box .button_box button {
  min-width: 256px;
}
#notFund .centerBox .img_box {
  position: absolute;
  bottom: 82px;
  right: 27.4px;
}

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