@charset "UTF-8";

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
  font-size: 62.5%;
  width: 100%;
}

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

* {
  margin: 0;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
}

body {
  background-color: #F2EEE3;
  color: #503814;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
}

main {
  display: block;
  width: 100%;
  z-index: 1;
  overflow-x: hidden;
}

ul,
li {
  list-style-type: none;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #503814;
  transition: opacity .6s ease;
}

a:hover {
  opacity: .7;
}

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

.sp-only {
  display: none;
}

/* header --------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 999;
  background-color: #fff;
}

.page-width {
  max-width: 1140px;
  width: 90%;
  padding: 0 20px;
  margin: 0 auto;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 80px;
}

.header-logo {
  z-index: 2;
  width: 100px;
}

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

.line-btn {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
  line-height: 1;
  width: 240px;
  height: 50px;
  background-color: #00B811;
  margin: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  overflow: hidden;
  transition: 0.5s;
  border-radius: 999px;
  text-decoration: none;
}

.line-btn img {
  width: 24px;
  height: 100%;
}

/* kv -------------------------------------------------*/
.kv {
  position: relative;
  margin: 80px 0;
}

.kv-slider {
  position: relative;
}

.kv-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 600 / 361;
  object-fit: cover;
}

.dots-wrap {
  position: absolute;
  right: 0;
  left: 0;
  bottom: -32px;
  display: flex;
  justify-content: center;
}

.dots-wrap li {
  width: 12px;
  height: 12px;
  margin: 0 10px;
  background: #ADA29D;
  border-radius: 50%;
  cursor: pointer;
  transition: .6s;
}

.dots-wrap li button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}

.dots-wrap li:hover,
.dots-wrap li.slick-active {
  background: #513815;
  transition: .6s;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 69px;
  height: 69px;
  background-color: #513815;
  border-radius: 999px;
  cursor: pointer;
  z-index: 5;
  opacity: .8;
  transition: .6s;
  border: 2px solid #fff;
}

.kv-slider .arrow-prev {
  left: 15.5vw;
}

.kv-slider .arrow-next {
  right: 15.5vw;
}

.slider-arrow:hover {
  opacity: 1;
}

.slider-arrow:before {
  content: '';
  width: 18px;
  height: 18px;
  border: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: auto;
}

.arrow-prev:before {
  border-top: solid 2px #fff;
  border-left: solid 2px #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.arrow-next:before {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}

/* topic -------------------------------------------------*/
.topic-img {
  margin: 0 1.2rem;
}

.topic-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
}

/* modal -------------------------------------------------*/
.js-modal {
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}

.modal-bg {
  background: rgba(0, 0, 0, 0.6);
  height: 100vh;
  position: absolute;
  width: 100%;
}

.modal-container {
  background-color: #F2EEE3;
  left: 50%;
  padding: 60px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 750px;
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  transition: opacity .6s;
}

.modal-close:before,
.modal-close:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 1px;
  background: #523815;
  content: '';
}

.modal-close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal-ttl {
  margin-bottom: 3rem;
}

.modal-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.modal-link {
  width: calc((100% - 24px)/2);
}

/* news -------------------------------------------------*/
.news {
  margin-top: 8rem;
}

.news-container {
  background-color: #fff;
  border-top: 10px solid #513815;
  padding: 3rem 5rem 3rem;
}

.section-ttl {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 800;
  text-align: center;
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 4rem;
}

.news-item {
  display: flex;
  padding-bottom: 2.4rem;
  margin-top: 2.4rem;
  border-bottom: 1px #DCD7D0 dashed;
}

.news-item:last-child {
  border: none;
}

.news-date {
  width: 140px;
}

.news-ttl {
  width: calc(100% - 140px);
}

/* pickup -------------------------------------------------*/
.pickup {
  margin-top: 10rem;
}

.pickup-list {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.pickup-img {
  width: calc((100% - 3rem)/2);
}

.pickup-img img {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* ranking -------------------------------------------------*/
.ranking {
  margin-top: 10rem;
  background-image: url(../images/bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 6rem 0 10rem;
}

.ranking-wrapper {
  position: relative;
}

.ranking-inner {
  position: relative;
  width: calc(100% + (100vw - 100%) / 2);
}

.ranking-slider {
  max-width: 1120px;
  width: 90%;
  margin: 0 auto;
  position: relative;
}

.ranking-slider .slick-list {
  padding: 0 !important;
}

.ranking-img {
  padding: 0 10px;
  box-sizing: border-box;
}

.ranking-img img {
  aspect-ratio: 3 / 1;
  object-fit: cover;
  width: 100%;
  height: auto;
}

.ranking-slider .slick-list {
  overflow: visible !important;
}

.ranking-slider .arrow-prev {
  left: -25px;
}

.ranking-slider .arrow-next {
  right: -25px;
}

/*  category-------------------------------------------------*/
.category {
  margin-top: 8rem;
}

.category-block {
  background-color: #fff;
  border-radius: 20px;
  position: relative;
  padding: 5rem 5rem 8rem;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  margin-top: 7rem;
}

.category-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 55 / 31;
  object-fit: cover;
}

.category-info {
  text-align: center;
  margin: 3rem 0 5rem;
}

.categor-ttl {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 800;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.product-list {
  display: flex;
  gap: 2rem;
}

.product-item {
  width: calc((100% - 4rem)/3);
}

.product-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-ttl {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.5;
  margin-top: 1.5rem;
}

.btn-block {
  margin-top: 5rem;
}

.category-btn {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 800;
  font-size: 2rem;
  color: #fff;
  text-align: center;
  line-height: 1;
  max-width: 370px;
  width: 100%;
  height: 65px;
  background-color: #D04B20;
  margin: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: 0.5s;
  border-radius: 999px;
  text-decoration: none;
}

.category-btn:before {
  content: '';
  width: 12px;
  height: 12px;
  border: 0;
  position: absolute;
  top: 50%;
  right: 4rem;
  margin: auto;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: translateY(-50%) rotate(45deg);
}

.category-head {
  position: absolute;
  top: -50px;
  right: -50px;
}

.category-head-left {
  right: auto;
  left: -50px;
}

.category-head img {
  max-width: 300px;
  width: 100%;
  height: 100%;
}

/*  site-------------------------------------------------*/
.site {
  background-color: #685657;
  margin-top: 10rem;
  padding: 8rem 0;
  position: relative;
}

.site-line {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.site-line img {
  width: 100%;
  vertical-align: top;
}

.site .section-ttl {
  color: #fff;
}

.site-list {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.site-item {
  width: calc((100% - 6rem)/3);
}

/*  seasonal-------------------------------------------------*/
.seasonal {
  margin: 8rem 0;
}

.section-ttl-small {
  font-size: 2rem;
  line-height: 1;
  display: block;
  margin-top: 1rem;
}

.heading {
  text-align: center;
  margin-top: -2rem;
}

.heading-small {
  font-size: 1.2rem;
  display: block;
}

.seasonal-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-top: 4rem;
}

.seasonal-list img {
  width: 100%;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
}
/*  miryoku-------------------------------------------------*/
.miryoku-img img{
    width:100%;
}
/*  step-------------------------------------------------*/
.step {
  margin-top: 8rem;
}

.step-list {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: calc((100% - 9rem)/4);
}

.step-ttl {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 800;
  line-height: 1.5;
  font-size: 2.4rem;
  margin: 2rem 0 1rem;
}

.step-box {
  border: 1px solid #523815;
  border-radius: 15px;
  padding: 1rem;
  font-size: 1.4rem;
  margin-top: 1rem;
  text-align: left;
  width: 100%;
  display: flex;
  justify-content: center;
}

/*  jogen-------------------------------------------------*/
.jogen {
  margin: 8rem 0;
}

.jogen-ttl {
  color: #fff;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 800;
  background-color: #685657;
  font-size: 3.2rem;
  text-align: center;
  padding: 1.5rem;
  line-height: 1;
}

.jogen-txt {
  text-align: center;
  margin: 3rem 0;
}

.jogen-attention {
  text-align: right;
  font-size: 1.2rem;
  margin-top: 1rem;
}
.jogen-img img{
    width:100%;
}
/*  use-------------------------------------------------*/
.use-img{
    text-align:center;
}
/*  footer-------------------------------------------------*/
.footer {
  background-color: #554148;
  padding: 2.4rem 0 2rem;
}

.footer-link {
  text-align: right;
}

.footer-link a {
  color: #fff;
  font-size: 1.4rem;
}

.footer-copy {
  text-align: center;
  font-size: 1.2rem;
  padding-top: 2rem;
  color: #fff;
}

/*  sp-------------------------------------------------*/
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }

  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }
  .page-width {
  width: 100%;
}
.line-btn {
  font-size: 1.4rem;
  width: 220px;
}

.line-btn img {
  width: 24px;
  height: 100%;
}
/* kv -------------------------------------------------*/
.kv{
    margin:80px 0 60px;
}
.dots-wrap {
  bottom: -24px;
}
.dots-wrap li {
  width: 10px;
  height: 10px;
  margin: 0 8px;
}
/* topic -------------------------------------------------*/
.topic-img {
  margin: 0 0.8rem;
}
/* modal -------------------------------------------------*/
.modal-container {
  padding: 40px 20px 30px;
  width: calc(100% - 40px);
}
.modal-close {
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
}
.modal-close:before,
.modal-close:after {
  width: 24px;
}
.modal-ttl {
  margin-bottom: 2rem;
}
.modal-flex {
  gap: 20px 10px;
}
.modal-link {
  width: calc((100% - 10px)/2);
}
/* news -------------------------------------------------*/
.news {
  margin-top: 6rem;
}

.news-container {
  border-top: 8px solid #513815;
  padding: 3rem 2rem 2rem;
}

.section-ttl {
  font-size: 2.8rem;
  margin-bottom: 3rem;
}

.news-item {
  padding-bottom: 2rem;
  margin-top: 2rem;
  flex-direction: column;
  gap:1rem;
}

.news-date,
.news-ttl {
  width: 100%;
}
/* pickup -------------------------------------------------*/
.pickup {
  margin-top: 4rem;
}

.pickup-list {
  gap: 1.5rem;
}

.pickup-img {
  width: calc((100% - 1.5rem)/2);
}
/* ranking -------------------------------------------------*/
.ranking {
  margin-top: 6rem;
  padding: 4rem 0 5rem;
}
.ranking-slider {
  width: calc(100% - 30px);
}
.ranking-img {
  padding: 0 5px;
}
/*  category-------------------------------------------------*/
.category {
  margin-top: 4rem;
}

.category-block {
  padding: 3rem 2rem 4rem;
  margin-top: 5rem;
  border-radius: 15px;
}
.category-img{
  margin-left:-2rem;
  margin-right:-2rem;
  margin-top:-3rem;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}
.category-img img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.category-info {
  text-align: center;
  margin: 2rem 0 4rem;
}

.categor-ttl {
  font-size: 2.4rem;
}
.category-info p{
  text-align: left;
}
.product-list {
  flex-direction: column;
  gap: 3rem;
}

.product-item {
  width: 100%;
}

.product-ttl {
  text-align: center;
  margin-top: 1rem;
  font-size: 1.6rem;
}

.btn-block {
  margin-top: 3rem;
}

.category-btn {
  font-size: 1.6rem;
  max-width: 350px;
  height: 55px;
}

.category-btn:before {
  width: 10px;
  height: 10px;
  right: 2rem;
}

.category-head {
  top: -40px;
  right: -15px;
}

.category-head-left {
  right: auto;
  left: -15px;
}

.category-head img {
  max-width: 140px;
}
/*  site-------------------------------------------------*/
.site {
  margin-top: 5rem;
  padding: 4rem 0 5rem;
}

.site-list {
  gap: 2rem 1.5rem;
}

.site-item {
  width: calc((100% - 1.5rem)/2);
}
/*  seasonal-------------------------------------------------*/
.seasonal {
  margin: 4rem 0 5rem;
}

.section-ttl-small {
  font-size: 1.8rem;
}

.heading {
  margin-top: -1rem;
}
.seasonal-list {
  margin-top: 3rem;
}
/*  step-------------------------------------------------*/
.step {
  margin-top: 4rem;
}

.step-list {
  flex-direction: column;
  gap: 2rem;
}

.step-item {
  width:100%;
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
  gap:20px;
}
.step-img{
  width: 110px;
}
.step-info{
  width:calc(100% - 130px);
}
.step-ttl {
  font-size: 1.8rem;
  margin: 0 0 1rem;
}

.step-box {
  border-radius: 10px;
  font-size: 1rem;
  justify-content: flex-start;
}
/*  jogen-------------------------------------------------*/
.jogen {
  margin: 6rem 0;
}

.jogen-ttl {
  font-size: 2.4rem;
}

.jogen-txt {
  margin: 2rem 0;
}

.jogen-attention {
  text-align: left;
  font-size: 1rem;
}
/*  footer-------------------------------------------------*/
.footer-link a {
  font-size: 1.2rem;
}

.footer-copy {
  font-size: 1rem;
  padding-top: 1.5rem;
}
}