@charset "UTF-8";

/* ==========================================================================
   Custom Properties
   ========================================================================== */
:root {
  --color-page-bg: #e7f2f9;
  --color-white: #ffffff;

  --color-primary: #1565a8;
  --color-primary-dark: #17233c;
  --color-nav-bg: #eaf5fc;
  --color-nav-border: #cfe4f2;
  --color-accent-yellow: #f2e64c;
  --color-accent-red: #e2352f;
  --color-card-pink: #fbe4ec;
  --color-sunday-bg: #fdeef0;
  --color-line-green: #06c755;

  --color-text: #333333;
  --color-text-muted: #444444;
  --color-text-light: #666666;
  --color-text-faint: #888888;

  --color-border: #dddddd;
  --color-border-light: #eeeeee;

  --color-news-more-bg: #f6efd8;
  --color-news-more-border: #e3d3a0;
  --color-news-more-text: #7a5c1e;

  --color-footer-bg: #005098;
  --color-footer-divider: rgba(255, 255, 255, 0.3);
  --color-navy: #005098;
  --color-heading-cyan: #00a9eb;
  --color-black: #000000;

  --color-nav-bar-bg: #fef9eb;
  --color-nav-bar-border: #d0cfbc;
  --color-hamburger-bar: #358ecd;

  --color-btn-bg: #868687;
  --color-btn-text: #ffffff;

  --color-input-border: #cccccc;
  --color-input-placeholder: #868687;

  --color-checkbox-bg: #f6f6f6;
  --color-checkbox-border: #231815;

  --font-weight-demi: 600;

  --color-gray-bg: #f5f5f5;
  --color-table-head-cyan: #009fe8;
  --color-note-red: #e50012;
  --color-note-yellow-bg: #fff8b0;
  --color-note-yellow-bright: #fff000;
  --color-shop-navy: #182987;
  --color-table-stripe: #ecf6fc;
  --color-answer-red: #e60012;
  --color-privacy-blue: #008ed8;
  --color-line-dark-green: #1eaa39;
  --color-news-list-border: #9fa0a0;
  --color-news-list-bg: #fafafa;
  --color-pagination-current: #1399a9;
  --color-shop-head-bg: #008ed8;
  --color-shop-map-link: #48a2b2;
  --color-catalog-pink: #e50071;
  --color-catalog-aeon: #bd0080;
  --color-service-bg: #dcecf6;
  --color-company-btn-bg: #fff796;

  --color-order-high-bg: #d3edf9;
  --color-order-jhs-text: #007a46;
  --color-order-jhs-bg: #eaf5ee;
  --color-order-jhs-border: #007540;
  --color-order-banner-bg: #fff100;
  --color-order-banner-border: #e2dfcb;
  --color-order-product-bg: #f5f4ee;
  --color-order-size1-bg: #eef3fa;
  --color-order-size1-border: #0064b4;
  --color-order-size2-border: #231815;
  --color-order-size3-bg: #eaf5ee;
  --color-order-caution-bg: #fff9de;
  --color-order-caution-border: #c9a840;
  --color-order-border: #939173;
}

/* ==========================================================================
   Reset / Base
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background: var(--color-page-bg);
}

body {
  width: 1000px;
  margin: 0 auto;
  /* デザイン指定は游ゴシック体Pr6N。Webフォント未支給のため暫定的にOS標準の游ゴシックにフォールバックする */
  font-family: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-white);
}

img {
  display: block;
  max-width: 100%;
  border: 0;
  vertical-align: top;
}

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

ul, ol {
  list-style: none;
}

table {
  border-collapse: collapse;
}

.inner {
  width: 1000px;
  margin: 0 auto;
}

main {
  min-height: 500px;
  margin-top: 30px;
}

.main--flush-top {
  margin-top: 0;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  width: 1000px;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 42px 16px 25px;
}

.header-main__logo {
  margin: 0;
  font-size: 0;
  line-height: 0;
  display: flex;
  align-items: center;
}

.header-main__logo-img {
  width: 446px;
  height: auto;
}

.header-main__tel {
  margin: 0;
}

.header-main__tel-img {
  width: 343px;
  height: auto;
}

/* Hamburger menu button (animates to a close "X" when active, opens .nav-overlay) */
.hamburger {
  position: relative;
  z-index: 950;
  width: 90px;
  height: 76px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger__bar {
  display: block;
  width: 100%;
  height: 18px;
  border-radius: 2px;
  background: var(--color-hamburger-bar);
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.hamburger.is-active .hamburger__bar {
  background: var(--color-white);
}

.hamburger.is-active .hamburger__bar:nth-child(1) {
  transform: translateY(29px) rotate(45deg);
}

.hamburger.is-active .hamburger__bar:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active .hamburger__bar:nth-child(3) {
  transform: translateY(-29px) rotate(-45deg);
}

/* Full-page nav overlay opened by .hamburger */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-footer-bg);
  z-index: 900;
  padding: 120px 40px;
  overflow-y: auto;
}

.nav-overlay.is-active {
  display: block;
}

