/*
Theme Name: Bloom Core
Theme URL: https://github.com/bc-momo/BloomCore_wp
Author: Bloom Core
Author URL: https://bloom-core.com
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

@charset "UTF-8";

:root {
  --color-ink: #353130;
  --color-bg: #f6f6f5;
  --color-accent: #f09199;
  --color-white: #ffffff;
  --color-border: #353130;
  --color-muted: rgba(53, 49, 48, 0.7);
  --container-width: 1280px;
  --container-narrow: 1200px;
  --font-body: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  --font-serif: "Spectral", serif;
  --font-display: "ivypresto-display", "Times New Roman", serif;
  --font-script: "bickham-script-pro-3", "Times New Roman", serif;
  --font-contact: primot, sans-serif, "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.8;
}

p,
h1,
h2,
h3,
h4 {
  margin: 0;
}

.container {
  width: min(100%, var(--container-width));
  margin: 0 auto;
  padding: 0 20px;
}

.site-main {
  overflow: clip;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 16px 24px;
  border: 1px solid var(--color-ink);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.75;
}

.button--dark {
  background: var(--color-ink);
  color: var(--color-bg);
}

.button--light {
  background: var(--color-bg);
  color: var(--color-ink);
  border-color: var(--color-bg);
}

.site-header {
  padding-top: 18px;
}

.site-header__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 2.4vw, 3rem);
  line-height: 1;
}

.site-brand__mark {
  width: 26px;
  height: 26px;
  border: 2px solid var(--color-ink);
  border-radius: 999px;
  position: relative;
}

.site-brand__mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid var(--color-ink);
  border-radius: 999px;
}

.main-nav {
  width: 100%;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 8px 0;
}

.main-nav__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.main-nav__list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 12px;
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1;
}

.main-nav__list .nav-contact a,
.main-nav__list .current-menu-item a,
.main-nav__list .current_page_item a,
.main-nav__list .current-menu-parent.nav-contact a {
  background: var(--color-accent);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 24px;
  color: var(--color-muted);
  font-size: 14px;
}

.home-section {
  padding: 64px 0 0;
}

.home-hero {
  padding-top: 32px;
}

.home-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: stretch;
}

.home-hero__copy {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: space-between;
  min-height: auto;
  padding: 24px 0 0 20px;
  border-left: 5px solid var(--color-ink);
}

.home-hero__headline {
  display: grid;
  gap: 14px;
}

.home-hero__title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.home-hero__title em {
  font-family: var(--font-script);
  font-size: 0.9em;
  font-style: normal;
  letter-spacing: 0;
}

.home-hero__tagline,
.home-hero__body p,
.home-works__intro p,
.home-service__copy p,
.home-contact__copy p,
.home-philosophy__text p,
.home-work-card__type,
.home-work-card__client {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.home-hero__body {
  display: grid;
  gap: 40px;
  max-width: 390px;
}

.home-hero__visual {
  min-height: auto;
}

.home-hero__collage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 260px;
  overflow: hidden;
  mix-blend-mode: luminosity;
}

.home-hero__shot {
  margin: 0;
  height: 260px;
  overflow: hidden;
}

.home-hero__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.home-philosophy__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.home-philosophy__art {
  display: grid;
  gap: 40px;
}

.home-philosophy__art img {
  width: 100%;
  mix-blend-mode: luminosity;
}

.home-philosophy__caption {
  font-family: "Libre Barcode 128 Text", var(--font-serif);
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.08em;
}

.home-philosophy__copy {
  display: grid;
  gap: 32px;
}

.home-kana-title {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.home-kana-title span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  box-shadow: -3px 3px 0 var(--color-ink);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.home-philosophy__text {
  display: grid;
  gap: 28px;
}

.home-philosophy__hands {
  position: relative;
  min-height: 240px;
}

.home-philosophy__hands img {
  position: absolute;
  mix-blend-mode: luminosity;
}

.home-philosophy__hands img:nth-child(1) {
  top: 0;
  left: 72px;
  width: 53px;
}

.home-philosophy__hands img:nth-child(2) {
  top: 58px;
  left: 0;
  width: 48px;
}

.home-philosophy__hands img:nth-child(3) {
  top: 149px;
  left: 19px;
  width: 73px;
}

.home-philosophy__hands img:nth-child(4) {
  top: 141px;
  left: 124px;
  width: 64px;
}

.home-philosophy__hands img:nth-child(5) {
  top: 56px;
  left: 152px;
  width: 54px;
}

.home-section-heading {
  display: flex;
  /* align-items: flex-start; */
  gap: 20px;
}

.home-section-heading__en,
.home-service__eyebrow {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-section-heading__dots {
  flex: 1;
  height: 4px;
  background-image: radial-gradient(
    circle,
    var(--color-ink) 2px,
    transparent 2px
  );
  background-size: 22px 4px;
  background-repeat: repeat-x;
  background-position: left center;
}

.home-works__intro {
  display: grid;
  gap: 24px;
  padding: 48px 0;
}

.home-works__intro > div {
  display: grid;
  gap: 24px;
  max-width: 519px;
}

.home-works__title,
.home-service__title,
.home-contact__copy h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.home-works__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.home-work-card__link {
  display: grid;
  gap: 16px;
}

.home-work-card__thumb {
  border: 1px solid var(--color-border);
  aspect-ratio: 320 / 213;
  overflow: hidden;
  background: #ddd;
}

.home-work-card__thumb img,
.home-work-card__thumb-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.home-work-card__thumb-placeholder {
  background:
    linear-gradient(135deg, rgba(53, 49, 48, 0.08), rgba(53, 49, 48, 0.18)),
    repeating-linear-gradient(
      -45deg,
      transparent 0 12px,
      rgba(53, 49, 48, 0.08) 12px 24px
    );
}

.home-work-card__meta {
  display: grid;
  gap: 4px;
}

.home-service__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: flex-start;
}

.home-service__lead {
  display: grid;
  gap: 28px;
}

.home-service__display {
  display: grid;
  gap: 0;
  font-family: var(--font-serif);
  color: #000;
  line-height: 0.92;
}

.home-service__display span:first-child {
  font-size: 2.6rem;
}

.home-service__display span:last-child {
  font-size: 3.8rem;
  letter-spacing: 0.01em;
}

.home-service__copy {
  display: grid;
  gap: 36px;
  max-width: 363px;
  padding-top: 0;
}

.home-contact {
  padding-bottom: 80px;
}

.home-contact__panel {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 28px;
  max-width: 701px;
  margin: 0 auto;
  padding: 40px 20px 28px;
  text-align: center;
  color: var(--color-bg);
  background:
    linear-gradient(rgba(53, 49, 48, 0.82), rgba(53, 49, 48, 0.82)),
    url("https://www.figma.com/api/mcp/asset/a4bcedb6-bd76-497c-a8f6-af26cc0320b7")
      center/cover no-repeat;
}

.home-contact__title {
  font-family: var(--font-contact);
  text-edge: cap;
  font-feature-settings:
    "swsh" on,
    "liga" off;
  font-size: 3.4rem;
  line-height: 0.9;
}

.home-contact__copy {
  display: grid;
  gap: 24px;
}

.home-contact__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.home-contact__cta img {
  width: 150px;
}

.home-divider {
  display: flex;
  justify-content: center;
  padding-top: 56px;
}

.home-divider span {
  position: relative;
  display: block;
  width: min(100%, 390px);
  height: 6px;
}

.home-divider span::before,
.home-divider span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 24px);
  height: 2px;
  background: var(--color-ink);
  transform: translateY(-50%);
}

.home-divider span::before {
  left: 0;
}

.home-divider span::after {
  right: 0;
}

.home-divider span {
  background: radial-gradient(
    circle at center,
    var(--color-ink) 0 4px,
    transparent 4px
  );
}

.site-footer {
  padding: 32px 0 48px;
}

.site-footer__inner {
  display: grid;
  gap: 28px;
  justify-content: start;
}

.site-brand--footer {
  font-size: clamp(1.7rem, 2vw, 2.25rem);
}

.footer-nav__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.footer-nav__list a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  font-family: var(--font-serif);
  font-size: 14px;
}

.footer-nav__contact a {
  background: var(--color-accent);
}

.site-footer__meta {
  display: grid;
  gap: 12px;
  font-size: 12px;
  color: var(--color-muted);
}

.page-header,
.page-content,
.works-detail,
.next-step,
.cta-section,
.cta-box,
.about-lead,
.about-strategy,
.service-content {
  margin-top: 48px;
}

