@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul, summary {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

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

/* common */
*, *::before, *::after {
  box-sizing: border-box;
}

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

a {
  text-decoration: none;
  transition: all 0.3s ease-out;
}

.pc {
  display: initial !important;
}

.sp {
  display: none !important;
}

@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: initial !important;
  }
}
:root {
  --primary: #004ea2;
  --primary-pale: #aec7de;
  --accent: #6e4b3f;
  --accent-pale: #d5c5b0;
  --accent-light: #f8f6f2;
  --success: #4caf50;
  --warning: #ff9800;
  --error: #f44336;
  --disabled: #999;
  --emphasis: #cc3300;
  --news: #dddddd;
  --watch:#a5d4ad;
  --eyewear: #bbb3d8;
  --lens: #9fd9f6;
  --jewelry: #ffe893;
  --hearing-aid: #f5b090;
  --maintenance: #af9187;
  --text: #595757;
  --text-pale: #898989;
  --border: #898989;
  --border-pale: #dddddd;
  --bg-base: #efefef;
  --bg-accent: #f8f6f2;
  --bg:#f7f7f7;
  --highlight: #f8f882;
  --white: #fff;
  --black: #000;
}

.page-title {
  font-size: clamp(2.25rem, 1.3928571429rem + 2.1428571429vw, 3rem);
  line-height: 1.4;
}

.section-heading {
  font-size: clamp(1.75rem, 0.8928571429rem + 2.1428571429vw, 2.5rem);
  font-family: "Yu Mincho", "YuMincho", serif;
  line-height: 1.4;
  margin-bottom: clamp(32px, 4vw, 48px);
  letter-spacing: 0.1em;
  color: var(--primary);
}

.parts-heading {
  font-family: "Yu Mincho", "YuMincho", serif;
  font-size: clamp(1.125rem, 0.6964285714rem + 1.0714285714vw, 1.5rem);
  line-height: 1.4;
}

.card-heading {
  font-size: clamp(1rem, 0.7142857143rem + 0.7142857143vw, 1.25rem);
  line-height: 1.4;
}

.paragraph-heading {
  font-size: clamp(0.875rem, 0.7321428571rem + 0.3571428571vw, 1rem);
  line-height: 1.5;
}

.lead {
  font-size: clamp(1rem, 0.8571428571rem + 0.3571428571vw, 1.125rem);
  line-height: 2.8;
}

.text-l {
  font-size: clamp(1rem, 0.8571428571rem + 0.3571428571vw, 1.125rem);
  line-height: 1.8;
}

.text {
  font-size: clamp(0.875rem, 0.7321428571rem + 0.3571428571vw, 1rem);
  line-height: 1.8;
}

.note {
  font-size: clamp(0.75rem, 0.6071428571rem + 0.3571428571vw, 0.875rem);
  line-height: 1.6;
}

.text-s {
  font-size: clamp(0.625rem, 0.4821428571rem + 0.3571428571vw, 0.75rem);
  line-height: 1;
}

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

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

.bold {
  font-weight: 700;
}

.marker {
  background: linear-gradient(to top, var(--marker) 50%, transparent 50%);
}

.underline {
  text-decoration: underline;
  text-underline-offset: 0.1em;
}

.kome {
  position: relative;
  padding-left: 1em;
  text-indent: -1em;
}
.kome::before {
  content: "※";
}

.c-white {
  color: var(--white);
}

.c-primary {
  color: var(--primary);
}

