@charset "utf-8";

/* ================================================
common
animation
header
footer
店舗詳細
================================================== */

/* ================================================
common
================================================== */
:root {
  --color-black: #000;
  --color-white: #fff;
  --color-pale-rose: #e2b8ac;
  --color-pale-beige: #e8d2cc;
  --color-base-pink: #f3dde0;
  --color-pink: #b55757;
  --color-dark-pink: #9d4c6c;
  --color-brown: #a38242;
  --color-yellow: #d9ae4b;
  --color-blue: #207888;
  --color-dark-blue: #245579;
  --color-green: #679055;
  --color-grey: #c9c9c9;
  --color-blue-very-light: #ddebf3;
  --color-blue-light: #ccdce8;
  --color-blue-soft: #c2d9e5;

  --txt-black: #4b4343;
  --txt-pink: #851f48;

  --ft-bg-color: #b2708a;
}

body {
  min-width: 320px;
}

body.active {
  overflow: hidden;
}

.scroll {
  overflow: auto;
}

.hidden {
  overflow: hidden;
}

a:hover {
  opacity: 1;
}

p,
a,
span,
time,
ul,
li,
dl,
dt,
dd {
  letter-spacing: 0;
  color: var(--txt-black);
  font-size: 1.8rem;
  line-height: 1.8;
}

main {
  overflow-x: hidden;
}

h3 {
  font-size: 3.6rem;
  font-family: "Sawarabi Mincho", serif;
  color: var(--txt-pink);
  margin-bottom: 32px;
}

@media screen and (max-width: 767px) {
  h3 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
}

/* インナー幅 */
.middle-inner {
  position: relative;
  max-width: 1520px;
  width: 90%;
  height: 100%;
  margin-inline: auto;
}

.small-inner {
  position: relative;
  max-width: 1100px;
  width: 90%;
  height: 100%;
  margin-inline: auto;
}

.inner {
  position: relative;
  max-width: 1420px;
  width: 90%;
  height: 100%;
  margin-inline: auto;
}

.pc-only {
  display: block;
}
.sp-only {
  display: none;
}

@media screen and (max-width: 767px) {
  p,
  a,
  span,
  time,
  ul,
  li,
  dl,
  dt,
  dd {
    letter-spacing: 0;
    color: var(--txt-black);
    font-size: 1.6rem;
    line-height: 1.8;
  }

  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}

/* ================================================
animation
================================================== */
.delay-time02 {
  animation-delay: 0.2s;
}

.delay-time04 {
  animation-delay: 0.4s;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================================
header
================================================== */
#home header {
  position: absolute;
  z-index: 100;
  background: none;
}

header {
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 177px;
  background: var(--color-white);
  z-index: 100;
}

.header-wrap {
  position: relative;
  top: 0;
  left: 0;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ハンバーガーメニュー */
.hmb-wrap {
  position: relative;
  width: 82px;
  height: 25px;
  margin-right: 50px;
  cursor: pointer;
  z-index: 100;
}

.hmb-wrap.active {
  position: fixed;
  margin: 0px;
  right: calc((100vw - 1520px) / 2 + 50px);
}

@media screen and (max-width: 1520px) {
  .hmb-wrap.active {
    right: calc((100vw - 90%) / 2 + 50px);
  }
}

.hmb-wrap span {
  margin-right: 50px;
  width: 100%;
  height: 2px;
  background: var(--color-pink);
}

.hmb-wrap span:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
}

.hmb-wrap span:nth-child(2) {
  position: absolute;
  bottom: 0;
  left: 0;
}

.hmb-wrap.active span:nth-child(1) {
  top: 50%;
  translate: 0 -50%;
  rotate: 45deg;
}

.hmb-wrap.active span:nth-child(2) {
  top: 50%;
  translate: 0 -50%;
  rotate: -45deg;
}

/* ナビゲーション */
#header .menu {
  padding: 165px 0;
  text-align: right;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100vw;
  height: 100%;
  /* min-height: 100vw; */
  background: url(../../image/common/gnavi-bg.webp) no-repeat;
  background-size: 100% 100%;
  background-color: white;
  overflow: auto;
}

#header .menu ul {
  display: flex;
  flex-direction: column;
  /* gap: 28px; */
  gap: 20px;
  margin-right: 60px;
  /* margin-bottom: 88px; */
  margin-bottom: 58px;
}

