@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  list-style-type: none;
  border: none;
  box-sizing: border-box;
}

/* iOSのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

/* iOSサファリで発生する部分的な文字の拡大表示の抑制 */
html {
  -webkit-text-size-adjust: 100%;
}

::-moz-selection {
  color: #fff;
  background-color: #12542e;
}

::selection {
  color: #fff;
  background-color: #12542e;
}

@font-face {
  font-family: "GenShinGothic-P-Normal";
  src: url("../fonts/GenShinGothic-P-Normal.woff") format("woff"), url("../fonts/GenShinGothic-P-Normal.ttf") format("truetype");
}
@font-face {
  font-family: "GenShinGothic-P-Regular";
  src: url("../fonts/GenShinGothic-P-Regular.woff") format("woff"), url("../fonts/GenShinGothic-P-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "GenShinGothic-P-Medium";
  src: url("../fonts/GenShinGothic-P-Medium.woff") format("woff"), url("../fonts/GenShinGothic-P-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "GenShinGothic-P-Bold";
  src: url("../fonts/GenShinGothic-P-Bold.woff") format("woff"), url("../fonts/GenShinGothic-P-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "NotoSerifJP-Medium";
  src: url("../fonts/NotoSerifJP-Medium.woff") format("woff"), url("../fonts/NotoSerifJP-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto-Bold";
  src: url("../fonts/Roboto-Bold.woff") format("woff"), url("../fonts/Roboto-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto-BoldItalic";
  src: url("../fonts/Roboto-BoldItalic.woff") format("woff"), url("../fonts/Roboto-BoldItalic.ttf") format("truetype");
}
body {
  font-family: "GenShinGothic-P-Normal";
  font-size: clamp(0.875rem, 0.85rem + 0.13vw, 1rem);
  color: #323232;
  line-height: 1.8;
  text-align: justify;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

a:link {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
  border: none;
  -webkit-backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
}

button {
  border: 0;
  outline: none;
  font-size: 0;
  color: transparent;
  line-height: 0;
  background-color: transparent;
}

.mgn_20 {
  margin: 0 0 20px 0;
}
@media screen and (max-width: 700px) {
  .mgn_20 {
    margin: 0 0 10px 0;
  }
}

.mgn_40 {
  margin: 0 0 40px 0;
}
@media screen and (max-width: 700px) {
  .mgn_40 {
    margin: 0 0 20px 0;
  }
}

.mgn_60 {
  margin: 0 0 60px 0;
}
@media screen and (max-width: 700px) {
  .mgn_60 {
    margin: 0 0 30px 0;
  }
}

.mgn_80 {
  margin: 0 0 80px 0;
}
@media screen and (max-width: 700px) {
  .mgn_80 {
    margin: 0 0 40px 0;
  }
}

header {
  width: 100%;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  transition: 0.3s;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  header {
    padding: 10px;
  }
}
header #logo {
  width: 100px;
}
@media screen and (max-width: 768px) {
  header #logo {
    width: 80px;
  }
}
header #trigger {
  width: 30px;
  height: 20px;
  display: none;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 700px) {
  header #trigger {
    display: block;
  }
}
header #trigger span {
  width: 30px;
  height: 2px;
  display: block;
  position: absolute;
  left: 0;
  background-color: #323232;
  transition: 0.2s;
}
header #trigger span:nth-of-type(1) {
  top: 0;
}
header #trigger span:nth-of-type(2) {
  top: 9px;
}
header #trigger span:nth-of-type(3) {
  bottom: 0;
}
header #trigger.open span:nth-of-type(1) {
  transform: translateY(8px) scale(0);
}
header #trigger.open span:nth-of-type(2) {
  transform: rotate(-45deg);
}
header #trigger.open span:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}
@media screen and (max-width: 700px) {
  header #gnav {
    display: none;
    width: 50%;
    height: 100%;
    display: grid;
    place-content: center;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fcfaf0;
    transform: translate(200%, 0);
    transition: 0.5s;
    opacity: 0;
    z-index: 2;
  }
  header #gnav.visible {
    transform: translate(100%, 0%);
    opacity: 1;
  }
}
header #gnav ul {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 700px) {
  header #gnav ul {
    flex-direction: column;
    align-items: center;
  }
}
header #gnav ul li {
  height: 1em;
  line-height: 1;
  display: flex;
}
header #gnav ul li:nth-child(1) {
  width: 3.4em;
}
@media screen and (max-width: 700px) {
  header #gnav ul li:nth-child(1) {
    width: auto;
  }
}
header #gnav ul li:nth-child(1) .jp {
  position: absolute;
  left: 2px;
  top: 2px;
}
header #gnav ul li:nth-child(2) {
  width: 3.5em;
}
@media screen and (max-width: 700px) {
  header #gnav ul li:nth-child(2) {
    width: auto;
  }
}
header #gnav ul li:nth-child(2) .jp {
  position: absolute;
  left: 0;
  top: 2px;
}
header #gnav ul li:nth-child(3) {
  width: 3.3em;
}
@media screen and (max-width: 700px) {
  header #gnav ul li:nth-child(3) {
    width: auto;
  }
}
header #gnav ul li:nth-child(3) .jp {
  position: absolute;
  left: 2px;
  top: 2px;
}
header #gnav ul li:nth-child(4) {
  width: 6em;
}
@media screen and (max-width: 700px) {
  header #gnav ul li:nth-child(4) {
    width: auto;
  }
}
header #gnav ul li:nth-child(4) .jp {
  position: absolute;
  left: 22px;
  top: 2px;
}
header #gnav ul li:nth-child(5) {
  width: 3.2em;
}
@media screen and (max-width: 700px) {
  header #gnav ul li:nth-child(5) {
    width: auto;
  }
}
header #gnav ul li:nth-child(5) .jp {
  position: absolute;
  left: 2px;
  top: 2px;
}
header #gnav ul li:nth-child(6) {
  width: 4.3em;
}
@media screen and (max-width: 700px) {
  header #gnav ul li:nth-child(6) {
    width: auto;
  }
}
header #gnav ul li:nth-child(6) .jp {
  position: absolute;
  left: 24px;
  top: 2px;
}
header #gnav ul li:nth-child(7) {
  width: 4.8em;
}
@media screen and (max-width: 700px) {
  header #gnav ul li:nth-child(7) {
    width: auto;
  }
}
header #gnav ul li:nth-child(7) .jp {
  position: absolute;
  left: 0;
  top: 2px;
}
header #gnav ul li .en,
header #gnav ul li .jp {
  position: absolute;
  text-align: center;
  transition: 0.3s;
}
@media screen and (max-width: 700px) {
  header #gnav ul li .en,
  header #gnav ul li .jp {
    position: relative;
  }
}
header #gnav ul li .en {
  font-family: "Roboto-Bold";
  text-transform: capitalize;
}
header #gnav ul li .jp {
  font-size: 0.8em;
  opacity: 0;
}
@media screen and (max-width: 1300px) {
  header #gnav ul li .jp {
    display: none;
  }
}
header #gnav ul li a {
  width: 100%;
  font-family: "GenShinGothic-P-Bold";
  color: #12542e;
  display: block;
  position: relative;
}
@media screen and (max-width: 700px) {
  header #gnav ul li a {
    text-align: center;
  }
}
header #gnav ul li a:hover .en {
  opacity: 0;
}
@media screen and (max-width: 1300px) {
  header #gnav ul li a:hover .en {
    opacity: 1;
  }
}
header #gnav ul li a:hover .jp {
  opacity: 1;
}
header #gnav ul li a:hover .jp::before {
  height: 1px;
  transform: scaleX(0);
  transform-origin: bottom right;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 1300px) {
  header #gnav ul li a:hover .jp::before {
    transform: none;
  }
}
header #gnav ul li a:hover .jp:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
@media screen and (max-width: 1300px) {
  header #gnav ul li a:hover .jp:hover::before {
    transform: none;
  }
}
header #gnav ul li a:hover .jp::before {
  content: " ";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #12542e;
  transition: transform 0.5s;
}
@media screen and (max-width: 1300px) {
  header #gnav ul li a:hover .jp::before {
    background-color: transparent;
  }
}
header.sticky {
  padding: 10px 40px;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
}