.nav-bar {
  background: var(--color-nav-bar-bg);
  border: 1px solid var(--color-nav-bar-border);
}

.nav-bar__list {
  display: flex;
}

.nav-bar__item {
  flex: 1;
  border-right: 1px solid var(--color-nav-bar-border);
  color: var(--color-primary);
}

.nav-bar__item:last-child {
  border-right: none;
}

.nav-bar__item a {
  display: block;
  text-align: center;
}

.nav-bar__icon {
}


/* ==========================================================================
   Page Title Bar (used on inner pages)
   ========================================================================== */
.page-title-bar {
  background: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  padding: 16px;
  letter-spacing: 0.05em;
}

.page-title-bar--lg {
  font-size: 50px;
}

/* デザイン指定は明朝系フォント。Webフォント未支給のため暫定的にOS標準の明朝にフォールバックする */
.page-title-bar--mincho {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "MS PMincho", serif;
}

/* カタログ案内選択ページ限定の見出し背景色 */
.page-title-bar--pink {
  background: var(--color-catalog-pink);
}

/* イオン店カタログページ限定の見出し背景色 */
.page-title-bar--aeon {
  background: var(--color-catalog-aeon);
}

/* ==========================================================================
   Page MV (main visual image shown under the page title bar, inner pages)
   ========================================================================== */
.page-mv {
  width: 956px;
  margin: 20px auto;
}

.page-mv__img {
  display: block;
  width: 100%;
  height: 600px;
  object-fit: cover;
}

/* ==========================================================================
   Catalog Select (catalog.html)
   ========================================================================== */
.catalog-select {
  display: flex;
  justify-content: center;
  gap: 30px;
  width: 956px;
  margin: 40px auto;
}

.catalog-select__btn img {
  display: block;
  width: 100%;
}

/* ==========================================================================
   Catalog Page (catalog-hara.html, catalog-aeon.html)
   店舗ごとのカタログ画像を並べるだけのページ
   ========================================================================== */
.catalog-page {
  width: 100%;
  margin-top: 40px;
}

.catalog-page__img {
  display: block;
  width: 100%;
}

/* ==========================================================================
   Section Card
   グレー背景の上に載せる角丸白ブロック。alteration.html(.alteration__section)と
   shops.html(.shop__access-block)で共通利用。文字サイズ等は各ブロック固有のクラスで指定する。
   ========================================================================== */
.section-card {
  background: var(--color-white);
  border-radius: 4px;
  margin: 34px 30px;
  padding: 30px 40px;
}

/* ==========================================================================
   Hero (TOP page)
   ========================================================================== */
.hero {
  position: relative;
}

.hero__img {
  display: block;
  width: 100%;
}

.hero__btn {
  position: absolute;
  display: block;
}

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

.hero__btn--1 {
  left: 17px;
  top: 1030px;
  width: 967px;
}

.hero__btn--2 {
  left: 145px;
  top: 1163px;
  width: 410px;
}

.hero__btn--3 {
  left: 569px;
  top: 1163px;
  width: 415px;
}

/* ==========================================================================
   Section heading (white background, blue text)
   ========================================================================== */
.section-heading {
  margin-top: 34px;
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.3;
  color: var(--color-navy);
}

/* ==========================================================================
   TOP page news section (MV↔section gap is margin-top only)
   ========================================================================== */
.top-news {
  margin-top: 74px;
}

.top-news::before {
  content: "";
  display: block;
  width: 960px;
  margin: 0 auto;
  border-top: 1px solid var(--color-news-list-border);
}

/* ==========================================================================
   News list (TOP page; base .news-list rules are shared with news.php
   further down, in the 'お知らせ一覧 page' section)
   ========================================================================== */
.news-list.news-list--top {
  margin: 24px 20px 30px;
}

.news-list--top .news-list__date,
.news-list--top .news-list__title {
  font-size: 19px;
}

.news__more {
  text-align: center;
  margin: 30px 24px 0;
}

.news__more a {
  display: inline-block;
  background: var(--color-nav-bar-bg);
  border: 1px solid var(--color-nav-bar-border);
  color: var(--color-navy);
  font-size: 26px;
  font-weight: bold;
  line-height: 1.3;
  padding: 14px 50px;
  border-radius: 30px;
}

/* ==========================================================================
   Calendar widget (Google Calendar embed)
   ========================================================================== */
.calendar {
  width: 960px;
  margin: 40px auto 0;
}

.calendar__header {
  background: var(--color-privacy-blue);
  padding: 16px;
  text-align: center;
}

.calendar__header-title {
  color: var(--color-white);
  font-size: 40px;
  font-weight: bold;
  line-height: 1.3;
}

.calendar__iframe-wrap {
  margin-top: 50px;
}

.calendar__iframe {
  display: block;
  width: 960px;
  height: 780px;
}

/* ==========================================================================
   Support info banner
   ========================================================================== */
.support-banner {
  background: var(--color-service-bg);
  margin-top: 30px;
  padding: 60px 20px 80px;
}

