@charset "UTF-8";
html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 70px;
  }
}

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

@media screen and (min-width: 600px) {
  .hidden-sm {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .hidden-md {
    display: none;
  }
}
@media screen and (min-width: 900px) {
  .hidden-lg {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .hidden-xl {
    display: none;
  }
}
.inner {
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: 40px;
  }
}

.heading {
  font-family: "Poiret One", sans-serif;
  font-size: 30px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 100%;
}
.heading::after {
  content: "";
  width: 60px;
  height: 1px;
  background: #f998bf;
}
@media screen and (min-width: 768px) {
  .heading {
    font-size: 40px;
    gap: 24px;
  }
}

.button {
  display: inline-block;
  min-width: 158px;
  padding: 11px;
  text-align: center;
  border: 1px solid #f998bf;
  background: #fff;
  font-family: "Poiret One", sans-serif;
  color: #f998bf;
  font-size: 16px;
  letter-spacing: 0.02px;
  -webkit-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
}
.button:hover {
  color: #fff;
  background-color: #f998bf;
}

.main {
  display: grid;
  gap: 96px;
}
@media screen and (min-width: 768px) {
  .main {
    gap: 160px;
  }
}

.section__content {
  margin-top: 46px;
}
@media screen and (min-width: 768px) {
  .section__content {
    margin-top: 120px;
  }
}

.header {
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  font-family: "Poiret One", sans-serif;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .header {
    height: 70px;
  }
}

.header__inner {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__logo a img {
  width: 23px;
  display: block;
}
@media screen and (min-width: 768px) {
  .header__logo a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .header__logo a:hover {
    opacity: 0.6;
  }
}

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

.header__nav {
  background: #df93a6;
  opacity: 0.9;
  width: 270px;
  height: calc(100% - 60px);
  position: fixed;
  right: 0;
  top: 60px;
  padding: 32px 15px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  font-family: "Poiret One", sans-serif;
}
.header__nav.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (min-width: 768px) {
  .header__nav {
    background: transparent;
    width: auto;
    height: auto;
    position: static;
    padding: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.header__lists {
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .header__lists {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 46px;
  }
}

.header__link {
  display: inline-block;
  padding-block: 8px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .header__link {
    color: #3d3e42;
    font-size: 16px;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .header__link:hover {
    color: #df93a6;
  }
}

.drawer-icon {
  width: 30px;
  height: 18px;
  position: relative;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(1), .drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
  top: 9px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer-icon__bar {
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  background: #f998bf;
  -webkit-transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, transform 0.4s;
  transition: top 0.4s, transform 0.4s, -webkit-transform 0.4s;
}
.drawer-icon__bar:nth-child(1) {
  top: 0;
}
.drawer-icon__bar:nth-child(2) {
  top: 8px;
}
.drawer-icon__bar:nth-child(3) {
  top: 16px;
}

.fv__inner {
  position: relative;
}

.fv__image {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .fv__image {
    max-width: 1020px;
    margin-left: auto;
    display: block;
  }
}

.fv__message {
  margin-top: 30px;
}
@media screen and (min-width: 1200px) {
  .fv__message {
    position: absolute;
    inset-block: 0;
    margin-block: auto;
    left: 0;
    padding: 40px 20px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    background: #fff;
  }
}

.fv__title {
  font-size: 24px;
  font-weight: 200;
  letter-spacing: 0.1em;
}
.fv__title br {
  display: none;
}
@media screen and (min-width: 768px) {
  .fv__title br {
    display: inline;
  }
}

.fv__text {
  margin-top: 30px;
  font-size: 14px;
  font-weight: 200;
  line-height: 2;
}

.sns__text {
  color: #f998bf;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .works__inner {
    max-width: 1020px;
    padding-inline: 40px;
  }
}

.works-label {
  display: inline-block;
  padding: 6px 16px;
  line-height: 1;
  font-size: 12px;
  border-radius: 100vh;
  font-weight: bold;
  color: #fff;
  background-color: #f998bf;
}

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

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

.works__image {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .works__image {
    width: 41.6666666667%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.works__image img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .works__message {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.works__title {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .works__title {
    font-size: 18px;
  }
}
@media screen and (min-width: 900px) {
  .works__title {
    font-size: 20px;
  }
}

.works__text {
  margin-top: 16px;
}

.works__button {
  margin-top: 42px;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .works__button {
    margin-top: 43px;
  }
}

.about {
  background: url(../img/sp/about-bg.png) no-repeat top center/cover;
  position: relative;
  padding-block: 180px 50px;
}
@media screen and (min-width: 768px) {
  .about {
    background-image: url(../img/about-bg.png);
    padding-block: 123px 122px;
  }
}
.about::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(239, 165, 198, 0.71);
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .about__inner {
    max-width: 1020px;
    padding-inline: 40px;
  }
}

.about__content {
  color: #fff;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .about__content {
    width: 50%;
  }
}

.about__title {
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .about__title {
    font-size: 22px;
  }
}

.about__text {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .about__text {
    margin-top: 23px;
    font-size: 16px;
  }
}

.contact {
  padding-block: 56px;
}

@media screen and (min-width: 768px) {
  .contact__inner {
    max-width: 590px;
    padding-inline: 40px;
  }
}

.contact__text {
  margin-top: 80px;
  font-size: 14px;
  text-align: center;
}
.contact__text .is-required {
  color: #e7728e;
}

.contact__items {
  margin-top: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .contact__items {
    margin-top: 19px;
  }
}

.mail__button {
  margin-top: 30px;
  text-align: center;
  letter-spacing: 0.12em;
}

.contact__footer {
  margin-top: 28px;
}
@media screen and (min-width: 768px) {
  .contact__footer {
    margin-top: 32px;
  }
}

.contact__privacy {
  text-align: center;
}

.contact__submit {
  margin-top: 24px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__submit {
    margin-top: 44px;
  }
}

.contact-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
}
@media screen and (min-width: 768px) {
  .contact-control {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
  }
}

@media screen and (min-width: 768px) {
  .contact-control__head {
    width: 180px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

@media screen and (min-width: 768px) {
  .contact-control__input {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.contact-control__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer {
  padding-block: 40px 7px;
  background: #ffe9f6;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-bottom: 14px;
  }
}

.footer__logo a img {
  width: 23px;
  display: block;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .footer__logo a img {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .footer__logo a img:hover {
    opacity: 0.6;
  }
}

.footer__menu-items {
  margin-top: 22px;
  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: 12px;
}
@media screen and (min-width: 768px) {
  .footer__menu-items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 32px;
  }
}

.footer__menu-item {
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .footer__menu-link {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .footer__menu-link:hover {
    opacity: 0.6;
  }
}

.sns-items {
  margin-top: 12px;
  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: 40px;
}
@media screen and (min-width: 768px) {
  .sns-items {
    margin-top: 16px;
  }
}

@media screen and (min-width: 768px) {
  .sns-link {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .sns-link:hover {
    opacity: 0.6;
  }
}

.footer__copyright {
  margin-top: 24px;
  font-size: 12px;
  text-align: center;
  color: #f998bf;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 28px;
  }
}
.footer__copyright small {
  font-size: inherit;
}

/* トップへ戻るボタン */
.button-top {
  position: fixed;
  background-color: #f998bf;
  opacity: 0.8;
  color: #fff;
  border-radius: 50%;
  border: none;
  font-size: 10px;
  font-weight: 600;
  width: 40px;
  height: 40px;
  bottom: 15px;
  right: 20px;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .button-top {
    bottom: 25px;
    right: 40px;
  }
}

.button-top:hover {
  opacity: 0.6;
}

.single-article {
  margin-top: 60px;
  margin-bottom: 100px;
}

.single-title {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .single-title {
    font-size: 18px;
  }
}
@media screen and (min-width: 900px) {
  .single-title {
    font-size: 20px;
  }
}

.single-thumbnail {
  margin-top: 16px;
}

@media (min-width: 768px) {
  .single-thumbnail {
    margin-top: 24px;
  }
}
.single-thumbnail img {
  border-radius: 16px;
}

@media (min-width: 768px) {
  .single-thumbnail img {
    border-radius: 20px;
  }
}
.single-content {
  margin-top: 56px;
}

@media (min-width: 768px) {
  .single-content {
    margin-top: 64px;
  }
}
.single-content > * {
  margin-top: 30px;
}

.single-content h2 {
  margin-top: 60px;
  color: #f998bf;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.12em;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
}

@media (min-width: 768px) {
  .single-content h2 {
    font-size: 14px;
  }
}
.single-link {
  color: #f998bf;
  text-decoration: underline;
}