#hero {
  width: 100%;
  height: auto;
  padding: 62px 0 80px 0;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #hero {
    padding: 54px 0 40px 0;
  }
}
#hero video {
  aspect-ratio: 16/9;
  width: 100%;
}

#parallax {
  width: min(1310px, 100%);
  height: 710px;
  margin-inline: auto;
  border: 5px solid #fff;
  position: relative;
}
@media screen and (max-width: 1300px) {
  #parallax {
    height: auto;
  }
}
@media screen and (max-width: 700px) {
  #parallax {
    margin: 0 0 40px 0;
  }
}
#parallax #window {
  background: transparent;
  position: relative;
}
@media screen and (max-width: 1300px) {
  #parallax #window {
    display: none;
  }
}
#parallax #window #cover {
  height: 700px;
  background-image: url(../../images/top/cover.png);
  background-size: cover;
  background-repeat: no-repeat;
}
#parallax h1 {
  font-family: "GenShinGothic-P-Medium";
  font-size: 1.2em;
  color: #12542e;
  position: absolute;
  left: 500px;
  bottom: 100px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #parallax h1 {
    position: relative;
    left: auto;
    bottom: auto;
    line-height: 1.5;
    margin: 0 0 20px 10px;
  }
}
#parallax #cover_2 {
  display: none;
}
@media screen and (max-width: 1300px) {
  #parallax #cover_2 {
    display: block;
  }
}

