.header-logo__image--image {
  width: 100%;
  max-width: 130px;
  margin: 0.5em 1em;
  vertical-align: bottom;
}

.header-menu__button {
  position: fixed;
  top: 0.5em;
  right: 0.5em;
  z-index: 3;
  display: block;
  cursor: pointer;
}
@media (width >= 768px) {
  .header-menu__button {
    display: none;
  }
}
.header-menu__button .menu-bar {
  width: 30px;
  height: 2px;
  display: block;
  margin: 0.5em;
  background-color: #333;
}

.header-menu__button.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
  background-color: #fff;
}

.header-menu__button.active span:nth-child(2) {
  opacity: 0;
}

.header-menu__button.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
  background-color: #fff;
}

.header__nav--sp {
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: grid;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: rgba(36, 36, 36, 0.8);
  transition: all 0.5s;
}
.header__nav--sp.active {
  transform: translateX(-100%);
}
@media (width >= 768px) {
  .header__nav--sp {
    display: none;
  }
}

.header-nav__item {
  margin: 1.6em 0;
}
.header-nav__item .header-nav__link {
  font-size: 1.5em;
  font-family: "Overlock", sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  color: #fff;
}
@media (width >= 768px) {
  .header-nav__item .header-nav__link {
    color: #333;
  }
}
.header-nav__item .header-nav__link:hover {
  color: #3ba0cf;
}

.header__nav--pc {
  display: none;
}
@media (width >= 768px) {
  .header__nav--pc {
    display: block;
    position: fixed;
    top: 4%;
    right: 1%;
    z-index: 2;
    writing-mode: vertical-rl;
  }
}

.header-nav-pc__list {
  display: flex;
}
.header-nav-pc__list .header-nav-pc__item {
  margin: 1em 0;
}
.header-nav-pc__list .header-nav-pc__item .header-nav-pc__link {
  font-size: 1.5em;
  font-family: "Overlock", sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  color: #333;
}
.header-nav-pc__list .header-nav-pc__item .header-nav-pc__link:hover {
  color: #3ba0cf;
}

.main-visual__wrapper {
  position: relative;
  width: 100%;
  max-width: 1600px;
  height: 70vh;
  margin: 0 auto;
}

.main-visual__container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1400px;
}
@media (width >= 1024px) {
  .main-visual__container {
    flex-direction: row;
  }
}
.main-visual__container .catchphrase {
  width: 100%;
  max-width: 500px;
  font-size: clamp(2rem, 1.76rem + 1.2vw, 3.2rem);
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 1.5px;
  line-height: 1.6em;
  text-align: center;
  color: #333;
  margin: 0 1em;
}
.main-visual__container .main-visual__image {
  width: 100%;
  max-width: 400px;
  margin: 2em auto;
}
@media (width >= 768px) {
  .main-visual__container .main-visual__image {
    max-width: 650px;
  }
}

.scroll__container {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 2em 0;
}
@media (width >= 768px) {
  .scroll__container {
    margin: 0;
  }
}
.scroll__container .scroll-line {
  height: clamp(3.125rem, 1.875rem + 6.25vw, 9.375rem);
  border-radius: 5px;
  border: 1px solid gray;
}
.scroll__container .scroll-ball {
  position: absolute;
  bottom: clamp(3.125rem, 1.875rem + 6.25vw, 9.375rem);
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background-color: gray;
  animation: down 2s linear infinite;
}

@keyframes down {
  to {
    transform: translateY(clamp(2rem, -0.182rem + 10.91vw, 8rem));
  }
}
.work__wrapper {
  max-width: 100%;
  max-width: 1300px;
  margin: 8em auto;
  padding: 0 2%;
}
@media (width >= 768px) {
  .work__wrapper {
    margin: 10em auto;
  }
}

.work__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.work__list {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  margin-top: 6em;
}

.work__heading {
  font-size: clamp(2.6rem, 2.2rem + 2vw, 4.6rem);
  font-family: "Overlock", sans-serif;
  color: gray;
  margin: 0 auto;
}
.work__heading .color-blue {
  color: #3ba0cf;
}

.work__item {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  box-shadow: -6px 6px 6px #8d8d8d;
  border-radius: 10px;
  transition: all 0.3s;
}
.work__item:hover {
  transform: scale(1.05);
}

.work__image {
  border-radius: 5px;
  vertical-align: bottom;
}

.work__category {
  font-size: 1.5rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 200;
  border-radius: 5px;
  border: 1.5px solid lightgray;
  padding: 0 0.6em 0.2em;
  margin: 0.5em 0.5em;
  color: gray;
  display: inline-block;
}

.work__container {
  color: #414141;
}
.work__container:hover {
  color: #3ba0cf;
}

.work__text {
  font-size: clamp(1.4rem, 1.255rem + 0.73vw, 1.8rem);
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 1.4px;
  line-height: 1.6;
  text-align: center;
}

.work-type__text {
  font-size: clamp(1.3rem, 1.26rem + 0.2vw, 1.5rem);
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 1.4px;
  line-height: 1.6;
  text-align: center;
  margin: 1em auto;
}

.office-name__wrapper {
  background-color: #d6c6af;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 3vw), 50% 100%, 0 calc(100% - 3vw));
  margin-top: 10em;
  padding: 6em 4em 8em;
}

.office-name__text {
  font-size: clamp(1.4rem, 1.255rem + 0.73vw, 1.8rem);
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 1.4px;
  line-height: 1.6;
  text-align: center;
}
.office-name__text:last-child {
  margin-top: 1em;
}

.service__wrapper {
  width: 100%;
  max-width: 1300px;
  margin: 10em auto 0;
  padding: 0 2%;
}

.service__inner {
  width: 100%;
  max-width: 1200px;
  margin: 6em auto;
  border-radius: 5px;
  background-color: rgba(193, 184, 171, 0.5);
  border: 1px solid rgba(179, 187, 191, 0.5);
  box-shadow: inset -6px 6px 6px gray;
}

.service__heading {
  font-size: clamp(2.6rem, 2.2rem + 2vw, 4.6rem);
  font-family: "Overlock", sans-serif;
  color: gray;
  margin: 0 auto;
}
.service__heading .color-blue {
  color: #3ba0cf;
}

.service-web__container,
.service-graphic__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1em;
  padding: 2em;
  margin: 1em;
  background-image: url("../images/design_bg.jpg");
  background-color: rgba(255, 255, 255, 0.2);
  background-blend-mode: lighten;
  border-radius: 5px;
  box-shadow: -5px 5px 5px gray;
}

.service__image {
  width: 100%;
  max-width: 230px;
  margin: 0 auto;
  vertical-align: bottom;
}
@media (width >= 1200px) {
  .service__image {
    margin: 0;
  }
}

.service-text__content {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
}
.service-text__content .service-lineup__heading {
  font-size: clamp(1.6rem, 1.48rem + 0.6vw, 2.2rem);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: normal;
  margin-bottom: 1em;
}
.service-text__content .service-lineup__text {
  font-size: clamp(1.4rem, 1.255rem + 0.73vw, 1.8rem);
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 2;
}

.profile__wrapper {
  width: 100%;
  max-width: 1300px;
  margin: 10em auto 0;
  padding: 0 2%;
}

.profile__heading {
  font-size: clamp(2.6rem, 2.2rem + 2vw, 4.6rem);
  font-family: "Overlock", sans-serif;
  color: gray;
  margin: 0 auto;
}
.profile__heading .color-blue {
  color: #3ba0cf;
}

.profile__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
  max-width: 1000px;
  margin: 6em auto;
  padding: 1em 0.2em;
  background-image: url("../images/design_bg.jpg");
  background-color: rgba(255, 255, 255, 0.2);
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 10px;
  box-shadow: -6px 6px 6px #8d8d8d;
}
.profile__container .profile__image {
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
  vertical-align: bottom;
}
.profile__container .profile__name {
  font-size: clamp(1.4rem, 1.255rem + 0.73vw, 1.8rem);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
}
.profile__container .profile-message__container {
  width: 100%;
  max-width: 560px;
  padding: 1em;
}
.profile__container .profile-message__container .profile-message {
  font-size: clamp(1.4rem, 1.255rem + 0.73vw, 1.8rem);
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 1.4px;
  line-height: 1.6;
  margin: 2em 0;
}

