@charset "UTF-8";
/*
Theme Name: villa-craft
*/
/***
    The new CSS reset - version 1.11.2 (last updated 15.11.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio, svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Fix mobile Safari increase font-size on landscape mode */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu, summary {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  display: block;
  max-inline-size: 100%;
  max-block-size: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
  box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element */
:where([contenteditable]:not([contenteditable="false"])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  line-break: after-white-space;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable="true"]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
  display: none;
}

body {
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, ryo-gothic-plusn, "メイリオ", Meiryo, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  overflow-wrap: normal;
  background-color: #3e2e28;
}

a,
button,
span,
time {
  display: block;
}

a {
  transition: 0.3s;
}

a:hover {
  opacity: 0.7;
}

iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.wrapper {
  padding: 2.5em 0;
}

.wrapper--l {
  padding: 0;
}

.outer,
.inner {
  padding: 0 5%;
}

.inner--l {
  padding: 0;
}

.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.img {
  margin: 0 auto;
  opacity: 0;
  transition: 3s;
}

.appear {
  opacity: 1;
}

@media screen and (min-width: 769px) {
  .flex--pc {
    display: flex;
    justify-content: space-between;
  }

  .flex--evenly {
    align-items: center;
    justify-content: space-evenly;
  }

  .img {
    width: 100%;
    height: 300px;
  }
}
@media screen and (min-width: 1025px) {
  .wrapper {
    max-width: 1100px;
    margin: 0 auto;
  }

  .wrapper--l {
    max-width: none;
  }
}
@media screen and (min-width: 1441px) {
  .wrapper--l {
    max-width: 1330px;
  }
}

.l-footer {
  background-color: #251b18;
}

.l-footer__nav {
  margin-bottom: 1.25em;
}

.l-footer__list {
  display: flex;
  flex-wrap: wrap;
}

.l-footer__item {
  width: 50%;
  padding: 0.625em;
  text-align: center;
}

.l-footer__item--s {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33.3333333333%;
  border-right: 1px solid #fff;
}

.l-footer__item--s:last-child {
  border-right: none;
}

.l-footer__item--contact {
  width: 100%;
}

.l-footer__link {
  display: inline-block;
  font-family: montserrat, sans-serif;
  font-weight: 400;
  color: #fff;
}

.l-footer__link--s {
  font-size: 0.625rem;
}

.copyright {
  margin-bottom: 2.5em;
  font-size: 0.75rem;
  color: #fff;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .l-footer__link--current-page {
    border-bottom: 1px solid #ccc;
  }
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100vw;
  height: 6.875em;
  padding: 0.938em 5%;
  background-color: #251b18;
}

.l-header__wrapper {
  width: 100%;
}

.l-header__wrapper--upper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60%;
}

.l-header__wrapper--lower {
  display: flex;
  justify-content: center;
  height: 40%;
}

.site-title__link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-title__img {
  width: 2.143em;
  margin-right: 0.714em;
}

.site-title__text {
  font-size: 1.375rem;
  color: #fff;
}

.dashicons-menu::before {
  font-size: 1.5rem;
  color: #fff;
  content: "\f333";
}

.l-header__nav {
  position: absolute;
  top: 6.875em;
  left: 0;
  width: 100%;
  height: 0;
  max-height: calc(100vh - 6.875em);
  padding: 0 5%;
  overflow-y: scroll;
  overscroll-behavior-y: none;
  background-color: #251b18;
}

.l-header__nav.is-active {
  padding-bottom: 0.938em;
}

.l-header__list--children {
  height: 0;
  padding: 0 5%;
  overflow-y: scroll;
  overscroll-behavior-y: none;
  background-color: #3e2e28;
}

.dashicons-arrow-down-alt2::before {
  font-size: 1.25rem;
  color: #fff;
  content: "\f347";
}

.l-header__link {
  padding: 1.429em 0;
  font-family: montserrat, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
}

.l-header__link--has-children {
  width: 80%;
}

.l-header__button {
  transition: 0.3s;
}

.l-header__button.is-active {
  transform: rotate(180deg);
}

