.section {
  padding-block: 60px;
}

.inner {
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 768px) {
  .inner {
    padding-left: 50px;
    padding-right: 50px;
    margin: 0 auto;
    max-width: 1000px;
  }
}

.heading {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.heading__title {
  font-size: 40px;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .heading__title {
    font-size: 50px;
  }
}
.heading__title.heading__title-l {
  color: #fff;
}

.heading__subtitle {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .heading__subtitle {
    font-size: 14px;
    margin-top: 10px;
  }
}
.heading__subtitle.heading__subtitle-l {
  color: #fff;
}

@media screen and (min-width: 768px) {
  .lead-text {
    font-size: 18px;
    line-height: 2;
  }
}

.header__menu-button {
  display: block;
  position: fixed;
  width: 30px;
  height: 21px;
  top: 18px;
  right: 15px;
  z-index: 99;
}
.header__menu-button.is-checked .header__menu-bar:nth-of-type(1) {
  top: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header__menu-button.is-checked .header__menu-bar:nth-of-type(2) {
  display: none;
}
.header__menu-button.is-checked .header__menu-bar:nth-of-type(3) {
  top: 10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .header__menu-button {
    display: none;
  }
}

.header__menu-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 3px;
  border-radius: 6px;
  background: #707070;
  -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;
}
.header__menu-bar:nth-of-type(2) {
  top: 9px;
}
.header__menu-bar:nth-of-type(3) {
  top: 18px;
}

.drawer-contents {
  position: fixed;
  background: #BA9DC3;
  width: 310px;
  height: 100vh;
  top: 0;
  right: 0;
  padding-top: 90px;
  z-index: 50;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: opacity 0.3s linear, -webkit-transform 0.3s linear;
  transition: opacity 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, opacity 0.3s linear;
  transition: transform 0.3s linear, opacity 0.3s linear, -webkit-transform 0.3s linear;
  opacity: 0;
  visibility: hidden;
}
.drawer-contents.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 768px) {
  .drawer-contents {
    display: none;
  }
}

.drawer-nav__inner {
  text-align: center;
  padding-left: 50px;
  padding-right: 50px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .drawer-nav__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.drawer-nav__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.drawer-nav__logo img {
  background: #fff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.drawer-nav__logo-text {
  -moz-text-align-last: left;
       text-align-last: left;
}

.drawer-nav__ul {
  margin-top: 36px;
  width: 200px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 20px;
}

.drawer-nav__img {
  width: 40px;
  height: 40px;
}

.drawer-nav__text {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .drawer-nav__text {
    font-size: 16px;
  }
}

.drawer-nav__sns {
  margin-top: 36px;
}

@media screen and (min-width: 768px) {
  .drawer-nav__sns-text {
    font-size: 18px;
    margin-bottom: 8px;
  }
}

.drawer-nav__sns-icon img {
  width: 42px;
  border: 3px solid #fff;
  border-radius: 30%;
  padding: 3px;
}

.header {
  display: none;
  padding-top: 18px;
  padding-bottom: 18px;
  background: #BA9DC3;
}
@media screen and (min-width: 768px) {
  .header {
    display: block;
    padding-top: 100px;
    padding-block: 50px;
  }
}

.header__inner {
  position: sticky;
  top: 50px;
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.header__logo img {
  background: #fff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.header__logo-text {
  text-align: left;
  font-size: 14px;
}

.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .header-nav__ul {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.header-nav__li {
  max-width: 96px;
}

.header-nav__p {
  font-size: 14px;
  -webkit-transition: background 0.3s, color 0.3s, opacity 0.3s;
  transition: background 0.3s, color 0.3s, opacity 0.3s;
}
.header-nav__p:hover {
  background: #fff;
  color: #BA9DC3;
}

.header-nav__sns-text {
  font-size: 14px;
}

.fv {
  position: relative;
}

.fv__contents {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 320px;
  height: 150px;
  background: url(../img/sp/fv_bg-wh.png) center center no-repeat;
  background-size: contain;
  padding: 32px;
}
@media screen and (min-width: 768px) {
  .fv__contents {
    background: url(../img/fv_bg-wh.png) center center no-repeat;
    width: 627px;
    height: 174px;
    padding-block: 16px;
  }
}

.fv__heading {
  text-align: center;
  line-height: 1.4;
}

.fv__title {
  display: block;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .fv__title {
    font-size: 50px;
  }
}

.fv__text {
  display: block;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .fv__text {
    font-size: 18px;
  }
}

.message {
  background: #FBF7FF;
}

.message__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .message__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.message__text {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .message__text {
    margin-top: 0;
    font-size: 18px;
    line-height: 2;
  }
}

.message__img {
  text-align: center;
}
.message__img img {
  width: 300px;
  border-radius: 25px;
  -webkit-box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 768px) {
  .message__img img {
    width: 500px;
  }
}

.service__contents {
  margin-top: 30px;
}

.service__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .service__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.service__item {
  width: 250px;
  border: 5px solid #BA9DC3;
  border-radius: 30px;
  background: #fff;
  padding: 15px 10px;
}
@media screen and (min-width: 768px) {
  .service__item {
    padding: 18px;
  }
}

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

.service__item-name {
  margin-top: 10px;
  text-align: center;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .service__item-name {
    margin-top: 16px;
    font-size: 18px;
  }
}

.service__item-text {
  margin-top: 5px;
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .service__item-text {
    margin-top: 7px;
    font-size: 16px;
    height: 136px;
  }
}

.flow__contents {
  margin-top: 30px;
}

.flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .flow__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.flow__item {
  position: relative;
  width: 250px;
  border: 5px solid #BA9DC3;
  border-radius: 30px;
  background: #fff;
  padding: 15px 10px;
}
@media screen and (min-width: 768px) {
  .flow__item {
    width: 210px;
  }
}

.flow__item-num {
  position: absolute;
  width: 50px;
  height: 50px;
  background: #BA9DC3;
  border-radius: 50%;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  top: -25px;
  left: -25px;
}

.flow__item-img {
  text-align: center;
}
.flow__item-img img {
  width: 70px;
}

.flow__item-name {
  margin-top: 10px;
  text-align: center;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .flow__item-name {
    font-size: 18px;
  }
}

.flow__item-text {
  margin-top: 5px;
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .flow__item-text {
    font-size: 15px;
    height: 125px;
  }
}

.gallery {
  background: #FBF7FF;
}

.gallery__contents {
  margin-top: 30px;
}

.gallery__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .gallery__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.gallery__link img {
  width: 300px;
  -webkit-box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.3);
}

.gallery__item-text {
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
}

.about {
  background: #FBF7FF;
}

.about__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .about__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 40px;
  }
}

@media screen and (min-width: 768px) {
  .about__img {
    width: 40%;
  }
}
.about__img img {
  width: 270px;
  border-radius: 30px;
}
@media screen and (min-width: 768px) {
  .about__img img {
    width: 350px;
  }
}

.about__desc {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .about__desc {
    margin-top: 0;
    width: 60%;
  }
}

.about__name {
  text-align: center;
  font-size: 32px;
}
@media screen and (min-width: 768px) {
  .about__name {
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

.about__text {
  margin-top: 16px;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .about__text {
    font-size: 18px;
  }
}
.about__text + .about__text {
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.contact__item {
  width: 100%;
  text-align: center;
  padding: 50px 15px 60px;
}
@media screen and (min-width: 768px) {
  .contact__item {
    padding-block: 50px;
  }
}

.item-c {
  background: #C1AFC7;
}

.item-s {
  background: #BA9DC3;
}

.button {
  border: 2px solid #fff;
  padding: 8px 12px;
  border-radius: 6px;
}

.button__link-icon {
  width: 20px;
}

.button__link-text {
  color: #fff;
  margin-left: 10px;
}

.button__link-sns img {
  width: 40px;
  border: 2px solid #fff;
  border-radius: 8px;
  padding: 3px;
}

.footer {
  padding: 12px 15px;
  text-align: center;
}

.footer__copy {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .footer__copy {
    font-size: 14px;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #707070;
  line-height: 1.7;
}

@media not screen and (min-width: 768px) {
  .hidden-sp {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .hidden-pc {
    display: none;
  }
}

.wrapper {
  position: relative;
}
@media screen and (min-width: 768px) {
  .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .wrapper-left {
    -ms-flex-preferred-size: 20.8%;
        flex-basis: 20.8%;
  }
}

@media screen and (min-width: 768px) {
  .wrapper-right {
    -ms-flex-preferred-size: 79.2%;
        flex-basis: 79.2%;
  }
}