.profile-link__container {
  position: relative;
  right: -60%;
  width: 100%;
  max-width: 130px;
  border-bottom: 1px solid gray;
}
.profile-link__container .profile-link-arrow {
  position: absolute;
  bottom: 0.6em;
  right: -0.2em;
  width: 30px;
  transform: rotate(45deg);
  border-bottom: 1px solid gray;
}
.profile-link__container .profile-link {
  font-size: clamp(2.4rem, 2.28rem + 0.6vw, 3rem);
  font-family: "Zen Maru Gothic", sans-serif;
  color: gray;
  padding-left: 0.2em;
}

.contact__wrapper {
  position: relative;
  width: 100%;
  max-width: 1300px;
  margin: 10em auto 0;
  padding: 0 2%;
}

.contact__heading {
  font-size: clamp(2.6rem, 2.2rem + 2vw, 4.6rem);
  font-family: "Overlock", sans-serif;
  color: gray;
  margin: 0 auto;
}
.contact__heading .color-blue {
  color: #3ba0cf;
}

.contact__inner {
  max-width: 1000px;
  margin: 6em auto 0;
}

.contact__text {
  font-size: clamp(1.4rem, 1.255rem + 0.73vw, 1.8rem);
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 1.2px;
  text-align: center;
}

.contact-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
}
@media (width >= 768px) {
  .contact-flex {
    gap: 3em;
  }
}

.contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  margin: 3em 0;
}
.contact:hover .contact__link {
  color: #fff;
  background-color: #8d8d8d;
  border-radius: 5px;
}
.contact:hover .contact__link + .contact__icon {
  background-image: url("../images/mail-forward.png");
}
@media (width >= 768px) {
  .contact {
    gap: 3em;
  }
}

.contact__link {
  display: block;
  color: #333;
  border-radius: 5px;
  border: 4px solid #c2ad90;
  background-color: rgba(194, 173, 144, 0.548);
  box-shadow: -5px 5px 5px gray;
  padding: 1em;
}