.support-banner__title {
  text-align: center;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.3;
  color: var(--color-navy);
}

.support-banner__text {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.8;
  color: var(--color-black);
  text-align: center;
  margin-top: 20px;
}

/* Service banners (top-bnr01-04.png; text/icons are baked into each image) */
.service-banners {
  width: 960px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-banners img {
  width: 100%;
}

/* ==========================================================================
   Company overview
   ========================================================================== */
.company {
  margin-top: 46px;
  padding: 0 20px;
  text-align: center;
}

.company__title {
  font-size: 56px;
  font-weight: bold;
  line-height: 1.3;
  color: var(--color-navy);
}

.company__text {
  margin-top: 20px;
  font-size: 20px;
  line-height: 2.3;
  color: var(--color-black);
  text-align: center;
}

.company__photo {
  margin-top: 20px;
}

.company__photo-img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.company__caption {
  margin-top: 8px;
  font-size: 20px;
  line-height: 2.3;
  color: var(--color-black);
}

.company__buttons {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.company__buttons a {
  background: var(--color-company-btn-bg);
  color: var(--color-navy);
  font-size: 44px;
  line-height: 1.3;
  padding: 10px 40px;
  border-radius: 30px;
}

/* ==========================================================================
   Contact banner (reuses .privacy__contact-box, see below)
   ========================================================================== */
.contact-banner {
  margin-top: 54px;
}

.contact-banner__icon {
  width: 60px;
  height: auto;
  margin: 12px auto 0;
}

/* ==========================================================================
   Group companies
   ========================================================================== */
.group-companies {
  margin-top: 80px;
  padding: 0 20px;
  text-align: center;
}

.group-companies__title {
  font-size: 56px;
  font-weight: bold;
  line-height: 1.3;
  color: var(--color-navy);
}

.group-companies__list {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
  align-items: flex-start;
}

.group-companies__list a {
  display: block;
}

.group-companies__logo {
  height: auto;
}

.group-companies__logo--kanko {
  width: 400px;
}

.group-companies__logo--mitsuta {
  width: 338px;
}

/* ==========================================================================
   Footer photo (full-bleed, first item in .site-footer)
   ========================================================================== */
.site-footer__photo {
  background-color: var(--color-white);
  padding: 28px 28px 50px;
}
.site-footer__photo img {
  display: block;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--color-footer-bg);
  color: var(--color-white);
  font-size: 13px;
  margin-top: 40px;
}

.site-footer__top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 24px 0;
}

.site-footer__shop-info .site-footer__shop-name {
  font-size: 35px;
  font-weight: var(--font-weight-demi);
}

.site-footer__shop-info p {
  font-size: 20px;
  color: var(--color-white);
}

.site-footer__shop__contact {
  margin-top: 8px;
}

.site-footer__shop__contact p + p {
  margin-top: 4px;
}

.site-footer__shop-info .tel {
  font-size: 27px;
  font-weight: var(--font-weight-demi);
  color: var(--color-white);
  margin-top: 6px;
}

.site-footer__links {
  display: flex;
  gap: 40px;
}

.nav-overlay .site-footer__links {
  justify-content: center;
}

.site-footer__links ul li {
  font-size: 20px;
  color: var(--color-white);
}

.site-footer__links ul li + li {
  margin-top: 6px;
}

.site-footer__copyright {
  text-align: center;
  color: var(--color-white);
  border-top: 1px solid var(--color-footer-divider);
  padding: 14px 24px;
  font-size: 19px;
  margin-top: 20px;
}

/* ==========================================================================
   School list page
   ========================================================================== */
.school-list {
  padding: 0 24px 24px;
}

.school-list__block-title {
  background: var(--color-heading-cyan);
  color: var(--color-white);
  font-weight: bold;
  font-size: 45px;
  padding: 10px 14px;
  margin: 24px -24px 12px;
}

.school-list__city-title {
  color: var(--color-navy);
  font-weight: bold;
  font-size: 30px;
  margin: 14px 0 4px;
}

.school-list__names + .school-list__city-title {
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
}

.school-list__ward-title {
  color: var(--color-primary);
  font-weight: bold;
  font-size: 30px;
  margin: 10px 0 2px;
}

.school-list__names {
  font-size: 28px;
  font-weight: bold;
  color: var(--color-black);
  margin-bottom: 1em;
}

.school-list__names li {
  display: inline;
  white-space: nowrap;
}

.school-list__names li::after {
  content: "、";
}

.school-list__names li:last-child::after {
  content: none;
}

.school-list__note {
  font-size: 19px;
  color: var(--color-black);
  margin-top: 16px;
}

/* ==========================================================================
   Contact form page
   ========================================================================== */
.contact-intro {
  width: 956px;
  margin: 40px auto;
  font-size: 28px;
  line-height: 1.7;
  color: var(--color-black);
}

.contact-form {
  width: 956px;
  margin: 0 auto;
}

.form-row + .form-row {
  margin-top: 32px;
}

.form-row label {
  display: block;
  font-weight: bold;
  font-size: 28px;
  line-height: 1.4;
  color: var(--color-black);
}

