@charset "UTF-8";
/* A Modern CSS Reset */
* {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  border-style: solid;
  box-sizing: border-box;
  border-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
  text-rendering: optimizeSpeed;
  min-height: 100vh;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  background-color: transparent;
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
}

input,
button,
select,
textarea {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  border-radius: 0;
  background: transparent;
  font: inherit;
  outline: none;
}

textarea {
  resize: none;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

body {
  font-family: "筑紫A丸ゴシック";
  font-weight: 400;
}

body {
  color: #887F69;
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.1851851852vw;
  }
}
@media (min-width: 1350px) {
  html {
    font-size: 16px;
  }
}

.line a {
  position: relative;
  display: inline-block;
}

.line a::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fff;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.4s;
}

.line a:hover::after {
  transform: scale(1, 1);
}

.main__wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 0 20px;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .main__wrapper {
    padding: 0;
  }
}

.header {
  min-width: 23.4375rem;
  width: 100%;
  height: 6.25rem;
  background-color: #DED6BC;
  padding: 0 20px;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 150;
}
@media screen and (min-width: 768px) {
  .header {
    min-width: 120rem;
    height: 7.5rem;
    padding: 0 3.75rem;
    align-items: center;
  }
}

.header__logo {
  width: 9.375rem;
  height: 4.375rem;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 18.75rem;
    height: 9.375rem;
  }
}

.header__logo img {
  width: 100%;
}

.header__inner {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .header__inner {
    width: 100%;
    height: 6.25rem;
    flex-direction: row;
    margin-left: auto;
    align-items: center;
  }
}

.header__nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(136, 127, 105, 0.8);
  width: 100%;
  height: 100vh;
  z-index: 30;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: flex !important;
    overflow-y: initial;
    width: 45rem;
    height: 6.25rem;
    margin-left: auto;
    background-color: initial;
  }
}

.header__nav-lists {
  width: 18.09375rem;
  height: 22.5rem;
  display: block;
  margin-top: 7.5rem;
  margin-inline: auto;
  margin-bottom: 2.825rem;
  text-align: center;
  position: absolute;
  z-index: 999;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .header__nav-lists {
    width: 100%;
    height: inherit;
    opacity: 1;
    position: initial;
    display: flex;
    margin-top: 0;
    margin-bottom: 0;
    align-items: center;
    transform: none;
  }
}

@media screen and (min-width: 768px) {
  .header__nav-lists.is-open {
    opacity: 1;
  }
}

.header__nav-list {
  width: 100%;
  position: relative;
  color: #fff;
  padding: 1.375rem 0;
}
@media screen and (min-width: 768px) {
  .header__nav-list {
    position: initial;
    padding: 0.3125rem 0.625rem;
    margin-top: 1.5625rem;
  }
}

@media screen and (min-width: 768px) {
  .header__nav-list:nth-child(2) {
    margin-right: -1.875rem;
  }
}

@media screen and (min-width: 768px) {
  .header__nav-list:nth-child(3) {
    margin-left: 1.25rem;
  }
}

.header__nav-list a {
  color: #fff;
  font-size: 2.5rem;
}
@media screen and (min-width: 768px) {
  .header__nav-list a {
    color: #887F69;
    font-size: 1.875rem;
  }
}

@media screen and (min-width: 768px) {
  .header__nav-list a::before:last-of-type {
    display: none;
  }
}

.footer {
  width: 100%;
  height: 3.125rem;
  background-color: #DED6BC;
  position: fixed;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .footer {
    height: 3.125rem;
  }
}

.footer__inner {
  min-width: 23.4375rem;
  width: 100%;
  padding: 0 20px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    max-width: 95rem;
    flex-direction: row-reverse;
    padding: 0 25px 7.4375rem;
  }
}

.footer__wrapper {
  width: 100%;
  height: 32rem;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer__wrapper {
    max-width: 95rem;
    height: 12.5rem;
  }
}

.footer__top {
  min-width: 20.9375rem;
  width: 100%;
  margin-inline: auto;
  position: absolute;
  top: 0;
}
@media screen and (min-width: 768px) {
  .footer__top {
    max-width: 47.5rem;
    width: 50%;
    right: 0;
  }
}

.footer__nav {
  text-align: center;
  margin-bottom: 1.25rem;
}

