/* サイト全体の色・見出し書体・横幅 */
/* :root の見た目 */
:root {
  --color-white: #ffffff;
  --color-main: #fcfad8;
  --color-accent: #c3ebf7;
  --color-text: #4a4a4a;
  --color-bg-alt: var(--color-main);
  --color-ink-soft: rgba(74, 74, 74, .78);
  --color-line: rgba(74, 74, 74, .22);
  --font-title: "Century Gothic", "Avenir Next", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --shell: min(1120px, calc(100% - 80px));
}

/* サイト全体の基本設定と共通部品 */
/* * の見た目 */
* { box-sizing: border-box; }
/* html の見た目 */
html { scroll-behavior: smooth; }
/* body の見た目 */
body { margin: 0; background: var(--color-main); color: var(--color-text); font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif; font-size: 16px; line-height: 1.8; }
/* body.menu-open の見た目 */
body.menu-open { overflow: hidden; }
/* a の見た目 */
a { color: inherit; }
/* button, input, select, textarea の見た目 */
button, input, select, textarea { font: inherit; }
/* button の見た目 */
button { color: inherit; }
/* .shell の見た目 */
.shell { width: var(--shell); margin: 0 auto; }
/* .section-pad の見た目 */
.section-pad { padding: 170px 0; }
/* .eyebrow, .section-index の見た目 */
.eyebrow, .section-index { margin: 0; color: var(--color-ink-soft); font-size: 11px; font-weight: 600; letter-spacing: .15em; line-height: 1.5; text-transform: uppercase; }
/* .section-index の見た目 */
.section-index { font-family: Arial, sans-serif; }
/* .text-link の見た目 */
.text-link { display: inline-flex; align-items: center; gap: 24px; padding-bottom: 9px; border-bottom: 1px solid var(--color-text); color: var(--color-text); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-decoration: none; transition: gap .25s ease; }
/* .text-link:hover の見た目 */
.text-link:hover { gap: 34px; }

