@charset "UTF-8";
/*
A modern CSS reset 2023 / 9 / 18
https://github.com/Andy-set-studio/modern-css-reset
*/
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
      text-size-adjust: none;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1, h2, h3, h4, button, input, label {
  line-height: 1.1;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

@-webkit-keyframes fadeIn {
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes clipPath {
  100% {
    clip-path: inset(0);
  }
}
@keyframes clipPath {
  100% {
    clip-path: inset(0);
  }
}
@-webkit-keyframes clipPathCircle {
  100% {
    clip-path: circle(100% at 50% 50%);
  }
}
@keyframes clipPathCircle {
  100% {
    clip-path: circle(100% at 50% 50%);
  }
}
p,
ul,
ol,
h1,
h2,
h3,
figure,
dl,
dd,
button,
pre {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

ul,
ol {
  list-style: none;
}

img,
video {
  max-width: 100%;
  vertical-align: bottom;
  line-height: 1;
}

button {
  color: currentColor;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  button:hover {
    opacity: 0.5;
  }
}

a {
  color: currentColor;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.5;
  }
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-family: "Shuei NijimiMGo B JIS2004", sans-serif;
  font-size: 1.5rem;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
}

[x-cloak],
[v-cloak] {
  display: none !important;
}

@media (min-width: 641px) {
  .device-sp {
    display: none;
  }
}

.device-pc {
  display: none;
}
@media (max-width: 600px) {
  .device-pc {
    display: block;
  }
}

br:not(.sp-br):not(.sp) {
  display: none;
}
@media (min-width: 641px) {
  br:not(.sp-br):not(.sp) {
    display: block;
  }
}

body {
  color: #414141;
  font-size: 1.6rem;
  overflow-x: hidden;
  width: 100vw;
}

@media (min-width: 641px) {
  .right-pc {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
}
.header .header-menu {
  position: fixed;
  top: 65px;
}
@media (min-width: 641px) {
  .header .header-menu {
    top: 40px;
    right: 0;
    width: auto;
    max-width: 400px;
  }
}

#top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
@media (min-width: 992px) {
  #top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
#top .text-area {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 7rem 0 3rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 992px) {
  #top .text-area {
    width: 45%;
    padding: 0;
  }
}
#top .text-area .brand {
  position: absolute;
  top: 2rem;
  right: 1.5rem;
  width: 63px;
}
@media (min-width: 992px) {
  #top .text-area .brand {
    width: initial;
    right: 3rem;
  }
}
#top .text-area h1 {
  width: 264px;
}
@media (min-width: 992px) {
  #top .text-area h1 {
    width: 330px;
  }
}
@media (min-width: 641px) {
  #top .text-area h1 {
    width: initial;
  }
}
#top .slideshow-area {
  position: relative;
  width: 100%;
  height: 100%;
  clip-path: ellipse(100% 100% at 50% 100%);
}
@media (min-width: 992px) {
  #top .slideshow-area {
    width: 60%;
    clip-path: ellipse(100% 90% at 0% 50%);
  }
}
#top .swiper {
  width: 100%;
  height: 100%;
}
#top .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 6s ease-in-out;
  transition: -webkit-transform 6s ease-in-out;
  transition: transform 6s ease-in-out;
  transition: transform 6s ease-in-out, -webkit-transform 6s ease-in-out;
}
@media (min-width: 992px) {
  #top .swiper-slide img {
    height: 80vh;
  }
}
#top .swiper-slide-active img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
#top .swiper-pagination {
  position: absolute;
  bottom: 20px !important;
  left: 50% !important;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 992px) {
  #top .swiper-pagination {
    bottom: 2rem !important;
    left: auto !important;
    right: 2rem;
    width: auto !important;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
#top .swiper-pagination-bullet {
  background: #FFF;
  opacity: 0.5;
  -webkit-filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
}
@media (min-width: 992px) {
  #top .swiper-pagination-bullet {
    background: #FB6554;
    display: block;
    margin: 10px 0;
  }
}
#top .swiper-pagination-bullet-active {
  opacity: 1;
}

#yodogawa {
  font-size: 1.6rem;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.4px;
  padding: 52px 6.41vw;
}
@media (min-width: 992px) {
  #yodogawa {
    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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 80px 6.41vw;
  }
}
#yodogawa .text {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  letter-spacing: 1.6px;
}
@media (min-width: 992px) {
  #yodogawa .text {
    width: initial;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-orientation: mixed;
  }
  #yodogawa .text span {
    text-orientation: upright;
  }
}
@media (max-width: 600px) {
  #yodogawa .text {
    width: initial;
  }
}
#yodogawa .store-link {
  display: inline-block;
  background: #fff;
  border-radius: 2rem;
  margin-top: 36px;
  margin-bottom: 52px;
  padding: 0.8em;
  line-height: 1;
  letter-spacing: 1.04px;
}
@media (min-width: 992px) {
  #yodogawa .store-link {
    margin-top: 0;
    margin-right: 60px;
  }
}
#yodogawa .store-link span {
  display: inline-block;
  padding-left: 0.7px;
}
@media (min-width: 992px) {
  #yodogawa .store-link span {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    padding-left: 2px;
  }
}
#yodogawa .notice {
  color: #FB6554;
  border-radius: 4px;
  border: 1px solid #FB6554;
  font-size: 1.4rem;
  line-height: 185%; /* 25.9px */
  letter-spacing: 0.21px;
  padding: 20px;
}
@media (min-width: 992px) {
  #yodogawa .notice {
    margin-top: 80px;
  }
}
@media (min-width: 641px) {
  #yodogawa .notice {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    margin-left: auto;
    margin-right: auto;
  }
}