.form-row .required {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.4;
  color: var(--color-answer-red);
  margin-left: 4px;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row textarea {
  width: 100%;
  border: 1px solid var(--color-input-border);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 40px;
  line-height: 1.5;
  color: var(--color-black);
  font-family: inherit;
  margin-top: 10px;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  font-size: 40px;
  line-height: 1.5;
  color: var(--color-input-placeholder);
}

.form-row textarea {
  height: 280px;
  resize: vertical;
}

.form-row--checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  background: var(--color-checkbox-bg);
  border: 1px solid var(--color-checkbox-border);
  border-radius: 8px;
  font-size: 28px;
  line-height: 1.4;
  color: var(--color-black);
}

.form-row--checkbox label {
  font-weight: normal;
  font-size: 28px;
  line-height: 1.4;
  color: var(--color-black);
  margin: 0;
}

.form-note {
  font-size: 28px;
  line-height: 1.5;
  color: var(--color-black);
  margin-top: 32px;
}

.form-buttons {
  display: flex;
  gap: 5%;
  margin-top: 20px;
  justify-content: center;
}

.form-buttons button,
.form-buttons a {
  background: var(--color-btn-bg);
  color: var(--color-btn-text);
  font-weight: bold;
  font-size: 42px;
  line-height: 1.4;
  width: 45%;
  padding: 12px 0;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
}

/* ==========================================================================
   Contact form: confirm/complete screens (contact/mail.php)
   ========================================================================== */
.confirm-table {
  width: 956px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0 20px;
}

.confirm-table th,
.confirm-table td {
  text-align: left;
  padding: 16px 20px;
  font-size: 28px;
  line-height: 1.5;
  color: var(--color-black);
  vertical-align: top;
}

.confirm-table th {
  width: 260px;
  font-weight: bold;
  white-space: nowrap;
}

.confirm-table td {
  border: 1px solid var(--color-input-border);
  border-radius: 8px;
}

.error_messe {
  font-size: 28px;
  line-height: 1.5;
  color: var(--color-answer-red);
  margin: 8px 0;
}

/* ==========================================================================
   3年間無料補正 page (alteration.html)
   ========================================================================== */
.alteration {
  background: var(--color-gray-bg);
  padding-bottom: 140px;
}

.alteration__catch {
  background: var(--color-white);
  text-align: center;
  padding: 32px 24px 100px;
}

.alteration__catch-title {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.375;
  color: var(--color-navy);
}

.alteration__catch-text {
  font-size: 18px;
  line-height: 2.2;
  color: var(--color-black);
  margin-top: 20px;
}

.alteration__heading {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.6;
  color: var(--color-navy);
}

.alteration__heading + .alteration__list,
.alteration__heading + .alteration__text {
  margin-top: .2em;
}

.alteration__heading-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.alteration__heading-row + .alteration__list {
  margin-top: 16px;
}

.alteration__list li {
  position: relative;
  padding-left: 1.3em;
  font-size: 17px;
  line-height: 2.4;
  color: var(--color-black);
}

.alteration__list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0;
}

.alteration__list li.alteration__list-item--note::before {
  content: "※";
}

.alteration__list li.alteration__list-item--plain {
  padding-left: 0;
}

.alteration__list li.alteration__list-item--plain::before {
  content: none;
}

.alteration__list--sub {
  padding-left: 0;
}

.alteration__table-wrap {
  margin-top: 90px;
}
.alteration__table-wrap:first-of-type {
  margin-top: 20px;
}

.alteration__table {
  width: 100%;
  table-layout: fixed;
}

.alteration__table thead th {
  background: var(--color-table-head-cyan);
  color: var(--color-white);
  font-size: 22px;
  font-weight: bold;
  padding: 8px;
  border: 1px solid var(--color-white);
  line-height: 1.2;
}

.alteration__table thead th:first-child {
  background: var(--color-navy);
  width: 44%;
}
.alteration__table thead th:last-child {
  width: 32%;
}

.alteration__table tbody th,
.alteration__table tbody td {
  border-bottom: 1px solid var(--color-table-head-cyan);
  padding: 18px 8px;
  text-align: center;
  vertical-align: middle;
}

.alteration__table tbody tr:nth-child(odd) th,
.alteration__table tbody tr:nth-child(odd) td {
  background: var(--color-table-stripe);
}

.alteration__table tbody tr:nth-child(even) th,
.alteration__table tbody tr:nth-child(even) td {
  background: var(--color-white);
}

.alteration__product-name {
  display: block;
  font-size: 30px;
  font-weight: bold;
  color: var(--color-navy);
  line-height: 1.2;
}

.alteration__product-code {
  display: block;
  font-size: 21px;
  color: var(--color-navy);
  line-height: 1.375;
  margin-top: .25em;
}

.alteration__table tbody td {
  font-size: 29px;
  font-weight: bold;
  color: var(--color-navy);
  line-height: 1.2;
}

