@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  color: #4a4a4a;
  line-height: 1.8;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, p, ul, ol, li, figure, dl, dd {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

.l-container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.l-header {
  position: relative;
  z-index: 1000;
  width: 100%;
  background: #ffffff;
}
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin-inline: auto;
  padding: 48px 20px;
  gap: 48px;
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    padding: 24px 24px;
  }
}
.l-header__logo {
  display: inline-block;
  line-height: 0;
  flex-shrink: 0;
}
.l-header__logo img {
  width: 280px;
}
@media screen and (max-width: 767px) {
  .l-header__logo img {
    width: 240px;
  }
}

.l-nav__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .l-nav__list {
    gap: 4px 16px;
  }
}
.l-nav__link {
  font-size: 1.2rem;
  color: #4a4a4a;
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .l-nav__link {
    font-size: 1.1rem;
  }
}
.l-nav__link:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .l-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: 78%;
    max-width: 320px;
    height: 100dvh;
    padding: 90px 32px 40px;
    background: #ffffff;
    box-shadow: -6px 0 24px rgba(0, 0, 0, 0.08);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 1100;
  }
  .l-nav.is-open {
    transform: translateX(0);
  }
  .l-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .l-nav__link {
    font-size: 1.05rem;
  }
}

.l-hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-hamburger {
    display: block;
    position: relative;
    z-index: 1200;
    width: 28px;
    height: 22px;
  }
}
.l-hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #4a4a4a;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.l-hamburger span:nth-child(1) {
  top: 0;
}
.l-hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.l-hamburger span:nth-child(3) {
  bottom: 0;
}
.l-hamburger.is-open span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.l-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.l-hamburger.is-open span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.l-nav-overlay {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 1099;
  }
  .l-nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
  }
}

.l-footer {
  background: #ffffff;
  padding: 48px 20px;
  text-align: center;
}
.l-footer__copy {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: #6d6d6d;
}
@media screen and (max-width: 767px) {
  .l-footer__copy {
    font-size: 0.7rem;
  }
}

.c-heading {
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.12em;
  color: #4a4a4a;
}
@media screen and (max-width: 767px) {
  .c-heading {
    font-size: 1.35rem;
    text-align: center;
  }
}

.c-bar-title {
  padding: 8px 16px;
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-align: center;
  color: #ffffff;
  background: #888481;
}
@media screen and (max-width: 767px) {
  .c-bar-title {
    padding: 8px 12px;
    font-size: 1rem;
  }
}

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  padding: 18px 32px;
  font-family: inherit;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: #ffffff;
  background: #3a3a3a;
  transition: opacity 0.25s ease;
}
.c-btn:hover {
  opacity: 0.75;
}
@media screen and (max-width: 767px) {
  .c-btn {
    width: 100%;
    min-width: 0;
    padding: 16px 24px;
  }
}
.c-btn--back {
  color: #4a4a4a;
  background: #ffffff;
  border: 1px solid #cccccc;
}

.c-select, .c-textarea, .c-input {
  width: 100%;
  padding: 11px 14px;
  font-family: inherit;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4a4a4a;
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 2px;
}
.c-select:focus-visible, .c-textarea:focus-visible, .c-input:focus-visible {
  outline: 2px solid #b0a06a;
  outline-offset: -1px;
}

.c-textarea {
  min-height: 180px;
  resize: vertical;
}
@media screen and (max-width: 767px) {
  .c-textarea {
    min-height: 140px;
  }
}

.c-select {
  padding-right: 40px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2 5l6 6 6-6' fill='none' stroke='%234a4a4a' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
}

.c-required {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  padding: 3px 4px;
  font-size: 0.75rem;
  line-height: 1.4;
  color: #ffffff;
  background: #e13b2b;
  border-radius: 3px;
}

.c-checkbox {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  line-height: 1.7;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-checkbox {
    font-size: 0.85rem;
  }
}
.c-checkbox input {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin: 3px 0 0;
  accent-color: #1a5fd0;
}
.c-checkbox a {
  color: #1a5fd0;
  text-decoration: underline;
}

