@charset "UTF-8";
/*! オートレガーレ / 全ページ共通スタイル */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: #14110e;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  padding: 0;
  color: #1c1813;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
  font-feature-settings: "palt" 1;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 900;
  line-height: 1.4;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img,
picture,
video,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
  background-color: rgba(0, 0, 0, 0.06);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

input,
textarea,
select,
button {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  line-height: inherit;
  -webkit-appearance: none;
  appearance: none;
}

button {
  cursor: pointer;
}

table {
  width: 100%;
  border-collapse: collapse;
}

:focus-visible {
  outline: 2px solid #d98a35;
  outline-offset: 3px;
}

.sr_only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip_link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 999;
  padding: 12px 20px;
  background-color: #d98a35;
  color: #14110e;
  font-weight: 900;
  transition: top 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.skip_link:focus {
  top: 16px;
}

.main_width {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, 5vw, 60px);
  padding-right: clamp(20px, 5vw, 60px);
}

#wrapper {
  overflow-x: hidden;
}

.br_sp {
  display: none;
}
@media only screen and (max-width: 640px) {
  .br_sp {
    display: inline;
  }
}

.sec_night {
  position: relative;
  background-color: #14110e;
  color: #f3eee5;
}
.sec_night::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(217, 138, 53, 0) 0%, rgba(217, 138, 53, 0.85) 50%, rgba(217, 138, 53, 0) 100%);
}
.sec_night::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1000px, 92%);
  height: 180px;
  transform: translateX(-50%);
  background: radial-gradient(60% 100% at 50% 0%, rgba(217, 138, 53, 0.16) 0%, rgba(217, 138, 53, 0) 70%);
  pointer-events: none;
}

.sec_day {
  background-color: #efeae1;
  color: #1c1813;
}

.sec_paper {
  background-color: #fbf9f6;
  color: #1c1813;
}

.sec_head {
  margin-bottom: clamp(36px, 4.5vw, 64px);
}
.sec_head .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: 14px;
  color: #d98a35;
}
.sec_head .label::before {
  content: "";
  width: 28px;
  height: 1px;
  background-color: currentColor;
}
.sec_head h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.35;
}
.sec_head .lead {
  max-width: 40em;
  margin-top: 20px;
  line-height: 2;
}

.sec_day .sec_head .label,
.sec_paper .sec_head .label {
  color: #8e5417;
}

.sec_night .sec_head .lead {
  color: #a79c8c;
}

.sec_day .sec_head .lead,
.sec_paper .sec_head .lead {
  color: #6a6154;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 240px;
  padding: 18px 26px;
  border: 1px solid #d98a35;
  color: #d98a35;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: background-color 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), color 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.btn::after {
  content: "";
  width: 22px;
  height: 6px;
  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) {
  .btn:hover {
    background-color: #d98a35;
    color: #14110e;
  }
  .btn:hover::after {
    transform: skewX(45deg) translateX(6px);
  }
}
.btn.btn_fill {
  background-color: #d98a35;
  color: #14110e;
}
@media only screen and (min-width: 1025px) {
  .btn.btn_fill:hover {
    background-color: #f0b269;
    border-color: #f0b269;
  }
}
.btn.btn_day {
  border-color: #8e5417;
  color: #8e5417;
}
@media only screen and (min-width: 1025px) {
  .btn.btn_day:hover {
    background-color: #8e5417;
    color: #fbf9f6;
  }
}
@media only screen and (max-width: 640px) {
  .btn {
    width: 100%;
    min-width: 0;
  }
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 110;
  width: 100%;
  height: 84px;
  background-color: rgba(20, 17, 14, 0);
  border-bottom: 1px solid rgba(243, 238, 229, 0);
  transition: background-color 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), border-color 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), height 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
@media only screen and (max-width: 1024px) {
  #header {
    height: 62px;
  }
}
#header.is_solid {
  background-color: rgba(11, 9, 7, 0.94);
  border-bottom-color: rgba(243, 238, 229, 0.14);
}
#header .main_width {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  height: 100%;
}