.alteration__note {
  margin-top: 36px;
  padding: 14px 18px;
  text-align: center;
  background: var(--color-note-yellow-bg);
}

.alteration__note--table {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.375;
  color: var(--color-note-red);
}

.alteration__note--exclude {
  margin-top: 0;
  font-weight: bold;
  line-height: 1.2;
  background: var(--color-note-yellow-bright);
}

.alteration__note-label {
  font-size: 20px;
  color: var(--color-note-red);
}

.alteration__note-body {
  font-size: 17px;
  color: var(--color-black);
}

.alteration__text {
  font-size: 17px;
  line-height: 2.4;
}

.alteration__shop-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  border-top: 1px solid var(--color-table-head-cyan);
  border-bottom: 1px solid var(--color-table-head-cyan);
}

.alteration__shop-row {
  border-bottom: 1px solid var(--color-table-head-cyan);
}

.alteration__shop-row:last-child {
  border-bottom: none;
}

.alteration__shop-row:nth-child(odd) {
  background: var(--color-table-stripe);
}

.alteration__shop-row:nth-child(even) {
  background: var(--color-white);
}

.alteration__shop-body {
  padding: 16px 16px;
  vertical-align: top;
}

.alteration__shop-name,
.alteration__shop-location,
.alteration__shop-hours {
  padding-left: 40px;
}

.alteration__shop-name {
  position: relative;
  font-size: 34px;
  font-weight: bold;
  color: var(--color-shop-navy);
}

.alteration__shop-name::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: 2px solid var(--color-shop-navy);
}

.alteration__shop-location {
  font-size: 31px;
  font-weight: bold;
  color: var(--color-shop-navy);
}

.alteration__shop-hours {
  font-size: 24px;
  font-weight: bold;
  color: var(--color-shop-navy);
}

/* ==========================================================================
   Q&A page (qa.html)
   ========================================================================== */
.qa {
  counter-reset: qa-count;
}

.qa__item {
  counter-increment: qa-count;
  width: 956px;
  margin: 0 auto;
  padding: 40px 10px;
  border-bottom: 1px solid var(--color-border);
}

.qa__question {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.4;
  color: var(--color-navy);
}

.qa__question::before {
  content: "Q" counter(qa-count);
  display: block;
  font-size: 52px;
  font-weight: bold;
  line-height: 0.8;
  color: var(--color-navy);
  margin-bottom: 12px;
}

.qa__answer {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 20px;
}

.qa__answer-icon {
  flex: none;
}

.qa__answer-body {
  flex: 1 1 auto;
  min-width: 0;
}

.qa__answer-text {
  font-size: 30px;
  font-weight: normal;
  line-height: 1.4;
  color: var(--color-answer-red);
}

.qa__answer-note {
  position: relative;
  padding-left: 1.2em;
  margin-top: 8px;
  font-size: 24px;
  line-height: 1.3;
  color: var(--color-answer-red);
}

.qa__answer-note::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

/* ==========================================================================
   会社概要 page (company.html)
   ========================================================================== */
.company-info {
  width: 956px;
  margin: 20px auto 0;
  padding-bottom: 100px;
}

.company-info__row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 0;
}

.company-info__term {
  position: relative;
  flex: none;
  width: 265px;
  padding-right: 34px;
  font-size: 28px;
  font-weight: normal;
  line-height: 1.6;
  color: var(--color-navy);
  text-align: justify;
  text-align-last: justify;
  text-justify: inter-character;
}

.company-info__term::after {
  content: "／";
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  text-align: center;
}

.company-info__desc {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.6;
  color: var(--color-black);
}

.company-info__shop {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.company-info__shop + .company-info__shop {
  margin-top: 24px;
}

.company-info__shop dd p {
  margin: 0 0 4px;
}

.company-info__shop-name {
  flex: none;
  width: 140px;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.6;
  color: var(--color-navy);
}

.company-info__link-btn {
  display: block;
  width: fit-content;
  margin-top: 8px;
  padding: 4px 16px;
  border-radius: 1em;
  white-space: nowrap;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.6;
  text-align: center;
  text-align-last: auto;
  text-justify: auto;
  color: var(--color-white);
  background: var(--color-navy);
  text-decoration: none;
}

.company-info__category + .company-info__category {
  margin-top: 28px;
}

.company-info__category-title {
  margin-bottom: 4px;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.6;
  color: var(--color-navy);
}

.company-info__category-title--sub {
  margin-top: 16px;
  color: var(--color-black);
}

.company-info__school-list {
  display: inline-block;
  margin-bottom: 1em;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.6;
  color: var(--color-black);
  vertical-align: top;
}

/* ==========================================================================
   プライバシーポリシー page (privacy.html)
   ========================================================================== */
.privacy {
  width: 956px;
  margin: 0 auto;
  padding-bottom: 100px;
}

.privacy__bar {
  margin: 40px 0 30px;
}

.privacy__block + .privacy__block {
  margin-top: 40px;
}

.privacy__heading {
  position: relative;
  padding-left: 1.2em;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.6;
  color: var(--color-black);
}

.privacy__heading::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
}

