@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

html,
body {
  font-family: "Poppins", sans-serif;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 300;
}
html nav,
body nav {
  background-color: #71D9FF;
}
html main,
body main {
  position: relative;
}
html main mark,
body main mark {
  background: linear-gradient(transparent 60%, yellow 0%);
}
html main .wrap,
body main .wrap {
  margin: 0px 10%; /* 外側の余白を、上下はゼロで左右は画面横幅の15％に */
  padding: 0px; /* 内側の余白を消す */
  background-color: white; /* 本文部分の背景色は白色 */
}
html main section.home,
body main section.home {
  position: relative;
}
html main section.home .top-text,
body main section.home .top-text {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  html main .wrap,
body main .wrap {
    margin: 0;
  }
  html main .top-text h1,
body main .top-text h1 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.2rem;
  }
  html main .top-text p,
body main .top-text p {
    font-size: 0.8rem;
  }
}
html main section.about,
body main section.about {
  margin-top: 10em;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
html main section.about .about-side-img-pc,
body main section.about .about-side-img-pc {
  width: 40%;
  margin-left: auto;
}
html main section.about .about-side-img-mob,
body main section.about .about-side-img-mob {
  display: none;
}
html main section.about .about-box,
body main section.about .about-box {
  padding-left: 0.5em;
  margin: 5em;
}
html main section.about .about-box h2,
body main section.about .about-box h2 {
  padding-left: 1em;
  font-weight: 600;
  font-size: 1rem;
  border-left: 5px solid #75FBFD;
}
html main section.about .about-box p,
body main section.about .about-box p {
  font-weight: 0.8rem;
}
@media only screen and (max-width: 768px) {
  html main section.about,
body main section.about {
    display: block;
  }
  html main section.about .about-side-img-mob,
body main section.about .about-side-img-mob {
    display: block;
    width: 80%;
    margin: auto;
  }
  html main section.about .about-side-img-pc,
body main section.about .about-side-img-pc {
    display: none;
  }
  html main section.about .about-text .about-box,
body main section.about .about-text .about-box {
    margin: 2em 10%;
  }
}
html main section.flow,
body main section.flow {
  position: relative;
  width: 100%;
  margin-top: 10em;
}
html main section.flow h2,
body main section.flow h2 {
  padding-left: 1em;
  font-weight: 600;
  font-size: 1rem;
  border-left: 5px solid #3e8b8d;
}
html main section.flow article,
body main section.flow article {
  background-color: #8BD7FB;
  padding: 10em;
  position: relative;
}
html main section.flow article .flow-boxs,
body main section.flow article .flow-boxs {
  display: flex;
}
html main section.flow article .flow-boxs .flow-box,
body main section.flow article .flow-boxs .flow-box {
  padding: 1em;
}
html main section.flow article .flow-boxs .flow-box h3,
body main section.flow article .flow-boxs .flow-box h3 {
  font-size: 1rem;
  padding-left: 1em;
  font-weight: 600;
  border-left: 3px solid #254e4f;
}
html main section.flow article .flow-boxs .flow-box p,
body main section.flow article .flow-boxs .flow-box p {
  font-size: 0.8rem;
}
html main section.flow article .flow-boxs .flow-box .flow-img,
body main section.flow article .flow-boxs .flow-box .flow-img {
  width: 5em;
  margin: auto;
}
html main section.flow article .button,
body main section.flow article .button {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  width: 200px;
  height: 50px;
  background-color: #5681BC;
  border-radius: 10px;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.5);
  text-align: center;
  padding-top: 0.8em;
  z-index: 888;
}
html main section.flow article .button p,
body main section.flow article .button p {
  font-weight: 600;
}
html main section.flow article .button a,
body main section.flow article .button a {
  color: #444;
  text-decoration: none;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  html main section.flow article,
body main section.flow article {
    padding: 10%;
    margin: 0;
  }
  html main section.flow article .flow-boxs,
body main section.flow article .flow-boxs {
    display: block;
  }
  html main section.flow article .flow-boxs .flow-box,
body main section.flow article .flow-boxs .flow-box {
    padding: 3em;
  }
}
html main section.bottom-menu,
body main section.bottom-menu {
  position: relative;
}
html main section.bottom-menu article,
body main section.bottom-menu article {
  position: absolute;
  background-image: url(../img/bottom-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 20em;
  width: 100%;
}
html main section.bottom-menu article .bottoms,
body main section.bottom-menu article .bottoms {
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  html main section.bottom-menu article .bottoms,
body main section.bottom-menu article .bottoms {
    padding-top: 3em;
    display: block;
  }
  html main section.bottom-menu article .bottoms .bt,
body main section.bottom-menu article .bottoms .bt {
    padding: 2em;
  }
}
html main .about-title,
body main .about-title {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 1;
  border-left: 5px solid #71D9FF;
  padding-left: 1em;
  margin: 5em 10%;
}
html main section.about-gruf .about-us,
body main section.about-gruf .about-us {
  margin: 10em auto;
  width: 60%;
}
html main section.about-gruf .map-pc,
body main section.about-gruf .map-pc {
  display: block;
  text-align: center;
  position: relative;
  padding-bottom: 10em;
  height: 0;
  overflow: hidden;
}
html main section.about-gruf .map-mob,
body main section.about-gruf .map-mob {
  display: none;
}
html main section.greeting,
body main section.greeting {
  position: relative;
  margin-bottom: 10em;
}
html main section.greeting .greeting-box,
body main section.greeting .greeting-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
html main section.greeting .greeting-box .greeting-img,
body main section.greeting .greeting-box .greeting-img {
  position: relative;
  width: 20em;
}
html main section.greeting .greeting-box .greeting-img img,
body main section.greeting .greeting-box .greeting-img img {
  max-width: 100%;
}
html main section.greeting .greeting-box p,
body main section.greeting .greeting-box p {
  font-size: 0.8rem;
  letter-spacing: 0.1rem;
  padding: 5em;
  font-weight: 300;
  width: 50%;
  line-height: 5;
}
@media only screen and (max-width: 768px) {
  html main .wrap .about-title,
body main .wrap .about-title {
    font-size: 0.8rem;
  }
  html main .wrap section.about-gruf .map-pc,
body main .wrap section.about-gruf .map-pc {
    display: none;
  }
  html main .wrap section.about-gruf .map-mob,
body main .wrap section.about-gruf .map-mob {
    text-align: center;
    display: block;
    position: relative;
    padding-bottom: 50%;
    height: 0;
    overflow: hidden;
  }
  html main .wrap section.greeting .greeting-box,
body main .wrap section.greeting .greeting-box {
    display: block;
  }
  html main .wrap section.greeting .greeting-box .greeting-img,
body main .wrap section.greeting .greeting-box .greeting-img {
    position: relative;
    width: 10em;
    margin: auto;
  }
  html main .wrap section.greeting .greeting-box .greeting-img img,
body main .wrap section.greeting .greeting-box .greeting-img img {
    max-width: 100%;
  }
  html main .wrap section.greeting .greeting-box p,
body main .wrap section.greeting .greeting-box p {
    font-size: 0.8rem;
    letter-spacing: 0.1rem;
    font-weight: 300;
    line-height: 2;
    width: 100%;
  }
}
html main section.work .wrap .contact,
body main section.work .wrap .contact {
  text-align: center;
  margin: 10em;
}
html main section.work .wrap .contact a,
body main section.work .wrap .contact a {
  font-size: 2rem;
  text-decoration: none;
  color: black;
}
html main section.work .wrap .work-text,
body main section.work .wrap .work-text {
  margin: 10%;
}
html main section.work .wrap .work-text h2,
body main section.work .wrap .work-text h2 {
  font-size: 1.5rem;
  border-bottom: 2px solid #5681BC;
  width: 10em;
}
html main section.work .wrap .work-text p,
body main section.work .wrap .work-text p {
  padding: 2em;
}
html main section.work .wrap .work-img,
body main section.work .wrap .work-img {
  width: 100%;
  text-align: center;
}
html main section.work .wrap .work-img img,
body main section.work .wrap .work-img img {
  width: 100%;
}
html main section.work .wrap .work-list,
body main section.work .wrap .work-list {
  margin: 10%;
}
@media only screen and (max-width: 768px) {
  html main section.work .wrap .contact,
body main section.work .wrap .contact {
    margin: 5em 3em;
  }
  html main section.work .wrap .work-text h2,
body main section.work .wrap .work-text h2 {
    font-size: 0.8rem;
    font-weight: 600;
  }
  html main section.work .wrap .work-text p,
body main section.work .wrap .work-text p {
    font-size: 0.8rem;
  }
  html main section.work .wrap .work-img img,
body main section.work .wrap .work-img img {
    max-width: 80%;
  }
  html main section.work .wrap .work-list ul,
body main section.work .wrap .work-list ul {
    margin-bottom: 8em;
  }
  html main section.work .wrap .work-list ul li,
body main section.work .wrap .work-list ul li {
    font-size: 0.7rem;
  }
}
html main section.contact-main,
body main section.contact-main {
  align-items: center;
}
html main section.contact-main .contact-title,
body main section.contact-main .contact-title {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 1;
  border-left: 5px solid #71D9FF;
  padding-left: 1em;
  margin: 10em 10%;
}
html main section.contact-main .contact,
body main section.contact-main .contact {
  text-align: center;
  align-items: center;
  margin: 10em;
}
html main section.contact-main .contact a,
body main section.contact-main .contact a {
  font-size: 2rem;
  text-decoration: none;
  color: black;
}
html main section.contact-main .contact h2,
body main section.contact-main .contact h2 {
  margin: 2em;
}
html main section.contact-main .contact-list,
body main section.contact-main .contact-list {
  text-align: center;
  margin: 10em auto;
}
html main section.contact-main .contact-list ul,
body main section.contact-main .contact-list ul {
  padding: 0;
}
html main section.contact-main .contact-list ul li,
body main section.contact-main .contact-list ul li {
  list-style: none;
  margin: 1em;
}
@media only screen and (max-width: 768px) {
  html main section.contact-main .contact-title,
body main section.contact-main .contact-title {
    font-size: 0.8rem;
  }
  html main section.contact-main .contact,
body main section.contact-main .contact {
    margin: 1em;
  }
}
html footer,
body footer {
  background-color: #71D9FF;
  text-align: center;
  z-index: 999;
  width: 100%;
  bottom: 0;
}
html footer h1,
body footer h1 {
  padding: 1em;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  font-weight: 300;
  margin-bottom: 0;
}/*# sourceMappingURL=style.css.map */