.c-accent {
  color: var(--accent);
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: var(--white);
  z-index: 100;
  padding-inline: 24px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .l-header {
    height: 60px;
  }
}
.l-header .site-logo {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.3333333333vw, 16px);
}
@media (max-width: 767px) {
  .l-header .site-logo {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
.l-header .site-logo > a {
  width: clamp(180px, 23.3333333333vw, 280px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-header .site-logo p {
  font-size: clamp(0.6875rem, 0.4732142857rem + 0.5357142857vw, 0.875rem);
  line-height: 1;
}

.gnav {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}
.gnav .inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.gnav .inner a {
  color: var(--text);
}
.gnav .inner a.current {
  color: var(--primary);
}
@media (max-width: 767px) {
  .gnav .inner a.current {
    color: var(--white);
  }
}
@media (max-width: 1024px) {
  .gnav {
    --top:60px;
    position: fixed;
    top: var(--top);
    left: 0;
    width: 100%;
    height: calc(100dvh - var(--top));
    background: var(--primary);
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease-out;
  }
  .gnav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .gnav .inner {
    flex-direction: column;
    justify-content: center;
  }
  .gnav .inner a {
    color: var(--white);
    font-size: 1.5rem;
  }
}

.search-form {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  width: 230px;
  height: 36px;
}
@media (max-width: 1024px) {
  .search-form {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 36px;
  }
}

.search-input {
  flex: 1;
  height: 100%;
  border: 1px solid var(--border-pale);
  border-radius: 4px;
  padding: 0 1em;
}

.icon-search {
  display: block;
  width: 24px;
  aspect-ratio: 1;
  -webkit-mask: url(../images/search.svg) no-repeat center/contain;
          mask: url(../images/search.svg) no-repeat center/contain;
  background: var(--text);
}
@media (max-width: 1024px) {
  .icon-search {
    background: var(--white);
  }
}

.toggle {
  display: none;
}
@media (max-width: 1024px) {
  .toggle {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 32px;
    aspect-ratio: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
  }
  .toggle span {
    width: 80%;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
    position: relative;
    transition: all 0.3s ease-out;
  }
  .toggle span::before, .toggle span::after {
    content: "";
    width: 100%;
    height: 2px;
    border-radius: 1px;
    background: var(--text);
    position: absolute;
    transition: all 0.3s ease-out;
  }
  .toggle span::before {
    top: -6px;
    left: 0;
  }
  .toggle span::after {
    top: 6px;
    left: 0;
  }
  .toggle.is-active span {
    height: 0;
  }
  .toggle.is-active span::before, .toggle.is-active span::after {
    top: initial;
  }
  .toggle.is-active span::before {
    transform: rotate(45deg);
  }
  .toggle.is-active span::after {
    transform: rotate(-45deg);
  }
}

.cta-side {
  position: fixed;
  top: 200px;
  width: 48px;
  right: 0;
  background: var(--primary);
  border-radius: 8px 0 0 8px;
  z-index: 90;
  transition: background 0.3s ease-out;
}
.cta-side:hover {
  background: var(--primary-pale);
}
.cta-side a {
  padding: clamp(12px, 1.3333333333vw, 16px);
  color: var(--white);
  font-size: clamp(0.875rem, 0.7321428571rem + 0.3571428571vw, 1rem);
  line-height: 1;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.cta-side a:hover {
  color: var(--primary);
}
@media (max-width: 767px) {
  .cta-side {
    top: initial;
    bottom: 0;
    right: initial;
    left: 4%;
    width: 92%;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 8px 8px 0 0;
    text-align: center;
  }
  .cta-side:hover {
    background: var(--primary);
  }
  .cta-side a {
    writing-mode: initial;
    font-size: 1.25rem;
    letter-spacing: 0.125em;
    font-family: "Yu Mincho", "YuMincho", serif;
  }
}

.l-footer .shop-info {
  padding: clamp(48px, 6.6666666667vw, 80px) 0;
  background: var(--bg-accent);
}
.l-footer .shop-info .inner {
  width: min(1200px, 88%);
  margin-inline: auto;
}

.map-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
}
@media (max-width: 767px) {
  .map-wrap {
    grid-template-columns: 1fr;
  }
}
.map-wrap .map {
  height: clamp(240px, 30vw, 360px);
}
.map-wrap .map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.f-container {
  background: var(--accent-pale);
  padding: clamp(40px, 4vw, 48px);
}
.f-container .inner {
  width: min(1200px, 88%);
  margin-inline: auto;
}

.sns-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 2.6666666667vw, 32px);
}
.sns-wrap a {
  width: clamp(24px, 3.3333333333vw, 40px);
  aspect-ratio: 1;
}
.sns-wrap a.line {
  width: clamp(48px, 6.6666666667vw, 80px);
  aspect-ratio: initial;
}

.f-nav {
  margin-top: clamp(24px, 4vw, 48px);
  border-top: 1px solid var(--accent);
  display: flex;
  justify-content: center;
  gap: 2em;
  padding-top: clamp(16px, 2vw, 24px);
  position: relative;
}
@media (max-width: 767px) {
  .f-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.f-nav a {
  color: var(--accent);
}
.f-nav a.privacy {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: clamp(0.75rem, 0.6071428571rem + 0.3571428571vw, 0.875rem);
}
@media (max-width: 767px) {
  .f-nav a.privacy {
    position: static;
  }
}

.copyright {
  background: var(--accent);
  padding: 1em;
  color: var(--white);
  font-size: clamp(0.625rem, 0.4821428571rem + 0.3571428571vw, 0.75rem);
  text-align: center;
}
@media (max-width: 767px) {
  .copyright {
    padding-bottom: 64px;
  }
}

.list-normal > li {
  position: relative;
  padding-left: 1em;
}
.list-normal > li::before {
  content: "";
  width: 1em;
  height: 1lh;
  background: radial-gradient(var(--text) 0.2em, transparent 0.2em) no-repeat center/1em 1em;
  position: absolute;
  inset: 0;
}

.list-check > li {
  position: relative;
  padding-left: 1.25em;
}
.list-check > li::before {
  content: "";
  width: 0.5em;
  height: 1em;
  border-bottom: 4px solid var(--primary);
  border-right: 2px solid var(--primary);
  position: absolute;
  top: calc(0.5lh - 0.5em);
  left: 0;
  transform: rotate(45deg);
}

.list-counter {
  counter-reset: list-counter;
}
.list-counter > li {
  counter-increment: list-counter;
  position: relative;
  padding-left: 1em;
}
.list-counter > li::before {
  content: counter(list-counter) ". ";
  position: absolute;
  inset: 0;
}

.link-text {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.link-text-outside {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.25em;
  padding-right: 1.25em;
  position: relative;
  display: inline-block;
}
.link-text-outside::after {
  content: "";
  width: 1em;
  height: 1lh;
  background: url(../images/outside-link.svg) no-repeat center/contain;
  position: absolute;
  right: 0;
  top: 0;
}

a[href^=tel] {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.btn {
  background: var(--accent);
  color: var(--white);
  display: grid;
  place-items: center;
  padding: clamp(12px, 1.3333333333vw, 16px);
  border: 1px solid var(--accent);
  border-radius: 99px;
  min-width: 240px;
  transition: all 0.3s ease-out;
}
.btn:hover {
  background: var(--white);
  color: var(--accent);
}

.btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
}

.sec {
  container-type: inline-size;
  padding: clamp(64px, 6.6666666667vw, 80px) 0;
}
.sec .container {
  width: min(1200px, 88%);
  margin-inline: auto;
}
.sec.bg-accent {
  background: var(--bg-accent);
}

.fullwide {
  margin-inline: calc(50% - 50cqi);
  width: 100cqi;
}

.left-content {
  margin-left: calc(50% - 50cqi);
}

.right-content {
  margin-right: calc(50% - 50cqi);
}

.w960 {
  width: min(960px, 100%);
  margin-inline: auto;
}

.w800 {
  width: min(800px, 100%);
  margin-inline: auto;
}

.w640 {
  width: min(640px, 100%);
  margin-inline: auto;
}

.grid {
  display: grid;
}
.grid.grid21 {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 767px) {
  .grid.grid21 {
    grid-template-columns: 1fr;
  }
}
.grid.grid31 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
  .grid.grid31 {
    grid-template-columns: 1fr;
  }
}
.grid.grid41 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 767px) {
  .grid.grid41 {
    grid-template-columns: 1fr;
  }
}
.grid.grid42 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 767px) {
  .grid.grid42 {
    grid-template-columns: 1fr 1fr;
  }
}
.grid.grid12fr {
  grid-template-columns: 1fr 2fr;
}
@media (max-width: 767px) {
  .grid.grid12fr {
    grid-template-columns: 1fr;
  }
}
.grid.grid13fr {
  grid-template-columns: 1fr 3fr;
}
@media (max-width: 767px) {
  .grid.grid13fr {
    grid-template-columns: 1fr;
  }
}
.grid.grid21fr {
  grid-template-columns: 2fr 1fr;
}
@media (max-width: 767px) {
  .grid.grid21fr {
    grid-template-columns: 1fr;
  }
}
.grid.grid31fr {
  grid-template-columns: 3fr 1fr;
}
@media (max-width: 767px) {
  .grid.grid31fr {
    grid-template-columns: 1fr;
  }
}

.flex {
  display: flex;
}

.jc-center {
  justify-content: center;
}

.al-center {
  align-items: center;
}

.flex1 {
  flex: 1;
}

.gap48 {
  gap: clamp(16px, 4vw, 48px);
}

.gap32 {
  gap: clamp(16px, 2.6666666667vw, 32px);
}

.gap24 {
  gap: clamp(16px, 2vw, 24px);
}

.gap16 {
  gap: clamp(8px, 1.3333333333vw, 16px);
}

.gap8 {
  gap: 8px;
}

.mt96 {
  margin-top: clamp(64px, 8vw, 96px);
}

.mt80 {
  margin-top: clamp(56px, 6.6666666667vw, 80px);
}

.mt64 {
  margin-top: clamp(40px, 5.3333333333vw, 64px);
}

.mt48 {
  margin-top: clamp(36px, 4vw, 48px);
}

.mt40 {
  margin-top: clamp(32px, 3.3333333333vw, 40px);
}

.mt32 {
  margin-top: clamp(24px, 2.6666666667vw, 32px);
}

.mt24 {
  margin-top: clamp(16px, 2vw, 24px);
}

.mt16 {
  margin-top: clamp(12px, 1.3333333333vw, 16px);
}

.mt8 {
  margin-top: 8px;
}

.mt4 {
  margin-top: 4px;
}

.tab-panel {
  display: flex;
  justify-content: center;
  gap: clamp(4px, 1.3333333333vw, 16px);
  border-bottom: 1px solid var(--border);
}
.tab-panel li {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-weight: bold;
  height: 50px;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.tab-panel li.is-active a, .tab-panel li.is-active span {
  color: var(--white);
  background: var(--primary);
}
.tab-panel li a, .tab-panel li span {
  border: 1px solid var(--border);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  display: grid;
  place-items: center;
  height: 100%;
  padding: 0 clamp(8px, 2.6666666667vw, 32px);
  color: var(--text);
  text-align: center;
}

.tab-content {
  padding-top: clamp(24px, 3.3333333333vw, 40px);
}
.tab-content > li {
  display: none;
  line-height: 1.6;
}
.tab-content > li.is-active {
  display: block;
}

.js-accordion {
  cursor: pointer;
}

.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: all 0.3s ease-out;
}
.accordion-content.open {
  grid-template-rows: 1fr;
}
.accordion-content > div {
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: clamp(60px, 8.3333333333vw, 100px);
}
html.lock {
  overflow: hidden;
}

body {
  font-feature-settings: "palt";
  font-size: clamp(0.875rem, 0.7321428571rem + 0.3571428571vw, 1rem);
  letter-spacing: 0.05em;
  line-height: 1.15;
  font-optical-sizing: auto;
  color: var(--text);
  font-family: "Noto Sans JP", "Yu Gothic Medium", "YuGothicMedium", "Yu Gothic", "YuGothic", sans-serif;
  font-weight: normal;
  padding-top: 100px !important;
}
@media (max-width: 767px) {
  body {
    padding-top: 60px !important;
  }
}

.thumbnail-slider-wrap {
  padding: clamp(4px, 0.6666666667vw, 8px) 0;
}

.main-slider .splide__slide,
.thumbnail-slider .splide__slide {
  aspect-ratio: 2/1;
  overflow: hidden;
}
.main-slider .splide__slide img,
.thumbnail-slider .splide__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.thumbnail-slider .splide__slide {
  background: var(--black);
  opacity: 0.5;
}
.thumbnail-slider .splide__slide.is-active {
  opacity: 1;
}

.slider-wrap {
  margin-inline: auto;
}

.item-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 767px) {
  .item-list {
    grid-template-columns: 1fr 1fr;
  }
}
.item-list li {
  width: 100%;
  aspect-ratio: 1;
}
.item-list li a {
  display: block;
  width: 100%;
  height: 100%;
}
.item-list li a:hover {
  opacity: 0.7;
}