.privacy__text + .privacy__heading {
  margin-top: 28px;
}

.privacy__text {
  padding-left: 1.2em;
  font-size: 28px;
  font-weight: normal;
  line-height: 1.6;
  color: var(--color-black);
  margin-top: 4px;
}

.privacy__contact-lead {
  text-align: center;
  font-size: 38px;
  font-weight: bold;
  color: var(--color-privacy-blue);
  margin: 40px 0 .25em;
}

.privacy__contact-box {
  display: block;
  width: 1000px;
  margin-left: calc(50% - 500px);
  margin-right: calc(50% - 500px);
  background: var(--color-privacy-blue);
  text-align: center;
  padding: 30px;
}

.privacy__contact-name {
  font-size: 38px;
  font-weight: bold;
  line-height: 1.2;
  color: var(--color-white);
}

.privacy__contact-tel {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2;
  color: var(--color-white);
}

.privacy__contact-name + .privacy__contact-tel {
  margin-top: 4px;
}

.privacy__line-lead {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  color: var(--color-line-dark-green);
  margin: 30px 0 .25em;
}

.privacy__line-banner-link {
  display: block;
  width: 956px;
  margin: 0 auto 40px;
}

.privacy__line-banner {
  width: 100%;
}

/* ==========================================================================
   お知らせ一覧 page (news.php)
   ========================================================================== */
.news-list {
  margin: 60px 20px 30px;
  border-radius: 4px;
  border: 1px solid var(--color-news-list-border);
  background: var(--color-news-list-bg);
  padding: 12px 24px;
}

.news-list__item {
  border-bottom: 1px solid var(--color-news-list-border);
}

.news-list__empty {
  padding: 24px 0;
  text-align: center;
  color: var(--color-text-light);
}

.news-list__item:last-child {
  border-bottom: none;
}

.news-list__link {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 0;
}

.news-list__date {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: none;
  font-size: 17px;
  font-weight: normal;
  line-height: 1.7;
  color: #000000;
  white-space: nowrap;
}

.news-list__date-icon {
  width: 17px;
  height: 17px;
}

.news-list__title {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 17px;
  font-weight: normal;
  line-height: 1.7;
  color: #000000;
}

/* ==========================================================================
   Pagination (news.php)
   ========================================================================== */
.pagination__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 30px 0;
}

.pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 4px;
  border-radius: 4px;
  border: 1px solid var(--color-news-list-border);
  background: var(--color-white);
  color: #000000;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}

.pagination__item--current {
  color: var(--color-white);
  background: var(--color-pagination-current);
  border-color: var(--color-pagination-current);
}

/* ==========================================================================
   お知らせ詳細ページ (news-detail.php)
   ========================================================================== */
.news-detail {
  width: 956px;
  margin: 60px auto;
}

.news-detail__date {
  font-size: 17px;
  color: var(--color-news-list-border);
}

.news-detail__title {
  margin: 8px 0 0;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-news-list-border);
  font-size: 17px;
  font-weight: bold;
}

.news-detail__body {
  margin-top: 30px;
  font-size: 17px;
  line-height: 1.6;
}

.news-detail__back {
  display: flex;
  justify-content: flex-end;
  margin-top: 50px;
}

.news-detail__back-img {
  width: 200px;
  height: auto;
}

/* ==========================================================================
   店舗一覧 page (shops.html)
   ========================================================================== */
.shop-list {
  padding-bottom: 100px;
}

.shop + .shop {
  margin-top: 60px;
}

.shop__head {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 20px 22px;
  background: var(--color-shop-head-bg);
  color: var(--color-white);
}

.shop__name {
  font-size: 42px;
  font-weight: bold;
  line-height: 1.3;
}

.shop__type {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.3;
}

.shop__photo {
  text-align: center;
  margin-top: 48px;
}

.shop__photo img {
  display: inline-block;
  width: 570px;
  height: auto;
}

.shop__body {
  width: 956px;
  margin: 48px auto;
}

.shop__info-row {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 14px 20px;
}

.shop__info-term {
  flex: none;
  width: 270px;
  font-size: 29px;
  font-weight: bold;
  line-height: 1.6;
  color: var(--color-navy);
  text-align: justify;
  text-align-last: justify;
  text-justify: inter-character;
}

.shop__info-desc {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 29px;
  font-weight: bold;
  line-height: 1.6;
  color: var(--color-black);
}

.shop__map {
  margin: 32px auto;
}

.shop__map-frame {
  display: block;
  width: 950px;
  height: 630px;
  margin: 0 auto;
  border: 0;
}

.shop__map-link {
  display: block;
  width: 950px;
  margin: 10px auto 0;
  font-size: 29px;
  line-height: 1.6;
  text-align: center;
  color: var(--color-shop-map-link);
}

.shop__access {
  width: 1000px;
  margin-top: 80px;
  margin-left: calc(50% - 500px);
  margin-right: calc(50% - 500px);
  padding: 1px 0;
  background: var(--color-gray-bg);
}

.shop__access-heading {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.6;
  color: var(--color-navy);
}

