body {
  font-size: 16px;
  line-height: 1.7;
  font-family: "Noto Sans JP", sans-serif;
  color: #352E2E;
  background-color: #fff;
}

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

ol, ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  color: inherit;
}

.clear::after {
  content: "";
  clear: both;
  display: block;
}

.inner {
  margin: 0 auto;
  padding: 0 30px;
  max-width: 1200px;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 15px;
    max-width: 1170px;
  }
}

.main-title {
  font-size: 35px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .main-title {
    margin-bottom: 40px;
  }
}
.main-title span {
  position: relative;
  padding: 0 25px;
}
.main-title span::before {
  content: "";
  width: 3px;
  height: 25px;
  background: #ef7777;
  position: absolute;
  top: 50%;
  left: 0px;
  -webkit-transform: translateY(-50%) rotate(-10deg);
          transform: translateY(-50%) rotate(-10deg);
}
.main-title span::after {
  content: "";
  width: 3px;
  height: 25px;
  background: #ef7777;
  position: absolute;
  top: 50%;
  right: 0px;
  -webkit-transform: translateY(-50%) rotate(10deg);
          transform: translateY(-50%) rotate(10deg);
}
@media screen and (max-width: 767px) {
  .main-title {
    font-size: 28px;
  }
}

.header {
  height: 90px;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 15px 15px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .header {
    height: 70px;
  }
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .header-inner {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .header-inner {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.header-logo img {
  display: block;
  width: 200px;
}
@media screen and (max-width: 767px) {
  .header-logo img {
    width: 150px;
  }
}

.header-nav {
  line-height: 90px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .header-nav {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .header-nav {
    display: none;
  }
}

.header-nav-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.header-nav-link {
  padding: 12px 0;
  position: relative;
  font-weight: 500;
}
.header-nav-link::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 0;
  border-bottom: 2px solid #ef7777;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.header-nav-link:hover {
  cursor: pointer;
}
.header-nav-link:hover::after {
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .header-open {
    display: none;
  }
}

.drawer-icon {
  width: 36px;
  height: 21px;
  background-color: inherit;
  position: relative;
}
.drawer-icon.is-checked .drawer-icon-bar:nth-of-type(1) {
  top: 10px;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
.drawer-icon.is-checked .drawer-icon-bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon-bar:nth-of-type(3) {
  top: 10px;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}

.drawer-icon-bar {
  width: 36px;
  height: 3px;
  background-color: #352E2E;
  border-radius: 5px;
  position: absolute;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-icon-bar:nth-of-type(1) {
  top: 0;
  left: 0;
}
.drawer-icon-bar:nth-of-type(2) {
  top: 9px;
  left: 0;
}
.drawer-icon-bar:nth-of-type(3) {
  top: 18px;
  left: 0;
}

.drawer-content {
  background-color: #f0f8ff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 150px 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
  z-index: 50;
}
@media screen and (min-width: 1024px) {
  .drawer-content {
    display: none;
  }
}
.drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-content-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}

.drawer-content-link {
  font-size: 3.5vw;
  padding: 20px 0;
  border-bottom: 1px solid #e6e6e6;
}

.top {
  background-color: #f0f8ff;
  padding: 130px 0 40px;
}
@media screen and (max-width: 767px) {
  .top {
    padding: 70px 0 50px;
  }
}

.top-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  padding: 0 30px;
  max-width: 1370px;
}
@media screen and (max-width: 767px) {
  .top-inner {
    display: block;
  }
}

.top-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .top-text {
    width: 60%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .top-text {
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .top-text {
    text-align: center;
  }
}

.top-text-main {
  font-size: 3.5vw;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .top-text-main {
    font-size: 6vw;
  }
}

.top-subText-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .top-subText-body {
    gap: 3px;
  }
}

.top-subText-icon {
  vertical-align: middle;
}
.top-subText-icon img {
  width: 25px;
}

.top-subText {
  font-size: 1.5vw;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .top-subText {
    font-size: 3vw;
  }
}

@media screen and (min-width: 1024px) {
  .top-image {
    width: 40%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .top-image {
    width: 40%;
  }
}
@media screen and (max-width: 767px) {
  .top-image {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .top-image img {
    width: 350px;
  }
}

.service {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .service {
    padding: 60px 0;
  }
}

.service-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .service-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.service-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 30px;
  border-radius: 20px;
  -webkit-box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.16);
          box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
  .service-item {
    padding: 20px;
  }
}

.service-item-title {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}

.service-item-image {
  text-align: center;
  margin-top: 20px;
}
.service-item-image img {
  width: 250px;
}
@media screen and (max-width: 767px) {
  .service-item-image img {
    width: 200px;
  }
}

.service-item-text {
  margin-top: 20px;
}

.works {
  padding: 100px 0;
  background-color: #f0f8ff;
}
@media screen and (max-width: 767px) {
  .works {
    padding: 60px 0;
  }
}

.works-text {
  font-size: 18px;
  text-align: center;
  margin-bottom: 60px;
}
.works-text p span {
  color: #ef7777;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #ef7777;
}
@media screen and (max-width: 767px) {
  .works-text {
    margin-bottom: 30px;
  }
}

.works-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px 30px;
}
@media screen and (max-width: 767px) {
  .works-items {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

.works-item {
  max-width: 450px;
  margin: 0 auto;
}

.works-item-image {
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
}
.works-item-image > img {
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.works-item-image img {
  width: 450px;
  height: 242px;
}

.works-item-link {
  display: block;
  -webkit-box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.16);
          box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.16);
  border-radius: 10px;
}
@media screen and (min-width: 1024px) {
  .works-item-link:hover .works-item-image > img {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
}

.works-detail {
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .works-detail {
    margin-top: 10px;
    padding-bottom: 20px;
    border-bottom: 3px solid #fff;
  }
}

.works-detail-title {
  font-size: 20px;
  font-style: italic;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.works-detail-time {
  margin-top: 10px;
}

.price {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .price {
    padding: 60px 0;
  }
}

.price-text {
  font-size: 18px;
  letter-spacing: 0.1em;
  text-align: center;
}
.price-text strong {
  color: #ef7777;
}

.price-table {
  margin: 50px auto 0;
  border-collapse: collapse;
  max-width: 850px;
  width: 100%;
  -webkit-box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.16);
          box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.16);
}
.price-table thead tr {
  font-weight: bold;
}
.price-table thead tr:nth-of-type(1) {
  background-color: #678eb4;
  color: #fff;
  font-size: 18px;
}
.price-table thead tr:nth-of-type(2) {
  background-color: #F2F2F2;
}
.price-table tbody tr {
  border-top: 1.5px solid #e7e7e7;
}
.price-table tbody tr td {
  text-align: center;
}
.price-table td, .price-table th {
  height: 80px;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .price-table td, .price-table th {
    height: 60px;
  }
}

.about {
  padding: 100px 0;
  background-color: #f0f8ff;
}
@media screen and (max-width: 767px) {
  .about {
    padding: 60px 0;
  }
}

.about-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .about-content {
    display: block;
  }
}

@media screen and (min-width: 1024px) {
  .about-content-image {
    width: 40%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .about-content-image {
    width: 40%;
  }
}
@media screen and (max-width: 767px) {
  .about-content-image {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .about-content-image img {
    width: 400px;
  }
}

@media screen and (min-width: 1024px) {
  .about-content-text {
    width: 60%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .about-content-text {
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .about-content-text {
    margin-top: 15px;
  }
}

.contact {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 60px 0;
  }
}

.contact-text {
  font-size: 18px;
  letter-spacing: 0.1em;
  text-align: center;
  text-decoration: underline;
  text-decoration-color: #ef7777;
}

.contact-form-box {
  max-width: 1200px;
  margin: 50px auto 0;
  -webkit-box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.16);
          box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.16);
  padding: 50px 30px;
  background-color: #f0f8ff;
  border-radius: 20px;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.contact-form-label {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-form-label label {
  font-size: 18px;
}

.label-required {
  font-size: 14px;
  font-weight: bold;
  padding: 3px 10px;
  background-color: #ef7777;
  color: #fff;
  border-radius: 10px;
}

.contact-form-text {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font: inherit;
  color: inherit;
  vertical-align: top;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #fff;
  background-color: #fff;
  padding: 12px 13px 11px;
}

.contact-form-textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font: inherit;
  color: inherit;
  vertical-align: top;
  border-radius: 5px;
  border: 1px solid #fff;
  background-color: #fff;
  width: 100%;
  min-height: 180px;
  padding: 13px;
  resize: vertical;
}

.contact-form-submit {
  text-align: center;
  margin-top: 30px;
}

.contact-form-button {
  font-size: 18px;
  font-weight: bold;
  padding: 20px 60px;
  color: #fff;
  background-color: #949593;
  border-radius: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.contact-form-button:hover {
  cursor: pointer;
  background-color: #678eb4;
}

.contact-message {
  display: none;
  color: #678eb4;
  font-weight: bold;
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  border: 4px solid #678eb4;
}

.footer {
  background-color: #678eb4;
  color: #fff;
  padding: 5px 0;
}

.footer-copyright {
  text-align: center;
}

.page-top {
  position: fixed;
  right: 25px;
  bottom: 25px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media screen and (max-width: 767px) {
  .page-top {
    right: 10px;
    bottom: 23px;
  }
}
.page-top.is-show {
  opacity: 1;
  visibility: visible;
}
.page-top img {
  width: 70px;
}
@media screen and (max-width: 767px) {
  .page-top img {
    width: 50px;
  }
}