@charset "UTF-8";
:root {
  --text-black: #222;
  --brown01: #af7217;
  --en: "Bodoni Moda SC", serif;
  --ja: "Noto Sans JP", sans-serif;
  --mincho: "Noto Serif", serif;
  --shadow: 0 5px 15px rgba(#dde6ec, 1);
  --shadow-text: 0 3px 6px rba(0, 0, 0, 0.25);
}

* {
  margin: 0;
  padding: 0;
}

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

html {
  font-size: 62.5%;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

body {
  font-family: var(--ja);
  font-size: clamp(14px, 1.0980966325vw, 16px);
  line-height: 1.6666666667;
  font-weight: 400;
  color: var(--text-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

a {
  color: var(--text-black);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  opacity: 1;
}

ul,
li {
  list-style: none;
}

table {
  border-collapse: collapse;
}

table thead th,
table thead td {
  background-color: #f2f2f2;
}

table th,
table td {
  border-collapse: collapse;
}

table th {
  text-align: left;
}

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

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.is-pc {
  display: block;
}

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

@media screen and (max-width: 768px) {
  .is-sp {
    display: block;
  }
}
a[href^="tel"] {
  text-decoration: none;
  color: inherit;
}

.en {
  font-family: var(--en);
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
  width: 89.6%;
}

.bold {
  font-weight: 700;
}

.flex {
  display: flex;
}

.en {
  font-family: var(--en);
}

.btn01 {
  background: var(--brown01);
  width: 262px;
  height: 46px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--mincho);
  font-size: 1.4rem;
  font-weight: 500;
  position: relative;
}
.btn01::after {
  content: "";
  transition: all 0.5s ease;
  width: 13px;
  height: 13px;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 24px;
  background: url(../img/lp/icon-arrow-right.svg) no-repeat center/contain;
}
.btn01:hover::after {
  transform: translate(6px, -50%);
}

.header {
  padding: 30px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 106px;
  z-index: 99;
}
@media screen and (max-width: 768px) {
  .header {
    position: absolute;
    padding: 8px;
    top: 0;
    left: 0;
    height: 64px;
  }
}
.header .header-inner {
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}
.header h1 {
  position: absolute;
  top: 24px;
  left: 32px;
  width: 53px;
  z-index: 99;
}
.header h1 a {
  display: block;
}
.header h1 a img {
  display: block;
}
.header .header-nav .nav-list {
  gap: 20px;
  align-items: center;
}
.header .header-nav .nav-list li a {
  font-size: 1.3rem;
  font-weight: 400;
  color: white;
  transition: all 0.3s ease;
}
.header .header-nav .nav-list li a:hover {
  color: var(--brown01);
}
.header .header-nav .nav-list li .btn01:hover {
  color: white;
}
@media screen and (max-width: 768px) {
  .header .header-nav {
    display: none;
  }
}
.header .header-link {
  display: block;
  color: white;
  background: var(--pink01);
  padding: 12px 24px;
  box-shadow: 0 4px 0 #d6424b;
  font-size: 1.5rem;
  font-weight: 700;
  transition: all 0.5s ease;
  border-radius: 60px;
  z-index: 999;
}
.header .header-link:hover {
  box-shadow: none;
  transform: translateY(4px);
}
@media screen and (max-width: 768px) {
  .header .header-link {
    font-size: 1.3rem;
    white-space: nowrap;
    padding: 8px 16px;
  }
}

.openbtn {
  height: 55px;
  width: 55px;
  position: relative;
  display: none;
  z-index: 999;
  background: var(--brown01);
  border-radius: 50%;
  position: fixed;
  top: 8px;
  right: 8px;
}
@media screen and (max-width: 768px) {
  .openbtn {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.openbtn span {
  position: absolute;
  width: 22px;
  height: 2px;
  background: white;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s ease;
}
.openbtn span:nth-of-type(1) {
  top: calc(50% - 6px);
}
.openbtn span:nth-of-type(2) {
  top: 50%;
}
.openbtn span:nth-of-type(3) {
  top: calc(50% + 6px);
}
.openbtn.active span:nth-of-type(1) {
  transform: translate(-50%, 6px) rotate(-45deg);
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  transform: translate(-50%, -6px) rotate(45deg);
}

#gnav-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  #gnav-sp {
    position: fixed;
    z-index: 100;
    display: block;
    top: 0px;
    right: -120%;
    width: 100%;
    padding: 120px 24px 80px 24px;
    background: white;
    transition: all 0.6s ease;
    box-shadow: 0px 3px 6px rgba(87, 69, 66, 0.3);
  }
  #gnav-sp.panelactive {
    right: 0;
  }
  #gnav-sp #gnav-sp-list {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  #gnav-sp #gnav-sp-list ul li {
    margin-bottom: 24px;
  }
  #gnav-sp #gnav-sp-list ul li a {
    font-size: 1.8rem;
  }
  #gnav-sp #gnav-sp-list ul li a::before {
    content: "●";
    color: var(--brown01);
    margin-right: 0.2em;
  }
  #gnav-sp #gnav-sp-list ul li .btn01::before {
    content: none;
  }
}