/* 全ページ共通のヘッダーとメニュー */
/* .site-header の見た目 */
.site-header { position: absolute; inset: 0 0 auto; z-index: 20; color: var(--color-text); }
/* .subpage .site-header の見た目 */
.subpage .site-header { background: rgba(252,250,216,.9); border-bottom: 1px solid var(--color-line); backdrop-filter: blur(12px); }
/* .site-header.is-scrolled の見た目 */
.site-header.is-scrolled { position: fixed; background: rgba(252,250,216,.92); border-bottom: 1px solid var(--color-line); backdrop-filter: blur(12px); animation: header-in .35s ease; }
@keyframes header-in { from { transform: translateY(-100%); } to { transform: translateY(0); } }
/* .site-header__inner の見た目 */
.site-header__inner { display: flex; min-height: 92px; align-items: center; justify-content: space-between; }
/* .brand の見た目 */
.brand { display: inline-flex; flex-direction: column; color: var(--color-text); line-height: 1; text-decoration: none; }
/* .brand__logo の見た目 */
.brand__logo { display: block; width: 88px; height: auto; }
/* フッターのC-LA画像ロゴ */
.brand__logo--footer { width: 104px; }
/* .brand__mark の見た目 */
.brand__mark { font-family: Georgia, "Times New Roman", serif; font-size: 31px; font-weight: bold; letter-spacing: -.08em; }
/* .brand__place の見た目 */
.brand__place { margin-top: 7px; font-family: Arial, sans-serif; font-size: 8px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
/* .site-nav の見た目 */
.site-nav { display: flex; align-items: center; gap: 31px; }
/* .site-nav > a の見た目 */
.site-nav > a { position: relative; display: inline-flex; align-items: baseline; gap: 7px; font-family: Arial, sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-decoration: none; }
/* .site-nav > a > span の見た目 */
.site-nav > a > span { color: var(--color-ink-soft); font-size: 8px; }
/* .site-nav > a:not(.nav-contact)::after の見た目 */
.site-nav > a:not(.nav-contact)::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 1px; background: currentColor; content: ""; transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
/* .site-nav > a:hover::after, .site-nav > a[aria-current="page"]::after の見た目 */
.site-nav > a:hover::after, .site-nav > a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
/* .nav-contact の見た目 */
.nav-contact { min-width: 136px; justify-content: space-between; padding: 13px 17px; border: 1px solid var(--color-text); transition: color .25s ease, background .25s ease; }
/* .nav-contact:hover の見た目 */
.nav-contact:hover { background: var(--color-white); color: var(--color-text); }
/* .menu-button の見た目 */
.menu-button { display: none; }

/* トップページ最初の大きな見せ場とお知らせ */
/* .hero の見た目 */
.hero { position: relative; display: flex; min-height: 800px; min-height: 100svh; overflow: hidden; align-items: center; background: linear-gradient(140deg, rgba(252,250,216,.92) 18%, rgba(252,250,216,.72) 58%, rgba(195,235,247,.72)), url("../images/hero-light.jpg") center / cover no-repeat, var(--color-main); isolation: isolate; }
/* .hero::after の見た目 */
.hero::after { position: absolute; right: 0; bottom: 0; left: 0; z-index: -1; height: 40%; background: linear-gradient(transparent, rgba(252,250,216,.68)); content: ""; }
/* .hero__light の見た目 */
.hero__light { position: absolute; z-index: -2; border-radius: 50%; filter: blur(8px); opacity: .82; }
/* .hero__light--one の見た目 */
.hero__light--one { top: 4%; right: -8%; width: min(65vw, 900px); aspect-ratio: 1; background: radial-gradient(circle at 36% 36%, rgba(195,235,247,.82), rgba(255,255,255,.72) 42%, transparent 68%); animation: float-light 12s ease-in-out infinite alternate; }
/* .hero__light--two の見た目 */
.hero__light--two { bottom: -40%; left: 12%; width: min(72vw, 1050px); aspect-ratio: 1; background: radial-gradient(circle at 50% 50%, rgba(252,250,216,.92), rgba(195,235,247,.4) 44%, transparent 70%); animation: float-light 14s -3s ease-in-out infinite alternate-reverse; }
@keyframes float-light { to { transform: translate(6%, -4%) scale(1.12); } }
/* .hero__grain の見た目 */
.hero__grain { position: absolute; inset: 0; z-index: -1; opacity: .25; background-image: radial-gradient(rgba(74,74,74,.22) .45px, transparent .55px); background-size: 5px 5px; mix-blend-mode: soft-light; }
/* .hero__inner の見た目 */
.hero__inner { position: relative; padding-top: 104px; }
/* .hero__eyebrow の見た目 */
.hero__eyebrow { margin-bottom: 30px; }
/* .hero__title の見た目 */
.hero__title { max-width: 850px; margin: 0; font-family: var(--font-title); font-size: clamp(63px, 8.8vw, 126px); font-weight: 400; letter-spacing: -.075em; line-height: .84; }
/* .hero__title em, .page-hero h1 em, .statement em, .services__head h2 em の見た目 */
.hero__title em, .page-hero h1 em, .statement em, .services__head h2 em { color: var(--color-accent); font-style: normal; }
/* .hero__copy の見た目 */
.hero__copy { display: flex; max-width: 542px; margin-top: 51px; align-items: flex-end; justify-content: space-between; }
/* .hero__copy p の見た目 */
.hero__copy p { margin: 0; font-size: 17px; font-weight: 600; letter-spacing: .08em; line-height: 2; }
/* .circle-link の見た目 */
.circle-link { display: flex; width: 114px; height: 114px; align-items: center; justify-content: center; border: 1px solid var(--color-text); border-radius: 50%; font-family: Arial, sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .08em; line-height: 1.45; text-align: center; text-decoration: none; transition: color .3s ease, background .3s ease, transform .3s ease; }
/* .circle-link b の見た目 */
.circle-link b { position: absolute; margin: 70px 0 0 70px; font-size: 20px; font-weight: 400; }
/* .circle-link:hover の見た目 */
.circle-link:hover { background: var(--color-white); color: var(--color-text); transform: rotate(9deg); }
/* .hero__scroll の見た目 */
.hero__scroll { position: absolute; right: 0; bottom: 65px; margin: 0; color: var(--color-ink-soft); font-family: Arial, sans-serif; font-size: 9px; font-weight: 700; letter-spacing: .12em; writing-mode: vertical-rl; }
/* .hero__scroll::after の見た目 */
.hero__scroll::after { display: inline-block; width: 1px; height: 79px; margin-top: 13px; background: var(--color-text); content: ""; animation: scroll-line 1.8s ease-in-out infinite; }
@keyframes scroll-line { 50% { transform: scaleY(.35); transform-origin: top; } 51% { transform: scaleY(.35); transform-origin: bottom; } }
/* .hero-news の見た目 */
.hero-news { position: absolute; right: max(40px, calc((100% - 1120px) / 2)); bottom: 36px; display: grid; width: min(550px, calc(100% - 80px)); min-height: 91px; grid-template-columns: 88px 62px 1fr 28px; align-items: center; gap: 14px; padding: 13px 20px; background: rgba(252,250,216,.8); border: 1px solid var(--color-line); backdrop-filter: blur(12px); color: var(--color-text); font-size: 12px; font-weight: 600; letter-spacing: .04em; text-decoration: none; transition: background .25s ease; }
/* .hero-news:hover の見た目 */
.hero-news:hover { background: var(--color-white); }
/* .hero-news__label の見た目 */
.hero-news__label { color: var(--color-ink-soft); font-family: Arial, sans-serif; font-size: 8px; font-weight: 700; letter-spacing: .11em; }
/* .hero-news time の見た目 */
.hero-news time { color: var(--color-accent); font-family: Arial, sans-serif; font-size: 10px; font-weight: 700; }
/* .hero-news b の見た目 */
.hero-news b { font-size: 18px; font-weight: 400; }

/* トップページの紹介・サービス・活動・お知らせ・お問い合わせ */
/* .intro の見た目 */
.intro { overflow: hidden; background: var(--color-accent); }
/* .intro__grid の見た目 */
.intro__grid { display: grid; grid-template-columns: 150px minmax(320px, 1fr) minmax(300px, .9fr); gap: 70px; align-items: start; }
/* .intro__copy の見た目 */
.intro__copy { padding-top: 20px; }
/* .intro__copy h2, .services__head h2, .news__heading h2, .visit__info h2, .company h2, .about-intro h2, .about-space h2 の見た目 */
.intro__copy h2, .services__head h2, .news__heading h2, .visit__info h2, .company h2, .about-intro h2, .about-space h2 { margin: 24px 0 33px; font-family: var(--font-title); font-size: clamp(29px, 2.9vw, 44px); font-weight: 500; letter-spacing: .07em; line-height: 1.5; }
/* .intro__copy > p の見た目 */
.intro__copy > p { max-width: 390px; margin: 0 0 38px; color: var(--color-ink-soft); font-size: 14px; letter-spacing: .08em; }
/* .intro__visual の見た目 */
.intro__visual { position: relative; min-height: 400px; overflow: hidden; background: linear-gradient(135deg, rgba(195,235,247,.75), rgba(252,250,216,.78)); }
/* .intro__visual::before, .intro__visual::after の見た目 */
.intro__visual::before, .intro__visual::after { position: absolute; border-radius: 50%; content: ""; }
/* .intro__visual::before の見た目 */
.intro__visual::before { top: 47px; right: 33px; width: 270px; height: 270px; border: 1px solid rgba(74,74,74,.25); }
/* .intro__visual::after の見た目 */
.intro__visual::after { bottom: -60px; left: -67px; width: 300px; height: 300px; background: var(--color-main); }
/* .intro__visual .orb の見た目 */
.intro__visual .orb { position: absolute; display: block; z-index: 1; border-radius: 50%; }
/* .orb--mint の見た目 */
.orb--mint { top: 90px; left: 65px; width: 90px; height: 90px; background: var(--color-main); }
/* .orb--blue の見た目 */
.orb--blue { right: 63px; bottom: 58px; width: 73px; height: 73px; background: var(--color-accent); }
/* .orb--line の見た目 */
.orb--line { top: 190px; left: 45%; width: 158px; height: 158px; border: 1px solid var(--color-text); }
/* .intro__visual p の見た目 */
.intro__visual p { position: absolute; right: 31px; bottom: 25px; z-index: 2; margin: 0; font-family: Arial, sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .13em; line-height: 1.45; }
/* .services の見た目 */
.services { padding-bottom: 120px; background: var(--color-bg-alt); }
/* .services__head の見た目 */
.services__head { display: grid; grid-template-columns: 150px 1fr 285px; gap: 70px; align-items: end; margin-bottom: 89px; }
/* .services__head h2 の見た目 */
.services__head h2 { margin: 0; font-family: var(--font-title); font-size: clamp(36px, 5.2vw, 74px); font-weight: 400; letter-spacing: -.065em; line-height: 1; white-space: nowrap; }
/* .services__head > p:last-child の見た目 */
.services__head > p:last-child { margin: 0 0 4px; color: var(--color-ink-soft); font-size: 13px; letter-spacing: .07em; line-height: 2; }
/* .service-list の見た目 */
.service-list { width: min(1360px, calc(100% - 80px)); margin: 0 auto; padding: 0; border-top: 1px solid var(--color-text); list-style: none; }
/* .service-list__item の見た目 */
.service-list__item { border-bottom: 1px solid var(--color-text); }
/* .service-list__item a の見た目 */
.service-list__item a { position: relative; display: grid; min-height: 145px; grid-template-columns: 15% 40% 1fr 50px; align-items: center; gap: 20px; padding: 22px 34px; overflow: hidden; color: var(--color-text); text-decoration: none; }
/* .service-list__item a::before の見た目 */
.service-list__item a::before { position: absolute; inset: 0; z-index: 0; background: var(--service-color); content: ""; transform: translateY(101%); transition: transform .45s cubic-bezier(.22,1,.36,1); }
/* .service-list__item a > * の見た目 */
.service-list__item a > * { position: relative; z-index: 1; }
/* .service-list__item a:hover::before の見た目 */
.service-list__item a:hover::before { transform: translateY(0); }
/* .service-list__num の見た目 */
.service-list__num { align-self: start; padding-top: 10px; font-family: Arial, sans-serif; font-size: 11px; font-weight: 700; }
/* .service-list__title の見た目 */
.service-list__title { display: flex; flex-direction: column; font-size: clamp(24px, 2.4vw, 36px); font-weight: 600; letter-spacing: .08em; line-height: 1.35; }
/* .service-list__title small の見た目 */
.service-list__title small { margin-bottom: 7px; color: var(--color-ink-soft); font-family: Arial, sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .12em; }
/* .service-list__detail の見た目 */
.service-list__detail { color: var(--color-ink-soft); font-size: 13px; letter-spacing: .06em; line-height: 1.7; }
/* .service-list__arrow の見た目 */
.service-list__arrow { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: 20px; font-weight: 400; transition: transform .3s ease; }
/* .service-list__item a:hover .service-list__arrow の見た目 */
.service-list__item a:hover .service-list__arrow { transform: rotate(45deg); }
/* .service-list__item--personal の見た目 */
.service-list__item--personal { --service-color: var(--color-main); }
/* .service-list__item--lecture の見た目 */
.service-list__item--lecture { --service-color: var(--color-accent); }
/* .service-list__item--art の見た目 */
.service-list__item--art { --service-color: var(--color-white); }
/* .service-list__item--promotion の見た目 */
.service-list__item--promotion { --service-color: var(--color-white); }
/* .service-list__item--design の見た目 */
.service-list__item--design { --service-color: var(--color-accent); }
/* .services__bottom の見た目 */
.services__bottom { margin-top: 46px; text-align: right; }
/* .activities の見た目 */
.activities { overflow: hidden; background: var(--color-white); }
/* .activities__head の見た目 */
.activities__head { display: flex; align-items: end; justify-content: space-between; gap: 70px; margin-bottom: 76px; }
/* .activities__head h2 の見た目 */
.activities__head h2 { margin: 19px 0 0; font-family: var(--font-title); font-size: clamp(40px, 5.3vw, 72px); font-weight: 400; letter-spacing: -.07em; line-height: 1.22; }
/* .activities__head h2 em の見た目 */
.activities__head h2 em { color: var(--color-accent); font-style: normal; }
/* .activities__head > p の見た目 */
.activities__head > p { max-width: 360px; margin: 0 0 6px; color: var(--color-ink-soft); font-size: 13px; letter-spacing: .07em; line-height: 2; }
/* .activity-grid の見た目 */
.activity-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
/* .activity-card の見た目 */
.activity-card { position: relative; display: flex; min-height: 350px; padding: 26px; flex-direction: column; justify-content: space-between; overflow: hidden; color: var(--color-text); text-decoration: none; }
/* .activity-card::before, .activity-card::after の見た目 */
.activity-card::before, .activity-card::after { position: absolute; inset: 0; content: ""; }
/* .activity-card::before の見た目 */
.activity-card::before { z-index: 1; background: linear-gradient(110deg, rgba(252,250,216,.78) 0%, rgba(195,235,247,.4) 60%, rgba(255,255,255,.28) 100%); }
/* .activity-card::after の見た目 */
.activity-card::after { z-index: 0; background: var(--activity-image) var(--activity-position, center) / cover no-repeat; opacity: var(--activity-opacity, .78); transform: scale(1.01); transition: transform .7s cubic-bezier(.22,1,.36,1); }
/* .activity-card:hover::after の見た目 */
.activity-card:hover::after { transform: scale(1.07); }
/* .activity-card p, .activity-card span の見た目 */
.activity-card p, .activity-card span { position: relative; z-index: 2; margin: 0; font-family: Arial, sans-serif; font-size: 9px; font-weight: 700; letter-spacing: .12em; line-height: 1.5; text-transform: uppercase; }
/* .activity-card span の見た目 */
.activity-card span { font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif; font-size: 10px; letter-spacing: .05em; text-transform: none; }
/* .activity-card h3 の見た目 */
.activity-card h3 { position: relative; z-index: 2; margin: auto 0 23px; font-size: clamp(23px, 2.2vw, 34px); font-weight: 600; letter-spacing: .08em; line-height: 1.55; }
/* .activity-card__shape の見た目 */
.activity-card__shape { position: absolute; z-index: 1; border-radius: 50%; transition: transform .55s cubic-bezier(.22,1,.36,1); }
/* .activity-card:hover .activity-card__shape の見た目 */
.activity-card:hover .activity-card__shape { transform: scale(1.14) rotate(15deg); }
/* .activity-card--session の見た目 */
.activity-card--session { --activity-image: url("../images/personal-session.jpg"); --activity-position: 72% center; --activity-opacity: .83; grid-column: span 7; background: var(--color-main); }
/* .activity-card--session .activity-card__shape の見た目 */
.activity-card--session .activity-card__shape { right: -16%; bottom: -40%; width: 76%; aspect-ratio: 1; border: 1px solid var(--color-text); }
/* .activity-card--session .activity-card__shape::after の見た目 */
.activity-card--session .activity-card__shape::after { position: absolute; top: 13%; left: -19%; width: 51%; aspect-ratio: 1; border-radius: 50%; background: var(--color-main); content: ""; }
/* .activity-card--lecture の見た目 */
.activity-card--lecture { --activity-image: url("../images/lecture.jpg"); --activity-position: center 47%; --activity-opacity: .72; grid-column: span 5; background: var(--color-accent); }
/* .activity-card--lecture .activity-card__shape の見た目 */
.activity-card--lecture .activity-card__shape { top: -21%; right: -13%; width: 78%; aspect-ratio: 1; background: var(--color-white); }
/* .activity-card--lecture .activity-card__shape::after の見た目 */
.activity-card--lecture .activity-card__shape::after { position: absolute; right: 54%; bottom: 3%; width: 37%; aspect-ratio: 1; border: 1px solid var(--color-text); border-radius: 50%; content: ""; }
/* .activity-card--art の見た目 */
.activity-card--art { --activity-image: url("../images/art-showroom.jpg"); --activity-position: center; --activity-opacity: .66; grid-column: span 4; min-height: 300px; background: var(--color-white); }
/* .activity-card--art .activity-card__shape の見た目 */
.activity-card--art .activity-card__shape { right: -23%; bottom: -32%; width: 91%; aspect-ratio: 1; background: var(--color-main); }
/* .activity-card--art .activity-card__shape::after の見た目 */
.activity-card--art .activity-card__shape::after { position: absolute; top: -17%; left: -14%; width: 55%; aspect-ratio: 1; border: 1px solid var(--color-text); border-radius: 50%; content: ""; }
/* .activity-card--event の見た目 */
.activity-card--event { --activity-image: url("../images/event.jpg"); --activity-position: center 55%; --activity-opacity: .7; grid-column: span 4; min-height: 300px; background: var(--color-white); }
/* .activity-card--event .activity-card__shape の見た目 */
.activity-card--event .activity-card__shape { top: 18%; left: 25%; width: 52%; aspect-ratio: 1; border: 1px solid var(--color-text); }
/* .activity-card--event .activity-card__shape::after の見た目 */
.activity-card--event .activity-card__shape::after { position: absolute; right: -47%; bottom: -37%; width: 74%; aspect-ratio: 1; border-radius: 50%; background: var(--color-main); content: ""; }
/* .activity-card--web の見た目 */
.activity-card--web { grid-column: span 4; min-height: 300px; background: var(--color-accent); }
/* .activity-card--web .activity-card__shape の見た目 */
.activity-card--web .activity-card__shape { top: -32%; right: -24%; width: 84%; aspect-ratio: 1; background: var(--color-accent); }
/* .activity-card--web .activity-card__shape::after の見た目 */
.activity-card--web .activity-card__shape::after { position: absolute; bottom: -55%; left: -78%; width: 86%; aspect-ratio: 1; border: 1px solid var(--color-text); border-radius: 50%; content: ""; }

/* 3事業を均等に見せるトップページの活動カード */
.home .activity-card--art,
.home .activity-card--lecture,
.home .activity-card--event { grid-column: span 4; min-height: 360px; }

/* 独立ブランド Lumina Selphia への案内 */
.activity-card--lumina { grid-column: 1 / -1; min-height: 230px; }
.activity-card--lumina h3 { max-width: 650px; }

/* サービスページ下部のLumina Selphia案内 */
.lumina-guide { padding: 110px 0; background: var(--color-accent); }
.lumina-guide__inner { display: grid; grid-template-columns: 180px minmax(280px, 1fr) minmax(220px, .7fr); align-items: center; gap: 54px; }
.lumina-guide h2 { margin: 0; font-family: var(--font-title); font-size: clamp(28px, 3.2vw, 46px); font-weight: 500; letter-spacing: .05em; line-height: 1.5; }
.lumina-guide__inner > p:not(.eyebrow) { margin: 0; color: var(--color-ink-soft); font-size: 14px; letter-spacing: .05em; }
.lumina-guide__status { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: 12px 18px; border: 1px solid var(--color-text); background: var(--color-main); font-size: 11px; font-weight: 700; letter-spacing: .06em; text-align: center; }
/* .statement の見た目 */
.statement { position: relative; padding: 145px 0; overflow: hidden; background: var(--color-white); color: var(--color-text); }
/* .statement__color の見た目 */
.statement__color { position: absolute; right: -7%; bottom: -70%; width: 68vw; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, var(--color-white), var(--color-accent) 30%, var(--color-main) 48%, transparent 68%); filter: blur(18px); opacity: .9; }
/* .statement__inner の見た目 */
.statement__inner { position: relative; display: flex; align-items: end; justify-content: space-between; }
/* .statement__inner p の見た目 */
.statement__inner p { margin: 0; font-family: var(--font-title); font-size: clamp(47px, 6.9vw, 96px); letter-spacing: -.07em; line-height: .88; }
/* .statement__inner span の見た目 */
.statement__inner span { font-family: Arial, sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .14em; }
/* .news__grid, .visit__grid, .company__grid の見た目 */
.news__grid, .visit__grid, .company__grid { display: grid; grid-template-columns: minmax(300px, .83fr) minmax(400px, 1.17fr); gap: 120px; }
/* .news__heading h2 の見た目 */
.news__heading h2 { font-family: var(--font-title); font-size: clamp(54px, 6.4vw, 84px); font-weight: 400; letter-spacing: -.07em; line-height: .9; }
/* .news__heading > p:last-child, .visit__info > p:not(.section-index) の見た目 */
.news__heading > p:last-child, .visit__info > p:not(.section-index) { max-width: 350px; margin: 0; color: var(--color-ink-soft); font-size: 13px; letter-spacing: .07em; }
/* .news__content の見た目 */
.news__content { align-self: end; }
/* .news-item の見た目 */
.news-item { display: grid; grid-template-columns: 75px 1fr 30px; gap: 20px; padding: 31px 0; border-top: 1px solid var(--color-text); border-bottom: 1px solid var(--color-text); font-size: 15px; font-weight: 600; letter-spacing: .06em; text-decoration: none; transition: color .2s ease; }
/* .news-item:hover の見た目 */
.news-item:hover { color: var(--color-accent); }
/* .news-item time の見た目 */
.news-item time { font-family: Arial, sans-serif; font-size: 10px; font-weight: 700; }
/* .news-item b の見た目 */
.news-item b { font-size: 19px; font-weight: 400; }
/* .news__note の見た目 */
.news__note { margin: 16px 0 0; color: var(--color-ink-soft); font-size: 11px; letter-spacing: .03em; }
/* .visit の見た目 */
.visit { background: linear-gradient(135deg, rgba(252,250,216,.55), rgba(195,235,247,.55)); }
/* .visit__info h2 の見た目 */
.visit__info h2 { font-family: var(--font-title); font-size: clamp(22px, 2.5vw, 36px); font-weight: 400; letter-spacing: -.06em; line-height: 1.2; white-space: nowrap; }
/* .contact-detail の見た目 */
.contact-detail { margin: 42px 0 0; }
/* .contact-detail > div の見た目 */
.contact-detail > div { display: grid; grid-template-columns: 60px 1fr; gap: 20px; padding: 14px 0; border-top: 1px solid var(--color-line); }
/* .contact-detail dt の見た目 */
.contact-detail dt { font-family: Arial, sans-serif; font-size: 9px; font-weight: 700; letter-spacing: .12em; }
/* .contact-detail dd の見た目 */
.contact-detail dd { margin: 0; font-size: 12px; letter-spacing: .04em; line-height: 1.8; }
/* .contact-detail a の見た目 */
.contact-detail a { text-underline-offset: 4px; }
/* .contact-form の見た目 */
.contact-form { display: flex; flex-direction: column; gap: 20px; padding: 42px; background: var(--color-main); }
/* .contact-form label の見た目 */
.contact-form label { display: flex; flex-direction: column; gap: 7px; font-size: 12px; font-weight: 700; letter-spacing: .05em; }
/* .contact-form input, .contact-form select, .contact-form textarea の見た目 */
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid var(--color-line); border-radius: 0; outline: none; background: transparent; padding: 8px 0 9px; color: var(--color-text); font-size: 15px; font-weight: 400; }
/* .contact-form textarea の見た目 */
.contact-form textarea { resize: vertical; }
/* .contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus の見た目 */
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--color-accent); }
/* .form-submit の見た目 */
.form-submit { display: flex; margin-top: 9px; align-items: center; justify-content: space-between; border: 1px solid var(--color-text); background: var(--color-white); color: var(--color-text); padding: 17px 18px; font-size: 13px; font-weight: 700; letter-spacing: .08em; cursor: pointer; transition: color .25s ease, background .25s ease; }
/* .form-submit b の見た目 */
.form-submit b { font-size: 18px; font-weight: 400; }
/* .form-submit:hover の見た目 */
.form-submit:hover { background: var(--color-accent); color: var(--color-text); }