.page-header h1,
.page-content h1,
.works-detail__header h1 {
  font-family: var(--font-contact);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.entry-content,
.works-detail__content,
.service-block,
.about-lead,
.about-strategy {
  max-width: 760px;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin: 48px 0;
}

.works-item__thumbnail,
.works-detail__visual {
  border: 1px solid var(--color-border);
  overflow: hidden;
  margin-bottom: 16px;
}

.works-item__title {
  font-size: 18px;
  line-height: 1.5;
}

.pagination {
  margin: 40px 0;
}

@media (min-width: 768px) {
  .container {
    padding: 0 24px;
  }

  .site-header {
    padding-top: 24px;
  }

  .main-nav__list a,
  .footer-nav__list a {
    min-height: 43px;
    padding: 12px 16px;
  }

  .home-section {
    padding-top: 88px;
  }

  .home-hero {
    padding-top: 48px;
  }

  .home-hero__copy {
    padding: 32px 0 0 28px;
    border-left-width: 8px;
  }

  .home-hero__title {
    font-size: 3rem;
  }

  .home-hero__tagline,
  .home-hero__body p,
  .home-works__intro p,
  .home-service__copy p,
  .home-contact__copy p,
  .home-philosophy__text p,
  .home-work-card__type,
  .home-work-card__client {
    font-size: 16px;
    line-height: 1.75;
  }

  .home-hero__collage {
    min-height: 360px;
  }

  .home-hero__shot {
    height: 360px;
  }

  .home-kana-title {
    gap: 11px;
  }

  .home-kana-title span {
    width: 56px;
    height: 56px;
    font-size: 24px;
    box-shadow: -4px 4px 0 var(--color-ink);
  }

  .home-section-heading {
    align-items: center;
    gap: 32px;
  }

  .home-section-heading__en,
  .home-service__eyebrow {
    font-size: 32px;
    letter-spacing: 0.2em;
  }

  .home-works__intro {
    gap: 32px;
    padding: 64px 0;
  }

  .home-works__intro > div {
    gap: 36px;
  }

  .home-works__title,
  .home-service__title,
  .home-contact__copy h3 {
    font-size: 24px;
  }

  .home-works__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
  }

  .home-service__lead {
    gap: 56px;
  }

  .home-service__display span:first-child {
    font-size: 3.4rem;
  }

  .home-service__display span:last-child {
    font-size: 4.8rem;
  }

  .home-contact {
    padding-bottom: 104px;
  }

  .home-contact__panel {
    gap: 36px;
    padding: 56px 40px 40px;
  }

  .home-contact__title {
    font-size: 4.8rem;
  }

  .home-contact__copy {
    gap: 36px;
  }

  .home-contact__cta {
    flex-direction: row;
  }

  .home-contact__cta img {
    width: 181px;
  }

  .home-divider {
    padding-top: 72px;
  }

  .footer-nav__list {
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .home-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 600px);
    gap: 56px;
  }

  .home-hero__copy {
    min-height: 428px;
    padding-top: 40px;
    padding-left: 32px;
  }

  .home-hero__title {
    font-size: 4rem;
  }

  .home-hero__visual {
    min-height: 428px;
  }

  .home-hero__collage {
    height: 100%;
    min-height: 428px;
  }

  .home-hero__shot {
    height: 428px;
  }

  .home-philosophy__inner {
    grid-template-columns: minmax(260px, 291px) minmax(320px, 393px) minmax(
        180px,
        206px
      );
    gap: 56px;
  }

  .home-philosophy__copy {
    gap: 48px;
  }

  .home-philosophy__caption {
    font-size: 2.5rem;
  }

  .home-philosophy__hands {
    min-height: 216px;
  }

  .home-works__intro {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    justify-content: space-between;
  }

  .home-works__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 60px;
  }

  .home-service__inner {
    grid-template-columns: minmax(0, 1fr) 363px;
    gap: 64px;
    justify-content: space-between;
  }

  .home-service__copy {
    padding-top: 8px;
  }

  .home-service__display span:first-child {
    font-size: 4rem;
  }

  .home-service__display span:last-child {
    font-size: 6rem;
  }

  .home-contact__title {
    font-size: 6rem;
  }
}