hgroup {
  margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
  hgroup {
    margin-bottom: 40px;
  }
}
hgroup .sub-ttl {
  font-size: 1.8rem;
  line-height: 1.4444444444;
  font-family: var(--mincho);
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  hgroup .sub-ttl {
    margin-bottom: 16px;
  }
}
hgroup h2 {
  height: 76px;
}
@media screen and (max-width: 768px) {
  hgroup h2 {
    height: 60px;
  }
}
hgroup h2 img {
  display: block;
  object-fit: contain;
  width: 100%;
  height: 100%;
  object-position: left;
}

.main {
  background: url(../img/lp/bg01.png) no-repeat top center/cover;
}

section {
  padding: 144px 0;
}
@media screen and (max-width: 768px) {
  section {
    padding: 72px 0;
  }
}

.mincho {
  font-family: var(--mincho);
}

.mv {
  /* background: url(../img/lp/mv.png) no-repeat bottom center/cover; */
  width: 100%;
  height: 100svh;
  margin-bottom: 40px;
  display: flex;
  padding: 0 56px 110px;
  justify-content: flex-start;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .mv {
    padding: 0 20px 40px;
    background: url(../img/lp/mv-sp.png) no-repeat bottom center/cover;
    margin-bottom: 0;
  }
}
.mv .mv-text {
  color: white;
}
@media screen and (max-width: 768px) {
  .mv .mv-text {
    line-height: 1.2666666667;
  }
}
.mv .mv-text .ttl {
  font-size: 3rem;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .mv .mv-text .ttl {
    font-size: 2.7rem;
    margin-bottom: 8px;
  }
}
.mv .mv-text .desc {
  font-size: 1.5rem;
  line-height: 1.6666666667;
}
.mv .scroll {
  flex-direction: column;
  gap: 8px;
  position: absolute;
  bottom: 0;
  right: 60px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .mv .scroll {
    display: none;
  }
}
.mv .scroll img {
  display: block;
  width: fit-content;
}

.lead {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.4666666667;
  font-family: var(--mincho);
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .lead {
    font-size: 2.4rem;
    margin-bottom: 24px;
  }
}

.deco {
  position: absolute;
}
@media screen and (max-width: 768px) {
  .deco {
    width: 50%;
  }
}
.deco img {
  display: block;
}

.about {
  overflow: hidden;
  position: relative;
}
.about .deco2 {
  position: absolute;
  left: -70px;
  top: 60%;
  display: block;
}
.about .inner {
  max-width: 1080px;
}
.about .contents {
  align-items: center;
  gap: 5.8565153734vw;
}
@media screen and (max-width: 768px) {
  .about .contents {
    flex-direction: column;
  }
}
.about .img-wrapper {
  position: relative;
  height: 469px;
  max-width: 703px;
  width: 100%;
  flex-shrink: 0;
}
.about .img-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}
.about .img-wrapper .deco1 {
  bottom: 86%;
  left: 70%;
}
@media screen and (max-width: 768px) {
  .about .img-wrapper .deco1 {
    bottom: 77%;
    left: 76%;
  }
}
.about .img-wrapper .deco3 {
  top: 70%;
  left: -10%;
}
.about .text-wrapper {
  max-width: 480px;
  flex-shrink: 0;
  width: 100%;
}
.about .text-wrapper .desc p:not(:last-child){
  margin-bottom: 1em;
}
.features {
  position: relative;
  background: url(../img/lp/features-bg.jpg) no-repeat bottom center/cover;
  padding: 96px 0;
}
.features::before {
  content: "";
  position: absolute;
  bottom: -5px;
  right: 8.0527086384vw;
  background: url(../img/lp/ingredi.svg) no-repeat bottom center/contain;
  width: 100%;
  max-width: 540px;
  max-height: 76px;
  height: 76px;
}
@media screen and (max-width: 768px) {
  .features::before {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
.features .contents {
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .features .contents {
    gap: 16px;
  }
}
.features .contents .text-wrapper {
  max-width: 360px;
  width: 360px;
  color: white;
}
.features .contents .text-wrapper p:not(:last-child){
  margin-bottom: 1em;
}
.features .contents .name {
  width: 78px;
  flex-shrink: 0;
}

.taste {
  background: white;
  position: relative;
  overflow: hidden;
  padding-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .taste {
    padding-bottom: 24px;
  }
}
.taste::before {
  content: "";
  position: absolute;
  filter: blur(50px);
  width: 952px;
  display: block;
  height: 952px;
  background: url(../img/lp/ellipse-taste.svg) no-repeat center/contain;
  top: -20%;
  right: -20%;
}
.taste .deco4 {
  top: 0;
  right: 0;
}
.taste .deco5 {
  right: 0;
  top: 70%;
}
.taste .inner {
  gap: 5.4172767204vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  .taste .inner {
    flex-direction: column-reverse;
  }
}
.taste .inner .img-wrapper {
  height: 620px;
  border-radius: 0px 20px 20px 0;
  margin-left: calc(50% - 50vw);
  width: calc(50% + 50vw - 50%);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .taste .inner .img-wrapper {
    height: 300px;
    width: 100%;
  }
}
.taste .inner .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.taste .inner .text-wrapper {
  flex: 1;
}
.taste .inner .text-wrapper .desc p:not(:last-child){
  margin-bottom: 1em;
}
.craft {
  background-color: white;
  position: relative;
}
.craft .inner {
  max-width: 1496px;
  position: relative;
  justify-content: space-around;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .craft .inner {
    padding: 72px 0;
    flex-direction: column;
  }
}
.craft .inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/lp/craft-text-bg.png) no-repeat center/contain;
  max-width: 713px;
  width: 52.196193265vw;
  max-height: 192px;
  height: 14.055636896vw;
  display: block;
}
@media screen and (max-width: 768px) {
  .craft .inner::before {
    width: 100%;
    height: 90px;
  }
}
.craft .img-wrapper {
  width: 52.5%;
  max-width: 525px;
}
@media screen and (max-width: 768px) {
  .craft .img-wrapper {
    width: 100%;
    margin-top: 24px;
  }
}
.craft .text-wrapper {
  position: relative;
  justify-content: space-between;
  gap: 3.513909224vw;
}
.craft .text-wrapper .text .desc p:not(:last-child){
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .craft .text-wrapper .ttl {
    width: 90px;
  }
  .craft .text-wrapper .text {
    flex: 1;
    text-align: justify;
  }
}

/* .awards {
  background: url(../img/lp/awards-bg.png) no-repeat center/cover;
} */
.awards .inner {
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .awards .inner {
    flex-direction: column;
  }
}
.awards .left .award-img {
  display: block;
  margin: 0 auto;
}
.awards .left .award-img.award1 {
  max-width: 217px;
  width: 100%;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .awards .left .award-img.award1 {
    max-width: 152px;
  }
}
.awards .left .award-img.award2 {
  width: 100%;
  max-width: 353px;
  margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .awards .left .award-img.award2 {
    max-width: 247px;
    margin-bottom: 32px;
  }
}
.awards .right {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .awards .right {
    width: 100%;
    margin-top: 32px;
  }
}
.awards .award-list .item {
  background: white;
  padding: 16px;
  filter: drop-shadow(0px 2px 10px #d1dae6);
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .awards .award-list .item {
    padding: 10px 16px;
  }
}
.awards .award-list .item:not(:last-child) {
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .awards .award-list .item:not(:last-child) {
    margin-bottom: 8px;
  }
}

.lineup {
  position: relative;
  overflow: hidden;
}
.lineup::before {
  content: "";
  background: url(../img/lp/lineup-bg.svg) no-repeat center/contain;
  width: 133.1625183016vw;
  height: 69.6925329429vw;
  display: block;
  position: absolute;
  top: 100px;
  right: 46.1200585652vw;
  filter: blur(50px);
}
.lineup .sec-head {
  margin-bottom: 72px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .lineup .sec-head {
    margin-bottom: 32px;
  }
}
.lineup .sec-head .inner {
  align-items: center;
}
@media screen and (max-width: 768px) {
  .lineup .sec-head .inner {
    flex-direction: column;
  }
}
.lineup .deco6 {
  top: 0;
  right: 0;
}
@media screen and (max-width:768px){
  .lineup .deco6{
    right: -10%;
  }
}
.lineup .deco7 {
  right: 0;
  top: 25%;
}
.lineup hgroup {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .lineup hgroup {
    width: 100%;
  }
}
.lineup .text-box {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .lineup .text-box {
    width: 100%;
  }
}
.lineup .sec-body .inner {
  position: relative;
  max-width: 1280px;
}
.lineup .lineup-list {
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .lineup .lineup-list {
    flex-direction: column;
    gap: 16px;
  }
}
.lineup .lineup-list .img-wrapper {
  margin-bottom: 16px;
}
.lineup .lineup-list .text-wrapper {
  text-align: center;
}
.lineup .lineup-list .text-wrapper h3,
.lineup .lineup-list .text-wrapper .text {
  color: var(--brown01);
}
.lineup .lineup-list .text-wrapper h3 {
  font-size: 2.2rem;
  margin: bottom 8px;
  font-weight: 500;
}
.lineup .lineup-list .text-wrapper .text {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .lineup .lineup-list .text-wrapper .text {
    margin-bottom: 8px;
  }
}
.lineup .lineup-list .text-wrapper .lineup-awards .item {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .lineup .lineup-list .text-wrapper .lineup-awards .item {
    margin-bottom: 4px;
    font-size: 1.2rem;
  }
}

.recommend {
  background: #fcfbf8;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .recommend .inner {
    flex-direction: column;
  }
}
.recommend .inner {
  position: relative;
}
.recommend::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/lp/text-recommend.svg) no-repeat center/contain;
  width: 91.1420204978vw;
  height: 12.2254758419vw;
  display: block;
  margin-bottom: -10px;
}
@media screen and (max-width: 768px) {
  .recommend::after {
    margin-bottom: -1px;
    width: 100%;
    height: 13vw;
  }
}
.recommend .recommend-list {
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .recommend .recommend-list {
    flex-direction: column;
    gap: 16px;
  }
}
.recommend .recommend-list li {
  flex: 0 0 auto;
  width: 30%;
}
@media screen and (max-width: 768px) {
  .recommend .recommend-list li {
    text-align: center;
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
  }
}
.recommend .recommend-list li:nth-child(3) {
  position: relative;
}
.recommend .recommend-list li:nth-child(3)::after {
  content: "";
  background: url(../img/lp/ume3.png) no-repeat center/contain;
  width: 138px;
  max-width: 138px;
  height: 93px;
  max-height: 93px;
  display: block;
  position: absolute;
  bottom: 0px;
  right: -78px;
  filter: drop-shadow(20px 20px 40px rgba(255, 227, 223, 0.76));
}
@media screen and (max-width: 768px) {
  .recommend .recommend-list li:nth-child(3)::after {
    bottom: 0;
    right: -20px;
    width: 118px;
  }
}
.recommend .text-wrapper {
  width: 6.149341142vw;
  max-width: 84px;
  height: auto;
  margin-right: 42px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .recommend .text-wrapper {
    width: 100%;
    margin-right: 0;
    margin-bottom: 32px;
    max-width: none;
    text-align: center;
  }
  .recommend .text-wrapper h2 {
    font-size: 2.4rem;
    font-family: var(--mincho);
    font-weight: 500;
    color: var(--brown01);
  }
}

.cta {
  padding-top: 30px;
  margin-bottom: 103px;
}
@media screen and (max-width: 768px) {
  .cta {
    padding-top: 16px;
    margin-bottom: 72px;
  }
}
.cta .img-wrapper {
  max-width: 1306px;
  margin: 0 auto 50px;
}
@media screen and (max-width: 768px) {
  .cta .img-wrapper {
    margin-bottom: 24px;
  }
}
.cta .inner {
  text-align: center;
}
.cta .lead {
  color: var(--brown01);
}
.cta .btn01 {
  margin-top: 40px;
}

.footer {
  padding: 40px 0 20px;
  background-color: var(--text-black);
  color: white;
}
.footer .footer-inner {
  max-width: 1000px;
  width: 89.6%;
  margin: 0 auto;
}
.footer .footer-logo {
  width: 53px;
  height: auto;
  display: block;
  margin: 0 auto 36px;
}
.footer .footer-nav {
  margin-bottom: 36px;
}
.footer .footer-nav .nav-list {
  display: flex;
  column-gap: 40px;
  row-gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .footer .footer-nav .nav-list {
    column-gap: 24px;
  }
}
.footer .footer-nav .nav-list .item a {
  color: white;
  font-size: 1.3rem;
}
.footer small {
  font-size: 1.3rem;
  font-weight: 300;
  display: block;
  margin: 0 auto;
  text-align: center;
}

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