#products {
  background-color: #fff;
  margin-top: 27vw;
  text-align: center;
  padding-bottom: 60px;
}
@media (min-width: 641px) {
  #products {
    margin-top: 0;
    padding-top: 60px;
  }
}
#products::before {
  content: "";
  display: block;
  width: 100%;
  height: 58vw;
  background-color: #fff;
  border-radius: 50%;
  margin-top: -27vw;
  position: absolute;
  z-index: -1;
}
@media (min-width: 641px) {
  #products::before {
    display: none;
  }
}
#products h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  top: -8vw;
}
@media (min-width: 641px) {
  #products h2 {
    top: 0;
    margin-bottom: 20px;
  }
}
#products .image {
  width: 235px;
  margin: 0 auto;
}
#products h3 {
  font-size: 2.4rem;
  line-height: 150%; /* 36px */
  letter-spacing: 0.36px;
  padding: 20px 0 12px;
}
#products .price {
  font-size: 2.4rem;
}
#products .product-link {
  border-radius: 30px;
  background: #FB6554;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.3px;
  padding: 16px 24px;
  margin-top: 20px;
  display: inline-block;
}
#products .product-link span {
  display: inline-block;
  padding-left: 4px;
}
#products .product .soldout {
  display: none;
  font-size: 1.4rem;
  letter-spacing: 0.21px;
  color: #FB6554;
  margin-top: 1em;
}
#products .product.sold .soldout {
  display: block;
}

#article-list {
  padding: 50px 6.41vw;
}
@media (min-width: 641px) {
  #article-list {
    max-width: 660px;
    margin: 80px auto;
    padding: 0;
  }
}
#article-list .article-item {
  padding: 20px;
  margin-bottom: 35px;
  background-color: #fff;
}
@media (min-width: 641px) {
  #article-list .article-item {
    padding: 24px;
    margin-bottom: 40px;
  }
}
#article-list .article-item.pink {
  background-color: #FFF7F7;
}
#article-list .article-item.green {
  background-color: #FBFFF7;
}
#article-list .article-item a {
  display: block;
}
@media (min-width: 641px) {
  #article-list .article-item a img {
    width: 200px;
  }
}
#article-list .article-item a h4 {
  line-height: 185%; /* 29.6px */
  letter-spacing: 0.24px;
  padding-top: 16px;
}
@media (min-width: 641px) {
  #article-list .article-item a h4 {
    font-size: 1.8rem;
    line-height: 185%; /* 33.3px */
    letter-spacing: 0.18px;
  }
}
#article-list .article-item a .date {
  font-size: 1rem;
  letter-spacing: 0.15px;
  padding-top: 8px;
}
@media (min-width: 641px) {
  #article-list .article-item a dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
}
#article-list .see-all-link {
  border-radius: 30px;
  background: #FB6554;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.3px;
  padding: 16px 24px;
  display: block;
  margin: 0 auto;
}
#article-list .see-all-link span {
  display: inline-block;
  padding-left: 0.7px;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
}
.modal.is-active {
  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;
}
.modal-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(217, 217, 217, 0.6);
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
  cursor: pointer;
}
.modal-content {
  position: relative;
  background: white;
  border-radius: 12px;
  max-width: 500px;
  max-height: 80%;
  width: 90%;
  margin: 20px;
  overflow: hidden;
  z-index: 1001;
}
.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 32px 0 16px;
}
.modal-logo {
  max-width: 200px;
  height: auto;
}
.modal-body {
  max-height: 17.5em;
  overflow-y: auto;
  padding: 8px 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(30%, white), to(rgba(255, 255, 255, 0))) top/100% 50px no-repeat, -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(70%, white)) bottom/100% 50px no-repeat, radial-gradient(farthest-side at 50% 0, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)) top/100% 6px no-repeat, radial-gradient(farthest-side at 50% 100%, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)) bottom/100% 6px no-repeat;
  background: linear-gradient(white 30%, rgba(255, 255, 255, 0)) top/100% 50px no-repeat, linear-gradient(rgba(255, 255, 255, 0), white 70%) bottom/100% 50px no-repeat, radial-gradient(farthest-side at 50% 0, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)) top/100% 6px no-repeat, radial-gradient(farthest-side at 50% 100%, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)) bottom/100% 6px no-repeat;
  background-attachment: local, local, scroll, scroll;
}
@media (min-width: 641px) {
  .modal-body {
    max-height: 400px;
    background: none;
    padding: 0;
  }
}
@media (min-width: 641px) {
  .modal-body::-webkit-scrollbar {
    width: 8px;
  }
  .modal-body::-webkit-scrollbar-track {
    background: #F5F5F5;
    border-radius: 4px;
  }
  .modal-body::-webkit-scrollbar-thumb {
    background: #d9d9d9;
    border-radius: 4px;
  }
}
.modal-text {
  padding: 0 24px 30px;
  line-height: 1.8;
  letter-spacing: 0.4px;
}
.modal-text p {
  margin-bottom: 1.2em;
  font-size: 14px;
}
.modal-text p:last-child {
  margin-bottom: 0;
}
.modal-close {
  font-size: 1.8rem;
  width: 12px;
  height: 12px;
  cursor: pointer;
  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;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 0 auto 32px;
  padding-top: 30px;
}
.modal-close:hover {
  opacity: 0.5;
}

body.modal-open {
  overflow: hidden;
}

@media (min-width: 641px) {
  .modal-content {
    max-width: 600px;
    width: auto;
    margin: 10px;
    max-height: 85%;
  }
  .modal-header {
    padding: 64px 20px 15px;
  }
  .modal-logo {
    max-width: 150px;
  }
  .modal-text {
    padding: 40px 64px;
  }
  .modal-close {
    padding-bottom: 64px;
  }
  .modal-body {
    max-height: 20em;
  }
}/*# sourceMappingURL=index.css.map */