.staff-slide .splide__arrow {
  background: var(--text);
  opacity: 1;
}
.staff-slide .splide__arrow svg {
  fill: var(--white);
}
.staff-slide .splide__slide {
  opacity: 0.5;
}
.staff-slide .splide__slide.is-visible, .staff-slide .splide__slide.is-active {
  opacity: 1;
}

.staff-card {
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.staff-card figure {
  border: 1px solid var(--border-pale);
  aspect-ratio: 1;
  overflow: hidden;
}
.staff-card figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.incharge {
  display: flex;
  align-items: stretch;
  font-size: clamp(0.75rem, 0.6071428571rem + 0.3571428571vw, 0.875rem);
}
.incharge span {
  display: block;
  padding-right: 0.5em;
  border-right: 1px solid var(--accent);
  margin-right: 0.75rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.5em;
}
.incharge p {
  flex: 1;
}

.staff-list {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 3.3333333333vw, 40px);
}

.staff-detail {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: clamp(16px, 3.3333333333vw, 40px);
  align-items: center;
  padding-bottom: clamp(32px, 3.3333333333vw, 40px);
  border-bottom: 1px dotted var(--border);
}
@media (max-width: 767px) {
  .staff-detail {
    grid-template-columns: 1fr;
  }
}
.staff-detail figure {
  border: 1px solid var(--border-pale);
  aspect-ratio: 1;
  overflow: hidden;
}
@media (max-width: 767px) {
  .staff-detail figure {
    width: 70%;
    margin-inline: auto;
  }
}
.staff-detail figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.staff-detail .text-box {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 24px);
}
@media (max-width: 767px) {
  .staff-detail .text-box {
    align-items: center;
  }
}
.staff-detail .text-box .name {
  font-size: clamp(1.125rem, 0.6964285714rem + 1.0714285714vw, 1.5rem);
  line-height: 1.4;
  font-family: "Yu Mincho", "YuMincho", serif;
  color: var(--primary);
}
.staff-detail .text-box .comment-area {
  padding: clamp(16px, 2vw, 24px);
  font-size: clamp(0.875rem, 0.7321428571rem + 0.3571428571vw, 1rem);
  line-height: 1.8;
  border-radius: 16px;
  background: var(--bg);
  position: relative;
}
.staff-detail .text-box .comment-area::before {
  content: "一言コメント";
  font-size: clamp(0.75rem, 0.6071428571rem + 0.3571428571vw, 0.875rem);
  line-height: 1;
  border-radius: 99px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.5em 1em;
  background: var(--text);
  color: var(--white);
  position: absolute;
  top: -1em;
  left: 1.5em;
}

