@charset "UTF-8";
body {
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  color: #402717;
}
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;
}
.button--bg {
  background-color: #fff;
}
.button--bg .button__text {
  color: #4a4a4a;
}
.button--border {
  border: 1px solid #fff;
}
.button__icon {
  width: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.button__icon-path {
  fill: #fff;
}
.button__icon-path--contact {
  fill: #4a4a4a;
}
.button__text {
  color: #fff;
  margin-left: 10px;
  font-size: 16px;
  letter-spacing: 0.08em;
}

.words--bold {
  font-weight: bold;
}

.words--ligher {
  font-weight: lighter;
}

.words--round {
  font-family: "ヒラギノ丸ゴ ProN", "Hiragino Maru Gothic ProN";
}

.words--big {
  font-size: 20px;
}

.skill {
  border: 1px solid #402717;
  border-radius: 16px;
  padding: 4px 16px;
  font-weight: lighter;
}

.header {
  background-color: #d6c299;
  -webkit-filter: saturate(180%);
          filter: saturate(180%); /* 彩度を上げる */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.header__container {
  width: 100%;
  position: relative;
}
.header__logo {
  display: inline-block;
  padding: 8px 24px 14px;
  font-size: 20px;
  color: #fff;
  line-height: 1.25;
}
.header__logo .small__name {
  font-size: 8px;
}
.header__nav--pc {
  display: none;
}
.header__menu-button {
  border: none;
  position: absolute;
  top: 20px;
  right: 24px;
  width: 30px;
  height: 36px;
  overflow: hidden;
  color: transparent;
  background: url(../img/bg_menu.png) center center no-repeat;
  background-size: 100% auto;
}
.header__menu-button.is-checked {
  background: url(../img/bg_menu-close.png) center center no-repeat;
  background-size: 100% auto;
}
.header__contents {
  display: none;
  height: calc(100vh - 72px);
  border-top: 1px solid #fff;
  padding-top: 60px;
}
.header__nav-item + .header__nav-item {
  margin-top: 24px;
}

.fv {
  position: relative;
  height: 100vh;
}
.fv .fv__name--small {
  font-size: 16px;
}
.fv__img {
  position: absolute;
  top: 220px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
  opacity: 0.3;
}
.fv__img img {
  width: 187.5px;
}
.fv__contents {
  position: absolute;
  top: 320px;
  width: 100%;
  height: 209px;
  background-size: 100% auto;
  padding: 32px;
}
.fv__heading--fadeIn--4 {
  text-align: center;
  line-height: 1.25;
}
.fv__heading-main {
  display: block;
  font-size: 32px;
  letter-spacing: 0.2em;
}
.fv__heading-sub {
  margin-top: 16px;
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
}

.fv__img {
  -webkit-animation-name: fadeInAnime-img;
          animation-name: fadeInAnime-img;
  -webkit-animation-duration: 8s;
          animation-duration: 8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime-img {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.4;
  }
}

@keyframes fadeInAnime-img {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.4;
  }
}
.fv__heading--fadeIn--4 {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.section {
  padding: 80px 0;
}
.section__inner {
  padding: 0 32px;
}
.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;
  margin-bottom: 32px;
}
.section__head--center {
  text-align: center;
}
.section__head-main {
  font-size: 40px;
  letter-spacing: 0.2em;
}
.section__head-sub {
  font-size: 11px;
  letter-spacing: 0.2em;
}
.section__lead-text {
  font-size: 12px;
  line-height: 1.6;
  font-weight: 240;
}
.section__contents {
  margin-top: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime-text;
          animation-name: fadeUpAnime-text;
  -webkit-animation-duration: 2.8s;
          animation-duration: 2.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime-text {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime-text {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
  opacity: 0;
}

.service {
  background-color: white;
}
.service__item {
  background-color: white;
  padding: 1rem 2rem 2rem;
  -webkit-box-shadow: 0 2px 6px 0 hsla(0, 0%, 0%, 0.2);
          box-shadow: 0 2px 6px 0 hsla(0, 0%, 0%, 0.2);
  border-radius: 8px;
}
.service__item + .service__item {
  margin-top: 40px;
}
.service__item-img {
  text-align: center;
  margin-bottom: 14px;
}
.service__item-name {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
.service__item-text {
  font-size: 12px;
  line-height: 1.6em;
}

.works {
  background-color: rgba(246, 239, 219, 0.15);
}
.works .works__list {
  margin-bottom: 80px;
}
.works .works__list .works-listitem:hover {
  opacity: 0.7;
}
.works .works-img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.works li + li {
  margin-top: 32px;
}

.about__img {
  margin-bottom: 32px;
}
.about__img img {
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}
.about skill-heading {
  font-size: 16px;
}
.about__text {
  font-size: 16px;
  line-height: 1.6;
}
.about__text + .about__text {
  margin-top: 1em;
}
.about__span {
  color: #ab0f50;
  border-bottom: dotted 1px #ab0f50;
}

.flow {
  background-color: rgba(246, 239, 219, 0.15);
}
.flow__list {
  margin-top: 64px;
}
.flow__item {
  position: relative;
  border: 3px dotted #402717;
  border-radius: 8px;
  padding: 32px 16px 24px;
  background-color: rgba(246, 239, 219, 0.15);
  -webkit-filter: saturate(120%);
          filter: saturate(120%); /* 彩度を上げる */
}
.flow__item + .flow__item {
  margin-top: 46px;
}
.flow__item-num {
  position: absolute;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 24px;
  background-color: #402717;
  color: #fff;
  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: 16px;
  text-align: center;
}
.flow__item-img img {
  width: 200px;
}
.flow__item-name {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
.flow__item-text {
  font-size: 12px;
  line-height: 1.6;
}

.message__imgimg {
  margin-bottom: 32px;
}
.message__text {
  font-size: 16px;
  line-height: 1.6;
}

.page-bottom {
  color: #fff;
}
.page-bottom__item {
  padding: 96px 40px;
}
.page-bottom__item--contact {
  background-color: rgba(64, 39, 23, 0.8);
}

.form {
  margin-left: auto;
  margin-right: auto;
  max-width: 375px;
}
.form .must {
  color: #ab0f50;
  -webkit-filter: saturate(160%);
          filter: saturate(160%); /* 彩度 */
}
.form__title {
  display: block;
  margin-bottom: 8px;
  width: 295px;
}
.form__area {
  display: block;
  margin-bottom: 16px;
  width: 295px;
  padding: 16px;
}
.form__title--request {
  margin-top: 24px;
  margin-bottom: 16px;
}
.form__check {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 16px;
}
.form__check--text {
  display: inline-block;
  font-size: 14px;
}
.form__request {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
}
.form__check--container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.form__textarea--container {
  margin-top: 16px;
}
.form .submit-btn {
  padding: 10px 20px; /* Set padding */
  border: none; /* Remove border */
  border-bottom: 4px solid #402717;
  background-color: #d6c299; /* Set background color */
  color: #fff; /* Set text color */
  font-size: 12px; /* Set font size */
  cursor: pointer; /* Set cursor to pointer */
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s; /* Optional: for smooth color transition */
  text-align: center;
  width: 100%;
  height: 56px;
  margin-top: 8px;
}
.form .submit-btn:disabled {
  opacity: 0.5;
}
.form .submit-btn:active {
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
  border-bottom: none;
}

.end-message {
  display: none;
}

.false-message {
  display: none;
}

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

h2 {
  margin-top: 32px;
}
h2 span {
  display: block;
}
h2 span + span {
  margin-top: 8px;
}

.works__heading--sub {
  font-size: 16px;
}

.works__heading--main {
  font-size: 32px;
  font-weight: bold;
}

.works__text {
  font-size: 12px;
  line-height: 1.6;
  font-family: noto sans jp;
  font-weight: normal;
  margin-top: 8px;
}

.figmaLink a,
.siteLink a {
  display: inline;
  color: #ab0f50;
}
.figmaLink a:hover,
.siteLink a:hover {
  opacity: 0.5;
}

.image-list {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.buttonBack {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 32px 16px;
  margin: 0 auto;
  margin-top: 32px;
  border: 1px solid #402717;
  background-color: #fff;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.buttonBack:hover {
  background-color: #402717;
  color: #fff;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-y: auto;
}

.modal-content {
  margin: 0 auto;
  max-width: 70%;
}

.modal-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.close-button {
  color: #fff;
  float: right;
  font-size: 32px;
  font-weight: normal;
  cursor: pointer;
}

.close-button:hover,
.close-button:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

/*------------------
//pc
------------------*/
@media screen and (min-width: 768px) {
  .header {
    position: relative;
    position: fixed;
    z-index: 100;
    background-color: white;
  }
  .header__container {
    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;
    padding: 16px 32px;
  }
  .header__logo {
    color: #d6c299;
    font-size: 30px;
    letter-spacing: 0.12em;
    line-height: 1;
    padding-top: 0;
  }
  .header__logo :hover {
    opacity: 0.5;
  }
  .header__nav--pc {
    display: inline-block;
    padding-top: 16px;
  }
  .header__nav--pc--list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header__nav--pc--item {
    color: #d6c299;
    -webkit-filter: saturate(150%);
            filter: saturate(150%); /* 彩度 */
    font-size: 16px;
    letter-spacing: 0.2em;
    opacity: 0.8;
  }
  .header__nav--pc--item :hover {
    opacity: 0.4;
  }
  .header__nav--pc--item + .header__nav--pc--item {
    margin-left: 16px;
  }
  .header__menu-button {
    display: none;
  }
  .header__contents {
    display: none;
    border: none;
  }
  .section {
    padding: 96px 0;
  }
  .section__inner {
    max-width: 944px;
    margin: 0 auto;
  }
  .section__head {
    margin-bottom: 48px;
  }
  .section__head-main {
    font-size: 60px;
  }
  .section__lead-text {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 240;
  }
  .fv {
    margin: 0 auto;
    position: static;
    max-width: 627px;
    height: 100vh;
  }
  .fv__img {
    position: absolute;
    top: 300px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .fv__img img {
    width: 200px;
  }
  .fv__contents {
    position: absolute;
    top: 420px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .fv__heading-main {
    letter-spacing: 0.2em;
  }
  .fv__heading-sub {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.2em;
  }
  .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(2, 1fr);
    gap: 8%;
  }
  .works img {
    width: 100%;
  }
  .works li + li {
    margin-top: 0px;
  }
  .about__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;
  }
  .about__img {
    margin-top: 169px;
  }
  .flow__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .flow__item + .flow__item {
    margin-top: 0;
  }
  .flow__item-img {
    -webkit-transition: -webkit-transform 0.2s ease-in-out;
    transition: -webkit-transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  }
  .flow__item-img :hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .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__item {
    padding: 128px 10px;
  }
  .form {
    margin: 0 auto;
    max-width: 944px;
    padding: 32px;
  }
  .form__area {
    margin: 0 auto;
    width: 880px;
    padding: 2em;
    max-width: 100%;
    margin-bottom: 24px;
  }
  .form__submit-button-container {
    text-align: center;
  }
  .form .submit-btn {
    width: 30%;
    display: inline-block;
    margin-top: 8px;
  }
  .form__end-message {
    text-align: center;
  }
  .form .end-message {
    display: inline-block;
  }
  .image-list {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
  }
  .sample-img:hover {
    opacity: 0.7;
  }
  .works__text {
    font-size: 16px;
  }
}
/*-------------
//tb
-------------*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header__nav--pc {
    max-width: 300px;
  }
  .header__container {
    padding: 16px 42px;
  }
  .header__head-main {
    font-size: 54px;
  }
  .header__nav--pc--list {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    line-height: 1.8;
  }
  .header__nav--pc--item + .header__nav--pc--item {
    margin-left: 24px;
  }
  .section {
    padding: 142px 0;
  }
  .section__inner {
    padding: 0 56px;
  }
  .fv__img {
    top: 360px;
  }
  .fv__img img {
    width: 200px;
  }
  .fv__contents {
    top: 480px;
  }
  .fv .flow__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 16px;
  }
}