:root {
  --ink:#243334;
  --muted:#5e6e70;
  --blue:#dff0f3;
  --line:#dae3e3;
  --paper:#fff;
  --sea:#eff7f8;
  font-family:-apple-system,BlinkMacSystemFont,"Helvetica Neue","Hiragino Kaku Gothic ProN","Yu Gothic",Meiryo,sans-serif;
  color:var(--ink);
  background:var(--paper);
  font-synthesis:none;
}

* {
  box-sizing:border-box;
}

html {
  scroll-behavior:smooth;
  scroll-padding-top:32px;
}

body {
  margin:0;
  font-size:1rem;
  line-height:1.9;
  -webkit-font-smoothing:antialiased;
}

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

button {
  font:inherit;
}

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

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

a:focus-visible,button:focus-visible {
  outline:3px solid #287b90;
  outline-offset:6px;
}

a {
  transition:color .2s,background-color .2s;
}

a:hover {
  color:#287b90;
}

.wrap {
  width:min(1280px,calc(100% - 112px));
  margin-inline:auto;
}

.header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:112px;
}

.wordmark {
  display:inline-flex;
  align-items:center;
  gap:9px;
  font-size:1.5625rem;
  font-weight:650;
  letter-spacing:-1px;
  line-height:1.3;
}

.brand-dot {
  width:7px;
  height:7px;
  background:#96c4cd;
  border-radius:50%;
  margin-top:14px;
}

.header nav,.footer nav {
  display:flex;
  align-items:center;
  gap:38px;
  font-size:0.875rem;
  letter-spacing:.025em;
}

.header nav a,.footer nav a {
  padding-block:12px;
}

.header nav a:last-child span {
  margin-left:6px;
}

.skip-link {
  position:fixed;
  top:8px;
  left:12px;
  background:white;
  padding:10px 20px;
  z-index:9;
  transform:translateY(-160%);
}

.skip-link:focus {
  transform:none;
}

.eyebrow,h2.eyebrow {
  font-size:0.75rem;
  letter-spacing:.15em;
  font-weight:600;
  line-height:1.6;
}

.hero {
  display:grid;
  grid-template-columns:minmax(0, .9fr) minmax(0, 1.1fr);
  gap:36px;
  padding-top:52px;
  padding-bottom:96px;
  align-items:center;
}

.hero-copy {
  padding-bottom:12px;
}

.hero-copy>.eyebrow {
  color:var(--muted);
  margin-bottom:26px;
  font-size:0.6875rem;
  letter-spacing:.19em;
}

h1 {
  font-size:clamp(3rem,5.05vw,4.625rem);
  line-height:1.43;
  letter-spacing:.085em;
  font-weight:500;
  margin-left:-.07em;
}

.hero-description {
  font-size:0.875rem;
  line-height:2.1;
  letter-spacing:.025em;
  margin-top:28px;
}

.hero-description p+p {
  margin-top:14px;
}

.text-link {
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  min-height:48px;
  border-bottom:1px solid var(--ink);
  font-size:0.875rem;
  font-weight:600;
}

.hero-cta {
  margin-top:26px;
  padding-bottom:3px;
}

.text-link span {
  font-size:1.25rem;
  font-weight:400;
  transition:transform .2s;
}

.text-link:hover span {
  transform:translate(2px,-2px);
}

.hero-cta:hover span {
  transform:translateY(3px);
}

.hero-visual {
  position:relative;
  align-self:stretch;
  min-height:510px;
  padding-bottom:48px;
}

.beach {
  width:100%;
  height:100%;
  min-height:462px;
  position:absolute;
  inset:0 0 auto;
  max-height:calc(100% - 48px);
  object-fit:cover;
  object-position:53% 50%;
  border-radius:2px;
}

.beach-caption {
  position:absolute;
  left:0;
  bottom:9px;
  display:flex;
  align-items:center;
  gap:12px;
  font-size:0.6875rem;
  letter-spacing:.08em;
  color:var(--muted);
}

.caption-line {
  width:26px;
  height:1px;
  background:#95b8bf;
}

.beach-discovery {
  position:absolute;
  right:15px;
  bottom:67px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:5px;
}