#header_logo {
  flex-shrink: 0;
  margin-right: auto;
  --logo_h: 16.5px;
}
@media only screen and (max-width: 640px) {
  #header_logo {
    --logo_h: clamp(13.8px, 4.5vw, 16.5px);
  }
}
#header_logo a {
  display: block;
  color: #f3eee5;
}
#header_logo .logo_lockup {
  display: block;
  width: auto;
  height: var(--logo_h);
}
#header_logo .logo_jp {
  display: block;
  padding-left: min(calc(var(--logo_h) * 2.3906), calc(var(--logo_h) * 10.161 - 124px));
  margin-top: 4px;
  color: #a79c8c;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.24em;
  line-height: 1;
}
@media only screen and (min-width: 1025px) {
  #header_logo a:hover .logo_lockup {
    color: #d98a35;
  }
}

@media only screen and (max-width: 1024px) {
  #gnavi {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 110;
    width: min(360px, 86vw);
    height: 100dvh;
    padding: calc(62px + 24px) 28px calc(40px + env(safe-area-inset-bottom));
    overflow-y: auto;
    background-color: #0b0907;
    border-left: 1px solid rgba(243, 238, 229, 0.14);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  #gnavi.is_open {
    transform: translateX(0);
    visibility: visible;
  }
}
#gnavi > ul {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
}
@media only screen and (max-width: 1024px) {
  #gnavi > ul {
    display: block;
  }
}
@media only screen and (max-width: 1024px) {
  #gnavi > ul > li {
    border-bottom: 1px solid rgba(243, 238, 229, 0.14);
  }
}
#gnavi > ul > li > a {
  position: relative;
  display: block;
  color: #f3eee5;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
@media only screen and (max-width: 1024px) {
  #gnavi > ul > li > a {
    padding: 18px 0;
    font-size: 16px;
  }
}
#gnavi > ul > li > a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #d98a35;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
@media only screen and (max-width: 1024px) {
  #gnavi > ul > li > a::after {
    display: none;
  }
}
#gnavi > ul > li > a[aria-current=page] {
  color: #d98a35;
}
#gnavi > ul > li > a[aria-current=page]::after {
  transform: scaleX(1);
}
@media only screen and (min-width: 1025px) {
  #gnavi > ul > li > a:hover {
    color: #d98a35;
  }
  #gnavi > ul > li > a:hover::after {
    transform: scaleX(1);
  }
}
#gnavi > ul > li.nav_tel a {
  font-family: "Oswald", "Zen Kaku Gothic New", sans-serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media only screen and (max-width: 1024px) {
  #gnavi > ul > li.nav_tel a {
    padding: 18px 0;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1200px) {
  #gnavi > ul > li.nav_tel {
    display: none;
  }
}
@media only screen and (min-width: 1025px) {
  #gnavi > ul > li.nav_sub {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  #gnavi > ul > li.nav_contact {
    border-bottom: none;
    margin-top: 24px;
  }
}
#gnavi > ul > li.nav_contact a {
  padding: 12px 22px;
  background-color: #d98a35;
  color: #14110e;
  font-weight: 900;
  white-space: nowrap;
}
#gnavi > ul > li.nav_contact a::after {
  display: none;
}
@media only screen and (max-width: 1024px) {
  #gnavi > ul > li.nav_contact a {
    padding: 16px;
    text-align: center;
  }
}
@media only screen and (min-width: 1025px) {
  #gnavi > ul > li.nav_contact a:hover {
    background-color: #f0b269;
    color: #14110e;
  }
}

#jsSearchToggle {
  position: relative;
  z-index: 120;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #f3eee5;
  transition: color 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
#jsSearchToggle svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  overflow: visible;
}
#jsSearchToggle .icon_close {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%) rotate(-90deg);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}
#jsSearchToggle .icon_glass {
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}
#jsSearchToggle.is_open {
  color: #d98a35;
}
#jsSearchToggle.is_open .icon_glass {
  transform: rotate(90deg);
  opacity: 0;
}
#jsSearchToggle.is_open .icon_close {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 1;
}
@media only screen and (min-width: 1025px) {
  #jsSearchToggle:hover {
    color: #d98a35;
  }
}

#header_search {
  position: relative;
  position: fixed;
  top: 84px;
  left: 0;
  z-index: 99;
  width: 100%;
  background-color: rgba(11, 9, 7, 0.97);
  border-bottom: 1px solid rgba(243, 238, 229, 0.14);
  transform: translateY(-14px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
#header_search::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(217, 138, 53, 0) 0%, rgba(217, 138, 53, 0.85) 50%, rgba(217, 138, 53, 0) 100%);
}
#header_search::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1000px, 92%);
  height: 180px;
  transform: translateX(-50%);
  background: radial-gradient(60% 100% at 50% 0%, rgba(217, 138, 53, 0.16) 0%, rgba(217, 138, 53, 0) 70%);
  pointer-events: none;
}
@media only screen and (max-width: 1024px) {
  #header_search {
    top: 62px;
  }
}
#header_search.is_open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
#header_search::after {
  top: auto;
  bottom: -180px;
  transform: translateX(-50%) rotate(180deg);
}
#header_search .search_form {
  position: relative;
  z-index: 1;
  padding: clamp(26px, 3vw, 40px) 0 clamp(24px, 2.6vw, 34px);
}
#header_search .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: 14px;
  color: #d98a35;
}
#header_search .label::before {
  content: "";
  width: 28px;
  height: 1px;
  background-color: currentColor;
}
#header_search .search_field {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(243, 238, 229, 0.32);
  transition: border-color 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
#header_search .search_field:focus-within {
  border-bottom-color: #d98a35;
}
@media only screen and (max-width: 640px) {
  #header_search .search_field {
    gap: 10px;
  }
}
#header_search input[type=search] {
  flex: 1 1 0;
  min-width: 0;
  padding: 12px 0;
  color: #f3eee5;
  font-size: 16px;
  letter-spacing: 0.02em;
}
#header_search input[type=search]::placeholder {
  color: rgba(167, 156, 140, 0.75);
}
#header_search input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}
#header_search .search_submit {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 24px;
  background-color: #d98a35;
  color: #14110e;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: background-color 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
@media only screen and (min-width: 1025px) {
  #header_search .search_submit:hover {
    background-color: #f0b269;
  }
}
@media only screen and (max-width: 640px) {
  #header_search .search_submit {
    padding: 11px 16px;
  }
}
#header_search .search_hint {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}
@media only screen and (max-width: 640px) {
  #header_search .search_hint {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
#header_search .search_hint .hint_label {
  flex-shrink: 0;
  color: #a79c8c;
  font-size: 11px;
  letter-spacing: 0.08em;
}
#header_search .search_hint ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
#header_search .search_hint a {
  display: block;
  padding: 5px 12px;
  border: 1px solid rgba(243, 238, 229, 0.14);
  color: #a79c8c;
  font-size: 12px;
  letter-spacing: 0.04em;
  transition: border-color 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), color 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
@media only screen and (min-width: 1025px) {
  #header_search .search_hint a:hover {
    border-color: #d98a35;
    color: #d98a35;
  }
}

#jsNavToggle {
  display: none;
  position: relative;
  z-index: 120;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
}
@media only screen and (max-width: 1024px) {
  #jsNavToggle {
    display: block;
  }
}
#jsNavToggle span {
  position: absolute;
  left: 11px;
  width: 22px;
  height: 1px;
  background-color: #f3eee5;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}
#jsNavToggle span:nth-child(1) {
  top: 16px;
}
#jsNavToggle span:nth-child(2) {
  top: 22px;
}
#jsNavToggle span:nth-child(3) {
  top: 28px;
}
#jsNavToggle.is_open span:nth-child(1) {
  transform: translateY(6px) rotate(38deg);
}
#jsNavToggle.is_open span:nth-child(2) {
  opacity: 0;
}
#jsNavToggle.is_open span:nth-child(3) {
  transform: translateY(-6px) rotate(-38deg);
}

#nav_overlay {
  position: fixed;
  inset: 0;
  z-index: 105;
  background-color: rgba(11, 9, 7, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
#nav_overlay.is_open {
  opacity: 1;
  visibility: visible;
}

