div h1 p a button {
  font-family: "Jun 201", "Work Sans", Arial, sans-serif;
}

body {
  background-color: #fcf5eb;
}
body header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  background: #fcf5eb;
}
body header .content {
  margin: 0 auto;
}
body header .content .top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  margin: 0 auto;
}
@media screen and (max-width: 540px) {
  body header .content .top {
    justify-content: left;
    margin-left: 20px;
  }
}
body header .content .top a img {
  width: 150px;
}
@media screen and (max-width: 540px) {
  body header .content .top a img {
    width: 80px;
  }
}
@media screen and (max-width: 540px) {
  body header .content .top #drawer_toggle {
    z-index: 200;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    width: 60px;
    height: 61px;
    background-color: #b64b30;
  }
}
@media screen and (max-width: 540px) {
  body header .content .top #drawer_toggle span {
    position: absolute;
    top: 18px;
    left: 10px;
    display: inline-block;
    width: 40px;
    height: 3px;
    background-color: #FFFFFF;
    vertical-align: top;
    transition: 0.5s;
  }
}
@media screen and (max-width: 540px) {
  body header .content .top #drawer_toggle span:nth-child(2) {
    margin-top: 10px;
  }
}
@media screen and (max-width: 540px) {
  body header .content .top #drawer_toggle span:last-child {
    margin-top: 20px;
  }
}
@media screen and (max-width: 540px) {
  body header .content .top #drawer_toggle.open span {
    top: 16px;
    left: 10px;
    width: 40px;
    margin-top: 15px;
    transition: 0.5s;
  }
}
body header .content .top #drawer_toggle.open span:first-child {
  transform: rotate(135deg);
}
body header .content .top #drawer_toggle.open span:nth-child(2) {
  display: none;
}
body header .content .top #drawer_toggle.open span:last-child {
  transform: rotate(-135deg);
}
body header .content .top #nav_mobile {
  box-sizing: border-box;
  position: fixed;
  top: 60px;
  display: none;
  width: 100%;
  height: calc(100% - 60px);
  background: #fcf5eb;
  opacity: 0.9;
  display: block;
  left: -100%;
  transition: left 0.5s;
}
body header .content .top #nav_mobile.sp_open {
  left: 0;
}
body header .content .top #nav_mobile nav ul {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
}
body header .content .top #nav_mobile nav ul li a {
  display: block;
  padding: 10px;
  border-radius: 5px;
  font-family: "Jun 501";
  color: #b64b30;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}
body header .content .top #nav_mobile nav ul hr {
  border-top: 2px solid #b64b30;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}
body header .content .top #nav_mobile #contact_mobile {
  position: absolute;
  top: 80%;
  left: 30%;
}
body header .content .top #nav_mobile #contact_mobile button {
  width: 250px;
  height: 70px;
  font-family: "Jun 501";
  font-size: 19px;
  font-weight: bold;
  color: #FFFFFF;
  background-color: #b64b30;
  border-radius: 10px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}
@media screen and (min-width: 541px) and (max-width: 1024px) {
  body header .content .top #nav_mobile #contact_mobile button {
    width: 200px;
    height: 50px;
  }
}
@media screen and (max-width: 540px) {
  body header .content .top #nav_mobile #contact_mobile button {
    width: 150px;
    height: 40px;
    font-size: 15px;
  }
}
@media screen and (max-width: 540px) {
  body header .content .top #nav_PC {
    display: none;
  }
}
body header .content .top #nav_PC #list_PC {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 50px;
       column-gap: 50px;
  list-style: none;
}
@media screen and (min-width: 541px) and (max-width: 1024px) {
  body header .content .top #nav_PC #list_PC {
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
}
body header .content .top #nav_PC #list_PC li a {
  text-decoration: none;
  font-family: "Jun 501";
  color: #b64b30;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (min-width: 541px) and (max-width: 1024px) {
  body header .content .top #nav_PC #list_PC li a {
    font-size: 18px;
  }
}
@media screen and (max-width: 540px) {
  body header .content .top #contact_PC {
    display: none;
  }
}
body header .content .top #contact_PC button {
  width: 250px;
  height: 70px;
  font-size: 19px;
  font-weight: bold;
  font-family: "Jun 501";
  color: #FFFFFF;
  background-color: #b64b30;
  border-radius: 10px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}
@media screen and (min-width: 541px) and (max-width: 1024px) {
  body header .content .top #contact_PC button {
    width: 200px;
    height: 50px;
  }
}
@media screen and (max-width: 540px) {
  body header .content .top #contact_PC button {
    width: 150px;
    height: 40px;
    font-size: 15px;
  }
}
body main {
  margin-top: 100px;
}
@media screen and (max-width: 540px) {
  body main {
    margin-top: 61px;
  }
}
body main .container .filter {
  background-color: #b64b30;
  position: relative;
}
body main .container .filter img {
  width: 100%;
  opacity: 0.6;
  display: block;
}
@media screen and (min-width: 541px) and (max-width: 1024px) {
  body main .container .filter img {
    height: 500px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 540px) {
  body main .container .filter img {
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
body main .container .filter .load_1, body main .container .filter .load_2, body main .container .filter .load_3 {
  display: none;
}
body main .container .filter .jp {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Jun 501";
  font-size: 50px;
  font-weight: bold;
  color: #FFFFFF;
  margin: 0;
}
@media screen and (min-width: 541px) and (max-width: 1024px) {
  body main .container .filter .jp {
    font-size: 40px;
  }
}
@media screen and (max-width: 540px) {
  body main .container .filter .jp {
    width: 250px;
    font-size: 27px;
    margin: 0 auto;
    text-align: center;
  }
}
body main .container .filter .en {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Jun 201", "Work Sans", Arial, sans-serif;
  font-size: 30px;
  font-weight: bold;
  color: #FFFFFF;
  padding: 20px;
  margin: 0;
}
@media screen and (min-width: 541px) and (max-width: 1024px) {
  body main .container .filter .en {
    font-size: 25px;
  }
}
@media screen and (max-width: 540px) {
  body main .container .filter .en {
    font-size: 18px;
    width: 250px;
    text-align: center;
  }
}
body main .container .filter .contact button {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 70px;
  font-family: "Jun 501";
  font-size: 19px;
  font-weight: bold;
  color: #FFFFFF;
  background-color: #b64b30;
  border-radius: 10px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}
@media screen and (min-width: 541px) and (max-width: 1024px) {
  body main .container .filter .contact button {
    width: 200px;
    height: 50px;
  }
}
@media screen and (max-width: 540px) {
  body main .container .filter .contact button {
    width: 150px;
    height: 40px;
    font-size: 15px;
  }
}
body main .intro {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-top: 150px;
}
@media screen and (min-width: 541px) and (max-width: 1024px) {
  body main .intro {
    margin-top: 100px;
  }
}
@media screen and (max-width: 540px) {
  body main .intro {
    margin-top: 70px;
    flex-direction: column-reverse;
  }
}
body main .intro img {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
}
body main .intro img.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
@media screen and (min-width: 541px) and (max-width: 1024px) {
  body main .intro img {
    width: 45%;
    height: 45%;
  }
}
@media screen and (max-width: 540px) {
  body main .intro img {
    width: 80%;
    height: 80%;
    padding-top: 20px;
    margin: 0 auto;
  }
}
body main .intro .sentence {
  width: 40%;
  padding-top: 50px;
  font-family: "Jun 201", "Work Sans", Arial, sans-serif;
}
@media screen and (min-width: 541px) and (max-width: 1024px) {
  body main .intro .sentence {
    width: 45%;
    padding-top: 0;
  }
}
@media screen and (max-width: 540px) {
  body main .intro .sentence {
    width: 80%;
    height: 80%;
    padding-top: 0;
    margin: 0 auto;
  }
}
body main .intro .sentence .scroll_from_left {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-60px);
  transition: opacity 1s, visibility 1s, transform 1s;
}
body main .intro .sentence .scroll_from_left.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
body main .intro .sentence .scroll_from_left h1 {
  font-family: "Jun 501";
  font-size: 50px;
  color: #b64b30;
  text-decoration: underline;
}
@media screen and (min-width: 541px) and (max-width: 1024px) {
  body main .intro .sentence .scroll_from_left h1 {
    font-size: 30px;
  }
}
@media screen and (max-width: 540px) {
  body main .intro .sentence .scroll_from_left h1 {
    font-size: 25px;
  }
}
body main .intro .sentence .scroll {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
}
body main .intro .sentence .scroll.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
body main .intro .sentence .scroll p {
  font-size: 20px;
  color: #b64b30;
  font-weight: bold;
  padding-top: 20px;
}
@media screen and (min-width: 541px) and (max-width: 1024px) {
  body main .intro .sentence .scroll p {
    font-size: 17px;
  }
}
@media screen and (max-width: 540px) {
  body main .intro .sentence .scroll p {
    font-size: 13px;
  }
}
body main .intro .sentence .scroll .contact {
  padding-top: 30px;
}
body main .intro .sentence .scroll .contact button {
  width: 250px;
  height: 70px;
  font-size: 19px;
  font-weight: bold;
  font-family: "Jun 501";
  color: #FFFFFF;
  background-color: #b64b30;
  border-radius: 10px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}
@media screen and (min-width: 541px) and (max-width: 1024px) {
  body main .intro .sentence .scroll .contact button {
    width: 200px;
    height: 50px;
  }
}
@media screen and (max-width: 540px) {
  body main .intro .sentence .scroll .contact button {
    width: 150px;
    height: 40px;
    font-size: 15px;
  }
}
body main .facility {
  margin-top: 150px;
}
@media screen and (min-width: 541px) and (max-width: 1024px) {
  body main .facility {
    margin-top: 100px;
  }
}
@media screen and (max-width: 540px) {
  body main .facility {
    margin-top: 70px;
  }
}
body main .facility .scroll_from_left {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-60px);
  transition: opacity 1s, visibility 1s, transform 1s;
}
body main .facility .scroll_from_left.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
body main .facility .scroll_from_left h1 {
  font-family: "Jun 501";
  font-size: 50px;
  color: #b64b30;
  text-decoration: underline;
  margin-left: 100px;
}
@media screen and (min-width: 541px) and (max-width: 1024px) {
  body main .facility .scroll_from_left h1 {
    font-size: 30px;
  }
}
@media screen and (max-width: 540px) {
  body main .facility .scroll_from_left h1 {
    font-size: 25px;
    margin-left: 50px;
  }
}
body main .facility .contents {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  -moz-column-gap: 54px;
       column-gap: 54px;
  row-gap: 83px;
  justify-items: center;
  align-items: center;
  padding-top: 50px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 541px) and (max-width: 1024px) {
  body main .facility .contents {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
@media screen and (max-width: 540px) {
  body main .facility .contents {
    row-gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
body main .facility .contents .scroll {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
}
body main .facility .contents .scroll.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
body main .facility .contents .scroll .content img {
  width: 60%;
}
@media screen and (max-width: 540px) {
  body main .facility .contents .scroll .content img {
    width: 50%;
  }
}
body main .facility .contents .scroll .content .taitle {
  font-family: "Jun 501";
  font-size: 20px;
  color: #b64b30;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 540px) {
  body main .facility .contents .scroll .content .taitle {
    font-size: 15px;
  }
}
body main .sarvice {
  margin-top: 150px;
  margin-bottom: 100px;
}
@media screen and (min-width: 541px) and (max-width: 1024px) {
  body main .sarvice {
    margin-top: 100px;
  }
}
@media screen and (max-width: 540px) {
  body main .sarvice {
    margin-top: 70px;
  }
}
body main .sarvice .scroll_from_left {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-60px);
  transition: opacity 1s, visibility 1s, transform 1s;
}
body main .sarvice .scroll_from_left.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
body main .sarvice .scroll_from_left h1 {
  font-family: "Jun 501";
  font-size: 50px;
  color: #b64b30;
  text-decoration: underline;
  margin-left: 100px;
}
@media screen and (min-width: 541px) and (max-width: 1024px) {
  body main .sarvice .scroll_from_left h1 {
    font-size: 30px;
  }
}
@media screen and (max-width: 540px) {
  body main .sarvice .scroll_from_left h1 {
    font-size: 25px;
    margin-left: 50px;
  }
}
body main .sarvice .contents {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 83px;
  justify-items: center;
  align-items: start;
  padding-top: 50px;
  margin: 0 100px;
  text-align: center;
}
@media screen and (max-width: 540px) {
  body main .sarvice .contents {
    margin: 0 auto;
  }
}
body main .sarvice .contents .scroll {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
}
body main .sarvice .contents .scroll.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
body main .sarvice .contents .scroll .content .number {
  width: 50px;
  height: 50px;
  padding-top: 13px;
  font-family: "Jun 501";
  color: #FFFFFF;
  font-weight: bold;
  background-color: #b64b30;
  border-radius: 50%;
  margin: 0 auto;
}
body main .sarvice .contents .scroll .content .taitle {
  font-family: "Jun 501";
  font-size: 20px;
  color: #b64b30;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
}
body main .sarvice .contents .scroll .content img {
  width: 100px;
}
body footer {
  background-color: #b64b30;
  padding-bottom: 50px;
}
body footer .contents {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 83px;
  justify-items: center;
  align-items: start;
  padding-top: 50px;
  margin: 0 100px;
  text-align: center;
}
@media screen and (min-width: 541px) and (max-width: 1024px) {
  body footer .contents {
    row-gap: 40px;
  }
}
@media screen and (max-width: 540px) {
  body footer .contents {
    width: 300px;
    margin: 0 auto;
    justify-items: baseline;
    row-gap: 30px;
  }
}
body footer .contents .content .name {
  font-family: "Jun 501";
  font-size: 20px;
  color: #FFFFFF;
  font-weight: bold;
  text-align: left;
}
@media screen and (max-width: 540px) {
  body footer .contents .content .name {
    font-size: 15px;
  }
}
body footer .contents .content .explanation {
  font-family: "Jun 201", "Work Sans", Arial, sans-serif;
  font-size: 20px;
  font-weight: lighter;
  color: #FFFFFF;
  text-align: left;
  margin-top: 10px;
}
@media screen and (max-width: 540px) {
  body footer .contents .content .explanation {
    font-size: 15px;
  }
}
body footer .contents .content .explanation a {
  font-family: "Jun 201", "Work Sans", Arial, sans-serif;
  text-decoration: none;
  color: #FFFFFF;
}
body footer .contact {
  padding-top: 30px;
  margin-left: 100px;
}
@media screen and (max-width: 540px) {
  body footer .contact {
    margin-left: 50px;
  }
}
body footer .contact button {
  width: 250px;
  height: 70px;
  font-size: 19px;
  font-family: "Jun 501";
  font-weight: bold;
  color: #b64b30;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}
@media screen and (min-width: 541px) and (max-width: 1024px) {
  body footer .contact button {
    width: 200px;
    height: 50px;
  }
}
@media screen and (max-width: 540px) {
  body footer .contact button {
    width: 150px;
    height: 40px;
    font-size: 15px;
  }
}
/*# sourceMappingURL=FrontPage_style.css.map */