#consept {
  width: min(1300px, 100%);
  margin: 0 auto 160px auto;
  font-family: "GenShinGothic-P-Regular";
  font-size: 1.2em;
  color: #12542e;
  line-height: 1.5;
  background-color: #fff;
}
@media screen and (max-width: 700px) {
  #consept {
    display: grid;
    gap: 20px;
    margin: 0 auto 40px auto;
    font-size: 1em;
  }
}
#consept section {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 700px) {
  #consept section {
    flex-direction: column;
    gap: 10px;
  }
}
#consept section:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 700px) {
  #consept section:nth-child(even) {
    flex-direction: column;
  }
}
#consept section div {
  font-family: "GenShinGothic-P-Medium";
  width: 50%;
}
@media screen and (max-width: 700px) {
  #consept section div {
    width: 100%;
  }
}
@media screen and (max-width: 1300px) {
  #consept section div:first-child {
    padding: 0 10px;
  }
}
#consept section div:last-child {
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
}
@media screen and (max-width: 1300px) {
  #consept section div:last-child {
    -webkit-clip-path: polygon(25% 0, 100% 0%, 75% 100%, 0% 100%);
            clip-path: polygon(25% 0, 100% 0%, 75% 100%, 0% 100%);
  }
}
@media screen and (max-width: 700px) {
  #consept section div br {
    display: none;
  }
}

.movie .movie_title {
  max-inline-size: -moz-max-content;
  max-inline-size: max-content;
  padding: 10px 30px;
  margin: 0 auto 10px auto;
  font-family: "Roboto-Bold";
  font-size: 1.2em;
  color: #ffffff;
  text-align: center;
  line-height: 1;
  text-transform: capitalize;
  background-color: #12542e;
}
.movie div {
  width: min(900px, 100%);
  margin: 0 auto 160px auto;
}
@media screen and (max-width: 700px) {
  .movie div {
    margin: 0 0 40px 0;
  }
}

main {
  width: min(1320px, 100%);
  padding: 0 10px;
  margin: 0 auto 80px auto;
  display: grid;
  gap: 80px;
}
@media screen and (max-width: 700px) {
  main {
    margin: 0 auto 40px auto;
    gap: 40px;
  }
}

.category {
  width: 200px;
  padding: 10px 0;
  margin: 0 0 10px 0;
  font-family: "Roboto-BoldItalic";
  font-size: 1.2em;
  color: #ffffff;
  text-align: center;
  line-height: 1;
  text-transform: capitalize;
  background-color: #12542e;
}
@media screen and (max-width: 1300px) {
  .category {
    transform: translate(0, 0);
    -webkit-clip-path: polygon(15% 0, 100% 0%, 85% 100%, 0% 100%);
            clip-path: polygon(15% 0, 100% 0%, 85% 100%, 0% 100%);
  }
}
@media screen and (max-width: 700px) {
  .category {
    width: 150px;
    padding: 5px 0;
    margin: 0 0 5px 0;
  }
}

h2 {
  font-family: "NotoSerifJP-Medium";
  font-size: 1.8em;
  color: #12542e;
  line-height: 1.5;
  margin: 0 0 20px 0;
}
h2 br {
  display: none;
}
@media screen and (max-width: 768px) {
  h2 br {
    display: block;
  }
}
h2 span {
  display: block;
}
@media screen and (max-width: 700px) {
  h2 {
    font-size: 1.3em;
  }
}

.contents {
  display: grid;
  gap: 60px;
}
@media screen and (max-width: 700px) {
  .contents {
    gap: 30px;
  }
}

#tab #tabnav {
  width: 25%;
  margin: 60px auto 20px auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}
@media screen and (max-width: 700px) {
  #tab #tabnav {
    margin: 20px auto 20px auto;
  }
}
#tab #tabnav li {
  font-family: "GenShinGothic-P-Bold";
  font-size: 1.2em;
  color: #ffffff;
  text-align: center;
  line-height: 1;
  text-transform: capitalize;
  padding: 10px 0;
  border-radius: 20px;
  cursor: pointer;
  background-color: #c8c8c8;
}
@media screen and (max-width: 700px) {
  #tab #tabnav li {
    font-size: 1em;
    padding: 5px 0;
  }
}
#tab #tabnav li.current {
  color: #fff;
  background-color: #12542e;
}
#tab #tablist div {
  display: none;
}
#tab #tablist div.current {
  display: block;
  animation-name: viewtab;
  animation-duration: 1s;
}
@keyframes viewtab {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#level {
  display: grid;
  gap: 60px;
}
@media screen and (max-width: 700px) {
  #level {
    gap: 30px;
  }
}
#level h3 {
  font-family: "GenShinGothic-P-Regular";
  font-size: 1.2em;
  color: #12542e;
  line-height: 1;
  text-transform: uppercase;
  padding: 0 0 5px 22px;
  margin: 0 0 20px 0;
  background-image: url(../../images/top/icon_level.png);
  background-size: 20px 16px;
  background-position: left center;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (max-width: 1300px) {
  #level h3::after {
    content: "";
    width: 100%;
    display: block;
    border-bottom: 1px solid #12542e;
    position: absolute;
    left: 0;
    bottom: -10px;
  }
}
@media screen and (max-width: 700px) {
  #level h3 {
    font-size: 1em;
    margin: 0 0 10px 0;
  }
}
#level .comment {
  margin: 0 0 20px 0;
}
@media screen and (max-width: 700px) {
  #level .comment {
    margin: 0 0 10px 0;
  }
}
#level #design_1f_1 {
  display: grid;
  gap: 40px;
  margin: 0 0 10px 0;
}
@media screen and (max-width: 700px) {
  #level #design_1f_1 {
    gap: 20px;
    margin: 0 0 5px 0;
  }
}
#level #design_1f_2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media screen and (max-width: 700px) {
  #level #design_1f_2 {
    grid-template-columns: repeat(1, 1fr);
    gap: 5px;
  }
}
#level #design_5f_3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media screen and (max-width: 700px) {
  #level #design_5f_3 {
    grid-template-columns: repeat(1, 1fr);
    gap: 5px;
  }
}

#plan {
  display: grid;
  gap: 60px;
}
@media screen and (max-width: 700px) {
  #plan {
    gap: 30px;
  }
}
#plan h3 {
  font-family: "GenShinGothic-P-Regular";
  font-size: 1.2em;
  color: #12542e;
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 20px 0;
  position: relative;
}
@media screen and (max-width: 1300px) {
  #plan h3::after {
    content: "";
    width: 100%;
    display: block;
    border-bottom: 1px solid #12542e;
    position: absolute;
    left: 0;
    bottom: -10px;
  }
}
@media screen and (max-width: 700px) {
  #plan h3 {
    font-size: 1em;
    margin: 0 0 10px 0;
  }
}
#plan .plan_detail_1 div {
  margin: 0 0 20px 0;
}
@media screen and (max-width: 700px) {
  #plan .plan_detail_1 div {
    margin: 0 0 10px 0;
  }
}
#plan .plan_detail_1 p span {
  color: #12542e;
}
#plan .plan_detail_2 {
  display: grid;
  gap: 60px;
}
@media screen and (max-width: 700px) {
  #plan .plan_detail_2 {
    gap: 30px;
  }
}
#plan .plan_detail_2 div h4 {
  font-family: "Roboto-BoldItalic";
  font-size: 1.5em;
  color: #12542e;
  text-align: center;
  line-height: 1;
  text-transform: capitalize;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 700px) {
  #plan .plan_detail_2 div h4 {
    margin: 0 0 10px 0;
  }
}
#plan .plan_detail_2 div ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}
#plan .plan_detail_2 div ul li img {
  border-radius: 5px;
}
#plan #rollerblade_abw {
  aspect-ratio: 10/8;
}
#plan #rollerblade_free {
  aspect-ratio: 10/8;
}