.page_head {
  position: relative;
  padding-top: calc(84px + clamp(56px, 7vw, 96px));
  padding-bottom: clamp(48px, 6vw, 80px);
  background-color: #14110e;
  color: #f3eee5;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .page_head {
    padding-top: calc(62px + 48px);
  }
}
.page_head .head_bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page_head .head_bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page_head .head_bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 9, 7, 0.88) 0%, rgba(11, 9, 7, 0.72) 45%, rgba(20, 17, 14, 0.96) 100%);
}
.page_head .main_width {
  position: relative;
  z-index: 1;
}
.page_head .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: 12px;
  color: #d98a35;
}
.page_head .label::before {
  content: "";
  width: 28px;
  height: 1px;
  background-color: currentColor;
}
.page_head h1 {
  font-size: clamp(30px, 4.2vw, 52px);
  font-weight: 900;
  letter-spacing: 0.02em;
}
.page_head .head_lead {
  max-width: 40em;
  margin-top: 18px;
  color: #a79c8c;
  line-height: 2;
}

.breadcrumb {
  padding: 14px 0;
  background-color: #0b0907;
  color: #a79c8c;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}
.breadcrumb ol li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb ol li:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(-45deg);
  opacity: 0.6;
}
@media only screen and (min-width: 1025px) {
  .breadcrumb ol li a:hover {
    color: #d98a35;
  }
}
.breadcrumb .breadcrumb {
  padding: 0;
  background-color: transparent;
}

.works_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
@media only screen and (max-width: 900px) {
  .works_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 640px) {
  .works_list {
    grid-template-columns: 1fr;
  }
}

.work_set a {
  display: block;
}
.work_set .img_wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background-color: #1e1a15;
}
.work_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), opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  opacity: 0.86;
}
.work_set .txt_wrap {
  padding-top: 16px;
}
.work_set .work_cat {
  font-family: "Oswald", "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d98a35;
  font-size: 10px;
}
.work_set h3 {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}
.work_set p:not(.work_cat) {
  margin-top: 8px;
  color: #a79c8c;
  font-size: 13px;
  line-height: 1.8;
}
@media only screen and (min-width: 1025px) {
  .work_set a:hover .img_wrap img {
    transform: scale(1.06);
    opacity: 1;
  }
  .work_set a:hover h3 {
    color: #d98a35;
  }
}

.sec_day .work_set .img_wrap,
.sec_paper .work_set .img_wrap {
  background-color: #e3ddd1;
}
.sec_day .work_set .work_cat,
.sec_paper .work_set .work_cat {
  color: #8e5417;
}
.sec_day .work_set p:not(.work_cat),
.sec_paper .work_set p:not(.work_cat) {
  color: #6a6154;
}
@media only screen and (min-width: 1025px) {
  .sec_day .work_set a:hover h3,
  .sec_paper .work_set a:hover h3 {
    color: #8e5417;
  }
}

.news_list {
  border-top: 1px solid rgba(28, 24, 19, 0.14);
}
.news_list li {
  border-bottom: 1px solid rgba(28, 24, 19, 0.14);
}
.news_list a {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 20px 0;
}
@media only screen and (max-width: 640px) {
  .news_list a {
    flex-direction: column;
    gap: 6px;
    padding: 16px 0;
  }
}
.news_list time {
  flex-shrink: 0;
  color: #6a6154;
  font-family: "Oswald", "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
}
.news_list .news_cat {
  flex-shrink: 0;
  padding: 3px 10px;
  border: 1px solid rgba(28, 24, 19, 0.14);
  color: #6a6154;
  font-size: 11px;
  letter-spacing: 0.08em;
}
.news_list .news_title {
  flex: 1 1 0;
  min-width: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}
@media only screen and (min-width: 1025px) {
  .news_list a:hover .news_title {
    color: #8e5417;
  }
}

.sec_night .news_list {
  border-top-color: rgba(243, 238, 229, 0.14);
}
.sec_night .news_list li {
  border-bottom-color: rgba(243, 238, 229, 0.14);
}
.sec_night .news_list time,
.sec_night .news_list .news_cat {
  color: #a79c8c;
}
.sec_night .news_list .news_cat {
  border-color: rgba(243, 238, 229, 0.14);
}
@media only screen and (min-width: 1025px) {
  .sec_night .news_list a:hover .news_title {
    color: #d98a35;
  }
}

