/* TYPE */
section#type {

}
/* TYPE - layout */
section#type .layout {
  background-color: var(--bodycolor);
}
section#type .layout .outline {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1rem 2rem;
  background-color: var(--leadcolor-);
}
section#type .layout .outline .name {
  font-size: 2.8rem;
}
section#type .layout .outline .name large {
  font-size: 150%;
}
section#type .layout .outline .plan {
  font-size: 3.2rem;
}
section#type .layout .outline .plan large {
  font-size: 140%;
}
section#type .layout .outline .plan small {
  font-size: 80%;
}

section#type .layout .explanation {
  padding: 3rem;
}
section#type .layout .explanation .spec {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

section#type .layout .explanation .spec .exclusive {
  display: flex;
  gap: 2rem;
  font-size: 2rem;
}
section#type .layout .explanation .spec .exclusive span {
  font-size: 130%;
}
section#type .layout .explanation .spec .exclusive span large {
  font-size: 130%;
}
section#type .layout .explanation .spec .exclusive small {
  font-size: 80%;
}
section#type .layout .explanation .spec .exclusive span.annotation {
  display: block;
  font-size: 80%;
}

section#type .layout .explanation .spec .share {
  display: flex;
  gap: 2rem;
  font-size: 1.6rem;
}

section#type .layout .explanation .merit {
  display: flex;
  gap: 2rem;
  margin-top: 4rem;
  padding: 2rem;
}
section#type .layout .explanation .merit ol {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: unset;
}
section#type .layout .explanation .merit ol li {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  padding: 2rem;
  min-height: 8em;
  background-color: rgba(170,170,136,.15);
  border-left: var(--leadcolor-) solid 3px;
}
section#type .layout .explanation .merit ol li span {
  font-size: 1.4rem;
  line-height: 2rem;
}
section#type .layout .explanation .merit ol li span.n {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--bodycolor);
  background: linear-gradient(180deg, rgba(170,170,136,1) 0%, rgba(70,70,34,1) 100%);
}
section#type .layout .explanation .merit ol li span:not(.n) {
  width: fit-content;
}

section#type .layout .floormap {
  margin: auto;
  padding: 3rem;
  max-width: 1000px;
}
section#type .layout .floormap .usageguide {
  margin-top: 2rem;
  font-size: 1.3rem;
  line-height: 2rem;
}
section#type .layout .floormap .usageguide img {
  width: auto;
  height: 1.3rem;
}
section#type .layout .floormap .usageguide .annotation {
  display: block;
  margin-top: 1rem;
  font-size: 1.1rem;
  line-height: 1.5rem;
}


section#type .typeNavigation {
  position: sticky;
  top: 50%;
  z-index: 1;
}
section#type .typeNavigation > * {
  position: absolute;
  bottom: 1rem;
  width: 6rem;
  height: 6rem;
  border-radius: 6rem;
  background-color: #707070;
}
section#type .typeNavigation > * > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1.2rem;
  line-height: 0;
  color: #f1f1ec;
  text-decoration: none;
  transition: var(--button);
}
section#type .typeNavigation > * > a:hover {
  opacity: .6;
  color: var(--bodycolor);
}
section#type .typeNavigation .prev {
  padding-right: .2rem;
  left: -3rem;
}
section#type .typeNavigation .fwrd {
  padding-left: .2rem;
  right: -3rem;
}

section#type .bels {
  margin-top: 8rem;
}
section#type .bels img {
  display: block;
  margin: auto;
  max-width: 480px;
}
section#type:not(.type3) .bels {
  display: none;
}




/* BUTTONS */
section#buttons .page_ttl_area {
  position: relative;
  background-color: transparent;
}
section#buttons .page_ttl_area::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5rem;
  width: 100%;
  height: 1px;
  background-color: var(--subcolor);
}
section#buttons .page_ttl_area .page_ttl {
  font-size: 4.0rem;
  color: var(--leadcolor-);
}
section#buttons .page_ttl_area .page_ttl .cgaramond {
  position: relative;
}
section#buttons .page_ttl_area .page_ttl span:last-child {
  letter-spacing: .2rem;
  color: var(--bodycolor);
}



@media screen and (min-width: 768px) and (max-width: 1300px) {
}



@media screen and (max-width: 767px) {
  section#type .layout .outline .name {
    font-size: 2rem;
  }
  section#type .layout .outline .plan {
    font-size: 2.4rem;
  }

  section#type .layout .explanation {
    padding: 1rem;
  }
  section#type .layout .explanation .spec .exclusive {
    flex-direction: column;
    gap: .5rem;
  }
  section#type .layout .explanation .spec .share {
    flex-direction: column;
    gap: .5rem;
  }

  section#type .layout .explanation .merit {
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    padding: unset;
  }
  section#type .layout .explanation .merit ol {
    gap: 1rem;
  }
  section#type .layout .explanation .merit ol li {
    padding: 1rem;
    width: 100%;
    min-height: unset;
  }
  section#type .layout .explanation .merit ol li span {
    font-size: 1.2rem;
  }

  section#type .layout .floormap {
    padding: 1rem;
  }
  section#type .layout .floormap .usageguide {
    font-size: 1rem;
  }
  section#type .layout .floormap .usageguide img {
    height: 3rem;
  }
  section#type .layout .floormap .usageguide .annotation {
    font-size: .8rem;
  }

  section#type .typeNavigation {

  }
  section#type .typeNavigation .prev {
    left: -1rem;
    width: 2rem;
    border-radius: unset;
  }
  section#type .typeNavigation .fwrd {
    right: -1rem;
    width: 2rem;
    border-radius: unset;
  }

  section#type .bels {
    margin: 4rem auto 0;
    width: 80%;
  }

}