.footer__nav-lists {
  font-size: 1rem;
  line-height: 1;
  color: #887F69;
  text-align: center;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .footer__nav-lists {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__nav-list {
  margin-bottom: 1.75rem;
}
@media screen and (min-width: 768px) {
  .footer__nav-list {
    margin-bottom: 2.5rem;
  }
}

.footer__nav-list a {
  padding: 0.3125rem;
  color: #887F69;
}

.footer__line {
  width: 100%;
}

.footer__center {
  min-width: 20.9375rem;
  width: 100%;
  margin-inline: auto;
  position: absolute;
  top: 17.5rem;
}
@media screen and (min-width: 768px) {
  .footer__center {
    width: 50%;
    top: 10%;
    left: 0;
  }
}

.footer__center-logo {
  width: 11.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .footer__center-logo {
    width: 22.5rem;
  }
}

.footer__bottom {
  min-width: 20.9375rem;
  width: 100%;
  margin-inline: auto;
  margin-bottom: 3rem;
  position: absolute;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .footer__bottom {
    max-width: 47.5rem;
    width: 50%;
    right: 0;
    margin-bottom: 0;
  }
}

.footer__bottom-address {
  width: 20.9375rem;
  margin-inline: auto;
  font-size: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__bottom-address {
    width: 100%;
    font-size: 2.5rem;
  }
}

.footer-address {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .footer-address {
    font-size: 1.5rem;
  }
}

.copy-right {
  min-width: 23.4375rem;
  width: 100%;
  background: #DED6BC;
  color: #fff;
  font-size: 0.75rem;
  text-align: center;
  padding-top: 1.125rem;
  padding-bottom: 1.125rem;
}

.inner {
  width: 100%;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1350px;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

.set-inner {
  max-width: 95rem;
  width: 100%;
  margin-inline: auto;
}

html {
  background: radial-gradient(rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.6) 100%), url(../img/img/bg.png) no-repeat;
  width: 100%;
  min-height: 100vh;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
}

.white-wrapper {
  background-color: rgba(255, 255, 255, 0.6);
}

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

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

.shadow {
  box-shadow: 0 0.1875rem 0.375rem rgba(136, 127, 105, 0.16);
}

.section__title-wrapper {
  width: 100%;
  margin-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .section__title-wrapper {
    margin-bottom: 6.25rem;
    text-align: center;
  }
}

.section-title {
  font-size: 1.875rem;
  background-color: #FFF8C4;
  display: inline-block;
  padding: 0.3125rem 0.9375rem;
}
@media screen and (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
    padding: 0.625rem 2.5rem;
  }
}

.main__wrapper {
  min-height: calc(100vh - 100px);
}

.header__hamburger {
  width: 2.25rem;
  margin-left: auto;
  padding: 0.3125rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .header__hamburger {
    display: none;
  }
}

.hamburger--bar {
  position: absolute;
  right: 0;
  width: 1.875rem;
  height: 0.0625rem;
  border-radius: 0.625rem;
  background: #906060;
  transition: 0.3s;
  transform: translate(-50%, -50%);
  z-index: 100;
}

.hamburger--bar:nth-of-type(1) {
  top: 40%;
}

.hamburger--bar:nth-of-type(2) {
  top: 50%;
}

.hamburger--bar:nth-of-type(3) {
  top: 60%;
}

.hamburger.is-open .hamburger--bar:nth-of-type(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.hamburger.is-open .hamburger--bar:nth-of-type(2) {
  opacity: 0;
  transform: translate(-50%, -50%);
}

.hamburger.is-open .hamburger--bar:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.eachTextAnime span {
  opacity: 0;
}

.eachTextAnime.appeartext span {
  animation: text_anime_on 1s ease-out forwards;
}

@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.animation {
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 1.5s;
}

.keyframe3 {
  animation-name: anim_s;
  transform: rotate(10deg);
  animation-duration: 5s;
}

@keyframes anim_s {
  50% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(10deg);
  }
}
.mv {
  min-width: 23.4375rem;
  width: 100%;
  min-height: 37.5rem;
  height: 100%;
  margin-inline: auto;
  margin-top: 6.25rem;
  margin-bottom: 6.25rem;
  display: table;
}
@media screen and (min-width: 768px) {
  .mv {
    max-width: 81.25rem;
    max-height: 62.5rem;
    margin-top: 3.125rem;
    margin-bottom: 9.375rem;
  }
}

.mv__title {
  font-size: 1.125rem;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .mv__title {
    font-size: 2.5rem;
  }
}

#message {
  margin-top: 9.375rem;
}
@media screen and (min-width: 768px) {
  #message {
    margin-top: 18.75rem;
  }
}

.message__txt {
  max-width: 31.25rem;
  width: 100%;
  font-size: 0.875rem;
  overflow-wrap: break-word;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .message__txt {
    font-size: 1.75rem;
  }
}

.message__wrapper {
  padding: 1.875rem 2.5rem;
  margin-inline: auto;
  max-width: 43.75rem;
  width: 100%;
  margin-bottom: 6.25rem;
}
@media screen and (min-width: 768px) {
  .message__wrapper {
    margin-bottom: 12.5rem;
  }
}

#about {
  margin-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  #about {
    margin-top: 12.5rem;
  }
}

.about__wrapper {
  min-width: 20.625rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .about__wrapper {
    max-width: 81.25rem;
    display: flex;
  }
}

.about__img-circle {
  border-radius: 50%;
  width: 21.875rem;
  height: 21.875rem;
  background-image: url(../img/img/profile-img.jpg);
  background-position: 65% 70%;
  background-repeat: no-repeat;
  background-size: 120%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .about__img-circle {
    width: 28.125rem;
    height: 28.125rem;
  }
}

