@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
html {
  overflow-x: hidden;
}

body {
  opacity: 0; /* 透明にする */
  transition: opacity 1s ease-in-out;
  margin: 0 auto;
  font-family: "Noto Serif JP", serif;
  line-height: 1.7;
  letter-spacing: 0.2em;
  font-feature-settings: "palt" 1;
  overflow-x: hidden;
  padding-top: 70px;
}
body.loaded {
  opacity: 1;
}

h2 {
  letter-spacing: 0.35em;
}

.container {
  position: relative;
  max-width: 1230px;
}

.bg-wave {
  position: absolute;
  display: block;
  content: "";
  background-repeat: no-repeat;
  width: 100%;
}
.bg-wave--top {
  background-image: url(../images/top/bg-wave-top.svg);
  background-position: center bottom;
  aspect-ratio: 300/61;
  bottom: -1px;
  left: 0;
  z-index: 1;
}
.bg-wave--bottom {
  background-image: url(../images/top/bg-wave-bottom.svg);
  background-position: center bottom;
  aspect-ratio: 300/67;
  bottom: -1px;
  left: 0;
}

.btn {
  width: 100%;
  max-width: 260px;
  height: 60px;
  color: #fff;
  background-color: #615f5a;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  transition: all 0.3s;
  letter-spacing: 0.1em;
  border-radius: 10px;
}
.btn-vm::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  margin-left: 32px;
  background-image: url(../images/common/arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
}
.btn-ig {
  max-width: 216px;
  margin: 0;
  margin-top: 40px;
}
.btn-ig::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-left: 35px;
  background-image: url(../images/common/logo-instagram.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
  filter: brightness(0) invert(1);
}
.btn:hover {
  color: #fff;
  background-color: #000;
}

.sns {
  display: flex;
  align-items: center;
  gap: 30px;
}
.sns li a img {
  transition: all 0.3s ease;
}
.sns li a:hover img {
  transform: scale(1.1);
}
.sns li a img {
  width: 100%;
  max-width: 80px;
  height: 30px;
}

.top-cont-heading h2 {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 36px;
  color: #fff;
  padding: 10px calc(15px - 0.4em) 10px 15px;
  background-color: #615f5a;
  line-height: 1;
  margin-bottom: 75px;
}
.top-cont-heading h3 {
  font-size: 24px;
  margin-bottom: 35px;
}
.top-cont-heading h3::before {
  color: #ac988d;
  content: "—";
  margin-right: 15px;
}
.top main {
  background-color: #eeeae8;
}

