@charset "UTF-8";
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* リセットCSS */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

ul,
ol {
  padding: 0;
  list-style: none;
}

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

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

input,
button,
textarea,
select {
  font: inherit;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  font-size: 16px;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

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

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

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  line-height: 1.2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  margin-bottom: 3rem;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #007bff;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}
.l-header {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}
.l-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-header__logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}
.l-header__nav-list {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.l-header__nav-item a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.l-header__nav-item a:hover,
.l-header__nav-item a.is-active {
  color: #007bff;
}
/* ハンバーガーメニューボタン */
.l-header__hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
  z-index: 1001;
}

.l-header__hamburger-line {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* ハンバーガーメニューが開いた時のアニメーション */
.l-header__hamburger.is-active .l-header__hamburger-line:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.l-header__hamburger.is-active .l-header__hamburger-line:nth-child(2) {
  opacity: 0;
}

.l-header__hamburger.is-active .l-header__hamburger-line:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 768px) {
  .l-header__inner {
    position: relative;
  }

  .l-header__hamburger {
    display: flex;
  }

  .l-header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
  }

  .l-header__nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .l-header__nav-list {
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
  }

  .l-header__nav-item {
    border-bottom: 1px solid #f0f0f0;
  }

  .l-header__nav-item:last-child {
    border-bottom: none;
  }

  .l-header__nav-item a {
    display: block;
    padding: 1rem 2rem;
    transition: background-color 0.3s, color 0.3s;
  }

  .l-header__nav-item a:hover,
  .l-header__nav-item a.is-active {
    background-color: #f8f9fa;
    color: #007bff;
  }
}

.l-footer {
  background-color: #333;
  color: #fff;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}
.l-footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.l-footer__content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}
.l-footer__info {
  max-width: 300px;
}
.l-footer__logo {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.l-footer__address {
  font-style: normal;
  line-height: 1.6;
}
.l-footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.l-footer__nav-item {
  margin-bottom: 0.5rem;
}
.l-footer__nav-item a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.l-footer__nav-item a:hover {
  color: #d9d9d9;
}
.l-footer__copyright {
  text-align: center;
  font-size: 0.875rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.l-main {
  margin-top: 80px;
  padding: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .l-main {
    padding: 1rem;
  }
}

.c-button {
  display: block;
  max-inline-size: 400px;
  inline-size: 90%;
  margin-inline: auto;
  padding: 0.5rem 1rem;
  background-color: #007bff;
  color: #fff;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-align: center;
}
.c-button:hover {
  background-color: #0056b3;
}

.section-more {
  margin-block: 2rem;
}

.c-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 1rem;
}
.c-card:hover {
  transform: translateY(-5px);
}
.c-card__image {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
}
.c-card__title {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.c-card__description {
  margin-bottom: 1rem;
  color: #666;
}
.c-card__price {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: right;
}
.c-card__price > span {
  font-size: 1.5rem;
}

/* スマートフォン時のc-cardスタイル */
@media (max-width: 768px) {
  .c-card {
    padding: 1.5rem;
  }

  .c-card__image {
    height: 250px;
  }

  .c-card__title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
  }

  .c-card__description {
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .c-card__price {
    font-size: 1.3rem;
  }

  .c-card__price > span {
    font-size: 1.6rem;
  }
}

.c-news-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.c-news-item__date {
  font-size: 0.9rem;
  color: #666;
}
.c-news-item__category {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  background-color: #007bff;
  color: white;
  border-radius: 4px;
  font-size: 0.8rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0.5rem 0;
}
.c-news-item__title {
  margin-top: 0.5rem;
  font-weight: bold;
}

.p-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}
@media (max-width: 768px) {
  .p-products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.p-news-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.p-product-detail {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
@media (max-width: 768px) {
  .p-product-detail {
    flex-direction: column;
  }
}
.p-product-detail__image-gallery {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}
@media (max-width: 768px) {
  .p-product-detail__image-gallery {
    max-width: 100%;
  }
}
.p-product-detail__main-image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.p-product-detail__content {
  flex: 1;
  min-width: 300px;
}
.p-product-detail__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #222;
  border-bottom: 2px solid #007bff;
  padding-bottom: 0.5rem;
}
.p-product-detail__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e53935;
  margin-bottom: 1rem;
}
.p-product-detail__stock {
  font-size: 16px;
  color: #666;
  margin-bottom: 2rem;
}
.p-product-detail__description {
  margin-bottom: 2rem;
  line-height: 1.6;
}
.p-product-detail__spec {
  margin-bottom: 2rem;
  background-color: #f8f9fa;
  padding: 1rem;
  border-radius: 6px;
}
.p-product-detail__spec h3 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
}
.p-product-detail__actions {
  margin-top: 2rem;
}