#header .menu ul a,
#header .menu .gnavi > p a {
  position: relative;
  font-size: 2rem;
  font-family: "Sawarabi Mincho", serif;
  line-height: 1.35;
  letter-spacing: 0.08em;
  padding-left: 22px;
}

#header .menu ul a::after,
#header .menu .gnavi > p a::after {
  opacity: 0;
  content: "";
  background: url(../../image/common/plum-icon.webp) no-repeat;
  background-size: 15px 15px;
  width: 15px;
  height: 15px;
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  transition: all 0.5s;
}

#header .menu ul a:hover::after,
#header .menu .gnavi > p a:hover::after {
  opacity: 1;
}

#header .menu ul a:hover,
#header .menu .gnavi > p a:hover {
  color: var(--txt-pink);
  transition: all 0.5s;
}

#header .menu .gnavi > p {
  margin-right: 60px;
  font-size: 2rem;
  display: inline-flex;
  flex-direction: column;
}

#header .menu .gnavi > p .small {
  font-size: 1.4rem;
  color: var(--txt-pink);
}

@media screen and (max-width: 1199px) {
  header {
    background: var(--color-white);
    position: fixed;
    height: 100px;
  }
}

@media screen and (max-width: 767px) {
  header {
    height: 90px;
  }

  #home header {
    position: fixed;
    background: var(--color-white) !important;
  }

  #header .header-logo {
    position: relative;
    width: 50%;
    min-width: 230px;
    z-index: 100;
  }

  #header .menu {
    text-align: left;
    padding: 147px 0 74px;
  }

  #header .menu ul {
    margin-bottom: 73px;
  }

  #header .menu ul a,
  #header .menu .gnavi > p a {
    padding-left: 0;
    padding-right: 22px;
  }

  #header .menu ul a::after,
  #header .menu .gnavi > p a::after {
    left: initial;
    right: 0;
  }

  .hmb-wrap {
    width: 38px;
    height: 15px;
    margin: 0;
  }

  .hmb-wrap.active {
    right: calc((100vw - 90%) / 2);
  }

  #home .main-visual .content .main-catch span {
    font-size: 3rem;
    writing-mode: vertical-lr;
    padding: 15px 10px;
  }
}

/* ================================================
店舗詳細
================================================== */
#store.store {
  background: url(../../image/common/store-bg.webp) no-repeat center top;
  background-size: 100% 100%;
  padding: 120px 0;
}

#store .wrap {
  position: relative;
  margin-bottom: 80px;
}

#store .block {
  display: flex;
  gap: 30px;
}

#store .block ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  flex-shrink: 0;
  height: fit-content;
  gap: 20px 10px;
}

#store .block .widget-btn2 {
  width: 100%;
}

#store .block .widget-btn2.active {
  background: var(--txt-pink);
  color: var(--color-white);
}

#store .swiper {
  margin-right: calc(50% - 50vw);
  padding-bottom: 95px;
}

#store .swiper .image {
  padding: min(30/1520 * 100vw, 30px);
  padding-bottom: min(40/1520 * 100vw, 40px);
  background: var(--color-white);
  margin-bottom: 30px;
}

#store .swiper .image h4 {
  font-size: 3.52rem;
  text-align: center;
  font-family: "Sawarabi Mincho", serif;
  color: var(--txt-black);
  margin-bottom: 20px;
}

#store .swiper .image h4::before {
  content: none;
}

#store .swiper .image img {
  width: 100%;
  height: auto;
  aspect-ratio: 94/47;
  object-fit: cover;
}

#store .swiper .txt {
  padding: 0 min(30/1520 * 100vw, 30px);
}

#store .swiper dl {
  position: relative;
  display: flex;
}

#store .swiper dl:last-child {
  margin-bottom: 35px;
}

#store .swiper dd {
  position: relative;
  padding: 5px 0;
  padding-left: 15px;
  margin-right: 5px;
  width: 120px;
  min-width: 120px;
  text-align: left;
  flex-shrink: 0;
  border-bottom: 1px solid var(--txt-pink);
}

#store .swiper dt {
  position: relative;
  padding: 5px 0;
  width: 100%;
  text-align: left;
  border-bottom: 1px solid var(--color-grey);
}