@media screen and (min-width: 769px) {
  .l-header {
    height: 8.625em;
  }

  .l-header__wrapper--upper {
    justify-content: flex-start;
  }

  .hamburger-button {
    display: none;
  }

  .l-header__nav--pc {
    position: static;
    height: auto;
    padding: 0;
    overflow-y: visible;
  }

  .l-header__nav.is-active {
    display: none;
  }

  .l-header__list--pc {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
  }

  .l-header__list--hover {
    position: absolute;
    top: calc(100% + 0.938em);
    width: 21.429em;
    height: auto;
    padding: 1.429em 0;
    overflow-y: visible;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
  }

  .l-header__list--left {
    left: 0;
  }

  .l-header__list--right {
    right: 0;
  }

  .l-header__item--has-children:hover .l-header__list--hover {
    visibility: visible;
    opacity: 1;
  }

  .l-header__item--has-children {
    position: relative;
  }

  .l-header__item--has-children:hover {
    background-color: #3e2e28;
  }

  .l-header__item--has-children::before {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 0.938em;
    visibility: hidden;
    content: "";
    background-color: #3e2e28;
    opacity: 0;
    transition: 0.3s;
  }

  .l-header__item--has-children:hover.l-header__item--has-children::before {
    visibility: visible;
    opacity: 1;
  }

  .l-header__item--pc {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 1.071em;
  }

  .l-header__link {
    padding: 0;
    font-size: 1.25vw;
  }

  .l-header__link--pc {
    display: flex;
    align-items: center;
    height: 100%;
  }

  .l-header__link--hover {
    padding: 1.429em;
  }

  .l-header__link--current-page {
    border-bottom: 1px solid #ccc;
  }
}
@media screen and (min-width: 1025px) {
  .l-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 6.25em;
  }

  .l-header__wrapper {
    width: auto;
    height: 100%;
  }

  .site-title {
    width: 100%;
  }

  .l-header__nav {
    display: none;
  }

  .l-header__nav--pc {
    display: block;
  }

  .l-header__link {
    font-size: 1vw;
  }
}
@media screen and (min-width: 1441px) {
  .l-header__link {
    font-size: 0.875rem;
  }
}

.l-main {
  margin-top: 6.875em;
  min-height: calc(100vh - 6.875em - 359px);
}

.section-title,
.page-title {
  margin-bottom: 1.25em;
  font-size: 1.5rem;
  line-height: 1.25;
  text-align: center;
}

.section-title--ja {
  margin-bottom: 0.769em;
}

.section-title--en {
  display: flex;
  justify-content: center;
  font-style: italic;
}

.button__icon {
  font-size: 1.25rem;
}

.icon {
  margin-right: 0.441em;
  font-size: 2.125rem;
}

.description--black {
  color: #141412;
}

.description--has-mb {
  margin-bottom: 1.25em;
}

.text {
  margin-bottom: 2.5em;
}

.professional {
  position: relative;
}

.professional__container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.image {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  animation: image-switch-animation 15s infinite;
}

@keyframes image-switch-animation {
  0%{ opacity: 0;}
  10%{ opacity: 1;}
  40%{ opacity: 1;}
  50%{ opacity: 0;}
  100%{ opacity: 0;}
}

.image:nth-of-type(1) {
  animation-delay: 0s;
}

.image:nth-of-type(2) {
  animation-delay: 5s;
}

.image:nth-of-type(3) {
  animation-delay: 10s;
}

.src1 {
  background-image: url("assets/images/architecture-1477103_1280.jpg");
}

.src2 {
  background-image: url("assets/images/architecture-1477101_1280.jpg");
}

.src3 {
  background-image: url("assets/images/architecture-1477099_1280.jpg");
}

.professional__bg {
  max-width: 400px;
  margin: 0 auto;
  background-color: rgb(255 255 255 / 50%);
}

.professional__section-title {
  color: #141412;
}

.professional__button {
  width: 100%;
}

.button__link {
  padding: 0.666em 1.332em;
  margin-bottom: 1.111em;
  font-size: 1.125rem;
  color: #F5F5F5;
  text-align: center;
  background-color: #D4AF37;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.button__link:hover {
  background-color: #C39B30;
  opacity: 1;
}

.news__container {
  margin-bottom: 1.875em;
}

.news__article {
  padding: 1.25em 0;
  border-bottom: 1px solid #ccc;
}

.news__article:last-of-type {
  border-bottom: none;
}

.article__link {
  margin-bottom: 0.833em;
  font-size: 1.5rem;
}

.article__time {
  margin-bottom: 0.833em;
  font-size: 0.875rem;
}

.advantage {
  background-color: #fff;
}

.advantage__section-title {
  margin-bottom: 1.923em;
  color: #141412;
}

.advantage__item {
  margin-bottom: 2.5em;
}

.advantage__title {
  display: flex;
  align-items: center;
  margin-bottom: 0.625em;
  line-height: 1;
  color: #141412;
}

.title__span {
  font-size: 1.25rem;
  line-height: 1.25;
  text-align: center;
}

.advantage__description {
  color: #141412;
}

.recruit {
  background-color: #3e2e28;
}

.recruit__section-title {
  color: #F5F5F5;
}

.recruit__description {
  color: #F5F5F5;
}

.recruit__item {
  display: flex;
  justify-content: center;
  margin-bottom: 1.875em;
}

.recruit__item:last-child {
  margin-bottom: 0;
}

.recruit__img {
  margin-bottom: 0.313em;
}

.link__caption {
  font-size: 1.125rem;
  color: #F5F5F5;
  text-align: center;
}

.relationship {
  background-color: #fff;
}

.relationship__section-title {
  color: #141412;
}

.relationship__outer {
  padding: 0;
}

.relationship__text {
  color: #141412;
}

.relationship__button {
  margin: 0 auto;
}

.relationship__link {
  padding: 0.778em 1.556em;
  margin-bottom: 2.222em;
  font-size: 1.125rem;
  color: #141412;
  border: 2px solid #141412;
}

.technology {
  background-color: #fff;
}