/* サービスページとC-LA紹介ページの見出し・本文 */
/* .page-hero の見た目 */
.page-hero { position: relative; min-height: 560px; overflow: hidden; background: linear-gradient(135deg, rgba(195,235,247,.62), rgba(252,250,216,.48)); }
/* .page-hero__light の見た目 */
.page-hero__light { position: absolute; top: -55%; right: -5%; width: min(76vw, 980px); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 35% 40%, var(--color-accent), var(--color-main) 33%, transparent 68%); filter: blur(12px); opacity: .75; }
/* .page-hero__inner の見た目 */
.page-hero__inner { position: relative; display: flex; min-height: 560px; padding: 190px 0 74px; flex-direction: column; justify-content: flex-end; }
/* .page-hero h1 の見た目 */
.page-hero h1 { max-width: 750px; margin: 19px 0 22px; font-family: var(--font-title); font-size: clamp(59px, 7.8vw, 112px); font-weight: 400; letter-spacing: -.075em; line-height: .84; }
/* .page-hero__inner > p:not(.eyebrow) の見た目 */
.page-hero__inner > p:not(.eyebrow) { margin: 0; font-size: 14px; font-weight: 600; letter-spacing: .08em; line-height: 2; }
/* .page-hero__number の見た目 */
.page-hero__number { position: absolute; right: 0; bottom: 78px; font-family: Arial, sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .16em; writing-mode: vertical-rl; }
/* .page-hero--about の見た目 */
.page-hero--about { background: linear-gradient(135deg, rgba(255,255,255,.88), rgba(252,250,216,.62)); }
/* .page-hero--about .page-hero__light の見た目 */
.page-hero--about .page-hero__light { right: 10%; background: radial-gradient(circle at 32% 33%, var(--color-main), var(--color-white) 42%, transparent 68%); }
/* .service-overview の見た目 */
.service-overview { padding-bottom: 93px; }
/* .service-overview h2 の見た目 */
.service-overview h2 { margin: 20px 0 0; font-size: clamp(32px, 4vw, 59px); font-weight: 600; letter-spacing: .09em; line-height: 1.55; }
/* .service-detail の見た目 */
.service-detail { padding: 120px 0; }
/* .service-detail:nth-of-type(even) の見た目 */
.service-detail:nth-of-type(even) { background: var(--color-bg-alt); }
/* .service-detail__grid の見た目 */
.service-detail__grid { display: grid; grid-template-columns: 110px minmax(330px, 1fr) minmax(260px, .76fr); gap: 55px; align-items: start; }
/* .service-detail__number の見た目 */
.service-detail__number { margin: 8px 0 0; font-family: Arial, sans-serif; font-size: 12px; font-weight: 700; }
/* .service-detail__main .eyebrow の見た目 */
.service-detail__main .eyebrow { margin-bottom: 15px; }
/* .service-detail__main h2 の見た目 */
.service-detail__main h2 { margin: 0 0 27px; font-size: clamp(34px, 4.2vw, 59px); font-weight: 600; letter-spacing: .08em; line-height: 1.35; }
/* .service-detail--design .service-detail__main h2 の見た目 */
.service-detail--design .service-detail__main h2 { font-size: clamp(30px, 3.4vw, 48px); letter-spacing: .035em; }
/* .service-detail__lead の見た目 */
.service-detail__lead { max-width: 540px; margin: 0; color: var(--color-ink-soft); font-size: 14px; letter-spacing: .08em; }
/* .service-tags の見た目 */
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 29px 0 0; padding: 0; list-style: none; }
/* .service-tags li の見た目 */
.service-tags li { padding: 5px 11px; border: 1px solid var(--color-line); font-size: 11px; font-weight: 600; letter-spacing: .04em; }
/* .service-detail__note の見た目 */
.service-detail__note { margin: 16px 0 0; color: var(--color-ink-soft); font-size: 11px; }
.service-detail__link { display: inline-flex; margin-top: 26px; }
/* .service-detail__art の見た目 */
.service-detail__art { position: relative; min-height: 284px; overflow: hidden; background: linear-gradient(135deg, rgba(252,250,216,.18), rgba(195,235,247,.4)), var(--detail-image) var(--detail-position, center) / cover no-repeat; }
/* .service-detail__art::before, .service-detail__art::after, .service-detail__art span の見た目 */
.service-detail__art::before, .service-detail__art::after, .service-detail__art span { position: absolute; display: block; border-radius: 50%; content: ""; }
/* .service-detail__art::before の見た目 */
.service-detail__art::before { width: 73%; aspect-ratio: 1; top: -14%; left: -18%; background: var(--art-one); mix-blend-mode: screen; opacity: .62; }
/* .service-detail__art::after の見た目 */
.service-detail__art::after { width: 56%; aspect-ratio: 1; right: -9%; bottom: -14%; border: 1px solid rgba(74,74,74,.52); }
/* .service-detail__art span の見た目 */
.service-detail__art span { top: 31%; left: 40%; width: 37%; aspect-ratio: 1; background: var(--art-two); mix-blend-mode: screen; opacity: .55; }
/* .service-detail--personal の見た目 */
.service-detail--personal { --detail-image: url("../images/personal-session.jpg"); --detail-position: 72% center; --art-one: var(--color-main); --art-two: var(--color-accent); }
/* .service-detail--lecture の見た目 */
.service-detail--lecture { --detail-image: url("../images/lecture.jpg"); --detail-position: center; --art-one: var(--color-accent); --art-two: var(--color-white); }
/* .service-detail--art の見た目 */
.service-detail--art { --detail-image: url("../images/art-showroom.jpg"); --detail-position: center; --art-one: var(--color-white); --art-two: var(--color-main); }
/* .service-detail--promotion の見た目 */
.service-detail--promotion { --detail-image: url("../images/event.jpg"); --detail-position: center; --art-one: var(--color-white); --art-two: var(--color-main); }
/* .service-detail--design の見た目 */
.service-detail--design { --detail-image: url("../images/hero-light.jpg"); --detail-position: center; --art-one: var(--color-accent); --art-two: var(--color-white); }
/* .closing-cta の見た目 */
.closing-cta { padding: 114px 0; background: var(--color-accent); color: var(--color-text); }
/* .closing-cta > div の見た目 */
.closing-cta > div { display: flex; align-items: center; justify-content: space-between; }
/* .closing-cta p の見た目 */
.closing-cta p { margin: 0; font-family: Arial, sans-serif; font-size: clamp(20px, 3vw, 37px); font-weight: 700; letter-spacing: .03em; }
/* .closing-cta a の見た目 */
.closing-cta a { display: inline-flex; align-items: center; gap: 32px; padding: 14px 0; border-bottom: 1px solid var(--color-text); color: var(--color-text); font-size: 14px; font-weight: 700; letter-spacing: .09em; text-decoration: none; transition: gap .2s ease; }
/* .closing-cta a:hover の見た目 */
.closing-cta a:hover { gap: 42px; }
/* .closing-cta b の見た目 */
.closing-cta b { font-size: 19px; font-weight: 400; }
/* .about-intro__grid の見た目 */
.about-intro__grid { display: grid; grid-template-columns: 150px 1fr minmax(260px, .75fr); gap: 70px; }
/* .about-intro__main h2 の見た目 */
.about-intro__main h2 { margin-top: 12px; font-family: var(--font-title); font-size: clamp(49px, 5.8vw, 74px); font-weight: 400; letter-spacing: -.075em; line-height: 1; }
/* .about-intro__main > p:last-child の見た目 */
.about-intro__main > p:last-child { max-width: 410px; color: var(--color-ink-soft); font-size: 14px; letter-spacing: .07em; }
/* .about-intro__visual の見た目 */
.about-intro__visual { display: grid; min-height: 318px; place-items: center; background: conic-gradient(from 210deg at 50% 50%, var(--color-white), var(--color-accent), var(--color-main), var(--color-white)); }
/* .about-intro__visual span の見た目 */
.about-intro__visual span { color: var(--color-text); font-family: var(--font-title); font-size: clamp(25px, 2.7vw, 37px); letter-spacing: -.06em; line-height: 1; text-align: center; }
/* .about-space の見た目 */
.about-space { padding: 134px 0; background: linear-gradient(135deg, rgba(195,235,247,.34), rgba(255,255,255,.72)); }
/* .about-space__grid の見た目 */
.about-space__grid { display: grid; grid-template-columns: 1fr minmax(310px, .75fr); gap: 120px; align-items: end; }
/* .about-space h2 の見た目 */
.about-space h2 { margin-bottom: 0; font-family: var(--font-title); font-size: clamp(40px, 4.8vw, 66px); font-weight: 400; letter-spacing: -.06em; line-height: 1; }
/* .about-space__grid > p の見た目 */
.about-space__grid > p { margin: 0; font-size: 14px; letter-spacing: .08em; }
/* .company の見た目 */
.company { background: var(--color-main); }
/* .company h2 の見た目 */
.company h2 { margin-bottom: 0; font-family: var(--font-title); font-size: clamp(40px, 4.8vw, 66px); font-weight: 400; letter-spacing: -.06em; line-height: 1; }
/* .company-list の見た目 */
.company-list { margin: 0; border-top: 1px solid var(--color-text); }
/* .company-list > div の見た目 */
.company-list > div { display: grid; grid-template-columns: 125px 1fr; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--color-line); }
/* .company-list dt の見た目 */
.company-list dt { font-family: Arial, sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .1em; }
/* .company-list dd の見た目 */
.company-list dd { margin: 0; font-size: 13px; letter-spacing: .05em; line-height: 1.9; }
/* .company-list a の見た目 */
.company-list a { text-underline-offset: 4px; }