.shop__access-item {
  position: relative;
  padding-left: 1.1em;
  font-size: 19px;
  font-weight: normal;
  line-height: 2.4;
  color: var(--color-black);
}

.shop__access-item::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0;
}

.shop__access-item-title,
.shop__access-item-text {
  font-size: 19px;
  font-weight: normal;
  line-height: 2.4;
  color: var(--color-black);
}

/* ==========================================================================
   学校用品ご注文ページ (order.html)
   ========================================================================== */
.order-intro {
  width: 956px;
  margin: 40px auto 0;
  text-align: left;
}

.order-intro__title {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.3;
  color: var(--color-navy);
}

.order-intro__desc {
  font-size: 26px;
  font-weight: normal;
  line-height: 1.5;
  color: var(--color-black);
  margin-top: 16px;
}

.order-anchor-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 32px auto 0;
  width: 956px;
}

.order-anchor-nav__item {
  flex: 1;
}

.order-anchor-nav__btn {
  display: block;
  text-align: center;
  padding: 12px;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.3;
  border-radius: 1em;
  border: 3px solid;
  text-decoration: none;
}

.order-anchor-nav__btn--high {
  color: var(--color-navy);
  background: var(--color-order-high-bg);
  border-color: var(--color-navy);
}

.order-anchor-nav__btn--jhs {
  color: var(--color-order-jhs-text);
  background: var(--color-order-jhs-bg);
  border-color: var(--color-order-jhs-border);
}

.order-shipping-note {
  margin-top: 72px;
  padding: 24px 32px;
  font-size: 29px;
  line-height: 1.5;
  color: var(--color-black);
  background: var(--color-order-banner-bg);
}

.order-schools {
  border-top: 15px solid var(--color-order-banner-border);
  border-bottom: 15px solid var(--color-order-banner-border);
  margin-top: 40px;
}

.order-school {
  width: 900px;
  margin: 60px auto;
}

.order-school__name {
  text-align: left;
  padding: 8px 24px;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.3;
  border-radius: 1em;
  border: 3px solid;
  display: inline-block;
  text-align: center;
  width: 340px;
}

.order-school__name--high {
  color: var(--color-navy);
  background: var(--color-order-high-bg);
  border-color: var(--color-navy);
}

.order-school__name--jhs {
  color: var(--color-order-jhs-text);
  background: var(--color-order-jhs-bg);
  border-color: var(--color-order-jhs-border);
}

.order-product {
  display: grid;
  grid-template-columns: 190px 1fr;
  column-gap: 24px;
  row-gap: 20px;
  padding: 0 24px 24px;
  border: 2px solid var(--color-order-border);
  border-radius: 8px;
  margin-top: 32px;
  overflow: hidden;
}

.order-product__head {
  grid-column: 1 / -1;
  margin: 0 -24px;
  background: var(--color-order-product-bg);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
}

.order-product__head-main {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.order-product__name {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.2;
  color: var(--color-black);
}

.order-product__desc {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-black);
}

.order-product__type {
  font-size: 29px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-black);
}

.order-product__price {
  text-align: right;
}

.order-product__price-main {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.2;
  color: var(--color-black);
}

.order-product__tax-label {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2;
  color: var(--color-black);
}

.order-product__price-excl {
  margin-top: 4px;
}

.order-product__price-excl-label {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2;
  color: var(--color-black);
  margin-right: 8px;
}

.order-product__price-excl-amount {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.2;
  color: var(--color-black);
}

.order-product__note-under-name {
  grid-column: 1 / -1;
  font-size: 29px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-black);
}

.order-product__body {
  display: contents;
}

.order-product__photo {
  grid-row: span 2;
  width: 190px;
}

.order-product__img {
  width: 190px;
  height: auto;
  border: 1px solid var(--color-black);
}

.order-product__photo-caution {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.4;
  color: var(--color-answer-red);
  margin-top: 12px;
}

.order-product__photo-label {
  margin-top: 8px;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.3;
  color: var(--color-black);
  text-align: center;
}

.order-product__sizes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.order-product__size-label {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-black);
}

.order-product__size-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  list-style: none;
}

.order-product__size-list li {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.2;
  color: var(--color-black);
  padding: 8px 8px;
  border-radius: 6px;
  border: 1px solid;
  width: 80px;
  text-align: center;
}

.order-product__size-list--a li {
  background: var(--color-order-size1-bg);
  border-color: var(--color-order-size1-border);
}

.order-product__size-list--b li {
  background: var(--color-white);
  border-color: var(--color-order-size2-border);
}

.order-product__size-list--c li {
  background: var(--color-order-size3-bg);
  border-color: var(--color-order-jhs-border);
}

.order-product__foot {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.order-product__field {
  display: flex;
  align-items: center;
  gap: 16px;
}

.order-product__field-label {
  width: 140px;
  flex-shrink: 0;
  font-size: 29px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-black);
  white-space: nowrap;
}

.order-product__field-static {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.3;
  color: var(--color-black);
}

