/* -------------CSS Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  font-family: "NotoSansJP-Regular", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  src: url("http://wsabc.jp/fonts/NotoSansJapanese/NotoSansJP-Regular.otf") format("opentype");
  line-height: 100%;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

html {
  overflow-y: scroll;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

input, textarea {
  margin: 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

a:focus {
  outline: none;
}

.inline_block {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

/* ----------//Reset END */
body {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
img {
  display: block;
  width: 100%;
  height: auto;
}

a:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.exterior_header {
  width: 90%;
  margin: 40px auto;
  display: none;
}
.exterior_header h1 {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #666;
  letter-spacing: 1px;
}
.exterior_header p {
  margin-top: 15px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: bold;
  line-height: 1.8rem;
  color: #666;
}

.exterior_content {
  width: 80%;
  margin: auto;
}
.exterior_content h2 {
  font-size: 1.2rem;
  text-align: center;
  font-weight: bold;
  color: #666;
  display: none;
}
.exterior_content ul.exterior_upper {
  width: auto;
  margin: 40px auto;
  padding: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 10px 1fr;
  grid-template-columns: 2fr 1fr;
  gap: 10px;
}
.exterior_content ul.exterior_upper li.horizontal {
  width: 100%;
  height: auto;
}
.exterior_content ul.exterior_upper li.horizontal img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.exterior_content ul.exterior_upper li.vertical {
  width: 100%;
  height: auto;
}
.exterior_content ul.exterior_upper li.vertical img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 2/3;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.exterior_content p.exterior_text {
  text-align: center;
  line-height: 1.8rem;
}
.exterior_content ul.exterior_lower {
  width: 100%;
  margin: 40px auto;
}

.lower_wrap {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin: 40px auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

ul.ext_left,
ul.ext_right {
  width: 100%;
  height: auto;
}
ul.ext_left li:nth-child(1),
ul.ext_right li:nth-child(1) {
  margin-bottom: 10px;
}
ul.ext_left li:nth-child(1) img,
ul.ext_right li:nth-child(1) img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

ul.ext_center {
  width: 100%;
  height: auto;
}
ul.ext_center li img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2/2.72;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

footer.footer_main {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 120px;
}

.footer_content {
  margin-top: 120px;
}
.footer_content ul {
  width: 80%;
  margin: auto;
}
.footer_content li {
  text-align: center;
  margin: 40px auto auto auto;
}
.footer_content li img {
  margin: auto;
}
.footer_content li.freecall img {
  width: 100%;
}
.footer_content li.url a {
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: #666;
}
.footer_content li.url a:hover {
  text-decoration: underline;
}
.footer_content li.qr {
  width: 15%;
}
.footer_content li.logo {
  width: 30%;
}

.copy_right {
  margin-top: 80px;
}
.copy_right p {
  text-align: center;
  font-size: 0.8rem;
  color: #444;
  letter-spacing: 1px;
}

@media screen and (max-width: 1024px) {
  .row {
    width: 70%;
  }
}
@media screen and (max-width: 559px) {
  .exterior_header h1 {
    font-size: 1.5rem;
  }
  .exterior_header p {
    line-height: 1.5rem;
  }
  .exterior_content {
    width: 90%;
  }
  .exterior_content ul.exterior_upper {
    display: block;
  }
  .exterior_content ul.exterior_upper li {
    margin-bottom: 10px;
  }
  .lower_wrap {
    display: block;
  }
  .lower_wrap li {
    margin-bottom: 10px;
  }
  footer.footer_main {
    width: 100%;
    margin: auto;
  }
  .footer_content {
    width: 90%;
    margin: 80px auto auto auto;
  }
  .footer_content ul {
    width: 95%;
    margin: auto;
  }
  .footer_content li.qr {
    width: 25%;
  }
  .footer_content li.logo {
    width: 40%;
  }
}
/* -----------------------------CSS To-Top */
#page-top {
  width: 50px;
  height: 50px;
  display: none;
  position: fixed;
  right: 16px;
  bottom: 16px;
}

#page-top p {
  margin: 0;
  padding: 0;
  text-align: center;
  background: #3b3b3b;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#page-top p:hover {
  background: #8b8b8b;
}

#move-page-top {
  color: #fff;
  line-height: 50px;
  text-decoration: none;
  display: block;
  cursor: pointer;
}

/* -----------------------------//CSS To-Top END */
/*# sourceMappingURL=style.css.map */