@charset "UTF-8";
.header__inner {
  display: flex;
  justify-content: space-between;
  padding-top: 2%;
  align-items: center;
}
.header__inner-home {
  font-family: "Times New Roman", sans-serif;
  letter-spacing: 0.5px;
  color: #747474;
  font-size: clamp(36px, 50px, 3vw);
  color: #000;
  text-align: left;
  display: inline-block;
  white-space: nowrap;
  font-weight: bold;
  margin-left: 6%;
}
.header__inner-home span {
  display: block;
  font-size: 1rem;
}
.header__inner-right {
  justify-content: center;
  padding-bottom: 0.5%;
}

.current::before {
  content: "▼";
  font-size: 14px;
  display: block;
  margin-bottom: -13px;
  color: #c2bcb2;
  margin-top: -4px;
  font-weight: lighter;
  text-align: center;
}

.page-work-container {
  width: 80%;
  margin: 0 auto;
  padding-bottom: 5%;
  margin-top: 8%;
}
.page-work-container h1 {
  font-family: "Times New Roman", sans-serif;
  letter-spacing: 0.5px;
  color: #747474;
  font-size: clamp(18px, 25px, 2vw);
  margin: 5% 0;
}
@media (min-width: 1190px) {
  .page-work-container h1 {
    margin: 10% 0 5% 0;
  }
}
.page-work-container h1 span {
  font-size: 1.5em;
  color: #b2bfc1;
}

.page__work {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1%;
}
.page__work-content {
  width: 32%;
  margin-bottom: 1%;
}
.page__work-content-img {
  overflow: hidden;
  transition: all 0.5s;
}
.page__work-content-img:hover {
  filter: brightness(80%);
}
.page__work-ttl {
  color: #747474;
  font-size: clamp(14px, 18px, 1.1vw);
  margin-top: 2%;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9000;
}

.modal__container {
  background-color: #fff;
  padding: 30px;
  width: 70vw;
  max-height: 90vh;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
  z-index: 9001;
}

@media screen and (max-width: 480px) {
  .modal__container {
    max-height: 90vh;
    max-width: 300px;
  }
}
.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  box-sizing: border-box;
  color: #7a6b38;
}

.modal__close {
  background: transparent;
  border: 0;
}

.modal__header .modal__close:before {
  content: "✕";
}

.modal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}
.modal__content-link {
  text-align: center;
  display: block;
  font-size: 1.2rem;
  color: #7a6b38;
}
.modal__content img {
  width: 80%;
  display: block;
  margin: 0 auto;
  margin-bottom: 8%;
}

.modal__btn {
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  text-align: center;
  background-color: #edebe7;
  padding: 5% 2% 0 2%;
  vertical-align: middle;
  border-radius: 2px;
}
@media (min-width: 1280px) {
  .modal__btn {
    height: 28vh;
  }
}
.modal__btn img {
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: transform 0.25s ease-out;
  width: 90%;
}
.modal__btn img:hover {
  transform: scale(1.05);
}

/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

.js-fade {
  opacity: 0;
  visibility: hidden;
  transform: translateY(80px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.bottom-menu ul {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
  gap: 1px;
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #edebe7;
}
.bottom-menu ul li {
  width: 98%;
}
.bottom-menu ul a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #b2bfc1;
  padding: 11% 0;
}

.page-contact {
  position: relative;
}
.page-contact-container {
  padding-top: 4%;
  width: 100%;
}
.page-contact__inner {
  width: 80%;
  margin: 0 auto;
  display: flex;
  position: absolute;
  justify-content: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  gap: 5%;
}
.page-contact__inner-left {
  text-align: left;
  line-height: 1.5;
  font-size: clamp(16px, 20px, 1.2vw);
}
.page-contact__inner-left h1 {
  font-size: clamp(18px, 22px, 1.3vw);
  font-weight: bold;
  margin-bottom: 4%;
}
.page-contact__inner-left p {
  margin-bottom: 4%;
}
.page-contact__inner-left p:last-child {
  margin-top: 8%;
}
.page-contact__inner-right {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 2%;
  width: 50%;
  font-size: clamp(16px, 20px, 1.2vw);
}

.contact-form {
  margin: 0 auto;
  padding: 5% 10%;
  text-align: center;
  font-size: clamp(15px, 18px, 1.1vw);
}

.wpcf7-text,
.wpcf7-textarea,
.wpcf7-select {
  background-color: #fff;
  padding: 1% 2%;
  border-radius: 2px;
  margin-bottom: 3%;
  width: 100%;
  text-align: left;
}

.wpcf7-select {
  padding: 2.5%;
}

.wpcf7-submit {
  background-color: #688e93;
  margin: 0 auto;
  width: 50%;
  display: block;
  height: auto;
  color: #fff;
  padding: 2% 0;
  margin-top: 4%;
  border-radius: 2px;
}

.form-title.required,
.form-title.optional {
  display: flex;
  align-items: center;
  margin-bottom: 2px;
  font-weight: bold;
}

.form-title.form-title.required::after {
  content: "必須";
  background-color: #fcb3b3;
  padding: 3.5px 8px;
  margin-left: 5px;
  border-radius: 2px;
  font-size: 0.8rem;
  display: flex;
}

.form-title.form-title.optional::after {
  content: "任意";
  background-color: #cbcbcb;
  padding: 3.5px 8px;
  margin-left: 5px;
  border-radius: 2px;
  font-size: 0.8rem;
  display: inline-block;
  vertical-align: middle;
}

.form-privacy {
  font-size: 0.8rem;
  text-align: center;
}
.form-privacy a {
  text-decoration: underline;
}

.wpcf7-not-valid-tip {
  margin-top: -2%;
}

.your-name::-moz-placeholder, .your-mail::-moz-placeholder, .message::-moz-placeholder {
  color: #d6d8d8;
}

.your-name::placeholder,
.your-mail::placeholder,
.message::placeholder {
  color: #d6d8d8;
}

@media screen and (max-width: 768px) {
  .sp-header {
    display: block;
  }
  .page-work-container {
    padding-top: 25%;
  }
  .page__work-content {
    width: 100%;
    margin-bottom: 10%;
  }
  .page-contact-container {
    padding-top: 30%;
  }
  .page-contact__inner {
    display: block;
    width: 100%;
    position: inherit;
    top: 0;
    left: 0;
    transform: none;
  }
  .page-contact__inner-left {
    width: 90%;
    margin: 0 auto;
  }
  .page-contact__inner-right {
    margin-top: 5%;
    width: 100%;
    background: url(../../images/contact_bg_sp.jpg) no-repeat;
    background-size: cover;
  }
}
.contact-form {
  padding: 8% 5% 5% 5%;
}

.wpcf7-submit {
  width: 80%;
  padding: 4% 0;
  margin-top: 4%;
}

.form-privacy a {
  margin-top: 10%;
  display: inline-block;
}/*# sourceMappingURL=page.css.map */