* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
 
}

body {
  background: #252525;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  padding: 28px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  mix-blend-mode: difference;
}

.brand {
  font-size: 36px;
  letter-spacing: 0.18em;
  font-weight: 600;
}

.nav {
  display: flex;
  gap: 28px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.opening-line {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  width: 0;
  height: 1px;
  background: #252525;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: openingLine 1.4s ease forwards;
}

.hero-content {
  opacity: 0;
  transform: translateY(18px);
  animation: heroTextIn 0.9s ease forwards;
  animation-delay: 0.9s;
}

.scroll-text {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
  animation-delay: 1.35s;
}

@keyframes openingLine {
  0% {
    width: 0;
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  70% {
    width: 56vw;
    opacity: 1;
  }

  100% {
    width: 0;
    opacity: 0;
  }
}

@keyframes heroTextIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#webglCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero::after {
  background:
    radial-gradient(circle at 30% 30%, rgba(232, 220, 200, 0.45), transparent 34%),
    radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.75), transparent 38%);
}

.hero-content,
.scroll-text {
  color: #252525;
}

.hero-label,
.hero-copy,
.scroll-text {
  color: rgba(37, 37, 37, 0.62);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-label {
  font-size: 13px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 24px;
      color: rgb(103 103 103 / 70%);
}

.hero h1 {
  font-size: clamp(72px, 13vw, 190px);
  line-height: 0.85;
  font-weight: 600;
}

.hero-copy {
  margin-top: 28px;
  font-size: 15px;
  letter-spacing: 0.08em;
      color: #d3b789;;
}

.scroll-text {
  position: absolute;
  bottom: 32px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.55);
}

/* =========================
   GALLERY
========================= */

.gallery-section {
  position: relative;
  padding: 160px 8vw 150px;
  background: #f7f4ee;
  color: #252525;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 90px;
}

.section-label {
  font-size: 12px;
  letter-spacing: 0.22em;
  color: #d3b789;
  margin-bottom: 16px;
}

.section-heading h2 {
  font-size: clamp(42px, 8vw, 120px);
  line-height: 0.9;
  letter-spacing: -.07em;
  font-weight: 600;
}

.section-description {
  max-width: 540px;
  margin-top: 24px;
  line-height: 1.9;
  color: #666;
  font-size: 14px;
  letter-spacing: 0.03em;
}

.card-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 100px 76px;
  max-width: 1080px;
  margin: 0 auto;
}

.card-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-minimum {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b7aa95;
  margin-bottom: 10px;
}
.card-image-wrap {
  display: grid;
  gap: 18px;
  
  border-radius: 26px;
}

.card-image-wrap img {
  width: 100%;
  aspect-ratio: 1.72 / 1;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

.card-info {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 20px;
  align-items: end;
  padding: 0 8px;
}

.card-name {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.card-person {
  color: #777;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.card-price {
  grid-row: 1 / 3;
  grid-column: 2;
  font-size: 20px;
  font-weight: 600;
  color: #b35e5e;
}

/* =========================
   CONTACT
========================= */

.contact-section {
  position: relative;
  min-height: 90vh;
  padding: 120px 7vw;
  background: #252525;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.contact-section::before {
  content: "CONTACT";
  position: absolute;
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%);
  font-size: 18vw;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.035);
  pointer-events: none;
}

.contact-label {
  font-size: 12px;
  letter-spacing: 0.28em;
  color: #e8dcc8;
  margin-bottom: 20px;
}

.contact-section h2 {
  font-size: clamp(42px, 8vw, 120px);
  line-height: 0.9;
  margin-bottom: 32px;
  font-weight: 600;
}

.contact-section p {
  max-width: 560px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  letter-spacing: 0.03em;
}

.contact-link {
  display: block;
  width: fit-content;
  margin-top: 26px;
  font-size: clamp(16px, 2vw, 24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  padding-bottom: 8px;
  transition: opacity 0.3s ease;
}

.contact-link:hover {
  opacity: 0.55;
}

/* =========================
   SP
========================= */

@media (max-width: 768px) {
  .site-header {
    padding: 22px 20px;
  }

  .brand {
    font-size: 12px;
  }

  .nav {
    position: fixed;
    left: 50%;
    bottom: 20px;
    top: auto;

    transform: translateX(-50%);

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;

    width: calc(100% - 24px);
    max-width: 420px;

    padding: 8px;

    border-radius: 999px;

    background: rgba(255,255,255,.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border: 1px solid rgba(255,255,255,.08);

    box-shadow:
      0 10px 40px rgba(0,0,0,.18);

    mix-blend-mode: normal;
    z-index: 100;
  }

  .nav a {
    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 42px;

    border-radius: 999px;

    font-size: 10px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;

    color: rgba(255,255,255,.88);

    transition:
      background .3s ease,
      transform .3s ease,
      color .3s ease;
  }

  .nav a:hover,
  .nav a:active {
    background: rgba(232,220,200,.18);
    color: #fff;
  }

  .nav a:active {
    transform: scale(.96);
  }

  .hero h1 {
    font-size: 16vw;
  }

  .hero-label {
    font-size: 8px;
    letter-spacing: 0.22em;
  }

  .hero-copy {
    font-size: 11px;
    padding: 0 24px;
  }

  .gallery-section {
    padding: 110px 20px 100px;
  }

  .section-heading {
    margin-bottom: 64px;
  }

  .card-gallery {
    grid-template-columns: 1fr;
    gap: 70px;
    max-width: 460px;
  }

  .card-image-wrap {
    padding: 0 18px;
    gap: 12px;
    border-radius: 18px;
  }

  .card-image-wrap img {
    border-radius: 10px;
  }

  .card-name {
    font-size: 19px;
  }

  .card-person {
    font-size: 12px;
  }

  .card-price {
    font-size: 17px;
  }

  .contact-section {
    padding: 100px 20px;
  }

  .contact-section::before {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 20vw;
    top: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);
  }
}

/* =========================
   FLOW
========================= */

.flow-section {
  position: relative;
  padding: 150px 8vw;
  background: #252525;
  color: #fff;
  overflow: hidden;
}

.flow-heading {
  max-width: 820px;
  margin-bottom: 90px;
}

.flow-label {
  font-size: 12px;
  letter-spacing: 0.24em;
  color: #e8dcc8;
  margin-bottom: 18px;
}

.flow-heading h2 {
  font-size: clamp(44px, 8vw, 120px);
  letter-spacing: -.07em;
  line-height: 0.9;
  font-weight: 600;
}

.flow-description {
  max-width: 560px;
  margin-top: 26px;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.68);
}

.flow-list {
  position: relative;
  max-width: 980px;
  margin-left: auto;
  display: grid;
  gap: 28px;
}

.flow-list::before {
  content: "";
  position: absolute;
  top: 42px;
  bottom: 42px;
  left: 47px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    rgba(232, 220, 200, 0),
    rgba(232, 220, 200, 0.7),
    rgba(232, 220, 200, 0)
  );
}

.flow-item {
  position: relative;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 32px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(14px);
  transform: translateY(40px);
  opacity: 0;
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    background 0.4s ease,
    border-color 0.4s ease;
}

.flow-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.flow-item:hover {
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(232, 220, 200, 0.35);
}

.flow-number {
  position: relative;
  z-index: 2;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #e8dcc8;
  color: #252525;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.04em;
  box-shadow: 0 0 40px rgba(232, 220, 200, 0.2);
}

.flow-content h3 {
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 600;
  letter-spacing: -.07em;
  margin-bottom: 12px;
}

.flow-content p {
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.68);
}

.flow-bg-text {
  position: absolute;
  left: 4vw;
  bottom: 4%;
  font-size: 18vw;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.08em;
  color: rgba(255, 255, 255, 0.035);
  pointer-events: none;
}

@media (max-width: 768px) {
  .flow-section {
    padding: 110px 20px;
  }

  .flow-heading {
    margin-bottom: 64px;
  }

  .flow-list {
    gap: 20px;
  }

  .flow-list::before {
    left: 31px;
    top: 34px;
    bottom: 34px;
  }

  .flow-item {
    grid-template-columns: 62px 1fr;
    gap: 18px;
    padding: 22px;
    border-radius: 20px;
  }

  .flow-number {
    width: 62px;
    height: 62px;
    font-size: 15px;
  }

  .flow-content h3 {
    font-size: 22px;
  }

  .flow-content p {
    font-size: 13px;
  }

  .flow-bg-text {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 20vw;
    left: 50%;
    bottom: auto;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.card-item {
  cursor: pointer;
}

.card-item:hover .card-image-wrap {
  transform: translateY(-6px);
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.12);
}

.card-image-wrap {
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.card-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;
}

.card-modal.is-active {
  opacity: 1;
  visibility: visible;
}

.card-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.72);
  backdrop-filter: blur(14px);
}

.card-modal__inner {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 40px));
  max-height: calc(100vh - 40px);
  margin: 20px auto;
  padding: 38px;
  overflow-y: auto;
  border-radius: 30px;
  background: rgba(247, 244, 238, 0.96);
  color: #252525;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.35);
}

.card-modal__close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #252525;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.card-modal__grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 46px;
  align-items: start;
}

.card-modal__images {
  position: relative;
  height: 260px;
}

.card-modal__images img {
  position: absolute;
  width: 220px;
}

.card-modal__images img:first-child {
  top: 0;
  left: 0;
  z-index: 2;
}

.card-modal__images img:last-child {
  top: 90px;
  left: 28px;
  opacity: 0.95;
}

.card-modal__minimum {
  width: fit-content;
  padding: 7px 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #e8dcc8;
  color: #252525;
  font-size: 11px;
  letter-spacing: 0.18em;
}

.card-modal__content h3 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 600;
}

.card-modal__person {
  margin-top: 10px;
  color: #8c8c8c;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.card-modal__description {
  margin-top: 18px;
  line-height: 1.9;
  font-size: 14px;
  color: #555;
  max-width: 520px;
}

.price-box {
  margin-top: 34px;
  padding: 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(37, 37, 37, 0.08);
}

.price-box__head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: baseline;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(37, 37, 37, 0.1);
}

.price-box__head span {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #9b8d77;
}

.price-box__head strong {
  font-size: 28px;
  color: #b35e5e;
  font-weight: 600;
}

.price-box__options {
  display: grid;
  gap: 0;
}

.option-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(37, 37, 37, 0.08);
  font-size: 14px;
}

.option-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.option-row span {
  color: #555;
}

.option-row strong {
  color: #252525;
  font-weight: 600;
  white-space: nowrap;
}

.modal-order-link {
  display: inline-flex;
  margin-top: 28px;
  padding: 15px 22px;
  border-radius: 999px;
  background: #252525;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.1em;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.modal-order-link:hover {
  opacity: 0.75;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .card-modal__inner {
    width: calc(100% - 24px);
    max-height: calc(100vh - 24px);
    margin: 12px auto;
    padding: 24px;
    border-radius: 22px;
  }

  .card-modal__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .card-modal__close {
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    font-size: 20px;
    z-index: 9999;
  }

  .card-modal__content h3 {
    font-size: 38px;
  }

  .price-box {
    padding: 20px;
  }

  .price-box__head strong {
    font-size: 22px;
  }

  .option-row {
    font-size: 13px;
  }
}

/* =========================
   THANK YOU GALLERY
========================= */

.thanks-section {
  position: relative;
  padding: 160px 8vw;
  background: #f7f4ee;
  color: #252525;
  overflow: hidden;
}

.thanks-heading {
  margin-bottom: 72px;
  position: relative;
  z-index: 2;
}

.thanks-label {
  font-size: 12px;
  letter-spacing: .28em;
  color: #b7aa95;
  margin-bottom: 18px;
}

.thanks-heading h2 {
  font-size: clamp(48px, 8vw, 120px);
  line-height: .9;
  letter-spacing: -.07em;
  font-weight: 600;
}

.thanks-sub {
  margin-top: 18px;
  font-size: 13px;
  color: #888;
  letter-spacing: .08em;
}

/* Masonry風 */

.thanks-grid {
  column-count: 3;
  column-gap: 22px;
  position: relative;
  z-index: 2;
}

.thanks-card {
  break-inside: avoid;
  margin-bottom: 22px;
  perspective: 1200px;
}

.thanks-card-inner {
  position: relative;
  width: 100%;
  transform-style: preserve-3d;
  transition: transform .8s cubic-bezier(.19,1,.22,1);
  border-radius: 24px;
}

/* PCだけhoverで反転 */
@media (hover: hover) and (pointer: fine) {
  .thanks-card:hover .thanks-card-inner {
    transform: rotateY(180deg);
  }
}

/* SPはtap用クラスだけで反転 */
.thanks-card.is-flipped .thanks-card-inner {
  transform: rotateY(180deg);
}

@media (max-width: 768px) {
  .thanks-card:hover .thanks-card-inner {
    transform: none;
  }

  .thanks-card.is-flipped .thanks-card-inner {
    transform: rotateY(180deg);
  }
}

/* SPはタップ対応 */
.thanks-card.is-flipped .thanks-card-inner {
  transform: rotateY(180deg);
}

.thanks-face {
  backface-visibility: hidden;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0,0,0,.08);
}

.thanks-face img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.thanks-back {
  position: absolute;
  inset: 0;
  transform: rotateY(180deg);
}

/* Hover浮遊 */

.thanks-card {
  transition: transform .4s ease;
}

.thanks-card:hover {
  transform: translateY(-8px);
}

/* SP */

@media (max-width:900px){
  .thanks-grid{
    column-count:2;
  }
}

@media (max-width:768px){

  .thanks-grid{
    column-count:1;
  }

  .thanks-face,
  .thanks-card-inner{
    border-radius:18px;
  }

}

/* 背景文字 */

.thanks-bg-text {
  position: absolute;
  right: -2vw;
  bottom: 3%;
  font-size: 14vw;
  font-weight: 700;
  letter-spacing: -.08em;
  color: rgba(37,37,37,.035);
  pointer-events: none;
  white-space: nowrap;
}

/* SP */

@media (max-width: 900px) {
  .thanks-grid {
    column-count: 2;
  }
}

@media (max-width: 768px) {

  .thanks-section {
    padding: 90px 16px;
  }

  .thanks-heading {
    margin-bottom: 38px;
  }

  .thanks-heading h2 {
    font-size: 14vw;
  }

  .thanks-sub {
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.7;
  }

  /* 1列→2列に変更 */
  .thanks-grid {
    column-count: 2;
    column-gap: 10px;
  }

  .thanks-card {
    margin-bottom: 10px;
    border-radius: 12px;
    transform: translateZ(0);
  }

  .thanks-card-inner,
  .thanks-face {
    border-radius: 12px;
  }

  .thanks-face {
    box-shadow: 0 6px 18px rgba(0,0,0,.06);
  }

  .thanks-face img {
    border-radius: 12px;
  }

  /* hover量を減らす */
  .thanks-card:hover {
    transform: translateY(-3px);
  }

  .thanks-bg-text {
    font-size: 18vw;
    opacity: .5;

    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}


/* =========================
   WEB LINK
========================= */

.web-link-section {
  padding: 90px 8vw;
  background: #f7f4ee;
  color: #252525;
}

.web-link-card {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;

  width: min(980px, 100%);
  margin: 0 auto;
  padding: 34px 40px;

  border-radius: 26px;
  background: #252525;
  color: #fff;
  text-decoration: none;

  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.14);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.web-link-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.2);
  background: #1a1a1a;
}

.web-link-label {
  font-size: 11px;
  letter-spacing: 0.24em;
  color: #e8dcc8;
  margin-bottom: 12px;
}

.web-link-text h2 {
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.04em;
  font-weight: 600;
}

.web-link-text p:not(.web-link-label) {
  margin-top: 14px;
  max-width: 560px;
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.68);
}

.web-link-arrow {
  flex-shrink: 0;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #e8dcc8;
  text-transform: uppercase;
  white-space: nowrap;
}

.web-link-arrow::after {
  content: " →";
}

/* SP */
@media (max-width: 768px) {
  .web-link-section {
            padding: 0px 20px 70px;
  }

  .web-link-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;

    padding: 28px 24px;
    border-radius: 22px;
  }

  .web-link-text h2 {
    font-size: 26px;
  }

  .web-link-arrow {
    font-size: 11px;
  }
}

.tsuru-site-link {
  position: fixed;
  left: 36px;
  bottom: 32px;
  top: auto;
  right: auto;
  z-index: 120;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 44px;
  padding: 0 18px;

  border-radius: 999px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  text-decoration: none;

  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;

  transition:
    transform .35s ease,
    background .35s ease,
    border-color .35s ease;
}

.tsuru-site-link:hover {
  transform: translateY(-2px);
  background: rgba(232,220,200,.16);
  border-color: rgba(232,220,200,.26);
}

.tsuru-site-link span::after {
  content: " ↗";
}

.tsuru-site-link {
  gap: 10px;
}

.tsuru-site-link img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .tsuru-site-link {
    top: 16px;
    right: 16px;
    left: auto;
    bottom: auto;

    height: 38px;
    padding: 0 14px;

    font-size: 9px;
    letter-spacing: .14em;
  }
}