@charset "UTF-8";
body {
  font-family: "Noto Serif JP", serif;
  color: #6C6059;
  font-size: 16px;
  line-height: 1.7;
}

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

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

.heading {
  text-align: center;
}
.heading-en {
  font-family: "Jost";
  font-size: 38px;
  display: block;
  line-height: 1;
}
.heading-jp {
  font-family: "Noto Serif JP";
  font-size: 14px;
  display: block;
  margin-top: 5px;
}

img {
  width: 100%;
  height: 100%;
}

.inner {
  padding-left: 15px;
  padding-right: 15px;
}

/*** フワッと表示ここから ***/
.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 2s, -webkit-transform 2s;
  transition: opacity 2s, -webkit-transform 2s;
  transition: opacity 2s, transform 2s;
  transition: opacity 2s, transform 2s, -webkit-transform 2s;
}
.fade-in-up.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*** フワッと表示ここまで ***/
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 55;
}
.header__inner {
  padding: 18px 20px;
  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: 64px;
  max-width: 1280px;
  margin-inline: auto;
}
.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    margin-left: auto;
  }
}
.header__nav-link {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.header__nav-link:hover {
  color: #D6BDA5;
}
@media screen and (min-width: 768px) {
  .header__open {
    display: none;
  }
}

.drawer-icon {
  margin-left: auto;
  width: 32px;
  height: 25px;
  position: relative;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 14px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 32px;
}
.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__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 3px;
  border-radius: 3px;
  background: #6C6059;
  -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: 0;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 11px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 22px;
}

.drawer-content {
  display: none;
  width: 100%;
  height: 320px;
  position: fixed;
  top: 64px;
  left: 0;
  background: #D6BDA5;
  z-index: 555;
  text-align: center;
}
.drawer-content__menu {
  margin-top: 82px;
}
.drawer-content__link {
  display: block;
  font-size: 14px;
}
.drawer-content__link + .drawer-content__link {
  margin-top: 40px;
}

.fv {
  position: relative;
  margin-top: 64px;
  max-width: 1280px;
  margin-inline: auto;
}
.fv__inner {
  background-image: url(../img/sp_fv.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 400px;
}
@media screen and (min-width: 768px) {
  .fv__inner {
    background: url(../img/pc_fv.jpg) 100%/cover no-repeat;
    height: 600px;
  }
}
.fv__logo {
  width: 174px;
  position: absolute;
  top: 80px;
  left: 2.66vw;
}
@media screen and (min-width: 768px) {
  .fv__logo {
    width: 350px;
  }
}
/*** マウススクロールここから ***/
.scrolldown3 {
  position: absolute;
  bottom: 10px;
  right: 50%;
  -webkit-animation: mousemove 1.6s ease-in-out infinite;
          animation: mousemove 1.6s ease-in-out infinite;
}

/*下からの距離が変化して上から下に動く*/
@-webkit-keyframes mousemove {
  0% {
    bottom: 10px;
  }
  50% {
    bottom: 5px;
  }
  100% {
    bottom: 10px;
  }
}
@keyframes mousemove {
  0% {
    bottom: 10px;
  }
  50% {
    bottom: 5px;
  }
  100% {
    bottom: 10px;
  }
}
/*Scrollテキストの描写*/
.scrolldown3 span {
  position: absolute;
  left: -15px;
  bottom: 45px;
  color: #6C6059;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

/*マウスの中の線描写 */
.scrolldown3 span::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 17px;
  width: 1px;
  height: 15px;
  background: #6C6059;
  -webkit-animation: mousepathmove 1.4s linear infinite;
          animation: mousepathmove 1.4s linear infinite;
  opacity: 0;
}

/*上からの距離・不透明度・高さが変化して上から下に流れる*/
@-webkit-keyframes mousepathmove {
  0% {
    height: 0;
    top: 10px;
    opacity: 0;
  }
  50% {
    height: 15px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 30px;
    opacity: 0;
  }
}
@keyframes mousepathmove {
  0% {
    height: 0;
    top: 10px;
    opacity: 0;
  }
  50% {
    height: 15px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 30px;
    opacity: 0;
  }
}
/*マウスの描写 */
.scrolldown3:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -10px;
  width: 25px;
  height: 37px;
  border-radius: 10px;
  border: 1px solid #6C6059;
}

/*マウスの中の丸の描写*/
.scrolldown3:after {
  content: "";
  position: absolute;
  bottom: 26px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  border: 1px solid #6C6059;
}

/*** マウススクロールここまで ***/
.works {
  padding-top: 100px;
}
@media screen and (min-width: 768px) {
  .works {
    padding-top: 120px;
  }
}
.works__inner {
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 768px) {
  .works__inner {
    padding-left: 30px;
    padding-right: 30px;
    max-width: 1040px;
    margin-inline: auto;
  }
}
.works__content {
  background: #fff;
}
.works__heading-sub {
  text-align: center;
  font-size: 20px;
  margin-top: 60px;
  font-family: "Jost";
}
.works__cards {
  margin-top: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .works__cards {
    margin-top: 30px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
  }
}
.works__card {
  width: 300px;
  height: 300px;
  margin-inline: auto;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2), 0 0 40px rgba(128, 128, 128, 0.1);
          box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2), 0 0 40px rgba(128, 128, 128, 0.1);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .works__card {
    border-radius: 24px;
  }
}
.works__card:hover .card-body {
  -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.4), 0 0 50px rgba(128, 128, 128, 0.1);
          box-shadow: 0 1px 10px rgba(0, 0, 0, 0.4), 0 0 50px rgba(128, 128, 128, 0.1);
}
.works__card:hover .card-body-image img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.card-body-image {
  width: 300px;
  height: 300px;
}
.card-body-image img {
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
/*** worksモーダルここから ***/
.works-modal__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.7;
  z-index: 9999;
}
.works-modal__content {
  display: none;
  border: none;
  border-radius: 24px;
  padding: 0;
  width: 336px;
  height: 480px;
  overflow: hidden;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fff;
  z-index: 10000;
}
.works-modal__content-dtp {
  padding: 10px 10px 0;
}
@media screen and (min-width: 900px) {
  .works-modal__content-dtp {
    padding: 20px 20px 0;
    width: 35vw;
    height: 85vh;
  }
}
.works-modal__image {
  width: 100%;
  height: 350px;
  overflow: hidden;
}
.works-modal__image img {
  width: 100%;
  height: 100%;
}
.works-modal__image-dtp {
  width: 100%;
  height: 80%;
  overflow: hidden;
}
.works-modal__image-dtp img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.works-modal__text {
  padding: 10px;
  text-align: center;
  height: 130px;
}
.works-modal__text p:nth-of-type(1) {
  font-weight: bold;
}
.works-modal__text p:nth-of-type(2) {
  font-size: 14px;
}
.works-modal__site-button {
  margin-top: 15px;
}
.works-modal__site-button a {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.3rem;
  font-family: "Noto Serif JP";
  padding: 8px 37px 8px 30px;
  border-radius: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  background: #D6BDA5;
  border: 1px solid #D6BDA5;
  color: #fff;
}
.works-modal__site-button a:hover {
  cursor: pointer;
}
.works-modal__site-button a:hover::after {
  right: 20px;
}
.works-modal__site-button a::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

body.modal-open {
  overflow: hidden;
}

/*** worksモーダルここまで ***/
.about {
  padding-top: 100px;
}
@media screen and (min-width: 768px) {
  .about {
    padding-top: 120px;
  }
}
.about__inner {
  padding-right: 15px;
  padding-left: 15px;
  max-width: 640px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .about__inner {
    padding-left: 30px;
    padding-right: 30px;
    max-width: 1040px;
  }
}
.about__contents {
  margin-top: 35px;
  -webkit-box-shadow: 1px 1px 12px rgba(0, 0, 0, 0.3);
          box-shadow: 1px 1px 12px rgba(0, 0, 0, 0.3);
  padding: 30px 20px 20px 20px;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .about__contents {
    margin-top: 50px;
    padding: 40px;
  }
}
.about__contents-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .about__contents-wrapper {
    -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;
  }
}
.about__image {
  width: 300px;
  height: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .about__image {
    width: 25.5102040816%;
  }
}
.about__content {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .about__content {
    width: 66.3265306122%;
    margin-top: 0;
  }
}
.about__title {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about__title {
    font-size: 30px;
  }
}
.about__text {
  font-size: 14px;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .about__text {
    font-size: 16px;
  }
}
.about__skill {
  background: #f3f3f3;
  border-radius: 20px;
  padding: 30px 15px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .about__skill {
    padding: 30px;
  }
}
.about__skill-title {
  text-align: center;
  font-size: 24px;
  position: relative;
}
.about__skill-title::after {
  content: "";
  width: 70px;
  height: 3px;
  border-radius: 3px;
  background-color: #D6BDA5;
  position: absolute;
  bottom: -2px;
  right: 0;
  left: 0;
  display: block;
  margin: auto;
}
.about__skill-items {
  margin-top: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .about__skill-items {
    margin-top: 30px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width: 768px) {
  .about__skill-item {
    width: 33.3333333333%;
  }
}
.about__skill-item:nth-of-type(n + 2) {
  border-top: 2px dotted #D6BDA5;
  margin-top: 10px;
  padding-top: 10px;
}
@media screen and (min-width: 768px) {
  .about__skill-item:nth-of-type(n + 2) {
    border-top: none;
    border-left: 2px dotted #D6BDA5;
    margin-top: 0;
    padding-top: 0;
    padding-left: 15px;
    margin-left: 15px;
  }
}
.about__skill-item p:nth-of-type(1) {
  font-weight: bold;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .about__skill-item p:nth-of-type(1) {
    text-align: left;
  }
}
.about__skill-item p:nth-of-type(1)::before {
  content: "★";
}
.about__skill-item p:nth-of-type(2) {
  font-size: 14px;
  overflow-wrap: break-word;
  margin-top: 8px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about__skill-item p:nth-of-type(2) {
    text-align: left;
  }
}

.contact {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (min-width: 768px) {
  .contact {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
.contact__inner {
  padding-right: 15px;
  padding-left: 15px;
  max-width: 640px;
  margin-inline: auto;
}
.contact__text {
  font-size: 14px;
  margin-top: 30px;
  color: #808080;
}
.contact__form {
  margin-top: 35px;
}
@media screen and (min-width: 768px) {
  .contact__form {
    margin-top: 60px;
  }
}
.contact__field + .contact__field {
  margin-top: 24px;
}
.contact__button {
  text-align: center;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .contact__button {
    margin-top: 30px;
  }
}
.contact__button input {
  font-size: 16px;
  letter-spacing: 0.3rem;
  color: #ffffff;
  font-family: "Noto Serif JP";
  padding: 15px 55px;
  background: #D6BDA5;
  border: none;
  border-radius: 50px;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2), 0 0 40px rgba(128, 128, 128, 0.1);
          box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2), 0 0 40px rgba(128, 128, 128, 0.1);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.contact__button input:hover {
  cursor: pointer;
  -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.4), 0 0 50px rgba(128, 128, 128, 0.1);
          box-shadow: 0 1px 10px rgba(0, 0, 0, 0.4), 0 0 50px rgba(128, 128, 128, 0.1);
}

.form-field__head {
  margin-bottom: 10px;
}
.form-field__label {
  font-weight: 700;
}
.form-field__tag {
  display: inline-block;
  font-size: 12px;
  color: #fff;
  background: #C10811;
  padding: 3px 8px;
  border-radius: 4px;
  margin-left: 9px;
}
.form-field__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.form-text:focus,
.form-textarea:focus {
  border: 1px solid #D6BDA5;
  background: #FFFEF9;
}

.form-text {
  background: #fff;
  border: 1px solid #6C6059;
  padding: 12px 16px 16px;
  border-radius: 8px;
  width: 100%;
}

.form-radio__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-radio__input:checked + .form-radio__text::after {
  opacity: 1;
}
.form-radio__text {
  position: relative;
  padding-left: 32px;
}
.form-radio__text::before, .form-radio__text::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}
.form-radio__text::before {
  width: 22px;
  height: 22px;
  border: 1px solid #6C6059;
  left: 0;
}
.form-radio__text::after {
  width: 14px;
  height: 14px;
  background: #D6BDA5;
  left: 4px;
  opacity: 0;
}

.form-textarea {
  background: #fff;
  border: 1px solid #6C6059;
  padding: 12px 16px 16px;
  border-radius: 8px;
  width: 100%;
}

.footer {
  padding-top: 10px;
  padding-bottom: 12px;
  border-top: 0.25px solid #6c6c6c;
  text-align: center;
  line-height: 1;
}
.footer__copy {
  font-size: 10px;
}

/*** ページトップボタンここから ***/
/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 20px;
  z-index: 2;
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  /*上に上がる動き*/
  /*下に下がる動き*/
  /*リンクの形状*/
}
#page-top.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}
@-webkit-keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
#page-top.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}
@-webkit-keyframes DownAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
}
@keyframes DownAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
}
#page-top a {
  position: fixed;
  right: 5px;
  bottom: 20px;
  height: 50px;
  text-decoration: none;
  font-weight: bold;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  font-size: 90%;
  line-height: 1.5rem;
  color: #737373;
  padding: 0 0 0 35px;
  border-top: solid 1px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#page-top a::before {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: 0px;
  width: 15px;
  border-top: solid 1px;
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

/*** ページトップボタンここまで ***/
/*** カスタムアラートここから ***/
.custom-alert {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fff;
  padding: 20px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  border-radius: 8px;
  text-align: center;
  width: 335px;
}
.custom-alert-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}
.custom-alert button {
  padding: 10px 40px;
  background: #D6BDA5;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
}
.custom-alert button:hover {
  background: #D6BDA5;
}

/*** カスタムアラートここまで ***/