@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css");
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic Pro", "Hiragino Sans", Meiryo, sans-serif;
  margin: 0;
  color: #80606f;
  background: radial-gradient(#FCD3CD 60%, #FEB7C7);
  background-attachment: fixed;
  position: relative;
}
body::after {
  content: "";
  background: url(../img/bg.jpg) no-repeat center/cover;
  background-attachment: fixed;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
  opacity: 0.2;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.global_head {
  margin: 0;
}

.wrap {
  font-family: "Zen Maru Gothic";
  position: relative;
  z-index: 1;
}

.inner {
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .inner {
    max-width: 800px;
    width: calc(100% - 30px);
    padding: 70px 0 0;
  }
}

.hero {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1;
  transition: opacity 0.3s ease-out;
  height: calc(100vh - 40px);
}
@media only screen and (max-width: 767px) {
  .hero {
    max-height: 600px;
    background: linear-gradient(#FFADAF 10%, #FFDFD7 45%);
  }
}
@media only screen and (min-width: 768px) {
  .hero {
    max-height: 900px;
    background: linear-gradient(transparent, #ffcdc8);
  }
}
.hero.hide {
  opacity: 0;
}
.hero__content {
  position: relative;
  height: calc(100vh - 40px);
}
@media only screen and (max-width: 767px) {
  .hero__content {
    overflow: hidden;
    max-height: 600px;
  }
}
@media only screen and (min-width: 768px) {
  .hero__content {
    max-height: 900px;
  }
}
.hero h1 {
  margin: 0;
  position: absolute;
  left: 50%;
  z-index: 3;
  width: 100%;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.5s forwards;
}
@media only screen and (max-width: 767px) {
  .hero h1 {
    max-width: 400px;
    top: 50%;
    translate: -50% -50%;
  }
}
@media only screen and (min-width: 768px) {
  .hero h1 {
    max-width: 670px;
    bottom: 80px;
    translate: -50% 0;
  }
}
.hero h1 img {
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5)) drop-shadow(0 20px 10px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 20px rgba(255, 255, 255, 0.7)) drop-shadow(0 0 25px #fad9de);
}
@media only screen and (max-width: 767px) {
  .hero__pic img {
    max-width: none;
    width: 600px;
    position: absolute;
    top: -30px;
    left: 50%;
    translate: -50% 0;
  }
}

.content {
  position: relative;
  z-index: 10;
  box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
}

h2 {
  color: #fff;
  font-family: "Raleway", sans-serif;
  text-align: center;
  margin: 0 0 50px;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 768px) {
  h2 {
    font-size: 2.8rem;
  }
}
h2 span {
  font-weight: 500;
  display: block;
}
@media only screen and (max-width: 767px) {
  h2 span {
    font-size: 1.2rem;
    margin: 0 0 5px;
  }
}
@media only screen and (min-width: 768px) {
  h2 span {
    font-size: 1.6rem;
    margin: 0 0 10px;
  }
}

.circle {
  position: relative;
  z-index: 10;
}
.circle.prod-circle-top, .circle.bottom-circle-top {
  margin-bottom: -1px;
}
.circle.prod-circle-bottom, .circle.bottom-circle-bottom {
  margin-top: -1px;
  transform: scale(1, -1);
}

.intro {
  text-align: center;
  background-color: #fceaec;
  position: relative;
}
.intro::after {
  content: "";
  background: url(../img/texture.png) repeat center/900px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
  opacity: 0.2;
}
.intro__content {
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .intro__content {
    padding: 80px 0 90px;
  }
}
@media only screen and (min-width: 768px) {
  .intro__content {
    padding: 100px 0 120px;
  }
}
.intro__lead {
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .intro__lead {
    font-size: 1.5rem;
    margin: 0 0 20px;
  }
}
@media only screen and (min-width: 768px) {
  .intro__lead {
    font-size: 2rem;
    margin: 0 0 30px;
  }
}
.intro__txt {
  display: grid;
  gap: 20px 0;
}
.intro__txt p {
  margin: 0;
  letter-spacing: 0.1rem;
}
@media only screen and (max-width: 767px) {
  .intro__txt p {
    line-height: 1.7;
  }
}
@media only screen and (min-width: 768px) {
  .intro__txt p {
    line-height: 1.8;
  }
}
.intro__txt p span {
  display: inline-block;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .intro__txt p span {
    font-size: 0.85rem;
    line-height: 1.5;
  }
}
@media only screen and (min-width: 768px) {
  .intro__txt p span {
    font-size: 0.9rem;
  }
}
.intro__order-link {
  position: relative;
  letter-spacing: 0;
  color: #df738a;
  border-bottom: 2px solid #df738a;
  font-weight: 600;
  padding: 0 10px;
}
@media only screen and (max-width: 767px) {
  .intro__order-link {
    font-size: 1.05rem;
    padding: 0 40px 0 10px;
  }
}
@media only screen and (min-width: 768px) {
  .intro__order-link {
    font-size: 1.1rem;
    padding: 0 50px 0 10px;
  }
  .intro__order-link:hover .intro__order-arrow {
    right: 0;
  }
}
.intro__order-arrow {
  display: block;
  background-color: #df738a;
  width: 24px;
  height: 2px;
  position: absolute;
  right: 7px;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .intro__order-arrow {
    top: 15px;
  }
}
@media only screen and (min-width: 768px) {
  .intro__order-arrow {
    top: 17px;
  }
}
.intro__order-arrow::before {
  content: "";
  background-color: #df738a;
  width: 11px;
  height: 2px;
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  transform: rotate(45deg);
  transform-origin: calc(100% - 2px) 50%;
}

.prod {
  background: linear-gradient(#f8b6bf, #df738a, #f8b6bf);
  background-size: 150%;
  position: relative;
  z-index: 1;
}
.prod__content {
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .prod__content {
    width: calc(100% - 40px);
    padding: 0 0 20px;
  }
}
@media only screen and (min-width: 768px) {
  .prod__content {
    width: calc(100% - 40px);
    max-width: 600px;
    padding: 0 0 30px;
  }
}
.prod__list {
  display: grid;
}
@media only screen and (max-width: 767px) {
  .prod__list {
    gap: 30px 0;
  }
}
@media only screen and (min-width: 768px) {
  .prod__list {
    gap: 50px 0;
  }
}
.prod__item {
  background-color: #FBDADF;
  box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .prod__item {
    padding: 30px 30px 40px;
  }
}
@media only screen and (min-width: 768px) {
  .prod__item {
    padding: 50px;
  }
}
.prod__item:first-child .prod__pic {
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .prod__item:first-child .prod__pic {
    max-width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .prod__item:first-child .prod__pic {
    min-height: 330px;
  }
}
.prod__pic {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .prod__pic {
    margin: 0 auto 25px;
    max-width: 88%;
    min-height: 200px;
  }
}
@media only screen and (min-width: 768px) {
  .prod__pic {
    margin: 0 auto 40px;
    min-height: 350px;
  }
}
.prod__pic img {
  filter: drop-shadow(3px 3px 8px rgba(128, 96, 111, 0.3));
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.prod__ttl {
  font-weight: 500;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .prod__ttl {
    font-size: 1.3rem;
    margin: 0 0 10px;
  }
}
@media only screen and (min-width: 768px) {
  .prod__ttl {
    font-size: 1.8rem;
    margin: 0 0 10px;
  }
}
.prod__detail {
  margin: 0 0 7px;
}
@media only screen and (max-width: 767px) {
  .prod__detail {
    font-size: 0.85rem;
  }
}
.prod__price {
  margin: 0;
  line-height: 1;
}
.prod__price span {
  margin: 0 3px 0 5px;
}
@media only screen and (max-width: 767px) {
  .prod__price span {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 768px) {
  .prod__price span {
    font-size: 1.6rem;
  }
}
.prod__order {
  width: 100%;
  display: grid;
  gap: 15px 0;
  border-top: 1px dotted #80606f;
}
@media only screen and (max-width: 767px) {
  .prod__order {
    margin: 20px auto 0;
    padding-top: 20px;
  }
}
@media only screen and (min-width: 768px) {
  .prod__order {
    margin: 30px auto 0;
    max-width: 400px;
    padding-top: 30px;
  }
}
.prod__order-item {
  display: grid;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .prod__order-item {
    grid-template-columns: minmax(0, 1fr) 110px;
  }
}
@media only screen and (min-width: 768px) {
  .prod__order-item {
    grid-template-columns: minmax(0, 1fr) 140px;
  }
}
.prod__order-name {
  margin: 0;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .prod__order-name {
    font-size: 0.95rem;
  }
}
.prod__order-link {
  background: linear-gradient(to right, #F8B4BD, #E88B9D);
  color: #fff;
  border-radius: 999px;
  padding: 8px 0;
}
@media only screen and (max-width: 767px) {
  .prod__order-link {
    font-size: 0.9rem;
  }
}
@media only screen and (min-width: 768px) {
  .prod__order-link {
    font-size: 0.95rem;
  }
}
.prod__order-link:hover {
  transition: 0.3s;
  filter: brightness(1.1);
}
.prod__all {
  text-align: center;
}
.prod__all-link {
  position: relative;
  background-color: #df738a;
  color: #fff;
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .prod__all-link {
    max-width: 330px;
    height: 50px;
    margin: 20px auto 0;
  }
}
@media only screen and (min-width: 768px) {
  .prod__all-link {
    max-width: 300px;
    height: 55px;
    margin: 30px auto 0;
  }
  .prod__all-link:hover {
    filter: brightness(1.1);
  }
  .prod__all-link:hover .prod__all-arrow {
    right: 15px;
  }
}
.prod__all-arrow {
  display: block;
  background-color: #fff;
  width: 24px;
  height: 1.5px;
  position: absolute;
  right: 20px;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .prod__all-arrow {
    top: 27px;
  }
}
@media only screen and (min-width: 768px) {
  .prod__all-arrow {
    top: 30px;
  }
}
.prod__all-arrow::before {
  content: "";
  background-color: #fff;
  width: 11px;
  height: 1.5px;
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  transform: rotate(45deg);
  transform-origin: calc(100% - 2px) 50%;
}

.photo {
  background-image: url(../img/photo-bg.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}
.photo::after {
  content: "";
  background-color: #FDBFC9;
  mix-blend-mode: overlay;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.photo__content {
  position: relative;
  z-index: 9;
}
@media only screen and (max-width: 767px) {
  .photo__content {
    padding: 100px 0;
  }
}
@media only screen and (min-width: 768px) {
  .photo__content {
    padding: 150px 0;
  }
}
@media only screen and (min-width: 768px) {
  .photo__grid {
    margin: 0 0 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.photo__item {
  opacity: 0;
  transform: translateY(80px);
  transition: all 1.2s ease-out;
}
.photo__item.fade-in {
  opacity: 1;
  transform: translateY(0);
}
@media only screen and (max-width: 767px) {
  .photo__item.item_01 {
    width: 88%;
    margin: 0 auto 30px;
  }
}
@media only screen and (min-width: 768px) {
  .photo__item.item_01 {
    width: 600px;
    margin: 0 auto 50px 0;
  }
}
@media only screen and (max-width: 767px) {
  .photo__item.item_02 {
    width: 88%;
    margin: 0 auto 30px;
  }
}
@media only screen and (min-width: 768px) {
  .photo__item.item_02 {
    width: 600px;
    margin: 0 0 50px auto;
  }
}
@media only screen and (max-width: 767px) {
  .photo__item.item_03 {
    width: 88%;
    margin: 0 auto 30px;
  }
}
@media only screen and (min-width: 768px) {
  .photo__item.item_03 {
    width: 600px;
    margin: 0 auto 50px;
  }
}
@media only screen and (max-width: 767px) {
  .photo__item.item_04 {
    width: 70%;
    margin: 0 auto 30px 0;
  }
}
@media only screen and (max-width: 767px) {
  .photo__item.item_05 {
    width: 70%;
    margin: 0 0 30px auto;
  }
}
.photo__item.item_06 {
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .photo__item.item_06 {
    width: 88%;
  }
}
@media only screen and (min-width: 768px) {
  .photo__item.item_06 {
    width: 600px;
  }
}
.photo__item img {
  filter: drop-shadow(5px 5px 20px rgba(128, 96, 111, 0.6));
}

.bottom {
  background-color: #fceaec;
  position: relative;
  z-index: 1;
}
.bottom__inner {
  position: relative;
}
.bottom__inner::after {
  content: "";
  background: url(../img/texture.png) repeat top -50px center/900px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
  opacity: 0.2;
}
.bottom__content {
  position: relative;
  z-index: 2;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .bottom__content {
    width: calc(100% - 40px);
    padding: 0 0 20px;
  }
}
@media only screen and (min-width: 768px) {
  .bottom__content {
    width: calc(100% - 40px);
    max-width: 700px;
    padding: 0 0 30px;
  }
}
.bottom h2 {
  color: #80606f;
  font-family: "Zen Maru Gothic";
}

@media only screen and (max-width: 767px) {
  .sale {
    margin: 0 0 60px;
  }
}
@media only screen and (min-width: 768px) {
  .sale {
    margin: 0 0 100px;
  }
}
.sale__item {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .sale__item {
    margin: 0 0 45px;
  }
}
@media only screen and (min-width: 768px) {
  .sale__item {
    margin: 0 0 50px;
  }
}
.sale__item:last-child {
  margin: 0;
}
.sale__shop {
  font-weight: 500;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .sale__shop {
    font-size: 1.3rem;
    margin: 0 0 5px;
  }
}
@media only screen and (min-width: 768px) {
  .sale__shop {
    font-size: 1.5rem;
    margin: 0 0 5px;
  }
}
@media only screen and (max-width: 767px) {
  .sale__address {
    margin: 0 0 25px;
  }
}
@media only screen and (min-width: 768px) {
  .sale__address {
    font-size: 1rem;
    margin: 0 0 25px;
  }
}
.sale__map iframe {
  box-shadow: 3px 3px 2px rgba(128, 96, 111, 0.1);
  border-radius: 20px;
}

.prof__item {
  background: linear-gradient(#F8B4BD, #E88B9D);
  color: #fff;
  box-shadow: 3px 3px 2px rgba(128, 96, 111, 0.1);
  border-radius: 50px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .prof__item {
    max-width: 330px;
    padding: 60px 30px;
  }
}
@media only screen and (min-width: 768px) {
  .prof__item {
    max-width: 400px;
    padding: 70px 50px;
  }
}
.prof__name {
  text-align: center;
  font-weight: 500;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .prof__name {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 768px) {
  .prof__name {
    font-size: 1.7rem;
    margin-bottom: 30px;
  }
}
.prof__pic {
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .prof__pic {
    max-width: 180px;
    margin: 0 auto 20px;
  }
}
@media only screen and (min-width: 768px) {
  .prof__pic {
    max-width: 200px;
    margin: 0 auto 30px;
  }
}
@media only screen and (max-width: 767px) {
  .prof__txt {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}
@media only screen and (min-width: 768px) {
  .prof__txt {
    line-height: 1.7;
  }
}
.prof__sns {
  text-align: center;
}
.prof a {
  color: #fff;
}
.prof a:hover {
  text-decoration: underline;
}

.sns {
  font-family: sans-serif;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .sns {
    background: radial-gradient(#FCD3CD 60%, #FEB7C7);
  }
  .sns::after {
    content: "";
    background: url(../img/bg.jpg) no-repeat center/cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    mix-blend-mode: multiply;
    opacity: 0.2;
  }
}
.sns__content {
  display: flex;
  justify-content: center;
  gap: 0 20px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .sns__content {
    padding: 80px 0 90px;
  }
}
@media only screen and (min-width: 768px) {
  .sns__content {
    padding: 100px 0 130px;
  }
}
.sns__item {
  text-align: center;
}
.sns__item p {
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .sns__item p {
    font-size: 0.8rem;
    line-height: 1;
  }
}
@media only screen and (min-width: 768px) {
  .sns__item p {
    font-size: 0.9rem;
    line-height: 1.2;
  }
}
.sns__item a {
  position: relative;
  color: #80606f;
}
@media only screen and (min-width: 768px) {
  .sns__item a:hover::before {
    background-color: rgba(255, 255, 255, 0.6);
  }
}
.sns__item a::before {
  content: "\e61b";
  font-family: "Font Awesome 6 Brands";
  font-weight: 900;
  display: block;
  display: grid;
  place-content: center;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}
@media only screen and (max-width: 767px) {
  .sns__item a::before {
    font-size: 1.6rem;
    margin: 0 auto 8px;
    width: 50px;
    height: 50px;
  }
}
@media only screen and (min-width: 768px) {
  .sns__item a::before {
    font-size: 1.8rem;
    margin: 0 auto 10px;
    width: 55px;
    height: 55px;
    transition: 0.3s;
  }
}

@media only screen and (min-width: 768px) {
  .sponly {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .pconly {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */