/* ----- break point ----- */
/* ----- container width ----- */
/* ----- margin-top/bottom ----- */
/* ----- padding-top/bottom ----- */
/* ----- font-size ----- */
/* ----- line-height, letter-spacing ----- */
/* ----- box-shadow, border-radius ----- */
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond&display=swap");
.js-x-scroll {
  cursor: grab;
}

/* -------------------------------------------- */
/* --------------- Zen Old Mincho ------------- */
/* -------------------------------------------- */
/* -------------------------------------------- */
/* ------------- Cormorant Garamond ----------- */
/* -------------------------------------------- */
.fix {
  width: 100%;
  height: 100%;
  position: fixed;
}

/* ----------------------- fadein animation ----------------------- */
/* ------------------- infinite slide animation ------------------- */
@keyframes infinite-slide1 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes infinite-slide2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}
/* ------------------------ delay animation ------------------------ */
.--delay1 {
  transition-delay: 0.1s;
}

.--delay2 {
  transition-delay: 0.2s;
}

.--delay3 {
  transition-delay: 0.5s;
}

.--delay4 {
  transition-delay: 0.4s;
}

.--delay5 {
  transition-delay: 0.5s;
}

.--delay6 {
  transition-delay: 0.6s;
}

.--delay7 {
  transition-delay: 0.7s;
}

.--delay8 {
  transition-delay: 0.8s;
}

.--delay9 {
  transition-delay: 0.9s;
}

.--delay10 {
  transition-delay: 1s;
}

.--delay11 {
  transition-delay: 1.1s;
}

.--delay12 {
  transition-delay: 1.2s;
}

.--delay13 {
  transition-delay: 1.5s;
}

.--delay14 {
  transition-delay: 1.4s;
}

.--delay15 {
  transition-delay: 1.5s;
}

.--delay16 {
  transition-delay: 1.6s;
}

.--delay17 {
  transition-delay: 1.7s;
}

.--delay18 {
  transition-delay: 1.8s;
}

.--delay19 {
  transition-delay: 1.9s;
}

.--delay20 {
  transition-delay: 2s;
}

a,
button,
span {
  transition: all 0.4s ease;
}
a:before, a:after,
button:before,
button:after,
span:before,
span:after {
  transition: all 0.4s ease;
}

* {
  box-sizing: border-box;
}

img {
  display: block;
  vertical-align: bottom;
  transition: all 0.4s ease;
}

svg {
  transition: all 0.4s ease;
}
svg path {
  transition: all 0.4s ease;
}

ul {
  list-style: none;
}

html {
  word-wrap: break-word;
}

body {
  letter-spacing: 0.05em;
  position: relative;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 20px;
}
@media only screen and (max-width: 600px) {
  body {
    font-size: 16px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
}

p {
  line-height: 2;
}

@media only screen and (max-width: 767px) {
  br.pc-br {
    display: none;
  }
}
@media only screen and (min-width: 767px) {
  br.sp-br {
    display: none;
  }
}

.home-fv {
  padding: 170px;
  padding-bottom: 70px;
  padding-right: 5%;
  padding-left: 5%;
  background-image: url(../image/bg/fv-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: relative;
  z-index: 2;
}
@supports (background-image : url(../image/bg/fv-bg.webp)) {
  .home-fv {
    background-image: url(../image/bg/fv-bg.webp);
  }
}
@media only screen and (max-width: 600px) {
  .home-fv {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
.home-fv .container {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  height: 675px;
  position: relative;
  padding-right: 5%;
  padding-left: 5%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-fv .container .mv {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.08);
}
.home-fv .container .mv img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  width: 100%;
  height: 100%;
}
.home-fv .container .cp {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 60px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
}
@media only screen and (max-width: 600px) {
  .home-fv .container .cp {
    font-size: 8vw;
  }
}
.home-fv .container .deco {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 25%;
  min-width: 220px;
}
@media only screen and (max-width: 600px) {
  .home-fv .container .deco {
    min-width: 170px;
  }
}
.home-fv .container .deco img {
  width: 100%;
}

.home-main {
  padding-top: 300px;
  padding-bottom: 300px;
  padding-right: 5%;
  padding-left: 5%;
  background-image: url(../image/bg/main-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  margin-top: -200px;
  position: relative;
  z-index: 1;
}
@supports (background-image : url(../image/bg/main-bg.webp)) {
  .home-main {
    background-image: url(../image/bg/main-bg.webp);
  }
}
@media only screen and (max-width: 600px) {
  .home-main {
    padding-top: 320px;
    padding-bottom: 230px;
  }
}
.home-main .container {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}
.home-main .container .cacao .ttl {
  text-align: center;
  font-size: 60px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
}
@media only screen and (max-width: 600px) {
  .home-main .container .cacao .ttl {
    font-size: 40px;
  }
}
.home-main .container .cacao .contents {
  margin-top: 70px;
  display: flex;
  gap: 5%;
}
@media only screen and (max-width: 600px) {
  .home-main .container .cacao .contents {
    margin-top: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .home-main .container .cacao .contents {
    display: block;
  }
}
.home-main .container .cacao .contents .img {
  flex: 1;
}
@media only screen and (max-width: 767px) {
  .home-main .container .cacao .contents .img {
    flex: initial;
    max-width: 270px;
    margin-right: auto;
    margin-left: auto;
  }
}
.home-main .container .cacao .contents img {
  width: 100%;
}
.home-main .container .cacao .contents .txt {
  flex: 1;
}
@media only screen and (max-width: 767px) {
  .home-main .container .cacao .contents .txt {
    flex: initial;
    margin-top: 70px;
  }
}
.home-main .container .cacao .contents .txt .msg {
  line-height: 2.5;
}
.home-main .container .taste {
  margin-top: 200px;
}
.home-main .container .taste .img {
  max-width: 470px;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  .home-main .container .taste .img {
    max-width: 350px;
    margin-right: auto;
    margin-left: auto;
  }
}
.home-main .container .taste .img img {
  width: 100%;
}
.home-main .container .taste .contents {
  display: flex;
  flex-direction: row-reverse;
  margin-top: 120px;
  gap: 5%;
}
@media only screen and (max-width: 767px) {
  .home-main .container .taste .contents {
    display: block;
  }
}
@media only screen and (max-width: 600px) {
  .home-main .container .taste .contents {
    margin-top: 80px;
  }
}
.home-main .container .taste .contents .head {
  flex: 1;
}
@media only screen and (max-width: 767px) {
  .home-main .container .taste .contents .head {
    flex: initial;
  }
}
.home-main .container .taste .contents .head .ttl {
  font-size: 60px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .home-main .container .taste .contents .head .ttl {
    text-align: center;
  }
}
@media only screen and (max-width: 600px) {
  .home-main .container .taste .contents .head .ttl {
    font-size: 40px;
  }
}
.home-main .container .taste .contents .txt {
  flex: 1;
}
@media only screen and (max-width: 767px) {
  .home-main .container .taste .contents .txt {
    flex: initial;
    margin-top: 60px;
  }
}
.home-main .container .taste .contents .txt .msg {
  line-height: 2.5;
}