.contact__icon {
  width: 100px;
  height: 100px;
  display: block;
  background-image: url("../images/mail-icon.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.engin__container {
  position: relative;
  top: 2em;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.5;
  display: inline-block;
}
.engin__container .engin__image {
  vertical-align: bottom;
}
.engin__container .fan__container {
  position: absolute;
  top: 5em;
  left: 6%;
  animation: fanRotate 2s infinite linear;
  width: 150px;
  height: 150px;
}
.engin__container .fan__container.rotate {
  animation: fanRotate 0.5s infinite linear;
}
.engin__container .fan__container .fan__image {
  vertical-align: bottom;
}
@keyframes fanRotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

.arrow {
  position: relative;
}
.arrow .arrow__button {
  position: absolute;
  bottom: -10em;
  right: 1%;
  z-index: 1;
  border-radius: 50%;
  border: 2px solid #c2ad90;
}
.arrow .arrow__button:hover {
  background-color: #808080;
}
.arrow .arrow__image {
  width: 40px;
  vertical-align: bottom;
  border-radius: 50%;
}

.work-detail__wrapper {
  margin-top: 10em;
  width: 100%;
  max-width: 1400px;
  margin: 10em auto;
  padding: 0 2%;
}

.breadcrumb {
  display: flex;
  gap: 0.3em;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 3em;
  font-size: clamp(1.4rem, 1.255rem + 0.73vw, 1.8rem);
  font-family: "Zen Maru Gothic", sans-serif;
}
.breadcrumb .breadcrumb__link {
  color: #333;
  text-decoration: underline;
  text-underline-offset: 0.3em;
}

.work-detail__inner {
  padding: 0 2%;
}

.model__image {
  width: 100%;
  max-width: 1400px;
  height: 400px;
}

.work-detail-pc__image {
  width: 100%;
  max-width: 1400px;
  display: block;
  border: 4px solid gray;
}

.work-detail-banner__image {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  display: block;
  border: 4px solid gray;
}

model-viewer {
  width: 100%;
  max-width: 1400px;
  height: 500px;
  border: 4px solid gray;
}

.model-move {
  font-size: 1.6rem;
  font-family: "Zen Maru Gothic", sans-serif;
}

.work-detail-detail__container {
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 1em;
  padding: 1em;
  border: 4px solid gray;
}

.work-detail-production__container {
  width: 100%;
  max-width: 350px;
}
.work-detail-production__container .work-detail-production__heading {
  font-size: clamp(1.4rem, 1.255rem + 0.73vw, 1.8rem);
  font-family: "Zen Maru Gothic", sans-serif;
  margin-bottom: 0.5em;
}
.work-detail-production__container .work-detail-production__heading:before {
  content: "";
  margin-right: 0.5em;
  border-left: 5px solid #4380bd;
}
.work-detail-production__container .work-detail-production__text {
  font-size: clamp(1.4rem, 1.255rem + 0.73vw, 1.8rem);
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 1.2px;
  margin-bottom: 1em;
  padding-left: 1em;
}

.work-detail-explanation__container {
  width: 100%;
  max-width: 800px;
  margin-left: 1em;
  padding: 1em;
  border-left: 4px solid gray;
}
.work-detail-explanation__container .work-detail-explanation__heading {
  font-size: clamp(1.4rem, 1.255rem + 0.73vw, 1.8rem);
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 1.2px;
}
.work-detail-explanation__container .work-detail-explanation__heading:before {
  content: "";
  border-left: 5px solid #4380bd;
  margin-right: 0.5em;
}
.work-detail-explanation__container .work-detail-explanation__text {
  font-size: clamp(1.4rem, 1.255rem + 0.73vw, 1.8rem);
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 1.2px;
  margin: 1em 0;
  padding-left: 1em;
}

.desk-top__heading {
  font-size: clamp(1.4rem, 1.32rem + 0.4vw, 1.8rem);
  font-family: "Zen Maru Gothic", sans-serif;
  color: gray;
  text-align: center;
  margin: 3em 0;
}
.desk-top__heading::before, .desk-top__heading::after {
  content: "";
  margin: 0 1em;
  border: 2px solid gray;
}

.work-detail-pc-page__image {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  border: 1px solid lightgray;
}

.mobile__heading {
  font-size: clamp(1.4rem, 1.32rem + 0.4vw, 1.8rem);
  font-family: "Zen Maru Gothic", sans-serif;
  color: gray;
  text-align: center;
  margin: 5em 0 3em;
}
.mobile__heading::before, .mobile__heading::after {
  content: "";
  margin: 0 1em;
  border: 2px solid gray;
}

.work-detail-image__container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.work-detail-sp-page__image {
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  border: 1px solid lightgray;
}

.external__link {
  font-size: 1.5rem;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #414141;
  display: inline-block;
  border-radius: 5px;
  border: 2px solid #c2ad90;
  background-color: #c2ad90;
  margin-top: 4em;
  padding: 1em 2em;
}
.external__link:hover {
  background-color: #808080;
  color: #f2f2f2;
}

.to-top {
  width: 80px;
  margin: 0 auto;
  text-align: center;
  text-underline-offset: 0.5em;
}
.to-top .to-top__text {
  font-size: clamp(1.6rem, 1.44rem + 0.8vw, 2.4rem);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  text-decoration: underline;
  letter-spacing: 1px;
  color: gray;
}
.to-top .to-top__text:hover {
  color: #3ba0cf;
}

.profile-detail__wrapper {
  margin-bottom: 8em;
  padding: 0 2%;
}

.profile-detail__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1em;
  background-image: url("../images/design_bg.jpg");
  background-color: rgba(255, 255, 255, 0.2);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  box-shadow: -6px 6px 6px #8d8d8d;
}

.profile-detail__heading {
  font-size: clamp(2.6rem, 2.2rem + 2vw, 4.6rem);
  font-family: "Overlock", sans-serif;
  letter-spacing: 1px;
  color: gray;
  text-align: center;
  width: 200px;
  border-bottom: 2px solid gray;
  margin: 3em auto;
}
.profile-detail__heading .color-blue {
  color: #3ba0cf;
}

.profile__image {
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
  vertical-align: bottom;
}

.profile__name {
  font-size: clamp(1.4rem, 1.255rem + 0.73vw, 1.8rem);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
}