/* #store .swiper dl::after {
  content:"";
  position: absolute;
  bottom: 0;
  left:0;
  width: 100%;
  height: 1px;
  background: var(--txt-black);
} */

#store .swiper .widget-btn {
  padding-top: 25px;
  width: 100%;
}

#store .wrap2 {
  position: relative;
  margin-bottom: 80px;
}

#store .wrap2 iframe {
  width: 100%;
  height: min(500/1420 * 100vw, 500px);
  /* display: none; */
}

#store .wrap2 iframe.active {
  display: block;
}

#store .icon {
  display: flex;
  justify-content: center;
  gap: min(60/1420 * 100vw, 60px);
}

#store .swiper-pagination {
  margin-right: calc(50% - 50vw);
  width: calc(100% - (100% - min(1070/1520 * 100vw, 1070px))) !important;
}

@media screen and (max-width: 1199px) {
  #store .block {
    gap: initial;
    display: block;
  }

  #store .block ul {
    margin-bottom: 40px;
  }

  #store .swiper .txt {
    padding: 0;
  }

  #store .swiper-pagination {
    margin-right: initial;
    width: 100% !important;
  }

  #store .swiper {
    margin-right: 0;
    padding-bottom: 107px;
  }

  #store .swiper-button-next {
    right: 0 !important;
  }
}

@media screen and (max-width: 767px) {
  #store.store {
    padding: 80px 0;
  }

  #store .wrap {
    margin-bottom: 30px;
  }

  #store .swiper .image h4 {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }

  #store .swiper .image {
    padding: 15px 10px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  #store .swiper dl:last-child {
    margin: 0;
  }

  #store .wrap2 {
    margin-bottom: 30px;
  }

  #store .wrap2 iframe {
    height: initial;
    aspect-ratio: 17/10;
  }
}

/* ================================================
フッター
================================================== */
footer {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--ft-bg-color);
  padding: 98px 0 100px;
}

footer::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  background: url(../../image/common/footer-bg-icon.svg);
  background-size: min(320/1000 * 100vw, 320px) min(255/1000 * 100vw, 255px);
  width: min(320/1000 * 100vw, 320px);
  height: min(255/1000 * 100vw, 255px);
}

footer::before {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  rotate: 180deg;
  background: url(../../image/common/footer-bg-icon.svg);
  background-size: min(320/1000 * 100vw, 320px) min(255/1000 * 100vw, 255px);
  width: min(320/1000 * 100vw, 320px);
  height: min(255/1000 * 100vw, 255px);
}

footer .wrap {
  max-width: 270px;
  width: 90%;
  margin-inline: auto;
  text-align: center;
}

footer .wrap .logo {
  margin-bottom: 73px;
}

footer .wrap .logo a {
  display: block;
}

footer .wrap .logo img {
  width: 100%;
  height: auto;
}

footer .link {
  padding: 28px 0 30px;
  border-top: 2px dotted var(--color-white);
  border-bottom: 2px dotted var(--color-white);
  margin-bottom: 56px;
}

footer .link > p {
  font-size: 1.4rem;
  color: var(--color-white);
  margin-bottom: 10px;
}

footer .link > a {
  font-size: 2rem;
  color: var(--color-white);
  font-family: "Sawarabi Mincho", serif;
}

footer small {
  font-size: 1.4rem;
  color: var(--color-white);
}

footer .wrap2 {
  display: none;
}

@media screen and (max-width: 767px) {
  footer {
    padding: 80px 0 30px;
  }

  footer .wrap .logo {
    margin-bottom: 40px;
  }

  footer .link {
    padding: 25px 0 30px;
    margin-bottom: 35px;
  }

  footer .link > p {
    margin-bottom: 0px;
  }

  footer .wrap2 {
    position: fixed;
    bottom: 0;
    left: 0;
    display: grid;
    width: 100%;
    height: 58px;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    z-index: 99;
  }

  footer .wrap2 .box {
    background: var(--txt-pink);
    text-align: center;
    padding: 15px 0;
  }

  footer .wrap2 .box a {
    position: relative;
    color: var(--color-white);
    font-size: clamp(1.5rem, 3vw, 1.6rem);
    font-family: "Sawarabi Mincho", serif;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  footer .wrap2 .box img {
    margin-right: 5px;
  }
}

.attention-txt {
  font-size: 1.4rem;
  color: #fff;
}
