@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;
}

.blue {
  background-color: #EDF8F9;
}

.pink {
  background-color: #FFF7F7;
}

.green {
  background-color: #f6f7ea;
}

#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;
  padding-top: 65px;
}
@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 {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}
@media (min-width: 992px) {
  #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;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 26%;
    height: initial;
    padding: 0;
    position: initial;
  }
}
#top .text-area h1 img {
  margin: 80px auto 0;
}
@media (min-width: 992px) {
  #top .text-area h1 img {
    margin: initial;
    max-height: calc(100vh - 75px);
  }
}
#top .mv-area {
  position: relative;
  width: 100%;
  height: 100%;
  clip-path: ellipse(100% 100% at 50% 100%);
  margin-top: 40px;
}
@media (min-width: 992px) {
  #top .mv-area {
    width: 74%;
    clip-path: ellipse(100% 100% at 0% 50%);
    margin-top: initial;
  }
}
#top .mv-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 992px) {
  #top .mv-area img {
    height: calc(80vh - 65px);
    min-height: 500px;
  }
}

#contents {
  font-size: 1.6rem;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.4px;
  padding: 18px 3.846vw 0;
}
@media (min-width: 641px) {
  #contents {
    padding-top: 42px;
  }
}
#contents .text {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  padding: 40px 6.153vw;
}
@media (min-width: 641px) {
  #contents .text {
    padding-top: 70px;
    padding-bottom: 94px;
  }
}
@media (min-width: 641px) {
  #contents .text * {
    max-width: 430px;
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  #contents .text * {
    white-space: nowrap;
  }
}
#contents .text hr {
  border: none;
  height: 1px;
  background-color: #414141;
  margin: 40px auto;
}
#contents .text .img {
  max-width: 500px !important;
  margin: 40px auto;
}
#contents .text .img img {
  max-width: 100%;
  border-radius: 4px;
}
#contents .text .date {
  font-family: "gotham-narrow", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
  text-align: center;
  margin-top: 40px;
}
@media (min-width: 641px) {
  #contents .text .date {
    font-weight: 500;
  }
}
#contents .text .shop {
  margin-top: 40px;
  padding: 36px 0;
  text-align: center;
  border: 1px solid #FB6554;
  border-radius: 4px;
  font-size: 1.4rem;
}
@media (min-width: 641px) {
  #contents .text .shop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: left;
    padding: 26px 0;
  }
}
#contents .text .shop .logo img {
  margin: 0 auto 20px;
}
#contents .text .shop .hb-instagram {
  font-size: 2.6rem;
  padding-top: 0.2em;
  display: inline-block;
}/*# sourceMappingURL=contents.css.map */