body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: #352c21;
  background-color: #f5f5f5;
}
body.is-fixed {
  overflow: hidden;
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 10px 6px 30px;
  width: 160px;
  margin: 0 auto;
  border: 1px solid #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.button:hover {
  background-color: #fff;
  color: #663e0b;
}

.button__header {
  text-align: center;
  width: 120px;
  font-size: 14px;
  background-color: #663e0b;
  color: #fff;
  border-radius: 20px;
  letter-spacing: 1.2px;
}
.button__header:hover {
  background-color: #fff;
  color: #663e0b;
  border: 1px solid #663e0b;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .hidden-tab {
    display: none;
  }
}

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

.section {
  padding: 40px 80px;
}
@media (min-width: 1200px) {
  .section {
    padding: 80px 120px;
  }
}

.inner {
  padding-inline: 40px;
}
@media (min-width: 1200px) {
  .inner {
    padding-inline: 80px;
  }
}

.section__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.section__head-main {
  font-family: "Josefin Sans", sans-serif;
  font-size: 40px;
  color: #8dc448;
  line-height: 1.2;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .section__head-main {
    font-size: 56px;
  }
}
@media (min-width: 1200px) {
  .section__head-main {
    font-size: 70px;
  }
}

.section__head-sub {
  color: #663e0b;
  font-size: 14px;
  letter-spacing: 0.5px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .section__head-sub {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .section__head-sub {
    font-size: 18px;
  }
}

.section__lead-text {
  font-size: 18px;
  margin-top: 20px;
}
@media (min-width: 1200px) {
  .section__lead-text {
    font-size: 20px;
    margin-top: 40px;
  }
}

.header {
  width: 100%;
  height: 52px;
  padding-inline: 20px;
  position: fixed;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 100;
}
@media (min-width: 1200px) {
  .header {
    height: 72px;
  }
}

.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;
  height: 100%;
}
@media (min-width: 1200px) {
  .header__inner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}

.header__logo {
  width: 74px;
  height: 25px;
}
@media (min-width: 1200px) {
  .header__logo {
    width: 100px;
    height: 34px;
  }
}
.header__logo .logo img {
  display: block;
}

.header__nav {
  display: none;
}
@media (min-width: 1200px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
}

.header__link {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.42px;
  position: relative;
  color: #663e0b;
}
.header__link:hover, .header__link.is-active {
  opacity: 0.6;
}

.drawer-icon {
  width: 21px;
  height: 33px;
  position: relative;
  background-color: transparent;
}
@media (min-width: 1200px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 14px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.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: 14px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.drawer-icon.is-checked .drawer-icon__menu {
  opacity: 0;
}

.drawer-icon__bar {
  position: absolute;
  top: 6px;
  left: 0;
  width: 21px;
  height: 2px;
  border-radius: 2px;
  background: #663e0b;
  -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: 8px;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 16px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 24px;
}

.drawer-content {
  height: 100%;
  position: fixed;
  top: 52px;
  right: 0;
  background: #f0eae0;
  z-index: 50;
  -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;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .drawer-content {
    width: 375px;
  }
}
.drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-content__menu {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  padding-top: 80px;
  text-align: center;
}

.drawer-content__link {
  position: relative;
  display: block;
  color: #352c21;
  font-size: 26px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.72px;
  margin-left: 30px;
  padding-left: 34px;
}
.drawer-content__link::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-radius: 1px;
  border: 2px solid #64629d;
}
.drawer-content__link:hover {
  opacity: 0.6;
}

.drawer-content__button {
  margin-top: 40px;
  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;
  padding-left: 10px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .drawer-content__button {
    width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
.drawer-content__button a {
  display: block;
}

.fv {
  position: relative;
}

.fv__img {
  position: relative;
}
.fv__img img {
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
}

.fv__contents {
  width: calc(100% - 40px);
  padding-inline: 20px;
  color: #fff;
  position: absolute;
  bottom: 40px;
  text-shadow: #663e0b 1px 1px 10px;
}
@media (min-width: 1200px) {
  .fv__contents {
    padding-inline: 60px;
  }
}

.fv__heading-main {
  font-family: "Josefin Sans", sans-serif;
  display: block;
  font-size: 36px;
  line-height: 1;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .fv__heading-main {
    font-size: 48px;
  }
}
@media (min-width: 1200px) {
  .fv__heading-main {
    font-size: 56px;
  }
}

.fv__heading-sub {
  display: block;
  font-size: 18px;
  margin-top: 10px;
}
@media (min-width: 1200px) {
  .fv__heading-sub {
    font-size: 26px;
  }
}

.service__list {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .service__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .service__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.service__item-name {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 700;
}

.service__item-text {
  margin-top: 20px;
}

.works {
  background-color: #fff;
  border-radius: 10px;
}

.works__list {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .works__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (min-width: 1200px) {
  .works__list {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
  }
}

.works__item-img {
  -webkit-box-shadow: 0 4px 15px 0 rgba(53, 44, 33, 0.15);
          box-shadow: 0 4px 15px 0 rgba(53, 44, 33, 0.15);
}
.works__item-img img {
  width: 100%;
}

.works__item-name {
  margin-top: 10px;
}
@media (min-width: 1200px) {
  .works__item-name {
    font-size: 18px;
    margin-top: 16px;
  }
}

.about__inner {
  padding-top: 20px;
  padding-inline: 20px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .about__inner {
    padding-top: 40px;
    padding-inline: 40px;
  }
}
@media (min-width: 1200px) {
  .about__inner {
    padding-top: 60px;
    padding-inline: 60px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .about__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
  }
}
@media (min-width: 1200px) {
  .about__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 80px;
  }
}

.about__img {
  -webkit-box-shadow: 0 4px 15px 0 rgba(53, 44, 33, 0.15);
          box-shadow: 0 4px 15px 0 rgba(53, 44, 33, 0.15);
}
.about__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about__body {
  margin-top: 20px;
}

.about__body-text {
  margin-top: 20px;
}
.about__body-text + .about__body-text {
  margin-top: 16px;
}

.flow__list {
  margin-top: 64px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .flow__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (min-width: 1200px) {
  .flow__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
}
.flow__item {
  position: relative;
  border: 1px solid #dfd4c6;
  background-color: #fff;
  border-radius: 8px;
  padding: 46px 16px 24px;
}
.flow__item + .flow__item {
  margin-top: 46px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .flow__item + .flow__item {
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .flow__item + .flow__item {
    margin-top: 0;
  }
}
.flow__item-num {
  position: absolute;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 24px;
  background-color: #663e0b;
  color: #f0eae0;
  width: 48px;
  height: 48px;
  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;
}
.flow__item-img {
  margin-bottom: 24px;
  text-align: center;
}
.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;
}

.message {
  padding: 20px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .message {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .message {
    padding: 80px;
  }
}
.message__img {
  margin-bottom: 32px;
}
.message__img img {
  width: 100%;
  -webkit-box-shadow: 0 4px 15px 0 rgba(53, 44, 33, 0.15);
          box-shadow: 0 4px 15px 0 rgba(53, 44, 33, 0.15);
}
.message__text {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 10px;
}
@media (min-width: 1200px) {
  .message__text {
    font-size: 18px;
    margin-top: 20px;
  }
}

.message__inner {
  padding-inline: 20px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .message__inner {
    padding-inline: 40px;
  }
}
@media (min-width: 1200px) {
  .message__inner {
    padding-inline: 60px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .message__container {
    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;
    gap: 40px;
  }
}
@media (min-width: 1200px) {
  .message__container {
    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;
    gap: 40px;
  }
}

.page__bottom {
  text-align: center;
  color: #f0eae0;
}
.page__bottom .page__bottom-item {
  width: 100%;
  display: block;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .page__bottom .page__bottom-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 1200px) {
  .page__bottom .page__bottom-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.page__bottom .page__bottom-item > * {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.page__bottom .section__head-main,
.page__bottom .section__head-sub {
  color: #fff;
}
.page__bottom__item {
  padding: 40px;
}
.page__bottom__item--contact {
  background-color: #663e0b;
}
.page__bottom__item--instagram {
  background-color: #f097be;
}

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

.footer__button {
  margin-top: 10px;
}
.footer__button:hover .button__icon-path {
  fill: #f097be;
}

.button__footer:hover {
  background-color: #fff;
  color: #f097be;
}

.button__icon {
  display: inline-block;
  width: 26px;
  height: 20px;
  padding-right: 8px;
  margin-top: 6px;
}

.button__icon-path {
  fill: white;
}
.button__icon-path:hover {
  fill: #663e0b;
}

.end-message {
  display: none;
}

.false-message {
  display: none;
}

.contact__fv {
  position: relative;
  height: 300px;
}
.contact__fv img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.contact__fv .fv__contents {
  position: absolute;
  bottom: 40px;
}
.contact__fv .fv__contents .fv__heading-main {
  font-size: 26px;
}
@media (min-width: 1200px) {
  .contact__fv .fv__contents .fv__heading-main {
    font-size: 36px;
  }
}
.contact__fv .fv__contents .fv__heading-sub {
  font-size: 14px;
}
@media (min-width: 1200px) {
  .contact__fv .fv__contents .fv__heading-sub {
    font-size: 16px;
  }
}

.box {
  margin: 20px;
}
.box label {
  display: block;
}
.box input {
  width: 90%;
  margin-top: 10px;
  padding: 10px;
}
.box textarea {
  width: 90%;
  margin-top: 10px;
  padding: 10px;
}

.form {
  margin-top: 20px;
}
.form-text {
  width: 92%;
  border-radius: 4px;
  border: none;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .form-text {
    width: 93%;
  }
}
@media (min-width: 1200px) {
  .form-text {
    width: 95%;
  }
}
.form-button {
  border-radius: 4px;
  border: none;
  display: block;
  margin: 10px auto 0;
  width: 120px;
  padding: 12px 10px;
  color: #f0eae0;
  background-color: #663e0b;
}
.form-button:hover {
  opacity: 0.5;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .form__inner {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1200px) {
  .form__inner {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}

.content__head {
  font-weight: 700;
  margin-top: 20px;
}

.content__text {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 10px;
}
.content__text + .content__text {
  margin-top: 16px;
}
@media (min-width: 1200px) {
  .content__text {
    font-size: 18px;
  }
}