/* 全ページ共通のフッターと表示時の動き */
/* .site-footer の見た目 */
.site-footer { background: var(--color-main); }
/* .site-footer__top の見た目 */
.site-footer__top { display: flex; min-height: 150px; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--color-line); }
/* .footer-top の見た目 */
.footer-top { font-family: Arial, sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-decoration: none; }
/* .site-footer__bottom の見た目 */
.site-footer__bottom { display: flex; min-height: 83px; align-items: center; justify-content: space-between; color: var(--color-ink-soft); font-family: Arial, sans-serif; font-size: 9px; font-weight: 700; letter-spacing: .08em; }
/* .site-footer__bottom p の見た目 */
.site-footer__bottom p { margin: 0; }
/* .site-footer__bottom div の見た目 */
.site-footer__bottom div { display: flex; gap: 20px; }
/* .site-footer__bottom a の見た目 */
.site-footer__bottom a { text-decoration: none; }
/* .site-footer__bottom a:hover の見た目 */
.site-footer__bottom a:hover { color: var(--color-text); }
/* .reveal の見た目 */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1); }
/* .reveal.is-visible の見た目 */
.reveal.is-visible { opacity: 1; transform: translateY(0); }
/* .hero .reveal:nth-child(2) の見た目 */
.hero .reveal:nth-child(2) { transition-delay: .12s; }
/* .hero .reveal:nth-child(3) の見た目 */
.hero .reveal:nth-child(3) { transition-delay: .24s; }

