@charset "UTF-8";
/*===================================================
# body
===================================================*/
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #444444;
}

.inner {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1280px;
  }
}
@media screen and (max-width: 767px) {
  .inner {
    max-width: 375px;
  }
}

html,
body {
  overflow-x: hidden;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}
/* 共通部分
---------------------------------------------------*/
.section-title {
  text-align: center;
  font-size: 60px;
  margin-top: 70px;
  margin-bottom: 100px;
}

/*===================================================
# index
===================================================*/
.main-visual {
  background: #FFEEFF;
  height: 300px;
}

.main-visual__text {
  text-align: center;
  padding-top: 100px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: 60px;
  color: #555555;
}

/*===================================================
# profile
===================================================*/
.profile {
  margin-bottom: 100px;
}

.profile-box {
  display: flex;
}
@media screen and (min-width: 768px) {
  .profile-box {
    justify-content: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .profile-box {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .profile-box {
    flex-direction: column;
    padding: 0 10px;
  }
}

.profile-img {
  text-align: center;
}
.profile-img img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
}

.profile-card {
  max-width: 500px;
}
@media screen and (min-width: 768px) {
  .profile-card {
    margin-left: 100px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .profile-card {
    margin: 0 auto;
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .profile-card {
    margin-top: 30px;
  }
}

.profile-card__name {
  font-size: 24px;
}

.profile-card__text {
  margin-top: 10px;
}

/*===================================================
# service
===================================================*/
.service {
  background: #FFFFDD;
  padding-top: 10px;
  padding-bottom: 100px;
}

.service-cards {
  display: grid;
  max-width: 900px;
  padding-right: 20px;
  padding-left: 20px;
  margin: 0 auto;
  gap: 20px 20px;
}
@media screen and (min-width: 768px) {
  .service-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .service-cards {
    grid-template-columns: repeat(2, 1fr);
    max-width: 714px;
  }
}
@media screen and (max-width: 767px) {
  .service-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.service-card {
  padding: 24px 20px;
  border: 2px solid #444444;
}

.service-card__img {
  text-align: center;
}
.service-card__img img {
  width: 70px;
  height: 70px;
}

.service-card__title {
  text-align: center;
  margin-top: 15px;
}

.service-card__title-sub {
  text-align: center;
}

.service-card__content {
  margin-top: 15px;
}

/*===================================================
# work
===================================================*/
.work-cards {
  display: grid;
  max-width: 900px;
  padding-right: 20px;
  padding-left: 20px;
  margin: 0 auto;
  gap: 20px 20px;
}
@media screen and (min-width: 768px) {
  .work-cards {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .work-cards {
    grid-template-columns: repeat(2, 1fr);
    max-width: 714px;
  }
}
@media screen and (max-width: 767px) {
  .work-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.work-card {
  padding: 24px 20px;
  border: 1px solid #444444;
  color: #444444;
}

.work-card__img {
  text-align: center;
}
.work-card__img img {
  width: 250px;
}

.work-card__text {
  margin-top: 30px;
  text-align: center;
}

/* movie
---------------------------------------------------*/
.work-cards__movie {
  margin-top: 20px;
  padding-right: 20px;
  padding-left: 20px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .work-cards__movie {
    flex-direction: column;
  }
}

.work-cards__movie-box {
  padding-bottom: 20px;
  border: 1px solid #444444;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .work-cards__movie-box {
    max-width: 345px;
  }
}
@media screen and (min-width: 768px) {
  .work-cards__movie-box:nth-child(n+2) {
    margin-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .work-cards__movie-box:nth-child(n+2) {
    margin-top: 20px;
  }
}

.movie__iframe {
  text-align: center;
}
.movie__iframe iframe {
  height: auto;
  aspect-ratio: 345/194;
}
@media screen and (min-width: 768px) {
  .movie__iframe iframe {
    width: 345px;
  }
}
@media screen and (max-width: 767px) {
  .movie__iframe iframe {
    width: 100%;
  }
}

/*===================================================
# contact
===================================================*/
.contact {
  margin-top: 100px;
  background: #eee;
  padding-bottom: 100px;
}

.contact-title {
  padding-top: 100px;
}

.contact-message {
  text-align: center;
}

.contact-items {
  margin-top: 30px;
  display: flex;
}
@media screen and (min-width: 768px) {
  .contact-items {
    justify-content: center;
    gap: 100px;
  }
}
@media screen and (max-width: 767px) {
  .contact-items {
    flex-direction: column;
  }
}

.contact-item {
  margin-top: 30px;
}

.contact-item__img {
  text-align: center;
}
.contact-item__img img {
  width: 100px;
}

.contact-item__name1 {
  margin-top: 13px;
  color: #444444;
  text-align: center;
}

.contact-item__name2 {
  margin-top: 10px;
  color: #444444;
  text-align: center;
}

/*===================================================
# footer
===================================================*/
.footer {
  background: #555;
  color: #fff;
  padding: 12px 0;
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
}

.footer-title {
  text-align: center;
}/*# sourceMappingURL=style.css.map */