@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;500;700&family=Damion&family=Noto+Serif+JP:wght@400;700&family=Patua+One&display=swap");
/* ===============================================
# RULES
=============================================== */
/* ===============================================
# MIXINS
=============================================== */
/* ===============================================
# COMMON
=============================================== */
* {
  min-width: 0;
  min-height: 0;
}

html {
  font-size: 62.5%;
}

body {
  color: #222;
  font-family: "Noto Serif JP", serif;
  background-color: #f3efeb;
}

a {
  cursor: pointer;
  text-decoration: none;
}

img {
  width: 100%;
  height: 100%;
}

.inner {
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: content-box;
}

.home-util-title-en {
  font-family: "Amatic SC", cursive;
  font-size: 5.2rem;
  letter-spacing: 1.04rem;
  line-height: 1.2692307692;
  font-weight: 700;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-util-title-en {
    font-size: 4rem;
    letter-spacing: 0.4rem;
    line-height: 1.275;
  }
}
@media screen and (max-width: 519px) {
  .home-util-title-en {
    font-size: 4rem;
    letter-spacing: 0.4rem;
    line-height: 1.275;
  }
}

.home-util-title-jp {
  margin-top: 0.8rem;
  font-size: 1.4rem;
  line-height: 1.4285714286;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-util-title-jp {
    margin-top: 0.6rem;
    font-size: 1.2rem;
    line-height: 1.4166666667;
  }
}
@media screen and (max-width: 519px) {
  .home-util-title-jp {
    margin-top: 0.4rem;
    font-size: 1.2rem;
    line-height: 1.4166666667;
  }
}

.util-link {
  position: relative;
  display: inline-block;
  width: 280px;
  max-width: 100%;
  height: 72px;
  line-height: 7.2rem;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background-color: #222;
  transition: all 0.4s ease 0s;
}
@media (hover: hover) {
  .util-link:where(:any-link, :enabled, summary):hover {
    transform: translate(6px, 6px);
  }
  .util-link:where(:any-link, :enabled, summary):hover::before {
    transform: translate(-6px, -6px);
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .util-link {
    width: 290px;
    padding-left: 0.6rem;
  }
}
@media screen and (max-width: 519px) {
  .util-link {
    width: 290px;
    padding-left: 0.6rem;
  }
}
.util-link::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid #222;
  border-right: 1px solid #222;
  bottom: -6px;
  right: -6px;
  transition: all 0.4s ease 0s;
}
.util-link::after {
  position: absolute;
  content: "";
  display: inline-block;
  background: url(../img/icon_arrow-right.png) left top no-repeat;
  background-size: 100% auto;
  width: 8px;
  height: 14px;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}

.screen-wrapper {
  overflow: hidden;
}

.preload {
  transition: 0 !important;
}

/* ===============================================
# ANIMATION
=============================================== */
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
.animation-zoomUp {
  animation: zoomUp 10s linear 0s normal both;
}

/* ===============================================
0) DRAWER & TO-TOP [DONE]
=============================================== */
.drawer-icon {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 150;
  width: 60px;
  height: 60px;
  background-color: #382620;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s ease 0s;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .drawer-icon {
    top: 15px;
    right: 15px;
  }
}
@media screen and (max-width: 519px) {
  .drawer-icon {
    top: 10px;
    right: 10px;
  }
}
.drawer-icon.is-pull {
  background-color: #fff;
}
.drawer-icon.is-pull .drawer-icon-bar1 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 30px;
  background: #382620;
}
.drawer-icon.is-pull .drawer-icon-bar2 {
  opacity: 0;
}
.drawer-icon.is-pull .drawer-icon-bar3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 30px;
  background: #382620;
}

.drawer-icon-bars {
  width: 60px;
  height: 60px;
  position: relative;
  display: block;
}

.drawer-icon-bar1,
.drawer-icon-bar2,
.drawer-icon-bar3 {
  position: absolute;
  width: 27px;
  height: 2px;
  background-color: #fff;
  border-radius: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease 0s;
}

.drawer-icon-bar1 {
  top: 22.5px;
}

.drawer-icon-bar2 {
  background-color: #fff;
}

.drawer-icon-bar3 {
  top: 37.5px;
}

.drawer-icon-sub {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 145;
  width: 60px;
  height: 60px;
  background-color: #382620;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transition: all 0.4s ease 0s;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .drawer-icon-sub {
    display: none;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .drawer-icon-sub {
    display: none;
  }
}
@media screen and (max-width: 519px) {
  .drawer-icon-sub {
    display: none;
  }
}
.drawer-icon-sub.is-pull {
  background-color: #fff;
  opacity: 1;
  visibility: visible;
}
.drawer-icon-sub.is-pull .drawer-icon-bar1 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 30px;
  background: #382620;
}
.drawer-icon-sub.is-pull .drawer-icon-bar2 {
  opacity: 0;
}
.drawer-icon-sub.is-pull .drawer-icon-bar3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 30px;
  background: #382620;
}

.drawer-body {
  width: 100%;
  max-width: 375px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  opacity: 0;
  background-color: #382620;
  transform: translateX(375px);
  transition: all 0.4s ease 0s;
  z-index: 140;
}
.drawer-body.is-pull {
  display: block;
  transform: translateX(0);
  opacity: 1;
  transition: all 0.4s ease 0s;
}

.drawer-logo {
  margin-top: 1rem;
  margin-left: 1.5rem;
}

.drawer-logo-link {
  transition: all 0.4s ease 0s;
}
@media (hover: hover) {
  .drawer-logo-link:where(:any-link, :enabled, summary):hover {
    opacity: 0.3;
  }
}
.drawer-logo-link img {
  width: 120px;
}

.drawer-nav {
  margin-top: 5.7rem;
  margin-left: 4rem;
}

.drawer-nav-item:not(:first-child) {
  margin-top: 3.2rem;
}

.drawer-nav-item-link {
  display: block;
}
.drawer-nav-item-link:not(:first-child) {
  margin-top: 3.2rem;
}
.drawer-nav-item-link a {
  display: inline-block;
  position: relative;
  color: #fff;
  font-family: "Patua One", cursive;
  font-size: 2.4rem;
  letter-spacing: 0.3rem;
  line-height: 1.2083333333;
  transition: all 0.4s ease 0s;
}
.drawer-nav-item-link a::after {
  content: "／　 " attr(data-desc);
  position: absolute;
  font-family: "Noto Serif JP", serif;
  width: 300%;
  font-size: 1rem;
  letter-spacing: 0;
  padding-top: 1.2rem;
  padding-left: 0.8rem;
}
@media (hover: hover) {
  .drawer-nav-item-link a:where(:any-link, :enabled, summary):hover {
    opacity: 0.3;
  }
}

.drawer-slash {
  margin-left: 0.8rem;
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  letter-spacing: 0;
}

.drawer-jp {
  margin-left: 1.2rem;
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  letter-spacing: 0;
}

.drawer-sns {
  margin-top: 5.4rem;
  margin-left: 0.6rem;
}

.drawer-sns-list {
  display: flex;
  justify-content: center;
}

.drawer-sns-item:not(:first-child) {
  margin-left: 4rem;
}

.drawer-sns-link {
  font-size: 3.2rem;
  color: #fff;
  transition: all 0.4s ease 0s;
}
@media (hover: hover) {
  .drawer-sns-link:where(:any-link, :enabled, summary):hover {
    opacity: 0.3;
  }
}

.drawer-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 130;
  transition: all 0.4s ease 0s;
  visibility: hidden;
  opacity: 0;
}
.drawer-background.is-pull {
  display: block;
  visibility: visible;
  opacity: 1;
  transition: all 0.4s ease 0s;
}

@media screen and (min-width: 960px) {
  .drawer-hidden {
    opacity: 0 !important;
    visibility: hidden;
  }
}