.header {
  padding: 20px 40px;
  background-color: #fff;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}
.header-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-nav-trigger {
  display: flex;
  flex-flow: column;
  gap: 15px;
  z-index: 999;
  cursor: pointer;
}
.header-nav-trigger span {
  width: 40px;
  height: 1px;
  background-color: #000;
  transition: all 0.3s ease-in-out;
}
.header-nav-side {
  position: fixed;
  width: 100%;
  max-width: 460px;
  height: 100vh;
  z-index: 99;
  top: 0;
  right: 0;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  background-color: #ac988d;
  color: #fff;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}
.header-nav-side.is-open {
  transform: translateX(0);
}
.header-nav-side .sns img {
  filter: grayscale(100%) brightness(1000%);
}
.header-nav-side--list {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  width: 340px;
  margin-bottom: 100px;
}
.header-nav-side--list li {
  width: 100%;
  padding: 50px 0;
  border-top: 1px solid #fff;
  text-align: center;
}
.header-nav-side--list li:last-child {
  border-bottom: 1px solid #fff;
}
.header-nav-side--list li a {
  transition: all 0.3s ease;
}
.header-nav-side--list li a:hover {
  letter-spacing: 5px;
}
.header-logo--main {
  display: flex;
  align-items: flex-end;
  gap: 40px;
  font-size: 12px;
}
.header-logo--main img {
  height: 24px;
}

.header.is-open .header-nav-trigger span {
  background-color: #fff;
}
.header.is-open .header-nav-trigger span:nth-child(1) {
  transform: translateY(8px) rotate(30deg);
}
.header.is-open .header-nav-trigger span:nth-child(2) {
  transform: translateY(-8px) rotate(-30deg);
}

.main-visual {
  background-color: #fff;
  position: relative;
  padding-top: 120px;
  padding-bottom: 130px;
}
.main-visual .container {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  max-width: 1400px;
}
.main-visual h1 {
  z-index: 2;
}
.main-visual h1 img {
  width: 108px;
}
.main-visual-image {
  position: relative;
  margin-top: 40px;
}
.main-visual-image img:first-child {
  position: absolute;
  width: 337px;
  top: -110px;
  right: 70px;
  z-index: 2;
}
.main-visual-image img:nth-child(2) {
  position: relative;
  z-index: 1;
}
.main-visual-image img:nth-child(3) {
  position: absolute;
  width: 234px;
  height: 132px;
  bottom: 160px;
  left: -120px;
  z-index: 0;
}
.main-visual-illust {
  position: relative;
  height: 35vw;
  max-height: 400px;
  z-index: 1;
}
.main-visual-illust .container {
  max-width: 1330px;
}
.main-visual-illust img {
  position: absolute;
  max-width: 50%;
}
.main-visual-illust img:first-child {
  top: -100px;
  left: 0;
}
.main-visual-illust img:nth-child(2) {
  top: 100px;
  right: 0;
}
.main-visual-illust img:nth-child(3) {
  display: none;
}

.message {
  background-color: #eeeae8;
  padding: 80px 0;
}
.message-box {
  background: linear-gradient(to right, #fff 50%, transparent 50%);
}
.message-box img {
  position: absolute;
  height: 300px;
  right: 0;
  bottom: -50px;
}
.message-text {
  background-color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0 10px 10px 0;
}
.message-text p {
  padding: 70px 100px 70px 0;
  font-size: 20px;
  line-height: 2.2;
}
.message-text p span {
  border-bottom: 1px solid #000;
}

.about {
  position: relative;
  background-color: #eeeae8;
}
.about-cont {
  position: relative;
  padding-bottom: 385px;
}
.about-image {
  position: relative;
  margin-bottom: 140px;
}
.about-image img {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.about-image::before {
  position: absolute;
  content: "";
  width: 496px;
  height: 172px;
  background-image: url(../images/top/about-text__01.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  top: 130px;
  right: 5%;
  z-index: 0;
}
.about-text {
  position: relative;
  justify-content: flex-end;
}
.about-text .col-12 {
  padding: 100px min(95px, 10%);
  border-radius: 10px;
  background-color: #fff;
  line-height: 3;
  z-index: 1;
}
.about-text .col-12 span {
  border-bottom: 1px solid #000;
}
.about-text::before {
  position: absolute;
  content: "";
  width: 303px;
  height: 180px;
  background-image: url(../images/top/about-text__02.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  top: calc(60% - 155px);
  left: 2%;
  z-index: 1;
}
.about-text img {
  position: absolute;
}
.about-text img:first-of-type {
  width: 312px;
  z-index: 2;
  top: -160px;
  right: min(75px, 5%);
  border-radius: 20px;
}
.about-text img:nth-of-type(2) {
  width: 237px;
  z-index: 2;
  bottom: -160px;
  left: 0;
  border-radius: 20px;
}
.about-text img:nth-of-type(3) {
  width: 176px;
  z-index: 2;
  bottom: -300px;
  right: 0;
}

.contact .container {
  padding: 140px 0;
}
.contact h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 90px;
}
.contact .form {
  margin: 0 auto;
  max-width: 740px;
}
.contact .form label {
  display: block;
  margin-bottom: 10px;
}
.contact .form input, .contact .form textarea {
  width: 100%;
  background-color: #f6f4f3;
  border: none;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 40px;
}
.contact .form textarea {
  height: 240px;
}
.contact .form .form-submit {
  text-align: center;
}
.contact .form .form-submit input {
  width: 280px;
  height: 60px;
  background-color: #615f5a;
  color: #fff;
  border-radius: 0;
  transition: all 0.3s;
}
.contact .form .form-submit input:hover {
  background-color: #000;
}
.contact .form .row {
  margin-bottom: 40px;
}
.contact .form .col-md-6:first-child {
  padding-right: 20px;
}
.contact .form .col-md-6:last-child {
  padding-left: 20px;
}

.store {
  padding: 60px 0;
  background-color: #fff;
}
.store-map {
  background-color: #f6f4f3;
}
.store-map img {
  padding: 30px 0;
}
.store-list {
  margin-top: 45px;
}
.store-list-copy {
  min-height: 100px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  margin-bottom: 15px;
  line-height: 1.3;
}
.store-list-copy span {
  border-bottom: 1px solid #000;
}
.store-list ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.store-list ul li {
  padding: 15px 20px;
  border: 1px solid #000;
  border-radius: 10px;
  text-align: center;
}
.store-list ul li img {
  width: 100%;
  aspect-ratio: 87/55;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  margin-bottom: 30px;
}
.store-list ul li h4 {
  font-size: 24px;
  margin-bottom: 30px;
}
.store-list ul li p {
  margin-bottom: 30px;
}
.store-list ul li:first-child span {
  border-color: #a8dddf;
}
.store-list ul li:nth-child(2) span {
  border-color: #c1acd4;
}
.store-list ul li:last-child span {
  border-color: #d1e466;
}

.footer {
  margin: 90px auto 0;
  background: url(../images/common/bg-footer.svg), #615f5a;
  background-repeat: no-repeat;
  background-position: center top -1px;
  padding-top: 150px;
}
.footer-cont {
  position: relative;
  color: #fff;
}
.footer-cont img {
  filter: grayscale(100%) brightness(1000%);
}
.footer-illust {
  position: absolute;
  filter: none !important;
  width: 184px;
  top: -250px;
  left: 320px;
}
.footer-logo {
  display: block;
  margin-bottom: 30px;
}
.footer-logo img {
  height: 33px;
}
.footer-copy {
  margin-bottom: 40px;
}
.footer-copy br {
  display: none;
}
.footer-address {
  line-height: 2.2;
  margin-bottom: 40px;
}
.footer-address br {
  display: none;
}
.footer-address br:first-child {
  display: block;
}
.footer-map {
  padding-top: 60px;
  padding-bottom: 60px;
}
.footer-map iframe {
  width: 100%;
  aspect-ratio: 23/19;
  border-radius: 10px;
}
.footer-nav {
  margin-bottom: 40px;
}
.footer-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.footer-nav ul li {
  color: #fff;
  padding: 0 30px;
  border-left: 1px solid #fff;
}
.footer-nav ul li:last-child {
  border-right: 1px solid #fff;
}
.footer-nav ul li a:hover {
  text-decoration: underline;
}

.copy {
  background-color: #333;
  color: #a4a4a5;
  padding: 15px 0;
  font-size: 12px;
}
.copy ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.copy ul li:first-child {
  margin-right: 30px;
}

/* 下層ページ */
.p-header {
  position: relative;
  padding: 80px 0 260px;
  background-color: #fff;
}
.p-header .container-fluid {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  height: 400px;
  display: flex;
  align-items: center;
  z-index: 1;
}
.p-header .container-fluid::after {
  position: absolute;
  right: 0;
  display: block;
  content: "";
  width: min(95vw, 1722px);
  height: 592px;
  background-image: url(../images/page/page-header-img.png);
  background-position: left 30px;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}
.p-header .bg-wave {
  z-index: 0;
}
.p-header .bg-wave--top {
  background-image: url(../images/page/bg-wave--page.svg);
  background-size: 100%;
  background-position: top;
}
.p-header h1 {
  font-size: 44px;
  margin-left: min(10vw, 240px);
  color: #fff;
  background-color: #615f5a;
  padding: 10px 15px;
  line-height: 1;
  z-index: 2;
  margin-top: -70px;
}

.breadcrumbs {
  margin-bottom: 50px;
}
.breadcrumbs ul {
  display: flex;
  align-items: center;
}
.breadcrumbs ul li {
  margin: 0 7.5px;
}
.breadcrumbs ul li:first-child {
  margin-left: 0;
}
.breadcrumbs ul li a {
  text-decoration: underline;
}

.p-anchor {
  margin-bottom: 100px;
}
.p-anchor ul {
  display: flex;
  align-items: center;
  gap: 40px;
}
.p-anchor ul li a {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #000;
  padding-bottom: 5px;
}
.p-anchor ul li a::after {
  display: block;
  content: "";
  width: 28px;
  height: 28px;
  background-image: url(../images/page/arrow-down.svg);
  background-position: center;
  margin-left: 20px;
}

.p-store {
  position: relative;
  padding-bottom: 160px;
}
.p-store .bg-wave {
  z-index: 0;
}
.p-store .container {
  z-index: 1;
}
.p-store img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-store--atago {
  background-color: #eeeae8;
  margin-bottom: 160px;
}
.p-store--atago h3 span {
  border-color: #a8dddf !important;
}
.p-store--bake {
  margin-bottom: 160px;
  background-image: url(../images/page/bg-bake.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.p-store--bake h3 span {
  border-color: #c1acd4 !important;
}
.p-store--megurumi {
  background-image: url(../images/page/bg-megurumi.svg), linear-gradient(to bottom, #eeeae8, #eeeae8);
  background-size: 100% auto, 100% 10vw;
  background-repeat: no-repeat, no-repeat;
  background-position: center top, left bottom;
}
.p-store--megurumi h3 span {
  border-color: #d1e466 !important;
}
.p-store h2 {
  font-size: 36px;
  margin-bottom: 80px;
}
.p-store h2::before {
  color: #ac988d;
  content: "—";
  margin-right: 15px;
}
.p-store h3 {
  font-size: 24px;
  margin-bottom: 45px;
}
.p-store h3 span {
  border-bottom: 1px solid #000;
}
.p-store-item {
  position: relative;
  padding: 70px min(10%, 70px);
  border: 1px solid #000;
  border-radius: 10px;
  background-color: #fff;
  margin-bottom: 40px;
}
.p-store-item--bg {
  position: absolute;
  bottom: 20px;
  right: min(10%, 100px);
  width: -moz-fit-content;
  width: fit-content;
  z-index: 0;
}
.p-store-item--bg img {
  height: 68px;
}
.p-store-item .row {
  position: relative;
  align-items: center;
  z-index: 1;
}
.p-store-item h4 {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 24px;
  margin-bottom: 40px;
  color: #fff;
  line-height: 1;
  display: flex;
  padding: 10px 15px;
  background-color: #ac988d;
}
.p-store-item h4 span {
  display: none;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  line-height: 1;
}
.p-store-item p {
  font-size: 14px;
  line-height: 2.2;
}
.p-store-item:last-child {
  margin-bottom: 0;
}
.p-store-item--sub {
  margin-top: 50px;
  padding: 60px min(10%, 60px);
  background-color: #f6f4f3;
  border-radius: 10px;
}
.p-store-item--sub .row:first-child {
  margin-bottom: 60px;
}
.p-store-item--01 .p-store-item--bg img, .p-store-item--03 .p-store-item--bg img, .p-store-item--05 .p-store-item--bg img, .p-store-item--07 .p-store-item--bg img {
  height: 78px;
}
.p-store-item--02 .p-store-item--bg {
  right: min(30%, 340px);
}
.p-store-item--04 .p-store-item--bg {
  bottom: 30px;
  right: min(25%, 280px);
}
.p-store-item--06 .p-store-item--bg {
  bottom: 30px;
  right: min(40%, 450px);
}
.p-store-item--07 .row {
  align-items: flex-start;
}
.p-store-item--07 .p-store-item--bg {
  bottom: -25px;
  right: 15px;
  z-index: -1;
}
.p-store-item--08 .p-store-item--bg {
  bottom: 30px;
}

.p-contact {
  padding: 0 0 160px;
  background-color: #eeeae8;
}
.p-contact-header {
  padding: 50px 0;
  background-color: #ac988d;
  color: #fff;
  text-align: center;
  margin-bottom: 60px;
}
.p-contact-header h2 {
  font-size: 24px;
  margin-bottom: 30px;
}
.p-contact-header a {
  display: block;
  font-size: 24px;
  margin-top: 10px;
}
.p-contact-form {
  font-size: 14px;
}
.p-contact-form span {
  border-radius: 5px;
  padding: 2px 5px;
  color: #fff;
  background-color: #ccc;
}
.p-contact-form span.required {
  background-color: #615f5a;
}
.p-contact-form label span {
  margin-left: 10px;
}
.p-contact-form input, .p-contact-form textarea {
  border-color: #000;
  background-color: #fff;
}
.p-contact-form textarea {
  height: 250px;
  padding: 20px 0.75rem;
}
.p-contact-form .col-12 {
  margin-bottom: 50px;
}
.p-contact-form .col-12 .row {
  align-items: center;
}
.p-contact-form .col-12 input {
  height: 60px;
}
.p-contact-form ::-moz-placeholder {
  font-size: 14px;
  color: #ccc;
}
.p-contact-form ::placeholder {
  font-size: 14px;
  color: #ccc;
}
.p-contact-form .btn {
  margin-top: 45px;
}
.p-contact-form--text {
  text-align: center;
  line-height: 2.2;
  margin-bottom: 80px;
}
.p-contact-policy {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 50px;
}
.p-contact-policy-scroll {
  background-color: #fff;
  font-size: 14px;
  width: 100%;
  max-width: 800px;
  height: 350px;
  overflow: scroll;
  margin: 0 auto;
  padding: 30px min(5%, 40px);
  border: 1px solid #000;
  border-radius: 10px;
}

.page .footer {
  margin-top: 0;
  background: url(../images/page/bg-footer.svg), #615f5a;
  background-repeat: no-repeat;
  background-position: center top;
}

.link-web {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #000;
  margin-top: 40px;
  transition: all 0.3s ease;
}
.link-web img {
  width: 15.2px;
  height: 14px;
  border-radius: 0;
  margin-left: 15px;
  transition: all 0.3s ease;
}
.link-web:hover {
  color: #ac988d;
  border-color: #ac988d;
}
.link-web:hover img {
  filter: brightness(0) saturate(100%) invert(68%) sepia(3%) saturate(1739%) hue-rotate(337deg) brightness(89%) contrast(99%);
}

@media (min-width: 1921px) {
  .footer {
    background: #615f5a;
    padding-top: 0;
    margin-top: 240px;
  }
  .page .footer {
    background: #615f5a;
  }
  .p-store--bake {
    background: none;
  }
}
@media (max-width: 1400px) {
  .main-visual .container {
    justify-content: space-around;
  }
  .main-visual-illust {
    padding: 0 5%;
  }
  .main-visual-image {
    width: 70vw;
  }
}
@media (max-width: 1130px) {
  .header-nav .sns {
    display: none;
  }
  .header-logo--main span {
    display: none;
  }
  .message-box img {
    height: 200px;
  }
  .store-list ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 576px) {
  .main-visual-image {
    max-width: 60vw;
  }
  .main-visual-image img:nth-child(2) {
    max-width: min(65vw, 880px);
  }
  .p-store-item .row {
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
  }
  .p-store-item .row .col-12 {
    padding-left: 0;
    padding-right: 0;
  }
  .p-store-item .row .col-lg-3 {
    width: calc(25% - 30px);
  }
  .p-store-item .row .col-lg-4 {
    width: calc(33.33333333% - 30px);
  }
  .p-store-item .row .col-lg-8 {
    width: calc(66.66666667% - 25px);
  }
  .p-store-item .row .col-lg-9 {
    width: calc(75% - 25px);
  }
  .p-store-item--02 h4 {
    flex-flow: column;
    gap: 10px;
    background-color: transparent;
    padding: 0;
  }
  .p-store-item--02 h4 span {
    padding: 10px 15px;
    background-color: #ac988d;
  }
}
@media (max-width: 575px) {
  html {
    font-size: 14px;
  }
  body.page {
    padding-top: 57px;
  }
  .container {
    padding: 0 5%;
  }
  .header-logo--main span {
    display: none;
  }
  .header-nav .sns {
    display: none;
  }
  .header-nav-trigger {
    gap: 12px;
  }
  .header-nav-trigger span {
    width: 30px;
  }
  .header-nav-side {
    width: 80%;
  }
  .header-nav-side--list {
    padding: 0 40px;
    width: 100%;
    font-size: 16px;
    margin-bottom: 60px;
  }
  .header-nav-side--list li {
    padding: 30px 0;
  }
  .header.is-open .header-nav-trigger span {
    background-color: #fff;
  }
  .header.is-open .header-nav-trigger span:nth-child(1) {
    transform: translateY(6.5px) rotate(30deg);
  }
  .header.is-open .header-nav-trigger span:nth-child(2) {
    transform: translateY(-6.5px) rotate(-30deg);
  }
  .main-visual {
    padding-top: 30px;
  }
  .main-visual-image {
    width: 50vw;
    margin-top: 20px;
  }
  .main-visual-image img {
    position: relative;
    z-index: 1;
  }
  .main-visual-image img:first-child {
    width: 185px;
    height: 78px;
    top: -60px;
    right: -5%;
    z-index: 2;
  }
  .main-visual-image img:nth-child(2) {
    max-height: 380px;
  }
  .main-visual-image img:nth-child(3) {
    width: 128px;
    height: 72px;
    top: auto;
    bottom: 20px;
    left: -70px;
    z-index: 0;
  }
  .main-visual-illust {
    height: -moz-fit-content;
    height: fit-content;
  }
  .main-visual-illust .container {
    padding-left: 0;
    padding-right: 0;
  }
  .main-visual-illust img {
    position: relative;
    width: 100%;
    height: auto;
    max-width: none;
  }
  .main-visual-illust img:first-child {
    display: none;
  }
  .main-visual-illust img:nth-child(2) {
    display: none;
  }
  .main-visual-illust img:nth-child(3) {
    display: block;
  }
  .main-visual .container {
    justify-content: center;
    gap: 10vw;
  }
  .main-visual .container h1 img {
    width: 20vw;
  }
  .store-list ul li {
    padding: 20px;
  }
  .store-list ul li img {
    margin-bottom: 20px;
  }
  .store-list ul li h4 {
    margin-bottom: 15px;
    font-size: 20px;
  }
  .store-list ul li p {
    margin-bottom: 20px;
  }
  .store-list-copy {
    height: auto;
    margin-bottom: 20px;
    font-size: 20px;
  }
  .store-map .container {
    overflow-x: scroll;
  }
  .store-map img {
    height: 400px;
  }
  .header {
    padding: 15px 5%;
  }
  .header-logo--main img {
    width: 105px;
  }
  .top-cont-heading h2 {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .message {
    padding: 50px 0 300px;
  }
  .message-text p {
    font-size: 16px;
    line-height: 2.2;
    padding: 40px 40px 40px calc(40px - 5%);
  }
  .message-box img {
    height: 240px;
    content: url(../images/common/illust-cafe__sp.svg);
    right: auto;
    left: 85px;
    bottom: -200px;
  }
  .about-cont {
    padding-bottom: 270px;
  }
  .about-image::before {
    content: none;
  }
  .about-text img:first-of-type {
    width: 180px;
    top: -80px;
  }
  .about-text img:nth-of-type(2) {
    width: 140px;
    left: 5%;
  }
  .about-text img:nth-of-type(3) {
    width: 140px;
  }
  .about-text::before {
    content: none;
  }
  .about-text .col-12 {
    padding: 40px;
    margin-right: -5%;
  }
  .about-text .col-12 p {
    font-size: 14px;
    line-height: 2.2;
  }
  .about-text .col-12 p:first-child {
    margin-bottom: 50px;
  }
  .p-header {
    padding: 0 0 40px;
  }
  .p-header h1 {
    font-size: 28px;
    margin-left: 0;
    margin-top: 0;
  }
  .p-header .container-fluid {
    height: 300px;
  }
  .p-header .container-fluid::after {
    width: min(100%, 390px);
    height: 300px;
    background-position: left 10px;
    background-image: url(../images/page/page-header-img_sp.png);
  }
  .p-anchor {
    margin-bottom: 80px;
  }
  .p-anchor ul {
    flex-flow: column;
    align-items: flex-start;
    gap: 20px;
  }
  .p-store .container {
    width: 95%;
  }
  .p-store h2 {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .p-store h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .p-store--atago h3 {
    line-height: 1.7;
  }
  .p-store--atago h3 span {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
  }
  .p-store--bake {
    background: url(../images/page/bg-wave-top.svg), url(../images/page/bg-wave-bottom.svg), linear-gradient(to bottom, #eeeae8 0%, #eeeae8 100%);
    background-repeat: no-repeat;
    background-position: top min(230px, 58vw) left, bottom min(230px, 58vw) left, center;
    background-size: auto, auto, 100% 2100px;
  }
  .p-store--megurumi {
    background-position: bottom;
  }
  .p-store-item {
    padding: 20px 5%;
  }
  .p-store-item--bg {
    display: none;
  }
  .p-store-item .col-lg-4 {
    order: 2;
    margin-top: 20px;
  }
  .p-store-item .col-lg-8 {
    order: 1;
  }
  .p-store-item .col-lg-8 h4 {
    flex-flow: column;
    font-size: 20px;
    text-align: center;
    padding: 0;
    margin: 0 auto 20px;
    gap: 10px;
    background: transparent;
  }
  .p-store-item .col-lg-8 h4 span {
    padding: 9px;
    margin: 0 auto;
    background-color: #ac988d;
  }
  .p-store-item .col-lg-8 p {
    line-height: 1.7;
  }
  .p-store-item .col-lg-8 .btn {
    margin: 20px auto 0;
  }
  .p-store-item .col-lg-9 p {
    line-height: 2.2;
  }
  .p-store-item--sub {
    padding: 20px 5%;
  }
  .p-store-item--sub .col-lg-3 {
    order: 2;
    margin-top: 20px;
  }
  .p-store--bake {
    margin-bottom: 0;
  }
  .footer-illust {
    width: 147px;
    left: auto;
    right: 5%;
  }
  .footer-copy {
    line-height: 2.2;
  }
  .footer-copy br {
    display: block;
  }
  .footer-address br {
    display: block;
  }
  .footer-map {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .footer-map iframe {
    aspect-ratio: 1/1;
  }
  .footer-nav {
    display: none;
  }
  .footer .copy {
    font-size: 8px;
  }
  .footer .copy ul li:first-child {
    margin-right: 10px;
  }
}/*# sourceMappingURL=style.css.map */