/* スマートフォン・小さな画面での見た目 */
@media (max-width: 800px) {
  /* :root の見た目 */
  :root { --shell: min(100% - 44px, 1120px); }
  /* body の見た目 */
  body { font-size: 15px; }
  /* .section-pad の見た目 */
  .section-pad { padding: 95px 0; }
  /* .site-header__inner の見た目 */
  .site-header__inner { min-height: 70px; }
  /* .brand__logo の見た目 */
  .brand__logo { width: 70px; }
  .brand__logo--footer { width: 88px; }
  /* .brand__mark の見た目 */
  .brand__mark { font-size: 26px; }
  /* .brand__place の見た目 */
  .brand__place { margin-top: 5px; font-size: 7px; }
  /* .menu-button の見た目 */
  .menu-button { position: relative; z-index: 22; display: grid; width: 47px; height: 43px; align-content: center; gap: 5px; border: 0; background: transparent; cursor: pointer; }
  /* .menu-button span の見た目 */
  .menu-button span { display: block; width: 24px; height: 1px; margin-left: auto; background: var(--color-text); transition: transform .25s ease, opacity .25s ease; }
  /* .menu-button i の見た目 */
  .menu-button i { position: absolute; right: 0; bottom: 0; font-family: Arial, sans-serif; font-size: 7px; font-style: normal; font-weight: 700; letter-spacing: .08em; }
  /* .menu-button[aria-expanded="true"] span:nth-of-type(1) の見た目 */
  .menu-button[aria-expanded="true"] span:nth-of-type(1) { transform: translateY(6px) rotate(45deg); }
  /* .menu-button[aria-expanded="true"] span:nth-of-type(2) の見た目 */
  .menu-button[aria-expanded="true"] span:nth-of-type(2) { opacity: 0; }
  /* .menu-button[aria-expanded="true"] span:nth-of-type(3) の見た目 */
  .menu-button[aria-expanded="true"] span:nth-of-type(3) { transform: translateY(-6px) rotate(-45deg); }
  /* .site-nav の見た目 */
  .site-nav { position: fixed; inset: 0; display: flex; visibility: hidden; flex-direction: column; align-items: flex-start; justify-content: center; gap: 31px; padding: 80px 11%; background: rgba(252,250,216,.98); opacity: 0; transition: opacity .25s ease, visibility .25s ease; }
  /* .site-nav.is-open の見た目 */
  .site-nav.is-open { visibility: visible; opacity: 1; }
  /* .site-nav > a の見た目 */
  .site-nav > a { gap: 13px; font-size: 25px; }
  /* .site-nav > a > span の見た目 */
  .site-nav > a > span { font-size: 10px; }
  /* .nav-contact の見た目 */
  .nav-contact { min-width: 210px; margin-top: 13px; padding: 17px 19px !important; font-size: 14px !important; }
  /* .hero の見た目 */
  .hero { min-height: 720px; }
  /* .hero__inner の見た目 */
  .hero__inner { padding-top: 67px; padding-bottom: 146px; }
  /* .hero__eyebrow の見た目 */
  .hero__eyebrow { margin-bottom: 24px; }
  /* .hero__title の見た目 */
  .hero__title { font-size: clamp(53px, 16vw, 76px); line-height: .88; }
  /* .hero__copy の見た目 */
  .hero__copy { display: block; margin-top: 36px; }
  /* .hero__copy p の見た目 */
  .hero__copy p { font-size: 14px; }
  /* .circle-link の見た目 */
  .circle-link { width: 96px; height: 96px; margin-top: 29px; font-size: 9px; }
  /* .circle-link b の見た目 */
  .circle-link b { margin: 57px 0 0 57px; }
  /* .hero__scroll の見た目 */
  .hero__scroll { display: none; }
  /* .hero-news の見た目 */
  .hero-news { right: 22px; bottom: 18px; width: calc(100% - 44px); min-height: 73px; grid-template-columns: 60px 42px 1fr 15px; gap: 8px; padding: 10px 13px; font-size: 10px; }
  /* .hero-news__label の見た目 */
  .hero-news__label { font-size: 7px; }
  /* .hero-news time の見た目 */
  .hero-news time { font-size: 9px; }
  /* .hero-news b の見た目 */
  .hero-news b { font-size: 15px; }
  /* .intro__grid, .services__head, .news__grid, .visit__grid, .company__grid, .about-intro__grid, .about-space__grid の見た目 */
  .intro__grid, .services__head, .news__grid, .visit__grid, .company__grid, .about-intro__grid, .about-space__grid { grid-template-columns: 1fr; gap: 35px; }
  /* .intro__copy の見た目 */
  .intro__copy { padding-top: 0; }
  /* .intro__copy h2, .visit__info h2 の見た目 */
  .intro__copy h2, .visit__info h2 { margin-top: 15px; }
  .visit__info h2 { font-size: clamp(21px, 6.4vw, 28px); }
  /* .intro__visual の見た目 */
  .intro__visual { min-height: 280px; }
  /* .intro__visual::before の見た目 */
  .intro__visual::before { top: 35px; right: 18px; width: 190px; height: 190px; }
  /* .intro__visual::after の見た目 */
  .intro__visual::after { width: 220px; height: 220px; }
  /* .orb--mint の見た目 */
  .orb--mint { top: 55px; left: 37px; width: 68px; height: 68px; }
  /* .orb--blue の見た目 */
  .orb--blue { right: 37px; bottom: 35px; width: 55px; height: 55px; }
  /* .orb--line の見た目 */
  .orb--line { top: 127px; width: 112px; height: 112px; }
  /* .services の見た目 */
  .services { padding-bottom: 73px; }
  /* .services__head の見た目 */
  .services__head { margin-bottom: 48px; }
  /* .services__head h2 の見た目 */
  .services__head h2 { font-size: clamp(29px, 8.5vw, 38px); }
  /* .services__head > p:last-child の見た目 */
  .services__head > p:last-child { max-width: 280px; font-size: 12px; }
  /* .service-list の見た目 */
  .service-list { width: calc(100% - 44px); }
  /* .service-list__item a の見た目 */
  .service-list__item a { min-height: 0; grid-template-columns: 33px 1fr 34px; gap: 9px; padding: 25px 4px; }
  /* .service-list__num の見た目 */
  .service-list__num { padding-top: 5px; font-size: 9px; }
  /* .service-list__title の見た目 */
  .service-list__title { font-size: 21px; }
  /* .service-list__title small の見た目 */
  .service-list__title small { font-size: 8px; }
  /* .service-list__detail の見た目 */
  .service-list__detail { display: none; }
  /* .service-list__arrow の見た目 */
  .service-list__arrow { width: 31px; height: 31px; font-size: 15px; }
  /* .services__bottom の見た目 */
  .services__bottom { margin-top: 30px; text-align: left; }
  /* .activities__head の見た目 */
  .activities__head { display: block; margin-bottom: 42px; }
  /* .activities__head h2 の見た目 */
  .activities__head h2 { margin-top: 16px; font-size: clamp(36px, 11.5vw, 54px); line-height: 1.25; }
  /* .activities__head > p の見た目 */
  .activities__head > p { margin-top: 28px; font-size: 12px; }
  /* .activity-grid の見た目 */
  .activity-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  /* .activity-card の見た目 */
  .activity-card { min-height: 248px; grid-column: span 1; padding: 16px; }
  /* .activity-card h3 の見た目 */
  .activity-card h3 { margin-bottom: 16px; font-size: 18px; line-height: 1.45; }
  /* .activity-card p, .activity-card span の見た目 */
  .activity-card p, .activity-card span { font-size: 7px; }
  /* .activity-card span の見た目 */
  .activity-card span { font-size: 8px; line-height: 1.5; }
  /* .activity-card--session の見た目 */
  .activity-card--session { grid-column: span 2; min-height: 280px; }
  /* .activity-card--session h3 の見た目 */
  .activity-card--session h3 { font-size: 25px; }
  /* .activity-card--art, .activity-card--event, .activity-card--web の見た目 */
  .activity-card--art, .activity-card--event, .activity-card--web { min-height: 226px; }
  /* .activity-card--web の見た目 */
  .activity-card--web { grid-column: span 2; min-height: 228px; }
  /* 3事業とLumina案内のスマホ表示 */
  .home .activity-card--art,
  .home .activity-card--lecture,
  .home .activity-card--event { grid-column: span 2; min-height: 280px; }
  .activity-card--lumina { grid-column: span 2; min-height: 220px; }
  /* Lumina Selphia案内のスマホ表示 */
  .lumina-guide { padding: 75px 0; }
  .lumina-guide__inner { grid-template-columns: 1fr; gap: 24px; }
  /* .statement の見た目 */
  .statement { padding: 87px 0; }
  /* .statement__inner の見た目 */
  .statement__inner { display: block; }
  /* .statement__inner p の見た目 */
  .statement__inner p { font-size: clamp(43px, 14vw, 67px); }
  /* .statement__inner span の見た目 */
  .statement__inner span { display: block; margin-top: 30px; }
  /* .news__heading h2 の見た目 */
  .news__heading h2 { font-size: 73px; }
  /* .news-item の見た目 */
  .news-item { grid-template-columns: 51px 1fr 20px; gap: 12px; font-size: 13px; }
  /* .contact-form の見た目 */
  .contact-form { padding: 27px 23px; }
  /* .page-hero, .page-hero__inner の見た目 */
  .page-hero, .page-hero__inner { min-height: 468px; }
  /* .page-hero__inner の見た目 */
  .page-hero__inner { padding: 152px 0 47px; }
  /* .page-hero h1 の見た目 */
  .page-hero h1 { font-size: clamp(52px, 15vw, 71px); }
  /* .page-hero__inner > p:not(.eyebrow) の見た目 */
  .page-hero__inner > p:not(.eyebrow) { font-size: 12px; }
  /* .page-hero__number の見た目 */
  .page-hero__number { right: 0; bottom: 50px; font-size: 8px; }
  /* .service-overview の見た目 */
  .service-overview { padding-bottom: 52px; }
  /* .service-overview h2 の見た目 */
  .service-overview h2 { font-size: 26px; }
  /* .service-detail の見た目 */
  .service-detail { padding: 73px 0; }
  /* .service-detail__grid の見た目 */
  .service-detail__grid { grid-template-columns: 32px 1fr; gap: 11px; }
  /* .service-detail__number の見た目 */
  .service-detail__number { font-size: 9px; }
  /* .service-detail__main h2 の見た目 */
  .service-detail__main h2 { font-size: 29px; }
  /* .service-detail--design .service-detail__main h2 の見た目 */
  .service-detail--design .service-detail__main h2 { font-size: 26px; }
  /* .service-detail__lead の見た目 */
  .service-detail__lead { font-size: 13px; }
  /* .service-detail__art の見た目 */
  .service-detail__art { min-height: 195px; grid-column: 2; margin-top: 12px; }
  /* .closing-cta の見た目 */
  .closing-cta { padding: 72px 0; }
  /* .closing-cta > div の見た目 */
  .closing-cta > div { display: block; }
  /* .closing-cta p の見た目 */
  .closing-cta p { font-size: 22px; }
  /* .closing-cta a の見た目 */
  .closing-cta a { margin-top: 30px; }
  /* .about-intro__main h2 の見た目 */
  .about-intro__main h2 { margin: 8px 0 24px; font-size: 64px; }
  /* .about-intro__visual の見た目 */
  .about-intro__visual { min-height: 235px; }
  /* .about-space の見た目 */
  .about-space { padding: 85px 0; }
  /* .about-space h2, .company h2 の見た目 */
  .about-space h2, .company h2 { font-size: 52px; }
  /* .company-list > div の見た目 */
  .company-list > div { grid-template-columns: 73px 1fr; gap: 10px; }
  /* .site-footer__top の見た目 */
  .site-footer__top { min-height: 116px; }
  /* .site-footer__bottom の見た目 */
  .site-footer__bottom { min-height: 105px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 11px; }
}

/* 動きを減らす設定を選んだ端末向け */
@media (prefers-reduced-motion: reduce) {
  /* *, *::before, *::after の見た目 */
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
