@charset "UTF-8";
/* ===============================================
# ボタン
=============================================== */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  font-size: 16px;
  font-size: 1rem;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, sans-serif;
  color: #8D6A3D;
}

ol,
ul {
  list-style: none;
}

img,
video {
  max-width: 100%;
}

img {
  vertical-align: top;
  border-style: none;
}

a {
  text-decoration: none;
  outline: none;
  -webkit-touch-callout: none;
  -webkit-transition: color 0.2s, -webkit-text-decoration 0.2s;
  transition: color 0.2s, -webkit-text-decoration 0.2s;
  transition: color 0.2s, text-decoration 0.2s;
  transition: color 0.2s, text-decoration 0.2s, -webkit-text-decoration 0.2s;
}

a:hover {
  text-decoration-color: transparent;
}

a:focus,
*:focus {
  outline: none;
}

a,
a:visited {
  color: inherit;
}

[hidden] {
  display: none !important;
}

[disabled] {
  cursor: not-allowed;
}

:focus:not(:focus-visible) {
  outline: none;
}

input[type=text],
input[type=tel],
input[type=number],
input[type=date],
input[type=time],
input[type=password],
input[type=email],
textarea {
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

textarea {
  display: block;
}

fieldset {
  margin: 0;
  border: none;
}

legend {
  display: none;
}

:root {
  overflow-x: hidden;
  font-size: clamp(0.875rem, 0.784rem + 0.45vw, 1.125rem);
}

body {
  overflow-x: hidden;
}

@media (min-width: 1000px) {
  .img-wrapper {
    overflow: hidden;
  }
  .img-wrapper img {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
}
@media (min-width: 1000px) {
  .img-wrapper:hover img {
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.btn {
  display: inline-block;
  padding: 1rem 3rem;
  background-color: #FFFFFF;
  border: 1px solid #8D6A3D;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  margin-top: 30px;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
}
@media (min-width: 1000px) {
  .btn:hover {
    background-color: #8D6A3D;
    color: #FFFFFF;
  }
}
.btn:focus {
  outline: none;
}

.section_title {
  position: relative;
  font-size: 48px;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 100px 0 60px;
  font-family: "Cormorant Upright", serif;
}
.section_title:first-child {
  margin-top: 50px;
}
.section_title:after {
  position: absolute;
  content: "";
  top: 110%;
  left: 0;
  width: 100%;
  height: 15%;
  background: url(../../assets/img/common/frame.png) no-repeat center center/contain;
}
.section_title span {
  font-family: "Shippori Mincho", serif;
  font-size: 14px;
  font-weight: normal;
}

body {
  --sb-track-color: #fff;
  --sb-thumb-color: #8D6A3D;
  --sb-size: 14px;
}

body::-webkit-scrollbar {
  width: var(--sb-size);
}

body::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 8px;
}

body::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 8px;
  border: 2px solid #fff;
}

@supports not selector(::-webkit-scrollbar) {
  body {
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
  }
}
.sakura {
  position: fixed;
  top: -10px;
  left: 50%;
  width: 20px;
  height: 20px;
  opacity: 0.8;
  pointer-events: none;
  -webkit-animation: fall linear infinite;
          animation: fall linear infinite;
  z-index: -1;
}

@-webkit-keyframes fall {
  0% {
    -webkit-transform: translate(30vw, 0) rotate(0deg);
            transform: translate(30vw, 0) rotate(0deg);
    opacity: 1;
  }
  50% {
    -webkit-transform: translate(0, 50vh) rotate(360px);
            transform: translate(0, 50vh) rotate(360px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-30vw, 100vh) rotate(540deg);
            transform: translate(-30vw, 100vh) rotate(540deg);
    opacity: 0;
  }
}

@keyframes fall {
  0% {
    -webkit-transform: translate(30vw, 0) rotate(0deg);
            transform: translate(30vw, 0) rotate(0deg);
    opacity: 1;
  }
  50% {
    -webkit-transform: translate(0, 50vh) rotate(360px);
            transform: translate(0, 50vh) rotate(360px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-30vw, 100vh) rotate(540deg);
            transform: translate(-30vw, 100vh) rotate(540deg);
    opacity: 0;
  }
}
.header {
  width: 100vw;
  background-color: #f2f0ea;
}
.header .shopping-info {
  text-align: center;
  border-bottom: 1px solid #afa89e;
  padding: 0.5rem;
  background-color: #FFFFFF;
}
.header .shopping-info span {
  color: #ff4c00;
}
.header__logo {
  width: 210px;
  margin: 1rem auto -5px;
}
.header .navbar {
  position: relative;
}
.header .navbar .nav-list {
  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;
  gap: 10vw;
}
.header .navbar .nav-list .nav-item {
  padding-bottom: 0.7rem;
  font-family: "Cormorant Upright", serif;
}
.header .navbar .nav-list .nav-item a {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: bold;
  font-size: 18px;
}
.header .navbar .nav-list .nav-item a span {
  font-weight: normal;
  font-size: 12px;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, sans-serif;
}
.header .navbar .nav-list .nav-item .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #FFFFFF;
  width: 100vw;
  z-index: 100;
  border-top: 1px solid #afa89e;
  border-bottom: 1px solid #afa89e;
}
@media (max-width: 719px) {
  .header .navbar .nav-list .nav-item .dropdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.header .navbar .nav-list .nav-item .dropdown .img-wrapper {
  padding-top: 0.5rem;
}
.header .navbar .nav-list .nav-item .dropdown__link {
  font-family: "Shippori Mincho", serif;
}
.header .navbar .nav-list .nav-item .dropdown__item {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  padding: 1rem;
}
@media (max-width: 719px) {
  .header .navbar .nav-list .nav-item .dropdown__item {
    padding-left: 2rem;
  }
}
.header .navbar .nav-list .nav-item .dropdown__sub-list {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  padding-top: 1rem;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, sans-serif;
}
.header .navbar .nav-list .nav-item .dropdown__sub-item {
  padding-bottom: 0.5rem;
}
.header .navbar .nav-list .nav-item .dropdown__sub-item a {
  font-weight: normal;
}
@media (min-width: 720px) {
  .header .navbar .nav-item:hover .dropdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .header .navbar .nav-list .online {
    padding-left: 2rem;
  }
}
.header .cart {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 9999;
}
.header .cart__icon {
  position: relative;
  background-color: #8D6A3D;
  border-radius: 50%;
  width: 80px;
  aspect-ratio: 1/1;
  padding: 15px;
}
.header .cart span {
  top: 0;
  right: 0;
  position: absolute;
  padding: 0.5px 8px;
  color: #FFFFFF;
  border-radius: 50px;
  background-color: #ff4c00;
  font-weight: bold;
}

/* ===============================================
# kv
=============================================== */
.kv {
  overflow: hidden;
}
.kv__swiper-container {
  width: 100vw;
  height: 500px;
  position: relative;
  margin: 0 auto;
}
.kv__swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.kv__slide {
  height: 500px;
  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;
}
.kv__slide img {
  width: 100vw;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
.kv__pagination {
  position: absolute;
  bottom: 10px;
  left: 50%;
}
.kv .swiper-pagination-bullet {
  background-color: #FFFFFF;
}

.pick-up,
.recommend,
.line-up,
.instagram,
.column {
  text-align: center;
  margin-top: 100px;
}
.pick-up .container,
.recommend .container,
.line-up .container,
.instagram .container,
.column .container {
  width: 80vw;
  margin: 0 auto;
}
.pick-up .container .list,
.recommend .container .list,
.line-up .container .list,
.instagram .container .list,
.column .container .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
}
.pick-up .container .list p,
.recommend .container .list p,
.line-up .container .list p,
.instagram .container .list p,
.column .container .list p {
  margin-top: 0.5rem;
  text-align: center;
}

.line-up {
  margin-bottom: 50px;
}
.line-up .item {
  padding-right: 10px;
}
.line-up .item:last-child {
  padding-right: 0;
}
@media (min-width: 1000px) {
  .line-up img:hover {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
}

.about {
  background-color: #f2f0ea;
  padding: 1rem 0 50px;
  font-family: "Shippori Mincho", serif;
  margin: 1rem;
}
.about__container {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 100px auto;
  width: 100%;
}
@media (max-width: 719px) {
  .about__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 719px) {
  .about__container:nth-child(odd) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.about .img-wrapper {
  width: 70%;
  -webkit-transform: translateX(3%);
          transform: translateX(3%);
}
@media (min-width: 1000px) {
  .about .img-wrapper {
    overflow: hidden;
  }
  .about .img-wrapper img {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
}
@media (min-width: 1000px) {
  .about .img-wrapper:hover img {
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.about .img-wrapper:nth-child(even) {
  -webkit-transform: translateX(-3%);
          transform: translateX(-3%);
}
@media (max-width: 719px) {
  .about .img-wrapper:nth-child(even) {
    -webkit-transform: initial;
            transform: initial;
  }
}
@media (max-width: 719px) {
  .about .img-wrapper {
    width: 100%;
    -webkit-transform: initial;
            transform: initial;
  }
}
.about__description {
  width: 60%;
  margin: 0 auto;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transform: translate(-3%, 20%);
          transform: translate(-3%, 20%);
  background-color: #FFFFFF;
  padding: 2rem;
  z-index: 100;
  border: 1px solid #afa89e;
}
.about__description p {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, sans-serif;
}
.about__description:nth-child(odd) {
  -webkit-transform: translate(3%, 20%);
          transform: translate(3%, 20%);
}
@media (max-width: 719px) {
  .about__description:nth-child(odd) {
    -webkit-transform: initial;
            transform: initial;
    -webkit-transform: translate(0, -10%);
            transform: translate(0, -10%);
  }
}
@media (max-width: 719px) {
  .about__description {
    width: 90%;
    -webkit-transform: translate(0, -10%);
            transform: translate(0, -10%);
  }
}
.about__title {
  font-size: 20px;
  background: url(../../assets/img/common/frame02.png) no-repeat center center/contain;
  padding: 2rem 3rem;
  font-weight: 600;
}

.shop {
  width: 100vw;
  margin-top: 50px;
}
.shop .container {
  position: relative;
  height: 450px;
}
@media (min-width: 1000px) {
  .shop .container .img-wrapper {
    overflow: hidden;
  }
  .shop .container .img-wrapper img {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
}
@media (min-width: 1000px) {
  .shop .container .img-wrapper:hover img {
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.shop .container .img-wrapper img {
  width: 100vw;
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: brightness(50%);
          filter: brightness(50%);
}
.shop .container .shop__description {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -60%);
          transform: translate(-50%, -60%);
  color: #FFFFFF;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.shop .container .shop__description .btn {
  display: inline-block;
  padding: 1rem 3rem;
  background-color: #FFFFFF;
  border: 1px solid #8D6A3D;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  margin-top: 30px;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  background-color: transparent;
  border: 1px solid #FFFFFF;
}
@media (min-width: 1000px) {
  .shop .container .shop__description .btn:hover {
    background-color: #8D6A3D;
    color: #FFFFFF;
  }
}
.shop .container .shop__description .btn:focus {
  outline: none;
}

.instagram p span {
  color: #ff4c00;
}
.instagram .container {
  margin-top: 50px;
}
.instagram .container .list {
  margin-top: 25px;
}
.instagram .container .list img {
  border: 1px solid #EAA4A0;
}

.l_footer {
  margin: 0 auto;
  text-align: center;
}
.l_footer__logo {
  margin-top: 100px;
  width: 200px;
}
@media (max-width: 719px) {
  .l_footer__logo {
    margin-bottom: 30px;
  }
}
@media (max-width: 719px) {
  .l_footer .online .l_footer__navList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    font-size: 16px;
  }
}
.l_footer .online .l_footer__navItem {
  color: #afa89e;
}
.l_footer .online .l_footer__navItem .l_footer__subtitle {
  font-weight: 600;
}
.l_footer .online .l_footer__navItem .l_footer__sub-list {
  color: #8D6A3D;
}
.l_footer__inner {
  margin: 0 auto;
  text-align: center;
  width: 80vw;
}
.l_footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 50px;
}
.l_footer__navItem {
  width: 25vw;
  margin-right: 15px;
}
.l_footer__container {
  width: 100%;
  text-align: left;
}
.l_footer__navList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-top: 1px solid #afa89e;
  padding-top: 1rem;
}
.l_footer__navName {
  display: inline-block;
  position: relative;
  color: #afa89e;
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  margin-bottom: 0.5rem;
}
.l_footer__subtitle {
  font-family: "Shippori Mincho", serif;
}
.l_footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100vw;
  margin-top: 50px;
}
@media (max-width: 719px) {
  .l_footer__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
    font-size: 16px;
  }
}
.l_footer__wrapper .l_footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 25vw;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: 15px;
}
@media (max-width: 719px) {
  .l_footer__wrapper .l_footer__container {
    width: 100%;
  }
}
.l_footer__wrapper .l_footer__container .l_footer__navList {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.l_footer__navItem {
  text-align: left;
}
.l_footer__copy {
  display: inline-block;
  padding: 1rem;
  border-top: 1px solid #afa89e;
  width: 100vw;
}
.l_footer .sns {
  background-color: #8D6A3D;
  padding: 2rem;
  color: #FFFFFF;
  font-family: "Shippori Mincho", serif;
}
.l_footer .sns p {
  padding-bottom: 1.5rem;
}
.l_footer .sns ul {
  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;
  gap: 10vw;
}
@media (min-width: 1000px) {
  .l_footer .sns ul li:hover {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
}

.chocolatier .kv,
.history .kv,
.making .kv {
  position: relative;
}
.chocolatier .kv__slide,
.history .kv__slide,
.making .kv__slide {
  -webkit-filter: brightness(0.5);
          filter: brightness(0.5);
}
.chocolatier .kv .kv-text,
.history .kv .kv-text,
.making .kv .kv-text {
  position: absolute;
  top: 50%;
  left: 40%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #FFFFFF;
  width: 50%;
  line-height: 1.8;
}
.chocolatier .kv .kv-text h2,
.history .kv .kv-text h2,
.making .kv .kv-text h2 {
  font-size: 40px;
  font-family: "Shippori Mincho", serif;
  margin-bottom: 1rem;
}

.chocolatier .profile {
  margin: 100px auto;
}
.chocolatier .profile__container {
  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;
  gap: 70px;
  margin: 80px auto;
  background-color: #f2f0ea;
  padding: 1rem;
}
.chocolatier .profile__container img {
  height: 500px;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.chocolatier .profile__text {
  width: 50%;
}
.chocolatier .profile__text h3 {
  font-size: 24px;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  margin-bottom: 1rem;
  font-family: "Shippori Mincho", serif;
}
.chocolatier .profile__text h3 span {
  font-size: 40px;
  color: #afa89e;
}

.history .story__container,
.making .story__container {
  margin: 80px auto;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.history .story__container img,
.making .story__container img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
.history .story__container .story-chef,
.making .story__container .story-chef {
  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;
  width: 100%;
  -o-object-position: right;
     object-position: right;
}
.history .story__container .story-chef img,
.making .story__container .story-chef img {
  -o-object-position: right;
     object-position: right;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.history .story__container h3,
.making .story__container h3 {
  position: relative;
  text-align: center;
  font-size: 30px;
  color: #afa89e;
  font-family: "Shippori Mincho", serif;
  margin: 1rem;
}
.history .story__container h3:after,
.making .story__container h3:after {
  position: absolute;
  content: "";
  top: 82%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: url(../../assets/img/common/frame.png) no-repeat center center/contain;
}
.history .story__container p,
.making .story__container p {
  width: 80vw;
  max-width: 1000px;
  position: relative;
  background-color: #FFFFFF;
  padding: 1rem;
}/*# sourceMappingURL=style.css.map */