@charset "UTF-8";

/* =========================================================
  Amato Styles
  - Base typography (Mincho)
  - Layout (max 720px)
  - Utility spacing
  - Shop
  - Company
========================================================= */

/* =========================================================
  Common Variables (shared only)
========================================================= */
:root{
  --bg: #000;
  --text: #e6e6e6;
  --maxw: 720px;
  --accent: #bb955e;
}

/* =========================================================
  Base
========================================================= */
html, body{ height: 100%; }

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);

  font-family:
    "Hiragino Mincho ProN",
    "Hiragino Mincho Pro",
    "Yu Mincho",
    "YuMincho",
    "Noto Serif JP",
    serif;

  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.05em;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* images: prevent overflow */
img{
  display: block;
  max-width: 100%;
  height: auto;
}

/* button UA font inheritance */
button{
  font: inherit;
}

/* =========================================================
  Simple responsive br
========================================================= */
br.sp-768 { display: none; }
@media (max-width: 767px){
  br.sp-768 { display: inline; }
}

/* =========================================================
  Layout Shell (max 720px centered)
========================================================= */
.lp-shell{
  max-width: var(--maxw);
  margin: 0 auto;
  background: var(--bg);
}

/* =========================================================
  Page title (H1)
========================================================= */
.page-title{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* =========================================================
  Text Block + Width Utilities
  (HTML: <div class="text w80"> ... )
========================================================= */
.text{
  margin: 0 auto;
  font-size: 14px;
}

.w90{ margin-left: 5%;  margin-right: 5%;  }
.w88{ margin-left: 6%;  margin-right: 6%;  }
.w86{ margin-left: 7%;  margin-right: 7%;  }
.w84{ margin-left: 8%;  margin-right: 8%;  }
.w82{ margin-left: 9%;  margin-right: 9%;  }
.w80{ margin-left: 10%; margin-right: 10%; }

/* =========================================================
  Spacing Utilities
========================================================= */
.mb-10{  margin-bottom: 10px !important; }
.mb-20{  margin-bottom: 20px !important; }
.mb-30{  margin-bottom: 30px !important; }
.mb-40{  margin-bottom: 40px !important; }
.mb-50{  margin-bottom: 50px !important; }
.mb-60{  margin-bottom: 60px !important; }
.mb-70{  margin-bottom: 70px !important; }
.mb-80{  margin-bottom: 80px !important; }
.mb-90{  margin-bottom: 90px !important; }
.mb-100{ margin-bottom: 100px !important; }

/* =========================================================
  Shop
========================================================= */
.shops{
  width: 90%;
  margin: 0 auto;
}

.shops__list{
  list-style: none;
  margin: 0;
  padding: 0;
}

.shops__item{
  margin-bottom: 60px;
}

.shop__title{
  text-align: center;
  letter-spacing: .2em;
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 20px;
  line-height: 24px;
}

.shop__brand{
  margin-right: 10px;
}

.shop__note{
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-weight: lighter;
  font-size: 12px;
}

.shop__image{
  margin-bottom: 30px;
}

.shop-info__row{
  display: grid;
  grid-template-columns: 90px 1fr;
  column-gap: 10px;
  padding: 3px 0;
  font-size: 14px;
}

.shop-info__label,
.shop-info__value{
  margin: 0;
  line-height: 1.6;
}

.shop-info__value{
  overflow-wrap: anywhere;
}

.shop-info__link{
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.6);
}

.shop-info__link.tel{
  border-bottom: none;
}

.shop-info__link:hover{
  border-bottom-color: var(--text);
}

/* =========================================================
  Recruit
========================================================= */
.recruit__link{
  display: block;
  text-decoration: none;
  color: inherit;
}

/* =========================================================
  Company
========================================================= */
.company{
  color: var(--text);
  text-align: center;
  font-size: 14px;
  padding-bottom: 40px;
}

.company p{
  font-size:  12px;
}

.company__link{
  color: var(--text);
  text-decoration: none;
}

.company__link:hover{
  text-decoration: none;
}

.company__link:visited{
  color: var(--text);
}

/* =========================
   Motion (for .motion only)
   Calm / premium style
========================= */
.motion{
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 700ms ease,
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
  backface-visibility: hidden;
}

.motion.is-inview{
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.motion.motion--scale{
  transform: translate3d(0, 18px, 0) scale(1.01);
}
.motion.motion--scale.is-inview{
  transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce){
  .motion{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}