.c-pagehead {
  margin: 60px auto 0;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .c-pagehead {
    margin-top: 115px;
  }
}
.c-pagehead__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 290px;
  width: 1360px;
  margin: auto 20px;
  padding: 48px 460px 48px 80px;
  background: #f8f8f0;
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .c-pagehead__inner {
    padding-right: 360px;
    margin: auto auto;
  }
}
@media screen and (max-width: 767px) {
  .c-pagehead__inner {
    min-height: 0;
    align-items: center;
    text-align: center;
    padding: 130px 24px 40px;
    margin: auto auto;
  }
}
.c-pagehead__title {
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #b0a06a;
}
@media screen and (max-width: 767px) {
  .c-pagehead__title {
    font-size: 1.5rem;
  }
}
.c-pagehead__en {
  margin-top: 6px;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: #b0a06a;
}
@media screen and (max-width: 767px) {
  .c-pagehead__en {
    font-size: 0.85rem;
  }
}
.c-pagehead__lead {
  margin-top: 32px;
  font-size: 1.4rem;
  line-height: 1.7;
  color: #b0a06a;
}
@media screen and (max-width: 767px) {
  .c-pagehead__lead {
    margin-top: 20px;
    font-size: 0.95rem;
  }
}
.c-pagehead__img {
  position: absolute;
  top: 50%;
  right: 80px;
  transform: translateY(-50%);
  width: 400px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .c-pagehead__img {
    width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .c-pagehead__img {
    top: 0;
    right: auto;
    left: 50%;
    width: 230px;
    transform: translate(-50%, -50%);
  }
}
.c-pagehead__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-card {
  display: flex;
  align-items: stretch;
  background: #f8f8f0;
  overflow: hidden;
}
.c-card:hover .c-card__img img {
  transform: scale(1.05);
}
.c-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1 1 50%;
  padding: 40px 32px;
}
@media screen and (max-width: 767px) {
  .c-card__body {
    padding: 22px 20px;
  }
}
.c-card__title {
  font-size: 1.4rem;
  font-weight: 400;
  color: #4a4a4a;
}
@media screen and (max-width: 767px) {
  .c-card__title {
    font-size: 1rem;
  }
}
.c-card__en {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: #b0a06a;
}
@media screen and (max-width: 767px) {
  .c-card__en {
    font-size: 0.72rem;
  }
}
.c-card__img {
  flex: 1 1 40%;
  overflow: hidden;
}
.c-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

.c-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 4px;
  min-width: 98px;
  font-size: 0.78rem;
  line-height: 1.4;
  color: #ffffff;
  background: #888481;
  border-radius: 999px;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-tag {
    min-width: 0;
    width: 100%;
    font-size: 0.72rem;
  }
}

.p-cards {
  padding: 0px 0;
}
.p-cards__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media screen and (max-width: 767px) {
  .p-cards__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-inline: 20px;
  }
}
.p-cards__item {
  min-height: 160px;
}
@media screen and (max-width: 767px) {
  .p-cards__item {
    min-height: 110px;
  }
}

/* -----------------------------------------
   HERO
------------------------------------------ */
.p-hero {
  background: #ffffff;
}
.p-hero__inner {
  display: flex;
  align-items: stretch;
  max-width: 1400px;
  margin-inline: auto;
  padding: 0px 20px 0px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-hero__inner {
    flex-direction: column;
    padding: 0 0 40px;
  }
}
.p-hero__image {
  flex: 1 1 50%;
}
.p-hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-hero__body {
  flex: 1 1 53%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 64px;
  background: #f8f8f0;
}
@media screen and (max-width: 767px) {
  .p-hero__body {
    padding: 40px 40px 40px;
  }
}
.p-hero__copy {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.6;
  color: #4a4a4a;
}
@media screen and (max-width: 767px) {
  .p-hero__copy {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.p-hero__copy .sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-hero__copy .sp {
    display: block;
  }
}
.p-hero__en {
  margin-top: 28px;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  letter-spacing: 0.03em;
  color: #b0a06a;
}
@media screen and (max-width: 767px) {
  .p-hero__en {
    margin-top: 18px;
    font-size: 0.8rem;
  }
}
.p-hero__leaf {
  position: absolute;
  right: 0px;
  bottom: -40px;
  width: 210px;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-hero__leaf {
    right: 8px;
    bottom: -54px;
    width: 130px;
  }
}

/* -----------------------------------------
   FLOW（動画背景セクション）
------------------------------------------ */
.p-flow {
  position: relative;
  overflow: hidden;
  padding: 40px 24px 40px;
  margin: 60px auto 60px;
  display: flex;
  justify-content: center;
  /* --- 上段：図解画像（PC / SP 差し替え）--- */
  /* --- 下段：ご提案（処方 × 容器）--- */
}
@media screen and (max-width: 767px) {
  .p-flow {
    margin: 24px auto 24px;
  }
}
.p-flow__inner {
  width: 100%;
  max-width: 1232px;
  padding: 60px;
  position: relative;
  background: #F5F3F1;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .p-flow__inner {
    padding: 24px;
  }
}
.p-flow__title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: #4a4a4a;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-flow__title {
    letter-spacing: 0em;
    font-size: 1.4rem;
    margin-bottom: 0px;
  }
}
.p-flow__map {
  display: block;
  max-width: 1000px;
  margin-inline: auto;
}
.p-flow__map img {
  display: block;
  width: 100%;
  height: auto;
}
.p-flow__proposal {
  max-width: 960px;
  margin: -40px auto 0;
  z-index: 1;
  position: relative;
}
.p-flow__proposal-head {
  background: #888481;
  color: #ffffff;
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  padding: 10px 16px;
  margin: auto auto 16px;
}
@media screen and (max-width: 767px) {
  .p-flow__proposal-head {
    font-size: 1rem;
    padding: 12px 14px;
  }
}
.p-flow__proposal-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .p-flow__proposal-inner {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
}
.p-flow__group {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-flow__group {
    width: 100%;
  }
}
.p-flow__group-head {
  text-align: center;
  font-size: 1.1rem;
  color: #4a4a4a;
  padding: 8px;
  border-radius: 16px 16px 0 0;
  position: relative;
}
.p-flow__group-head--green {
  background: #BED9C4;
}
.p-flow__group-head--blue {
  background: #A9D7DD;
}
.p-flow__group-head::after {
  border: solid 2px #888481;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translate(-50%);
  height: 40px;
  z-index: 999;
  content: "";
}
@media screen and (max-width: 767px) {
  .p-flow__group-head::after {
    display: none;
  }
}
.p-flow__tags {
  flex: 1 1 auto;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 8px;
  padding: 16px 14px 18px;
  background-color: #fff;
  border-radius: 0 0 16px 16px;
}
@media screen and (max-width: 767px) {
  .p-flow__tags {
    gap: 6px;
    padding: 14px 12px;
  }
}
.p-flow__tags li {
  flex: 0 0 auto;
}
@media screen and (max-width: 767px) {
  .p-flow__tags li {
    flex: 0 0 calc((100% - 12px) / 3);
  }
}
.p-flow__times {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  font-size: 2.2rem;
  font-weight: 300;
  color: #3a3a3a;
}
@media screen and (max-width: 767px) {
  .p-flow__times {
    padding: 4px 0;
    font-size: 1.8rem;
  }
}

.p-about {
  padding: 80px 0 100px;
  /* --- 社長メッセージ --- */
  /* --- 会社概要 --- */
}
@media screen and (max-width: 767px) {
  .p-about {
    padding: 48px 0 60px;
  }
}
.p-about__inner {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media screen and (max-width: 767px) {
  .p-about__inner {
    padding-inline: 20px;
  }
}
.p-about__heading {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .p-about__heading {
    margin-bottom: 24px;
  }
}
.p-about__message::after {
  content: "";
  display: block;
  clear: both;
}
.p-about__photo {
  float: left;
  width: 300px;
  margin: 0 60px 40px 0;
  aspect-ratio: 3/4;
  background: #e8e8e8;
}
@media screen and (max-width: 767px) {
  .p-about__photo {
    float: none;
    width: 75%;
    margin: 0 auto 24px;
  }
}
.p-about__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-about__text {
  font-size: 1.1rem;
  line-height: 2.1;
}
@media screen and (max-width: 767px) {
  .p-about__text {
    font-size: 1rem;
    line-height: 2;
  }
}
.p-about__sign {
  clear: both;
  margin-top: 28px;
  text-align: right;
  font-size: 1.1rem;
}
@media screen and (max-width: 767px) {
  .p-about__sign {
    margin-top: 28px;
    font-size: 1rem;
  }
}
.p-about__sign span {
  margin-left: 1.5em;
}
.p-about__profile {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .p-about__profile {
    margin-top: 60px;
  }
}
.p-about__dl {
  max-width: 820px;
  font-size: 1rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-about__dl {
    max-width: none;
    font-size: 0.9rem;
  }
}
.p-about__row {
  display: flex;
  align-items: stretch;
}
.p-about__dt {
  flex: 0 0 150px;
  padding: 12px 16px;
  font-weight: 400;
  background: #f8f8f0;
}
@media screen and (max-width: 767px) {
  .p-about__dt {
    flex-basis: 110px;
    padding: 10px 12px;
  }
}
.p-about__dd {
  flex: 1 1 auto;
  padding: 12px 24px;
}
@media screen and (max-width: 767px) {
  .p-about__dd {
    padding: 10px 12px;
    word-break: break-word;
  }
}

.p-create {
  padding: 80px 0 100px;
}
@media screen and (max-width: 767px) {
  .p-create {
    padding: 48px 0 60px;
  }
}
.p-create__inner {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media screen and (max-width: 767px) {
  .p-create__inner {
    padding-inline: 20px;
  }
}
.p-create__heading {
  margin-bottom: 28px;
}
@media screen and (max-width: 767px) {
  .p-create__heading {
    margin-bottom: 20px;
  }
}
.p-create__lead {
  font-size: 1.1rem;
  line-height: 2.1;
}
@media screen and (max-width: 767px) {
  .p-create__lead {
    font-size: 0.88rem;
    line-height: 2;
  }
}
.p-create__flow {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .p-create__flow {
    margin-top: 40px;
  }
}

/* -----------------------------------------
   商品づくりの流れ（フローチャート）
------------------------------------------ */
.p-flowchart {
  /* --- 各ステップのカード --- */
}
.p-flowchart__body {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .p-flowchart__body {
    margin-top: 16px;
  }
}
.p-flowchart__group {
  display: flex;
  align-items: stretch;
  gap: 28px;
}
@media screen and (max-width: 767px) {
  .p-flowchart__group {
    flex-direction: column;
    gap: 10px;
  }
}
.p-flowchart__stage {
  flex: 0 0 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  font-size: 1.2rem;
  letter-spacing: 0.35em;
  color: #ffffff;
  background: #4a7d92;
}
@media screen and (max-width: 767px) {
  .p-flowchart__stage {
    flex: none;
    width: 100%;
    writing-mode: horizontal-tb;
    padding: 6px 12px;
    font-size: 0.95rem;
    letter-spacing: 0.15em;
  }
}
.p-flowchart__steps {
  flex: 1 1 auto;
  min-width: 0;
}
.p-flowchart__arrow {
  padding: 6px 0;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  color: #888481;
}
.p-flowchart__arrow--between {
  padding-left: 74px;
}
@media screen and (max-width: 767px) {
  .p-flowchart__arrow--between {
    padding-left: 0;
  }
}
.p-flowchart__step {
  display: flex;
  align-items: stretch;
  min-height: 120px;
  background: #f8f8f0;
}
@media screen and (max-width: 767px) {
  .p-flowchart__step {
    min-height: 0;
    flex-direction: column;
  }
}
.p-flowchart__step-head {
  display: flex;
  gap: 20px;
  width: calc(100% - 200px);
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .p-flowchart__step-head {
    width: 100%;
  }
}
.p-flowchart__step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-flowchart__step-icon {
    width: 72px;
  }
}
.p-flowchart__step-icon img {
  width: 100%;
  background: #fff;
  border-radius: 999px;
  padding: 12px;
}
.p-flowchart__step-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.p-flowchart__step-title {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-flowchart__step-title {
    font-size: 0.95rem;
  }
}
.p-flowchart__step-desc {
  margin-top: 4px;
  font-size: 1rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-flowchart__step-desc {
    font-size: 0.9rem;
  }
}
.p-flowchart__step-img {
  width: 200px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-flowchart__step-img {
    width: 100%;
  }
}
.p-flowchart__step-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-concept {
  padding: 70px 0 100px;
  /* --- Craft Re-Cosme のロゴブロック --- */
  /* --- Refresh / Recycle / Recreate --- */
  /* --- 図解セクション（アップサイクル / 環境対応）--- */
}
@media screen and (max-width: 767px) {
  .p-concept {
    padding: 44px 0 60px;
  }
}
.p-concept__inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media screen and (max-width: 767px) {
  .p-concept__inner {
    padding-inline: 20px;
  }
}
.p-concept__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .p-concept__brand {
    flex-direction: column;
    gap: 0;
  }
}
.p-concept__brand-mark {
  flex: 0 0 auto;
  width: 110px;
}
@media screen and (max-width: 767px) {
  .p-concept__brand-mark {
    margin: auto auto 12px;
  }
}
.p-concept__brand-body {
  text-align: center;
}
.p-concept__brand-note {
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .p-concept__brand-note {
    font-size: 0.9rem;
    line-height: 1.7;
  }
}
.p-concept__brand-title {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #4a4a4a;
}
@media screen and (max-width: 767px) {
  .p-concept__brand-title {
    font-size: 2rem;
  }
}
.p-concept__brand-lead {
  font-size: 1rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-concept__brand-lead {
    font-size: 0.9rem;
  }
}
.p-concept__brand-lead br {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-concept__brand-lead br {
    display: block;
  }
}
.p-concept__re {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
@media screen and (max-width: 767px) {
  .p-concept__re {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }
}
.p-concept__re-item {
  padding: 48px;
  background: #f8f8f0;
}
@media screen and (max-width: 767px) {
  .p-concept__re-item {
    padding: 28px 24px 32px;
  }
}
.p-concept__re-en {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  color: #5aa15c;
}
@media screen and (max-width: 767px) {
  .p-concept__re-en {
    font-size: 1.75rem;
  }
}
.p-concept__re-jp {
  margin-top: 2px;
  font-size: 1.3rem;
  text-align: center;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-concept__re-jp {
    font-size: 1rem;
  }
}
.p-concept__re-text {
  margin-top: 24px;
  font-size: 1.1rem;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .p-concept__re-text {
    margin-top: 16px;
    font-size: 0.88rem;
  }
}
.p-concept__figure {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-concept__figure {
    margin-top: 48px;
  }
}
.p-concept__figure-img {
  margin: 40px auto 0;
  max-width: 1000px;
}
@media screen and (max-width: 767px) {
  .p-concept__figure-img {
    margin-top: 20px;
  }
}
.p-concept__figure-img img {
  display: block;
  width: 100%;
  height: auto;
}

.p-contact {
  padding: 80px 0 100px;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding: 40px 0 60px;
  }
}
.p-contact__form {
  max-width: 1040px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media screen and (max-width: 767px) {
  .p-contact__form {
    padding-inline: 20px;
  }
}
.p-contact__row {
  display: flex;
  align-items: stretch;
  gap: 48px;
}
.p-contact__row + .p-contact__row {
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .p-contact__row {
    flex-direction: column;
    gap: 0;
  }
  .p-contact__row + .p-contact__row {
    margin-top: 16px;
  }
}
.p-contact__label {
  flex: 0 0 376px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  background: #f8f8f0;
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .p-contact__label {
    flex-basis: 300px;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__label {
    flex: none;
    width: 100%;
    align-items: center;
    padding: 10px 14px;
  }
}
.p-contact__label > label {
  flex: 1 1 auto;
  display: block;
  cursor: pointer;
}
.p-contact__label > .p-contact__label-txt {
  flex: 1 1 auto;
  display: block;
}
.p-contact__label-jp {
  display: block;
  font-size: 0.95rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-contact__label-jp {
    font-size: 0.9rem;
  }
}
.p-contact__label-en {
  display: block;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #b0a06a;
}
@media screen and (max-width: 767px) {
  .p-contact__label-en {
    font-size: 0.68rem;
  }
}
.p-contact__field {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
@media screen and (max-width: 767px) {
  .p-contact__field {
    display: block;
    margin-top: 8px;
  }
}
.p-contact__row--top .p-contact__field {
  justify-content: flex-start;
  padding-top: 14px;
}
@media screen and (max-width: 767px) {
  .p-contact__row--top .p-contact__field {
    padding-top: 0;
  }
}
.p-contact__row--agree .p-contact__label {
  align-items: center;
}
.p-contact__row--agree .p-contact__field {
  align-items: flex-start;
}
.p-contact__error {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #e13b2b;
}
.p-contact__error[hidden] {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-contact__error {
    margin-top: 6px;
    font-size: 0.8rem;
  }
}
.p-contact__submit {
  margin-top: 56px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact__submit {
    margin-top: 32px;
  }
}
.p-contact__inner {
  max-width: 1040px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media screen and (max-width: 767px) {
  .p-contact__inner {
    padding-inline: 20px;
  }
}
.p-contact__lead {
  margin-bottom: 40px;
  font-size: 0.95rem;
  line-height: 1.9;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact__lead {
    margin-bottom: 24px;
    font-size: 0.9rem;
    text-align: left;
  }
}
.p-contact__value {
  width: 100%;
  padding: 11px 14px;
  font-size: 0.95rem;
  line-height: 1.8;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 767px) {
  .p-contact__value {
    padding: 8px 0;
    font-size: 0.9rem;
  }
}
.p-contact__actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 56px;
}
@media screen and (max-width: 767px) {
  .p-contact__actions {
    flex-direction: column-reverse;
    gap: 12px;
    margin-top: 32px;
  }
}
.p-contact__thanks {
  padding: 40px 0 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact__thanks {
    padding: 0;
  }
}
.p-contact__thanks-title {
  font-size: 1.5rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-contact__thanks-title {
    font-size: 1.2rem;
  }
}
.p-contact__thanks-en {
  margin-top: 8px;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: #b0a06a;
}
.p-contact__thanks-text {
  margin-top: 32px;
  font-size: 0.95rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-contact__thanks-text {
    margin-top: 24px;
    font-size: 0.9rem;
    text-align: left;
  }
}
.p-contact__thanks-btn {
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .p-contact__thanks-btn {
    margin-top: 32px;
  }
}

/* add202608 商品コンセプト--------------------------------- */
.p-concept__list {
	margin-top: 80px;
}
.p-concept__list .p-concept__heading {
	text-align: center;
}
.p-concept__list .button-group {
	display: flex;
	flex-wrap: wrap;
	margin: 40px -10px auto;
}
.p-concept__list .button-group li {
	width: calc(25% - 20px);
	margin: 10px;
}
.p-concept__list .button-group .button {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 18px 32px;
	font-family: inherit;
	font-size: 1rem;
	letter-spacing: 0.08em;
	background: #f8f8f0;
	white-space: nowrap;
	-webkit-transition: all .3s;
  transition: all .3s;
}
.p-concept__list .button-group .button:hover {
	background: #3a3a3a;
	color: #fff;
}

@media screen and (max-width: 1080px) {
	.p-concept__list .button-group li {
		width: calc(33.333% - 20px);
	}
}
@media screen and (max-width: 767px) {
	.p-concept__list {
		margin-top: 48px;
	}
	.p-concept__list .button-group li {
		width: calc(50% - 20px);
	}
}
@media screen and (max-width: 500px) {
	.p-concept__list .button-group {
		margin: 20px 0px auto;
	}
	.p-concept__list .button-group li {
		width: 100%;
		margin: 5px 0;
	}
}

/* add202608 商品ページ--------------------------------- */
.p-item {
	padding: 0px 0 100px;
	border-top: 1px solid #ccc;
}
.p-item__inner {
	max-width: 1280px;
	margin-inline: auto;
	padding-inline: 24px;
}
/* 戻るボタン */
.p-item__inner .back {
	margin-top: 1rem;
}
.p-item__inner .back a {
	background: url("../img/icon-back.svg") 0 center no-repeat;
	background-size: 12px auto;
	padding-left: 20px;
	font-size: 0.85rem;
}
/* シリーズ名 */
.p-item__series {
	margin-top: 40px;
	margin-bottom: 60px;
}
.p-item__series-name {
	font-size: 2.2rem;
	font-weight: 300;
	line-height: 1.4;
	letter-spacing: 0.05em;
	color: #b0a06a;
}
.p-item__series-en {
	margin-top: 6px;
	font-family: "Poppins", "Noto Sans JP", sans-serif;
	font-size: 1rem;
	letter-spacing: 0.12em;
	color: #b0a06a;
}
.p-item__series-lead {
	margin-top: 20px;
	font-size: 1.4rem;
	line-height: 1.7;
	color: #b0a06a;
}
/* 商品リスト */
.p-item-group {
	display: flex;
	flex-wrap: wrap;
	margin:  0 -15px 4rem;
}
.p-item-group .p-item-block {
	margin: 15px 15px;
	width: calc(25% - 30px);
}
.p-item-group .p-item-block.large {
	width: calc(50% - 30px);
}
.p-item-group .p-item-block .inner {
	margin-top: 10px;
}
.p-item__figure-img {
	text-align:  center;
	background: #f8f8f0;
}
.p-item-name {
	margin-bottom: 10px;
	font-size: 110%;
	font-weight: bold;
	line-height: 1.5;
}
.p-item-group .p-item-block dl {
	display: flex;
	flex-wrap: wrap;
}
.p-item-group .p-item-block dl dt {
	width: 90px;
	margin:  3px 10px 3px 0;
	font-size: 0.8rem;
	line-height: 28px;
	text-align:  center;
	border: 1px solid #ccc;
}
.p-item-group .p-item-block dl dd {
	width: calc(100% - 100px);
	margin:  3px 0;
	font-size: 0.95rem;
}
@media screen and (max-width: 1080px) {
	.p-item-group .p-item-block {
		width: calc(33.333% - 30px);
	}
	.p-item-name {
		font-size: 110%;
	}
}
@media screen and (max-width: 767px) {
	/* シリーズ名 */
	.p-item__series {
		margin-top: 30px;
		margin-bottom: 30px;
	}
	.p-item__series-name {
		font-size: 1.5rem;
	}
	.p-item__series-en {
		font-size: 0.85rem;
	}
	.p-item__series-lead {
		font-size: 0.95rem;
	}
	/* 商品リスト */
	.p-item-group .p-item-block {
		width: calc(50% - 30px);
	}
	.p-item-group .p-item-block.large {
		width: calc(100% - 30px);
	}
	.p-item-name {
		font-size: 100%;
	}
	.carousel-slide img,
	.p-item__figure-img img {
		max-width: 150px;
	}
}
@media screen and (max-width: 500px) {
	.p-item-group {
		margin:  0;
	}
	.p-item-group .p-item-block.large,
	.p-item-group .p-item-block {
		margin: 0;
		width: 100%;
	}
	.p-item-group .p-item-block.large + .p-item-block.large,
	.p-item-group .p-item-block + .p-item-block {
		margin-top: 40px;
	}
}

/* add202608 商品コンセプト--------------------------------- */
.accordion-content {
	padding: 0;
	border-top: 1px solid #b0a06a;
}
.accordion-content > .inner {
	padding: 1.5rem 1.5rem 0;
	background: #fff;
}
.accordion-content .inner .copy {
	color: #b0a06a;
	font-size: 1.1rem;
	line-height: 1.7;
	margin-bottom: 0.5rem;
}
.accordion-content .inner .p-item-group {
	margin-bottom: 0;
}
.accordion-wrap {
	margin-top: 40px;
}
.accordion-item + .accordion-item {
	margin-top: 15px;
}
.accordion-item .p-item__figure-img,
.accordion-item .carousel-container{
	background: #fff;
	border: 1px solid #ccc;
}
@media screen and (max-width: 1080px) {
	.accordion-content > .inner {
		padding: 1rem 0 0;
	}
}
@media screen and (max-width: 500px) {
	.accordion-content .inner .copy {
		font-size: 1rem;
		margin-bottom: 1rem;
	}
}

#panel-7 .carousel-container {
	background-image: linear-gradient(-45deg, #888481, #928e8b 99%);
}





/* ==========================================
       軽量アコーディオン
    ========================================== */
.accordion-container {
	max-width: 600px;
	margin: 0 auto;
	font-family: sans-serif;
}

/* ヘッダーボタン */
.accordion-header {
	width: 100%;
	background: none;
	border: none;
	padding: 16px 1.5rem;
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background-color 0.2s ease;
	font-size: 1.1rem;
	background: #f8f8f0;
	color: #4a4a4a;
}

.accordion-header:hover {
	background-color: #f8f8f0;
}

/* 開閉用の矢印マーク */
.accordion-icon {
	position: relative;
	display: inline-block;
	transition: transform 0.3s ease;
	width: 16px;
	height: 16px;
}
.accordion-icon::before{
	position: absolute;
	content: '';
	top: 50%;
	right: 0px;
	width: 16px;
	height: 2px;
	background-color:#4a4a4a;
	transform: rotate(90deg);
	transition: all .3s ease-in-out;
}
.accordion-icon::after{
	position: absolute;
	content: '';
	top: 50%;
	right: 0px;
	width: 16px;
	height: 2px;
	background-color:#4a4a4a;
	transition: all .3s ease-in-out;
}

/* 開いた時の矢印回転 */
.accordion-header[aria-expanded="true"] .accordion-icon::before {
	transform: rotate(180deg);
}
.accordion-header[aria-expanded="true"] .accordion-icon::after {
	opacity:0;
}

/* パネル（コンテンツ部分）アニメーション */
.accordion-panel {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.3s ease, padding 0.3s ease;
	visibility: hidden;
}

/* 開いた時のアニメーション設定 */
.accordion-header[aria-expanded="true"] + .accordion-panel {
	grid-template-rows: 1fr;
	visibility: visible;
}

.accordion-content {
	overflow: hidden;
}

/* パネルが開いている時だけ下に余白を作る */
.accordion-header[aria-expanded="true"] + .accordion-panel .accordion-content {
	padding-bottom: 16px;
}

@media screen and (max-width: 767px) {
	.accordion-header {
		padding: 16px 1rem;
		font-size: 1rem;
	}
}

/* ==========================================
       カルーセル
    ========================================== */
.carousel-container {
	position: relative;
	overflow: hidden;
	background: #f8f8f0;
}

/* スライド領域（横スクロール） */
.carousel-track {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	/* スクロールバー非表示 */
	scrollbar-width: none;
	&::-webkit-scrollbar { display: none; }
}

/* 各スライド */
.carousel-slide {
	flex: 0 0 100%;
	scroll-snap-align: start;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	font-weight: bold;
	color: #fff;
}

/* 矢印ボタン */
.carousel-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
	z-index: 10;
	font-size: 10px;
	background: rgba(255, 255, 255, 0.8);
	color: #999;
	border: 1px solid #999;
}
.carousel-arrow:hover {
	background: rgba(0, 0, 0, 0.8);
	color: #fff;
}
.carousel-arrow.prev { left: 10px; }
.carousel-arrow.next { right: 10px; }

/* ページネーション（ドット） */
.carousel-pagination {
	position: absolute;
	bottom: 12px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 10;
}
.carousel-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	border: none;
	padding: 0;
	cursor: pointer;
	transition: background 0.2s, transform 0.2s;
}
.carousel-dot.active {
	background: rgba(0, 0, 0, 0.5);
	transform: scale(1.2);
}

/*# sourceMappingURL=style.css.map */