#map {
  width: 70%;
  margin: 0 auto 20px auto;
}
@media screen and (max-width: 700px) {
  #map {
    width: 100%;
  }
}
#map figure figcaption {
  line-height: 1.5;
  text-align: right;
}

#development {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 700px) {
  #development {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin: 0 0 10px 0;
  }
}
#development #development_list {
  display: grid;
  align-content: space-between;
}
#development #development_list #development_summary {
  margin: 0 0 40px 0;
}
@media screen and (max-width: 700px) {
  #development #development_list #development_summary {
    margin: 0 0 20px 0;
  }
}
#development #development_list .accordion_title {
  position: relative;
  cursor: pointer;
  font-family: "GenShinGothic-P-Bold";
  color: #ffffff;
  line-height: 1;
  padding: 10px 40px 10px 32px;
  margin: 0 0 10px 0;
  background-position: 10px center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
}
#development #development_list .accordion_title#purple {
  background-image: url(../../images/top/icon_number_1.png);
  background-color: #a77599;
}
#development #development_list .accordion_title#blue {
  background-image: url(../../images/top/icon_number_2.png);
  background-color: #2d9db4;
}
#development #development_list .accordion_title#brown {
  background-image: url(../../images/top/icon_number_3.png);
  background-color: #b18247;
}
#development #development_list .accordion_title#orange {
  background-image: url(../../images/top/icon_number_4.png);
  background-color: #ef7c1b;
}
#development #development_list .accordion_title:before {
  content: "";
  width: 15px;
  height: 2px;
  position: absolute;
  right: 10px;
  top: 18px;
  transform: rotate(90deg);
  background: #fff;
  transition: 0.3s;
}
#development #development_list .accordion_title:after {
  content: "";
  width: 15px;
  height: 2px;
  position: absolute;
  right: 10px;
  top: 18px;
  background: #fff;
  transition: 0.3s;
}
#development #development_list .accordion_title.open:before {
  transform: rotate(180deg);
}
#development #development_list .accordion_title.open:after {
  opacity: 0;
}
#development #development_list .accordion_content {
  display: none;
  padding: 0 10px;
  margin: 0 0 40px 0;
}
@media screen and (max-width: 700px) {
  #development #development_list .accordion_content {
    margin: 0 0 20px 0;
  }
}
#development #development_list .accordion_content h4 {
  font-family: "GenShinGothic-P-Bold";
}
#development #development_list #guide {
  font-size: 0.8em;
  padding: 15px 10px;
  margin: 10px 0 0 0;
  background-color: #f0f0f0;
}
#development #development_list #guide ul {
  display: grid;
  gap: 15px;
}
#development #development_list #guide ul li {
  line-height: 1;
  padding: 0 0 0 40px;
  background-position: left center;
  background-repeat: no-repeat;
}
#development #development_list #guide ul li:nth-child(1) {
  background-image: url(../../images/top/icon_arrow_1.png);
  background-size: 25px 6px;
}
#development #development_list #guide ul li:nth-child(2) {
  background-image: url(../../images/top/icon_plaza.png);
  background-size: 20px 10px;
}
#development #development_list #guide ul li:nth-child(3) {
  background-image: url(../../images/top/icon_arrow_2.png);
  background-size: 30px 6px;
}
#development #development_list small {
  font-size: 0.7em;
}