.back_link {
  margin-top: clamp(32px, 4vw, 48px);
  text-align: center;
}

#cta_block {
  position: relative;
  padding-top: clamp(72px, 9vw, 128px);
  padding-bottom: clamp(72px, 9vw, 128px);
  background-color: #14110e;
  color: #f3eee5;
  overflow: hidden;
}
#cta_block .cta_bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
#cta_block .cta_bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
#cta_block .cta_bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 9, 7, 0.86) 0%, rgba(11, 9, 7, 0.7) 50%, rgba(11, 9, 7, 0.92) 100%);
}
#cta_block .main_width {
  position: relative;
  z-index: 1;
}
#cta_block .cta_inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
#cta_block .label {
  font-family: "Oswald", "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d98a35;
}
#cta_block h2 {
  margin-top: 14px;
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 900;
  letter-spacing: 0.02em;
}
#cta_block p {
  max-width: 40em;
  margin: 18px auto 0;
  color: #a79c8c;
  line-height: 2;
}
#cta_block .cta_action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 44px);
  margin-top: 40px;
}
@media only screen and (max-width: 640px) {
  #cta_block .cta_action {
    flex-direction: column;
    gap: 24px;
  }
}
#cta_block .cta_tel {
  text-align: left;
}
@media only screen and (max-width: 640px) {
  #cta_block .cta_tel {
    text-align: center;
  }
}
#cta_block .cta_tel .tel_label {
  font-family: "Oswald", "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: block;
  color: #a79c8c;
  font-size: 11px;
}
#cta_block .cta_tel .tel_num {
  display: inline-block;
  margin-top: 4px;
  color: #f3eee5;
  font-family: "Oswald", "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
@media only screen and (min-width: 1025px) {
  #cta_block .cta_tel .tel_num:hover {
    color: #d98a35;
  }
}
#cta_block .cta_tel .tel_time {
  margin-top: 4px;
  color: #a79c8c;
  font-size: 12px;
  line-height: 1.6;
}

#footer {
  padding-top: clamp(56px, 6vw, 88px);
  background-color: #0b0907;
  color: #f3eee5;
  border-top: 1px solid #2c2620;
}

#footer_top {
  display: flex;
  justify-content: space-between;
  gap: clamp(32px, 5vw, 80px);
  padding-bottom: clamp(40px, 5vw, 64px);
}
@media only screen and (max-width: 900px) {
  #footer_top {
    flex-direction: column;
    gap: 40px;
  }
}

#footer_company {
  max-width: 340px;
}
#footer_company .logo_en {
  display: block;
  font-family: "Oswald", "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.1;
}
#footer_company .logo_jp {
  display: block;
  margin-top: 4px;
  color: #a79c8c;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.24em;
}
#footer_company address {
  margin-top: 22px;
  color: #a79c8c;
  font-size: 14px;
  font-style: normal;
  line-height: 1.9;
}
#footer_company .footer_tel {
  display: inline-block;
  margin-top: 12px;
  font-family: "Oswald", "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media only screen and (min-width: 1025px) {
  #footer_company .footer_tel:hover {
    color: #d98a35;
  }
}

#footer_navi {
  display: flex;
  gap: clamp(32px, 5vw, 72px);
}
@media only screen and (max-width: 640px) {
  #footer_navi {
    flex-wrap: wrap;
    gap: 28px 40px;
  }
}
#footer_navi .navi_set .navi_title {
  font-family: "Oswald", "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #d98a35;
  font-size: 11px;
}
#footer_navi .navi_set li + li {
  margin-top: 12px;
}
#footer_navi .navi_set a {
  color: #a79c8c;
  font-size: 14px;
}
@media only screen and (min-width: 1025px) {
  #footer_navi .navi_set a:hover {
    color: #d98a35;
  }
}

#footer_copy {
  padding: 22px 0 calc(22px + env(safe-area-inset-bottom));
  border-top: 1px solid #2c2620;
}
#footer_copy p {
  color: #a79c8c;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s cubic-bezier(0.22, 0.61, 0.36, 1), transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal.is_in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .reveal.is_in {
    opacity: 1;
    transform: none;
  }
}