.beach-discovery span {
  font-size:0.625rem;
  letter-spacing:.02em;
  color:#334547;
  background:#ffffffde;
  border-radius:2px;
  padding:2px 6px;
}

.animal {
  object-fit:contain;
  width:40px;
  height:40px;
  image-rendering:pixelated;
  animation:wander 8s ease-in-out infinite;
}

.section {
  padding-block:86px;
  border-top:1px solid var(--line);
}

.section-heading {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:42px;
}

.section-heading .eyebrow,.about>.eyebrow {
  color:var(--muted);
  margin-bottom:18px;
}

h2 {
  font-size:2.375rem;
  font-weight:500;
  line-height:1.5;
  letter-spacing:-.025em;
}

.section-message {
  font-size:1rem;
  font-weight:500;
  line-height:1.5;
  letter-spacing:.06em;
}

.section-aside {
  font-size:0.8125rem;
  color:var(--muted);
  line-height:1.9;
}

.product-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
}

.product-card {
  display:grid;
  grid-template-columns:128px 1fr;
  gap:28px;
  padding:32px;
  border:1px solid var(--line);
  min-width:0;
  background:#fff;
}

.product-grid>.product-card:only-child {
  grid-column:1/-1;
  grid-template-columns:220px 1fr;
  padding:36px;
  gap:42px;
  align-items:center;
}

.product-symbol {
  display:grid;
  place-items:center;
  min-height:136px;
  background:var(--sea);
  color:#496d74;
}

.product-symbol svg {
  width:45px;
  height:58px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.5;
}

.product-copy {
  min-width:0;
}

.product-copy>.eyebrow {
  font-size:0.625rem;
  color:var(--muted);
}

.product-copy h3 {
  font-size:1.375rem;
  font-weight:500;
  line-height:1.6;
  margin-top:7px;
}

.product-copy>p:not(.eyebrow) {
  font-size:0.875rem;
  color:var(--muted);
  margin-top:9px;
}

.product-bottom {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  margin-top:20px;
}

.product-domain {
  font-size:0.75rem;
  color:var(--muted);
  letter-spacing:.04em;
}

.product-bottom .text-link {
  min-height:40px;
  gap:28px;
  white-space:nowrap;
}

.services {
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:36px;
}

.service {
  position:relative;
  border-top:1px solid var(--line);
  padding-top:30px;
  padding-bottom:22px;
}

.service-primary {
  border-top-color:#699fab;
}

.service-number {
  position:absolute;
  right:0;
  top:23px;
  font-size:0.8125rem;
  color:var(--muted);
}

.service>.eyebrow {
  font-size:0.6875rem;
  color:var(--muted);
  padding-right:28px;
}

.service h3 {
  font-size:1.3125rem;
  font-weight:500;
  margin-top:20px;
}

.service p:last-of-type {
  font-size:0.8125rem;
  color:var(--muted);
  margin-top:8px;
}

.service-rule {
  display:block;
  width:36px;
  height:3px;
  background:#a1cbd4;
  margin-top:28px;
}

.philosophy {
  background:var(--sea);
  margin-top:12px;
}

.philosophy-inner {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  padding-block:88px 100px;
  position:relative;
}

.philosophy-label h2 {
  font-size:1.125rem;
  letter-spacing:.05em;
  margin-top:18px;
}

.philosophy-label .eyebrow {
  color:var(--muted);
}

.shore-mark {
  margin-top:78px;
  font-family:"Hiragino Mincho ProN","Yu Mincho",serif;
  writing-mode:vertical-rl;
  font-size:1.25rem;
  letter-spacing:.28em;
  color:#658790;
}

.philosophy-copy {
  padding:40px 44px;
  background:#fffefb;
  border:1px solid #e0e9e8;
  border-radius:3px;
  box-shadow:0 3px 12px rgb(36 51 52 / 2%);
}

.philosophy-main {
  font-size:2.75rem;
  font-weight:500;
  letter-spacing:.09em;
  margin-bottom:28px;
}

.philosophy-copy>p:not(.philosophy-main) {
  font-size:1rem;
  line-height:2.15;
  letter-spacing:.05em;
  margin-top:24px;
}

.making-flow {
  grid-column:1/-1;
  margin-top:12px;
}

.values {
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:24px;
  padding:0;
  margin:0;
  list-style:none;
}

.values li {
  position:relative;
  min-width:0;
  font-size:0.875rem;
  letter-spacing:.025em;
}

.flow-number {
  display:grid;
  place-items:center;
  width:34px;
  height:34px;
  border:1px solid #b9d3d8;
  border-radius:50%;
  font-size:0.6875rem;
  color:var(--muted);
  letter-spacing:.08em;
}

.flow-label {
  display:block;
  margin-top:17px;
}

.flow-connector {
  position:absolute;
  top:17px;
  left:48px;
  right:-10px;
  border-top:1px dashed #aecbd1;
}

.flow-connector::after {
  content:"";
  position:absolute;
  top:-3px;
  right:0;
  width:5px;
  height:5px;
  border-top:1px solid #88abb4;
  border-right:1px solid #88abb4;
  transform:rotate(45deg);
}

.flow-continuation {
  margin-top:26px;
  text-align:right;
  font-size:0.8125rem;
  color:var(--muted);
  letter-spacing:.05em;
}

.flow-continuation>span {
  margin-right:8px;
  color:#658790;
}

.next-idea {
  position:absolute;
  bottom:21px;
  right:0;
  display:flex;
  gap:15px;
  align-items:center;
  font-size:0.6875rem;
  color:var(--muted);
}

.animal-fox {
  animation-delay:-3s;
}

.about {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  border-top:0;
  padding-block:100px;
}

.about-details {
  scroll-margin-top:40px;
}

.about-details h3 {
  font-size:1.625rem;
  font-weight:500;
  letter-spacing:-.02em;
}

.about-details h3 span {
  font-size:0.8125rem;
  display:inline-block;
  color:var(--muted);
  margin-left:18px;
  letter-spacing:.04em;
}

dl {
  margin:30px 0 0;
}

dl>div {
  display:grid;
  grid-template-columns:96px 1fr;
  gap:20px;
  padding-block:22px;
  border-top:1px solid var(--line);
  font-size:0.875rem;
}

dt {
  color:var(--muted);
}

dd {
  margin:0;
  overflow-wrap:anywhere;
}

dd ul {
  margin:0;
  padding:0;
  list-style:none;
}

.contact {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:36px;
  border-block:1px solid var(--line);
  padding-block:55px;
}

.contact h2 {
  font-size:1.5625rem;
  letter-spacing:.04em;
  margin-top:14px;
}

.contact-action {
  text-align:center;
  flex-shrink:0;
}

.contact-button {
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  gap:55px;
  padding:17px 26px;
  background:var(--ink);
  color:white;
  border:0;
  font-size:0.875rem;
  min-width:220px;
  min-height:56px;
}

.contact-button[disabled] {
  background:#eef3f3;
  color:#627072;
  cursor:not-allowed;
}

.contact-button:not([disabled]):hover {
  background:#365e67;
  color:white;
}

.contact-note {
  font-size:0.75rem;
  color:var(--muted);
  margin-top:6px;
}

.footer {
  padding-block:48px 28px;
}

.footer-top {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
}

.footer .wordmark {
  font-size:1.375rem;
}

.footer-bottom {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:22px;
  margin-top:36px;
  font-size:0.6875rem;
  color:var(--muted);
}

.footer-bottom>div {
  display:flex;
  gap:24px;
  align-items:center;
}

.footer-bottom a {
  display:inline-flex;
  align-items:center;
  min-height:44px;
}

.footer-bottom small {
  font-size:0.6875rem;
}

.unavailable {
  font-size:0.6875rem;
}

.unavailable span {
  font-size:0.625rem;
  margin-left:4px;
}

.footer-note {
  letter-spacing:.1em;
}

.mobile-break {
  display:none;
}

@keyframes wander {
  0%,35%,100% {
    transform:translateX(0);
  }
  55%,75% {
    transform:translateX(5px);
  }
}