.skill__inner {
  max-width: 800px;
  margin: 2em auto;
  padding: 1em;
  box-shadow: inset -6px 6px 6px #8d8d8d, -6px 6px 10px rgba(255, 238, 218, 0.6352941176);
  border-radius: 10px;
}
.skill__inner .tool__container,
.skill__inner .code__container,
.skill__inner .equipment__container,
.skill__inner .message__container,
.skill__inner .style__container {
  margin-top: 1em;
}
.skill__inner .tool__heading,
.skill__inner .code__heading,
.skill__inner .equipment__heading,
.skill__inner .message__heading,
.skill__inner .style__heading {
  font-size: clamp(1.4rem, 1.255rem + 0.73vw, 1.8rem);
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 1px;
  display: inline-block;
  border-top: 3px solid #4380bd;
  border-bottom: 3px solid #4380bd;
  margin-bottom: 0.3em;
}
.skill__inner .tool__text,
.skill__inner .code__text,
.skill__inner .equipment__text,
.skill__inner .style__text {
  font-size: clamp(1.4rem, 1.255rem + 0.73vw, 1.8rem);
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 1px;
  padding-left: 1em;
}
.skill__inner .message__text {
  font-size: clamp(1.4rem, 1.255rem + 0.73vw, 1.8rem);
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 1px;
  line-height: 1.5;
  margin: 1em 0;
  padding: 0 1em;
}

.privacy__wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 8em auto;
  padding: 0.5em;
}

.privacy__container {
  width: 100%;
  max-width: 1000px;
  margin: 1em auto;
}

.privacy__content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.privacy__heading {
  font-size: clamp(2.6rem, 2.2rem + 2vw, 4.6rem);
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 1px;
  text-align: center;
  color: #333;
}
.privacy__heading .privacy__heading--text {
  font-size: clamp(1.4rem, 1.32rem + 0.4vw, 1.8rem);
  font-family: "Zen Maru Gothic", sans-serif;
  width: 100%;
  max-width: 900px;
  margin: 0.5em auto;
}

.privacy__title {
  font-size: clamp(1.8rem, 1.72rem + 0.4vw, 2.2rem);
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 1px;
  margin: 0.5em 0;
}

.privacy__text {
  font-size: clamp(1.4rem, 1.32rem + 0.4vw, 1.8rem);
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 1px;
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
}

.privacy__arrow {
  font-size: 1.2rem;
}

.privacy__contact {
  font-size: clamp(1.4rem, 1.32rem + 0.4vw, 1.8rem);
  font-family: "Zen Maru Gothic", sans-serif;
  color: #333;
  border: 4px solid #c2ad90;
  border-radius: 5px;
  background-color: rgba(194, 173, 144, 0.5);
  padding: 0.5em 1em;
  margin: 1em 0;
  display: inline-block;
}
.privacy__contact:hover {
  color: #fff;
  background-color: #8d8d8d;
}

.footer__wrapper {
  margin-top: 10em;
  width: 100%;
  padding-top: 2em;
  background-color: #c2ad90;
}

.footer__image {
  opacity: 0.6;
}

.footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
}
@media (width >= 768px) {
  .footer-nav__list {
    max-width: 600px;
  }
}

.footer-nav__item {
  margin: 0 auto 1em;
}

.footer-nav__link {
  font-size: clamp(1.4rem, 1.255rem + 0.73vw, 1.8rem);
  font-family: "Overlock", sans-serif;
  letter-spacing: 1.2px;
  color: #333;
}
.footer-nav__link:hover {
  color: #3ba0cf;
}

.sns__container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4em;
  width: 100%;
  text-align: center;
  margin: 3em 0;
}
.sns__container .sns__icon {
  width: 30px;
  vertical-align: bottom;
  transition: all 0.3s;
}
.sns__container .sns__icon:hover {
  transform: scale(1.2);
}

.copy__text {
  font-size: 1.6rem;
  font-family: "Overlock", sans-serif;
  text-align: center;
  color: #333;
  padding: 0.5em 0;
}

.contact-header-logo__image {
  background-color: #f6f5f4;
}

.contact-header-logo__image--image {
  width: 100%;
  max-width: 130px;
  margin: 0.5em 1em;
  vertical-align: bottom;
}

.contact-header-menu__button {
  position: fixed;
  top: 1em;
  right: 1em;
  z-index: 3;
  display: block;
  cursor: pointer;
}
@media (width >= 768px) {
  .contact-header-menu__button {
    display: none;
  }
}
.contact-header-menu__button .contact-menu-bar {
  width: 30px;
  height: 2px;
  display: block;
  margin: 0.5em;
  background-color: #333;
}

.contact-header-menu__button.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background-color: #fff;
}

.contact-header-menu__button.active span:nth-child(2) {
  opacity: 0;
}

.contact-header-menu__button.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background-color: #fff;
}

.contact-header__nav--sp {
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: grid;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: rgba(36, 36, 36, 0.8);
  transition: all 0.5s;
}
.contact-header__nav--sp.active {
  transform: translateX(-100%);
}
@media (width >= 768px) {
  .contact-header__nav--sp {
    display: none;
  }
}

.contact-header-nav__item {
  margin: 1.6em 0;
}
.contact-header-nav__item .contact-header-nav__link {
  font-size: 1.5em;
  font-family: "Overlock";
  font-weight: 400;
  letter-spacing: 1px;
  color: #fff;
}
@media (width >= 768px) {
  .contact-header-nav__item .contact-header-nav__link {
    color: #333;
    writing-mode: vertical-rl;
  }
  .contact-header-nav__item .contact-header-nav__link:hover {
    color: #b4d8e0;
  }
}

.contact-header__nav--pc {
  display: none;
}
@media (width >= 768px) {
  .contact-header__nav--pc {
    display: block;
    position: fixed;
    top: 4%;
    right: 2%;
    z-index: 2;
  }
}

.contact-header__nav--pc {
  display: none;
}
@media (width >= 768px) {
  .contact-header__nav--pc {
    display: block;
    position: fixed;
    top: 4%;
    right: 1%;
    z-index: 2;
    writing-mode: vertical-rl;
  }
}

.contact-header-nav-pc__list {
  display: flex;
}
.contact-header-nav-pc__list .contact-header-nav-pc__item {
  margin: 1em 0;
}
.contact-header-nav-pc__list .contact-header-nav-pc__item .contact-header-nav-pc__link {
  font-size: 1.5em;
  font-family: "Overlock", sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  color: #333;
}
.contact-header-nav-pc__list .contact-header-nav-pc__item .contact-header-nav-pc__link:hover {
  color: #3ba0cf;
}

.form__wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 15em 4% 10em;
}
.form__wrapper .form__text {
  font-size: clamp(1rem, 0.927rem + 0.36vw, 1.2rem);
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 1.2px;
  line-height: 1.4;
  margin: 0 0 0.6em;
}

.contact-to-top {
  display: block;
  text-align: center;
  text-underline-offset: 0.5em;
  background-color: #f6f5f4;
  padding: 3em 0;
}
.contact-to-top .contact-to-top__text {
  font-size: clamp(1rem, 0.88rem + 0.6vw, 1.6rem);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  text-decoration: underline;
  letter-spacing: 1px;
  color: gray;
}
.contact-to-top .contact-to-top__text:hover {
  color: #3ba0cf;
}

.contact-footer__wrapper {
  width: 100%;
  padding-top: 2em;
  background-color: #c2ad90;
}

.contact-footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}
@media (width >= 768px) {
  .contact-footer-nav__list {
    max-width: 600px;
  }
}

.contact-footer-nav__item {
  margin: 0 auto 2em;
}

.contact-footer-nav__link {
  font-size: clamp(1rem, 0.927rem + 0.36vw, 1.2rem);
  font-family: "Overlock", sans-serif;
  letter-spacing: 1.2px;
  color: #333;
}
.contact-footer-nav__link:hover {
  color: #3ba0cf;
}

.contact-footer-sns__container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4em;
  width: 100%;
  text-align: center;
  margin: 3em 0;
}
.contact-footer-sns__container .contact-footer-sns__icon {
  width: 30px;
  vertical-align: bottom;
  transition: all 0.3s;
}
.contact-footer-sns__container .contact-footer-sns__icon:hover {
  transform: scale(1.2);
}

.contact-footer-copy__text {
  font-size: clamp(1rem, 0.927rem + 0.36vw, 1.2rem);
  font-family: "Overlock", sans-serif;
  letter-spacing: 1px;
  text-align: center;
  color: #333;
  padding: 0.5em 0;
  margin: 0;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  background-color: #f6f5f4;
  color: #333;
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */