/** Reset **/

* {
  z-index: 1;
  width: auto;
  max-width: 100%;
  height: auto;
  position: relative;
  box-sizing: border-box;
  margin: unset;
  padding: unset;
  border: unset;
  outline: unset;
  background: unset;
  color: inherit;
  text-decoration: unset;
  -webkit-tap-highlight-color: transparent;
  -moz-tap-highlight-color: transparent;
  -ms-tap-highlight-color: transparent;
  -o-tap-highlight-color: transparent;
}

.html {

  /* Sizing */

  --scales: 1.25;
  --gutter: 1rem;
  --guts-1: calc(0.50 * var(--gutter));
  --guts-2: calc(0.75 * var(--gutter));
  --guts-3: calc(1.00 * var(--gutter));
  --guts-4: calc(1.25 * var(--gutter));
  --guts-5: calc(2.00 * var(--gutter));
  --guts-6: calc(3.25 * var(--gutter));
  --guts-7: calc(5.25 * var(--gutter));

  --layo-1:  8rem;
  --layo-2: 13rem;
  --layo-3: 21rem;
  --layo-4: 34rem;
  --layo-5: 55rem;

  --spin: calc(2 * var(--gutter));
  --icon: calc(2.5 * var(--gutter));


  /* Components */

  --border-radius: calc(var(--gutter) * 0.618);
  --box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
  --text-shadow: 0 0.15rem 0.15rem rgba(0, 0, 0, 0.15);


  /* Typography */

  --typography-headlines: 'Inter Tight', serif;
  --typography-subheadlines: 'Inter Tight', serif;
  --typography-bodytext: 'Inter Tight', sans-serif;

  --font-size-h1: calc((((1rem * var(--scales)) * var(--scales)) * var(--scales)) * var(--scales));
  --font-size-h2: calc(((1rem * var(--scales)) * var(--scales)) * var(--scales));
  --font-size-h3: calc((1rem * var(--scales)) * var(--scales));
  --font-size-h4: calc(1rem * var(--scales));
  --font-size-h5: 1rem;
  --font-size-h6: calc(1rem / var(--scales));
  --font-size-p:  1rem;

  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-bold: 700;


  /* Colors */

  --blue: #084f8d;
  --blue-1: hsla(208, 89%,  9%, 1);
  --blue-1-opaque: hsla(208, 89%,  9%, .6);
  --blue-2: hsla(208, 89%, 19%, 1);
  --blue-2-opaque: hsla(208, 89%, 19%, .6);
  --blue-3: hsla(208, 89%, 29%, 1);
  --blue-3-opaque: hsla(208, 89%, 29%, .6);
  --blue-4: hsla(208, 89%, 34%, 1);
  --blue-4-opaque: hsla(208, 89%, 34%, .6);
  --blue-5: hsla(208, 89%, 39%, 1);
  --blue-5-opaque: hsla(208, 89%, 39%, .6);

  --yellow: #ffc301;
  --yellow-1: hsla(46, 100%, 30%, 1);
  --yellow-1-opaque: hsla(46, 100%, 30%, .6);
  --yellow-2: hsla(46, 100%, 40%, 1);
  --yellow-2-opaque: hsla(46, 100%, 40%, .6);
  --yellow-3: hsla(46, 100%, 50%, 1);
  --yellow-3-opaque: hsla(46, 100%, 50%, .6);
  --yellow-4: hsla(46, 100%, 60%, 1);
  --yellow-4-opaque: hsla(46, 100%, 60%, .6);
  --yellow-5: hsla(46, 100%, 70%, 1);
  --yellow-5-opaque: hsla(46, 100%, 70%, .6);
  --yellow-6: hsla(46, 100%, 98%, 1);

  --background-color: var(--yellow-6);
  --text-color: var(--blue-1);
}

.html {
  font-family: var(--typography-bodytext);
  font-size: 12px;
  scroll-behavior: smooth;
  
  strong {
    font-weight: inherit;
  }
  
  b {
    font-weight: var(--font-weight-bold);
  }
  
  em {
    font-style: inherit;
  }
  
  i {
    font-style: italic;
  }
  
  u {
    text-decoration: underline;
  }
  
  h1, .type-h1 {
    font: var(--font-weight-bold) var(--font-size-h1) var(--typography-bodytext);
    line-height: 0.9;
  }
  
  h2, .type-h2 {
    font: var(--font-weight-bold) var(--font-size-h2) var(--typography-bodytext);
    line-height: 1;
  }
  
  h3, .type-h3 {
    font: var(--font-weight-bold) var(--font-size-h3) var(--typography-bodytext);
  }
  
  h4, .type-h4 {
    font: var(--font-weight-bold) var(--font-size-h4) var(--typography-bodytext);
  }
  
  h5, .type-h5 {
    font: var(--font-weight-bold) var(--font-size-h5) var(--typography-bodytext);
  }
  
  h6, .type-h6 {
    font: var(--font-weight-normal) var(--font-size-h6) var(--typography-bodytext);
  }
  
  p, .type-p {
    font: var(--font-weight-normal) var(--font-size-p) var(--typography-bodytext);
    line-height: 1.3;
  }
  
  a {
    
    &:focus {
      outline: 4px solid var(--blue-1-opaque);
      box-shadow: 0 0 0 8px solid var(--blue-5-opaque);
    }
  }
  
  .type {
    
    h1, .type-h1, h2, .type-h2, h3, .type-h3, h4, .type-h4, h5, .type-h5, h6, .type-h6, p, .type-p, li, .type-li, ul, .type-ul {
      
      & + h1, & + .type-h1 {
        margin-top: 1.618rem;
      }
      
      & + h2, & + .type-h2 {
        margin-top: 1.618rem;
      }
      
      & + h3, & + .type-h3 {
        margin-top: 1.618rem;
      }
      
      & + h4, & + .type-h4 {
        margin-top: 1rem;
      }
      
      & + h5, & + .type-h5 {
        margin-top: 1rem;
      }
      
      & + h6, & + .type-h6 {
        margin-top: 1rem;
      }
      
      & + p, & + .type-p {
        margin-top: 0.618rem;
      }
      
      & + li, & + .type-li {
        margin-top: 0.618rem;
      }
      
      & + ul, & + .type-ul {
        margin-top: 0.618rem;
        margin-left: 1.618rem;
      }
    }
  }
  
  @media (min-width: 1200px) {
    font-size: 14px;
  }
  
  @media (min-width: 1600px) {
    font-size: 16px;
  }
  
  @media (min-width: 2400px) {
    font-size: 18px;
  }
}



/** Icons **/

.icon {
  width: var(--icon);
  min-width: var(--icon);
  max-width: var(--icon);
  height: var(--icon);
  min-height: var(--icon);
  max-height: var(--icon);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: unset;
  border-radius: var(--icon);
  background-color: var(--yellow-5);
  font-family: 'Material Symbols Outlined';
  font-weight: 500;
  font-style: normal;
  font-size: 24px;
  color: var(--blue);
  line-height: var(--icon);
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  text-align: center;
  font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 24;
  user-select: none;
  will-change: background-color;
  transition: background 0.618s ease, color 0.618s ease;
  cursor: pointer;
}

.icon:hover, .icon:active, .icon:focus {
  background-color: var(--yellow-4);
}

.icon.icon--pict {
  padding: calc(var(--guts-1) / 1.25);
}

.icon.icon--pict .pict {
  position: relative;
  left: unset;
  top: unset;
  border-radius: unset;
  object-fit: contain;
}

.icon.icon--soft {
  background-color: rgba(0, 0, 0, 0.1);
}

.icon:hover, .icon:active, .icon:focus {
  background-color: rgba(0, 0, 0, 0.2);
}

.icon.icon--dark {
  background-color: var(--blue-1);
  color: var(--yellow-5);
}

.icon:hover, .icon:active, .icon:focus {
  background-color: var(--blue-2);
}

.icon.icon--flat {
  background-color: transparent;
  color: inherit;
  cursor: inherit;
  transition: unset;
}

.icon.icon--line {
  width: auto;
  min-width: initial;
  max-width: initial;
  height: auto;
  min-height: initial;
  max-height: initial;
  display: inline-flex;
  border-radius: 0;
  background: unset;
  font-size: inherit;
  line-height: 1;
  color: inherit;
  cursor: inherit;
  transition: unset;
}

.icon[disabled] {
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 0.4;
  cursor: not-allowed;
}



/** Buttons **/

.bttn {
  height: var(--icon);
  display: inline-flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  padding: var(--guts-1) var(--guts-3);
  border: unset;
  border-radius: var(--border-radius);
  background-color: var(--yellow-5);
  font: var(--font-weight-bold) var(--font-size-p) var(--typography-bodytext);
  color: var(--blue);
  text-align: center;
  user-select: none;
  white-space: nowrap;
  text-overflow: ellipsis;
  will-change: background-color, color;
  transition: background-color 0.618s ease, color 0.618s ease;
  cursor: pointer;
}

.bttn .icon {
  --icon: var(--guts-4);
  margin-right: var(--guts-2);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: unset;
  object-fit: contain;
  border-radius: 0;
  font-weight: 700;
  font-size: 18px;
  font-variation-settings: 'FILL' 0, 'wght' 700, 'GRAD' 200, 'opsz' 18px;
  color: inherit;
}

.bttn .icon.icon--pict {
  padding: 0;
}

.bttn + * {
  margin-right: 0;
  margin-left: var(--guts-2);
}

.bttn:hover, .bttn:active {
  background-color: var(--yellow-3);
}

.bttn:focus {
  outline: 4px solid var(--blue-1-opaque);
  box-shadow: 0 0 0 8px solid var(--blue-5-opaque);
}

.bttn.bttn--soft {
  background: rgba(0, 0, 0, 0.0);
  color: inherit;
  text-decoration: underline;
}

.bttn:hover, .bttn:active, .bttn:focus {
  background: rgba(0, 0, 0, 0.1);
}

.bttn.bttn--lite {
  background: var(--yellow-5);
  color: var(--blue-1);
}

.bttn:hover, .bttn:active, .bttn:focus {
  background: var(--yellow-3);
}

.bttn.bttn--blue {
  background: var(--blue-2);
  color: var(--yellow-5);
}

.bttn:hover, .bttn:active, .bttn:focus {
  background: var(--blue-3);
}

.bttn.bttn--yellow {
  background: var(--yellow-5);
  color: var(--blue-1);
}

.bttn:hover, .bttn:active, .bttn:focus {
  background: var(--yellow-4);
}

.bttn.bttn--huge {
  height: auto;
  padding: var(--guts-4) var(--guts-5);
  font-size: var(--font-size-h4);
}

.bttn.bttn--tiny {
  height: auto;
  padding: var(--guts-2) var(--guts-3);
  font-size: var(--font-size-h6);
}

.bttn[disabled] {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.2);
  cursor: not-allowed;
}



/** Spins **/

.spin {
  width: var(--spin);
  height: var(--spin);
  display: inline-block;
  border: var(--guts-1) solid var(--blue);
  border-left-color: var(--yellow);
  border-radius: 50%;
  animation: spin 0.618s linear infinite both;

  @keyframes spin {

    0% {
      transform: rotate(0deg);
      transform-origin: center center;
    }

    100% {
      transform: rotate(360deg);
      transform-origin: center center;
    }
  }
}



/** Images **/

.pict {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  border-radius: inherit;
}

.lazy {
  overflow: hidden;
  object-fit: cover;
}

.lazy .lazy-pict {
  z-index: -100;
  display: block;
  object-fit: inherit;
  opacity: 0;
  will-change: opacity;
  transition: opacity 0.235s ease;
  will-change: opacity;
}

.lazy .lazy-blur {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  filter: blur(var(--gutter));
  transform: scale(1.1);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.lazy .lazy-spin {
  z-index: 100;
  position: absolute;
  left: calc(50% - (var(--spin) / 2));
  top: calc(50% - (var(--spin) / 2));
  border-color: #FFFFFF;
  border-left-color: transparent;
  transition: opacity 0.235s ease;
  will-change: opacity;
}

.lazy.lazy--load .lazy-pict {
  z-index: 2;
  opacity: 1;
}

.lazy.lazy--load .lazy-spin {
  z-index: -1;
  opacity: 0;
}

.lazy.lazy--flow .lazy-pict {
  position: relative;
  top: unset;
  left: unset;
}



/** Page **/

.site {
  --guts: var(--guts-5);
  --guts-s: var(--guts-1);
  --guts-m: var(--guts-3);
  --guts-l: var(--guts-5);

  background: var(--background-color);
  color: var(--text-color);
}

.page {
  width: calc(6rem * 13);
  margin: auto;
}



/** Head **/

.site .head {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  margin: var(--guts);
}

.site .head .head-logo {
  height: var(--guts-4);
  display: block;
}

.site .head .head-logo .head-logo-link {
  width: 100%;
  height: 100%;
  display: block;
}

.site .head .head-logo .head-logo-file {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.site .head .head-text {
  font: var(--font-weight-bold) 1rem var(--typography-headlines);
  font-style: italic;
  color: var(--yellow-5);
}



/** Hero **/

.site .hero {
  margin: calc(var(--guts) * 1.618 * 1.618) var(--guts);
}

.site .hero .hero-headline {
  font: 900 clamp(3rem, 13vh, 13vw) var(--typography-headlines);
  line-height: 1;
  color: var(--blue-1);
}

.site .hero .hero-headline .yellow {
  color: var(--yellow-4);
}

.site .hero .hero-headline .blue {
  color: var(--blue-2);
}

.site .hero .hero-subheadline {
  font: var(--font-weight-bold) clamp(1rem, 5vh, 8vw) var(--typography-subheadlines);
  line-height: 1;
  color: var(--blue-1);
}

.site .hero .hero-cta {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  margin-top: var(--guts);
}

.site .hero .hero-cta-icon + .hero-cta-icon {
  margin-left: var(--guts-1);
}

.site .hero .hero-cta-bttn {
  width: 100%;
  margin-left: var(--guts-2);
}



/** Apps **/

.site .apps {
  margin: var(--guts-s);
  padding: var(--guts);
  border-radius: var(--border-radius);
  background: var(--blue-1);
  color: var(--yellow-5);
}

.site .apps .apps-head {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}

.site .apps .apps-head .apps-head {
  justify-content: center;
}

.site .apps .apps-head .apps-head-logo {
  width: var(--guts-6);
  min-width: var(--guts-6);
  height: var(--guts-6);
  min-height: var(--guts-6);
  margin-right: var(--guts-3);
  padding: var(--guts-1);
  border-radius: 100%;
  background: #ffffff;
}

.site .apps .apps-head .apps-head-logo .apps-head-logo {
  width: 100%;
  min-width: 100%;
  height: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
}

.site .apps .apps-head .apps-head-logo .pict {
  object-fit: contain;
}

.site .apps .apps-head .apps-head-text {
  margin: 0;
}

.site .apps .apps-body {
  margin: var(--guts) 0 0;
  text-align: center;
}

.site .apps .apps-body .apps-body-text {
  margin-bottom: var(--guts);
}

.site .apps .apps-body .apps-body-bttn {
  width: 100%;
  background: #ffffff;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
}

.site .apps .apps-body .apps-body-gmap {
  padding: 0 0 100%;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.site .apps .apps-body .apps-body-gmap .apps-body-gmap {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  padding: 0;
  border-radius: inherit;
}

.site .apps .apps-body .apps-body-rate {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
}

.site .apps .apps-body .apps-body-rate-icon {
  --icon: var(--guts-4);
  color: var(--yellow-5);
}

.site .apps .apps-body .apps-body-rate-icon + .apps-body-rate-icon {
  margin-left: var(--guts-1);
}

.site .apps .apps-body .apps-body-rate-bttn {
  width: 100%;
  margin-left: var(--guts);
}

.site .apps.apps--wapp, .site .apps.apps--gram, .site .apps.apps--gmap {
  color: #ffffff;
}

.site .apps.apps--wapp {
  background: #25d366;
}

.site .apps.apps--gram {
  background: linear-gradient(-45deg, #ffd600, #ff7a00, #ff0069, #d300c5, #7638fa);
}

.site .apps.apps--gmap {
  padding: 0;
  background: #007b8b;
}

.site .apps.apps--gmap .apps-head {
  padding: var(--guts);
}

.site .apps.apps--gmap .apps-head .apps-head {
  padding: 0;
}

.site .apps.apps--gmap .apps-body {
  margin: 0;
}



/** Belt **/

.site .belt {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  justify-content: space-between;
  margin: var(--guts-s);
  padding: var(--guts);
  border-radius: var(--border-radius);
  background: var(--yellow-5);
}

.site .belt-icon {
  margin-right: var(--guts-3);
  color: var(--blue-1);
}

.site .belt .belt-logo {
  height: var(--guts-4);
  display: block;
  margin-right: var(--guts-3);
}

.site .belt .belt-logo .belt-logo-link {
  height: 100%;
  display: block;
}

.site .belt .belt-logo .belt-logo-file {
  height: 100%;
  display: block;
  object-fit: contain;
}

.site .belt .belt-wrap {
  width: 100%;
}

.site .belt .belt-wrap-hour > div {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}




/** Foot **/

.site .foot {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  margin: calc(var(--guts) * 1.618 * 1.618 * 1.618) var(--guts) var(--guts);
}

.site .foot .foot-logo {
  height: var(--guts);
  display: block;
  margin-left: var(--guts);
}

.site .foot .foot-logo .foot-logo-link {
  height: 100%;
  display: block;
}

.site .foot .foot-logo .foot-logo-file {
  height: 100%;
  display: block;
  object-fit: contain;
}
