@charset "UTF-8";
/*! オートレガーレ / トップページ */
#home_kv {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  background-color: #0b0907;
  overflow: hidden;
}
@media only screen and (max-width: 640px) {
  #home_kv {
    min-height: 560px;
  }
}
#home_kv .kv_media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
#home_kv .kv_media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 9, 7, 0.72) 0%, rgba(11, 9, 7, 0.14) 38%, rgba(11, 9, 7, 0.82) 100%), linear-gradient(90deg, rgba(11, 9, 7, 0.7) 0%, rgba(11, 9, 7, 0) 62%);
  z-index: 1;
}
#home_kv .kv_slides {
  position: absolute;
  inset: 0;
}
#home_kv .kv_slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: kv_slide_fade 21s linear infinite;
}
#home_kv .kv_slide picture {
  display: block;
  width: 100%;
  height: 100%;
}
#home_kv .kv_slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kv_zoom 21s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}
#home_kv .kv_slide:nth-child(1) {
  animation-delay: -1.2s;
}
#home_kv .kv_slide:nth-child(1) img {
  animation-delay: -1.2s;
}
#home_kv .kv_slide:nth-child(2) {
  animation-delay: 5.8s;
}
#home_kv .kv_slide:nth-child(2) img {
  animation-delay: 5.8s;
}
#home_kv .kv_slide:nth-child(3) {
  animation-delay: 12.8s;
}
#home_kv .kv_slide:nth-child(3) img {
  animation-delay: 12.8s;
}
#home_kv .main_width {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding-top: 84px;
  padding-bottom: clamp(72px, 9vh, 120px);
}
#home_kv .kv_body {
  max-width: 1080px;
  color: #f3eee5;
}
#home_kv .kv_label {
  font-family: "Oswald", "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: #d98a35;
  animation: kv_rise 1.1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.25s both;
}
#home_kv .kv_label::before {
  content: "";
  width: 40px;
  height: 1px;
  background-color: currentColor;
  animation: kv_line 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) 0.6s both;
}
#home_kv h1 {
  font-size: clamp(36px, 6.2vw, 82px);
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.28;
  text-shadow: 0 2px 30px rgba(11, 9, 7, 0.5);
  animation: kv_rise 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) 0.45s both;
}
#home_kv .kv_lead {
  max-width: 30em;
  margin-top: 24px;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 2.1;
  text-shadow: 0 2px 20px rgba(11, 9, 7, 0.6);
  animation: kv_rise 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) 0.72s both;
}
#home_kv .kv_scroll {
  position: absolute;
  right: clamp(20px, 5vw, 60px);
  bottom: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: #a79c8c;
  animation: kv_rise 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) 1s both;
}
@media only screen and (max-width: 640px) {
  #home_kv .kv_scroll {
    display: none;
  }
}
#home_kv .kv_scroll span {
  font-family: "Oswald", "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 10px;
  writing-mode: vertical-rl;
}
#home_kv .kv_scroll::after {
  content: "";
  width: 1px;
  height: 76px;
  background: linear-gradient(180deg, rgba(217, 138, 53, 0.9), rgba(217, 138, 53, 0));
  animation: kv_scroll_line 2.6s ease-in-out infinite;
}

@keyframes kv_zoom {
  0% {
    transform: scale(1.12);
  }
  39.0476190476% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes kv_slide_fade {
  0% {
    opacity: 0;
  }
  5.7142857143% {
    opacity: 1;
  }
  33.3333333333% {
    opacity: 1;
  }
  39.0476190476% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes kv_rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes kv_line {
  from {
    width: 0;
  }
  to {
    width: 40px;
  }
}
@keyframes kv_fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  #home_kv .kv_slide img {
    animation: none;
    transform: none;
  }
  #home_kv .kv_label,
  #home_kv h1,
  #home_kv .kv_lead,
  #home_kv .kv_scroll {
    animation-name: kv_fade;
  }
  #home_kv .kv_label::before {
    animation: none;
    width: 40px;
  }
  #home_kv .kv_scroll::after {
    animation: none;
  }
}
@keyframes kv_scroll_line {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  45% {
    transform: scaleY(1);
    transform-origin: top;
  }
  55% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
#home_concept {
  padding-top: clamp(72px, 9vw, 128px);
  padding-bottom: clamp(72px, 9vw, 128px);
}
#home_concept .concept_wrap {
  display: flex;
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
}
@media only screen and (max-width: 900px) {
  #home_concept .concept_wrap {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }
}
#home_concept .concept_txt {
  flex: 1 1 0;
  min-width: 0;
}
#home_concept .concept_txt .sec_head {
  margin-bottom: 0;
}
#home_concept .concept_body {
  max-width: 40em;
  margin-top: 28px;
  color: #a79c8c;
  font-size: 15px;
  line-height: 2.2;
}
#home_concept .concept_body p + p {
  margin-top: 1.6em;
}
#home_concept .concept_sign {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(243, 238, 229, 0.14);
}
#home_concept .concept_sign .sign_role {
  color: #a79c8c;
  font-size: 12px;
  letter-spacing: 0.1em;
}
#home_concept .concept_sign .sign_name {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
#home_concept .concept_img {
  flex-shrink: 0;
  width: min(46%, 520px);
  position: relative;
}
@media only screen and (max-width: 900px) {
  #home_concept .concept_img {
    width: 100%;
  }
}
#home_concept .concept_img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
#home_concept .concept_img::after {
  content: "";
  position: absolute;
  left: -10px;
  bottom: -10px;
  width: 70px;
  height: 70px;
  border-left: 1px solid #d98a35;
  border-bottom: 1px solid #d98a35;
}