.about__profile {
  min-width: 21.875rem;
  width: 100%;
  height: 100%;
  margin-inline: auto;
  padding: 1.875rem 3.125rem;
}
@media screen and (min-width: 768px) {
  .about__profile {
    max-width: 34.375rem;
  }
}

.about__profile-name {
  width: inherit;
  font-size: 1.875rem;
  text-align: right;
  margin-left: auto;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .about__profile-name {
    text-align: left;
  }
}

.about__profile-txt {
  font-size: 1.25rem;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .about__profile-txt {
    font-size: 1.5rem;
  }
}

.service {
  margin-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .service {
    margin-top: 12.5rem;
  }
}

.service__wrapper {
  min-width: 20.625rem;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-inline: auto;
}

.service__detail {
  width: 21.875rem;
  height: 26.25rem;
  padding: 3.4375rem 2.8125rem;
  margin-inline: auto;
  margin-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .service__detail {
    width: 23.125rem;
    height: 31.25rem;
  }
}

.service__title-wrapper {
  display: flex;
  margin-bottom: 0.9375rem;
}

.service__detail-title {
  font-size: 1.5rem;
  text-align: right;
  border-bottom: 0.0625rem solid;
}

.title-circle {
  width: 1.5625rem;
  height: 1.5625rem;
  border-radius: 50%;
  background-color: rgba(144, 96, 96, 0.6);
  margin-top: 1.25rem;
}

.title-circle::after {
  content: "";
  display: inline-block;
  width: 1.5625rem;
  height: 1.5625rem;
  border-radius: 50%;
  border: 0.0625rem solid;
  margin-top: 0.1875rem;
  margin-left: 0.3125rem;
}

.service__detail-txt {
  font-size: 1.25rem;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .service__detail-txt {
    font-size: 1.5rem;
  }
}

#works {
  margin-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  #works {
    margin-top: 9.375rem;
  }
}

.works__wrapper {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .works__wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.works__item {
  width: 21.875rem;
  height: 28.125rem;
  margin-inline: auto;
  margin-bottom: 3.125rem;
  border-radius: 1.25rem 1.25rem 0 0;
}
@media screen and (min-width: 768px) {
  .works__item {
    gap: 6.25rem;
  }
}

.works__item-img {
  width: 100%;
  height: 12.5rem;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 1.25rem 1.25rem 0 0;
}

.site-01 {
  background-image: url(../img/img/site-1.png);
}

.site-02 {
  background-image: url(../img/img/site-2.png);
}

.site-03 {
  background-image: url(../img/img/site-5.png);
}

.site-04 {
  background-image: url(../img/img/site-3.png);
}

.site-05 {
  background-image: url(../img/img/site-4.png);
}

.works__item-detail {
  padding: 1.25rem 0.9375rem;
}

.detail-cat {
  display: inline-block;
  padding: 0.1875rem 0.3125rem;
  font-size: 1.25rem;
  border: 0.0625rem solid;
  border-radius: 0.625rem;
}

.detail-title {
  font-size: 1.5rem;
}

.detail-txt {
  word-wrap: break-word;
  font-size: 1rem;
}

.contact {
  margin-top: 6.25rem;
  margin-bottom: 9.375rem;
}
@media screen and (min-width: 768px) {
  .contact {
    margin-top: 12.5rem;
    margin-bottom: 12.5rem;
  }
}

.contact__wrapper {
  background: #DED6BC;
  padding: 1.875rem 0;
  min-width: 20.625rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .contact__wrapper {
    max-width: 43.75rem;
  }
}

.contact__frame, .thanks {
  background: #fff;
  width: 80%;
  margin-inline: auto;
  padding: 3.75rem 1.25rem;
}

.contact-txt {
  font-size: 0.875rem;
  margin-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .contact-txt {
    margin-bottom: 5rem;
  }
}

.contact__form {
  width: 90%;
  display: block;
}
@media screen and (min-width: 768px) {
  .contact__form {
    max-width: 25rem;
    margin-inline: auto;
  }
}

.contact-item {
  display: flex;
  margin-bottom: 1.875rem;
}

.area {
  box-shadow: 0 0.1875rem 0.375rem rgba(136, 127, 105, 0.16) inset;
  border-radius: 0.625rem;
}

.badge {
  display: inline-block;
  font-size: 0.875rem;
  position: relative;
}

.badge::after {
  content: "*";
  position: absolute;
}

input, textarea {
  width: 12.5rem;
  margin-left: auto;
}

textarea {
  height: 8.4375rem;
}

.contact-btn {
  display: flex;
}

.btn {
  width: 6.25rem;
  border: 0.0625rem solid;
  border-radius: 2.5rem;
  background-color: #fff;
  color: #906060;
  margin-inline: auto;
  overflow: hidden;
  position: relative;
  transition-duration: 0.4s;
  z-index: 2;
}

.btn:hover {
  color: #fff;
  background-color: #906060;
  transform: translateY(-50%) scale(1.1);
  transition-delay: 0s;
  transition: opacity 0.8s, transform 0.6s ease-in-out;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */