/* ================================
   RESET
   ================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #463C35;
  background-color: #ede6df/*#F7F4F0*/;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

table {
  border-collapse: collapse;
  width: 100%;
}

a:hover {
  opacity: 0.7;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* フェードイン前の初期状態 */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  /* 30px下に下げておく */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* 画面に入った時に付与するクラス */
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
  /* 元の位置に戻る */
}

/* ================================
   TYPOGRAPHY
   ================================ */

/* 英字ラベル */
.label-en {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #8C7B6B;
  text-align: center;
}

/* 主見出し（明朝） */
.heading-primary {
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 4.2vw;
  font-weight: 500;
  line-height: 2.0;
  letter-spacing: 0.06em;
  color: #463C35;
  text-align: center;
}

/* 副見出し（明朝） */
.heading-secondary {
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 2.0;
  letter-spacing: 0.06em;
  color: #463C35;
  text-align: center;
  margin: 0 auto 24px;
  width:fit-content;
}

/* 機能見出し（明朝） */
.heading-feature {
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #463C35;
  margin-bottom: 8px;
}

/* 本文（ゴシック） */
.body-text {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 2.0;
  letter-spacing: 0.02em;
  color: #463C35;
}

.body-text p {
  margin-bottom: 12px;
  font-size:4vw;
}

.body-text p:last-child {
  margin-bottom: 0;
}

.body-text h3 {
    font-size: 4.5vw;
    width: fit-content;
    margin: 0 0 10px 2.5%;
}

.body-text--center {
  text-align: center;
  margin-bottom: 24px;
}

.ttl_border {
      border-left:#463C35 3px solid;
      padding-left:5%;
}

h3 .ttl_border {
      padding-left:2%;
}

/* 注釈 */
.note-text {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 1.0rem;
  font-weight: 400;
  line-height: 1.7;
  color: #8C7B6B;
  margin-top: 14px;
}

/* ================================
   SECTION COMMON
   ================================ */
.section {
  padding: 48px 24px;
}

.section--white {
  background-color: #fff;
}

.section__inner {
  max-width: 750px;
  margin: 0 auto;
}

/* ================================
   SECTION HEADER（ラベル＋罫線＋見出し）
   ================================ */
.section-header {
  text-align: center;
  margin-bottom: 32px;
}

.section-header .label-en {
  margin-bottom: 12px;
}

.section-header__line {
  display: block;
  width: 40px;
  height: 1px;
  background-color: #8C7B6B;
  margin: 0 auto 16px;
}

.section-header .heading-primary {
  margin-bottom: 0;
}

.section-header h2 {
   font-size:4.9vw;
}

/* ================================
   HERO
   ================================ */
.hero {
  position: relative;
  overflow: hidden;
}

.hero__bg {
  width: 100%;
}

.hero__bg img {
  width: 100%;
  display: block;
}

.hero__overlay {
  position: absolute;
  bottom: 0;
  width: 80%;
  height: 85%;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin:15% 10% 0;
}

.hero__catch {
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 5.3vw;
  font-weight: 600;
  line-height: 2.2;
  letter-spacing: 0.14em;
  color: #463C35;
  text-align: left;
  height:80%;
  width:100%;
}

.hero__logo {
   width:75%;
   height:20%;
   display:flex;
   align-items: start;
}

.hero__logo img {
  width: 85%;
}

.hero__age {
   width:25%;
   height:20%;
   display:flex;
   align-items: end;
}

.hero__age img {
  width: 100%;
  margin: 0 auto;
}

/* ================================
   MAIN TITLE
   ================================ */

.main-ttl img {
  width: 100%;
}

/* ================================
   INTRO VISUAL
   ================================ */
.intro__visual {
  margin-bottom: 32px;
}

.intro__visual img {
  width: 100%;
}

/* ================================
   FEATURE
   ================================ */
.feature {
  margin-bottom: 36px;
}

.feature:last-child {
  margin-bottom: 0;
}

.feature__icon {
  text-align: center;
  margin-bottom: 18px;
}

.feature__icon img {
  height: 85px;
  margin: 0 auto;
}

.feature__row {
  margin-bottom: 18px;
}

.feature__content {
  margin-bottom: 18px;
}

.feature__content:last-child {
  margin-bottom: 0;
}

.feature__image {
  margin-bottom: 18px;
}

.feature__image:last-child {
  margin-bottom: 0;
}

.feature__image img {
  width: 100%;
}

.feature__images {
  margin-bottom: 18px;
}

.feature__images .feature__image {
  margin-bottom: 18px;
}

.feature__images .feature__image:last-child {
  margin-bottom: 0;
}

/* ================================
   FEATURE PAIR（PCで横並び）
   ================================ */
.feature-pair {
  margin-bottom: 36px;
}

.feature-pair:last-child {
  margin-bottom: 0;
}

.feature-pair__item {
  margin-bottom: 28px;
}

.feature-pair__item:last-child {
  margin-bottom: 0;
}

.feature-pair__item .feature__image {
  margin-bottom: 14px;
}

/* ================================
   SCENES
   ================================ */
.scenes {
  margin:50px auto 36px;
}

.scenes__title {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 4.5vw;
  font-weight: 600;
  text-align: center;
  color: #463C35;
  margin-bottom: 25px;
}

.scenes__list {
  display: flex;
  flex-flow:column wrap;
  gap: 10px;
  width:80%;
  margin:0 auto;
}

.scenes__item {
  flex: 1;
  text-align: center;
}

.scenes__item img {
  width: 100%;
  margin-bottom: 6px;
}

.scenes__name {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 4vw;
  font-weight: 500;
  color: #463C35;
  margin:10px auto 25px;
}

/* ================================
   REVIEWS
   ================================ */
.review {
  margin-bottom: 30px;
  padding:5%;
  background:#FAF7F3;
}

.review:last-child {
  margin-bottom: 0;
}

.review__title {
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 4vw;
  font-weight: 500;
  line-height: 1.8;
  color: #463C35;
  margin-bottom: 8px;
}

.review__attr {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #8C7B6B;
  margin-left: 6px;
}

.review__text {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 2.0;
  color: #463C35;
  margin-bottom: 6px;
    border-top: 1px #8C7B6B solid;
    border-bottom: 1px #8C7B6B solid;
    padding: 10px 0 10px;
}

.review__source {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 1.0rem;
  font-weight: 400;
  color: #8C7B6B;
}

/* ================================
   COMPARISON
   ================================ */
.comparison {
  margin-top: 20px;
}

.comparison__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison__table {
  min-width: 640px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 1.1rem;
}

.comparison__table th,
.comparison__table td {
  padding: 10px 8px;
  border: 1px solid #C5B8AA;
  vertical-align: middle;
  text-align: center;
  line-height: 1.6;
  font-weight: 400;
  color: #463C35;
}

.comparison__table thead th {
  background-color: #E8E0D7;
  font-weight: 600;
}

.comparison__th--label {
  background-color: #E8E0D7;
}

.comparison__th--highlight {
  background-color: #6B5E53 !important;
  color: #fff !important;
}

.comparison__td--label {
  background-color: #F0EBE5;
  font-weight: 600;
  text-align: left;
}

.comparison__td--highlight {
  background-color: #FAF7F3;
  font-weight: 600;
  color: #6B5E53;
}

/* ================================
   SAFETY
   ================================ */
.safety__body {
  margin-bottom: 20px;
}

.safety__body .body-text {
  margin-bottom: 12px;
}

.safety__badge {
  margin: 20px auto 50px;
  width:50%;
  text-align:center;
}

.safety__badge img {
  width: 80%;
  margin:0 auto 10px;
}

.safety__badge-text {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #463C35;
}

.safety__image {
  margin-top: 20px;
}

.safety__image img {
  width: 100%;
}

/* ================================
   SPECIFICATIONS
   ================================ */
.specs__title {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 5vw;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 24px;
  color: #8C7B6B;
}

.specs__colors {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.specs__color {
  text-align: center;
  width: 44%;
  max-width: 220px;
}

.specs__color img {
  width: 100%;
  margin-bottom: 8px;
}

.specs__color-name {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #8C7B6B;
}

.specs__color--pc-only {
  display: none;
}

.specs__table {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  margin-bottom: 24px;
}

.specs__table th,
.specs__table td {
  padding: 10px 12px;
  border-bottom: 1px solid #D8D0C8;
  font-size: 3.5vw;
  line-height: 1.7;
  vertical-align: top;
  text-align: left;
  color: #463C35;
}

.specs__table th {
  width: 28%;
  font-weight: 600;
  white-space: nowrap;
  color: #8C7B6B;
}

.specs__table td {
  font-weight: 400;
}

.specs__price {
  text-align: center;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 1.3rem;
  color: #463C35;
}

.specs__price-value {
  font-size: 2.4rem;
  font-weight: 600;
  color: #463C35;
  letter-spacing: 0.02em;
}

.specs__price-tax {
  font-size: 1.3rem;
}

.spec-table_btn {
    display: flex;
    gap: 2vw;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-top:30px;
}

.btn-brown {
    display: inline-block;
    background-color:#463C35;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    line-height: 1;
    width: 270px;
    transition: 0.5s;
    padding: 20px 0px 16px;
}

/* ================================
   SHOP
   ================================ */


.shop {
  width:100%;
  margin: 0 auto;
  padding: 0 20px;
}

.shop .shop-box {
  display: flex;
  flex-flow:column nowrap;
  align-items: center;
  margin: 30px auto;
}

.shop-image {
   width:100%;
   margin-bottom:10px;
}

.shop1 img {
  width: 100%;
  height: auto;
  display: block;
}

.shop .text {
   display:flex;
   flex-flow:column wrap;
  width:100%;
  margin-top:10px;
}

.catch {
  font-size: 4vw;
  font-weight:800;
  margin-bottom:10px;
  text-align:center;
}

.shop .title {
  font-size: 6vw;
  font-family:"Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: normal;
  margin-bottom:20px;
  text-align:center;
}

.details {
  display:flex;
  flex-flow:row wrap;
  font-size:3.3vw;
  line-height:1.7;
}

.details dt {
  width:20%;
}

.details dd {
  width:80%;
  margin-bottom: 10px;
}

.link {
  font-size: 1.2rem;
  color:#463C35;
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}

.onlinestore {
    width: 100%;
    max-width: 900px;
    margin: 50px auto 200px;
}

.onlinestore h3 {
  font-style: normal;
  font-weight: 300;
  font-size: 5vw;
  text-align:center;
  margin-bottom:25px;
}

.onlinestore ul {
    display: flex;
    flex-flow: column nowrap;
    gap: 5%;
    width:90%;
    margin:0 auto;
}

.onlinestore ul li {
    width: 100%;
    margin-bottom:25px;
}

.onlinestore ul li a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #ddd;
    background: #463C35;
    padding: 15px 10px 10px;
    border-radius: 10px;
    font-size: 2.2rem;
    line-height: 2rem;
    transition: .2s;
}

.onlinestore ul li a span {
  font-size:1.4rem;
}

.onlinestore ul li a:hover {
  outline:3px solid #71655e;
  outline-offset:-3px;
  color:#71655e;
  background:#ddd;
}


/* ================================
   PC (min-width: 769px)
   ================================ */
@media (min-width: 769px) {

  .section {
    padding: 80px 40px;
  }

  .section__inner {
    max-width: 1080px;
  }

  /* Typography PC */
  .label-en {
    font-size: 1.4rem;
  }

  .heading-primary {
    font-size: 2.4rem;
  }

  .heading-secondary {
    font-size: 2.0rem;
  }

  .heading-feature {
    font-size: 1.8rem;
  }

  .body-text p {
    font-size: 1.4rem;
  }

  .body-text h3 {
    font-size:2rem;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header h2 {
    font-size:3rem;
  }

  /* HERO PC */
  .hero__overlay {
    align-items: flex-start;
    justify-content: flex-end;
    width: 60%;
    margin: 20% 0 0 6%;
    height: 80%;
  }

  .hero__catch {
    font-size: clamp(2.4rem, 3vw, 10rem);
    font-weight:500;
    text-align: left;
    height:25%;
  }

  .hero__logo {
   height:55%;
   width:100%;
   display:flex;
   align-items:center;
   padding-bottom:5%;
  }

  .hero__logo img {
    width:60%;
    margin: 0 auto;
    margin-left:0;
  }

  .hero__age {
   height:20%;
   width:100%;
   display:flex;
   align-items: end;
   justify-content: start;
  }

  .hero__age img {
    width: auto;
    height:100%;
    margin: 0;
  }

  /* INTRO */
  .intro {
   display:flex;
   flex-flow:row nowrap;
   align-items:center;
  }
  .intro__visual {
   width:45%;
   height:auto;
   margin:0;
   }

   .intro .body-text {
      width:55%;
      padding-left:5%;
   }

   .intro .body-text h2 {
      text-align:left;
      width:100%;
      font-size:2.8rem;
   }

  /* FEATURE PC: text-left = 左テキスト右画像 */

  .feature {
   width:80%;
   max-width:900px;
   margin:0 auto 100px;
  }

  /* FEATURE ROW PC: CloudSoft 2つのテキストを横並び */
  .feature__column {
    display: flex;
    flex-flow:column nowrap;
    align-items:center;
    gap: 50px;
  }

  .feature__content {
   display:flex;
   flex-flow: row nowrap;
   align-items: center;
  }

  .feature__content__reverse {
   display:flex;
   flex-flow:row-reverse nowrap;
   align-items:center;
  }

  .feature__content .feature__image {
   width:60%;
  }

  .feature__content .body-text {
   width:40%;
   padding-left:5%;
  }

  .feature__content__reverse .feature__image {
   width:60%;
  }
  .feature__content__reverse .body-text {
   width:40%;
   padding-right:5%;
  }

  .feature__content__reverse .body-text h3,.feature__content__reverse__fold .body-text h3 {
   text-align:right;
   border-right:#463C35 3px solid;
   border-left:none;
   padding-right:2%;
  }

  .feature__content__reverse .body-text h3,.feature__content__reverse__fold .body-text h3 {
    width:95%;
  }

  .feature__column>.feature__image,.feature__column>.body-text {
   width:70%;
   margin:0 auto;
  }

  .feature__content__reverse__fold {
   display:flex;
   flex-flow:row-reverse nowrap;
   align-items:center;
  }

  .feature__content__reverse__fold .feature__image {
   width:45%;
  }

  .feature__content__reverse__fold .body-text {
   width:55%;
   padding-right:5%;
  }
  .feature__content__reverse__fold .body-text img {
   margin:30px auto 0;
   width:90%;
  }

  /* FEATURE PAIR PC: 横並び */
  .feature-pair {
    display: flex;
    flex-flow:row nowrap;
    gap: 10%;
align-items:flex-end;
margin-top:50px;
  }

  .feature-pair__item {
    margin-bottom: 0;
    width:45%;
  }

  /* SCENES PC */

  .scenes h4 {
   font-size:2rem;
   margin-bottom:30px;
  }

  .scenes__list {
    flex-flow:row nowrap;
    gap: 20px;
  }

  .scenes__name {
    font-size: 1.2rem;
  }

  /* REVIEWS PC: 2カラム */
  .reviews {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .review {
    margin-bottom: 0;
  }

  .review__title {
    font-size: 1.8rem;
  }

  .review__text {
    font-size: 1.4rem;
  }

  /* COMPARISON PC */
  .comparison__table {
    font-size: 1.3rem;
  }

  .comparison__table th,
  .comparison__table td {
    padding: 14px 12px;
  }

  /* SAFETY PC: 左テキスト右画像 */
  .safety {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
  }

  .safety__body {
    margin-bottom: 0;
  }

  .safety__image {
    margin-top: 0;
  }

  .safety__badge {
   width:40%;
   margin:30px auto 0;
  }

  .safety__badge p {
   text-align:center;
   font-weight:500;
  }

  /* SPECS PC */

  .specs__title {
   font-size:1.8rem;
  }

  .specs__color--pc-only {
    display: block;
  }

  .specs__colors {
    gap: 28px;
  }

  .specs__color {
    max-width: 260px;
  }

  .specs__color-name {
    font-size: 1.3rem;
  }

  .specs__table th,
  .specs__table td {
    font-size: 1.4rem;
    padding: 12px 18px;
  }

  .specs__price-value {
    font-size: 3.4rem;
  }

  /* SHOP */

  .shop {
  width:90%;
  max-width: 900px;
}

  .shop .shop-box {
  flex-flow:row nowrap;
  align-items: center;
  margin: 60px auto;
}


.shop-image {
   width:50%;
}

.shop1 img {
  width: 100%;
  height: auto;
  display: block;
}

.shop .text {
   display:flex;
   flex-flow:column wrap;
  font-weight: 400;
  font-size: 1.4rem;
  margin-left: 5%;
  width:50%;
}

.catch {
  font-size: 1.4rem;
  font-weight:800;
  margin-bottom:10px;
  text-align:left;
}

.shop .title {
  font-size: 2.4rem;
  font-family:"Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: normal;
  margin-bottom:20px;
  text-align:left;
}

.details {
  display:flex;
  flex-flow:row wrap;
  font-size:1.4rem;
  line-height:1.7;
}

.details dt {
  width:20%;
}

.details dd {
  width:80%;
  margin-bottom: 10px;
}

.link {
  font-size: 1.2rem;
  color:#463C35;
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}

.onlinestore {
    width: 100%;
    max-width: 900px;
    margin: 50px auto 200px;
}

.onlinestore h3 {
  font-style: normal;
  font-weight: 300;
  font-size: 2.4rem;
  text-align:center;
  margin-bottom:25px;
}

.onlinestore ul {
    display: flex;
    flex-flow: row nowrap;
    gap: 2%;
}

.onlinestore ul li {
    width: 32%;
}

.onlinestore ul li a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #ddd;
    background: #463C35;
    padding: 15px 10px 10px;
    border-radius: 10px;
    font-size: 2.2rem;
    line-height: 2rem;
    transition: .2s;
}

.onlinestore ul li a span {
  font-size:1.4rem;
}

.onlinestore ul li a:hover {
  outline:3px solid #71655e;
  outline-offset:-3px;
  color:#71655e;
  background:#ddd;
}

}
