@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
top
ul {
  list-style-type: none;
}
li::marker {
  content: none;
}
a {
  color: inherit;
  text-decoration: none;
}

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "Hiragino Kaku Gothic Pro";
  src: url("./fonts//hiragino-kaku-gothic-pro-w3.otf");
  font-style: normal;
}
@font-face {
  font-family: "Meiryo Font";
  src: url("./fonts//meiryo.ttf");
  font-style: normal;
}
html {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  font-size: 10px;
  color: #303030;
  scroll-behavior: smooth;
}

.image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.image--100 {
  height: 100%;
}
.image--auto {
  width: auto;
}
.image--contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.header__burger-menu {
  background-color: transparent;
  position: fixed;
  top: 35px;
  right: 72px;
  z-index: 9;
}
@media screen and (max-width: 767px) {
  .header__burger-menu {
    display: none !important;
  }
}
.header__burger-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__burger-sp {
    display: block;
  }
}
.header__burger-sp.active {
  border: 1px solid #fff;
  padding: 4px;
  cursor: pointer;
}
.header__burger-sp.active .header__bar:nth-child(2) {
  opacity: 0;
}
.header__burger-sp.active .header__bar:nth-child(1) {
  -webkit-transform: translateY(6px) rotate(45deg);
          transform: translateY(6px) rotate(45deg);
}
.header__burger-sp.active .header__bar:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(-45deg);
          transform: translateY(-10px) rotate(-45deg);
}
.header__bar {
  display: block;
  width: 22px;
  height: 3px;
  margin-bottom: 5px;
  border-radius: 4px;
  background-color: #000;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header__bar:last-child {
  margin-bottom: 0;
}
.header__container {
  padding: 5px 3%;
  position: fixed;
  background: #fff;
  top: -160px;
  left: 0;
  z-index: 999;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .header__container {
    top: 0;
    padding: 10px 3%;
  }
}
.header__container.scrolled {
  top: 0;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
.header__container.visible {
  display: block;
  top: 0;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
.header__content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}
.header__logo-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__logo {
  width: 300px;
  height: 85px;
}
@media screen and (max-width: 950px) {
  .header__logo {
    width: 150px;
    height: 45px;
  }
}
.header__nav-list-container {
  display: none;
}
@media screen and (max-width: 1200px) {
  .header__nav-list-container {
    display: block;
    position: fixed;
    background-color: #fff;
    width: 100%;
    top: 53px;
    right: -100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    z-index: 999;
  }
}
.header__nav-list-container.active {
  right: 0;
}
.header__nav-list-container.active .header__nav-list--sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  padding: 49px 2% 143px;
  height:100vh;
}
.header__nav-link {
  font: 500 1.6rem "Hiragino Kaku Gothic Pro", sans-serif;
}
.header__nav-link::marker {
  display none;
}
.header__nav-list-title {
  font: 500 2rem "Hiragino Kaku Gothic Pro", sans-serif;
  text-align: center;
}
.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .header__nav-list {
    display: none;
  }
}
.header__nav-list--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__nav-list--sp {
    display: block;
  }
}
.header__link-item {
  padding: 10px;
  border-bottom: 1px solid #000;
}
.header__nav-link-text {
  font: 400 1.6rem "Hiragino Kaku Gothic Pro", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 0 14px;
  min-height: 85px;
  color: #000;
}
.header__burger {
  width: 34px;
  height: 26px;
}
@media screen and (max-width: 767px) {
  .header__burger {
    width: 24px;
    height: 16px;
  }
}
.header__socials-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  color: #000;
}
@media screen and (max-width: 767px) {
  .header__socials-wrapper {
    display: none;
  }
}
.header__list-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.header__socials-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.header__socials-icon {
  width: 32px;
  height: 35px;
}

.footer {
  background-color: #000;
  color: #fff;
  position: relative;
}
.footer__contact-container {
  background-color: #fff;
  padding: 20px;
  max-width: 900px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}