#floor {
  display: grid;
  gap: 60px;
}
@media screen and (max-width: 700px) {
  #floor {
    gap: 20px;
  }
}
#floor .spec {
  padding: 0 10px 20px 10px;
  background-color: #fcfaf0;
}
#floor .spec h3 {
  font-family: "GenShinGothic-P-Medium";
  font-size: 1.2em;
  color: #12542e;
  margin: 0 0 -10px 0;
  transform: translate(0, -20px);
}
#floor .spec ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
@media screen and (max-width: 700px) {
  #floor .spec ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
#floor .spec ul li {
  padding: 10px 5px;
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: #fff;
}
#floor .spec ul li.spec_2 {
  align-items: flex-start;
}
#floor .spec ul li .icon img {
  width: 60px;
}
@media screen and (max-width: 700px) {
  #floor .spec ul li .icon img {
    width: 30px;
  }
}
#floor .spec ul li h4 {
  font-family: "GenShinGothic-P-Medium";
  color: #12542e;
  line-height: 1;
}
#floor .spec ul li p {
  font-size: 0.9em;
  line-height: 1.5;
  padding: 5px 0 0 0;
}
#floor .spec ul #va50 {
  background-image: url(../../images/top/icon_50va.png);
}
#floor .spec ul #led {
  background-image: url(../../images/top/icon_led.png);
}
#floor .spec ul #air_conditioning {
  background-image: url(../../images/top/icon_air_conditioning.png);
}
#floor .spec ul #security {
  background-image: url(../../images/top/icon_security.png);
}
#floor .spec ul #mm2800 {
  background-image: url(../../images/top/icon_2800.png);
}
#floor .spec ul #mm100 {
  background-image: url(../../images/top/icon_100.png);
}
#floor .spec ul #earthquakes {
  background-image: url(../../images/top/icon_earthquakes.png);
}
#floor .spec ul #emergency {
  background-image: url(../../images/top/icon_emergency.png);
}
#floor .spec ul #generato {
  background-image: url(../../images/top/icon_generator.png);
}

#list {
  display: grid;
  gap: 60px;
}
@media screen and (max-width: 700px) {
  #list {
    gap: 30px;
  }
}
#list section {
  display: grid;
  gap: 10px;
}
#list section h3 {
  font-family: "GenShinGothic-P-Medium";
  font-size: 1.2em;
  color: #12542e;
  line-height: 1;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 700px) {
  #list section h3 {
    margin: 0 0 10px 0;
  }
}
#list section dl {
  display: flex;
  padding: 0 0 10px 0;
  border-bottom: 1px solid #969696;
}
@media screen and (max-width: 700px) {
  #list section dl {
    flex-direction: column;
  }
}
#list section dl:last-child {
  padding: 0;
  border-bottom: none;
}
#list section dl dt {
  width: 15%;
}
@media screen and (max-width: 1300px) {
  #list section dl dt {
    width: 20%;
  }
}
@media screen and (max-width: 700px) {
  #list section dl dt {
    width: 100%;
  }
}
#list section dl dd {
  width: 85%;
}
@media screen and (max-width: 1300px) {
  #list section dl dd {
    width: 80%;
  }
}
@media screen and (max-width: 700px) {
  #list section dl dd {
    width: 100%;
    padding: 0 0 0 10px;
  }
}
@media screen and (max-width: 700px) {
  #list section dl dd br {
    display: none;
  }
}

#contact {
  width: min(1000px, 100%);
  padding: 80px 10px;
  margin: auto;
  text-align: center;
  border: 1px solid #969696;
}
@media screen and (max-width: 700px) {
  #contact {
    padding: 40px 10px;
  }
}
#contact p {
  font-family: "Roboto-Bold";
  font-size: 1.5em;
  color: #12542e;
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 40px 0;
}
@media screen and (max-width: 700px) {
  #contact p {
    margin: 0 0 20px 0;
  }
}
#contact a {
  font-family: "GenShinGothic-P-Medium";
  font-size: 1.2em;
  color: #ffffff;
  line-height: 1;
  padding: 20px 80px;
  display: inline-block;
  background-color: #12542e;
  transition: 0.3s;
}
@media screen and (max-width: 700px) {
  #contact a {
    padding: 10px 60px;
  }
}
#contact a:hover {
  opacity: 0.7;
}

footer {
  font-family: "Roboto-Bold";
  font-size: 0.7em;
  color: #ffffff;
  text-align: center;
  line-height: 1;
  padding: 10px;
  background-color: #323232;
}/*# sourceMappingURL=common.css.map */