@charset "UTF-8";
#breadcrumbs {
  width: min(1220px, 100%);
  padding: 0 10px;
  margin: 200px auto 40px auto;
}
@media screen and (max-width: 768px) {
  #breadcrumbs {
    margin: 100px auto 40px auto;
  }
}
#breadcrumbs ul {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  display: flex;
  gap: 5px;
}
#breadcrumbs ul li::after {
  content: "ー";
  padding: 0 0 0 5px;
}
#breadcrumbs ul li:first-child a {
  text-decoration: underline;
}
#breadcrumbs ul li:last-child::after {
  content: "";
}

#detail {
  width: min(1220px, 100%);
  padding: 100px 25px 0 25px;
  margin: 0 auto 100px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #detail {
    grid-template-columns: 1fr;
  }
}
#detail h1 {
  font-family: "Arsenal", sans-serif;
  font-size: 52px;
  color: #0e285e;
  margin: 0 0 10px 0;
}
#detail #data {
  display: grid;
  gap: 20px;
}
#detail #data p {
  font-family: "Arsenal", sans-serif;
  font-size: 34px;
  max-inline-size: -moz-max-content;
  max-inline-size: max-content;
  padding: 0 10px;
  background-color: #e8e8e8;
}
@media screen and (max-width: 768px) {
  #detail #data p {
    font-size: 26px;
  }
}
#detail #data p span {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  #detail #data p span {
    font-size: 14px;
  }
}
#detail #data ol {
  font-family: "Noto Sans JP", sans-serif;
}
#detail #data ol li {
  list-style-type: disc;
  margin: 0 0 0 20px;
}
#detail #data ol li span {
  font-family: "Arsenal", sans-serif;
  font-size: 24px;
}
#detail #drawing {
  width: min(500px, 100%);
  margin: 0 0 20px 0;
}
#detail #prev {
  width: 28px;
  height: 28px;
  position: absolute;
  left: 25px;
  top: 50%;
}
#detail #icon {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  margin: 0 0 10px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
#detail #icon li {
  display: flex;
  align-items: center;
}
#detail #next {
  width: 28px;
  height: 28px;
  position: absolute;
  right: 25px;
  top: 50%;
}
#detail #closet img {
  width: 23px;
  height: 12px;
}
#detail #heater img {
  width: 23px;
  height: 12px;
}
#detail #daylight img {
  width: 37px;
  height: 12px;
}
#detail #wind img {
  width: 38px;
  height: 12px;
}
#detail #outpole img {
  width: 12px;
  height: 12px;
}
#detail #notice {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
}

#return {
  position: relative;
  display: block;
  width: 100%;
  max-width: 500px;
  margin-inline: auto;
  color: #fff;
  background-color: #0E285E;
  padding: 1rem;
  text-align: center;
  border-radius: 4px;
}
#return::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1rem;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 1em;
  height: 1em;
  border: 0.1em solid currentColor;
  border-bottom-width: 0.1em;
  border-bottom-style: solid;
  border-bottom-color: currentcolor;
  border-left-width: 0.1em;
  border-left-style: solid;
  border-left-color: currentcolor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(25%) translateY(-50%) rotate(-135deg);
}
#return::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 1.5rem;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 1em;
  height: 1em;
  border: 0.1em solid currentColor;
  border-bottom-width: 0.1em;
  border-bottom-style: solid;
  border-bottom-color: currentcolor;
  border-left-width: 0.1em;
  border-left-style: solid;
  border-left-color: currentcolor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(25%) translateY(-50%) rotate(-135deg);
}

#type_list {
  width: min(1250px, 100%);
  padding: 0 25px;
  margin: 0 auto 100px auto;
  display: grid;
  gap: 10px;
}
#type_list a:hover {
  opacity: 0.7;
  transition: 0.3s;
}
#type_list article {
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 4fr;
  align-items: center;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  #type_list article {
    grid-template-columns: 0.8fr 2fr;
  }
}
#type_list article h4 {
  font-family: "Marcellus", serif;
  font-size: 40px;
  text-align: center;
  line-height: 1;
  padding: 5px;
}
@media screen and (max-width: 768px) {
  #type_list article h4 {
    font-size: 40px;
  }
}
#type_list article h4 small {
  display: block;
  font-size: 16px;
}
#type_list article h4 span {
  font-size: 14px;
  margin: 10px 0 0 0;
  display: block;
  font-family: "Noto Sans JP";
}
#type_list article figure {
  padding: 20px;
  border-left: 1px solid #fff;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  #type_list article figure {
    flex-direction: column;
    align-items: flex-start;
  }
}
#type_list article figure img {
  width: 35%;
}
@media screen and (max-width: 768px) {
  #type_list article figure img {
    width: 70%;
  }
}
#type_list article figure figcaption .data {
  font-family: "Arsenal", sans-serif;
  display: inline-block;
  padding: 5px 10px;
  margin: 0 0 20px 0;
}
#type_list article figure figcaption dl {
  display: flex;
}
#type_list article figure figcaption dl dt {
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  #type_list article figure figcaption dl dt {
    font-size: 12px;
  }
}
#type_list article figure figcaption dl dd {
  font-family: "Arsenal", sans-serif;
}
#type_list article figure figcaption dl dd strong {
  font-size: 26px;
  font-weight: normal;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #type_list article figure figcaption dl dd strong {
    font-size: 30px;
  }
}
@media screen and (max-width: 768px) {
  #type_list article figure figcaption dl dd strong small {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 12px;
  }
}
#type_list article.color_navy {
  background-color: #0E285E;
}
#type_list article.color_navy .data {
  background-color: #3e537e;
}
#type_list article.color_green {
  background-color: #0a4c3b;
}
#type_list article.color_green .data {
  background-color: #3b7062;
}
#type_list article.limited_page {
  display: grid;
  grid-template-columns: 1fr;
}
#type_list article.limited_page .limited_page_inner {
  display: grid;
  grid-template-columns: 1fr 4fr;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #type_list article.limited_page .limited_page_inner {
    grid-template-columns: 0.8fr 2fr;
  }
}
#type_list article.limited_page .link_limited {
  padding: 10px 0;
  display: block;
  border-top: 1px solid #fff;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
}
#type_list.current {
  display: block;
}

.notice {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  width: min(1250px, 100%);
  padding: 0 25px;
  margin: 0 auto 80px auto;
}/*# sourceMappingURL=plan.css.map */