.technology__section-title {
  color: #141412;
}

.technology__description {
  color: #141412;
}

.img__caption {
  padding: 0.769em 0 1.538em;
  font-size: 0.8125rem;
  text-align: center;
}

.initiative {
  background-color: #3e2e28;
}

.contact {
  background-color: #fff;
}

.contact__section-title {
  color: #141412;
}

.dashicons {
  position: relative;
  display: inline-block;
}

.dashicons-admin-users::before {
  font-size: 1.5rem;
  content: "\f110";
}

.container--ac {
  text-align: center;
}

.contact__tel {
  margin-bottom: 1.875em;
}

.tel {
  margin-bottom: 0.556em;
  font-size: 1.125rem;
  color: #141412;
}

.tel__link {
  margin-right: 1em;
  font-size: 1.625rem;
  line-height: 1;
  color: #141412;
}

.tel__icon {
  margin-right: 0;
  font-size: 1.625rem;
}

.email {
  margin-bottom: 0.556em;
  font-size: 1.125rem;
  color: #141412;
}

.contact__button {
  margin: 0 auto;
}

.contact__link {
  padding: 0.278em 1.111em;
  font-size: 1.125rem;
  background-color: #D4AF37;
  border-radius: 4px;
}

.contact__link:hover {
  background-color: #C39B30;
  opacity: 1;
}

.company-profile__container {
  margin-bottom: 3.571em;
}

.company-profile__info {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2.143em;
  border-top: 1px solid #ccc;
}

.info__item,
.info__detail {
  padding: 1.071em 0;
  border-bottom: 1px solid #ccc;
}

.info__item {
  width: 30%;
}

.info__detail {
  width: 70%;
}

.l-footer {
  height: 359px;
}

@media screen and (min-width: 426px) {
  .company-profile__info,
  .googlemap {
    max-width: 400px;
    margin-right: auto;
    margin-left: auto;
  }

  .googlemap {
    height: 35vw;
  }
}
@media screen and (min-width: 769px) {
  .l-main {
    margin-top: 8.625em;
    min-height: calc(100vh - 8.625em - 359px);
  }

  .section-title {
    font-size: 2.25rem;
  }

  .text {
    width: 47.5%;
  }

  .container--small {
    width: 47.5%;
  }

  .professional {
    padding: 6.25em 2.93%;
  }

  .professional__bg {
    width: 50%;
    max-width: none;
    margin: 0;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 50%);
  }

  .professional__section-title {
    margin-bottom: 0.769em;
  }

  .advantage__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .advantage__item {
    width: 33.3333333333%;
    padding: 1.786em 1.071em;
    margin-bottom: 0;
    transition: 0.3s;
  }

  .advantage__item:hover {
    background-color: #3e2e28;
  }

  .advantage__title {
    align-items: flex-start;
  }

  .advantage__item:hover .advantage__title {
    color: #fff;
  }

  .advantage__item:hover .advantage__description {
    color: #fff;
  }

  .recruit__list {
    display: flex;
    justify-content: space-between;
  }

  .recruit__item {
    width: calc(33.3333333333% - 1.875em);
    margin-bottom: 0;
  }

  .recruit__item:last-child {
    margin-right: 0;
  }

  .recruit__img {
    height: calc(100% - 2.001em);
  }

  .relationship__outer {
    position: relative;
  }

  .relationship__text {
    margin-bottom: 14em;
  }

  .relationship__link {
    margin-bottom: 0;
  }

  .relationship__container {
    position: absolute;
    top: 0;
    right: 0;
  }

  .section-title--mbs {
    margin-bottom: 0.556em;
  }

  .dashicons-admin-users::before {
    font-size: 2.25rem;
  }

  .contact__tel {
    margin-bottom: 0;
  }

  .tel__link {
    margin-bottom: 0;
    font-size: 2rem;
  }

  .contact__link {
    font-size: 1.5rem;
  }

  .company-profile__info,
  .googlemap {
    width: 47.5%;
    max-width: 100%;
    margin: 0;
  }

  .googlemap {
    height: 300px;
  }
}
@media screen and (min-width: 1025px) {
  .l-main {
    margin-top: 6.25em;
    min-height: calc(100vh - 6.25em - 359px);
  }

  .professional__button {
    text-align: center;
  }

  .button__link {
    display: inline-block;
    font-size: 1.5rem;
  }

  .button__icon {
    font-size: 1.5rem;
  }
}

.c-button {
  margin: 0 auto;
}

.c-button__link {
  padding: 0.75em 1.5em;
  color: #fff;
  background-color: #D4AF37;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.c-button__link:hover {
  background-color: #C39B30;
  opacity: 1;
}

.post-link {
  display: flex;
  justify-content: center;
}

.post-link_item {
  padding: 0 15px;
}

.hide {
  display: none;
}

.nav-links {
  display: flex;
  justify-content: center;
}

.page-numbers {
  padding: 0 15px;
}

.current {
  position: relative;
}

.current::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 10px;
  height: 10px;
  content: "";
  border-bottom: 1px solid #fff;
  transform: translateX(-50%);
}