@charset "utf-8";@charset "UTF-8";
body {
    background-color: #8dabc6;
}
/* テキスト */
.text01 {
    font-size: 1.0em;
    line-height: 26px;
    width: 100%;
    margin-top: 1%;
    text-align: center;
    font-family: "Noto Sans JP", serif;
    margin-bottom: 3%;
}


.brand-title01 {
    font-size: 1.4em;
    margin: 0.15em 0 0.15em 0;
    font-weight: 600;
}


/*ボタン */

.center-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 30vh; /* お好みで高さ調整 */
  width: 100vw;
}

.melrose-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 800vw;
    max-width: 320px;
    min-width: 310px;
    height: 60px;
    border: 1px solid #333;
    background: #fff;
    font-size: 1.2em;
    letter-spacing: 0.05em;
    color: #222;
    font-family: 'Noto Sans', 'Montserrat', Arial, sans-serif;
    cursor: pointer;
    transition: box-shadow 0.2s;
}

.melrose-btn:focus,
.melrose-btn:hover {
  background-color: #808080;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  outline: none;
}


/* グリーンプロジェクト */
.container912 {
    display: grid;
    grid-template-columns: 0.35fr;
    grid-template-rows: 1fr 0.3fr;
    gap: 10px 10px;
    grid-auto-flow: row;
    justify-content: center;
    justify-items: center;
    grid-template-areas:
        "photoimage10"
        "textimage10";
    padding-top:10%;
}

.photoimage10 { grid-area: photoimage10; }

.textimage10 { grid-area: textimage10;
    font-size: 1.0em;
    line-height: 1.9;
    margin-bottom: 2em;
    color: #444;
    text-align: justify;
    margin: 0 auto;
    margin-bottom: 5%;
}


/* アイテム紹介 */
.exclusive-header {
    text-align: center;
    padding-top: 3%;
}

.sub-text {
  font-size: 0.9em;
  color: #616161;
  letter-spacing: 1px;
  margin-bottom: 0;
}

.main-number {
  font-size: 2.7em;
  font-weight: bold;
  margin: 0.3em 0 0.1em 0;
  line-height: 1;
}

.brand-title {
  font-size: 2em;
  margin: 0.15em 0 0.15em 0;
  font-weight: 600;
}

.brand-title span {
  font-size: 0.75em;
  font-weight: 400;
  display: block;
}

.product-name {
  font-size: 1.1em;
  color: #24292e;
  margin-bottom: 2em;
}

.main-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 2em auto;
    width: 100%;
    max-width: 520px;
    height: 720px;
    box-shadow: 0 2px 6px rgba(160, 160, 160, 0.05);
    position: relative;
}

/* スライドショー */
.img-slider {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.img-slide {
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: img-slider-fade 6s infinite;
  transition: opacity 0.7s ease;
}

.img-slide1 { animation-delay: 0s; }
.img-slide2 { animation-delay: 2s; }
.img-slide3 { animation-delay: 4s; }

@keyframes img-slider-fade {
  0% { opacity: 1; }
  27% { opacity: 1; }
  33% { opacity: 0; }
  100% { opacity: 0; }
}

.content {
  max-width: 650px;
  margin: 2em auto;
  padding: 0 1.2em;
}

.catch-copy {
  text-align: center;
  color: #2B3A4E;
  font-size: 1.25em;
  font-weight: bold;
  margin-bottom: 1.4em;
}

.description {
    font-size: 1.0em;
    line-height: 1.9;
    margin-bottom: 2em;
    color: #444;
    width: 85%;
    text-align: justify;
    margin: 0 auto;
    margin-bottom: 5%;
}

.product-info {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    padding: 10px;
    width: 85%;
    margin: 0 auto;
    margin-bottom: 5%;
}

.product-thumb {
  width: 48px;
  height: 64px;
  object-fit: cover;
  box-shadow: 0 1px 3px rgba(0,0,0,0.07);
}

.product-name-mini {
  font-size: 0.97em;
  font-weight: 500;
  color: #23292d;
}

.product-price {
  display: block;
  font-size: 0.88em;
  color: #65737e;
  margin-top: 4px;
}

/* スライド*/

.news-header {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #222;
  margin-bottom: 2rem;
}

.news-date {
  font-size: 1.1rem;
  color: #444;
  letter-spacing: 2px;
}

.news-title {
  font-size: 4rem;
  letter-spacing: 4px;
  margin: 0.3em 0 0.1em 0;
  font-weight: bold;
}

.news-title span {
  font-size: 1.5rem;
  font-weight: normal;
  margin-left: 1em;
  vertical-align: middle;
  letter-spacing: 1px;
}

/* スライダー全体 */
.slider-container {
  width: 100vw;
  overflow: hidden;
  margin: 0;
  padding: 0;
  position: relative;
}

.slider-track {
  display: flex;
  gap: 10px;
  width: calc((200vw + 90px)); /* 10枚+余白9箇所分 */
  animation: slide 16s linear infinite;
}

.slider-track img {
  width: calc((100vw - 40px) / 5); /* 1画面5枚でgap合計40px */
  min-width: 350px;
  height: auto;
  flex-shrink: 0;
  object-fit: cover;
}

@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-100vw - 45px)); }
}

@media screen and (max-width: 1024px) {
.container912 {
    display: grid;
    grid-template-columns: 0.5fr;
    grid-template-rows: 1fr 0.3fr;
    gap: 10px 10px;
    grid-auto-flow: row;
    justify-content: center;
    justify-items: center;
    grid-template-areas:
        "photoimage10"
        "textimage10";
    padding-top:10%;
}
}

@media screen and (max-width: 900px) {
  .slider-track img {
    min-width: 320px;
  }
}
@media screen and (max-width: 600px) {
  .slider-track img {
    width: calc((100vw - 40px) / 2.2);
    min-width: 280px;
  }
}
/*===============================================
tablet
===============================================*/
/* スマホ対応 */
@media (max-width: 768px) {
  .slide {
    flex: 0 0 100%;
  }

.container912 {
        display: grid;
        grid-template-columns: 0.7fr;
        grid-template-rows: 1fr 0.3fr;
        gap: 10px 10px;
        grid-auto-flow: row;
        justify-content: center;
        justify-items: center;
        grid-template-areas:
        "photoimage10"
        "textimage10";
        padding-top:10%;
    }
}
/*===============================================
SMP
===============================================*/
@media (max-width: 480px) {
  .main-number {
    font-size: 2em;
  }

.brand-title {
        font-size: 2.5em;
    }

.main-image-wrapper {
        height: 130vw;
        min-height: 320px;
    }

.img-slider {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    margin: 5%;
}

.news-title {
    font-size: 3rem;
    letter-spacing: 4px;
    margin: 0.3em 0 0.1em 0;
    font-weight: bold;
}

.description {
    font-size: 1.0em;
    line-height: 1.9;
    margin-bottom: 2em;
    color: #444;
    width: 90%;
    text-align: justify;
    margin: 0 auto;
    margin-bottom: 5%;
}
.product-info {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    padding: 10px;
    width: 90%;
    margin: 0 auto;
}
.slider-track {
  display: flex;
  gap: 10px;
  width: calc((200vw + 90px)); /* 10枚+余白9箇所分 */
  animation: slide 8s linear infinite;
}

.container912 {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 0.3fr;
        gap: 30px 30px;
        grid-auto-flow: row;
        justify-content: center;
        justify-items: center;
        grid-template-areas:
        "photoimage10"
        "textimage10";
        padding-top: 10%;
        margin: 5%;
    }
}

@media (max-width: 320px) {
.melrose-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 800vw;
    max-width: 280px;
    min-width: 280px;
    height: 60px;
    border: 1px solid #333;
    background: #fff;
    font-size: 1.2em;
    letter-spacing: 0.05em;
    color: #222;
    font-family: 'Noto Sans', 'Montserrat', Arial, sans-serif;
    cursor: pointer;
    transition: box-shadow 0.2s;
}
}
