@charset "UTF-8";
/* reset */
*,
*::before,
*::after {
  box-sizing: border-box; }

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd,
figure,
blockquote {
  margin: 0;
  padding: 0; }

ul,
ol {
  list-style: none; }

button,
input,
textarea {
  font: inherit; }

button {
  background: none;
  border: none;
  cursor: pointer; }

/* base */
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #070707;
  font-size: 20px;
  line-height: 1.6;
  background: #fff; }
  @media (max-width: 768px) {
    html,
    body {
      font-size: 14px; } }

body.is-fixed {
  overflow: hidden; }

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

h1, h2, h3, h4, h5, h6, th, td, li {
  color: #000000;
  line-height: 1.4em; }

@media (max-width: 768px) {
  img,
  picture {
    max-width: 100%; }
  .l-container {
    width: 100%;
    max-width: 100%; } }

a {
  color: inherit;
  text-decoration: none; }

.l-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px; }
  .l-container--thin {
    max-width: 1140px; }
  .l-container--wide {
    max-width: 1440px; }

.l-main {
  overflow-x: hidden; }

.l-header {
  border-bottom: 1px solid #d9d9d9;
  background: #beb9b9;
  position: relative;
  z-index: 100; }
  .l-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 120px; }
    @media (max-width: 768px) {
      .l-header__inner {
        height: 93px;
        padding-left: 16px;
        padding-right: 16px; } }

/* =========================
logo
========================= */
.c-logo {
  flex: 0 0 auto; }
  .c-logo a {
    display: inline-block; }
  .c-logo img {
    display: block;
    width: 120px;
    height: auto;
    margin-top: 15px; }
    @media (max-width: 768px) {
      .c-logo img {
        width: 100px; } }

/* =========================
global nav
========================= */
.l-global-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 40px; }
  .l-global-nav__list {
    display: flex;
    align-items: center;
    gap: 40px; }
  .l-global-nav__item a {
    display: inline-block;
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    line-height: 1;
    font-weight: 500;
    transition: opacity 0.2s ease;
    color: white; }
  .l-global-nav__item a:hover {
    opacity: 0.7; }

/* =========================
sns
========================= */
.c-sns__list {
  display: flex;
  align-items: center;
  gap: 20px; }

.c-sns__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 45px;
  transition: opacity 0.2s ease; }

.c-sns__item a:hover {
  opacity: 0.7; }

.c-sns__item img {
  width: 26px;
  height: auto;
  display: block; }

/* =========================
menu button
========================= */
.c-menu-button {
  display: none;
  width: 52px;
  height: 40px;
  padding: 0;
  position: relative;
  flex: 0 0 auto;
  z-index: 120; }
  .c-menu-button span {
    display: block;
    width: 100%;
    height: 7px;
    background: #fff;
    border-radius: 999px;
    position: absolute;
    left: 0;
    transition: 0.3s ease; }
  .c-menu-button span:nth-child(1) {
    top: 0; }
  .c-menu-button span:nth-child(2) {
    top: 16px; }
  .c-menu-button span:nth-child(3) {
    top: 32px; }
  .c-menu-button.is-open span:nth-child(1) {
    top: 16px;
    transform: rotate(45deg); }
  .c-menu-button.is-open span:nth-child(2) {
    opacity: 0; }
  .c-menu-button.is-open span:nth-child(3) {
    top: 16px;
    transform: rotate(-45deg); }
  @media (max-width: 768px) {
    .c-menu-button {
      display: block; } }

/* =========================
SP MENU
========================= */
@media (max-width: 768px) {
  .l-global-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 0px);
    background: #999;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 93px 24px 40px;
    gap: 40px;
    z-index: 110;
    overflow-y: auto;
    margin-left: 0; }
  .l-global-nav.is-open {
    display: flex; }
  .l-global-nav__list {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 28px; }
  .l-global-nav__item a {
    font-size: 28px;
    line-height: 1.2; }
  .c-sns__list {
    margin-top: 12px;
    gap: 24px; }
  .c-sns__item a {
    width: 56px;
    height: 56px; }
  .c-sns__item img {
    width: 56px;
    height: 56px; } }

.l-footer {
  padding: 120px 0 100px; }
  @media (max-width: 768px) {
    .l-footer {
      padding: 56px 0 52px; } }
  .l-footer__pc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px; }
  .l-footer__sp {
    text-align: center; }
  .l-footer__logo {
    flex: 0 0 auto; }
    .l-footer__logo a {
      display: inline-block; }
    .l-footer__logo img {
      display: block;
      width: 160px;
      height: auto; }
    .l-footer__logo--sp img {
      width: 220px;
      margin: 0 auto; }
  .l-footer__line {
    flex: 1 1 auto;
    height: 1px;
    background: #999;
    margin: 0 24px 0 200px; }
  .l-footer__sns {
    display: flex;
    align-items: center;
    gap: 26px;
    flex: 0 0 auto; }
    .l-footer__sns--sp {
      justify-content: center;
      gap: 18px;
      margin-top: 26px; }
  .l-footer__sns-item a {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 40px;
    line-height: 1;
    transition: opacity 0.2s ease, transform 0.2s ease; }
  .l-footer__sns-item--instagram a {
    background: #DCBB4E; }
  .l-footer__sns-item--facebook a {
    background: #6FA455; }
  .l-footer__sns-item--youtube a {
    background: #DF888B; }
  .l-footer__sns-item a:hover {
    opacity: 0.85; }
  .l-footer__sns-item i {
    line-height: 1; }
  @media (max-width: 768px) {
    .l-footer__sns-item a {
      width: 80px;
      height: 80px;
      font-size: 36px; } }

.c-button {
  display: inline-block;
  padding: 14px 32px;
  font-size: 14px;
  text-align: center; }
  .c-button--primary {
    background: #000;
    color: #fff; }

.c-color-button {
  color: #fff;
  border-color: transparent;
  transition: background-color 0.2s ease, opacity 0.2s ease; }

.c-color-button--gold {
  background-color: #DCBB4E; }
  .c-color-button--gold:hover, .c-color-button--gold.is-active {
    background-color: #FFC30E; }

.c-color-button--green {
  background-color: #6FA455; }
  .c-color-button--green:hover, .c-color-button--green.is-active {
    background-color: #557645; }

.c-color-button--pink {
  background-color: #DF888B; }
  .c-color-button--pink:hover, .c-color-button--pink.is-active {
    background-color: #FF9DA0; }

.c-color-button--purple {
  background-color: #A896D1; }
  .c-color-button--purple:hover, .c-color-button--purple.is-active {
    background-color: #7B5FB9; }

.c-color-button--blue {
  background-color: #A2C7D1; }
  .c-color-button--blue:hover, .c-color-button--blue.is-active {
    background-color: #5AC2DF; }

.c-color-button--gray {
  background-color: #BEB9B9; }
  .c-color-button--gray:hover, .c-color-button--gray.is-active {
    background-color: #999999; }

/* ======================
ページタイトル
====================== */
.c-page-title {
  font-family: "DM Sans", sans-serif;
  font-size: 45px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 60px; }
  @media (max-width: 768px) {
    .c-page-title {
      font-size: 40px;
      margin-bottom: 28px; } }

/* ======================
セクションタイトル
====================== */
.c-section-title {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 40px;
  font-size: 45px; }
  @media (max-width: 768px) {
    .c-section-title {
      font-size: 32px;
      margin-bottom: 20px; } }

/* サブタイトル */
.c-section-subtitle {
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center; }
  @media (max-width: 768px) {
    .c-section-subtitle {
      font-size: 16px; } }

.c-blog-card {
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 1px 1px lightgray; }
  .c-blog-card__link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit; }
  .c-blog-card__image {
    aspect-ratio: 16 / 9;
    background: #f7f7f7;
    overflow: hidden; }
  .c-blog-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .c-blog-card__body {
    padding: 18px 16px 20px; }
  .c-blog-card__date {
    display: block;
    font-size: 16px;
    line-height: 1.4;
    color: #070707;
    margin-bottom: 10px; }
  .c-blog-card__title {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 10px; }
  .c-blog-card__excerpt {
    font-size: 20px;
    line-height: 1.6;
    color: #666; }
  @media (max-width: 768px) {
    .c-blog-card__date {
      font-size: 14px; }
    .c-blog-card__title {
      font-size: 18px;
      line-height: 1.45; } }

.c-form__group {
  margin-bottom: 28px; }
  @media (max-width: 768px) {
    .c-form__group {
      margin-bottom: 26px; } }

.c-form__label {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 10px; }
  @media (max-width: 768px) {
    .c-form__label {
      font-size: 16px;
      margin-bottom: 10px; } }

.c-form__input,
.c-form__textarea {
  width: 100%;
  border: 2px solid #ddd;
  background: transparent;
  padding: 14px 16px;
  font-size: 16px;
  color: #222;
  border-radius: 4px;
  appearance: none; }
  .c-form__input::placeholder,
  .c-form__textarea::placeholder {
    color: #b3b3b3; }

.c-form__input {
  height: 60px; }
  @media (max-width: 768px) {
    .c-form__input {
      height: 56px;
      font-size: 18px; } }

.c-form__textarea {
  min-height: 108px;
  resize: vertical; }
  @media (max-width: 768px) {
    .c-form__textarea {
      min-height: 124px;
      font-size: 18px; } }

.c-form__group--check {
  margin-top: 10px;
  margin-bottom: 30px;
  text-align: center; }
  @media (max-width: 768px) {
    .c-form__group--check {
      margin-top: 6px;
      margin-bottom: 26px; } }

.c-form__check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  line-height: 1.4;
  cursor: pointer;
  text-align: center; }
  @media (max-width: 768px) {
    .c-form__check {
      font-size: 12px;
      gap: 10px;
      align-items: flex-start; } }
  .c-form__check input {
    width: 18px;
    height: 18px;
    margin: 0;
    flex: 0 0 auto; }
    @media (max-width: 768px) {
      .c-form__check input {
        width: 18px;
        height: 18px;
        margin-top: 1px; } }
  .c-form__check span {
    display: inline-block; }

.c-form__submit {
  text-align: center;
  margin-top: 0; }
  .c-form__submit .c-button {
    min-width: 415px;
    height: 60px;
    font-family: "DM Sans", sans-serif;
    font-size: 24px;
    font-weight: 700;
    border-radius: 30px;
    line-height: 1;
    color: white;
    border: inherit; }
    @media (max-width: 768px) {
      .c-form__submit .c-button {
        width: 100%;
        min-width: 0;
        height: 56px;
        font-size: 22px; } }

/* MV */
.p-home-mv {
  width: 100%; }

.p-home-mv__bg {
  position: relative;
  width: 100%;
  height: calc(100vh - 120px);
  min-height: 560px;
  background-image: url("../images/home/mv-bg-pc.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat; }

.p-home-mv__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  max-width: 400px;
  height: auto;
  transform: translate(-50%, -50%); }

@media screen and (max-width: 767px) {
  .p-home-mv__bg {
    height: calc(100vh - 72px);
    min-height: 520px;
    background-image: url("../images/home/mv-bg-sp.png");
    background-position: center center; }
  .p-home-mv__logo {
    width: 78%;
    max-width: 200px; } }

/* Blog */
.p-home-blog {
  padding: 110px 0 60px; }
  @media (max-width: 768px) {
    .p-home-blog {
      padding: 50px 0 60px; }
      .p-home-blog .c-blog-card {
        background: transparent;
        border: 0;
        border-bottom: 1px solid #d8d8d8; }
      .p-home-blog .c-blog-card__image {
        display: none; }
      .p-home-blog .c-blog-card__body {
        padding: 0 0 18px; }
      .p-home-blog .c-blog-card__date {
        font-size: 18px;
        margin-bottom: 14px; }
      .p-home-blog .c-blog-card__title {
        font-size: 18px;
        line-height: 1.45;
        margin-bottom: 0; }
      .p-home-blog .c-blog-card__excerpt {
        display: none; } }
  .p-home-blog__title {
    text-align: center;
    margin-bottom: 56px; }
    @media (max-width: 768px) {
      .p-home-blog__title {
        margin-bottom: 36px; } }
  .p-home-blog__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px 40px; }
    @media (max-width: 768px) {
      .p-home-blog__list {
        grid-template-columns: 1fr;
        gap: 40px; } }
  .p-home-blog__item {
    min-width: 0; }

/* Feature */
.p-home-feature {
  padding: 150px 0 80px;
  /* ===== PC：交互レイアウト ===== */
  /* ===== SP：全部統一 ===== */ }
  @media (max-width: 768px) {
    .p-home-feature {
      padding: 50px 0 80px; } }
  .p-home-feature__list {
    display: grid;
    gap: 150px; }
    @media (max-width: 768px) {
      .p-home-feature__list {
        gap: 80px;
        margin-bottom: 80px; } }
  .p-home-feature__item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center; }
    @media (max-width: 768px) {
      .p-home-feature__item {
        grid-template-columns: 1fr;
        gap: 18px; } }
  .p-home-feature__item:nth-child(odd) .p-home-feature__content {
    order: 1;
    text-align: left; }
  .p-home-feature__item:nth-child(odd) .p-home-feature__image {
    order: 2; }
  .p-home-feature__item:nth-child(even) .p-home-feature__image {
    order: 1; }
  .p-home-feature__item:nth-child(even) .p-home-feature__content {
    order: 2;
    text-align: right;
    margin-left: auto; }
  @media (max-width: 768px) {
    .p-home-feature__item:nth-child(even) .p-home-feature__image {
      order: 2; }
    .p-home-feature__item:nth-child(even) .p-home-feature__content {
      order: 1;
      text-align: center;
      margin-left: auto; } }
  .p-home-feature__image img {
    width: 100%;
    display: block; }
  .p-home-feature__content {
    max-width: 600px; }
    .p-home-feature__content .c-section-title {
      text-align: inherit; }
      @media (max-width: 768px) {
        .p-home-feature__content .c-section-title {
          text-align: center; } }
    @media (max-width: 768px) {
      .p-home-feature__content {
        text-align: center; } }
  .p-home-feature__text {
    line-height: 1.55; }
    .p-home-feature__text p + p {
      margin-top: 6px; }
    @media (max-width: 768px) {
      .p-home-feature__text {
        font-size: 15px;
        line-height: 1.65;
        text-align: left;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto; } }
  .p-home-feature__note {
    margin-top: 8px; }
  .p-home-feature__button {
    margin-top: 32px;
    text-align: inherit; }
    @media (max-width: 768px) {
      .p-home-feature__button {
        text-align: center;
        margin-top: 14px; } }
  .p-home-feature__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    padding: 15px 40px;
    border-radius: 999px;
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: background-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease; }
    .p-home-feature__link:hover {
      transform: translateY(-2px); }
    @media (max-width: 768px) {
      .p-home-feature__link {
        min-width: 240px;
        height: 56px;
        font-size: 18px; } }
  @media (max-width: 768px) {
    .p-home-feature .c-section-title {
      text-align: center;
      margin-bottom: 20px; }
    .p-home-feature .p-home-feature__text {
      text-align: center;
      margin-bottom: 20px; }
    .p-home-feature__item {
      gap: 32px; }
      .p-home-feature__item .p-home-feature__content {
        order: 1;
        max-width: none;
        text-align: center; }
      .p-home-feature__item .p-home-feature__image {
        order: 2; } }

/* Products */
.p-home-products {
  padding: 150px 0 100px; }
  @media (max-width: 768px) {
    .p-home-products {
      padding: 60px 0; } }
  .p-home-products__lead {
    margin-top: 12px;
    font-size: 20px;
    text-align: center; }
    @media (max-width: 768px) {
      .p-home-products__lead {
        font-size: 15px;
        margin-top: 8px; } }
  .p-home-products__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 48px; }
    @media (max-width: 768px) {
      .p-home-products__grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 24px; } }
  .p-home-products__item {
    position: relative; }
    .p-home-products__item picture,
    .p-home-products__item img {
      display: block;
      width: 100%; }
    .p-home-products__item img {
      height: auto; }
      @media (max-width: 768px) {
        .p-home-products__item img {
          border-radius: 4px; } }
    .p-home-products__item p {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      font-family: "DM Sans", sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: #fff;
      text-align: center;
      letter-spacing: 0.05em; }

/* banner */
.p-home-banner {
  padding: 80px 0 120px; }
  @media (max-width: 768px) {
    .p-home-banner {
      padding: 0 0 60px; } }
  .p-home-banner__image picture,
  .p-home-banner__image img {
    display: block;
    width: 100%; }
  .p-home-banner__image img {
    width: 100%;
    height: auto;
    display: block; }
  @media (max-width: 768px) {
    .p-home-banner .l-container,
    .p-home-banner .l-container--wide {
      max-width: 100%;
      padding-left: 0;
      padding-right: 0; } }

/* Shop */
.p-home-shop {
  padding: 180px 0 110px;
  text-align: center; }
  @media (max-width: 768px) {
    .p-home-shop {
      padding: 60px 0 70px; } }
  .p-home-shop__list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 90px;
    margin-top: 60px; }
    @media (max-width: 768px) {
      .p-home-shop__list {
        flex-direction: column;
        align-items: center;
        gap: 42px;
        margin-top: 60px; } }
  .p-home-shop__item a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease; }
  .p-home-shop__item a:hover {
    opacity: 0.7; }
  .p-home-shop__item img {
    display: block;
    height: auto; }
  .p-home-shop__item--amazon img {
    width: 160px; }
    @media (max-width: 768px) {
      .p-home-shop__item--amazon img {
        width: 190px; } }
  .p-home-shop__item--walmart img {
    width: 250px; }
    @media (max-width: 768px) {
      .p-home-shop__item--walmart img {
        width: 260px; } }
  .p-home-shop__item--chewy img {
    width: 210px; }
    @media (max-width: 768px) {
      .p-home-shop__item--chewy img {
        width: 220px; } }

/* Contact */
.p-home-contact {
  padding: 180px 0 120px; }
  @media (max-width: 768px) {
    .p-home-contact {
      padding: 70px 0 80px; } }
  .p-home-contact__inner {
    max-width: 900px;
    margin: 0 auto; }
    @media (max-width: 768px) {
      .p-home-contact__inner {
        max-width: none; } }
  .p-home-contact .c-section-title {
    margin-bottom: 34px;
    text-align: center; }
    @media (max-width: 768px) {
      .p-home-contact .c-section-title {
        margin-bottom: 40px; } }

.p-about-tab {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 60px 0 100px; }
  .p-about-tab__item {
    padding: 12px 28px;
    border-radius: 999px;
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 22px;
    text-align: center;
    min-width: 280px;
    color: white; }
    .p-about-tab__item.is-active {
      box-shadow: 0 0 0 5px #bfbeba, 0 6px 12px rgba(0, 0, 0, 0.15); }
  @media (max-width: 768px) {
    .p-about-tab {
      flex-direction: column;
      align-items: center;
      gap: 12px; }
      .p-about-tab__item {
        width: 320px;
        max-width: 100%;
        font-size: 20px; } }

.p-about-intro .l-container {
  max-width: 1160px;
  margin: 0 auto; }

.p-about-intro__title {
  text-align: center;
  font-size: 72px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 56px; }

.p-about-intro__image {
  max-width: 990px;
  margin: 0 auto 40px; }
  .p-about-intro__image img {
    display: block;
    width: 100%;
    height: auto; }

.p-about-intro__text {
  max-width: 990px;
  margin: 0 auto;
  line-height: 1.8; }

@media (max-width: 768px) {
  .p-about-intro .l-container {
    padding-left: 24px;
    padding-right: 24px; }
  .p-about-intro__title {
    font-size: 40px;
    margin-bottom: 28px; }
  .p-about-intro__image {
    margin-bottom: 24px; }
  .p-about-intro__text {
    font-size: 18px;
    line-height: 1.7;
    text-align: center; } }

.p-about-content {
  margin-top: 100px;
  display: none; }
  .p-about-content.is-active {
    display: block; }

.p-about-logo {
  padding: 180px 0 0; }
  .p-about-logo__inner {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px; }
  .p-about-logo__image {
    flex: 0 0 220px; }
    .p-about-logo__image img {
      display: block;
      width: 100%;
      height: auto; }
  .p-about-logo__text {
    flex: 1;
    font-size: 27px;
    line-height: 1.8;
    font-weight: 500;
    text-shadow: 2px 3px 3px #c6c6c6; }
  @media (max-width: 768px) {
    .p-about-logo {
      padding: 64px 0 0; }
      .p-about-logo__inner {
        flex-direction: column;
        gap: 20px;
        text-align: center; }
      .p-about-logo__image {
        flex: none;
        width: 210px; }
      .p-about-logo__text {
        font-size: 20px;
        line-height: 1.7; } }

.p-about-diff {
  padding: 180px 0; }
  @media (max-width: 768px) {
    .p-about-diff {
      padding: 0 0; } }
  .p-about-diff__title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 60px; }
  .p-about-diff__list {
    display: grid;
    gap: 100px;
    margin-top: 100px; }
    @media (max-width: 768px) {
      .p-about-diff__list {
        margin-top: 0px;
        margin-bottom: 60px; } }
  .p-about-diff__item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center; }
    @media (max-width: 768px) {
      .p-about-diff__item {
        grid-template-columns: 1fr;
        gap: 30px; }
        .p-about-diff__item .p-about-diff__content {
          order: 1; }
        .p-about-diff__item .p-about-diff__image {
          order: 2; } }
  .p-about-diff__image img {
    width: 100%; }
  .p-about-diff__label {
    font-size: 14px;
    margin-bottom: 10px; }
  .p-about-diff h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px; }
  .p-about-diff p {
    font-size: 20px; }

.p-about .p-home-feature__item:nth-child(even) .p-home-feature__image {
  order: 2; }

.p-about .p-home-feature__item:nth-child(even) .p-home-feature__content {
  order: 1;
  text-align: left;
  margin-right: auto;
  margin-left: inherit; }

.p-about .p-home-feature__item:nth-child(odd) .p-home-feature__image {
  order: 1; }

.p-about .p-home-feature__item:nth-child(odd) .p-home-feature__content {
  order: 2;
  text-align: right;
  margin-left: auto; }

.p-product-head {
  padding: 80px 0 60px; }
  @media (max-width: 768px) {
    .p-product-head {
      padding: 48px 0 32px; } }

.p-product-tab {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 40px;
  margin-top: 60px; }
  .p-product-tab__item {
    width: 100%;
    min-height: 64px;
    padding: 14px 28px;
    border-radius: 999px;
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    color: white; }
    .p-product-tab__item.is-active {
      box-shadow: 0 0 0 5px #beb9b9, 0 6px 12px rgba(0, 0, 0, 0.15); }
  @media (max-width: 768px) {
    .p-product-tab {
      grid-template-columns: 1fr;
      gap: 14px;
      margin-top: 32px; }
      .p-product-tab__item {
        width: 100%;
        max-width: 340px;
        margin: 0 auto; } }

.p-product-content {
  display: none; }
  .p-product-content.is-active {
    display: block; }

.p-product-table {
  padding: 80px 0 100px; }
  @media (max-width: 768px) {
    .p-product-table {
      padding: 40px 0 56px; } }
  .p-product-table__wrap {
    overflow-x: auto;
    margin-top: 48px; }
  .p-product-table__table {
    width: 100%;
    border-collapse: collapse; }
    .p-product-table__table th,
    .p-product-table__table td {
      border: 1px solid #222;
      padding: 10px;
      text-align: center;
      vertical-align: middle; }
    .p-product-table__table th {
      font-size: 18px;
      font-weight: 500; }
    .p-product-table__table td {
      font-size: 16px;
      font-weight: 500; }
    .p-product-table__table img {
      display: block;
      max-width: 180px;
      width: 100%;
      height: auto;
      margin: 0 auto; }
  .p-product-table__color {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px; }
  .p-product-table__dot {
    width: 30px;
    height: 30px;
    border-radius: 50%; }
    .p-product-table__dot--cream {
      background: #ece9a8; }
    .p-product-table__dot--pink {
      background: #ef8bb0; }
    .p-product-table__dot--lightblue {
      background: #c3e5f3; }
    .p-product-table__dot--white {
      background: #FFFFFF;
      border: black 1px solid; }
    .p-product-table__dot--mintgreen {
      background: #7ec8b1; }
    .p-product-table__dot--lavender {
      background: #aea0cd; }
    .p-product-table__dot--black {
      background: #323333; }
  .p-product-table__shop {
    display: grid;
    gap: 18px; }
    .p-product-table__shop a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 36px;
      border-radius: 999px;
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      text-decoration: none; }
      .p-product-table__shop a:nth-child(1) {
        background: #f6a000; }
      .p-product-table__shop a:nth-child(2) {
        background: #3b93e8; }
      .p-product-table__shop a:nth-child(3) {
        background: #2850c8; }

.p-product-size__img {
  margin: 30px auto 80px; }
  .p-product-size__img img {
    width: 100%; }
  @media (max-width: 768px) {
    .p-product-size__img {
      margin: 20px auto 20px; } }

.p-product-info {
  padding: 0 0 140px; }
  @media (max-width: 768px) {
    .p-product-info {
      padding: 0 0 80px; } }
  .p-product-info__image + .p-product-info__image {
    margin-top: 28px; }
  .p-product-info__image img {
    display: block;
    width: 100%;
    height: auto; }

.p-blog-archive__head {
  padding: 80px 0 20px; }
  @media (max-width: 768px) {
    .p-blog-archive__head {
      padding: 48px 0 32px; } }

.c-back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 112px;
  height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease; }
  .c-back-button:hover {
    transform: translateY(-2px); }
  .c-back-button__icon {
    font-size: 26px;
    line-height: 1;
    transform: translateY(-1px); }

/* ======================
記事コンポーネント
====================== */
.c-article {
  background: transparent;
  padding: 60px 80px; }
  @media (max-width: 768px) {
    .c-article {
      background: #f3f3f3;
      padding: 32px 20px; } }
  .c-article .l-container {
    background: #F5F5F5;
    padding: 60px 80px; }
    @media (max-width: 768px) {
      .c-article .l-container {
        background: transparent;
        padding: 0 20px; } }
  .c-article__meta {
    text-align: right;
    font-size: 24px;
    color: #6FA455 !important;
    margin-bottom: 16px; }
    @media (max-width: 768px) {
      .c-article__meta {
        font-size: 16px; } }
  .c-article__title {
    font-size: 45px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px; }
    @media (max-width: 768px) {
      .c-article__title {
        font-size: 28px; } }
  .c-article__category {
    font-size: 20px;
    font-weight: 500;
    color: #DF888B;
    margin-bottom: 32px;
    text-transform: uppercase; }
    @media (max-width: 768px) {
      .c-article__category {
        font-size: 16px; } }
  .c-article__image {
    margin-bottom: 32px; }
    .c-article__image img {
      display: block;
      width: 100%;
      height: auto; }
  .c-article__body {
    font-size: 20px;
    line-height: 1.8; }
    .c-article__body p + p {
      margin-top: 16px; }

.p-blog-single__wrap {
  padding: 80px 0 120px; }
  @media (max-width: 768px) {
    .p-blog-single__wrap {
      padding: 40px 0 80px; } }

.p-blog-single__back {
  text-align: center; }
  @media (max-width: 768px) {
    .p-blog-single__back {
      margin-top: 30px; } }

.p-blog-archive__pagination {
  margin-top: 48px;
  text-align: center; }
  .p-blog-archive__pagination .nav-links {
    display: inline-flex;
    align-items: center;
    gap: 24px; }
  .p-blog-archive__pagination .page-numbers {
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #6FA455;
    text-decoration: none; }
  .p-blog-archive__pagination .prev,
  .p-blog-archive__pagination .next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 76px;
    height: 34px;
    padding: 0 16px;
    border-radius: 999px;
    background: #DCBB4E;
    color: #fff;
    font-size: 16px; }
  .p-blog-archive__pagination .current {
    color: #6FA455; }

.p-faq__head {
  padding: 80px 0 56px; }
  @media (max-width: 768px) {
    .p-faq__head {
      padding: 48px 0 32px; } }

.p-faq-list {
  padding-bottom: 120px; }
  @media (max-width: 768px) {
    .p-faq-list {
      padding-bottom: 72px; } }

.c-faq-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 4px 0 #eceff1; }
  .c-faq-item + .c-faq-item {
    margin-top: 16px; }
  .c-faq-item__question {
    width: 100%;
    display: grid;
    grid-template-columns: 36px 1fr 24px;
    align-items: center;
    gap: 20px;
    padding: 22px 34px;
    background: transparent;
    border: 0;
    text-align: left;
    cursor: pointer; }
  .c-faq-item__icon {
    width: 36px;
    height: 36px;
    background: #6FA455;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center; }
  .c-faq-item__text {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700; }
  .c-faq-item__arrow {
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 9px solid #111;
    justify-self: end;
    transition: transform 0.2s ease; }
  .c-faq-item__answer {
    display: none;
    padding: 0 34px 24px; }
  .c-faq-item__answer-inner {
    border-top: 1px solid #ddd;
    padding-top: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: #333; }
  .c-faq-item.is-open .c-faq-item__answer {
    display: block; }
  .c-faq-item.is-open .c-faq-item__arrow {
    transform: rotate(180deg); }
  @media (max-width: 768px) {
    .c-faq-item {
      border-radius: 6px; }
      .c-faq-item + .c-faq-item {
        margin-top: 12px; }
      .c-faq-item__question {
        grid-template-columns: 30px 1fr 18px;
        gap: 14px;
        padding: 18px 18px 16px; }
      .c-faq-item__icon {
        width: 30px;
        height: 30px;
        font-size: 20px; }
      .c-faq-item__text {
        font-size: 16px;
        line-height: 1.55; }
      .c-faq-item__answer {
        padding: 0 18px 18px; }
      .c-faq-item__answer-inner {
        padding-top: 16px;
        font-size: 16px;
        line-height: 1.7; } }

.p-faq-warning {
  padding-bottom: 120px; }
  @media (max-width: 768px) {
    .p-faq-warning {
      padding-bottom: 80px; } }
  .p-faq-warning__inner {
    border-top: 2px dashed #DCBB4E;
    border-bottom: 2px dashed #DCBB4E;
    padding: 56px 0 64px; }
    @media (max-width: 768px) {
      .p-faq-warning__inner {
        padding: 40px 0 48px; } }
  .p-faq-warning .c-section-title {
    margin-bottom: 40px; }
    @media (max-width: 768px) {
      .p-faq-warning .c-section-title {
        margin-bottom: 28px; } }
  .p-faq-warning__list {
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 1.2em;
    font-size: 20px;
    line-height: 1.85;
    color: #222;
    list-style: disc; }
    .p-faq-warning__list li + li {
      margin-top: 8px; }
    @media (max-width: 768px) {
      .p-faq-warning__list {
        max-width: none;
        font-size: 16px;
        line-height: 1.8; } }

.p-contact__head {
  padding: 80px 0 56px; }
  @media (max-width: 768px) {
    .p-contact__head {
      padding: 48px 0 32px; } }

.p-contact__lead-list {
  list-style: disc;
  margin-left: 1em; }

.p-contact__privacy {
  margin: 100px auto; }

.p-contact-privacy {
  padding-bottom: 120px; }
  @media (max-width: 768px) {
    .p-contact-privacy {
      padding-bottom: 0; } }
  .p-contact-privacy__inner {
    border-top: 2px dashed #DCBB4E;
    border-bottom: 2px dashed #DCBB4E;
    padding: 56px 0;
    margin: 120px auto 0; }
    @media (max-width: 768px) {
      .p-contact-privacy__inner {
        padding: 40px 0 48px;
        margin: 40px auto; } }
  .p-contact-privacy__list {
    max-width: 960px;
    margin: 1em 1em;
    padding-left: 1.2em;
    font-size: 20px;
    line-height: 1.85;
    color: #222;
    list-style: disc; }
    @media (max-width: 768px) {
      .p-contact-privacy__list {
        font-size: 16px; } }
  @media (max-width: 768px) {
    .p-contact-privacy__text {
      font-size: 16px; } }

.wpcf7-spinner {
  display: block;
  margin: auto; }

.u-sp-only {
  display: none; }
  @media (max-width: 768px) {
    .u-sp-only {
      display: block; } }

@media (max-width: 768px) {
  .u-pc-only {
    display: none; } }

.u-text-sm {
  font-size: 16px; }
  @media (max-width: 768px) {
    .u-text-sm {
      font-size: 14px; } }

.u-text-md {
  font-size: 24px; }
  @media (max-width: 768px) {
    .u-text-md {
      font-size: 16px; } }

.u-text-lg {
  font-size: 28px; }
  @media (max-width: 768px) {
    .u-text-lg {
      font-size: 18px; } }

.t-left {
  text-align: left; }

/* text color */
.u-color-gold {
  color: #DCBB4E; }

.u-color-green {
  color: #6FA455; }

.u-color-pink {
  color: #DF888B; }

.u-color-purple {
  color: #A896D1; }

.u-color-blue {
  color: #A2C7D1; }

.u-color-gray {
  color: #BEB9B9; }

.u-color-brawn {
  color: #6A3906; }

/* background color */
.u-bg-gold {
  background-color: #DCBB4E; }

.u-bg-green {
  background-color: #6FA455; }

.u-bg-pink {
  background-color: #DF888B; }

.u-bg-purple {
  background-color: #A896D1; }

.u-bg-blue {
  background-color: #A2C7D1; }

.u-bg-gray {
  background-color: #BEB9B9; }
