:root {
  --ink: #333;
  --green: #4598a7;
  --pale: #e8f6f9;
  --gray: #f2f6f6;
  --gradient: linear-gradient(90deg, #4598a7, #17798c);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  color: var(--ink);
  background: white;
  font-family:
    'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  font-size: 18px;
  letter-spacing: 0.07em;
}
h1,
h2,
h3,
p {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button {
  font: inherit;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid #17798c;
  outline-offset: 6px;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: white;
  padding: 12px;
}
.skip-link:focus {
  top: 12px;
}
.container {
  width: min(1200px, calc(100% - 64px));
  margin-inline: auto;
}
.site-header {
  height: 98px;
  padding: 0 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
}
.brand {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.brand span {
  display: block;
}
nav {
  display: flex;
  align-items: center;
}
nav a {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 40px 24px;
}
nav a:hover {
  color: var(--green);
}
.hero {
  margin: 0 64px;
  position: relative;
}
.hero-photo {
  aspect-ratio: 1792/781;
  position: relative;
  overflow: hidden;
  border-radius: 32px;
}
.hero-photo img {
  position: absolute;
  width: 111.97%;
  max-width: none;
  height: 171.31%;
  left: -2.01%;
  top: -21.37%;
}
.hero-photo:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    259deg,
    transparent 71%,
    rgba(255, 255, 255, 0.7) 103%
  );
}
.hero-copy {
  position: absolute;
  left: 80px;
  bottom: 70px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.hero-label {
  background: var(--green);
  color: white;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 10px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.05em;
}
.hero-label span + span {
  border-left: 2px solid white;
  padding-left: 16px;
}
h1 {
  font-size: clamp(40px, 3.333vw, 64px);
  line-height: 1;
  letter-spacing: 0.07em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
h1 span {
  background: white;
  padding: 8px 8px 12px;
}
.hero-description {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-shadow: 0 0 10px white;
}
.sp-only {
  display: none;
}
.section-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
}
.section-mark {
  width: 27px;
  height: 22px;
  flex-shrink: 0;
}
h2 {
  font-size: 48px;
  line-height: 1.4;
  font-weight: 700;
}
.services {
  padding: 160px 0 210px;
}
.services > .section-heading {
  align-items: center;
  margin-bottom: 48px;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.service-row {
  display: grid;
  grid-template-columns: 540fr 620fr;
  align-items: center;
  gap: 40px;
}
.service-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  align-self: stretch;
  justify-content: center;
}
.service-icon {
  width: 56px;
  height: 56px;
}
.service-row h3 {
  font-size: 32px;
  line-height: 1.4;
}
.service-row p {
  font-size: 18px;
  line-height: 1.6;
  white-space: pre-line;
}
.service-row small {
  font-size: 16px;
  line-height: 1.6;
}
.service-photo {
  position: relative;
  aspect-ratio: 620/356;
  padding: 0 10px 10px 0;
}
.service-photo:before {
  content: '';
  position: absolute;
  inset: 10px 0 0 10px;
  border-radius: 16px;
  background: linear-gradient(90deg, #f6bed0, #f6494c);
}
.photo-crop {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}
.photo-crop > img {
  position: absolute;
  max-width: none;
  object-fit: cover;
}
.service-row:nth-child(even) {
  grid-template-columns: 620fr 540fr;
}
.service-row:nth-child(even) .service-photo {
  order: -1;
}
.service-row:nth-child(even) .service-photo:before {
  background: linear-gradient(90deg, #17798c, #4598a7);
}
.pending .photo-crop:after {
  content: '';
  position: absolute;
  inset: 0;
  background: #0006;
}
.pending span {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 56px;
  color: white;
}
.about {
  position: relative;
  padding: 160px 0;
  background: var(--gray) url('../images/pc-imgAboutUs.png') center/cover;
  overflow: clip;
}
.about-inner {
  position: relative;
}
.about .section-heading {
  width: 480px;
  margin-bottom: 40px;
}
.about-copy {
  width: 480px;
  position: relative;
  z-index: 1;
  line-height: 2;
}
.about-copy p + p {
  margin-top: 16px;
}
.about-copy .pill-button {
  margin-top: 32px;
}
.about-art {
  position: absolute;
  left: 523px;
  top: -230px;
  width: 1038px;
  height: 780px;
}
.about-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pill-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: max-content;
  max-width: 100%;
  min-height: 60px;
  padding: 12px 96px;
  border: 0;
  border-radius: 48px;
  color: white;
  background: var(--gradient);
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0;
  transition: filter 0.2s;
}
.pill-button img {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
}
.pill-button[href]:hover {
  filter: brightness(1.12);
}
.pill-button:disabled {
  cursor: default;
}
.stores {
  padding-top: 104px;
  padding-bottom: 120px;
}
.stores .section-heading {
  margin-bottom: 32px;
}
.store-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.store-card {
  border-radius: 16px;
  background: var(--gray);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.store-photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.store-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.store-photo-3 img {
  height: 188.33%;
  position: absolute;
  top: -5.49%;
}
.store-card h3 {
  font-size: 24px;
  line-height: 1.4;
  text-align: center;
}
.store-card dl {
  margin: -8px 0 0;
  width: 100%;
  font-size: 16px;
  line-height: 1.6;
}
.store-card dl > div {
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--green);
}
.store-card dl > div + div {
  margin-top: 8px;
}
.store-card dt {
  font-weight: 700;
}
.store-card dd {
  margin: 0;
}
.store-card .pill-button {
  min-height: 52px;
  padding: 8px 40px;
  width: 100%;
  margin-top: auto;
  white-space: nowrap;
}
.store-card .pill-button img {
  width: 13.5px;
  height: 13.5px;
}
.news {
  padding: 104px 0 120px;
  background: var(--pale);
}
.news .section-heading {
  margin-bottom: 32px;
}
.news-list {
  list-style: none;
  padding: 0;
  margin: 0 0 64px;
}
.news-list li {
  display: flex;
  gap: 24px;
  border-top: 1px dashed var(--green);
  padding: 24px 16px;
  line-height: 1.6;
}
.news-list li:last-child {
  border-bottom: 1px dashed var(--green);
}
.news-list time {
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
}
.news-list p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news .pill-button {
  margin-inline: auto;
}
.instagram {
  padding: 120px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}
.instagram-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.instagram-strip {
  display: flex;
  gap: 24px;
  flex-shrink: 0;
  width: max-content;
}
.instagram-strip > div {
  width: 320px;
  height: 320px;
  background: var(--pale);
  flex-shrink: 0;
}
.instagram-strip > div:nth-child(even) {
  background: var(--gradient);
}
.site-footer {
  background: var(--gradient);
  padding: 160px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
}
.site-footer nav a {
  padding: 5px 40px;
  border-left: 1px solid var(--gray);
}
.site-footer nav a:last-child {
  border-right: 1px solid var(--gray);
}
.site-footer nav a:hover {
  color: white;
  text-decoration: underline;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .hero-copy {
    left: 40px;
    bottom: 35px;
  }
  .hero-label {
    font-size: 18px;
  }
  .hero-description {
    font-size: 16px;
  }
  .service-row h3 {
    font-size: 26px;
  }
  .store-card {
    padding: 24px;
  }
  .store-card h3 {
    font-size: 20px;
  }
  .store-card .pill-button {
    font-size: 15px;
    padding-inline: 24px;
  }
  .about .section-heading,
  .about-copy {
    width: 42%;
  }
  .about-art {
    left: 44%;
    width: 85%;
    height: auto;
    aspect-ratio: 1038/780;
    top: -120px;
  }
}
@media (max-width: 767px) {
  html {
    scroll-padding-top: 72px;
  }
  .container {
    width: calc(100% - 32px);
  }
  .site-header {
    height: 62px;
    padding: 0 16px;
  }
  .brand {
    font-size: 11.308px;
  }
  nav a {
    font-size: 14px;
    padding: 24px 8px;
  }
  nav a:last-child {
    padding-right: 0;
  }
  .hero {
    margin: 0 8px;
  }
  .hero-photo {
    aspect-ratio: 359/205;
    border-radius: 6px;
  }
  .hero-photo img {
    height: 130.75%;
    left: -6.12%;
    top: -11.92%;
  }
  .hero-copy {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: -80px;
    padding: 16px;
    gap: 8px;
  }
  .hero-label {
    font-size: 16px;
    padding: 4px 10px;
    gap: 8px;
  }
  .hero-label span + span {
    padding-left: 8px;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero h1 span {
    background: var(--pale);
    padding: 8px 10px;
  }
  .hero-description {
    font-size: 14px;
    line-height: 1.8;
  }
  .sp-only {
    display: block;
  }
  .pc-only {
    display: none;
  }
  .eyebrow {
    font-size: 16px;
  }
  .section-mark {
    width: 22.091px;
    height: 18px;
  }
  h2 {
    font-size: 24px;
  }
  .section-heading {
    align-items: center;
    text-align: center;
  }
  .services {
    padding: 80px 0;
  }
  .services > .section-heading {
    margin-bottom: 32px;
  }
  .service-list {
    gap: 56px;
    width: calc(100% - 30px);
  }
  .service-row,
  .service-row:nth-child(even) {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .service-photo {
    order: -1;
    padding: 0 5.5px 5.5px 0;
    aspect-ratio: 345/198.085;
  }
  .service-photo:before {
    inset: 5.5px 0 0 5.5px;
  }
  .service-icon {
    width: 40px;
    height: 40px;
  }
  .service-row h3 {
    font-size: 18px;
  }
  .service-row p {
    font-size: 16px;
  }
  .service-copy {
    gap: 14px;
  }
  .service-row small {
    font-size: 14px;
  }
  .pending span {
    font-size: 31.111px;
  }
  .about {
    padding: 80px 0;
    background: var(--pale);
  }
  .about-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .about .section-heading {
    width: 100%;
    margin: 0;
  }
  .about-art {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 375/271;
  }
  .about-copy {
    width: auto;
    margin: 0 16px;
    font-size: 16px;
    line-height: 2;
  }
  .about-copy .pill-button {
    margin: 24px auto 0;
  }
  .pill-button {
    padding-inline: 64px;
    max-width: calc(100vw - 32px);
  }
  .stores {
    padding: 64px 0;
  }
  .stores .section-heading {
    margin-bottom: 48px;
  }
  .store-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .store-card {
    padding: 24px;
    min-height: 544.25px;
  }
  .store-card h3 {
    font-size: 18px;
  }
  .store-card dl {
    font-size: 14px;
  }
  .store-card .pill-button {
    font-size: 16px;
    min-height: 48px;
    padding-inline: 36px;
  }
  .news {
    background: white;
    padding: 64px 0;
  }
  .news .section-heading {
    margin-bottom: 32px;
  }
  .news-list {
    margin-bottom: 32px;
  }
  .news-list li {
    padding: 16px 8px;
    font-size: 16px;
  }
  .news-list time {
    display: none;
  }
  .instagram {
    padding: 64px 0;
    gap: 32px;
    background: var(--pale);
  }
  .instagram-heading {
    gap: 8px;
  }
  .instagram-strip {
    gap: 12px;
    align-self: flex-start;
  }
  .instagram-strip > div {
    width: 160px;
    height: 160px;
    background: white;
  }
  .site-footer {
    padding: 48px 16px;
    flex-direction: column;
    gap: 32px;
  }
  .site-footer .brand {
    font-size: 10.526px;
  }
  .site-footer nav a {
    font-size: 9.474px;
    padding: 2.632px 21.053px;
  }
  .instagram .pill-button {
    padding-inline: 80px;
  }
}
@media (max-width: 359px) {
  .site-header {
    padding-inline: 10px;
  }
  nav a {
    font-size: 12px;
  }
  .hero h1 {
    font-size: 28px;
  }
  .hero-label {
    font-size: 14px;
  }
  .hero-copy {
    padding-inline: 8px;
  }
  .pill-button {
    padding-inline: 42px;
  }
}
main {
  overflow: clip;
}
.about {
  overflow: visible;
}
.pending span {
  font-size: 40px;
}
@media (max-width: 767px) {
  .pending span {
    font-size: 31.111px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