#home_service {
  padding-top: clamp(72px, 9vw, 128px);
  padding-bottom: clamp(72px, 9vw, 128px);
}
#home_service .service_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 3vw, 48px) clamp(20px, 2.6vw, 40px);
}
@media only screen and (max-width: 640px) {
  #home_service .service_list {
    grid-template-columns: 1fr;
  }
}
#home_service .service_band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(24px, 3vw, 48px);
  padding: clamp(20px, 2.4vw, 28px) clamp(20px, 2.6vw, 32px);
  border: 1px solid rgba(28, 24, 19, 0.14);
  background-color: #fbf9f6;
  transition: border-color 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
#home_service .service_band .band_en {
  font-family: "Oswald", "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8e5417;
  font-size: 11px;
}
#home_service .service_band h3 {
  margin-top: 6px;
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 900;
  letter-spacing: 0.02em;
  transition: color 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
#home_service .service_band p {
  max-width: 46em;
  margin-top: 8px;
  color: #6a6154;
  font-size: 13px;
  line-height: 1.9;
}
#home_service .service_band .band_link {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 10px;
  color: #8e5417;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
#home_service .service_band .band_link::after {
  content: "";
  width: 18px;
  height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: skewX(45deg);
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
@media only screen and (min-width: 1025px) {
  #home_service .service_band:hover {
    border-color: #8e5417;
  }
  #home_service .service_band:hover h3 {
    color: #8e5417;
  }
  #home_service .service_band:hover .band_link::after {
    transform: skewX(45deg) translateX(6px);
  }
}
@media only screen and (max-width: 640px) {
  #home_service .service_band {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}
#home_service .service_set a {
  display: block;
  height: 100%;
}
#home_service .service_set .img_wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background-color: #e3ddd1;
}
#home_service .service_set .img_wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
#home_service .service_set .img_wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(217, 138, 53, 0) 40%, rgba(142, 84, 23, 0.42) 100%);
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
#home_service .service_set .txt_wrap {
  padding-top: 22px;
}
#home_service .service_set .service_en {
  font-family: "Oswald", "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8e5417;
  font-size: 11px;
}
#home_service .service_set h3 {
  margin-top: 8px;
  font-size: clamp(19px, 1.7vw, 24px);
  font-weight: 900;
  letter-spacing: 0.02em;
}
#home_service .service_set p {
  max-width: 32em;
  margin-top: 12px;
  color: #6a6154;
  font-size: 14px;
  line-height: 1.95;
}
#home_service .service_set .more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  color: #8e5417;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
#home_service .service_set .more::after {
  content: "";
  width: 18px;
  height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: skewX(45deg);
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
@media only screen and (min-width: 1025px) {
  #home_service .service_set a:hover .img_wrap img {
    transform: scale(1.06);
  }
  #home_service .service_set a:hover .img_wrap::after {
    opacity: 1;
  }
  #home_service .service_set a:hover .more::after {
    transform: skewX(45deg) translateX(6px);
  }
}

#home_works {
  padding-top: clamp(72px, 9vw, 128px);
  padding-bottom: clamp(72px, 9vw, 128px);
}

#home_reason {
  padding-top: clamp(72px, 9vw, 128px);
  padding-bottom: clamp(72px, 9vw, 128px);
}
#home_reason .reason_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3vw, 56px);
}
@media only screen and (max-width: 900px) {
  #home_reason .reason_list {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
#home_reason .reason_set {
  padding-top: 28px;
  border-top: 1px solid rgba(28, 24, 19, 0.14);
}
@media only screen and (max-width: 900px) {
  #home_reason .reason_set {
    padding: 28px 0;
  }
  #home_reason .reason_set:last-child {
    border-bottom: 1px solid rgba(28, 24, 19, 0.14);
  }
}
#home_reason .reason_set .reason_num {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: #8e5417;
  font-family: "Oswald", "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  line-height: 1;
}
#home_reason .reason_set .reason_num .num {
  font-size: clamp(40px, 4.6vw, 60px);
  letter-spacing: 0.01em;
}
#home_reason .reason_set .reason_num .unit {
  font-size: clamp(15px, 1.4vw, 19px);
  letter-spacing: 0.08em;
}
#home_reason .reason_set h3 {
  margin-top: 18px;
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 900;
  letter-spacing: 0.02em;
}
#home_reason .reason_set p {
  margin-top: 12px;
  color: #6a6154;
  font-size: 14px;
  line-height: 1.95;
}

#home_news {
  padding-top: clamp(72px, 9vw, 128px);
  padding-bottom: clamp(72px, 9vw, 128px);
}
#home_news .news_wrap {
  display: flex;
  gap: clamp(32px, 5vw, 88px);
}
@media only screen and (max-width: 900px) {
  #home_news .news_wrap {
    flex-direction: column;
    gap: 32px;
  }
}
#home_news .news_head {
  flex-shrink: 0;
  width: 260px;
}
@media only screen and (max-width: 900px) {
  #home_news .news_head {
    width: 100%;
  }
}
#home_news .news_head .sec_head {
  margin-bottom: 24px;
}
#home_news .news_head .news_more .btn {
  width: 100%;
  min-width: 0;
}
@media only screen and (max-width: 900px) {
  #home_news .news_head .news_more .btn {
    width: auto;
    min-width: 240px;
  }
}
@media only screen and (max-width: 640px) {
  #home_news .news_head .news_more .btn {
    width: 100%;
    min-width: 0;
  }
}
#home_news .news_list {
  flex: 1 1 0;
  min-width: 0;
}