.order-product__field select {
  width: 220px;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.3;
  color: var(--color-black);
  font-family: inherit;
  padding: 8px 12px;
  border: 1px solid var(--color-input-border);
  border-radius: 8px;
}

.order-product__field--size {
  width: 100%;
}

.order-product__field--size select {
  flex: 1;
  width: auto;
}

.order-product__foot-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.order-product__field--subtotal {
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  margin-left: auto;
  text-align: right;
}

.order-product__field--subtotal .order-product__field-label {
  width: auto;
}

.order-product__subtotal-amount {
  font-size: 37px;
  font-weight: bold;
  line-height: 1.3;
  color: var(--color-black);
}

.order-product__caution {
  margin-top: 32px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-black);
  background: var(--color-order-caution-bg);
  border: 1px solid var(--color-order-caution-border);
  border-radius: 8px;
  padding: 16px 24px;
}

.order-product__caution + .order-product {
  margin-top: 12px;
}

.order-summary-block {
  width: 900px;
  margin: 60px auto 0;
}

.order-summary__title {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.2;
  color: var(--color-black);
  background: var(--color-order-product-bg);
  border-top: 1px solid var(--color-order-border);
  border-left: 1px solid var(--color-order-border);
  border-right: 1px solid var(--color-order-border);
  border-radius: 4px 4px 0 0;
  padding: 20px;
}

.order-summary {
  width: 100%;
  border-left: 1px solid var(--color-order-border);
  border-right: 1px solid var(--color-order-border);
  border-bottom: 1px solid var(--color-order-border);
  border-collapse: collapse;
  border-radius: 0 0 4px 4px;
}

.order-summary__label {
  width: 40%;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.2;
  color: var(--color-black);
  border-top: 1px solid var(--color-order-border);
  padding: 4px 20px;
  text-align: left;
}

.order-summary__value {
  border-top: 1px solid var(--color-order-border);
  padding: 4px 20px;
  text-align: right;
}

.order-summary tr:first-child .order-summary__label,
.order-summary tr:first-child .order-summary__value {
  border-top: none;
}

.order-summary__amount {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.7;
  color: var(--color-black);
}

.order-summary__tax-tag {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.7;
  color: var(--color-black);
}

.order-summary__note {
  font-size: 29px;
  font-weight: bold;
  line-height: 1.5;
  color: var(--color-black);
  text-align: left;
  border-top: 1px solid var(--color-order-border);
  padding: 20px;
}

.order-summary__total-row .order-summary__label,
.order-summary__total-row .order-summary__value {
  background: var(--color-order-product-bg);
}

.order-form {
  width: 920px;
  margin: 60px auto 0;
}

.order-form__title {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.3;
  color: var(--color-black);
}

.order-form__note {
  font-size: 29px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-black);
  margin-top: 12px;
}

.order-form__note + .order-form__row {
  margin-top: 32px;
}

.order-form__row + .order-form__row {
  margin-top: 32px;
}

.order-form__row label {
  display: block;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.3;
  color: var(--color-black);
}

.order-form__required {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.3;
  color: var(--color-answer-red);
  margin-left: 4px;
}

.order-form__row input[type="text"],
.order-form__row input[type="email"],
.order-form__row input[type="tel"],
.order-form__row select,
.order-form__row textarea {
  width: 100%;
  border: 1px solid var(--color-input-border);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 42px;
  font-weight: bold;
  line-height: 1.3;
  color: var(--color-black);
  font-family: inherit;
  margin-top: 10px;
}

.order-form__row input::placeholder,
.order-form__row textarea::placeholder {
  font-size: 42px;
  color: var(--color-input-placeholder);
}

.order-form__row textarea {
  height: 280px;
  resize: vertical;
}

#order-form-items {
  height: 160px;
}

.order-form__row input:disabled,
.order-form__row textarea:disabled,
.order-form__row input:read-only,
.order-form__row textarea:read-only {
  background: var(--color-checkbox-bg);
  color: var(--color-input-placeholder);
  cursor: not-allowed;
}

.order-form__row--checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  background: var(--color-checkbox-bg);
  border: 1px solid var(--color-checkbox-border);
  border-radius: 8px;
}

.order-form__row--checkbox label {
  font-weight: normal;
  font-size: 28px;
  line-height: 1.3;
  color: var(--color-black);
  margin: 0;
}

.order-form__required-note {
  font-size: 28px;
  line-height: 1.5;
  color: var(--color-black);
  margin-top: 60px;
}

.order-form__buttons {
  display: flex;
  gap: 5%;
  justify-content: center;
  margin-top: 60px;
}

.order-form__buttons button {
  background: var(--color-btn-bg);
  color: var(--color-btn-text);
  font-weight: bold;
  font-size: 42px;
  line-height: 1.4;
  width: 45%;
  padding: 12px 0;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.order-form__contact-note {
  text-align: center;
  font-size: 24px;
  line-height: 1.6;
  color: var(--color-black);
  margin: 40px 0 60px;
}

.order-form__contact-note-tel {
  font-size: 22px;
}
