body {
  font-family: "Josefin Sans", sans-serif;
  color: #5f849c;
  width: 100vw;
}
body.is-fixed {
  overflow: hidden;
}

.button {
  display: flex;
  align-items: center;
  padding: 6px 10px 6px 10px;
  width: 160px;
  margin: 0 auto;
}
.button--border {
  border: 1px solid #faea57;
}
.button--border .button__text {
  color: #faea57;
}
.button__icon {
  width: 24px;
  display: flex;
  align-items: center;
}
.button__icon-path {
  fill: #faea57;
}
.button__text {
  margin-left: 10px;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: #faea57;
}

.header {
  background-color: #e37f9d;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.header__container {
  width: 100%;
  position: relative;
}
.header__logo {
  display: inline-block;
  padding: 14px 24px;
  font-size: 20px;
  color: #faea57;
}
.header__menu-button {
  border: none;
  position: absolute;
  top: 24px;
  right: 24px;
  width: 30px;
  height: 36px;
  overflow: hidden;
  color: transparent;
}
.header__menu-button.is-checked .button-drawer__line:nth-of-type(1) {
  top: 12px;
  transform: rotate(45deg);
}
.header__menu-button.is-checked .button-drawer__line:nth-of-type(2) {
  display: none;
}
.header__menu-button.is-checked .button-drawer__line:nth-of-type(3) {
  top: 12px;
  transform: rotate(-45deg);
}
.header .button-drawer__line {
  position: absolute;
  width: 30px;
  height: 4px;
  flex-shrink: 0;
  background: #faea57;
  transition: 0.3s ease;
  border-radius: 4px;
  left: 0;
}
.header .button-drawer__line:nth-of-type(1) {
  top: 0;
}
.header .button-drawer__line:nth-of-type(2) {
  top: 10px;
}
.header .button-drawer__line:nth-of-type(3) {
  top: 20px;
}
.header__contents {
  display: none;
  height: calc(100vh - 88px);
  border-top: 1px solid #faea57;
  padding-top: 60px;
}
.header__contents.is-checked {
  display: flex;
}
.header__nav-item + .header__nav-item {
  margin-top: 24px;
}

.drawer-contents {
  display: none;
  height: 70vh;
}

.fv {
  position: relative;
  margin-top: 68px;
}
.fv__img img {
  width: 100%;
}
.fv__contents {
  position: absolute;
  bottom: 10px;
  left: 16px;
  width: 80%;
  height: auto;
  background: url(../img/bg_fv.png) center center no-repeat;
  background-size: 100% auto;
  padding: 10px;
}
.fv__heading {
  color: #e37f9d;
  width: 100%;
  padding-top: 2%;
  padding-left: 6%;
}
.fv__heading-main {
  display: block;
  font-size: 24px;
  letter-spacing: 0.1em;
}
.fv__heading-sub {
  margin-top: 10px;
  display: block;
  font-size: 8px;
  font-weight: bold;
}

.section {
  padding: 48px 0;
}
.section__inner {
  padding: 0 32px;
}
.section__head {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}
.section__head--center {
  text-align: center;
}
.section__head-main {
  font-size: 40px;
  letter-spacing: 0.1em;
  color: #e37f9d;
}
.page-bottom > .page-bottom__item > .section__head > .section__head-main {
  color: #faea57;
}
.section__head-sub {
  font-size: 14px;
  color: #e37f9d;
}
.page-bottom > .page-bottom__item > .section__head > .section__head-sub {
  color: #faea57;
}
.section__lead-text {
  font-size: 16px;
  line-height: 1.6;
}
.section__behind-text {
  margin-top: 12px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
}
.section__contents {
  margin-top: 40px;
  margin-bottom: 20px;
}

.service__item + .service__item {
  margin-top: 40px;
}
.service__item-img {
  text-align: center;
  margin-inline: auto;
  margin-bottom: 14px;
  width: 86px;
  height: auto;
}
.service__item-name {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
.service__item-text {
  font-size: 14px;
  line-height: 1.6;
}

.works {
  background-color: #f0e1e4;
}
.works__item {
  text-align: center;
}
.works__item + .works__item {
  margin-top: 40px;
}
.works__item-img {
  margin-bottom: 12px;
  display: block;
  text-align: contain;
  transition: 1s ease-out;
}
.works__item-img img {
  box-shadow: 0 3px 10px 3px gray;
  border-radius: 20px;
  aspect-ratio: 240/130;
}
.works__item-img:hover {
  transform: scale(1.1);
  transition: transform 0.3s;
}
.works__item-name {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 6px;
  text-align: center;
}
.works__item-id {
  font-size: 16px;
  font-weight: bold;
  color: #e37f9d;
  margin-top: 8px;
}
.works__item-id-small {
  font-size: 12px;
  font-weight: bold;
  color: #e37f9d;
  margin-top: 8px;
}
.works__item-description {
  font-size: 12px;
}
.works__item-description-link {
  font-size: 13px;
  color: #e37f9d;
  text-decoration: underline;
  text-align: center;
  margin-top: 8px;
}
.works__item-description-link:hover {
  color: #5f849c;
}
.works__item-link {
  text-decoration: underline;
  font-size: 14px;
  display: block;
  text-align: center;
}
.works__item-link:hover {
  color: #5f849c;
}

.about__img {
  margin-bottom: 32px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.about__img img {
  box-shadow: 0 4px 15px 0 rgba(5, 163, 97, 0.3);
  border-radius: 30px;
}
.about__text {
  font-size: 16px;
  line-height: 1.6;
}
.about__text + .about__text {
  margin-top: 1em;
}

.flow {
  background-color: #f0e1e4;
}
.flow__list {
  margin-top: 64px;
}
.flow__item {
  position: relative;
  border: 1px solid #1396e8;
  padding: 46px 16px 24px;
}
.flow__item + .flow__item {
  margin-top: 46px;
}
.flow__item-num {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background-color: #e37f9d;
  color: #faea57;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow__item-img {
  text-align: center;
  margin-bottom: 24px;
}
.flow__item-name {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
.flow__item-text {
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.message__container {
  display: flex;
  flex-direction: column-reverse;
  gap: 40px;
}
.message__img {
  margin-bottom: 32px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.message__img img {
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.3);
  border-radius: 30px;
}
.message__text-contents {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.message__text-block {
  margin-bottom: 20px;
}
.message__text {
  font-size: 16px;
  line-height: 1.6;
}

.page-bottom {
  color: #faea57;
}
.page-bottom__item {
  padding: 40px;
}
.page-bottom__item--contact {
  background-color: #5f849c;
}

.footer {
  text-align: center;
  padding: 10px;
}
.footer__copy {
  font-size: 11px;
  font-family: "Noto Sans JP", sans-serif;
}

/*-------------------
// pc
--------------------*/
@media screen and (min-width: 768px) {
  .wrapper {
    display: flex;
  }
  .main {
    flex-basis: 78%;
  }
  .header {
    position: relative;
    flex-basis: 22%;
    padding: 50px 20px;
  }
  .header__container {
    width: 230px;
    margin: 0 auto;
    position: -webkit-sticky;
    position: sticky;
    top: 50px;
  }
  .header__logo {
    font-size: 30px;
    letter-spacing: 0.12em;
    line-height: 1;
  }
  .header__menu-button {
    display: none;
  }
  .header__contents {
    display: block;
    border: none;
  }
  .button {
    transition: background 0.3s, color 0.3s, opacity 0.3s;
  }
  .button:hover {
    background-color: #faea57;
  }
  .button:hover .button__icon-path {
    fill: #e37f9d;
  }
  .button:hover .button__text {
    color: #e37f9d;
    font-size: 17px;
  }
  .button:hover .button--bg {
    color: #e37f9d;
    background-color: #faea57;
    opacity: 0.7;
  }
  .section__inner {
    max-width: 1000px;
    margin: 0 auto;
  }
  .section__head {
    margin-bottom: 24px;
  }
  .section__head-main {
    font-size: 60px;
  }
  .fv {
    margin-top: 0;
  }
  .fv__img {
    width: 100%;
  }
  .fv__contents {
    background: url(../img/bg_fv.png) center center no-repeat;
    background-size: 100% auto;
    bottom: 20px;
    left: 0;
    max-width: 627px;
    height: 174px;
    padding-top: 37px;
    padding-left: 96px;
  }
  .fv__heading-main {
    font-size: 60px;
  }
  .fv__heading-sub {
    font-size: 15px;
  }
  .service__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8%;
  }
  .service__item + .service__item {
    margin-top: 0;
  }
  .works__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 4%;
    text-align: center;
  }
  .works__item {
    max-width: 100%;
    min-width: 200px;
  }
  .works__item + .works__item {
    margin-top: 0px;
  }
  .works__item-img {
    display: block;
    text-align: center;
  }
  .works__item-name {
    overflow-wrap: break-word;
  }
  .works__item-id {
    font-size: 20px;
  }
  .about__container {
    display: flex;
    flex-direction: row-reverse;
    gap: 40px;
  }
  .about__img {
    display: flex;
    align-items: center;
    width: 50%;
  }
  .about__text-contents {
    width: 50%;
  }
  .flow__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .flow__item + .flow__item {
    margin-top: 0px;
  }
  .message__container {
    display: flex;
    flex-direction: row-reverse;
    gap: 40px;
  }
  .message__img {
    display: flex;
    align-items: center;
    width: 50%;
    min-width: 200px;
  }
  .message__text {
    width: 100%;
  }
  .page-bottom__item {
    padding: 54px 10px;
  }
}
/*-------------------
// tb
--------------------*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .section__head-main {
    font-size: 54px;
  }
  .fv__contents {
    bottom: 20%;
    width: 76%;
    padding-left: 63px;
    transform: translateY(50%);
  }
  .fv__heading-main {
    font-size: 34px;
  }
  .fv__heading-sub {
    font-size: 12px;
  }
  .works__list {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 30px;
  }
  .about__container {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .about__text-contents {
    width: 100%;
  }
  .about__img {
    width: 100%;
    margin-inline: auto;
  }
  .flow__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 16px;
  }
  .message__container {
    flex-direction: column-reverse;
  }
  .message__img {
    width: 100%;
    margin-inline: auto;
  }
  .message__text-contents {
    width: 100%;
    flex-direction: column;
  }
  .message__text-block {
    margin-bottom: 20px;
  }
  .message__text {
    margin-top: 10px;
    width: 100%;
  }
}
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s, transform 1s;
}
.fade-in-up.is-in-view {
  opacity: 1;
  transform: translateY(0);
}
/*# sourceMappingURL=style.css.map */