@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap");
html {
  scroll-behavior: smooth;
}

body {
  box-sizing: border-box;
}

ul {
  margin-left: 0;
  padding-left: 0;
}

.mt-dummy {
  margin-top: -100px;
  padding-top: 100px;
}

.mb-common {
  margin-bottom: 120px;
}

p, li {
  line-height: 1.5rem;
}

img {
  max-width: 100%;
  height: auto;
}

.block-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}
.block-title span {
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
}

.font-en {
  font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-weight: 600;
}

#splash {
  display: none;
}

#g-nav {
  position: fixed;
  z-index: 100;
  width: 100%;
  top: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 15px 15px;
  background-color: rgba(255, 255, 255, 0.8);
}
#g-nav .first {
  display: flex;
  align-items: center;
  font-weight: 600;
}
#g-nav .first .wrapper-logo {
  width: 25px;
  margin-right: 10px;
}
#g-nav nav > ul {
  font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
#g-nav li:after {
  content: "/";
  padding: 0 10px;
}
#g-nav li:nth-last-of-type(1)::after {
  content: "";
  padding: 0;
}
@media screen and (max-width: 600px) {
  #g-nav nav {
    display: none;
  }
}

body {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

header {
  padding: 15px;
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .box .wrapper-img {
  text-align: center;
  margin-bottom: 50px;
}
header .box .wrapper-img img {
  max-width: 34%;
}
header .box p {
  text-align: center;
}
header #ico-scroll {
  position: absolute;
  width: 50px;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 25px;
}

#message .box {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 500px;
}
#message .box p {
  margin-bottom: 1rem;
}
#message .box .end {
  text-align: end;
  margin-top: 25px;
}
#message .box .end h2, #message .box .end h3 {
  font-weight: 600;
}

#works ul {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media screen and (max-width: 600px) {
  #works ul {
    grid-template-columns: 1fr;
  }
}
#works li {
  background-color: #fff;
  box-shadow: 0px 0px 15px -5px #777777;
  border-radius: 5px;
  overflow: hidden;
}
#works h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}
#works figcaption {
  padding: 15px;
}
#works figcaption p {
  margin-bottom: 5px;
}
#works figcaption p:nth-last-of-type(1) {
  margin-bottom: 0;
}

#service ul {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
#service ul li {
  width: 280px;
  border: 1px solid #000;
  border-radius: 5px;
  padding: 10px;
}
#service ul .wrapper-img {
  text-align: center;
}
#service ul h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}

#company .box {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 500px;
}
#company th {
  width: 120px;
  padding-bottom: 15px;
}
#company td {
  padding-bottom: 15px;
}
#company .company-info {
  list-style: dotted;
  padding-left: 1rem;
}

#contact p {
  text-align: center;
  margin-bottom: 25px;
}
#contact .g-form {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
  height: 800px;
}
@media screen and (max-width: 600px) {
  #contact .g-form {
    min-height: 1000px;
    overflow: scroll;
  }
}

footer {
  padding: 25px 50px;
  text-align: center;
  font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-weight: 400;
}
footer .wrapper-logo {
  width: 100%;
  max-width: 50px;
  margin: 0 auto;
  margin-bottom: 50px;
}

.tag {
  display: inline-block;
  padding: 5px 10px;
  margin-right: 5px;
  margin-bottom: 5px;
  border-radius: 4px;
  background-color: #6eb2ff;
}

#works-detail li {
  list-style: disc;
  margin-left: 1em;
}
#works-detail h1 {
  font-size: 24px;
}
#works-detail h2 {
  font-size: 20px;
}
#works-detail h3 {
  font-size: 18px;
}
#works-detail h4 {
  font-size: 16px;
}
#works-detail h5 {
  font-size: 12px;
}
#works-detail h1, #works-detail h2, #works-detail h3, #works-detail h4, #works-detail h5, #works-detail h6 {
  font-weight: bold;
  margin-bottom: 2rem;
}
#works-detail p {
  margin-bottom: 2rem;
}
#works-detail ul {
  margin-bottom: 2rem;
}/*# sourceMappingURL=style.css.map */