.totop-icon-link {
  position: fixed;
  width: 44px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease 0s;
  z-index: 125;
  right: 18px;
  bottom: 20px;
  transition: all 0.4s ease 0s;
}
.totop-icon-link.is-show {
  opacity: 1;
  visibility: visible;
}
@media (hover: hover) {
  .totop-icon-link:where(:any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 960px) {
  .totop-icon-link {
    right: 18px;
    bottom: 40px;
  }
}
@media screen and (max-width: 519px) {
  .totop-icon-link {
    right: 6px;
    bottom: 8px;
  }
}

/* ===============================================
1) HOME [DONE]
=============================================== */
@media screen and (min-width: 960px) {
  .home-visual {
    position: relative;
    display: flex;
  }
  .home-visual::after {
    position: absolute;
    content: "";
    background-color: #eae0d5;
    width: 76.875%;
    height: 100%;
    bottom: -60px;
    right: 0;
    z-index: -1;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-visual::after {
    position: absolute;
    content: "";
    background-color: #eae0d5;
    width: 76.875%;
    height: 735px;
    top: 90px;
    right: 0;
    z-index: -1;
  }
}

.home-visual-side {
  padding: 3rem 2rem 0;
  width: 18.75%;
}
@media screen and (min-width: 1200px) {
  .home-visual-side {
    width: 15.625%;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-visual-side {
    display: none;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-visual-side {
    display: none;
  }
}
@media screen and (max-width: 519px) {
  .home-visual-side {
    display: none;
  }
}

.home-visual-logo_d {
  width: 100%;
  max-width: 163px;
  margin: 0 auto;
}

.home-visual-logo_d-link {
  transition: all 0.4s ease 0s;
}
@media (hover: hover) {
  .home-visual-logo_d-link:where(:any-link, :enabled, summary):hover {
    opacity: 0.3;
  }
}
.home-visual-nav {
  margin-top: 6.1rem;
  margin-left: 0.3rem;
  text-align: center;
}

.home-visual-nav-item:not(:first-child) {
  margin-top: 3.2rem;
}

.home-visual-nav-link:not(:first-child) {
  margin-top: 5.1rem;
}
.home-visual-nav-link a {
  position: relative;
  color: #222;
  font-family: "Patua One", cursive;
  font-size: 1.6rem;
  line-height: 2rem;
  letter-spacing: 0.192rem;
  transition: all 0.4s ease 0s;
}
.home-visual-nav-link a::after {
  content: attr(data-desc);
  position: absolute;
  font-family: "Noto Serif JP", serif;
  width: 300%;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 0.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0rem;
}
@media (hover: hover) {
  .home-visual-nav-link a:where(:any-link, :enabled, summary):hover {
    opacity: 0.3;
  }
}

.home-visual-nav-en {
  font-family: "Patua One", cursive;
  font-size: 1.6rem;
  line-height: 2rem;
  letter-spacing: 0.192rem;
}

.home-visual-nav-jp {
  margin-top: 0.4rem;
  font-size: 1rem;
  line-height: 1.5rem;
}

.home-visual-sns {
  display: flex;
  margin-top: 7.9rem;
  justify-content: center;
  margin-left: 0.5rem;
}

.home-visual-sns-item:not(:first-child) {
  margin-left: 2.8rem;
}

.home-visual-sns-link {
  font-size: 2rem;
  color: #222;
  transition: all 0.4s ease 0s;
}
@media (hover: hover) {
  .home-visual-sns-link:where(:any-link, :enabled, summary):hover {
    opacity: 0.3;
  }
}

.home-visual-screen {
  position: relative;
  width: 81.25%;
}
@media screen and (min-width: 1200px) {
  .home-visual-screen {
    width: 84.375%;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-visual-screen {
    width: 100%;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-visual-screen {
    width: 100%;
  }
}
@media screen and (max-width: 519px) {
  .home-visual-screen {
    width: 100%;
  }
}

.home-visual-slider {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .home-visual-slider {
    max-height: 735px;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-visual-slider {
    max-height: 735px;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-visual-slider {
    min-height: 100vh;
  }
}
@media screen and (max-width: 519px) {
  .home-visual-slider {
    min-height: 100vh;
  }
}

.home-visual-image {
  position: relative;
  width: 100%;
  height: 735px;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-visual-image {
    height: 100vh;
  }
}
@media screen and (max-width: 519px) {
  .home-visual-image {
    height: 100vh;
  }
}

.home-visual-image-background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-visual-image-background::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-visual-image-background::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
}
@media screen and (max-width: 519px) {
  .home-visual-image-background::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
}
.home-visual-image-background.main-image1 {
  background: url(../img/img_mainvisual1.jpg) center center/cover no-repeat;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-visual-image-background.main-image1 {
    background: url(../img/img_mainvisual1_sp.jpg) center center/cover no-repeat;
  }
}
@media screen and (max-width: 519px) {
  .home-visual-image-background.main-image1 {
    background: url(../img/img_mainvisual1_sp.jpg) center center/cover no-repeat;
  }
}
.home-visual-image-background.main-image2 {
  background: url(../img/img_mainvisual2.jpg) center center/cover no-repeat;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-visual-image-background.main-image2 {
    background: url(../img/img_mainvisual2_sp.jpg) center center/cover no-repeat;
  }
}
@media screen and (max-width: 519px) {
  .home-visual-image-background.main-image2 {
    background: url(../img/img_mainvisual2_sp.jpg) center center/cover no-repeat;
  }
}
.home-visual-image-background.main-image3 {
  background: url(../img/img_mainvisual3.jpg) center center/cover no-repeat;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-visual-image-background.main-image3 {
    background: url(../img/img_mainvisual3_sp.jpg) center center/cover no-repeat;
  }
}
@media screen and (max-width: 519px) {
  .home-visual-image-background.main-image3 {
    background: url(../img/img_mainvisual3_sp.jpg) center center/cover no-repeat;
  }
}

.home-visual-logo_l {
  position: absolute;
  top: 10px;
  left: 14px;
}
@media screen and (min-width: 960px) {
  .home-visual-logo_l {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-visual-logo_l-link img {
    width: 180px;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-visual-logo_l-link img {
    width: 150px;
  }
}
@media screen and (max-width: 519px) {
  .home-visual-logo_l-link img {
    width: 120px;
  }
}

.home-visual-text {
  position: absolute;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.224rem;
  left: 26px;
}
@media screen and (min-width: 1200px) {
  .home-visual-text {
    font-size: 2rem;
    line-height: 2.3;
    letter-spacing: 0.28rem;
    left: 56px;
  }
  .home-visual-text .view-sp {
    display: none;
  }
}
@media screen and (min-width: 960px) {
  .home-visual-text {
    bottom: 50px;
  }
  .home-visual-text .view-sp {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-visual-text {
    bottom: 50px;
    left: 20px;
  }
  .home-visual-text .view-sp {
    display: none;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-visual-text {
    top: 130px;
  }
}
@media screen and (max-width: 519px) {
  .home-visual-text {
    top: 124px;
    left: 20px;
  }
}

.home-visual-pickup {
  position: absolute;
  color: #222;
  width: 388px;
  height: 152px;
  background-color: rgba(255, 255, 255, 0.85);
  bottom: 20px;
  right: 20px;
  transition: all 0.4s ease 0s;
}
@media (hover: hover) {
  .home-visual-pickup:where(:any-link, :enabled, summary):hover .home-visual-pickup-container {
    opacity: 0.3;
  }
}
@media screen and (max-width: 519px) {
  .home-visual-pickup {
    width: 335px;
    height: 124px;
    bottom: 32px;
    right: 50%;
    transform: translateX(50%);
  }
}
.home-visual-pickup::before {
  position: absolute;
  content: "";
  display: inline-block;
  background: url(../img/img_balloon-pickup.png) left top no-repeat;
  background-size: 100% auto;
  width: 168px;
  height: 109px;
  top: -77px;
  right: 0;
}
@media screen and (max-width: 519px) {
  .home-visual-pickup::before {
    background: url(../img/img_balloon-pickup_sp.png) left top no-repeat;
    background-size: 100% auto;
    width: 126px;
    height: 82px;
    top: -40px;
  }
}

.home-visual-pickup-category {
  position: absolute;
  font-size: 1.2rem;
  font-weight: 700;
  background-color: #222;
  color: #fff;
  padding: 5px 10px 5px 13px;
  top: 8px;
  left: -8px;
  z-index: 10;
}
@media screen and (max-width: 519px) {
  .home-visual-pickup-category {
    padding: 5px 5px 5px 10px;
  }
}
.home-visual-pickup-category::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 4px 0;
  border-color: transparent #aaa transparent transparent;
  bottom: -4px;
  left: 0;
}
.home-visual-pickup-category::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 8px 11px 0;
  border-color: #222 transparent #222 #222;
  top: 0;
  right: -7px;
}

.home-visual-pickup-container {
  display: flex;
  padding: 1.6rem;
}
@media screen and (min-width: 960px) {
  .home-visual-pickup-container {
    transition: all 0.4s ease 0s;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-visual-pickup-container {
    transition: all 0.4s ease 0s;
  }
}
@media screen and (max-width: 519px) {
  .home-visual-pickup-container {
    padding: 1.2rem;
  }
}

.home-visual-pickup-image {
  width: 120px;
  height: 120px;
}
@media screen and (max-width: 519px) {
  .home-visual-pickup-image {
    max-width: 100px;
    height: 100px;
  }
}

.home-visual-pickup-text {
  margin-left: 1.6rem;
  max-width: 220px;
}
@media screen and (max-width: 519px) {
  .home-visual-pickup-text {
    display: flex;
    flex-direction: column;
    max-width: 195px;
    justify-content: center;
  }
}

.home-visual-pickup-date {
  font-size: 1.2rem;
  line-height: 1.4166666667;
}

.home-visual-pickup-title {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.7142857143;
  margin-top: 1rem;
}
@media screen and (max-width: 519px) {
  .home-visual-pickup-title {
    margin-top: 1.1rem;
    font-size: 1.2rem;
    line-height: 1.5;
  }
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-dots {
  width: auto;
  bottom: 14px;
  left: 14px;
}
@media screen and (max-width: 519px) {
  .slick-dots {
    bottom: 12px;
  }
}
.slick-dots li {
  margin-right: 12px;
  width: 8px;
  height: 8px;
}
.slick-dots li button {
  width: 8px;
  height: 8px;
}
.slick-dots li button::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 10px;
  background-color: #fff;
  opacity: 1;
}
.slick-dots li.slick-active button::before {
  background-color: #d59b71;
}

.home-concept {
  padding-top: 220px;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-concept {
    padding-top: 120px;
  }
}
@media screen and (max-width: 519px) {
  .home-concept {
    padding-top: 120px;
  }
}

.home-concept-outer {
  position: relative;
}
.home-concept-outer::after {
  position: absolute;
  content: "";
  background-color: #eae0d5;
  width: 92.96875%;
  height: 300px;
  bottom: -101px;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-concept-outer::after {
    bottom: -25px;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-concept-outer::after {
    width: 94.6666666667%;
    height: 100px;
    bottom: -72px;
  }
}
@media screen and (max-width: 519px) {
  .home-concept-outer::after {
    width: 94.6666666667%;
    height: 100px;
    bottom: -72px;
  }
}

.home-concept-inner {
  display: flex;
  position: relative;
}
@media screen and (min-width: 960px) {
  .home-concept-inner {
    column-gap: 8rem;
    align-items: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-concept-inner {
    column-gap: 4rem;
    align-items: center;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-concept-inner {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 519px) {
  .home-concept-inner {
    flex-direction: column-reverse;
  }
}
.home-concept-inner::before {
  position: absolute;
  content: "";
  display: inline-block;
  background: url(../img/bg_coffee-beans.png) left top no-repeat;
  background-size: 100% auto;
  width: 296px;
  height: 265px;
  top: -201px;
  right: -40px;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-concept-inner::before {
    top: -235px;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-concept-inner::before {
    width: 145px;
    height: 130px;
    top: -140px;
    right: -17px;
  }
}
@media screen and (max-width: 519px) {
  .home-concept-inner::before {
    width: 145px;
    height: 130px;
    top: -140px;
    right: -17px;
  }
}

@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-concept-image {
    margin-top: 8.4rem;
    width: 84%;
  }
}
@media screen and (max-width: 519px) {
  .home-concept-image {
    margin-top: 8.4rem;
    width: 84%;
  }
}
.home-concept-content {
  margin-bottom: 0.2rem;
}
.home-concept-content .home-util-title-en {
  letter-spacing: 0.95rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-concept-content .home-util-title-en {
    letter-spacing: 0.65rem;
  }
}
@media screen and (max-width: 519px) {
  .home-concept-content .home-util-title-en {
    letter-spacing: 0.325rem;
  }
}
@media screen and (min-width: 960px) {
  .home-concept-content {
    padding-right: 2rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-concept-content {
    padding-right: 2rem;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-concept-content {
    padding: 0 2rem;
  }
}
@media screen and (max-width: 519px) {
  .home-concept-content {
    padding: 0 2rem;
  }
}

.home-concept-text {
  max-width: 470px;
  margin-top: 5rem;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 2.1428571429;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-concept-text {
    margin-top: 3.5rem;
    font-size: 2rem;
    line-height: 2;
  }
}
@media screen and (max-width: 519px) {
  .home-concept-text {
    margin-top: 3.5rem;
    font-size: 2rem;
    line-height: 2;
  }
}

.home-concept-subtext {
  max-width: 470px;
  margin-top: 4.6rem;
  font-size: 1.4rem;
  line-height: 2;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-concept-subtext {
    margin-top: 3rem;
    font-size: 1.4rem;
    line-height: 2;
  }
}
@media screen and (max-width: 519px) {
  .home-concept-subtext {
    margin-top: 3rem;
    font-size: 1.4rem;
    line-height: 2;
  }
}

.home-concept-button {
  margin-top: 5.5rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-concept-button {
    text-align: center;
    margin-top: 5.6rem;
    margin-right: 0.6rem;
  }
}
@media screen and (max-width: 519px) {
  .home-concept-button {
    text-align: center;
    margin-top: 5.6rem;
    margin-right: 0.6rem;
  }
}

.home-special {
  padding-top: 341px;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-special {
    padding-top: 193px;
  }
}
@media screen and (max-width: 519px) {
  .home-special {
    padding-top: 193px;
  }
}

.home-special-outer {
  background-color: #eae0d5;
  padding: 8rem 0;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-special-outer {
    padding: 6rem 0;
  }
}
@media screen and (max-width: 519px) {
  .home-special-outer {
    padding: 6rem 0;
  }
}

.home-special-inner {
  position: relative;
}
.home-special-inner::before {
  position: absolute;
  content: "";
  display: inline-block;
  background: url(../img/bg_coffee-leaves.png) left top no-repeat;
  background-size: 100% auto;
  width: 201px;
  height: 228px;
  top: -211px;
  right: -35px;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-special-inner::before {
    width: 119px;
    height: 135px;
    top: -238px;
    right: -33px;
  }
}
@media screen and (max-width: 519px) {
  .home-special-inner::before {
    width: 119px;
    height: 135px;
    top: -238px;
    right: -33px;
  }
}

.home-special-title {
  text-align: center;
}
.home-special-title .home-util-title-en {
  letter-spacing: 0.93rem;
  padding-left: 0.9rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-special-title .home-util-title-en {
    letter-spacing: 0.6rem;
    padding-left: 0.4rem;
  }
}
@media screen and (max-width: 519px) {
  .home-special-title .home-util-title-en {
    letter-spacing: 0.3rem;
    padding-left: 0.4rem;
  }
}

.home-special-container {
  position: relative;
  max-width: 1180px;
  margin: 6rem auto 0;
  padding: 6rem 4rem 4rem;
  background-color: #fff;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-special-container {
    padding: 4rem 2rem 2rem;
  }
}
@media screen and (max-width: 519px) {
  .home-special-container {
    padding: 4rem 2rem 2rem;
  }
}

.home-special-ribbon-pc {
  position: absolute;
  max-width: 350px;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-special-ribbon-pc {
    display: none;
  }
}
@media screen and (max-width: 519px) {
  .home-special-ribbon-pc {
    display: none;
  }
}

.home-special-ribbon-sp {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-special-ribbon-sp {
    display: block;
    width: 320px;
    top: -20px;
  }
}
@media screen and (max-width: 519px) {
  .home-special-ribbon-sp {
    display: block;
    width: 290px;
    top: -21px;
  }
}

.home-special-balloon {
  position: absolute;
  max-width: 310px;
  top: -72px;
  right: -25px;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-special-balloon {
    max-width: 250px;
    top: -275px;
    right: calc(50% - 250px);
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-special-balloon {
    max-width: 205px;
    top: -235px;
    right: calc(50% - 206px);
  }
}
@media screen and (max-width: 519px) {
  .home-special-balloon {
    max-width: 205px;
    top: -235px;
    right: calc(50% - 206px);
  }
}
.home-special-flex {
  display: flex;
  column-gap: 2rem;
}
@media screen and (min-width: 960px) {
  .home-special-flex {
    justify-content: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-special-flex {
    column-gap: 4rem;
    row-gap: 4rem;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-special-flex {
    column-gap: 4rem;
    row-gap: 4rem;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 519px) {
  .home-special-flex {
    row-gap: 2rem;
    flex-wrap: wrap;
  }
}

.home-special-item {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 960px) {
  .home-special-item:nth-child(2n) {
    margin-top: 4rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-special-item {
    width: calc(50% - 20px);
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-special-item {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 519px) {
  .home-special-item {
    width: calc(50% - 10px);
  }
}

.home-special-item-body {
  display: flex;
  column-gap: 1.2rem;
  margin-top: 1.6rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-special-item-body {
    column-gap: 0.6rem;
    margin-top: 0.8rem;
  }
}
@media screen and (max-width: 519px) {
  .home-special-item-body {
    column-gap: 0.6rem;
    margin-top: 0.8rem;
  }
}

.home-special-item-no {
  flex-shrink: 0;
  width: 4.9rem;
  height: 4.9rem;
  color: #fff;
  background-color: #222;
  font-family: "Patua One", cursive;
  font-size: 3.2rem;
  line-height: 4.9rem;
  text-align: center;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-special-item-no {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.9rem;
    line-height: 2.4rem;
  }
}
@media screen and (max-width: 519px) {
  .home-special-item-no {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.9rem;
    line-height: 2.4rem;
  }
}

.home-special-item-name {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4444444444;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-special-item-name {
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
}
@media screen and (max-width: 519px) {
  .home-special-item-name {
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
}

.home-special-lunch {
  margin-top: 5.7rem;
  background-color: #f7f6f4;
  border-radius: 0.8rem;
}
@media screen and (min-width: 960px) {
  .home-special-lunch {
    display: flex;
    align-items: center;
    padding: 2rem 7rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-special-lunch {
    display: flex;
    align-items: center;
    padding: 2rem 3.5rem;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-special-lunch {
    margin-top: 2rem;
    padding: 2rem 0 2.2rem;
  }
}
@media screen and (max-width: 519px) {
  .home-special-lunch {
    margin-top: 2rem;
    padding: 2rem 0 2.2rem;
  }
}

.home-special-lunch-image {
  margin: 0 auto;
  max-width: 700px;
}
@media screen and (max-width: 519px) {
  .home-special-lunch-image .view-pc {
    display: none;
  }
}
.home-special-lunch-image .view-sp {
  display: none;
}
@media screen and (max-width: 519px) {
  .home-special-lunch-image .view-sp {
    display: block;
  }
}
.home-special-lunch-detail {
  margin-left: 4rem;
  text-align: right;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-special-lunch-detail {
    margin-left: 2rem;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-special-lunch-detail {
    margin-top: 1.9rem;
    margin-left: 0;
    text-align: center;
  }
}
@media screen and (max-width: 519px) {
  .home-special-lunch-detail {
    margin-top: 1.9rem;
    margin-left: 0;
    text-align: center;
  }
}

.home-special-lunch-text {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.45;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-special-lunch-text {
    font-size: 1.6rem;
    line-height: 1.4375;
  }
}
@media screen and (max-width: 519px) {
  .home-special-lunch-text {
    font-size: 1.6rem;
    line-height: 1.4375;
  }
}

.home-special-lunch-price {
  padding-bottom: 0.8rem;
  padding-right: 0.7rem;
  background: url(../img/img_special_dots.png) left bottom repeat-x;
  background-size: 100% auto;
  font-family: "Damion", cursive;
  font-size: 6rem;
  line-height: 1.3833333333;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-special-lunch-price {
    padding-bottom: 1rem;
    padding-right: 0.3rem;
    background: url(../img/img_special_dots_sp.png) center bottom no-repeat;
    font-size: 4rem;
    line-height: 1.375;
  }
}
@media screen and (max-width: 519px) {
  .home-special-lunch-price {
    padding-bottom: 1rem;
    padding-right: 0.3rem;
    background: url(../img/img_special_dots_sp.png) center bottom no-repeat;
    font-size: 4rem;
    line-height: 1.375;
  }
}

.home-special-lunch-time {
  margin-top: 1.3rem;
  font-size: 1.4rem;
  font-weight: 700;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-special-lunch-time {
    margin-top: 1rem;
    margin-left: 0.3rem;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 519px) {
  .home-special-lunch-time {
    margin-top: 1rem;
    margin-left: 0.3rem;
    font-size: 1.2rem;
  }
}

.home-menu {
  padding-top: 160px;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-menu {
    padding-top: 120px;
  }
}
@media screen and (max-width: 519px) {
  .home-menu {
    padding-top: 120px;
  }
}

.home-menu-outer {
  position: relative;
  padding-bottom: 8.6rem;
}
.home-menu-outer::after {
  position: absolute;
  content: "";
  background-color: #eae0d5;
  width: 80%;
  height: 87.6%;
  bottom: 0;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 519px) {
  .home-menu-outer::after {
    width: 73.0666666667%;
    bottom: 20px;
    height: 91.1%;
  }
}

.home-menu-inner {
  position: relative;
}
.home-menu-inner::before {
  position: absolute;
  content: "";
  display: inline-block;
  background: url(../img/bg_coffee-leaves2.png) left top no-repeat;
  background-size: 100% auto;
  width: 395px;
  height: 397px;
  top: -295px;
  left: -99px;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-menu-inner::before {
    width: 193px;
    height: 186px;
    top: -197px;
    left: -45px;
  }
}
@media screen and (max-width: 519px) {
  .home-menu-inner::before {
    width: 193px;
    height: 186px;
    top: -197px;
    left: -45px;
  }
}
.home-menu-inner::after {
  position: absolute;
  content: "";
  display: inline-block;
  background: url(../img/bg_coffee-beans2.png) left top no-repeat;
  background-size: 100% auto;
  width: 390px;
  height: 330px;
  bottom: -197px;
  right: -134px;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-menu-inner::after {
    width: 169px;
    height: 143px;
    bottom: -164px;
    right: -39px;
  }
}
@media screen and (max-width: 519px) {
  .home-menu-inner::after {
    width: 169px;
    height: 143px;
    bottom: -164px;
    right: -39px;
  }
}

.home-menu-title {
  text-align: center;
}
.home-menu-title .home-util-title-en {
  letter-spacing: 0.9075rem;
  padding-left: 1.3rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-menu-title .home-util-title-en {
    letter-spacing: 0.6rem;
    padding-left: 0.95rem;
  }
}
@media screen and (max-width: 519px) {
  .home-menu-title .home-util-title-en {
    letter-spacing: 0.3rem;
    padding-left: 0.6rem;
  }
}

.home-menu-container {
  max-width: 1140px;
  margin: 4rem auto 0;
  padding: 0 2rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-menu-container {
    margin: 4rem auto 0;
  }
}
@media screen and (max-width: 519px) {
  .home-menu-container {
    margin: 4rem auto 0;
  }
}

.home-menu-body:not(:first-child) {
  margin-top: 10rem;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-menu-body:not(:first-child) {
    margin-top: 6rem;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-menu-body:not(:first-child) {
    margin-top: 3.9rem;
  }
}
@media screen and (max-width: 519px) {
  .home-menu-body:not(:first-child) {
    margin-top: 3.9rem;
  }
}
.home-menu-body:nth-child(4) {
  margin-top: 10.1rem;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-menu-body:nth-child(4) {
    margin-top: 6rem;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-menu-body:nth-child(4) {
    margin-top: 3.9rem;
  }
}
@media screen and (max-width: 519px) {
  .home-menu-body:nth-child(4) {
    margin-top: 3.9rem;
  }
}

.home-menu-category {
  position: relative;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4583333333;
  padding: 0.7rem 2rem;
  border-top: 2px solid #222;
  border-bottom: 2px solid #222;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-menu-category {
    font-size: 2rem;
    line-height: 1.45;
    padding: 0.5rem 1.5rem;
  }
}
@media screen and (max-width: 519px) {
  .home-menu-category {
    font-size: 2rem;
    line-height: 1.45;
    padding: 0.5rem 1rem;
  }
}
.home-menu-category::before {
  position: absolute;
  content: "";
  background-color: #222;
  width: 100%;
  height: 1px;
  top: 3px;
  left: 0;
}
.home-menu-category::after {
  position: absolute;
  content: "";
  background-color: #222;
  width: 100%;
  height: 1px;
  bottom: 3px;
  left: 0;
}
@media screen and (max-width: 519px) {
  .home-menu-category::after {
    bottom: 2px;
  }
}

.home-menu-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 3.6rem;
  row-gap: 4rem;
  margin-top: 2.4rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-menu-list {
    column-gap: 3rem;
    row-gap: 3rem;
    margin-top: 2.4rem;
  }
}
@media screen and (max-width: 519px) {
  .home-menu-list {
    column-gap: 2rem;
    row-gap: 2rem;
    margin-top: 2rem;
  }
}

.home-menu-item {
  width: calc(33.3333333333% - 24px);
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-menu-item {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 519px) {
  .home-menu-item {
    width: calc(50% - 10px);
  }
}

.home-menu-item-image {
  background-color: #fff;
  padding: 0.8rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-menu-item-image {
    padding: 0.5rem;
  }
}
@media screen and (max-width: 519px) {
  .home-menu-item-image {
    padding: 0.5rem;
  }
}
.home-menu-item-name {
  margin-top: 1.2rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.45;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-menu-item-name {
    margin-top: 0.9rem;
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
}
@media screen and (max-width: 519px) {
  .home-menu-item-name {
    margin-top: 0.9rem;
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
}

.home-menu-item-price {
  font-family: "Damion", cursive;
  font-size: 3.2rem;
  line-height: 1.375;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-menu-item-price {
    font-size: 2.4rem;
    line-height: 1.375;
  }
}
@media screen and (max-width: 519px) {
  .home-menu-item-price {
    font-size: 2.4rem;
    line-height: 1.375;
  }
}

.home-menu-drink {
  margin-top: 2.4rem;
  display: flex;
}
@media screen and (max-width: 519px) {
  .home-menu-drink {
    margin-top: 2rem;
  }
}

.home-menu-drink-image {
  background-color: #fff;
  padding: 0.8rem;
  width: 343px;
  max-width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-menu-drink-image {
    display: none;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-menu-drink-image {
    display: none;
  }
}
@media screen and (max-width: 519px) {
  .home-menu-drink-image {
    display: none;
  }
}
@media screen and (min-width: 960px) {
  .home-menu-drink-list {
    margin-left: 6.2rem;
    display: flex;
    column-gap: 4.8rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-menu-drink-list {
    margin: 0 auto;
    display: flex;
    column-gap: 4.8rem;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-menu-drink-list {
    margin: 0 auto;
  }
}
@media screen and (max-width: 519px) {
  .home-menu-drink-list {
    margin: 0 auto;
  }
}

@media screen and (min-width: 960px) {
  .home-menu-drink-item {
    width: 197px;
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-menu-drink-item {
    width: 197px;
    max-width: 100%;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-menu-drink-item {
    width: 500px;
    max-width: 100%;
    padding: 0 2rem;
  }
  .home-menu-drink-item:not(:first-child) {
    margin-top: 4.2rem;
  }
}
@media screen and (max-width: 519px) {
  .home-menu-drink-item {
    width: 500px;
    max-width: 100%;
    padding: 0 2rem;
  }
  .home-menu-drink-item:not(:first-child) {
    margin-top: 4.2rem;
  }
}

.home-menu-drink-category {
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4375;
}
.home-menu-drink-category::before {
  position: absolute;
  content: "";
  background-color: #222;
  width: 100%;
  height: 1px;
  bottom: -13px;
  left: 0;
}

.home-menu-drink-sublist {
  margin-top: 3rem;
}

.home-menu-drink-subitem {
  display: flex;
  justify-content: space-between;
}
.home-menu-drink-subitem:not(:first-child) {
  margin-top: 1.5rem;
}

.home-menu-drink-name {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4285714286;
}

.home-menu-drink-price {
  font-family: "Damion", cursive;
  font-size: 2rem;
  line-height: 1;
  padding-right: 0.3rem;
}

.home-menu-button {
  margin-top: 6rem;
  text-align: center;
  margin-right: 0.6rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-menu-button {
    margin-top: 4.2rem;
  }
}
@media screen and (max-width: 519px) {
  .home-menu-button {
    margin-top: 4.2rem;
  }
}

.home-gallery {
  padding-top: 160px;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-gallery {
    padding-top: 100px;
  }
}
@media screen and (max-width: 519px) {
  .home-gallery {
    padding-top: 100px;
  }
}

.home-gallery-outer {
  background-color: #eae0d5;
  padding: 8rem 0 8.6rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-gallery-outer {
    padding: 6rem 0 10.6rem;
  }
}
@media screen and (max-width: 519px) {
  .home-gallery-outer {
    padding: 6rem 0 10.6rem;
  }
}

.home-gallery-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.home-gallery-title {
  position: relative;
  text-align: center;
}
.home-gallery-title .home-util-title-en {
  letter-spacing: 0.98rem;
  padding-left: 1rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-gallery-title .home-util-title-en {
    letter-spacing: 0.67rem;
    padding-left: 0.75rem;
  }
}
@media screen and (max-width: 519px) {
  .home-gallery-title .home-util-title-en {
    letter-spacing: 0.36rem;
    padding-left: 0.5rem;
  }
}
.home-gallery-title::before {
  position: absolute;
  content: "";
  display: inline-block;
  background: url(../img/img_balloon-gallery.png) left top no-repeat;
  background-size: 100% auto;
  width: 265px;
  height: 138px;
  top: -100px;
  left: calc(50% - 344px);
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-gallery-title::before {
    width: 200px;
    height: 104px;
    top: -116px;
    left: calc(50% - 211px);
  }
}
@media screen and (max-width: 519px) {
  .home-gallery-title::before {
    width: 200px;
    height: 104px;
    top: -117px;
    left: calc(50% - 211px);
  }
}

.home-gallery-list {
  display: flex;
  column-gap: 2.4rem;
  margin-top: 4rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-gallery-list {
    flex-wrap: wrap;
    column-gap: 3rem;
    row-gap: 3rem;
  }
}
@media screen and (max-width: 519px) {
  .home-gallery-list {
    flex-wrap: wrap;
    column-gap: 2rem;
    row-gap: 2rem;
  }
}

#sb_instagram {
  margin-top: 4rem;
}

#sbi_images {
  display: flex;
  column-gap: 2.4rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  #sbi_images {
    flex-wrap: wrap;
    column-gap: 2rem;
    row-gap: 2rem;
  }
}
@media screen and (max-width: 519px) {
  #sbi_images {
    flex-wrap: wrap;
    column-gap: 2rem;
    row-gap: 2rem;
  }
}

.sbi_tab_col_2 #sbi_images .sbi_item {
  width: calc(50% - 15px) !important;
}

.sbi_mob_col_2 #sbi_images .sbi_item {
  width: calc(50% - 10px) !important;
}

@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-gallery-item {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 519px) {
  .home-gallery-item {
    width: calc(50% - 10px);
  }
}
.home-gallery-button {
  margin-top: 6rem;
  margin-right: 0.6rem;
  text-align: center;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-gallery-button {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 519px) {
  .home-gallery-button {
    margin-top: 4rem;
  }
}

.home-news {
  padding: 120px 0 177px;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-news {
    padding: 120px 0 166px;
  }
}
@media screen and (max-width: 519px) {
  .home-news {
    padding: 120px 0 166px;
  }
}

.home-news-inner {
  position: relative;
}
.home-news-inner::before {
  position: absolute;
  content: "";
  display: inline-block;
  background: url(../img/bg_plate.png) left top no-repeat;
  background-size: 100% auto;
  width: 354px;
  height: 320px;
  top: -267px;
  left: -88px;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-news-inner::before {
    width: 204.5px;
    height: 185px;
    top: -126px;
    left: -52px;
  }
}
@media screen and (max-width: 519px) {
  .home-news-inner::before {
    width: 204.5px;
    height: 185px;
    top: -126px;
    left: -52px;
  }
}

.home-news-title {
  text-align: center;
}
.home-news-title .home-util-title-en {
  letter-spacing: 0.9rem;
  padding-left: 0.9rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-news-title .home-util-title-en {
    letter-spacing: 0.6rem;
    padding-left: 0.7rem;
  }
}
@media screen and (max-width: 519px) {
  .home-news-title .home-util-title-en {
    letter-spacing: 0.3rem;
    padding-left: 0.5rem;
  }
}

.home-news-body {
  display: flex;
  column-gap: 3.8rem;
  max-width: 1140px;
  margin: 4rem auto 0;
  padding: 0 2rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-news-body {
    flex-direction: column;
  }
}
@media screen and (max-width: 519px) {
  .home-news-body {
    flex-direction: column;
  }
}

.home-news-first-item {
  position: relative;
  width: 46.3636363636%;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-news-first-item {
    width: 100%;
  }
}
@media screen and (max-width: 519px) {
  .home-news-first-item {
    width: 100%;
  }
}

.home-news-first-link {
  display: inline-block;
  color: #222;
  transition: all 0.4s ease 0s;
}
@media (hover: hover) {
  .home-news-first-link:where(:any-link, :enabled, summary):hover .home-news-first-image img {
    transform: scale(1.1);
  }
}

.home-news-first-category {
  position: absolute;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4375;
  background-color: #222;
  color: #fff;
  padding: 3px 8px 3px 13px;
  top: 20px;
  left: -8px;
  z-index: 10;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-news-first-category {
    font-size: 1.2rem;
    line-height: 1.4166666667;
    padding: 3px 11px 3px 13px;
  }
}
@media screen and (max-width: 519px) {
  .home-news-first-category {
    font-size: 1.2rem;
    line-height: 1.4166666667;
    padding: 3px 11px 3px 13px;
  }
}
.home-news-first-category::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 4px 0;
  border-color: transparent #aaa transparent transparent;
  bottom: -4px;
  left: 0;
}
.home-news-first-category::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14.5px 9px 14.5px 0;
  border-color: #222 transparent #222 #222;
  top: 0;
  right: -8px;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-news-first-category::after {
    border-width: 11.5px 8px 11.5px 0;
  }
}
@media screen and (max-width: 519px) {
  .home-news-first-category::after {
    border-width: 11.5px 8px 11.5px 0;
  }
}

.home-news-first-image {
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .home-news-first-image img {
    transition: all 0.4s ease 0s;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-news-first-image img {
    transition: all 0.4s ease 0s;
  }
}

.home-news-first-title {
  margin-top: 1.5rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-news-first-title {
    margin-top: 1rem;
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}
@media screen and (max-width: 519px) {
  .home-news-first-title {
    margin-top: 1rem;
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}

.home-news-first-text {
  margin-top: 1.1rem;
  font-size: 1.4rem;
  line-height: 1.7142857143;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-news-first-text {
    margin-top: 1rem;
    font-size: 1.2rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 519px) {
  .home-news-first-text {
    margin-top: 1rem;
    font-size: 1.2rem;
    line-height: 1.5;
  }
}

.home-news-first-date {
  margin-top: 0.9rem;
  font-size: 1.4rem;
  line-height: 1.7142857143;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-news-first-date {
    margin-top: 1.1rem;
    font-size: 1.2rem;
    line-height: 1.4166666667;
  }
}
@media screen and (max-width: 519px) {
  .home-news-first-date {
    margin-top: 1.1rem;
    font-size: 1.2rem;
    line-height: 1.4166666667;
  }
}

.home-news-other-list {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  column-gap: 4.4rem;
  row-gap: 3.2rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-news-other-list {
    margin-top: 2rem;
    width: 100%;
    column-gap: 2rem;
    row-gap: 1.9rem;
  }
}
@media screen and (max-width: 519px) {
  .home-news-other-list {
    margin-top: 2rem;
    width: 100%;
    column-gap: 2rem;
    row-gap: 1.9rem;
  }
}

.home-news-other-item {
  position: relative;
  width: calc(50% - 22px);
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-news-other-item {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 519px) {
  .home-news-other-item {
    width: calc(50% - 10px);
  }
}

.home-news-other-link {
  display: inline-block;
  color: #222;
  transition: all 0.4s ease 0s;
}
@media (hover: hover) {
  .home-news-other-link:where(:any-link, :enabled, summary):hover .home-news-other-image img {
    transform: scale(1.1);
  }
}

.home-news-other-category {
  position: absolute;
  font-size: 1.2rem;
  font-weight: 700;
  background-color: #222;
  color: #fff;
  padding: 5px 9px 5px 15px;
  top: 13px;
  left: -8px;
  z-index: 10;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-news-other-category {
    padding: 4px 5px 6px 10px;
    top: 11.5px;
  }
}
@media screen and (max-width: 519px) {
  .home-news-other-category {
    padding: 4px 5px 6px 10px;
    top: 10px;
  }
}
.home-news-other-category::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 4px 0;
  border-color: transparent #aaa transparent transparent;
  bottom: -4px;
  left: 0;
}
.home-news-other-category::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 8px 11px 0;
  border-color: #222 transparent #222 #222;
  top: 0;
  right: -8px;
}

.home-news-other-image {
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .home-news-other-image img {
    transition: all 0.4s ease 0s;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-news-other-image img {
    transition: all 0.4s ease 0s;
  }
}

.home-news-other-title {
  margin-top: 1.1rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.7142857143;
  text-align: left;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-news-other-title {
    margin-top: 0.8rem;
    font-size: 1.2rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 519px) {
  .home-news-other-title {
    margin-top: 0.8rem;
    font-size: 1.2rem;
    line-height: 1.5;
  }
}

.home-news-other-date {
  margin-top: 1rem;
  font-size: 1.2rem;
  line-height: 1.4166666667;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-news-other-date {
    margin-top: 0.8rem;
  }
}
@media screen and (max-width: 519px) {
  .home-news-other-date {
    margin-top: 0.8rem;
  }
}

.home-news-button {
  margin-top: 6rem;
  margin-right: 1.4rem;
  text-align: center;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-news-button {
    margin-top: 4rem;
    margin-right: 0.6rem;
  }
}
@media screen and (max-width: 519px) {
  .home-news-button {
    margin-top: 4rem;
    margin-right: 0.6rem;
  }
}

/* ===============================================
2) ACCESS & FOOTER [DONE]
=============================================== */
.access-outer {
  background-color: #eae0d5;
  padding: 8rem 0;
}

.home-access-inner {
  position: relative;
}
.home-access-inner::before {
  position: absolute;
  content: "";
  display: inline-block;
  background: url(../img/bg_bread.png) left top no-repeat;
  background-size: 100% auto;
  width: 281px;
  height: 270px;
  top: -215px;
  right: -60px;
}
@media screen and (min-width: 1200px) {
  .home-access-inner::before {
    width: 374px;
    height: 359px;
    top: -258px;
    right: -78px;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-access-inner::before {
    width: 188px;
    height: 180px;
    top: -181px;
    right: -34px;
  }
}
@media screen and (max-width: 519px) {
  .home-access-inner::before {
    width: 188px;
    height: 180px;
    top: -181px;
    right: -34px;
  }
}

.access-inner {
  position: relative;
}
.access-inner::before {
  position: absolute;
  content: "";
  display: inline-block;
  background: url(../img/bg_bread.png) left top no-repeat;
  background-size: 100% auto;
  width: 281px;
  height: 270px;
  top: -215px;
  right: -60px;
}
@media screen and (min-width: 1200px) {
  .access-inner::before {
    width: 374px;
    height: 359px;
    top: -257px;
    right: -72px;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .access-inner::before {
    width: 188px;
    height: 180px;
    top: -181px;
    right: -34px;
  }
}
@media screen and (max-width: 519px) {
  .access-inner::before {
    width: 188px;
    height: 180px;
    top: -181px;
    right: -34px;
  }
}

.access-title {
  position: relative;
  text-align: center;
}
.access-title::before {
  position: absolute;
  content: "";
  display: inline-block;
  background: url(../img/img_balloon-access.png) left top no-repeat;
  background-size: 100% auto;
  width: 232px;
  height: 200px;
  top: -131px;
  left: calc(50% - 304px);
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .access-title::before {
    width: 200px;
    height: 172px;
    top: -122px;
    left: calc(50% - 219px);
  }
}
@media screen and (max-width: 519px) {
  .access-title::before {
    width: 200px;
    height: 172px;
    top: -122px;
    left: calc(50% - 219px);
  }
}

.access-title-en {
  padding-left: 1.2rem;
  letter-spacing: 1rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .access-title-en {
    padding-left: 0.4rem;
    letter-spacing: 0.35rem;
  }
}
@media screen and (max-width: 519px) {
  .access-title-en {
    padding-left: 0.4rem;
    letter-spacing: 0.35rem;
  }
}

.access-title-jp {
  margin-top: 0.7rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .access-title-jp {
    margin-top: 0.45rem;
  }
}
@media screen and (max-width: 519px) {
  .access-title-jp {
    margin-top: 0.45rem;
  }
}

.access-container {
  margin: 4rem auto 0;
  max-width: 768px;
  padding: 0 4rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .access-container {
    max-width: 540px;
    margin: 3.9rem auto 0;
    padding: 0 2rem;
  }
}
@media screen and (max-width: 519px) {
  .access-container {
    max-width: 540px;
    margin: 3.9rem auto 0;
    padding: 0 2rem;
  }
}

.access-map {
  border: 10px solid #fff;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .access-map {
    border: 5px solid #fff;
  }
}
@media screen and (max-width: 519px) {
  .access-map {
    border: 5px solid #fff;
  }
}

.access-map-wrap {
  width: 100%;
  padding-top: 54.7965116279%;
  position: relative;
}
.access-map-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.access-detail {
  font-size: 1.4rem;
  font-weight: 700;
}
@media screen and (min-width: 960px) {
  .access-detail {
    display: flex;
    margin: 4rem auto 0;
    column-gap: 4rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .access-detail {
    display: flex;
    margin: 4rem auto 0;
    column-gap: 4rem;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .access-detail {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 519px) {
  .access-detail {
    margin-top: 4rem;
  }
}

@media screen and (min-width: 960px) {
  .access-detail-column {
    flex-basis: 324px;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .access-detail-column {
    flex-basis: 324px;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .access-detail-column:nth-child(2) {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .access-detail-column:nth-child(2) {
    margin-top: 2rem;
  }
}

.access-detail-item {
  display: flex;
  padding-bottom: 1rem;
  border-bottom: 1px solid #222;
}
.access-detail-item:not(:first-child) {
  margin-top: 2.4rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .access-detail-item:not(:first-child) {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .access-detail-item:not(:first-child) {
    margin-top: 2rem;
  }
}

.access-detail-term {
  width: 56px;
  line-height: 1.4285714286;
}

.access-detail-text {
  margin-left: 2.4rem;
  line-height: 1.7142857143;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .access-detail-text {
    margin-left: 2.3rem;
  }
}
@media screen and (max-width: 519px) {
  .access-detail-text {
    margin-left: 2.3rem;
  }
}

.footer {
  background-color: #382620;
  padding: 4.2rem 0 2.2rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .footer {
    padding: 4.2rem 0 2.4rem;
  }
}
@media screen and (max-width: 519px) {
  .footer {
    padding: 4.2rem 0 2.4rem;
  }
}

.home-footer-inner {
  position: relative;
}
.home-footer-inner::before {
  position: absolute;
  content: "";
  display: inline-block;
  background: url(../img/bg_coffee-beans3.png) left top no-repeat;
  background-size: 100% auto;
  width: 224px;
  height: 201px;
  top: -120px;
  left: -65px;
}
@media screen and (min-width: 1200px) {
  .home-footer-inner::before {
    width: 322px;
    height: 288px;
    top: -188px;
    left: -66px;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-footer-inner::before {
    width: 175px;
    height: 257px;
    top: -100px;
    left: -50px;
  }
}
@media screen and (max-width: 519px) {
  .home-footer-inner::before {
    width: 126px;
    height: 113px;
    top: -95px;
    left: -35px;
  }
}

.footer-inner {
  position: relative;
}
.footer-inner::before {
  position: absolute;
  content: "";
  display: inline-block;
  background: url(../img/bg_coffee-beans3.png) left top no-repeat;
  background-size: 100% auto;
  width: 224px;
  height: 201px;
  top: -120px;
  left: -65px;
}
@media screen and (min-width: 1200px) {
  .footer-inner::before {
    width: 322px;
    height: 288px;
    top: -187px;
    left: -72px;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .footer-inner::before {
    width: 175px;
    height: 257px;
    top: -100px;
    left: -50px;
  }
}
@media screen and (max-width: 519px) {
  .footer-inner::before {
    width: 126px;
    height: 113px;
    top: -95px;
    left: -35px;
  }
}

.footer-sns {
  display: flex;
  justify-content: center;
  padding-left: 0.3rem;
}

.footer-sns-item:not(:first-child) {
  margin-left: 2.8rem;
}

.footer-sns-link {
  font-size: 2rem;
  color: #fff;
  transition: all 0.4s ease 0s;
}
@media (hover: hover) {
  .footer-sns-link:where(:any-link, :enabled, summary):hover {
    opacity: 0.3;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .footer-sns-link {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 519px) {
  .footer-sns-link {
    font-size: 2.8rem;
  }
}

.footer-copyright {
  margin-top: 4.5rem;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .footer-copyright {
    margin-top: 4.4rem;
  }
}
@media screen and (max-width: 519px) {
  .footer-copyright {
    margin-top: 4.4rem;
  }
}

/* ===============================================
# PAGE UTILS [DONE]
=============================================== */
.util-firstview {
  position: relative;
  padding: 1rem;
  width: 100%;
  height: 320px;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .util-firstview {
    padding: 1rem;
    height: 220px;
  }
}
@media screen and (max-width: 519px) {
  .util-firstview {
    padding: 0.6rem;
    height: 120px;
  }
}
.util-firstview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.util-firstview-line {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  border: 2px solid #fff;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .util-firstview-line {
    height: 200px;
  }
}
@media screen and (max-width: 519px) {
  .util-firstview-line {
    height: 108px;
  }
}
.util-firstview-line:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border: 1px solid #fff;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .util-firstview-line:before {
    width: calc(100% - 6px);
    height: calc(100% - 6px);
  }
}
@media screen and (max-width: 519px) {
  .util-firstview-line:before {
    width: calc(100% - 6px);
    height: calc(100% - 6px);
  }
}

.util-title {
  position: relative;
}

.util-title-en {
  font-size: 7.2rem;
  font-weight: 700;
  letter-spacing: 1.44rem;
  line-height: 1.2638888889;
  font-family: "Amatic SC", cursive;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .util-title-en {
    font-size: 5.2rem;
    letter-spacing: 1.04rem;
    line-height: 1.2692307692;
  }
}
@media screen and (max-width: 519px) {
  .util-title-en {
    font-size: 3.2rem;
    letter-spacing: 0.64rem;
    line-height: 1.28125;
  }
}

.util-title-jp {
  margin-top: 0.6rem;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.128rem;
  line-height: 1.4375;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .util-title-jp {
    margin-top: 0;
    font-size: 1.2rem;
    letter-spacing: 0.096rem;
    line-height: 1.4166666667;
  }
}
@media screen and (max-width: 519px) {
  .util-title-jp {
    margin-top: 0;
    font-size: 1.2rem;
    letter-spacing: 0.096rem;
    line-height: 1.4166666667;
  }
}

.breadcrumb {
  display: flex;
  max-width: 1140px;
  margin: 1.3rem auto 0;
  padding: 0 2rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.7142857143;
  color: #382620;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .breadcrumb {
    margin-top: 0.4rem;
    padding: 0 1rem;
    font-size: 1.2rem;
    line-height: 2;
  }
}
@media screen and (max-width: 519px) {
  .breadcrumb {
    margin-top: 0.1rem;
    padding: 0 1rem;
    font-size: 1.2rem;
    line-height: 2;
  }
}
.breadcrumb .post {
  padding: 0 1.6rem;
  color: #382620;
}
.breadcrumb .archive {
  padding: 0 1.6rem;
  color: #382620;
}

.breadcrumb-nav-link {
  color: #222;
  margin-right: 1.6rem;
  transition: all 0.4s ease 0s;
}
@media (hover: hover) {
  .breadcrumb-nav-link:where(:any-link, :enabled, summary):hover {
    opacity: 0.3;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .breadcrumb-nav-link {
    margin-left: 0.55rem;
  }
}
@media screen and (max-width: 519px) {
  .breadcrumb-nav-link {
    margin-left: 0.55rem;
  }
}

.breadcrumb-nav-link-second {
  color: #222;
  margin-left: 1.6rem;
  margin-right: 1.6rem;
  transition: all 0.4s ease 0s;
}
@media (hover: hover) {
  .breadcrumb-nav-link-second:where(:any-link, :enabled, summary):hover {
    opacity: 0.3;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .breadcrumb-nav-link-second {
    margin-left: 0.55rem;
  }
}
@media screen and (max-width: 519px) {
  .breadcrumb-nav-link-second {
    margin-left: 0.55rem;
  }
}

/* ===============================================
3) CONCEPT [DONE]
=============================================== */
.concept-firstview {
  background: url(../img/img_firstview_concept.png) no-repeat center center/cover;
}
@media screen and (max-width: 519px) {
  .concept-firstview {
    background: url(../img/img_firstview_concept_sp.png) no-repeat center center/cover;
  }
}

.concept-title-en {
  padding-left: 1.3rem;
  letter-spacing: 1.34rem;
}
@media screen and (max-width: 519px) {
  .concept-title-en {
    padding-left: 0.6rem;
    letter-spacing: 0.6rem;
  }
}

@media screen and (max-width: 519px) {
  .concept-title-jp {
    padding-left: 0.2rem;
  }
}

.concept {
  padding: 80px 0 250px;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .concept {
    padding: 45px 0 197px;
  }
}
@media screen and (max-width: 519px) {
  .concept {
    padding: 45px 0 197px;
  }
}

.concept-coffee-outer {
  position: relative;
}
.concept-coffee-outer::after {
  position: absolute;
  content: "";
  background-color: #eae0d5;
  width: 76.875%;
  height: 200px;
  bottom: -100px;
  right: 0;
  z-index: -1;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .concept-coffee-outer::after {
    width: 89.3333333333%;
    height: 100px;
    bottom: -50px;
  }
}
@media screen and (max-width: 519px) {
  .concept-coffee-outer::after {
    width: 89.3333333333%;
    height: 100px;
    bottom: -50px;
  }
}

@media screen and (min-width: 960px) {
  .concept-coffee-inner {
    display: flex;
    align-items: center;
    column-gap: 7rem;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .concept-coffee-inner {
    display: flex;
    align-items: center;
    column-gap: 4rem;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 40px;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .concept-coffee-inner {
    max-width: 540px;
    margin: 0 auto;
    padding: 0 20px;
  }
}
@media screen and (max-width: 519px) {
  .concept-coffee-inner {
    padding: 0 20px;
  }
}

@media screen and (min-width: 960px) {
  .concept-coffee-body {
    width: 390px;
    flex-shrink: 0.2;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .concept-coffee-body {
    width: 390px;
    flex-shrink: 0.2;
  }
}

.concept-coffee-message {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 2.1428571429;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .concept-coffee-message .hide-tab {
    display: none;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .concept-coffee-message {
    font-size: 2rem;
    line-height: 2;
  }
}
@media screen and (max-width: 519px) {
  .concept-coffee-message {
    font-size: 2rem;
    line-height: 2;
  }
}

.concept-coffee-text {
  margin-top: 2.5rem;
  padding-bottom: 0.8rem;
  font-size: 1.4rem;
  line-height: 2;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .concept-coffee-text {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 519px) {
  .concept-coffee-text {
    margin-top: 3rem;
  }
}

@media screen and (min-width: 520px) and (max-width: 767px) {
  .concept-coffee-image {
    margin-top: 2.7rem;
  }
}
@media screen and (max-width: 519px) {
  .concept-coffee-image {
    margin-top: 2.7rem;
  }
}
.concept-pasta {
  margin-top: 200px;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .concept-pasta {
    margin-top: 126px;
  }
}
@media screen and (max-width: 519px) {
  .concept-pasta {
    margin-top: 126px;
  }
}

.concept-pasta-outer {
  position: relative;
}
.concept-pasta-outer::after {
  position: absolute;
  content: "";
  background-color: #eae0d5;
  width: 45.3125%;
  height: calc(100% - 100px);
  bottom: -60px;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .concept-pasta-outer::after {
    width: 75.7333333333%;
    height: 227px;
    bottom: -23px;
  }
}
@media screen and (max-width: 519px) {
  .concept-pasta-outer::after {
    width: 75.7333333333%;
    height: 227px;
    bottom: -23px;
  }
}

@media screen and (min-width: 960px) {
  .concept-pasta-inner {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    column-gap: 7rem;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .concept-pasta-inner {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    column-gap: 4rem;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 40px;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .concept-pasta-inner {
    max-width: 540px;
    margin: 0 auto;
    padding: 0 20px;
  }
}
@media screen and (max-width: 519px) {
  .concept-pasta-inner {
    padding: 0 20px;
  }
}

@media screen and (min-width: 960px) {
  .concept-pasta-body {
    width: 390px;
    flex-shrink: 0.5;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .concept-pasta-body {
    width: 390px;
    flex-shrink: 0.5;
  }
}

.concept-pasta-message {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 2.1428571429;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .concept-pasta-message {
    font-size: 2rem;
    line-height: 2;
  }
}
@media screen and (max-width: 519px) {
  .concept-pasta-message {
    font-size: 2rem;
    line-height: 2;
  }
}

.concept-pasta-text {
  margin-top: 2.5rem;
  padding-bottom: 0.8rem;
  font-size: 1.4rem;
  line-height: 2;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .concept-pasta-text {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 519px) {
  .concept-pasta-text {
    margin-top: 3rem;
  }
}

@media screen and (min-width: 520px) and (max-width: 767px) {
  .concept-pasta-image {
    margin-top: 2.7rem;
  }
}
@media screen and (max-width: 519px) {
  .concept-pasta-image {
    margin-top: 2.7rem;
  }
}
.concept-bread {
  margin-top: 200px;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .concept-bread {
    margin-top: 98px;
  }
}
@media screen and (max-width: 519px) {
  .concept-bread {
    margin-top: 98px;
  }
}

.concept-bread-outer {
  position: relative;
}
.concept-bread-outer::after {
  position: absolute;
  content: "";
  background-color: #eae0d5;
  width: 31.25%;
  height: 130%;
  bottom: -80px;
  right: 0;
  z-index: -1;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .concept-bread-outer::after {
    width: 49.0666666667%;
    height: 239px;
    bottom: -37px;
    right: 20px;
  }
}
@media screen and (max-width: 519px) {
  .concept-bread-outer::after {
    width: 49.0666666667%;
    height: 239px;
    bottom: -37px;
    right: 20px;
  }
}

@media screen and (min-width: 960px) {
  .concept-bread-inner {
    display: flex;
    align-items: center;
    column-gap: 7rem;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .concept-bread-inner {
    display: flex;
    align-items: center;
    column-gap: 4rem;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 40px;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .concept-bread-inner {
    max-width: 540px;
    margin: 0 auto;
    padding: 0 20px;
  }
}
@media screen and (max-width: 519px) {
  .concept-bread-inner {
    padding: 0 20px;
  }
}

@media screen and (min-width: 960px) {
  .concept-bread-body {
    width: 390px;
    flex-shrink: 0.2;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .concept-bread-body {
    width: 390px;
    flex-shrink: 0.5;
  }
}

.concept-bread-message {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 2.1428571429;
}
.concept-bread-message .view-tab {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .concept-bread-message .view-tab {
    display: block;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .concept-bread-message {
    font-size: 2rem;
    line-height: 2;
  }
}
@media screen and (max-width: 519px) {
  .concept-bread-message {
    font-size: 2rem;
    line-height: 2;
  }
}

.concept-bread-text {
  margin-top: 5.2rem;
  padding-bottom: 1rem;
  font-size: 1.4rem;
  line-height: 2;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .concept-bread-text {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 519px) {
  .concept-bread-text {
    margin-top: 3rem;
  }
}

@media screen and (min-width: 520px) and (max-width: 767px) {
  .concept-bread-image {
    margin-top: 2.6rem;
  }
}
@media screen and (max-width: 519px) {
  .concept-bread-image {
    margin-top: 2.6rem;
  }
}
.concept-bread-image img {
  width: 100%;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .concept-bread-image img {
    width: 87.7611940299%;
  }
}
@media screen and (max-width: 519px) {
  .concept-bread-image img {
    width: 87.7611940299%;
  }
}

/* ===============================================
4) MENU [DONE]
=============================================== */
.menu-firstview {
  background: url(../img/img_firstview_menu.png) no-repeat center center/cover;
}
@media screen and (max-width: 519px) {
  .menu-firstview {
    background: url(../img/img_firstview_menu_sp.png) no-repeat center center/cover;
  }
}

.menu-title-en {
  padding-left: 1.3rem;
  letter-spacing: 1.24rem;
}
@media screen and (max-width: 519px) {
  .menu-title-en {
    padding-left: 0.6rem;
    letter-spacing: 0.5rem;
  }
}

@media screen and (max-width: 519px) {
  .menu-title-jp {
    padding-left: 0.2rem;
  }
}

.menu {
  padding: 81px 0 173px;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .menu {
    padding: 56px 0 160px;
  }
}
@media screen and (max-width: 519px) {
  .menu {
    padding: 56px 0 160px;
  }
}

.menu-category {
  padding: 0 40px;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .menu-category {
    padding: 0 20px;
    margin: 0 auto;
    max-width: 540px;
  }
}
@media screen and (max-width: 519px) {
  .menu-category {
    padding: 0 20px;
    margin: 0 auto;
    max-width: 540px;
  }
}

.menu-category-list {
  display: flex;
  justify-content: center;
  column-gap: 1.4rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .menu-category-list {
    flex-wrap: wrap;
    column-gap: 1.3rem;
    row-gap: 1.2rem;
  }
}
@media screen and (max-width: 519px) {
  .menu-category-list {
    flex-wrap: wrap;
    column-gap: 1.3rem;
    row-gap: 1.2rem;
  }
}

.menu-category-item {
  width: 200px;
  height: 69px;
  max-width: 100%;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .menu-category-item {
    width: calc(50% - 6.5px);
    height: 64px;
  }
}
@media screen and (max-width: 519px) {
  .menu-category-item {
    width: calc(50% - 6.5px);
    height: 64px;
  }
}

.menu-category-item-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-width: 100%;
  background: #888;
  line-height: 1.25;
  text-align: center;
  position: relative;
  transition: all 0.4s ease 0s;
}
@media (hover: hover) {
  .menu-category-item-link:where(:any-link, :enabled, summary):hover {
    background-color: #382620;
  }
}
.menu-category-item-link:before {
  content: "";
  position: absolute;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  max-width: 100%;
  border: 1px solid #fff;
  background: transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.menu-category-item-link.is-active {
  background-color: #382620;
}

.menu-category-item-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 519px) {
  .menu-category-item-name {
    font-size: 1.4rem;
  }
}

.menu-food {
  max-width: 1180px;
  margin: 8rem auto 0;
  padding: 0 40px;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .menu-food {
    max-width: 540px;
    margin: 6rem auto 0;
    padding: 0 20px;
  }
}
@media screen and (max-width: 519px) {
  .menu-food {
    max-width: 540px;
    margin: 6rem auto 0;
    padding: 0 20px;
  }
}

.menu-food-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem 4rem;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .menu-food-list {
    gap: 2.4rem 2.4rem;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .menu-food-list {
    gap: 2.4rem 1.6rem;
  }
}
@media screen and (max-width: 519px) {
  .menu-food-list {
    gap: 2.35rem 1.1rem;
  }
}

.menu-food-item {
  width: calc(25% - 30px);
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .menu-food-item {
    width: calc(25% - 18px);
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .menu-food-item {
    width: calc(50% - 8px);
  }
}
@media screen and (max-width: 519px) {
  .menu-food-item {
    width: calc(50% - 9px);
  }
}

.menu-food-item-name {
  margin-top: 1.2rem;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4285714286;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .menu-food-item-name {
    margin-top: 0.8rem;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 519px) {
  .menu-food-item-name {
    margin-top: 0.8rem;
    font-size: 1.4rem;
  }
}

.menu-food-item-price {
  font-size: 2.4rem;
  font-family: "Damion", cursive;
  text-align: center;
  line-height: 1.375;
  padding-right: 0.3rem;
}
@media screen and (max-width: 519px) {
  .menu-food-item-price {
    padding-right: 0.5rem;
  }
}

/* ===============================================
5) NEWS [DONE]
=============================================== */
.news-firstview {
  background: url(../img/img_firstview_news.png) no-repeat center center/cover;
}
@media screen and (max-width: 519px) {
  .news-firstview {
    background: url(../img/img_firstview_news_sp.png) no-repeat center center/cover;
  }
}

.news-title-en {
  padding-left: 1.4rem;
  letter-spacing: 1.3rem;
}
@media screen and (max-width: 519px) {
  .news-title-en {
    padding-left: 0.75rem;
    letter-spacing: 0.6rem;
  }
}

@media screen and (max-width: 519px) {
  .news-title-jp {
    padding-left: 0.2rem;
  }
}

.news {
  max-width: 1180px;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .news {
    display: flex;
    justify-content: space-between;
    column-gap: 2rem;
    padding: 80px 40px 172px;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .news {
    display: flex;
    justify-content: space-between;
    column-gap: 2rem;
    padding: 80px 20px 172px;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .news {
    padding: 45px 0 161px;
  }
}
@media screen and (max-width: 519px) {
  .news {
    padding: 45px 0 161px;
  }
}

@media screen and (min-width: 960px) {
  .news-left {
    max-width: 728px;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .news-left {
    max-width: 100%;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .news-left {
    padding: 0 20px;
    margin: 0 auto;
    max-width: 540px;
  }
}
@media screen and (max-width: 519px) {
  .news-left {
    padding: 0 20px;
    margin: 0 auto;
    max-width: 540px;
  }
}

@media screen and (min-width: 960px) {
  .news-right {
    max-width: 300px;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .news-right {
    max-width: 300px;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .news-right {
    padding: 0 20px;
    margin: 6rem auto 0;
    max-width: 540px;
  }
}
@media screen and (max-width: 519px) {
  .news-right {
    padding: 0 20px;
    margin: 6rem auto 0;
    max-width: 540px;
  }
}

.news-head {
  font-size: 2.4rem;
  line-height: 1.4583333333;
  font-weight: 700;
  margin-bottom: 2.4rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .news-head {
    font-size: 2rem;
    line-height: 2;
    margin-bottom: 3.4rem;
  }
}
@media screen and (max-width: 519px) {
  .news-head {
    font-size: 2rem;
    line-height: 2;
    margin-bottom: 3.4rem;
  }
}

.news-list {
  display: flex;
  flex-wrap: wrap;
  gap: 3.9rem 4rem;
  padding-left: 0.8rem;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .news-list {
    gap: 2.5rem 2rem;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .news-list {
    gap: 2.3rem 2rem;
    padding-left: 0;
  }
}
@media screen and (max-width: 519px) {
  .news-list {
    gap: 2.3rem 2rem;
    padding-left: 0;
  }
}

.news-item {
  position: relative;
  width: calc(50% - 20px);
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .news-item {
    width: calc(50% - 10px);
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .news-item {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 519px) {
  .news-item {
    width: calc(50% - 10px);
  }
}

.news-item-link {
  display: inline-block;
  color: #222;
  transition: all 0.4s ease 0s;
}
@media (hover: hover) {
  .news-item-link:where(:any-link, :enabled, summary):hover .news-item-image img {
    transform: scale(1.1);
  }
}

.news-item-category {
  position: absolute;
  font-size: 1.4rem;
  font-weight: 700;
  background-color: #222;
  color: #fff;
  padding: 5px 8px 7px 15px;
  top: 16px;
  left: -8px;
  z-index: 10;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .news-item-category {
    top: 12px;
  }
}
@media screen and (max-width: 519px) {
  .news-item-category {
    font-size: 1.2rem;
    padding: 5px 6px 5px 10px;
    top: 10px;
  }
}
.news-item-category::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 4px 0;
  border-color: transparent #aaa transparent transparent;
  bottom: -4px;
  left: 0;
}
.news-item-category::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 13px 9px 13px 0;
  border-color: #222 transparent #222 #222;
  top: 0;
  right: -8px;
}
@media screen and (max-width: 519px) {
  .news-item-category::after {
    border-width: 11px 9px 11px 0;
  }
}

.news-item-image {
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .news-item-image img {
    transition: all 0.4s ease 0s;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .news-item-image img {
    transition: all 0.4s ease 0s;
  }
}

.news-item-title {
  margin-top: 1.2rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .news-item-title {
    margin-top: 0.8rem;
    font-size: 1.2rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 519px) {
  .news-item-title {
    margin-top: 0.8rem;
    font-size: 1.2rem;
    line-height: 1.5;
  }
}

.news-item-date {
  margin-top: 1.2rem;
  font-size: 1.4rem;
  line-height: 1.4285714286;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .news-item-date {
    margin-top: 0.8rem;
    font-size: 1.2rem;
    line-height: 1.4166666667;
  }
}
@media screen and (max-width: 519px) {
  .news-item-date {
    margin-top: 0.8rem;
    font-size: 1.2rem;
    line-height: 1.4166666667;
  }
}

.news-pagination {
  display: flex;
  justify-content: center;
  column-gap: 1.2rem;
  margin-top: 3.9rem;
}

.page-numbers {
  display: inline-block;
  width: 40px;
  max-width: 100%;
  height: 40px;
  line-height: 3.7rem;
  font-size: 1.6rem;
  text-align: center;
  color: #382620;
  background-color: #fff;
  border-radius: 50px;
  border: 1px solid #382620;
  transition: all 0.4s ease 0s;
}
.page-numbers.current {
  color: #fff;
  background-color: #382620;
}
.page-numbers.prev {
  position: relative;
}
.page-numbers.prev::before {
  position: absolute;
  content: "";
  display: inline-block;
  background: url("../img/arrow-prev.png") center center no-repeat;
  background-size: 100% auto;
  width: 6px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page-numbers.next {
  position: relative;
}
.page-numbers.next::before {
  position: absolute;
  content: "";
  display: inline-block;
  background: url("../img/arrow-next.png") center center no-repeat;
  background-size: 100% auto;
  width: 6px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (hover: hover) {
  .page-numbers:where(:any-link, :enabled, summary):hover {
    background-color: #382620;
    color: #fff;
  }
  .page-numbers:where(:any-link, :enabled, summary):hover.prev {
    position: relative;
  }
  .page-numbers:where(:any-link, :enabled, summary):hover.prev::before {
    position: absolute;
    content: "";
    display: inline-block;
    background: url("../img/arrow-prev-white.png") center center no-repeat;
    background-size: 100% auto;
    width: 6px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .page-numbers:where(:any-link, :enabled, summary):hover.next {
    position: relative;
  }
  .page-numbers:where(:any-link, :enabled, summary):hover.next::before {
    position: absolute;
    content: "";
    display: inline-block;
    background: url("../img/arrow-next-white.png") center center no-repeat;
    background-size: 100% auto;
    width: 6px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.news-latest {
  padding: 2.4rem 2rem 2rem;
  background-color: #fff;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .news-latest {
    padding: 2.5rem 2rem 2rem;
  }
}
@media screen and (max-width: 519px) {
  .news-latest {
    padding: 2.5rem 2rem 2rem;
  }
}

.news-latest-head {
  position: relative;
  font-size: 2rem;
  font-weight: 700;
}
.news-latest-head::after {
  position: absolute;
  content: "";
  background-color: #222;
  width: 32px;
  height: 1px;
  bottom: -25px;
  left: 0;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .news-latest-head::after {
    bottom: -26px;
  }
}
@media screen and (max-width: 519px) {
  .news-latest-head::after {
    bottom: -26px;
  }
}

.news-latest-list {
  margin-top: 4.5rem;
}

.news-latest-item:nth-child(n+2) {
  margin-top: 1.5rem;
}

.news-latest-link {
  display: flex;
  transition: all 0.4s ease 0s;
}
@media (hover: hover) {
  .news-latest-link:where(:any-link, :enabled, summary):hover {
    opacity: 0.3;
  }
}

.news-latest-image {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.news-latest-body {
  max-width: 146px;
  margin-left: 1.4rem;
  color: #222;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .news-latest-body {
    max-width: 100%;
  }
}
@media screen and (max-width: 519px) {
  .news-latest-body {
    max-width: 100%;
  }
}

.news-latest-title {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.7142857143;
}

.news-latest-date {
  margin-top: 1.2rem;
  font-size: 1.2rem;
  line-height: 1.4166666667;
}

.news-category {
  margin-top: 6rem;
  padding: 2.4rem 2rem 2rem;
  background-color: #fff;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .news-category {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 519px) {
  .news-category {
    margin-top: 4rem;
  }
}

.news-category-head {
  position: relative;
  font-size: 2rem;
  font-weight: 700;
}
.news-category-head::after {
  position: absolute;
  content: "";
  background-color: #222;
  width: 32px;
  height: 1px;
  bottom: -25px;
  left: 0;
}

.news-category-list {
  margin-top: 4.4rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .news-category-list {
    margin-top: 4.5rem;
  }
}
@media screen and (max-width: 519px) {
  .news-category-list {
    margin-top: 4.5rem;
  }
}

.news-category-item:nth-child(n+2) {
  margin-top: 1.6rem;
}

.news-category-link {
  display: flex;
  align-items: center;
  transition: all 0.4s ease 0s;
}
@media (hover: hover) {
  .news-category-link:where(:any-link, :enabled, summary):hover {
    opacity: 0.3;
  }
}

.news-category-arrow {
  width: 6px;
}
.news-category-name {
  margin-left: 0.6rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4375;
  color: #222;
}

/* ===============================================
6) POST [DONE]
=============================================== */
.post {
  padding: 79px 40px 171px;
  max-width: 768px;
  margin: 0 auto;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .post {
    max-width: 540px;
    padding: 49px 20px 160px;
  }
}
@media screen and (max-width: 519px) {
  .post {
    padding: 49px 20px 160px;
  }
}

.post-title {
  margin-top: 2.4rem;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4285714286;
  color: #382620;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .post-title {
    margin-top: 2.5rem;
    font-size: 2rem;
    line-height: 1.4;
  }
}
@media screen and (max-width: 519px) {
  .post-title {
    margin-top: 2.5rem;
    font-size: 2rem;
    line-height: 1.4;
  }
}

.post-content {
  display: flex;
  margin-top: 4rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4285714286;
  color: #382620;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .post-content {
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 519px) {
  .post-content {
    margin-top: 2.5rem;
  }
}

.post-date {
  position: relative;
}
.post-date::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 18px;
  background-color: #382620;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .post-date::after {
    right: -21px;
  }
}
@media screen and (max-width: 519px) {
  .post-date::after {
    right: -21px;
  }
}

.post-category {
  margin-left: 4.1rem;
}

.post-body p {
  margin-top: 3.5rem;
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .post-body p {
    margin-top: 3.55rem;
    font-size: 1.4rem;
    line-height: 2;
  }
}
@media screen and (max-width: 519px) {
  .post-body p {
    margin-top: 3.55rem;
    font-size: 1.4rem;
    line-height: 2;
  }
}
.post-body h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4285714286;
  color: #382620;
}
.post-body h2 {
  position: relative;
  margin-top: 9.6rem;
  padding-left: 1.6rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4583333333;
  color: #382620;
  border-left: 6px solid #382620;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .post-body h2 {
    margin-top: 7.6rem;
    padding-left: 1.2rem;
    font-size: 1.8rem;
    line-height: 1.5555555556;
    border-left: 4px solid #382620;
  }
}
@media screen and (max-width: 519px) {
  .post-body h2 {
    margin-top: 7.6rem;
    padding-left: 1.2rem;
    font-size: 1.8rem;
    line-height: 1.5555555556;
    border-left: 4px solid #382620;
  }
}
.post-body h2 + p {
  margin-top: 1.9rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .post-body h2 + p {
    margin-top: 1.8rem;
  }
}
@media screen and (max-width: 519px) {
  .post-body h2 + p {
    margin-top: 1.8rem;
  }
}
.post-body h3 {
  margin-top: 5.1rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2;
  color: #382620;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #382620;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .post-body h3 {
    margin-top: 5.5rem;
    padding-bottom: 1.2rem;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 519px) {
  .post-body h3 {
    margin-top: 5.5rem;
    padding-bottom: 1.2rem;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.post-body h3 + p {
  margin-top: 1.9rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .post-body h3 + p {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .post-body h3 + p {
    margin-top: 2rem;
  }
}
.post-body h4 {
  margin-top: 4.7rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.5;
  color: #382620;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .post-body h4 {
    margin-top: 5.4rem;
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}
@media screen and (max-width: 519px) {
  .post-body h4 {
    margin-top: 5.4rem;
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}
.post-body h4 + p {
  margin-top: 0.7rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .post-body h4 + p {
    margin-top: 1.4rem;
  }
}
@media screen and (max-width: 519px) {
  .post-body h4 + p {
    margin-top: 1.4rem;
  }
}
.post-body h5 {
  margin-top: 4.7rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.5;
  color: #382620;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .post-body h5 {
    margin-top: 5.4rem;
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}
@media screen and (max-width: 519px) {
  .post-body h5 {
    margin-top: 5.4rem;
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}
.post-body h5 + p {
  margin-top: 0.7rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .post-body h5 + p {
    margin-top: 1.4rem;
  }
}
@media screen and (max-width: 519px) {
  .post-body h5 + p {
    margin-top: 1.4rem;
  }
}
.post-body h6 {
  margin-top: 4.7rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.5;
  color: #382620;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .post-body h6 {
    margin-top: 5.4rem;
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}
@media screen and (max-width: 519px) {
  .post-body h6 {
    margin-top: 5.4rem;
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}
.post-body h6 + p {
  margin-top: 0.7rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .post-body h6 + p {
    margin-top: 1.4rem;
  }
}
@media screen and (max-width: 519px) {
  .post-body h6 + p {
    margin-top: 1.4rem;
  }
}
.post-body ul {
  margin-top: 2.2rem;
  margin-left: 2rem;
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .post-body ul {
    margin-top: 2.4rem;
    font-size: 1.4rem;
    line-height: 2;
  }
}
@media screen and (max-width: 519px) {
  .post-body ul {
    margin-top: 2.4rem;
    font-size: 1.4rem;
    line-height: 2;
  }
}
.post-body ol {
  margin-top: 2.2rem;
  margin-left: 2rem;
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .post-body ol {
    margin-top: 2.4rem;
    font-size: 1.4rem;
    line-height: 2;
  }
}
@media screen and (max-width: 519px) {
  .post-body ol {
    margin-top: 2.4rem;
    font-size: 1.4rem;
    line-height: 2;
  }
}
.post-body img {
  margin-top: 3.6rem;
}
.post-body blockquote {
  background: #fff;
  padding: 3.5rem 4rem 3.6rem;
  margin-top: 2.7rem;
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .post-body blockquote {
    padding: 2.1rem 2.4rem 2rem;
    font-size: 1.4rem;
    line-height: 2;
  }
}
@media screen and (max-width: 519px) {
  .post-body blockquote {
    padding: 2.1rem 2.4rem 2rem;
    font-size: 1.4rem;
    line-height: 2;
  }
}
.post-body blockquote p {
  margin-top: 0;
}
.post-body cite {
  display: block;
  font-size: 1.4rem;
  text-align: right;
  margin-top: 1.2rem;
  padding-right: 0.1rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .post-body cite {
    padding-right: 2.1rem;
  }
}
@media screen and (max-width: 519px) {
  .post-body cite {
    padding-right: 2.1rem;
  }
}

.post-pagination {
  margin-top: 5.5rem;
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .post-pagination {
    margin-top: 5.2rem;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 519px) {
  .post-pagination {
    margin-top: 5.2rem;
    font-size: 1.4rem;
  }
}

.post-pagination-prev {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 85px;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .post-pagination-prev {
    width: 75px;
    left: 4px;
  }
}
@media screen and (max-width: 519px) {
  .post-pagination-prev {
    width: 75px;
    left: 4px;
  }
}

.post-pagination-archive {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.post-pagination-next {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 85px;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .post-pagination-next {
    width: 75px;
  }
}
@media screen and (max-width: 519px) {
  .post-pagination-next {
    width: 75px;
  }
}

.post-pagination-link-prev {
  position: relative;
  display: block;
  color: #382620;
  text-align-last: left;
  padding-left: 1.7rem;
  transition: all 0.4s ease 0s;
}
@media (hover: hover) {
  .post-pagination-link-prev:where(:any-link, :enabled, summary):hover {
    opacity: 0.3;
  }
}
.post-pagination-link-prev:after {
  position: absolute;
  content: "";
  width: 7px;
  height: 13px;
  background: url(../img/arrow-prev.png) no-repeat center center/cover;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
}

.post-pagination-link-next {
  position: relative;
  display: block;
  color: #382620;
  text-align: right;
  padding-right: 1.7rem;
  transition: all 0.4s ease 0s;
}
@media (hover: hover) {
  .post-pagination-link-next:where(:any-link, :enabled, summary):hover {
    opacity: 0.3;
  }
}
.post-pagination-link-next:after {
  position: absolute;
  content: "";
  width: 7px;
  height: 13px;
  background: url(../img/arrow-next.png) no-repeat center center/cover;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
}

.post-pagination-link-box {
  display: inline-block;
  padding: 15px 35px;
  color: #382620;
  border: 1px solid #382620;
  transition: all 0.4s ease 0s;
}
@media (hover: hover) {
  .post-pagination-link-box:where(:any-link, :enabled, summary):hover {
    background-color: #382620;
    color: #fff;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .post-pagination-link-box {
    padding: 12px 27px;
  }
}
@media screen and (max-width: 519px) {
  .post-pagination-link-box {
    padding: 12px 27px;
  }
}

.post-related {
  margin-top: 20.5rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .post-related {
    margin-top: 17.7rem;
  }
}
@media screen and (max-width: 519px) {
  .post-related {
    margin-top: 17.7rem;
  }
}

.post-related-head {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .post-related-head {
    font-size: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .post-related-head {
    font-size: 2rem;
  }
}

.post-related-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem 4rem;
  padding-left: 0.8rem;
  margin-top: 6.6rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .post-related-list {
    gap: 1.9rem 2rem;
    padding-left: 0;
    margin-top: 4.4rem;
  }
}
@media screen and (max-width: 519px) {
  .post-related-list {
    gap: 1.9rem 2rem;
    padding-left: 0;
    margin-top: 4.4rem;
  }
}

.post-related-item {
  position: relative;
  width: calc(33.3333333333% - 26.6666666667px);
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .post-related-item {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 519px) {
  .post-related-item {
    width: calc(50% - 10px);
  }
}

.post-related-link {
  display: inline-block;
  color: #222;
  transition: all 0.4s ease 0s;
}
@media (hover: hover) {
  .post-related-link:where(:any-link, :enabled, summary):hover .post-related-image img {
    transform: scale(1.1);
  }
}

.post-related-category {
  position: absolute;
  font-size: 1.2rem;
  font-weight: 700;
  background-color: #222;
  color: #fff;
  padding: 5px 9px 5px 14px;
  top: 13px;
  left: -8px;
  z-index: 10;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .post-related-category {
    padding: 5px 5px 5px 10px;
    top: 10px;
  }
}
@media screen and (max-width: 519px) {
  .post-related-category {
    padding: 5px 5px 5px 10px;
    top: 10px;
  }
}
.post-related-category::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 4px 0;
  border-color: transparent #aaa transparent transparent;
  bottom: -4px;
  left: 0;
}
.post-related-category::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 8px 11px 0;
  border-color: #222 transparent #222 #222;
  top: 0;
  right: -8px;
}

.post-related-image {
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .post-related-image img {
    transition: all 0.4s ease 0s;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .post-related-image img {
    transition: all 0.4s ease 0s;
  }
}

.post-related-title {
  margin-top: 1rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.7142857143;
  text-align: left;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .post-related-title {
    margin-top: 0.8rem;
    font-size: 1.2rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 519px) {
  .post-related-title {
    margin-top: 0.8rem;
    font-size: 1.2rem;
    line-height: 1.5;
  }
}

.post-related-date {
  margin-top: 1rem;
  font-size: 1.2rem;
  line-height: 1.4166666667;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .post-related-date {
    margin-top: 0.8rem;
  }
}
@media screen and (max-width: 519px) {
  .post-related-date {
    margin-top: 0.8rem;
  }
}

/* ===============================================
7) SHOP [DONE]
=============================================== */
.shop-firstview {
  background: url(../img/img_firstview_shop.png) no-repeat center center/cover;
}
@media screen and (max-width: 519px) {
  .shop-firstview {
    background: url(../img/img_firstview_shop_sp.png) no-repeat center center/cover;
  }
}

.shop-title-en {
  padding-left: 1.3rem;
  letter-spacing: 1.25rem;
}
@media screen and (max-width: 519px) {
  .shop-title-en {
    padding-left: 0.75rem;
    letter-spacing: 0.6rem;
  }
}

@media screen and (max-width: 519px) {
  .shop-title-jp {
    padding-left: 0.2rem;
  }
}

.shop {
  padding: 80px 19px 172px 21px;
  max-width: 728px;
  margin: 0 auto;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .shop {
    max-width: 540px;
    padding: 50px 20px 160px;
  }
}
@media screen and (max-width: 519px) {
  .shop {
    max-width: 540px;
    padding: 50px 20px 160px;
  }
}

.shop-container:nth-child(n+2) {
  margin-top: 12.2rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .shop-container:nth-child(n+2) {
    margin-top: 6.1rem;
  }
}
@media screen and (max-width: 519px) {
  .shop-container:nth-child(n+2) {
    margin-top: 6.1rem;
  }
}

.shop-name {
  position: relative;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4166666667;
  color: #382620;
  padding-left: 1.6rem;
  border-left: 6px solid #382620;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .shop-name {
    font-size: 2rem;
    line-height: 1.45;
    padding-left: 0.8rem;
  }
}
@media screen and (max-width: 519px) {
  .shop-name {
    font-size: 2rem;
    line-height: 1.45;
    padding-left: 0.8rem;
  }
}

.shop-map {
  margin-top: 2.4rem;
  border: 10px solid #fff;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .shop-map {
    margin-top: 2rem;
    border: 5px solid #fff;
  }
}
@media screen and (max-width: 519px) {
  .shop-map {
    margin-top: 2rem;
    border: 5px solid #fff;
  }
}

.shop-map-wrap {
  width: 100%;
  padding-top: 54.7965116279%;
  position: relative;
}
.shop-map-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.shop-detail {
  font-size: 1.4rem;
  font-weight: 700;
}
@media screen and (min-width: 960px) {
  .shop-detail {
    display: flex;
    margin: 2.4rem auto 0;
    column-gap: 4rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .shop-detail {
    display: flex;
    margin: 2.4rem auto 0;
    column-gap: 4rem;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .shop-detail {
    margin-top: 1.9rem;
  }
}
@media screen and (max-width: 519px) {
  .shop-detail {
    margin-top: 1.9rem;
  }
}

@media screen and (min-width: 960px) {
  .shop-detail-column {
    flex-basis: 324px;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .shop-detail-column {
    flex-basis: 324px;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .shop-detail-column:nth-child(2) {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .shop-detail-column:nth-child(2) {
    margin-top: 2rem;
  }
}

.shop-detail-item {
  display: flex;
  padding-bottom: 1rem;
  border-bottom: 1px solid #222;
}
.shop-detail-item:not(:first-child) {
  margin-top: 2.4rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .shop-detail-item:not(:first-child) {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .shop-detail-item:not(:first-child) {
    margin-top: 2rem;
  }
}

.shop-detail-term {
  width: 56px;
  line-height: 1.4285714286;
}

.shop-detail-text {
  margin-left: 2.4rem;
  line-height: 1.7142857143;
}

/* ===============================================
8) GIFT [DONE]
=============================================== */
.gift-firstview {
  background: url(../img/img_firstview_gift.png) no-repeat center center/cover;
}
@media screen and (max-width: 519px) {
  .gift-firstview {
    background: url(../img/img_firstview_gift_sp.png) no-repeat center center/cover;
  }
}

.gift-title-en {
  padding-left: 1.4rem;
  letter-spacing: 1.35rem;
}
@media screen and (max-width: 519px) {
  .gift-title-en {
    padding-left: 0.75rem;
    letter-spacing: 0.6rem;
  }
}

@media screen and (max-width: 519px) {
  .gift-title-jp {
    padding-left: 0.2rem;
  }
}

.gift {
  max-width: 1180px;
  margin: 0 auto;
  padding: 79px 40px 172px;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .gift {
    max-width: 540px;
    padding: 50px 20px 160px;
  }
}
@media screen and (max-width: 519px) {
  .gift {
    max-width: 540px;
    padding: 50px 20px 160px;
  }
}

.gift-top {
  max-width: 1100px;
}
@media screen and (min-width: 960px) {
  .gift-top {
    display: flex;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .gift-top {
    display: flex;
  }
}

.gift-square {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem 4rem;
  width: 48.1818181818%;
}
@media screen and (min-width: 960px) {
  .gift-square {
    margin-left: 4rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .gift-square {
    margin-left: 2.5rem;
    gap: 2.5rem 2.5rem;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .gift-square {
    width: 100%;
    margin-top: 3.9rem;
    gap: 4rem 1.8rem;
  }
}
@media screen and (max-width: 519px) {
  .gift-square {
    width: 100%;
    margin-top: 3.9rem;
    gap: 4rem 1.8rem;
  }
}
.gift-square .gift-item {
  width: calc(50% - 20px);
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .gift-square .gift-item {
    width: calc(50% - 12.5px);
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .gift-square .gift-item {
    width: calc(50% - 9px);
  }
}
@media screen and (max-width: 519px) {
  .gift-square .gift-item {
    width: calc(50% - 9px);
  }
}

.gift-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem 4rem;
  margin-top: 4.4rem;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .gift-row {
    margin-top: 2.5rem;
    gap: 2.5rem 2.5rem;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .gift-row {
    margin-top: 3.9rem;
    gap: 4rem 1.8rem;
  }
}
@media screen and (max-width: 519px) {
  .gift-row {
    margin-top: 3.9rem;
    gap: 4rem 1.8rem;
  }
}
.gift-row .gift-item {
  width: calc(25% - 30px);
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .gift-row .gift-item {
    width: calc(25% - 18.75px);
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .gift-row .gift-item {
    width: calc(50% - 9px);
  }
}
@media screen and (max-width: 519px) {
  .gift-row .gift-item {
    width: calc(50% - 9px);
  }
}

.gift-main {
  width: 48%;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .gift-main {
    width: 100%;
  }
}
@media screen and (max-width: 519px) {
  .gift-main {
    width: 100%;
  }
}

.gift-main-name {
  margin-top: 1.2rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4583333333;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .gift-main-name {
    font-size: 2rem;
    line-height: 1.45;
  }
}
@media screen and (max-width: 519px) {
  .gift-main-name {
    font-size: 2rem;
    line-height: 1.45;
  }
}

.gift-main-price {
  padding-right: 0.4rem;
  font-family: "Damion", cursive;
  font-size: 3.2rem;
  line-height: 1.375;
  text-align: center;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .gift-main-price {
    padding-right: 0.3rem;
    font-size: 2.8rem;
    line-height: 1.3571428571;
  }
}
@media screen and (max-width: 519px) {
  .gift-main-price {
    padding-right: 0.3rem;
    font-size: 2.8rem;
    line-height: 1.3571428571;
  }
}

.gift-item-name {
  margin-top: 1.2rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4285714286;
}
@media screen and (max-width: 519px) {
  .gift-item-name {
    margin-top: 0.8rem;
  }
}

.gift-item-price {
  padding-right: 0.4rem;
  font-family: "Damion", cursive;
  font-size: 2.4rem;
  line-height: 1.375;
  text-align: center;
}
@media screen and (max-width: 519px) {
  .gift-item-price {
    padding-right: 0.2rem;
  }
}

.gift-button {
  text-align: center;
  margin-top: 1.2rem;
}

.gift-button-link {
  display: inline-block;
  padding: 0.8rem 2.4rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4285714286;
  text-align: center;
  color: #fff;
  background: #222;
  border: 1px solid #222;
  transition: all 0.4s ease 0s;
}
@media (hover: hover) {
  .gift-button-link:where(:any-link, :enabled, summary):hover {
    background: #fff;
    color: #222;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .gift-button-link {
    padding: 0.8rem 1.2rem;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .gift-button-link {
    padding: 0.6rem 1.6rem;
  }
}
@media screen and (max-width: 519px) {
  .gift-button-link {
    padding: 0.6rem 1.6rem;
    font-size: 1.2rem;
    line-height: 1.4166666667;
  }
}

.gift-wrapping {
  max-width: 1100px;
  margin: 100px auto 0;
  padding: 0.6rem;
  border: 4px solid #222;
  background-color: #fff;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .gift-wrapping {
    margin: 60px auto 0;
  }
}
@media screen and (max-width: 519px) {
  .gift-wrapping {
    margin: 60px auto 0;
  }
}

.gift-wrapping-line {
  padding: 6.7rem 5rem 6.9rem 4.9rem;
  border: 1px solid #222;
  background-color: #fff;
}
@media screen and (min-width: 960px) {
  .gift-wrapping-line {
    display: flex;
    column-gap: 6rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .gift-wrapping-line {
    display: flex;
    column-gap: 4rem;
    padding: 4rem;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .gift-wrapping-line {
    padding: 2.6rem 2.9rem 2.7rem 2.9rem;
  }
}
@media screen and (max-width: 519px) {
  .gift-wrapping-line {
    padding: 2.6rem 2.9rem 2.7rem 2.9rem;
  }
}

@media screen and (min-width: 960px) {
  .gift-wrapping-message {
    max-width: 460px;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .gift-wrapping-message {
    max-width: 50%;
  }
}

.gift-wrapping-text {
  padding-bottom: 2.4rem;
  background: url(../img/img_gift_dots.png) left bottom repeat-x;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6666666667;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .gift-wrapping-text br {
    display: none;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .gift-wrapping-text {
    padding-left: 0.8rem;
    font-size: 1.6rem;
    line-height: 1.75;
  }
}
@media screen and (max-width: 519px) {
  .gift-wrapping-text {
    padding-left: 0.8rem;
    font-size: 1.6rem;
    line-height: 1.75;
  }
  .gift-wrapping-text br {
    display: none;
  }
}

.gift-wrapping-subtext {
  margin-top: 3.5rem;
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .gift-wrapping-subtext {
    margin-top: 2.4rem;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .gift-wrapping-subtext {
    margin-top: 2.2rem;
    font-size: 1.2rem;
    line-height: 2;
  }
}
@media screen and (max-width: 519px) {
  .gift-wrapping-subtext {
    margin-top: 2.2rem;
    font-size: 1.2rem;
    line-height: 2;
  }
}

.gift-wrapping-image {
  max-width: 460px;
}
@media screen and (min-width: 960px) {
  .gift-wrapping-image {
    padding-top: 0.2rem;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .gift-wrapping-image {
    margin-top: 3.5rem;
  }
}
@media screen and (max-width: 519px) {
  .gift-wrapping-image {
    margin-top: 3.5rem;
  }
}
/* ===============================================
9) CONTACT [DONE]
=============================================== */
.contact-firstview {
  background: url(../img/img_firstview_contact.png) no-repeat center center/cover;
}
@media screen and (max-width: 519px) {
  .contact-firstview {
    background: url(../img/img_firstview_contact_sp.png) no-repeat center center/cover;
  }
}

.contact-title-en {
  padding-left: 1.2rem;
  letter-spacing: 1.4rem;
}
@media screen and (max-width: 519px) {
  .contact-title-en {
    padding-left: 0.75rem;
    letter-spacing: 0.6rem;
  }
}

@media screen and (max-width: 519px) {
  .contact-title-jp {
    padding-left: 0.2rem;
  }
}

.contact {
  max-width: 728px;
  margin: 0 auto;
  padding: 79px 20px 177px;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .contact {
    max-width: 540px;
    padding: 45px 20px 166px;
  }
}
@media screen and (max-width: 519px) {
  .contact {
    max-width: 540px;
    padding: 45px 20px 166px;
  }
}

.contact-head {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4285714286;
  text-align: center;
  color: #382620;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .contact-head {
    font-size: 2rem;
    line-height: 2;
  }
}
@media screen and (max-width: 519px) {
  .contact-head {
    font-size: 2rem;
    line-height: 2;
  }
}

.contact-sub {
  margin-top: 2.8rem;
  font-size: 1.6rem;
  line-height: 1.4375;
  color: #382620;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .contact-sub {
    margin-top: 2rem;
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}
@media screen and (max-width: 519px) {
  .contact-sub {
    margin-top: 2rem;
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}

.contact-form {
  margin-top: 8rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .contact-form {
    margin-top: 5.7rem;
  }
}
@media screen and (max-width: 519px) {
  .contact-form {
    margin-top: 5.7rem;
  }
}
.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel],
.contact-form textarea {
  border: 1px solid #382620;
  font-size: 1.6rem;
  border-radius: 0.6rem;
  font-family: "Noto Serif JP", serif;
  color: #382620;
}
@media screen and (min-width: 960px) {
  .contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel],
.contact-form textarea {
    width: 490px;
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel],
.contact-form textarea {
    width: 490px;
    max-width: 100%;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel],
.contact-form textarea {
    width: 100%;
  }
}
@media screen and (max-width: 519px) {
  .contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel],
.contact-form textarea {
    width: 100%;
  }
}
.contact-form input[type=text]::placeholder,
.contact-form input[type=email]::placeholder,
.contact-form input[type=tel]::placeholder,
.contact-form textarea::placeholder {
  color: #ccc;
}
.contact-form input[type=text]:focus,
.contact-form input[type=email]:focus,
.contact-form input[type=tel]:focus,
.contact-form textarea:focus {
  outline-color: #f07317;
}
.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel] {
  padding: 1.2rem 1.6rem 1.1rem;
}
.contact-form textarea {
  padding: 1.2rem 1.6rem;
  min-height: 240px;
  max-height: 240px;
  resize: vertical;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .contact-form textarea {
    min-height: 200px;
    max-height: 200px;
  }
}
@media screen and (max-width: 519px) {
  .contact-form textarea {
    min-height: 200px;
    max-height: 200px;
  }
}

.contact-item {
  margin-top: 4rem;
}
@media screen and (min-width: 960px) {
  .contact-item {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .contact-item {
    display: flex;
    justify-content: space-between;
  }
}

@media screen and (min-width: 960px) {
  .contact-item-radio {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .contact-item-radio {
    display: flex;
    justify-content: space-between;
  }
}
.contact-item-radio .contact-item-title {
  margin-top: 0;
}

.contact-item-title {
  display: flex;
  align-items: center;
}
.contact-item-title.title-top {
  align-items: start;
}
.contact-item-title.title-top .contact-required {
  margin-top: 0.2rem;
}
@media screen and (max-width: 519px) {
  .contact-item-title.title-top .contact-required {
    margin-top: 0.4rem;
  }
}
.contact-item-title.title-padding {
  margin-top: 1.3rem;
}

.contact-item-name {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4375;
  color: #382620;
}

.contact-required {
  display: inline-block;
  font-size: 1.1rem;
  line-height: 1.4545454545;
  margin-top: 0.4rem;
  margin-left: 0.8rem;
  padding: 0.1rem 0.6rem 0.2rem;
  background-color: #f07317;
  color: #fff;
  border-radius: 0.2rem;
}

@media screen and (min-width: 520px) and (max-width: 767px) {
  .contact-item-input {
    margin-top: 0.8rem;
  }
}
@media screen and (max-width: 519px) {
  .contact-item-input {
    margin-top: 0.8rem;
  }
}

.contact-radio-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .contact-radio-box {
    margin-top: 2.1rem;
  }
}
@media screen and (max-width: 519px) {
  .contact-radio-box {
    margin-top: 2.1rem;
  }
}

.contact-radio {
  position: relative;
  width: 490px;
  max-width: 100%;
  cursor: pointer;
}
.contact-radio:nth-child(n+2) {
  margin-top: 1.7rem;
}

.contact-radio-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.contact-radio-input:checked + .contact-radio-part::after {
  display: block;
}

.contact-radio-part {
  display: inline-block;
  padding-left: 3.4rem;
  font-size: 1.6rem;
  line-height: 1.4375;
  color: #382620;
}
.contact-radio-part::before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #382620;
  border-radius: 50px;
}
.contact-radio-part::after {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: #f07317;
  border-radius: 50px;
  display: none;
}

.contact-privacy {
  margin-top: 4rem;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  color: #382620;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .contact-privacy {
    margin-top: 1.8rem;
    line-height: 1.7142857143;
  }
}
@media screen and (max-width: 519px) {
  .contact-privacy {
    margin-top: 1.8rem;
    line-height: 1.7142857143;
  }
}

.contact-button {
  position: relative;
  margin: 4rem auto 0;
  width: 280px;
  max-width: 100%;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .contact-button {
    margin: 3.8rem auto 0;
    width: 289px;
  }
}
@media screen and (max-width: 519px) {
  .contact-button {
    margin: 3.8rem auto 0;
    width: 289px;
  }
}
.contact-button::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid #222;
  border-right: 1px solid #222;
  bottom: -6px;
  right: -6px;
  z-index: -10;
}

.contact-button-submit {
  border: none;
  font-family: "Noto Serif JP", serif;
  display: inline-block;
  padding-right: 1.2rem;
  width: 280px;
  max-width: 100%;
  height: 72px;
  line-height: 7.2rem;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background-color: #222;
  cursor: pointer;
  transition: all 0.4s ease 0s;
}
.contact-button-submit:focus {
  outline: none;
}
@media (hover: hover) {
  .contact-button-submit:where(:any-link, :enabled, summary):hover {
    transform: translate(6px, 6px);
  }
  .contact-button-submit:where(:any-link, :enabled, summary):hover::before {
    transform: translate(-6px, -6px);
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .contact-button-submit {
    width: 289px;
  }
}
@media screen and (max-width: 519px) {
  .contact-button-submit {
    width: 289px;
  }
}

.contact-thanks {
  padding: 79px 20px 171px;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .contact-thanks {
    padding: 45px 20px 158px;
  }
}
@media screen and (max-width: 519px) {
  .contact-thanks {
    padding: 45px 20px 158px;
  }
}

.wpcf7-list-item {
  position: relative;
  width: 490px;
  max-width: 100%;
  cursor: pointer;
}
.wpcf7-list-item:nth-child(n+2) {
  margin-top: 1.7rem;
}

.wpcf7-list-item-label {
  cursor: pointer;
  display: inline-block;
  padding-left: 3.4rem;
  font-size: 1.6rem;
  line-height: 1.4375;
  color: #382620;
}
.wpcf7-list-item-label::before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #382620;
  border-radius: 50px;
}
.wpcf7-list-item-label::after {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: #f07317;
  border-radius: 50px;
  display: none;
}

input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
input[type=radio]:checked + .wpcf7-list-item-label::after {
  display: block;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-not-valid-tip {
  color: #f07317;
  margin-top: 1rem;
  font-size: 1.4rem;
}

.wpcf7-response-output {
  display: none;
}