@media screen and (max-width: 900px) {
  .footer__contact-container {
    padding: 10px;
    max-width: 90%;
  }
}
.footer__logo {
  width: 300px;
  height: 85px;
  background-color: #fff;
}
.footer__contact-content {
  padding: 20px;
  border: 1px solid #d84040;
}
@media screen and (max-width: 767px) {
  .footer__contact-content {
    padding: 10px;
  }
}
.footer__content {
  padding: 200px 0 100px;
}
.footer__container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1400px) {
  .footer__container {
    max-width: 100%;
    padding: 0 3%;
  }
}
.footer__section-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 400px;
}
@media screen and (max-width: 1400px) {
  .footer__section-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 100px;
  }
}
.footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 70px 50px;
}
@media screen and (max-width: 767px) {
  .footer__nav-list {
    gap: 30px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer__contact-item-contain {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  background-color: #d84040;
  width: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 900px) {
  .footer__contact-item-contain {
    gap: 10px;
    padding: 10px;
    width: 100%;
    min-height: 65px;
  }
}
.footer__contact-item-contain:hover {
  opacity: 0.8;
}
.footer__nav-item {
  max-width: 200px;
  width: 100%;
  padding-top: 5px;
  border-top: 1px solid #d84040;
}
@media screen and (max-width: 767px) {
  .footer__nav-item {
    max-width: 150px;
  }
}
.footer__nav-item-text {
  font: 700 1.8rem "Hiragino Kaku Gothic Pro", sans-serif;
}
@media screen and (max-width: 767px) {
  .footer__nav-item-text {
    font-size: 16px;
  }
}
.footer__text-container {
  margin: 50px 0 30px;
}
@media screen and (max-width: 1400px) {
  .footer__text-container {
    width: 100%;
  }
}
.footer__contact-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .footer__contact-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.footer__contact-icon {
  width: 36px;
  height: 32px;
}
@media screen and (max-width: 900px) {
  .footer__contact-icon {
    width: 26px;
    height: 22px;
  }
}
.footer__text-address, .footer__contact-text {
  font: 700 1.3rem "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  letter-spacing: 0.08em;
}
.footer__sns-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid #d84040;
}
@media screen and (max-width: 1400px) {
  .footer__sns-container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
}
@media screen and (max-width: 1400px) {
  .footer__logo-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}
.footer__sns-logo {
  width: 35px;
  height: 35px;
}
.footer__copyright-content {
  background-color: #d84040;
  text-align: center;
}
.footer__copyright {
  font: 500 1.6rem "Meiryo Font", sans-serif;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    font-size: 14px;
  }
}
.banner {
  background-color: #f7f4ef;
}
.banner__container {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1440/225;
  max-height: 350px;
  min-height: 270px;
}
.banner__text-wrap {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}
.banner__title {
  font: 700 3rem "Hiragino Kaku Gothic Pro", sans-serif;
  letter-spacing: 0.2em;
  line-height: 1.3333333333em;
  color: #fff;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .banner__title {
    font-size: 27px;
  }
}
.banner__subtitle {
  font: 700 1.6rem "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  letter-spacing: 0.06em;
  line-height: 1.625em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .banner__subtitle {
    font-size: 15px;
  }
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.breadcrumbs {
  background-color: #faf7f0;
}
.breadcrumbs__container {
  margin: 0 auto;
  max-width: 1200px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 30px 0;
}
@media screen and (max-width: 767px) {
  .breadcrumbs__container {
    padding: 0 6%;
    max-width: 100%;
  }
}
@media screen and (max-width: 1200px) {
  .breadcrumbs__container {
    padding-inline: 3%;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumbs__container {
    padding: 10px 3%;
  }
}
.breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 40px;
}
.breadcrumbs__item {
  position: relative;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .breadcrumbs__item {
    font-size: 1.2rem;
  }
}
.breadcrumbs__item:not(:last-child)::after {
  display: block;
  position: absolute;
  right: -20px;
  top: 50%;
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}
.breadcrumbs__item--lower {
  font-size: 1.4rem;
  font-weight: 500;
  color: #000;
  letter-spacing: 0.1em;
  line-height: 1em;
}

.top__mv-container {
  position: relative;
}
.top__mv-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
}
.top__mv-slider {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.top__image-container {
  width: 100%;
  height: 100vh;
  position: relative;
}
.top__image-container::after {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.top__scroll-container {
  margin: 400px 0 50px;
}
.top__scroll-container:hover .top__scroll-box {
  -webkit-animation: scroll-down 3s infinite;
          animation: scroll-down 3s infinite;
}
.top__scroll-down {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top__scroll-box {
  width: 56px;
  height: 56px;
}
@media screen and (max-width: 767px) {
  .top__scroll-box {
    width: 36px;
    height: 36px;
  }
}
.top__scroll-text {
  font: 400 2rem "Meiryo Font", sans-serif;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .top__scroll-text {
    font-size: 16px;
  }
}
.top__section-block {
  scroll-margin-top: 90px;
}
.top__content-container {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top__content-container {
    overflow: unset;
  }
}
.top__parallax-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1500px;
  background: url("./img/parallax-img.jpg") no-repeat;
  background-size: cover;
  will-change: background-position;
  opacity: 0.3;
}
@media screen and (max-width: 767px) {
  .top__parallax-image {
    display: none;
  }
}
.top__block-content {
  position: relative;
  z-index: 2;
}
.top__content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .top__content-wrapper {
    position: relative;
  }
}
.top__section-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .top__section-content {
    width: 100%;
    padding-bottom: 30px;
    color: #fff;
    position: relative;
    z-index: 1;
  }
  .top__section-content::after {
    position: absolute;
    content: "";
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
  }
}
.top__section-image {
  width: 50%;
  height: 500px;
}
@media screen and (max-width: 767px) {
  .top__section-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
}
.top__section-image img {
  -o-object-position: 80% 35%;
     object-position: 80% 35%;
}
.top__section-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 50px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .top__section-title-wrap {
    padding-top: 25px;
    margin-bottom: 10px;
  }
}
.top__section-title-wrap--center {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .top__section-title-wrap--center {
    margin-bottom: 30px;
  }
}
.top__section-title-wrap--black {
  color: #000;
  margin-bottom: 20px;
  padding-top: 0;
}
.top__section-title-wrap--store {
  color: #fff;
  margin-bottom: 0;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .top__section-title-wrap--store {
    padding-bottom: 30px;
  }
}
.top__section-title--jp {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .top__section-title--jp {
    font-size: 30px;
  }
}
.top__section-title--en {
  font: 700 4rem "Hiragino Kaku Gothic Pro", sans-serif;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .top__section-title--en {
    font-size: 14px;
  }
}
.top__section-text {
  font: 400 1.6rem "Hiragino Kaku Gothic Pro", sans-serif;
  line-height: 2em;
  max-width: 600px;
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 3;
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .top__section-text {
    font-size: 14px;
    max-width: 300px;
  }
}
.top__section-button-contain {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .top__section-button-contain {
    margin-top: 40px;
  }
}
.top__section-button {
  font: 500 1.8rem "Meiryo Font", sans-serif;
  padding: 20px 60px;
  border-radius: 10px;
  background-color: #000;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .top__section-button {
    font-size: 16px;
    padding: 10px 30px;
    background-color: #d84040;
  }
}
.top__news-content {
  background-color: #faf7f0;
  padding: 50px 0;
}
@media screen and (max-width: 767px) {
  .top__news-content {
    padding: 25px 0;
  }
}
.top__news-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1400px) {
  .top__news-list {
    max-width: 100%;
    padding: 0 4%;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .top__news-list {
    grid-template-columns: 1fr;
  }
}
.top__news-item-container {
  background-color: #fff;
}
.top__news-item .top__news-image {
  overflow: hidden;
}
.top__news-item .top__news-image img {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.top__news-item:hover .top__news-image img {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
.top__news-text-container {
  padding: 20px;
}
.top__news-title {
  font: 700 2rem "Meiryo Font", sans-serif;
  line-height: 1em;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .top__news-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.top__news-text {
  font: 300 1.6rem "Hiragino Kaku Gothic Pro", sans-serif;
  line-height: 2em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 3;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .top__news-text {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.top__news-date {
  font-size: 1.4rem;
  color: #000;
}
@media screen and (max-width: 767px) {
  .top__news-date {
    font-size: 12px;
  }
}
.top__news-image {
  width: 100%;
  height: 285px;
}
@media screen and (max-width: 767px) {
  .top__news-image {
    height: 200px;
  }
}
.top__news-button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .top__news-button-container {
    margin-top: 20px;
  }
}
.top__news-button {
  font: 500 1.6rem "Hiragino Kaku Gothic Pro", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 300px;
  width: 100%;
  color: #fff;
  background-color: #d84040;
  min-height: 55px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .top__news-button {
    max-width: 200px;
    min-height: 45px;
  }
}
.top__news-button:hover {
  background-color: #fff;
  border: 1px solid #d84040;
  color: #d84040;
}
.top__store-section {
  background: url("./img/store-bg.jpg") no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  padding-bottom: 100px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top__store-section {
    padding-bottom: 100px;
  }
}
.top__store-section::after {
  position: absolute;
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.top__store-title {
  font-size: 3.2rem;
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .top__store-title {
    font-size: 22px;
    padding: 0 10px;
  }
}
.top__store-content {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1400px) {
  .top__store-content {
    max-width: 100%;
    padding: 0 3%;
  }
}
.top__store-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #faf7f0;
}
@media screen and (max-width: 767px) {
  .top__store-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 30px;
  }
}
.top__store-map {
  max-width: 700px;
  width: 100%;
  height: 500px;
}
@media screen and (max-width: 767px) {
  .top__store-map {
    max-width: 100%;
    height: 300px;
  }
}
.top__store-text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .top__store-text-wrap {
    gap: 10px;
  }
}
.top__store-text-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top__store-text-container {
    gap: 15px;
    padding-top: 20px;
  }
}
.top__pin-icon {
  width: 42px;
  height: 45px;
}
@media screen and (max-width: 767px) {
  .top__pin-icon {
    width: 22px;
    height: 25px;
  }
}
.top__store-text {
  font-size: 1.8rem;
  font-family: "Meiryo Font", sans-serif;
}
@media screen and (max-width: 767px) {
  .top__store-text {
    font-size: 16px;
  }
}
.top__access-button-contain {
  max-width: 300px;
  width: 100%;
  background-color: #000;
}
@media screen and (max-width: 767px) {
  .top__access-button-contain {
    max-width: 200px;
    min-height: 45px;
  }
}
.top__access-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font: 500 1.6rem "Hiragino Kaku Gothic Pro", sans-serif;
  color: #fff;
  min-height: 50px;
}

@-webkit-keyframes scroll-down {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  35% {
    -webkit-transform: translateY(1rem);
            transform: translateY(1rem);
    opacity: 0;
  }
  70% {
    -webkit-transform: translateY(-1rem);
            transform: translateY(-1rem);
    opacity: 0;
  }
}

@keyframes scroll-down {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  35% {
    -webkit-transform: translateY(1rem);
            transform: translateY(1rem);
    opacity: 0;
  }
  70% {
    -webkit-transform: translateY(-1rem);
            transform: translateY(-1rem);
    opacity: 0;
  }
}
.menu__content {
  padding-top: 56px;
}
@media screen and (max-width: 767px) {
  .menu__content {
    padding-top: 50px;
  }
}
.menu__service-section {
  background-color: #faf7f0;
  margin-top: 150px;
  padding-bottom: 270px;
}
@media screen and (max-width: 767px) {
  .menu__service-section {
    margin-top: 75px;
    padding-bottom: 100px;
  }
}
.menu__container, .menu__service-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .menu__container, .menu__service-container {
    max-width: 100%;
    padding: 0 3%;
  }
}
.menu__service-container {
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .menu__service-container {
    padding-top: 20px;
  }
}
.menu__section-title {
  font: 700 4.5rem "Hiragino Kaku Gothic Pro", sans-serif;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .menu__section-title {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: bold;
  }
}
.menu__section-text {
  font: 500 1.8rem "Meiryo Font", sans-serif;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .menu__section-text {
    font-size: 16px;
  }
}
.menu__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .menu__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}
.menu__item-text-container {
  max-width: 560px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .menu__item-text-container {
    max-width: 100%;
  }
}
.menu__item-image {
  width: 600px;
  height: 350px;
}
@media screen and (max-width: 767px) {
  .menu__item-image {
    width: 100%;
    height: 250px;
  }
}
.menu__list-content {
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .menu__list-content {
    margin-top: 35px;
  }
}
.menu__menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .menu__menu-list {
    gap: 15px;
  }
}
.menu__list-item {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px dashed #808080;
}
@media screen and (max-width: 767px) {
  .menu__list-item {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
.menu__list-item:nth-child(even) .menu__item {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .menu__list-item:nth-child(even) .menu__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.menu__list-item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border: 0;
}
.menu__item-title {
  font: 700 2.8rem "Hiragino Kaku Gothic Pro", sans-serif;
  margin: 40px 0 20px;
}
@media screen and (max-width: 767px) {
  .menu__item-title {
    font-size: 20px;
    margin: 10px 0;
    letter-spacing: -0.04em;
  }
}
.menu__item-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.menu__item-label span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font: 700 1.6rem "Hiragino Kaku Gothic Pro", sans-serif;
  padding: 10px;
  background-color: #d84040;
  color: #fff;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .menu__item-label span {
    font-size: 14px;
    padding: 5px;
    border-radius: 10px;
  }
}
.menu__item-desc {
  font: 400 2rem "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  padding-top: 30px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .menu__item-desc {
    font-size: 16px;
    padding-top: 15px;
    margin-bottom: 20px;
  }
}
.menu__item-price {
  font: 700 2.4rem "Meiryo Font", sans-serif;
}
@media screen and (max-width: 767px) {
  .menu__item-price {
    font-size: 20px;
  }
}
.menu__service-list-container {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .menu__service-list-container {
    margin-top: 30px;
  }
}
.menu__service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px 20px;
}
@media screen and (max-width: 767px) {
  .menu__service-list {
    grid-template-columns: 1fr;
    gap: 25px 10px;
  }
}
.menu__service-image {
  width: 100%;
  height: 300px;
}
@media screen and (max-width: 767px) {
  .menu__service-image {
    height: 250px;
  }
}
.menu__service-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
}
.menu__service-text-container {
  text-align: center;
}
.menu__service-title {
  font: 700 3.2rem "Hiragino Kaku Gothic Pro", sans-serif;
}
@media screen and (max-width: 767px) {
  .menu__service-title {
    font-size: 22px;
  }
}
.menu__service-desc {
  font: 500 1.8rem "Hiragino Kaku Gothic Pro", sans-serif;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .menu__service-desc {
    font-size: 16px;
  }
}

.store__content {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .store__content {
    padding-top: 50px;
  }
}
.store__container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1400px) {
  .store__container {
    max-width: 100%;
    padding: 0 3%;
  }
}
.store__container--pt150 {
  padding-top: 150px;
}
@media screen and (max-width: 767px) {
  .store__container--pt150 {
    padding-top: 75px;
  }
}
.store__image-container {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .store__image-container {
    margin-top: 25px;
  }
}
.store__image {
  width: 100%;
  height: 500px;
}
@media screen and (max-width: 767px) {
  .store__image {
    height: 400px;
  }
}
.store__info-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 50px;
}
@media screen and (max-width: 1200px) {
  .store__info-content {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .store__info-content {
    margin-top: 25px;
    gap: 30px;
  }
}
.store__feature-content {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .store__feature-content {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .store__info-container {
    width: 100%;
  }
}
.store__info-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  border-bottom: 2px solid #d84040;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .store__info-title-wrap {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
.store__info-icon {
  width: 35px;
  height: 35px;
}
@media screen and (max-width: 767px) {
  .store__info-icon {
    width: 25px;
    height: 25px;
  }
}
.store__info-title {
  font: 700 2.8rem "Hiragino Kaku Gothic Pro", sans-serif;
}
@media screen and (max-width: 767px) {
  .store__info-title {
    font-size: 18px;
  }
}
.store__info-text {
  font: 500 2rem "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .store__info-text {
    font-size: 16px;
  }
}
.store__features-content {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .store__features-content {
    padding-top: 40px;
  }
}
.store__slider-content .splide__arrow {
  border-radius: unset;
  background: #d84040;
  width: 60px;
  height: 60px;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .store__slider-content .splide__arrow {
    width: 30px;
    height: 30px;
  }
}
.store__slider-content .splide__arrow svg path {
  display: none;
}
.store__slider-content .splide__arrow--next {
  right: 5em;
}
@media screen and (max-width: 767px) {
  .store__slider-content .splide__arrow--next {
    right: 1em;
  }
}
.store__slider-content .splide__arrow--next svg {
  background: url("./img/icons/slider-arrow-right.svg") no-repeat;
  background-size: cover;
  width: 32px;
  height: 32px;
}
@media screen and (max-width: 767px) {
  .store__slider-content .splide__arrow--next svg {
    width: 22px;
    height: 22px;
  }
}
.store__slider-content .splide__arrow--prev {
  left: 5em;
}
@media screen and (max-width: 767px) {
  .store__slider-content .splide__arrow--prev {
    left: 1em;
  }
}
.store__slider-content .splide__arrow--prev svg {
  background: url("./img/icons/slider-arrow-right.svg") no-repeat;
  background-size: cover;
  width: 32px;
  height: 32px;
}
@media screen and (max-width: 767px) {
  .store__slider-content .splide__arrow--prev svg {
    width: 22px;
    height: 22px;
  }
}
.store__slider-content .splide__pagination {
  gap: 5px;
}
.store__slider-content .splide__pagination__page {
  background: #d84040;
  width: 42px;
  height: 8px;
  border-radius: unset;
}
@media screen and (max-width: 767px) {
  .store__slider-content .splide__pagination__page {
    width: 21px;
    height: 4px;
  }
}
.store__slider-content .splide__pagination__page.is-active {
  width: 16px;
  height: 16px;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .store__slider-content .splide__pagination__page.is-active {
    width: 8px;
    height: 8px;
  }
}
.store__feature-image {
  width: 100%;
  height: 600px;
}
@media screen and (max-width: 767px) {
  .store__feature-image {
    height: 400px;
  }
}
.store__access-content {
  background-color: #faf7f0;
  padding-bottom: 300px;
}
@media screen and (max-width: 767px) {
  .store__access-content {
    padding-bottom: 200px;
  }
}
.store__map {
  width: 100%;
  height: 400px;
  border: 0;
}
@media screen and (max-width: 767px) {
  .store__map {
    height: 300px;
  }
}

.contact {
  background-color: #faf7f0;
  padding: 100px 1rem 200px;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .contact {
    padding: 156px 0;
  }
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 50px 3% 200px;
  }
}
.contact__container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}
@media screen and (max-width: 1000px) {
  .contact__container {
    max-width: 100%;
    padding: 0 3%;
  }
}
@media screen and (max-width: 767px) {
  .contact__container {
    padding: 0;
  }
}
.contact__container h2 {
  font-size: 2.8rem;
  font-weight: bold;
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  margin-bottom: 1rem;
  text-align: center;
  color: #000;
}
.contact__progress-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 100px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .contact__progress-container {
    gap: 50px;
    margin-bottom: 25px;
  }
}
.contact__progress-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  border: 2px solid #d84040;
  color: #d84040;
  border-radius: 20px;
  width: 130px;
  height: 110px;
  padding: 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact__progress-item {
    gap: 5px;
    width: 90px;
    height: 60px;
    border-radius: 10px;
    padding: 0;
  }
}
.contact__progress-item::after {
  position: absolute;
  content: "";
  background: url("./img/icons/progress-arrow.svg") no-repeat;
  background-size: cover;
  width: 60px;
  height: 60px;
  top: 50%;
  right: -55px;
  -webkit-transform: translate(50%, -50%) rotate(180deg);
          transform: translate(50%, -50%) rotate(180deg);
}
@media screen and (max-width: 767px) {
  .contact__progress-item::after {
    width: 30px;
    height: 30px;
    right: -27px;
  }
}
.contact__progress-item:last-child::after {
  display: none;
}
.contact__progress-item--active {
  background-color: #d84040;
  color: #fff;
}
.contact__progress-num {
  font: 700 2.4rem "Hiragino Kaku Gothic Pro", sans-serif;
}
@media screen and (max-width: 767px) {
  .contact__progress-num {
    font-size: 18px;
  }
}
.contact__progress-text {
  font: 600 1.8rem "Meiryo Font", sans-serif;
}
@media screen and (max-width: 767px) {
  .contact__progress-text {
    font-size: 14px;
  }
}
.contact__form {
  margin-top: 50px;
}
.contact__description {
  font-size: 1.8rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  color: #666;
  margin-bottom: 2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__description {
    font-size: 16px;
  }
}
.contact__form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  border-bottom: 1px dotted #ccc;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .contact__form-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 10px;
    margin-bottom: 10px;
    gap: 10px;
  }
}
.contact__form-group label {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  color: #000;
}
@media screen and (max-width: 767px) {
  .contact__form-group label {
    font-size: 14px;
  }
}
.contact__form-group input,
.contact__form-group textarea {
  width: 77%;
  padding: 0.8rem;
  font: 500 1.8rem "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  border: 1px solid #000;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
@media screen and (max-width: 767px) {
  .contact__form-group input,
  .contact__form-group textarea {
    width: 100%;
    font-size: 16px;
  }
}
.contact__form-group input:focus,
.contact__form-group textarea:focus {
  border-color: #d84040;
  outline: none;
}
.contact__form-group--button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 0;
  margin-bottom: 0;
  border: 0;
}
.contact__form-group:nth-child(4) .contact__label-wrap {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.contact__label-wrap {
  font-size: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 200px;
  width: 100%;
  padding-left: 10px;
}
@media screen and (max-width: 767px) {
  .contact__label-wrap {
    font-size: 14px;
    max-width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 20px;
    padding-left: 0;
  }
}
.contact__label-text {
  background-color: #d84040;
  color: #fff;
  padding: 0 10px;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .contact__label-text {
    padding: 0 7px;
  }
}
.contact__submit {
  display: block;
  background-color: #d84040;
  color: #fff;
  font-size: 1.8rem;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  width: 300px;
  min-height: 50px;
  font-weight: bold;
  padding: 0.8rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .contact__submit {
    font-size: 16px;
    width: 200px;
    min-height: 40px;
  }
}
.contact__submit:hover {
  background-color: #fff;
  border: 1px solid #d84040;
  color: #d84040;
}

.about {
  padding: 56px 0;
}
@media screen and (max-width: 767px) {
  .about {
    padding: 50px 0 50px;
  }
}
.about__section-title {
  font: 700 3.4rem "Hiragino Kaku Gothic Pro", sans-serif;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .about__section-title {
    font-size: 24px;
    margin-bottom: 15px;
  }
}
.about__section-image {
  width: 100%;
  height: 500px;
}
@media screen and (max-width: 767px) {
  .about__section-image {
    height: 300px;
  }
}
.about__section-image--ht300 {
  width: 400px;
  height: 360px;
}
@media screen and (max-width: 900px) {
  .about__section-image--ht300 {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .about__section-image--ht300 {
    height: 250px;
  }
}
.about__container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1400px) {
  .about__container {
    max-width: 100%;
    padding: 0 3%;
  }
}
.about__text-container--mw600 {
  width: 64%;
}
@media screen and (max-width: 900px) {
  .about__text-container--mw600 {
    width: 100%;
  }
}
.about__text {
  font: 500 1.8rem "Meiryo Font", sans-serif;
  padding-top: 30px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .about__text {
    font-size: 16px;
    padding-top: 15px;
  }
}
.about__text--desc {
  padding-top: 0;
}
.about__image-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-top: 60px;
}
@media screen and (max-width: 900px) {
  .about__image-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .about__image-wrapper {
    gap: 10px;
    margin-top: 30px;
  }
}

.overflow {
  overflow: hidden;
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}
<style>
.store-info-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 767px) {
  .store-info-container {
    flex-direction: column;
  }
}

.store-info-map {
  flex: 1;
  height: 500px;
}

@media screen and (max-width: 767px) {
  .store-info-map {
    height: 300px;
  }
}

.store-info-details {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 30px;
}

.store-info-card {
  width: 100%;
  max-width: 586px;
}

.store-info-title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  color: #d84040;
  position: relative;
  padding-bottom: 15px;
}

.store-info-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #d84040;
}

.store-info-address {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  background-color: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid #d84040;
}

.pin-icon {
  width: 24px;
  height: 24px;
  margin-right: 15px;
  margin-top: 3px;
}

.address-text p {
  font-size: 1.6rem;
  line-height: 1.7;
  margin: 0;
}

.store-info-table {
  margin-bottom: 25px;
}

.store-info-table table {
  width: 100%;
  border-collapse: collapse;
}

.store-info-table th, .store-info-table td {
  padding: 12px 10px;
  border-bottom: 1px solid #eee;
  font-size: 1.5rem;
  text-align: left;
}

.store-info-table th {
  width: 30%;
  color: #333;
  font-weight: bold;
}

.store-info-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.service-item {
  display: flex;
  align-items: center;
  background-color: #f9f9f9;
  padding: 8px 15px;
  border-radius: 20px;
  width: calc(50% - 5px);
}

@media screen and (max-width: 550px) {
  .service-item {
    width: 100%;
  }
}

.service-icon {
  color: #d84040;
  font-weight: bold;
  font-size: 1.8rem;
  margin-right: 8px;
}

.service-text {
  font-size: 1.4rem;
}

.store-buttons {
  display: flex;
  gap: 15px;
}

.store-button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 5px;
  font-size: 1.6rem;
  font-weight: bold;
  flex: 1;
  transition: all 0.3s ease;
}

.store-button.primary {
  background-color: #d84040;
  color: #fff;
}

.store-button.primary:hover {
  background-color: #b83030;
}

.store-button.secondary {
  background-color: #333;
  color: #fff;
}

.store-button.secondary:hover {
  background-color: #222;
}

@media screen and (max-width: 767px) {
  .store-info-details {
    padding: 20px;
  }
  
  .store-info-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .store-info-address,
  .store-info-table,
  .store-info-services {
    margin-bottom: 20px;
  }
  
  .store-button {
    padding: 10px 15px;
    font-size: 1.4rem;
  }
}
/* ニュースがない場合のスタイル */
  .top__news-empty {
    width: 80%;
    background-color: #fff;
    padding: 40px 20px;
    text-align: center;
    margin: 0 auto 30px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }
  
  .top__news-empty p {
    font-size: 1.8rem;
    color: #666;
  }
  
  @media screen and (max-width: 767px) {
    .top__news-empty {
      padding: 25px 15px;
      margin-bottom: 20px;
    }
    
    .top__news-empty p {
      font-size: 1.5rem;
    }
  }
.modern-footer {
  background-color: #111;
  color: #fff;
  font-family: "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic", sans-serif;
  padding: 0;
  position: relative;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 30px;
}

/* フッタートップ部分 */
.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-logo {
  flex: 0 0 300px;
}

/* ロゴ背景を白に設定 */
.logo-wrapper {
  background-color: #fff;
  padding: 10px;
  border-radius: 8px;
  display: inline-block;
}

.logo-image {
  max-width: 100%;
  height: auto;
}

.footer-contact-card {
  flex: 1;
  min-width: 300px;
  background: linear-gradient(to right, #d84040, #c13030);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(216, 64, 64, 0.2);
}

.contact-title {
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: 2px;
  margin: 0;
  padding: 12px 0;
}

.contact-content {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-item {
  flex: 1;
  min-width: 250px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-icon {
  width: 28px;
  height: 28px;
  margin-top: 3px;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
  stroke: #fff;
}

.contact-details {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 3px;
}

.contact-value {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.contact-hours {
  font-size: 0.85rem;
  opacity: 0.8;
}

.contact-action {
  display: inline-block;
  margin-top: 8px;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

.contact-action:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* フッター中央部分 */
.footer-middle {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-info {
  flex: 0 0 300px;
}

.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.address-icon {
  width: 24px;
  height: 24px;
}

.address-icon svg {
  width: 100%;
  height: 100%;
  stroke: #d84040;
}

.address-details {
  display: flex;
  flex-direction: column;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #333;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: #d84040;
  transform: translateY(-3px);
}

.social-link svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
}

.footer-nav {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: flex-end;
  gap: 60px;
}

.nav-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  position: relative;
  padding-left: 15px;
  transition: color 0.2s;
}

.nav-link:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #d84040;
  border-radius: 50%;
}

.nav-link:hover {
  color: #d84040;
}

/* フッターボトム部分 */
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  color: #888;
  font-size: 0.85rem;
  margin: 0;
}

.payment-methods {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #888;
}

.payment-label {
  font-weight: bold;
}

/* レスポンシブ対応 - スマホ表示時の文字サイズ拡大 */
@media screen and (max-width: 768px) {
  .footer-container {
    padding: 40px 15px 20px;
  }
  
  .footer-top, .footer-middle {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-logo, .footer-info {
    flex: 0 0 100%;
    text-align: center;
  }
  
  .logo-wrapper {
    padding: 10px;
    max-width: 250px;
    margin: 0 auto;
  }
  
  .footer-contact-card {
    width: 100%;
  }
  
  .contact-title {
    font-size: 2.2rem; /* スマホでのタイトルサイズ拡大 */
    padding: 15px 0;
  }
  
  .contact-content {
    flex-direction: column;
    padding: 25px;
  }
  
  .contact-item {
    gap: 18px;
  }
  
  .contact-icon {
    width: 32px; /* アイコンサイズ拡大 */
    height: 32px;
  }
  
  .contact-label {
    font-size: 1.1rem; /* ラベルサイズ拡大 */
    margin-bottom: 5px;
  }
  
  .contact-value {
    font-size: 1.3rem; /* 値のサイズ拡大 */
    margin-bottom: 8px;
  }
  
  .contact-hours {
    font-size: 1.1rem; /* 時間のサイズ拡大 */
  }
  
  .contact-action {
    font-size: 1.1rem; /* ボタンテキストサイズ拡大 */
    padding: 8px 16px;
    margin-top: 12px;
  }
  
  .footer-address {
    justify-content: center;
  }
  
  .address-icon {
    width: 28px; /* アイコンサイズ拡大 */
    height: 28px;
  }
  
  .address-details {
    font-size: 1.2rem; /* 住所テキストサイズ拡大 */
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .social-link {
    width: 44px; /* ソーシャルリンクサイズ拡大 */
    height: 44px;
  }
  
  .social-link svg {
    width: 22px; /* ソーシャルアイコンサイズ拡大 */
    height: 22px;
  }
  
  .footer-nav {
    justify-content: space-around;
    gap: 30px;
  }
  
  .nav-link {
    font-size: 1.2rem; /* ナビリンクサイズ拡大 */
    padding-left: 18px;
    margin-bottom: 5px;
  }
  
  .nav-link:before {
    width: 8px; /* ドットサイズ拡大 */
    height: 8px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .copyright {
    font-size: 1rem; /* コピーライトサイズ拡大 */
  }
  
  .payment-methods {
    flex-direction: column;
    gap: 8px;
  }
  
  .payment-label, .payment-icons {
    font-size: 1rem; /* 決済方法テキストサイズ拡大 */
  }
}