.news-panel {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 767px) {
  .news-panel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 0;
  }
}
.news-panel > li {
  width: 120px;
  border-radius: 8px 8px 0 0;
  opacity: 0.5;
}
.news-panel > li.is-active {
  opacity: 1;
}
@media (max-width: 767px) {
  .news-panel > li {
    border-radius: 4px;
  }
}
.news-panel > li a {
  display: block;
  color: var(--text);
  text-align: center;
  padding: 1em;
  font-size: clamp(0.875rem, 0.7321428571rem + 0.3571428571vw, 1rem);
  line-height: 1;
}
.news-panel > li.cate-news {
  background: var(--news);
}
.news-panel > li.cate-watch {
  background: var(--watch);
}
.news-panel > li.cate-eyewear {
  background: var(--eyewear);
}
.news-panel > li.cate-lens {
  background: var(--lens);
}
.news-panel > li.cate-jewelry {
  background: var(--jewelry);
}
.news-panel > li.cate-hearing-aid {
  background: var(--hearing-aid);
}
.news-panel > li.cate-maintenance {
  background: var(--maintenance);
}

.news-list > li {
  border-bottom: 1px solid var(--border-pale);
}
.news-list > li > a {
  display: flex;
  align-items: flex-start;
  color: var(--text);
  padding: 1rem 0;
}
@media (max-width: 767px) {
  .news-list > li > a {
    display: flex;
    flex-wrap: wrap;
  }
}
.news-list > li > a:hover {
  opacity: 0.7;
}
.news-list > li > a time {
  font-size: clamp(0.875rem, 0.7321428571rem + 0.3571428571vw, 1rem);
  line-height: 1.8;
  width: 6.5em;
}
.news-list > li > a .text {
  flex: 1;
}
@media (max-width: 767px) {
  .news-list > li > a .text {
    flex: initial;
    width: 100%;
    margin-top: 8px;
  }
}

.news-cate {
  margin-right: 1rem;
  font-size: clamp(0.75rem, 0.6071428571rem + 0.3571428571vw, 0.875rem);
  padding: clamp(4px, 0.6666666667vw, 8px);
  width: clamp(96px, 12.5vw, 150px);
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 99px;
}
.news-cate.news {
  background: var(--news);
}
.news-cate.watch {
  background: var(--watch);
}
.news-cate.eyewear {
  background: var(--eyewear);
}
.news-cate.jewelry {
  background: var(--jewelry);
}
.news-cate.lens {
  background: var(--lens);
}
.news-cate.hearing-aid {
  background: var(--hearing-aid);
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.pagination .page-numbers {
  font-size: clamp(0.875rem, 0.7321428571rem + 0.3571428571vw, 1rem);
  line-height: 1;
  width: 2em;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
}
.pagination .page-numbers.current, .pagination .page-numbers.prev, .pagination .page-numbers.next {
  background: transparent;
  color: var(--primary);
}

.post-title {
  font-size: clamp(1.75rem, 0.8928571429rem + 2.1428571429vw, 2.5rem);
  line-height: 1.4;
  font-family: "Yu Mincho", "YuMincho", serif;
  color: var(--primary);
  padding-bottom: 0.125em;
  border-bottom: 1px solid var(--border);
}

.meta-info {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1em;
}

.post-thumbnail {
  width: min(360px, 80%);
  margin-inline: auto;
  margin-bottom: 2rem;
}

.post-content {
  line-height: 1.8;
  margin-top: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}
.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
  font-family: "Yu Mincho", "YuMincho", serif;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.post-content h1 {
  font-size: clamp(1.75rem, 0.8928571429rem + 2.1428571429vw, 2.5rem);
}
.post-content h2 {
  font-size: clamp(1.5rem, 0.9285714286rem + 1.4285714286vw, 2rem);
}
.post-content h3 {
  font-size: clamp(1.25rem, 0.6785714286rem + 1.4285714286vw, 1.75rem);
}
.post-content h4 {
  font-size: clamp(1.125rem, 0.6964285714rem + 1.0714285714vw, 1.5rem);
}
.post-content h5 {
  font-size: clamp(1rem, 0.7142857143rem + 0.7142857143vw, 1.25rem);
}
.post-content h6 {
  font-size: clamp(0.875rem, 0.5892857143rem + 0.7142857143vw, 1.125rem);
}
.post-content p {
  font-size: clamp(0.875rem, 0.7321428571rem + 0.3571428571vw, 1rem);
  line-height: 1.8;
  margin-top: 1rem;
}
.post-content strong {
  font-weight: 700;
}
.post-content ul {
  list-style: disc;
  padding-left: 1.5em;
  margin-block: 1em;
}
.post-content ul li {
  line-height: 1.8;
}
.post-content ol {
  list-style: decimal;
  padding-left: 1.5em;
  margin-block: 1em;
}
.post-content ol li {
  line-height: 1.8;
}

.reason-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.reason-list > li .title {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: clamp(16px, 2.6666666667vw, 32px);
  background: var(--white);
  position: relative;
  padding: 2rem;
  padding-right: 2.5rem;
}
.reason-list > li .title:has(figure) {
  grid-template-columns: clamp(80px, 13.3333333333vw, 160px) 1fr;
  padding: 0;
  padding-right: 2.5rem;
}
.reason-list > li .title .text-l {
  font-size: clamp(1rem, 0.4285714286rem + 1.4285714286vw, 1.5rem);
  line-height: 1.4;
  letter-spacing: 0.1em;
}
.reason-list > li .title::before {
  content: "";
  width: 40px;
  aspect-ratio: 1;
  background: url(../images/accordion-btn.webp) no-repeat center/contain;
  position: absolute;
  right: 1.5rem;
  top: calc(50% - 20px);
  transition: transform 0.3s ease-out;
}
@media (max-width: 767px) {
  .reason-list > li .title::before {
    width: 20px;
    top: calc(50% - 10px);
    right: 0.75rem;
  }
}
.reason-list > li .title.active::before {
  transform: rotate(45deg);
}
.reason-list > li .answer {
  padding: 0 clamp(16px, 2vw, 24px);
  background: var(--white);
}
.reason-list > li .answer > div {
  background: var(--bg-accent);
  padding: 0 clamp(16px, 3.3333333333vw, 40px);
}
.reason-list > li .answer.open {
  padding: clamp(16px, 2vw, 24px);
}
.reason-list > li .answer.open > div {
  padding: clamp(16px, 3.3333333333vw, 40px);
  padding-left: clamp(32px, 13.3333333333vw, 160px);
}
@media (max-width: 767px) {
  .reason-list > li .answer.open > div {
    padding: 1rem;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-list > li {
  border: 1px solid var(--border-pale);
}
.faq-list > li .title {
  font-size: clamp(1rem, 0.4285714286rem + 1.4285714286vw, 1.5rem);
  line-height: 1.4;
  letter-spacing: 0.1em;
  background: var(--white);
  min-height: 90px;
  padding-left: clamp(56px, 6.6666666667vw, 80px);
  padding-right: 2.5rem;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--primary);
  transition: background 0.3s ease-out;
}
.faq-list > li .title:hover, .faq-list > li .title.active {
  background: var(--bg-base);
}
.faq-list > li .title::before {
  content: "";
  width: clamp(32px, 4vw, 48px);
  aspect-ratio: 48/34;
  background: url(../images/faq-q.webp) no-repeat center/contain;
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
.faq-list > li .title::after {
  content: "+";
  font-size: 2em;
  font-weight: 100;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease-out;
}
.faq-list > li .title.active::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-list > li .answer {
  background: var(--white);
  padding: 0 1rem;
}
.faq-list > li .answer.open {
  padding: 1rem;
}
.faq-list > li .answer.open > div {
  padding-left: clamp(40px, 5.3333333333vw, 64px);
  position: relative;
  padding-bottom: 1rem;
}
.faq-list > li .answer.open > div::before {
  content: "";
  width: clamp(32px, 4vw, 48px);
  aspect-ratio: 48/34;
  background: url(../images/faq-a.webp) no-repeat center/contain;
  position: absolute;
  left: 0rem;
  top: 0;
}

.information-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
@media (max-width: 767px) {
  .information-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.information-list > li {
  border: 1px solid var(--border-pale);
}
.information-list > li a {
  color: var(--text);
}
.information-list > li a:hover img {
  transform: scale(1.05);
}
.information-list > li a figure {
  aspect-ratio: 4/3;
  overflow: hidden;
  padding: clamp(16px, 2.6666666667vw, 32px);
  background: var(--white);
}
.information-list > li a figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s ease-out;
}
.information-list > li a p {
  background: var(--text-pale);
  color: var(--white);
  padding: 0 0.5em;
  font-weight: 700;
}

.container.pickup .information-list figure {
  padding: 0;
}
.container.pickup .information-list figure img {
  -o-object-fit: cover;
     object-fit: cover;
}

.aioseo-breadcrumbs {
  width: min(1200px, 88%);
  margin-inline: auto;
  padding: 0.5em 0;
  font-size: clamp(0.625rem, 0.4821428571rem + 0.3571428571vw, 0.75rem);
}
.aioseo-breadcrumbs a {
  color: var(--primary);
}
.aioseo-breadcrumbs a:hover {
  color: var(--primary-pale);
}

.search-list > li {
  border-bottom: 1px solid var(--border-pale);
}
.search-list > li > a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--text);
  padding: 1rem 0;
}
.search-list > li > a:hover {
  opacity: 0.7;
}
.search-list > li > a .parts-heading {
  color: var(--primary);
}

.contact-wrap {
  padding: clamp(16px, 3.3333333333vw, 40px);
  background: var(--bg-accent);
  border-radius: 16px;
}
.contact-wrap .contact-item-l {
  font-size: clamp(1rem, 0.8571428571rem + 0.3571428571vw, 1.125rem);
  line-height: 1.4;
  font-weight: 700;
}
.contact-wrap .contact-item {
  font-size: clamp(0.875rem, 0.7321428571rem + 0.3571428571vw, 1rem);
  line-height: 1.4;
  font-weight: 700;
}
.contact-wrap .must {
  position: relative;
  padding-left: 2.5em;
}
.contact-wrap .must::before {
  content: "必須";
  padding: 0.1em 0.5em 0.25em;
  border-radius: 4px;
  font-size: clamp(0.625rem, 0.5535714286rem + 0.1785714286vw, 0.6875rem);
  background: var(--emphasis);
  color: var(--white);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.contact-wrap .zipcode input[type=text] {
  width: 160px;
}
.contact-wrap input[type=text],
.contact-wrap input[type=email],
.contact-wrap input[type=tel],
.contact-wrap textarea {
  width: 100%;
  padding: 0.25em 1em;
  border: 1px solid var(--accent-pale);
  border-radius: 4px;
  margin-top: 8px;
  min-height: 48px;
}
@media (max-width: 767px) {
  .contact-wrap input[type=text],
.contact-wrap input[type=email],
.contact-wrap input[type=tel],
.contact-wrap textarea {
    min-height: 40px;
  }
}
.contact-wrap .wpcf7-submit {
  background: var(--primary);
  color: var(--white);
  border: 0;
  border-radius: 8px;
  width: 160px;
  height: 48px;
  margin-top: 48px;
  cursor: pointer;
}
.contact-wrap .wpcf7-not-valid-tip {
  font-size: clamp(0.6875rem, 0.6160714286rem + 0.1785714286vw, 0.75rem);
  margin-top: 8px;
}
/*# sourceMappingURL=style.css.map */