@charset "UTF-8";
/*--------------------------
文字に対して、一括でfont-size、line-height、letter-spacing、font-weightを指定する
line-heightがpxの場合
---------------------------*/
/*--------------------------
文字に対して、一括でfont-size、line-height、letter-spacing、font-weightを指定する
line-heightが％の場合
---------------------------*/
/*--------------------------------
    remの換算
--------------------------------*/
/*--------------------------------
    vwにする
--------------------------------*/
/*--------------------------------
    親要素に対する割合
--------------------------------*/
/*--------------------------------
背景のグラデーション
--------------------------------*/
/*--------------------------------
一次関数
画面幅 1440pxの時は、120pxで、そこからどんどん小さくなり、1000pxの時に20pxになるという実装の際に使える関数。
--------------------------------*/
/*--------------------------------
擬似要素の背景
--------------------------------*/
/*--------------------------------
三角形
--------------------------------*/
/*--------------------------
  フォント読み込み
---------------------------*/
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #3C1006;
}

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

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

/*--------------------------------
リキッドの設定
--------------------------------*/
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.25vw;
  }
}
@media (min-width: 1280px) {
  html {
    font-size: 16px;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
/*#################################
header
#################################*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3.625rem;
  background-color: #FFFCF1;
  z-index: 9999;
}
@media screen and (min-width: 768px) {
  .header {
    height: 5rem;
  }
}

.header__inner {
  padding: 0rem 0.75rem;
  height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding: 0 1.5625rem;
    max-width: 74.375rem;
    width: 100%;
    margin-inline: auto;
  }
}

.header__logo {
  max-width: 10rem;
  width: 100%;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .header__logo {
    max-width: 13.5rem;
  }
}

.header__image-area {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header__sns {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__sns {
    display: grid;
    grid-template-columns: repeat(3, 2.1875rem);
    align-items: center;
    gap: 0.9375rem;
  }
}

.header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
}

.header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header__nav {
  display: none;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: block;
  }
}

.header__nav-list {
  display: flex;
  height: inherit;
}

.header__nav-item {
  height: inherit;
}

.header__nav-item.header__nav-item--contact {
  margin-left: 0.78125rem;
  display: flex;
  align-items: center;
}

.header__nav-item a {
  padding: 0 0.78125rem;
  height: inherit;
  display: flex;
  align-items: center;
  font-size: 1rem;
  line-height: 1.4375;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #3C1006;
  text-transform: uppercase;
}

.header__nav-item.header__nav-item--contact a {
  padding: 0.71875rem 1.6875rem;
  position: relative;
  height: initial;
  color: #fff;
  background-color: #3C1006;
  border-radius: 0.3125rem;
  border: 1px solid #3C1006;
  transition: 0.3s;
}

.header__nav-item.header__nav-item--contact a:hover {
  background-color: #fff;
  color: #3C1006;
  transition: 0.3s;
}

.header__hamburger {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 2.375rem;
  height: 2.375rem;
  background-color: #3c1006;
  border-radius: 0.3125rem;
  border: 1px solid #3c1006;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .header__hamburger {
    display: none;
  }
}

.header__hamburger.is-open {
  background-color: transparent;
}

.header__hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 0.9375rem;
  height: 1px;
  background-color: #fff;
  transition: 0.5s;
}

.header__hamburger span:nth-of-type(1) {
  top: -0.25rem;
}

.header__hamburger span:nth-of-type(2) {
  top: 0;
}

.header__hamburger span:nth-of-type(3) {
  top: 0.25rem;
}

.header__hamburger.is-open span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.header__hamburger.is-open span:nth-of-type(3) {
  top: -0.125rem;
  transform: translateX(-50%) rotate(-45deg);
}

.header__hamburger.is-open span {
  background-color: #3c1006;
}

.header__drawer {
  padding: 4rem 0;
  position: absolute;
  z-index: 900;
  top: 3.625rem;
  right: -120%;
  width: 100%;
  height: 100vh;
  background-color: #FFFCF1;
  overflow-y: scroll;
  scrollbar-width: none;
  transition: 0.6s;
}

.header__drawer-nav {
  max-width: 12.5rem;
  margin-inline: auto;
  width: 100%;
}

.header__drawer.is-open {
  right: 0;
}

.header__drawer::-webkit-scrollbar {
  display: none;
}

.header__drawer-item a {
  padding: 1.09375rem 0;
  display: block;
  font-size: 1rem;
  line-height: 1.4375;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #3C1006;
  text-align: center;
  text-transform: uppercase;
}

.header__drawer-item.header__drawer-item--contact {
  padding-top: 1.09375rem;
}

.header__drawer-item.header__drawer-item--contact a {
  padding: 0.75rem 1.75rem;
  color: #ffffff;
  background-color: #3C1006;
  border-radius: 0.3125rem;
}

.header__drawer-sns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.1875rem;
}

.header__drawer-sns-item a {
  width: 2.1875rem;
  height: 2.1875rem;
  display: block;
}

/*#################################
タイトル
#################################*/
.sec-title {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .sec-title {
    gap: 0.9375rem;
  }
}

.sec-title__en {
  font-size: 2.1875rem;
  line-height: 1.2857142857;
  letter-spacing: 0em;
  font-weight: 400;
  font-style: italic;
  font-family: "ten-mincho-text", serif;
  color: #e0c975;
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .sec-title__en {
    font-size: 2.8125rem;
    line-height: 1;
  }
}

.sec-title__ja {
  font-size: 1.6875rem;
  line-height: 1.4814814815;
  letter-spacing: 0em;
  font-weight: 400;
  font-family: "ten-mincho-text", serif;
}
@media screen and (min-width: 768px) {
  .sec-title__ja {
    font-size: 2.3125rem;
    line-height: 1.4864864865;
  }
}

/*#################################
footer
#################################*/
.footer {
  padding: 1.125rem 0rem;
  background-color: #3C1006;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 1.875rem 0rem;
  }
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.footer__privacy {
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  letter-spacing: 0em;
  font-weight: 700;
}

.footer__copy {
  text-align: center;
}
.footer__copy small {
  font-size: 0.75rem;
  line-height: 1.4166666667;
  letter-spacing: 0em;
  font-weight: 400;
  color: #ffffff;
}

.hover-opacity {
  transition: 0.3s;
}
.hover-opacity:hover {
  transition: 0.3s;
  opacity: 0.5;
}

.main {
  margin-top: 3.625rem;
  background-color: #FFFCF1;
}
@media screen and (min-width: 768px) {
  .main {
    margin-top: 5rem;
  }
}

.fv {
  position: relative;
}

.fv img {
  height: auto;
}

.fv__anchor {
  display: flex;
  justify-content: center;
  gap: 1.125rem;
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .fv__anchor {
    flex-direction: row;
    gap: 3rem;
    bottom: initial;
    top: 55%;
    left: 12%;
    transform: none;
  }
}

.fv__anchor-button {
  font-size: 1rem;
  line-height: 1.4375;
  letter-spacing: -0.05em;
  font-weight: 400;
  font-family: "ten-mincho-text", serif;
  display: inline-block;
  width: 7.5rem;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.1875rem;
  padding: 0.375rem 0rem;
}
@media screen and (min-width: 768px) {
  .fv__anchor-button {
    gap: 0.875rem;
    flex-direction: row;
    width: 15.625rem;
    font-size: 1.5625rem;
    line-height: 1.44;
    padding: 0.625rem 0rem;
  }
}

.fv__anchor-button::after {
  content: "";
  width: 0.4375rem;
  height: 0.4375rem;
  transform: rotate(-45deg);
  display: block;
  margin-bottom: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .fv__anchor-button::after {
    width: 0.9375rem;
    height: 0.9375rem;
  }
}

.fv__anchor-button--coffee {
  color: #CB7720;
  border-top: 2.5px solid #CB7720;
  border-bottom: 2.5px solid #CB7720;
}

.fv__anchor-button--coffee::after {
  border-bottom: 2.5px solid #CB7720;
  border-left: 2.5px solid #CB7720;
}

.fv__anchor-button--strawberry {
  color: #FE0434;
  border-top: 2.5px solid #FE0434;
  border-bottom: 2.5px solid #FE0434;
}

.fv__anchor-button--strawberry::after {
  border-bottom: 2.5px solid #FE0434;
  border-left: 2.5px solid #FE0434;
}

.concept {
  position: relative;
  scroll-margin-top: 6rem;
}
@media screen and (min-width: 768px) {
  .concept {
    margin-top: -15.625rem;
  }
}

.concept__lead {
  max-width: 28.125rem;
  width: 100%;
  margin-inline: auto;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .concept__lead {
    max-width: 60.0625rem;
  }
}

.concept__body {
  display: flex;
  flex-direction: column-reverse;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .concept__body {
    flex-direction: row;
    max-width: 67.125rem;
    width: 100%;
    margin-inline: auto;
    margin-top: 0rem;
  }
}

.concept__photo {
  position: relative;
  z-index: 2;
  margin-top: -1.875rem;
  max-width: 450px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .concept__photo {
    max-width: 45.875rem;
    margin-top: initial;
  }
}

.concept__text-area {
  position: relative;
  z-index: 1;
  height: 22.97875rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url(../images/concept-text-bg_sp.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  max-width: 20.9375rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .concept__text-area {
    margin-left: -7.5rem;
    max-width: 29.3125rem;
    height: 22rem;
    background-image: url(../images/concept-text-bg.png);
    z-index: 3;
    margin-top: 3.75rem;
  }
}

.concept__text {
  position: relative;
  z-index: 1;
  max-width: 18.6875rem;
  width: 100%;
  margin-inline: auto;
  font-size: 1rem;
  line-height: 1.875;
  letter-spacing: 0.02em;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .concept__text {
    max-width: 26.875rem;
  }
}

.concept__text + .concept__text {
  margin-top: 1.875rem;
}

.concept__movie {
  width: 100%;
  max-width: 37.5rem;
  height: auto;
  padding: 0rem 1.25rem;
  margin-inline: auto;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .concept__movie {
    padding: 0rem 1.5625rem;
    max-width: 56.25rem;
    margin-top: 6.25rem;
  }
}
.concept__movie video {
  aspect-ratio: 700/393.75;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}

.coffee {
  padding-top: 11.25rem;
  position: relative;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .coffee {
    padding-top: 18.75rem;
  }
}

.coffee__wrapper {
  overflow: hidden;
  position: relative;
}

.white-bg {
  position: absolute;
}

.white-bg01 {
  width: 25rem;
  top: 10%;
  right: -35%;
}
@media screen and (min-width: 768px) {
  .white-bg01 {
    top: 5%;
    width: 46.875rem;
    right: initial;
    left: -20%;
  }
}

.white-bg02 {
  width: 25rem;
  top: 35%;
  left: -40%;
}
@media screen and (min-width: 768px) {
  .white-bg02 {
    width: 48.75rem;
    left: initial;
    right: -10%;
  }
}

.white-bg03 {
  width: 25rem;
  bottom: 20%;
  right: -35%;
}
@media screen and (min-width: 768px) {
  .white-bg03 {
    width: 33.125rem;
    bottom: 2%;
    right: initial;
    left: -10%;
    z-index: 2;
  }
}

.coffee::before {
  content: "";
  display: block;
  width: 100%;
  height: 12.5rem;
  background-image: url(../images/coffee-top-bg_sp.png);
  background-position: center;
  background-size: 100vw 12.5rem;
  background-repeat: no-repeat;
  position: absolute;
  top: -5rem;
  left: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .coffee::before {
    background-image: url(../images/coffee-top-bg.png);
    top: 0;
  }
}

.strawberry {
  position: relative;
  padding-top: 7.5rem;
}
@media screen and (min-width: 768px) {
  .strawberry {
    padding-top: 15.625rem;
  }
}

.strawberry::before {
  content: "";
  display: block;
  width: 100%;
  height: 8.5625rem;
  background-image: url(../images/coffee-bottom-bg_sp.png);
  background-position: center;
  background-size: 100vw 8.5625rem;
  background-repeat: no-repeat;
  position: absolute;
  top: -3.125rem;
  left: 0;
  right: 0;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .strawberry::before {
    top: -21.875rem;
    background-image: url(../images/coffee-bottom-bg.png);
    height: 33.9375rem;
    background-size: 100vw 33.9375rem;
  }
}

@media screen and (min-width: 768px) {
  .strawberry__title {
    width: 42.13125rem;
  }
}

.strawberry__wrapper {
  position: relative;
  overflow: hidden;
}

.beige-bg {
  position: absolute;
}

.beige-bg01 {
  width: 25rem;
  top: 10%;
  right: -35%;
}
@media screen and (min-width: 768px) {
  .beige-bg01 {
    transform: rotate(180deg);
    width: 36.25rem;
    right: initial;
    left: -15%;
  }
}

.beige-bg02 {
  width: 25rem;
  top: 35%;
  left: -40%;
}
@media screen and (min-width: 768px) {
  .beige-bg02 {
    width: 48.75rem;
    left: initial;
    right: -10%;
  }
}

.beige-bg03 {
  width: 25rem;
  bottom: 20%;
  right: -35%;
}
@media screen and (min-width: 768px) {
  .beige-bg03 {
    transform: rotate(180deg);
    width: 33.125rem;
    bottom: 2%;
    right: initial;
    left: -10%;
    z-index: 2;
  }
}

.product__inner {
  position: relative;
  z-index: 3;
}

.product__title {
  margin-top: 5.625rem;
}
@media screen and (min-width: 768px) {
  .product__title {
    margin-top: 3.75rem;
  }
}

.product__main-title {
  max-width: min(450px, 79.352vw);
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .product__main-title {
    max-width: 43.2225rem;
  }
}

.product__lead {
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .product__lead {
    margin-top: 3.75rem;
  }
}

.product__lead-first {
  font-size: 1rem;
  line-height: 1.875;
  letter-spacing: 0.02em;
  font-weight: 400;
}

.product__lead-second {
  font-size: 1.25rem;
  line-height: 1.45;
  letter-spacing: 0em;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .product__lead-second {
    font-size: 1.875rem;
    line-height: 1.4333333333;
    gap: 1.875rem;
    margin-top: 1.5rem;
  }
}

.product__lead-second::before,
.product__lead-second::after {
  content: "";
  display: block;
  background-color: #3C1006;
  width: 2.25rem;
  height: 0.0625rem;
}
@media screen and (min-width: 768px) {
  .product__lead-second::before,
  .product__lead-second::after {
    width: 5rem;
  }
}

.product__list {
  margin-top: 3.75rem;
}

.product__item {
  overflow: hidden;
  max-width: 500px;
  margin-inline: auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .product__item {
    max-width: 100%;
    margin: initial;
    overflow: initial;
  }
}

@media screen and (min-width: 768px) {
  .item01 {
    display: flex;
    justify-content: flex-end;
    max-width: 1440px;
    width: 100%;
    margin-inline: auto;
    padding-left: 5rem;
  }
}

@media screen and (min-width: 768px) {
  .item01__contents {
    max-width: 545.55px;
    max-width: clamp(300px, 40vw, 545.55px);
    width: 100%;
    margin-right: clamp(-120px, -5vw, 0px);
  }
}

.item01__num {
  font-size: 5.3125rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 400;
  font-family: "ten-mincho-text", serif;
  font-style: italic;
  max-width: 28.125rem;
  padding-inline: 1.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .item01__num {
    max-width: 100%;
    padding-inline: initial;
    margin-inline: initial;
    font-size: 7rem;
    line-height: 1;
  }
}

.item01__num--coffee {
  color: #CB7720;
}

.item01__num--strawberry {
  color: #FE0434;
}

.item01__title {
  margin-top: 1rem;
  padding-bottom: 1.1875rem;
  max-width: 28.125rem;
  padding-inline: 1.25rem;
  margin-inline: auto;
  position: relative;
  font-size: 1.25rem;
  line-height: 1.45;
  letter-spacing: 0em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .item01__title {
    font-size: 1.875rem;
    line-height: 1.4333333333;
    max-width: 100%;
    padding-inline: initial;
    margin-inline: initial;
  }
}

.item01__title::after {
  content: "";
  display: block;
  background-color: #3C1006;
  width: calc(100% - 2.5rem);
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 0;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .item01__title::after {
    width: 100%;
  }
}

.item01__list {
  padding-top: 0.625rem;
  max-width: 28.125rem;
  padding-inline: 1.25rem;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .item01__list {
    max-width: 100%;
    padding-inline: initial;
    margin-inline: initial;
  }
}

.item01__head {
  padding-top: 0.625rem;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.875;
  letter-spacing: 0.02em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .item01__head {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

.item01__head--coffee {
  border-bottom: 1px solid #CB7720;
  color: #CB7720;
}

.item01__head--strawberry {
  border-bottom: 1px solid #FE0434;
  color: #FE0434;
}

.item01__discription {
  font-size: 1rem;
  line-height: 1.875;
  letter-spacing: 0.02em;
  font-weight: 400;
}

.item01__image {
  width: 30.875rem;
  margin-left: 20%;
  margin-top: -8.125rem;
  position: relative;
  z-index: 1;
  transform: rotate(10deg);
}
@media screen and (min-width: 768px) {
  .item01__image {
    margin-left: initial;
    margin-top: initial;
    transform: none;
    width: 40.4375rem;
  }
}
.item01__image img {
  aspect-ratio: 494/405.43;
  object-fit: cover;
}

.item01__image--strawberry {
  margin-top: -1.25rem;
  margin-left: 3.125rem;
}

.item02 {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .item02 {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
  }
}

@media screen and (min-width: 768px) {
  .item02__contents {
    margin-left: -9.375rem;
    margin-top: 6.25rem;
  }
}

.item02__num {
  font-size: 5.3125rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 400;
  font-family: "ten-mincho-text", serif;
  font-style: italic;
}
@media screen and (min-width: 768px) {
  .item02__num {
    max-width: 100%;
    padding-inline: initial;
    padding-left: 12.0625rem;
    margin-inline: initial;
    font-size: 7rem;
    line-height: 1;
  }
}

.item02__num--coffee {
  color: #CB7720;
}

.item02__num--strawberry {
  color: #FE0434;
}

.item02__top {
  position: relative;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .item02__top {
    padding-inline: initial;
    max-width: 550px;
    width: 100%;
  }
}

.item02__top::after {
  content: "";
  display: block;
  background-color: #3C1006;
  width: calc(100% - 4.375rem);
  height: 1px;
  position: absolute;
  top: 52%;
  right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .item02__top::after {
    display: none;
  }
}

.item02__top-inner {
  width: fit-content;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.item02__title {
  margin-top: 1rem;
  padding-bottom: 1.1875rem;
  max-width: 28.125rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .item02__title {
    border-bottom: 1px solid #3C1006;
    font-size: 1.875rem;
    line-height: 1.4333333333;
    max-width: 100%;
    padding-inline: initial;
    padding-left: 12.0625rem;
    margin-inline: initial;
  }
}

.item02__list {
  padding-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .item02__list {
    padding-left: 12.0625rem;
  }
}

.item02__item {
  font-size: 1rem;
  line-height: 1.875;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: #CB7720;
}
@media screen and (min-width: 768px) {
  .item02__item {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

.item02__item--strawberry {
  color: #FE0434;
}

.item02__item + .item02__item {
  margin-top: 0.625rem;
}

.item02__image {
  width: 26.25rem;
  margin-top: -15rem;
  margin-left: clamp(-150px, -150 * (100vw - 500px) / -125 + 0px, 0px);
}
@media screen and (min-width: 768px) {
  .item02__image {
    margin-top: initial;
    margin-left: initial;
    width: 38.5rem;
  }
}
.item02__image img {
  aspect-ratio: 1/1;
  object-fit: cover;
}

.product__details {
  padding-bottom: 2.5rem;
}

.details__body {
  margin-top: 3.75rem;
  padding: 0 20px;
  max-width: 500px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .details__body {
    margin-top: 5.5625rem;
    display: grid;
    grid-template-columns: 621fr 406fr;
    max-width: 1114px;
    gap: 2.9375rem;
    align-items: center;
    position: relative;
    z-index: 2;
  }
}

.details__image {
  box-shadow: -0.54px -0.54px 10.79px rgba(113, 104, 6, 0.4);
}
@media screen and (min-width: 768px) {
  .details__image img {
    aspect-ratio: 621/388;
    object-fit: cover;
  }
}

.details__table {
  margin-top: 2.5rem;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .details__table {
    margin-top: initial;
  }
}

.details__list {
  display: grid;
  grid-template-columns: 4.0625rem 1fr;
  align-items: center;
  padding-block: 0.625rem;
  border-top: 2.5px solid rgba(203, 119, 32, 0.5);
}
@media screen and (min-width: 768px) {
  .details__list {
    grid-template-columns: 7.0625rem 1fr;
    padding-block: 0.75rem;
  }
}

.details__list--strawberry {
  border-top: 2.5px solid rgba(254, 4, 52, 0.5);
}

.details__list:last-of-type {
  border-bottom: 2.5px solid rgba(203, 119, 32, 0.5);
}

.details__list--strawberry:last-of-type {
  border-bottom: 2.5px solid rgba(254, 4, 52, 0.5);
}

.details__title {
  border-right: 2.5px solid rgba(203, 119, 32, 0.5);
  font-size: 0.875rem;
  line-height: 1.4285714286;
  letter-spacing: -0.04em;
  font-weight: 700;
  text-align: center;
  padding-block: 0.84375rem;
  color: #CB7720;
}
@media screen and (min-width: 768px) {
  .details__title {
    font-size: 1rem;
    line-height: 1.4375;
  }
}

.details__title--strawberry {
  border-right: 2.5px solid rgba(254, 4, 52, 0.5);
  color: #FE0434;
}

.details__discription {
  padding-left: 0.84375rem;
  font-size: 1rem;
  line-height: 1.4375;
  letter-spacing: 0em;
  font-weight: 400;
  padding-block: 0.84375rem;
}

.strawberry__title {
  margin-top: 3.75rem;
}

.contact {
  padding-top: 8.125rem;
  position: relative;
  background-color: #fff;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .contact {
    padding-top: 18.75rem;
    padding-bottom: 7.5rem;
  }
}

.contact::before {
  content: "";
  display: block;
  width: 100%;
  height: 11.75rem;
  background-image: url(../images/contact-top-bg_sp.png);
  background-position: center;
  background-size: 100vw 11.75rem;
  background-repeat: no-repeat;
  position: absolute;
  top: -6.25rem;
  left: 0;
  right: 0;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .contact::before {
    top: -21.875rem;
    background-image: url(../images/contact-top-bg.png);
    height: 38.4375rem;
    background-size: 100vw 38.4375rem;
  }
}

.contact__inner {
  max-width: 21.875rem;
  width: 100%;
  padding: 0rem 1.25rem;
  display: flex;
  justify-content: center;
  margin-inline: auto;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .contact__inner {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    max-width: 1100px;
    padding: 0rem 1.5625rem;
    gap: 3.125rem;
  }
}

@media screen and (min-width: 768px) {
  .contact__inner > div {
    width: 35rem;
  }
}

.contact__brand a {
  font-size: 1.125rem;
  line-height: 1.5555555556;
  letter-spacing: -0.07em;
  font-weight: 400;
  font-family: "ten-mincho-text", serif;
  color: #ffffff;
  border-radius: 3.125rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9375rem;
  background-color: #fd5202;
  width: 100%;
  padding: 0.75rem 1.875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .contact__brand a {
    font-size: 1.5625rem;
    line-height: 1.48;
    padding: 0.625rem 2.5rem;
    min-height: 5.3125rem;
  }
}

.contact__brand a p {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.contact__brand a .icon {
  width: 6.875rem;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .contact__brand a .icon {
    width: 9.375rem;
  }
}

.contact__product {
  min-height: 4.375rem;
}
@media screen and (min-width: 768px) {
  .contact__product {
    min-height: 5.3125rem;
  }
}

.contact__product a {
  font-size: 1.125rem;
  line-height: 1.5555555556;
  letter-spacing: -0.07em;
  font-weight: 400;
  font-family: "ten-mincho-text", serif;
  color: #ffffff;
  border-radius: 3.125rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9375rem;
  background-color: #c6984f;
  width: 100%;
  padding: 0.75rem 1.875rem;
  height: inherit;
  position: relative;
  min-height: 4.375rem;
}
@media screen and (min-width: 768px) {
  .contact__product a {
    font-size: 1.5625rem;
    line-height: 1.48;
    padding: 0.625rem 2.5rem;
    min-height: 5.3125rem;
  }
}

.contact__product a::before,
.contact__brand a::before {
  content: "";
  position: absolute;
  inset: 0; /* 要素全体を覆う */
  border-radius: 3.125rem; /* 角丸を合わせる */
  padding: 0.15625rem; /* ボーダーの太さ */
  background: linear-gradient(to right, #7a6d40 0%, #ceb783 36%, #ceb783 66%, #7a6d40 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1; /* 背景として置く */
}

.contact__product a p {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact__product a .icon {
  width: 3.125rem;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .contact__product a .icon {
    width: 3.125rem;
  }
}

/*# sourceMappingURL=style.css.map */