@media(min-width:1500px) {
  .hero {
    gap:54px;
  }
  .hero-visual {
    min-height:590px;
  }
}

@media(max-width:1050px) {
  .wrap {
    width:calc(100% - 72px);
  }
  .hero {
    gap:24px;
    padding-top:30px;
  }
  .hero-description {
    font-size:0.8125rem;
  }
  .desktop-break {
    display:none;
  }
  .hero-visual {
    min-height:510px;
  }
  .services {
    gap:24px;
  }
  .service h3 {
    font-size:1.125rem;
  }
  .service p:last-of-type {
    font-size:0.75rem;
  }
  .product-grid {
    grid-template-columns:1fr;
  }
  .product-card,.product-grid>.product-card:only-child {
    grid-template-columns:150px 1fr;
    gap:26px;
    padding:28px;
  }
  .philosophy-copy {
    padding:30px;
  }
  .values {
    grid-template-columns:1fr;
    gap:28px;
  }
  .values li {
    display:grid;
    grid-template-columns:34px minmax(0, 1fr);
    align-items:center;
    column-gap:18px;
    min-height:44px;
  }
  .flow-label {
    margin-top:0;
  }
  .flow-connector {
    top:45px;
    bottom:-21px;
    left:16px;
    right:auto;
    border-top:0;
    border-left:1px dashed #aecbd1;
  }
  .flow-connector::after {
    top:auto;
    bottom:0;
    left:-3px;
    right:auto;
    transform:rotate(135deg);
  }
  .flow-continuation {
    text-align:left;
    margin-left:52px;
  }
  .contact h2 {
    font-size:1.3125rem;
  }
  .footer-note {
    display:none;
  }
}

@media(max-width:700px) {
  .wrap {
    width:calc(100% - 40px);
  }
  .header {
    height:82px;
  }
  .wordmark {
    font-size:1.25rem;
    gap:5px;
  }
  .brand-dot {
    width:5px;
    height:5px;
    margin-top:10px;
  }
  .header nav {
    gap:16px;
    font-size:0.6875rem;
  }
  .header nav a:last-child span {
    display:none;
  }
  .hero {
    grid-template-columns:1fr;
    gap:26px;
    padding-top:24px;
    padding-bottom:54px;
  }
  .hero-copy {
    padding-bottom:0;
  }
  .hero-copy>.eyebrow {
    font-size:0.625rem;
    margin-bottom:17px;
  }
  h1 {
    font-size:3rem;
    line-height:1.35;
    letter-spacing:.075em;
  }
  .hero-description {
    font-size:0.8125rem;
    line-height:1.95;
    margin-top:19px;
  }
  .hero-description p+p {
    margin-top:10px;
  }
  .mobile-break {
    display:block;
  }
  .hero-cta {
    margin-top:17px;
    gap:46px;
    font-size:0.8125rem;
    min-height:44px;
  }
  .hero-visual {
    min-height:268px;
    height:268px;
    padding-bottom:30px;
  }
  .beach {
    min-height:0;
    max-height:calc(100% - 30px);
    height:238px;
    object-position:50% 55%;
  }
  .beach-caption {
    font-size:0.625rem;
    bottom:0;
  }
  .beach-discovery {
    bottom:43px;
    right:9px;
    gap:1px;
  }
  .beach-discovery span {
    font-size:0.5625rem;
  }
  .animal {
    width:32px;
    height:32px;
  }
  .section {
    padding-block:52px;
  }
  .section-heading {
    align-items:flex-start;
    margin-bottom:26px;
  }
  .section-heading .eyebrow {
    margin-bottom:13px;
  }
  .eyebrow,h2.eyebrow {
    font-size:0.625rem;
  }
  h2 {
    font-size:1.875rem;
  }
  .section-message {
    font-size:0.875rem;
  }
  .section-aside {
    display:none;
  }
  .product-card,.product-grid>.product-card:only-child {
    grid-template-columns:1fr;
    gap:22px;
    padding:22px;
  }
  .product-symbol {
    min-height:124px;
  }
  .product-symbol svg {
    height:52px;
  }
  .product-copy h3 {
    font-size:1.25rem;
  }
  .product-copy>p:not(.eyebrow) {
    font-size:0.8125rem;
  }
  .product-bottom {
    gap:10px;
    margin-top:18px;
    flex-wrap:wrap;
  }
  .product-bottom .text-link {
    font-size:0.8125rem;
    gap:20px;
    min-height:44px;
  }
  .product-domain {
    font-size:0.625rem;
  }
  .services {
    grid-template-columns:1fr;
    gap:16px;
  }
  .service {
    padding-block:24px 22px;
  }
  .service-number {
    top:19px;
  }
  .service h3 {
    margin-top:11px;
    font-size:1.3125rem;
  }
  .service p:last-of-type {
    font-size:0.8125rem;
  }
  .service-rule {
    margin-top:20px;
  }
  .philosophy-inner {
    grid-template-columns:1fr;
    gap:30px;
    padding-block:50px 85px;
  }
  .philosophy-label h2 {
    font-size:0.9375rem;
    margin-top:12px;
  }
  .philosophy-label {
    position:relative;
    min-height:140px;
    padding-right:34px;
  }
  .shore-mark {
    position:absolute;
    right:5px;
    top:0;
    margin-top:0;
    font-size:0.875rem;
    letter-spacing:.12em;
  }
  .philosophy-copy {
    padding:26px 20px;
  }
  .philosophy-main {
    font-size:2.125rem;
    margin-bottom:18px;
  }
  .philosophy-copy>p:not(.philosophy-main) {
    font-size:0.875rem;
    margin-top:20px;
  }
  .making-flow {
    margin-top:0;
  }
  .values li {
    font-size:0.875rem;
  }
  .next-idea {
    bottom:18px;
    font-size:0.625rem;
  }
  .about {
    grid-template-columns:1fr;
    gap:28px;
    padding-block:54px;
  }
  .about-details h3 {
    font-size:1.5rem;
  }
  .about-details h3 span {
    font-size:0.75rem;
  }
  dl {
    margin-top:22px;
  }
  dl>div {
    grid-template-columns:65px 1fr;
    gap:14px;
    font-size:0.75rem;
    padding-block:20px;
  }
  .contact {
    display:block;
    padding-block:40px;
  }
  .contact h2 {
    font-size:1.25rem;
    letter-spacing:.01em;
    margin-top:12px;
  }
  .contact-action {
    text-align:left;
    margin-top:25px;
  }
  .contact-button {
    min-width:220px;
  }
  .footer {
    padding-block:34px 20px;
  }
  .footer-top {
    align-items:flex-start;
    gap:18px;
    flex-direction:column;
  }
  .footer .wordmark {
    font-size:1.375rem;
  }
  .footer nav {
    gap:28px;
    font-size:0.75rem;
  }
  .footer-bottom {
    flex-direction:column-reverse;
    align-items:flex-start;
    gap:12px;
    margin-top:15px;
  }
  .footer-bottom>div {
    gap:18px;
  }
  .unavailable span {
    font-size:0.5625rem;
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto;
  }
  *,*::before,*::after {
    animation:none!important;
    transition:none!important;
  }
}

.header {
  flex-wrap:wrap;
  height:auto;
  min-height:112px;
  gap:12px;
  padding-block:24px;
}

.hero-copy,.philosophy-copy,.about-details {
  min-width:0;
}

.product-copy h3 {
  overflow-wrap:anywhere;
}

.footer-bottom {
  flex-wrap:wrap;
}

@media(max-width:700px) {
  .header {
    min-height:82px;
    padding-block:18px;
  }
  .header nav {
    flex-wrap:wrap;
  }
  .next-idea {
    max-width:100%;
  }
  .contact-button {
    max-width:100%;
    gap:24px;
  }
  .footer-bottom>div {
    flex-wrap:wrap;
  }
}

@media(min-width:701px) and (max-width:1050px) {
  .philosophy-inner,.about {
    grid-template-columns:.8fr 1.2fr;
    gap:32px;
  }
  .philosophy-main {
    font-size:2rem;
  }
  .about dl>div {
    grid-template-columns:68px 1fr;
    gap:14px;
  }
}