.p-product-tabs {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1rem;
}
.p-product-tabs__header {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid #ddd;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .p-product-tabs__header {
    overflow-x: auto;
    white-space: nowrap;
    gap: 0;
  }
}
.p-product-tabs__tab {
  padding: 0.5rem 2rem;
  border: none;
  background: none;
  font-size: 16px;
  font-weight: 400;
  color: #666;
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
}
@media (max-width: 768px) {
  .p-product-tabs__tab {
    padding: 0.5rem 1rem;
  }
}
.p-product-tabs__tab:hover {
  color: #007bff;
}
.p-product-tabs__tab--active {
  color: #007bff;
  font-weight: 700;
}
.p-product-tabs__tab--active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #007bff;
}
.p-product-tabs__content {
  display: none;
  padding: 1rem 0;
}
.p-product-tabs__content h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.p-product-tabs__content--active {
  display: block;
}
.p-product-tabs__usage {
  line-height: 1.6;
  margin-bottom: 2rem;
}

.c-table {
  width: 100%;
  border-collapse: collapse;
}
.c-table th,
.c-table td {
  padding: 0.5rem;
  border-bottom: 1px solid #ddd;
}
.c-table th {
  text-align: left;
  width: 30%;
  font-weight: 400;
  color: #666;
}

.c-button--primary {
  background-color: #007bff;
  color: white;
  padding: 0.5rem 2rem;
  border-radius: 2px;
  font-weight: 700;
  display: inline-block;
  transition: background-color 0.3s;
}
.c-button--primary:hover {
  background-color: #0062cc;
  text-decoration: none;
}

.c-accordion__item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 0.5rem;
}
.c-accordion__header {
  padding: 1rem 0;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}
.c-accordion__header::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #007bff;
}
.c-accordion__header.is-active::after {
  content: "-";
}
.c-accordion__content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.p-faq {
  padding: 4rem 0;
}
.p-faq__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.p-faq__header {
  margin-bottom: 4rem;
  text-align: center;
}
.p-faq__title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
}
.p-faq__filter {
  background-color: #f8f9fa;
  padding: 3rem;
  border-radius: 6px;
  margin-bottom: 4rem;
}
.p-faq__filter-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1rem;
}
.p-faq__filter-description {
  color: #333;
  margin-bottom: 2rem;
}
.p-faq__filter-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.p-faq__filter-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.p-faq__filter-product {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.p-faq__filter-product input[type="checkbox"] {
  width: 18px;
  height: 18px;
}
.p-faq__filter-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}
.p-faq__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.p-faq__item {
  background-color: #f8f9fa;
  border-radius: 6px;
  overflow: hidden;
}
.p-faq__question {
  padding: 1rem;
  background-color: #fff;
  font-weight: 700;
  color: #222;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}
.p-faq__question:hover {
  background-color: #fafafa;
}
.p-faq__answer {
  padding: 2rem;
  color: #333;
  display: none;
  line-height: 1.6;
}
.p-faq__answer.is-active {
  display: block;
}
.p-faq__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 2px;
  font-size: 0.875rem;
  font-weight: 400;
  white-space: nowrap;
}
.p-faq__badge--common {
  background-color: rgba(0, 123, 255, 0.1);
  color: #0056b3;
}
.p-faq__badge--product {
  background-color: rgba(108, 117, 125, 0.1);
  color: #494f54;
}
.p-faq__no-results {
  text-align: center;
  padding: 4rem;
  background-color: #f8f9fa;
  border-radius: 6px;
  color: #333;
}

.p-admin {
  display: flex;
  min-height: 100vh;
}
.p-admin-sidebar {
  width: 250px;
  background-color: #333;
  color: white;
  padding: 2rem;
}
.p-admin-sidebar__logo {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #555;
  padding-bottom: 1rem;
}
.p-admin-sidebar__nav {
  margin-bottom: 2rem;
}
.p-admin-sidebar__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-admin-sidebar__nav-item {
  margin-bottom: 0.5rem;
}
.p-admin-sidebar__nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #ddd;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.p-admin-sidebar__nav-link:hover {
  background-color: #444;
  color: white;
}
.p-admin-sidebar__nav-link--active {
  background-color: #007bff;
  color: white;
}
.p-admin-sidebar__user {
  border-top: 1px solid #555;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-admin-sidebar__username {
  font-size: 0.9rem;
}
.p-admin-sidebar__logout {
  color: #ddd;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.p-admin-sidebar__logout:hover {
  color: white;
}
.p-admin-content {
  flex-grow: 1;
  padding: 2rem;
  background-color: #f5f5f5;
}
.p-admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ddd;
}
.p-admin-header__title {
  font-size: 1.5rem;
}
.p-admin-header__actions {
  display: flex;
  gap: 1rem;
}
.p-admin-button {
  padding: 0.5rem 1rem;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.p-admin-button:hover {
  background-color: #0056b3;
}
.p-admin-button--secondary {
  background-color: #6c757d;
}
.p-admin-button--secondary:hover {
  background-color: #555;
}
.p-admin-button--danger {
  background-color: #dc3545;
}
.p-admin-button--danger:hover {
  background-color: #bd2130;
}
.p-admin-dashboard__cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}
.p-admin-dashboard__card {
  padding: 2rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.p-admin-dashboard__card-title {
  font-size: 1rem;
  color: #666;
  margin-bottom: 0.5rem;
}
.p-admin-dashboard__card-value {
  font-size: 2rem;
  font-weight: bold;
  color: #007bff;
}
.p-admin-dashboard__recent {
  margin-top: 2rem;
}
.p-admin-dashboard__recent h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.p-admin-dashboard__recent table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.p-admin-dashboard__recent tr:first-child {
  background-color: #f0f0f0;
}
.p-admin-dashboard__recent th,
.p-admin-dashboard__recent td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #ddd;
}
.p-admin-dashboard__recent .status-badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.875rem;
}
.p-admin-dashboard__recent .status-badge--pending {
  background-color: #ffc107;
  color: #212529;
}
.p-admin-dashboard__recent .status-badge--completed {
  background-color: #28a745;
  color: white;
}
.p-admin-dashboard__recent .status-badge--unaddressed {
  background-color: #dc3545;
  color: white;
}
.p-admin-products {
  margin-bottom: 3rem;
  overflow-x: auto;
}
.p-admin-products__table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.p-admin-products__table th,
.p-admin-products__table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}
.p-admin-products__table th {
  background-color: #f8f9fa;
  font-weight: bold;
}
.p-admin-products__table tr:last-child td {
  border-bottom: none;
}
.p-admin-products__table tr:hover {
  background-color: #f9f9f9;
}
.p-admin-products__actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.p-admin-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.p-admin-table th,
.p-admin-table td {
  padding: 1rem;
  border-bottom: 1px solid #eee;
}
.p-admin-table th {
  background-color: #f8f9fa;
  text-align: left;
  font-weight: bold;
}
.p-admin-table tr:last-child td {
  border-bottom: none;
}
.p-admin-form {
  background-color: #fff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.p-admin-form__group {
  margin-bottom: 2rem;
}
.p-admin-form__group--no-margin {
  margin-bottom: 0;
}
.p-admin-form__label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.p-admin-form__label .required {
  color: #dc3545;
}
.p-admin-form__input,
.p-admin-form__textarea,
.p-admin-form__select {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}
.p-admin-form__textarea {
  min-height: 150px;
  resize: vertical;
}
.p-admin-form__error {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}
.p-admin-form__radio-group {
  display: flex;
  gap: 2rem;
  margin-top: 0.5rem;
}
.p-admin-form__radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.p-admin-form__checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}
.p-admin-form__checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.p-admin-form__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.p-admin-form__note {
  font-size: 0.875rem;
  color: #666;
  margin-top: 0.25rem;
}
.p-admin-form__image-preview {
  width: 150px;
  height: 150px;
  background-size: cover;
  background-position: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.p-admin-form__image-preview--existing {
  display: inline-block;
  margin-right: 1rem;
}
.p-admin-message {
  padding: 1rem;
  margin-bottom: 2rem;
  background-color: #d4edda;
  color: #155724;
  border-radius: 4px;
}
.p-admin-badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}
.p-admin-badge--common {
  background-color: #28a745;
  color: white;
}
.p-admin-badge--product {
  background-color: #007bff;
  color: white;
}
.p-admin-login {
  max-width: 400px;
  margin: 100px auto;
  padding: 2rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.p-admin-login__title {
  text-align: center;
  margin-bottom: 2rem;
}
.p-admin-login__form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.p-admin-login__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.p-admin-login__label {
  font-weight: bold;
}
.p-admin-login__input {
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.p-admin-login__button {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}
.p-admin-login__button:hover {
  background-color: #0056b3;
}
.p-admin-login__error {
  color: #dc3545;
  text-align: center;
  margin-bottom: 1rem;
}
.p-admin .status-icon--active {
  color: #28a745;
}
.p-admin .status-icon--inactive {
  color: #6c757d;
}
.p-admin .overflow-container {
  overflow-x: auto;
}
.p-admin .empty-message {
  text-align: center;
  padding: 2rem;
}

.p-admin-faqs {
  overflow-x: auto;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.p-admin-faqs__table {
  width: 100%;
  border-collapse: collapse;
}
.p-admin-faqs__table th {
  background-color: #f8f9fa;
  color: #333;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  border-bottom: 1px solid #ddd;
  white-space: nowrap;
}
.p-admin-faqs__table td {
  padding: 1rem;
  border-bottom: 1px solid #ddd;
  vertical-align: middle;
}
.p-admin-faqs__table tr:hover {
  background-color: rgba(0, 123, 255, 0.05);
}
.p-admin-faqs__product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.p-admin-faqs__actions {
  display: flex;
  gap: 1rem;
}

.p-admin-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 1rem;
}
.p-admin-tabs__item {
  padding: 0.5rem 1rem;
  color: #666;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.p-admin-tabs__item:hover {
  color: #007bff;
  background-color: rgba(0, 123, 255, 0.05);
}
.p-admin-tabs__item--active {
  color: #007bff;
  font-weight: bold;
  background-color: rgba(0, 123, 255, 0.1);
}

.p-admin-customers {
  overflow-x: auto;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.p-admin-customers__table {
  width: 100%;
  border-collapse: collapse;
}
.p-admin-customers__table th {
  background-color: #f8f9fa;
  color: #333;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  border-bottom: 1px solid #ddd;
  white-space: nowrap;
}
.p-admin-customers__table td {
  padding: 1rem;
  border-bottom: 1px solid #ddd;
  vertical-align: middle;
}
.p-admin-customers__table tr:hover {
  background-color: rgba(0, 123, 255, 0.05);
}
.p-admin-customers__actions {
  display: flex;
  gap: 1rem;
}
.p-admin-customers__status {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
}
.p-admin-customers__status--active {
  background-color: #28a745;
  color: white;
}
.p-admin-customers__status--inactive {
  background-color: #6c757d;
  color: white;
}

.p-admin-customers__table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.p-admin-customers__table th,
.p-admin-customers__table td {
  padding: 1rem;
  border-bottom: 1px solid #eee;
}
.p-admin-customers__table th {
  background-color: #f8f9fa;
  text-align: left;
  font-weight: bold;
}
.p-admin-customers__table tr:last-child td {
  border-bottom: none;
}
.p-admin-customers__actions {
  display: flex;
  gap: 0.5rem;
}

.p-admin-search {
  background-color: #fff;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.p-admin-search__title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.p-admin-search__form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.p-admin-search__group {
  flex: 1;
  min-width: 200px;
}
.p-admin-search__label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.p-admin-search__input,
.p-admin-search__select {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.p-admin-search__actions {
  display: flex;
  gap: 0.5rem;
  align-items: flex-end;
}

.p-admin-customer-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.p-admin-customer-detail__info {
  background-color: #fff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.p-admin-customer-detail__title {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #eee;
}
.p-admin-customer-detail__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.p-admin-customer-detail__item {
  margin-bottom: 1rem;
}
.p-admin-customer-detail__label {
  font-weight: bold;
  margin-bottom: 0.25rem;
  display: block;
  color: #666;
  font-size: 0.875rem;
}
.p-admin-customer-detail__value {
  font-size: 1rem;
}
.p-admin-customer-detail__note {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}
.p-admin-customer-detail__table {
  width: 100%;
  border-collapse: collapse;
}
.p-admin-customer-detail__table th,
.p-admin-customer-detail__table td {
  padding: 1rem;
  border-bottom: 1px solid #eee;
}
.p-admin-customer-detail__table th {
  background-color: #f8f9fa;
  text-align: left;
  font-weight: bold;
}
.p-admin-customer-detail__table tr:last-child td {
  border-bottom: none;
}

.p-admin-badge--active {
  background-color: #28a745;
  color: white;
}
.p-admin-badge--inactive {
  background-color: #6c757d;
  color: white;
}
.p-admin-badge--pending {
  background-color: #ffc107;
  color: #212529;
}
.p-admin-badge--completed {
  background-color: #28a745;
  color: white;
}
.p-admin-badge--unaddressed {
  background-color: #dc3545;
  color: white;
}

.p-admin-pagination {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: 0.5rem;
}
.p-admin-pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.p-admin-pagination__item--active {
  background-color: #007bff;
  color: white;
}
.p-admin-pagination__item:hover {
  background-color: #f8f9fa;
}
.p-admin-pagination__item--active:hover {
  background-color: #0056b3;
}

.u-text-center {
  text-align: center;
}

.u-text-right {
  text-align: right;
}

.u-mt-sm {
  margin-top: 1rem;
}

.u-mt-md {
  margin-top: 2rem;
}

.u-mt-lg {
  margin-top: 3rem;
}

.u-mt-xl {
  margin-top: 4rem;
}

.u-mb-sm {
  margin-bottom: 1rem;
}

.u-mb-md {
  margin-bottom: 2rem;
}

.u-mb-lg {
  margin-bottom: 3rem;
}

.u-mb-xl {
  margin-bottom: 4rem;
}

.u-p-sm {
  padding: 1rem;
}

.u-p-md {
  padding: 2rem;
}

.u-p-lg {
  padding: 3rem;
}

.u-p-xl {
  padding: 4rem;
}

.u-flex {
  display: flex;
}

.u-flex-column {
  flex-direction: column;
}

.u-flex-center {
  justify-content: center;
  align-items: center;
}

.u-hidden {
  display: none;
}

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

/* 見積り依頼フォームのスタイル */
.p-order-form {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.p-order-form h1 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 2rem;
  text-align: center;
  border-bottom: 2px solid #007bff;
  padding-bottom: 1rem;
  position: relative;
}

.p-order-form h1::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #007bff;
  border-radius: 2px;
}

.p-order-form__product {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #dee2e6;
}

.p-order-form__product-image {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.p-order-form__product-info {
  flex: 1;
}

.p-order-form__product-name {
  font-size: 1.3rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.5rem;
}

.p-order-form__product-price {
  font-size: 1.1rem;
  color: #e53935;
  font-weight: bold;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

.form-label .required {
  color: #e53935;
  font-weight: bold;
}

/* フォームの横並びレイアウト */
.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-row .form-group {
  flex: 1;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .form-row .form-group {
    margin-bottom: 1.5rem;
  }
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #dee2e6;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
}

.form-control:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-control:hover {
  border-color: #007bff;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.form-group small {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #6c757d;
}

.success-message {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  color: #155724;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  border: 1px solid #c3e6cb;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.success-message p {
  margin-bottom: 1rem;
}

.success-message p:last-child {
  margin-bottom: 0;
}

.form-error {
  background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
  color: #721c24;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  border: 1px solid #f5c6cb;
}

.form-error ul {
  margin: 0;
  padding-left: 1.5rem;
}

.form-error li {
  margin-bottom: 0.5rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .p-order-form {
    margin: 1rem;
    padding: 1.5rem;
  }

  .p-order-form__product {
    flex-direction: column;
    text-align: center;
  }

  .p-order-form__product-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1rem;
  }

  .p-order-form h1 {
    font-size: 1.5rem;
  }
}

/* フォームボタンのスタイル */
.form-group .c-button {
  margin-right: 1rem;
  margin-bottom: 0.5rem;
}

.form-group .c-button:last-child {
  margin-right: 0;
}

/* btn-wrapクラスが付与されたform-groupのスタイル */
.form-group.btn-wrap {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.form-group.btn-wrap .c-button {
  margin: 0;
}

@media (max-width: 768px) {
  .form-group .c-button {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-bottom: 1rem;
    text-align: center;
  }

  .form-group .c-button:last-child {
    margin-bottom: 0;
  }

  /* スマホ時は縦に並べる */
  .form-group.btn-wrap {
    flex-direction: column;
    gap: 1rem;
  }

  .form-group.btn-wrap .c-button {
    width: 100%;
    margin: 0;
  }
}

/* プライバシーポリシーページのスタイル */
.p-privacy {
  padding: 4rem 0;
}

.p-privacy__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.p-privacy__header {
  margin-bottom: 3rem;
  text-align: center;
}

.p-privacy__content {
  background-color: #fff;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.p-privacy__intro {
  margin-bottom: 3rem;
  padding: 2rem;
  background-color: #f8f9fa;
  border-radius: 6px;
  border-left: 4px solid #007bff;
}

.p-privacy__intro p {
  margin: 0;
  line-height: 1.7;
  color: #333;
  font-size: 1rem;
}

.p-privacy__section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
}

.p-privacy__section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.p-privacy__section-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #007bff;
  position: relative;
}

.p-privacy__section-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 40px;
  height: 3px;
  background: #007bff;
  border-radius: 2px;
}

.p-privacy__section p {
  line-height: 1.8;
  color: #333;
  margin: 0;
}

.p-privacy__list {
  margin: 1.5rem 0 0 0;
  padding-left: 2rem;
}

.p-privacy__list li {
  line-height: 1.8;
  color: #333;
  margin-bottom: 0.75rem;
  position: relative;
}

.p-privacy__list li:last-child {
  margin-bottom: 0;
}

.p-privacy__list li::marker {
  color: #007bff;
}

.p-privacy__notice {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 6px;
  border-left: 4px solid #28a745;
  margin-top: 1rem;
}

.p-privacy__notice p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: #333;
}

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

@media (max-width: 768px) {
  .p-privacy {
    padding: 2rem 0;
  }

  .p-privacy__container {
    padding: 0 1rem;
  }

  .p-privacy__content {
    padding: 2rem 1.5rem;
  }

  .p-privacy__intro {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .p-privacy__section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }

  .p-privacy__section-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .p-privacy__list {
    padding-left: 1.5rem;
    margin: 1rem 0 0 0;
  }

  .p-privacy__list li {
    margin-bottom: 0.5rem;
  }

  .p-privacy__notice {
    padding: 1.5rem;
  }
}

/* 特定商取引法の表記用のテーブルスタイル */
.p-privacy__table-wrapper {
  overflow-x: auto;
  margin-top: 2rem;
}

.p-privacy__law-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.p-privacy__law-table th,
.p-privacy__law-table td {
  padding: 1.5rem;
  border-bottom: 1px solid #eee;
  vertical-align: top;
  text-align: left;
}

.p-privacy__law-table th {
  background-color: #f8f9fa;
  font-weight: 700;
  color: #333;
  width: 30%;
  min-width: 150px;
}

.p-privacy__law-table td {
  color: #333;
  line-height: 1.7;
  width: 70%;
}

.p-privacy__law-table tr:last-child th,
.p-privacy__law-table tr:last-child td {
  border-bottom: none;
}

.p-privacy__law-table tr:hover {
  background-color: rgba(0, 123, 255, 0.02);
}

@media (max-width: 768px) {
  .p-privacy__law-table th,
  .p-privacy__law-table td {
    padding: 1rem;
  }

  .p-privacy__law-table th {
    width: 35%;
    min-width: 120px;
    font-size: 0.9rem;
  }

  .p-privacy__law-table td {
    width: 65%;
    font-size: 0.9rem;
  }
}

/* 同意チェックボックス用のスタイル */
.form-agreement {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 6px;
  border: 1px solid #dee2e6;
}

.form-agreement__item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  cursor: pointer;
}

.form-agreement__item:last-child {
  margin-bottom: 0;
}

.form-agreement__item input[type="checkbox"] {
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.form-agreement__text {
  line-height: 1.6;
  color: #333;
}

.form-agreement__link {
  color: #007bff;
  text-decoration: underline;
  cursor: pointer;
}

.form-agreement__link:hover {
  color: #0056b3;
  text-decoration: none;
}

.form-agreement__note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #dee2e6;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

.form-agreement__note a {
  color: #007bff;
  text-decoration: underline;
}

.form-agreement__note a:hover {
  color: #0056b3;
  text-decoration: none;
}

/* モーダル用のスタイル */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.modal-content {
  background-color: #fff;
  border-radius: 8px;
  max-width: 800px;
  width: 90%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid #dee2e6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.modal-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #333;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background-color: #f8f9fa;
  color: #333;
}

.modal-body {
  padding: 2rem;
  overflow-y: auto;
  flex-grow: 1;
}

/* モーダル内の法務コンテンツのスタイル */
.legal-content {
  line-height: 1.7;
}

.legal-intro {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 6px;
  border-left: 4px solid #007bff;
  margin-bottom: 2rem;
}

.legal-intro p {
  margin: 0;
  color: #333;
}

.legal-section {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-section h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #007bff;
}

.legal-section p {
  margin: 0;
  color: #333;
}

.legal-notice {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 6px;
  border-left: 4px solid #28a745;
  margin-top: 2rem;
}

.legal-notice p {
  margin-bottom: 0.75rem;
  color: #333;
}

.legal-notice p:last-child {
  margin-bottom: 0;
}

/* モーダル内のテーブルスタイル */
.legal-table-wrapper {
  overflow-x: auto;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.legal-table th,
.legal-table td {
  padding: 1rem;
  border-bottom: 1px solid #eee;
  vertical-align: top;
  text-align: left;
}

.legal-table th {
  background-color: #f8f9fa;
  font-weight: 700;
  color: #333;
  width: 30%;
  min-width: 120px;
}

.legal-table td {
  color: #333;
  line-height: 1.6;
}

.legal-table tr:last-child th,
.legal-table tr:last-child td {
  border-bottom: none;
}

.legal-table tr:hover {
  background-color: rgba(0, 123, 255, 0.02);
}

@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    max-height: 90vh;
  }

  .modal-header {
    padding: 1rem;
  }

  .modal-title {
    font-size: 1.1rem;
  }

  .modal-body {
    padding: 1.5rem;
  }

  .legal-intro {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }

  .legal-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }

  .legal-section h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .legal-notice {
    padding: 1rem;
    margin-top: 1.5rem;
  }

  .legal-table th,
  .legal-table td {
    padding: 0.75rem;
    font-size: 0.9rem;
  }

  .legal-table th {
    width: 35%;
    min-width: 100px;
  }

  .form-agreement {
    padding: 1rem;
  }

  .form-agreement__item {
    align-items: flex-start;
  }

  .form-agreement__item input[type="checkbox"] {
    margin-top: 0.125rem;
  }
}
