@charset "utf-8";
/* CSS Document */

html {
  font-size: 62.5%;
  font-feature-settings: "palt";
  scroll-behavior: smooth;
}
body {
  font-family: "Shippori Mincho", serif;
  color: #fff;
  font-size: 16px;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #0B1016;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: #fff;
  transition: .5s;
}
a,
p,
span,
dt,
dd,
th,
td,
h1,
h2,
h3,
h4 {
  letter-spacing: 0.08em;
}
a:hover {
  color: #BFA57D;
}
.SP {
  display: none;
}

a.btn span,
p.btn span {
  display: block;
  width: fit-content;
}
a.btn,
p.btn {
  position: relative;
  display: block;
  width: fit-content;
  border: solid 1px #BFA57D;
  padding: 15px 40px 15px 30px;
  font-size: 14px;
  color: #BFA57D;
  display: flex;
  transition: .5s;
}
a.btn:hover {
  background-color: #BFA57D;
  color: #000;
  transform: translateY(-2px);
}
p.btn {
  background-color: #BFA57D;
  padding: 0;
  transition: .5s;
}
p.btn:hover {
  background-color: #000;
  color: #BFA57D;
  transform: translateY(-2px);
}
p.btn:hover .submit {
  background-color: #000;
  color: #BFA57D;
  transition: .5s;
}
a.btn:hover .arrow::before,
a.btn:hover .arrow::after {
  background-color: #000;
}
p.btn:hover .arrow::before,
p.btn:hover .arrow::after {
  background-color: #BFA57D;
}
p.btn .arrow::before,
p.btn .arrow::after {
  background-color: #000;
}
.arrow {
  display: block;
  width: 10px;
  height: 10px;
}
.arrow::before,
.arrow::after {
  content: "";
  width: 10px;
  height: 1px;
  border-radius: 9999px;
  background-color: #BFA57D;
  transform-origin: calc(100% - 1px) 50%;
  display: block;
}
.arrow::before {
  transform: rotate(45deg);
}
.arrow::after {
  transform: rotate(-45deg);
}
.arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transition: .5s;
}
a:hover .arrow {
  transform: translateX(2px);
}
p.btn:hover .arrow {
  transform: translateX(2px);
}
/* =========================
   Scroll reveal（content unit）
========================= */

.fade_scope {
  perspective: 900px;
  perspective-origin: center;
}
.fade_block {
  opacity: 0;
  transform: translateZ(-50px) scale(0.985);
  filter: blur(12px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    filter 0.8s ease;
  will-change: opacity, transform, filter;
}
.fade_block.is_inview {
  opacity: 1;
  transform: translateZ(0) scale(1);
  filter: blur(0);
}
@media (prefers-reduced-motion: reduce) {
  .fade_block {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}
#home h2,
#page h2,
#single .sec_news_single h1 {
  font-size: 30px;
  line-height: 2em;
  text-align: center;
  color: #fff;
  margin-bottom: 80px;
}
#page h2,
#single .sec_news_single h1 {
  margin-bottom: 0;
}
#single .sec_news_single h1 {
  padding: 0 30px;
}
#single .sec_news_single h1 .label {
  display: flex;
  gap: 20px;
  font-size: 15px;
  justify-content: center;
  align-items: center;
  font-family: "Google Sans Flex", sans-serif;
}
#single .sec_news_single h1 .label span {
  display: block;
  border: solid 1px #BFA57D;
  color: #BFA57D;
  line-height: 1em;
  padding: 8px 10px 5px;
}
#home h2 span,
#page h2 span {
  font-family: "Google Sans Flex", sans-serif;
  color: #BFA57D;
  font-size: 15px;
  display: block;
  letter-spacing: 0.25em;
}
#single .sec_news_single h1 span #home h2::after {
  content: '';
  background-color: #BFA57D;
  height: 41px;
  width: 1px;
  display: block;
  margin: 30px auto 0 auto;
}
.home_cont {
  padding: 120px 0;
}
.wrapp {
  max-width: 1000px;
  margin: 0 auto;
}
/*header*/
header {
  position: fixed;
  z-index: 55;
  width: 100%;
  top: 0;
}
a.logo {
  font-size: 24px;
}
.header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 50px;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.3) 50%,
      rgba(0, 0, 0, 0) 100%);
}
header nav ul {
  display: flex;
  gap: 3.5rem;
  align-items: center;
}
header nav ul li a {
  font-size: 15px;
}
.nav_toggle {
  display: none;
}
.nav_overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 16, 22, 0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease;
  z-index: 40;
}
/* =========================
   top page / FV
========================= */

.fv {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  perspective: 900px;
  perspective-origin: center;
}
.sec_mv {
  position: relative;
  width: 100%;
  height: 100%;
}
.fv_video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 1.6s ease;
}
.sec_mv::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0.35) 45%,
      rgba(0, 0, 0, 0.70));
}
.fv_content {
  position: relative;
  z-index: 2;
}
.fv header {
  position: absolute;
  z-index: 55;
  width: 100%;
}
.fv header,
.fv .fv_content,
.fix_btn {
  opacity: 0;
  transform: translateZ(-40px) scale(0.98);
  filter: blur(10px);
  transition:
    opacity 1.1s ease,
    transform 1.1s ease,
    filter 1.1s ease;
  will-change: opacity, transform, filter;
}
.is_loaded .fv header {
  opacity: 1;
  transform: translateZ(0) scale(1);
  filter: blur(0);
  transition-delay: 0.10s;
}

.is_loaded .fv .fv_content {
  opacity: 1;
  transform: translateZ(0) scale(1);
  filter: blur(0);
  transition-delay: 0.60s;
  position: absolute;
  inset: 0;
  margin: auto;
  height: fit-content;
  text-align: center;
}

.is_loaded .fix_btn {
  opacity: 1;
  transform: translateZ(0) scale(1);
  filter: blur(0);
  transition-delay: 0.75s;
  position: fixed;
  right: 5%;
  bottom: 10%;
  width: fit-content;
  height: fit-content;
  width: fit-content;
}
.is_video_ready .fv .fv_video {
  opacity: 1;
  transition-delay: 0.05s;
}
.is_loaded .fix_btn a {
  background-color: #000;
  transition: 0.5s;
}
.is_loaded .fix_btn a:hover {
  background-color: #BFA57D;
}
/* =========================
   SCROLL indicator
========================= */

.scroll_animation {
  position: absolute;
  left: 50%;
  bottom: 6%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.25em;
  opacity: 0;
  transition: opacity 1s ease;
}
.is_loaded .scroll_animation {
  opacity: 1;
  transition-delay: 1.1s;
}
.scroll_animation::after {
  content: "";
  display: block;
  width: 1px;
  height: 50px;
  margin: 10px auto 0;
  background: rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
  opacity: 0;
}
.scroll_animation::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 1px;
  height: 0;
  background: #fff;
  transform: translateX(-50%);
  animation: scroll_draw 2.8s ease-in-out infinite;
}
@keyframes scroll_draw {
  0% {
    height: 0;
    bottom: 100%;
  }
  30% {
    height: 50px;
    bottom: 0;
  }
  70% {
    height: 50px;
    bottom: 0;
  }
  100% {
    height: 0;
    bottom: -50px;
  }
}
/*sec_philosophy*/
.sec_philosophy .inner p {
  line-height: 2.5em;
  text-align: center;
}
#home .sec_philosophy h2 {
  margin-left: 2rem;
}
#home .sec_philosophy h2 span {
  margin-left: -3rem;
}
/*sec_comitment*/
.story_item {
  display: flex;
  position: relative;
  overflow: hidden;
  align-items: center;
  margin-bottom: 100px;
}
.story_item:last-of-type {
  margin-bottom: 0;
}
.story_media {
  position: relative;
}

.story_media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.story_media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg,
      rgba(11, 16, 22, 1) 0%,
      rgba(11, 16, 22, 0.75) 30%,
      rgba(11, 16, 22, 0.35) 60%,
      rgba(11, 16, 22, 0) 100%);
}
.story_body {
  max-width: 470px;
  color: #fff;
  position: absolute;
  left: 0;
  z-index: 2;
  border: solid 1px rgba(191, 165, 125, 0.2);
  padding: 60px 40px 25px;
}
.story_item:nth-of-type(2) .story_body {
  left: auto;
  right: 0;
}
.sec_comitment .story_item:nth-of-type(odd) {
  flex-direction: row-reverse;
}
.sec_comitment .story_item:nth-of-type(2) .story_media::after {
  background: linear-gradient(270deg,
      rgba(11, 16, 22, 1) 0%,
      rgba(11, 16, 22, 0.75) 30%,
      rgba(11, 16, 22, 0.35) 60%,
      rgba(11, 16, 22, 0) 100%);
}
.story_body h3 {
  font-size: 26px;
  border-bottom: solid 1px #BFA57D;
  width: fit-content;
  padding-bottom: 20px;
  margin-bottom: 35px;
}
.story_body p {
  line-height: 2.5em;
}
.story_body span {
  font-size: 75px;
  opacity: .2;
  color: #BFA57D;
  margin-top: -100px;
  margin-bottom: 40px;
  display: block;
  font-weight: 500;
  margin-left: -30px;
}
/*sec_lineup*/
.sec_lineup .inner {
  display: flex;
  justify-content: center;
  gap: 60px;
}
.sec_lineup dl {
  background-color: #141C26;
  border: solid 1px rgba(160, 164, 168, 0.2);
  max-width: 470px;
  padding: 40px;
  transition: .5s;
}
.sec_lineup dl:hover {
  background-color: #0B1016;
}
.sec_lineup h3 {
  text-align: center;
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 40px;
}
.sec_lineup h3 span {
  display: block;
  font-size: 14px;
  margin-top: 20px;
}
.sec_lineup dd p {
  line-height: 2.5em;
  font-size: 15px;
}
.sec_lineup dd .btn {
  background-color: #BFA57D;
  color: #000;
  margin: 30px auto 0 auto;
}
.sec_lineup dd .btn .arrow::before,
.sec_lineup dd .btn .arrow::after {
  background-color: #000;
}
.sec_lineup dd .btn:hover {
  background-color: #141C26;
  color: #BFA57D;
}
.sec_lineup dd .btn:hover .arrow::before,
.sec_lineup dd .btn:hover .arrow::after {
  background-color: #BFA57D;
}
.sec_lineup .shop_btn {
  margin: 80px auto 0 auto;
}
/*banner_area*/
.banner_area {
  background-image: url(../img/banner.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  min-height: 250px;
  padding: 60px 0;
  width: 100%;
}
.banner_area::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.65);
}
.banner_area .wrapp {
  position: absolute;
  z-index: 2;
  width: fit-content;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: fit-content;
  padding: 60px 0;
}
#home .banner_area h2 {
  margin-bottom: 40px;
}
#home .banner_area h2 span {
  display: inline;
  color: #BFA57D;
  font-size: inherit;
  font-family: inherit;
}
#home .banner_area h2::after {
  content: none;
}
.banner_area p {
  line-height: 2.5em;
  text-align: center;
}
.banner_area .btn {
  background-color: #A63737;
  border: solid 1px #A63737;
  color: #fff;
  margin: 40px auto 0 auto;
}
.banner_area .btn .arrow::before,
.banner_area .btn .arrow::after {
  background-color: #fff;
}
.banner_area .btn:hover .arrow::before,
.banner_area .btn:hover .arrow::after {
  background-color: #A63737;
}
.banner_area .btn:hover {
  background-color: #fff;
  color: #A63737;
}
/*sec_news*/
.sec_news li a {
  display: flex;
  gap: 40px;
  padding: 25px 0;
}

.sec_news li {
  border-top: solid 1px rgba(160, 164, 168, 0.2);
}
.sec_news li:last-of-type {
  border-bottom: solid 1px rgba(160, 164, 168, 0.2);
}
.sec_news li a span {
  font-family: "Google Sans Flex", sans-serif;
  font-size: 15px;
  color: #A0A4A8;
}
#home .sec_news .btn {
  border: none;
  color: #fff;
  margin: 15px 0 0 auto;
}

#home .sec_news .btn .arrow::before,
#home .sec_news .btn .arrow::after {
  background-color: #fff;
}
#home .sec_news .btn:hover .arrow::before,
#home .sec_news .btn:hover .arrow::after {
  background-color: #BFA57D;
}
#home .sec_news .btn:hover {
  background-color: inherit;
  color: #BFA57D;
}
#home .sec_news .arrow::before,
#home .sec_news .arrow::after {
  width: 8px;
}
/*sec_company*/
.sec_company table {
  width: 100%;
  margin-bottom: 80px;
}
.sec_company table tr {
  border-top: solid 1px rgba(160, 164, 168, 0.2);
}
.sec_company table tr:last-of-type {
  border-bottom: solid 1px rgba(160, 164, 168, 0.2);
}
.sec_company table th,
.sec_company table td {
  padding: 25px 20px;
}
.sec_company table th {
  width: 110px;
  font-size: 15px;
  color: #A0A4A8;
}
.sec_company table td {
  padding-left: 60px;
}
.map_cont {
  height: 300px;
  width: 100%;
}
/*sec_contact*/
.sec_contact .inner {
  max-width: 800px;
  margin: 0 auto;
}
.sec_contact .inner input[type="text"],
.sec_contact .inner input[type="email"],
.sec_contact .inner select,
.sec_contact .inner textarea {
  width: 100%;
  padding: 10px;
  background-color: #141C26;
  border: solid 1px rgba(160, 164, 168, 0.2);
  color: #fff;
  font-family: inherit;
}
.sec_contact .inner input,
.sec_contact .inner select,
.sec_contact .inner textarea {
  font-size: 16px;
}
.sec_contact .inner textarea {
  height: 10em;
}
.sec_contact dt {
  color: #A0A4A8;
  font-size: 15px;
  margin-bottom: 15px;
  margin-left: 10px;
}
.sec_contact dt span {
  color: #A63737;
  padding-left: 5px;
}
.sec_contact dd {
  margin-bottom: 40px;
}
.select_cont {
  position: relative;
  width: 100%;
}
.select_cont::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 20px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #A0A4A8;
  border-left: 1px solid #A0A4A8;
  transform: translateY(-50%) rotate(-135deg);
  font-size: 20px;
  pointer-events: none;
}
.sec_contact .inner select {
  width: 100%;
  position: relative;
  padding: 10px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.pp_cont {
  margin: 70px auto 50px auto;
  width: fit-content;
}
.pp_check {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  color: #A0A4A8;
  font-size: 14px;
}
.pp_check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.pp_box {
  width: 15px;
  height: 15px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(11, 16, 22, 0.65);
  position: relative;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.pp_check:hover .pp_box {
  border-color: rgba(191, 165, 125, 0.75);
}
.pp_check input:focus-visible + .pp_box {
  box-shadow: 0 0 0 3px rgba(191, 165, 125, 0.25);
}
.pp_box::before,
.pp_box::after {
  content: "";
  position: absolute;
  height: 1px;
  background: #BFA57D;
  border-radius: 2px;
  left: 3px;
  top: 6px;
  transform-origin: left center;
  transform: scaleX(0) rotate(0deg);
  opacity: 0;
}
.pp_box::before {
  width: 6px;
  transform: scaleX(0) rotate(45deg);
}
.pp_box::after {
  width: 12px;
  left: 7px;
  top: 11px;
  transform: scaleX(0) rotate(-45deg);
}
.pp_check input:checked + .pp_box {
  border-color: rgba(191, 165, 125, 0.9);
  transform: translateZ(0) scale(1.02);
}
.pp_check input:checked + .pp_box::before {
  opacity: 1;
  animation: pp_tick_1 220ms ease-out forwards;
}
.pp_check input:checked + .pp_box::after {
  opacity: 1;
  animation: pp_tick_2 280ms ease-out 120ms forwards;
}
.pp_check input:not(:checked) + .pp_box::before,
.pp_check input:not(:checked) + .pp_box::after {
  animation: none;
}
@keyframes pp_tick_1 {
  from {
    transform: scaleX(0) rotate(45deg);
  }
  to {
    transform: scaleX(1) rotate(45deg);
  }
}
@keyframes pp_tick_2 {
  from {
    transform: scaleX(0) rotate(-45deg);
  }
  to {
    transform: scaleX(1) rotate(-45deg);
  }
}
.pp_text a {
  border-bottom: solid 1px rgba(255, 255, 255, 0.5);
  color: #A0A4A8;
}
.pp_text a:hover {
  color: #BFA57D;
}
.submit {
  cursor: pointer;
  display: block;
  background-color: #BFA57D;
  font-size: inherit;
  font-family: inherit;
  border: none;
  color: #000;
  padding: 15px 40px 15px 30px;
  transition: opacity .5s ease, filter .5s ease;
}
.submit_btn.none {
  opacity: 0.35;
  pointer-events: none;
  filter: grayscale(40%);
  transition: opacity .5s ease, filter .5s ease;
}
.submit_btn {
  margin: 50px auto 0 auto;
  transition: .5s;
}
.sec_contact .inner input,
.sec_contact .inner select,
.sec_contact .inner textarea {
  font-size: 16px;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  box-shadow: none;
  width: 100%;
  box-sizing: border-box;
}
.sec_contact .inner select {
  padding-right: 44px;
}
.pp_check input:focus + .pp_box {
  box-shadow: 0 0 0 3px rgba(191, 165, 125, 0.25);
}
.wpcf7 form.sent .wpcf7-response-output {
  border: solid 1px rgba(255, 255, 255, 0.5) !important;
  text-align: center;
  background-color: #141C26;
  padding: 15px;
  line-height: 2em;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border: solid 1px rgba(255, 255, 255, 0.5) !important;
  text-align: center;
  background-color: #141C26;
  padding: 15px;
  line-height: 2em;
}
/*footer*/
footer {
  text-align: center;
  background-color: #000;
  padding: 50px 0 25px 0;
}
footer a,
footer small {
  color: #A0A4A8;
}
footer small {
  font-size: 13px;
}
footer .sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
footer .sns a {
  font-family: "Google Sans Flex", sans-serif;
  letter-spacing: 0.15em;
}
footer ul {
  display: flex;
  justify-content: center;
  margin: 50px auto 70px auto;
}
footer li {
  border-right: solid 1px #A0A4A8;
  padding: 0 30px;
}
footer li:last-of-type {
  border-right: none;
}
/*page news*/
#page .sec_news .btn {
  margin: 50px auto 0 auto;
}
.page_head {
  position: relative;
  overflow-y: hidden;
  padding: 90px 0;
  text-align: center;
  background: #0B1016;
  margin: 0 auto 80px auto;
  width: 100%;
}
.page_head h2,
.page_head h1 {
  position: relative;
  z-index: 2;
}
.page_head::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  height: 83.333vw;
  background: linear-gradient(#0B1016 2%, rgba(30, 40, 50, 0.65)50%, #0B1016 88%);
  transform: rotate(-90deg);
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.sec_news .pager {
  font-size: 14px;
}
.sec_news .pager ul {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 34px;
  list-style: none;
  padding: 0;
}
.sec_news .pager li {
  border-top: none;
}
.sec_news .pager a,
.sec_news .pager span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  text-decoration: none;
  background: rgba(11, 16, 22, 0.45);
  padding: 0;
}

.sec_news .pager .current {
  border-color: rgba(191, 165, 125, 0.8);
  background: rgba(191, 165, 125, 0.12);
}
.sec_news .pager a.next,
.sec_news .pager a.prev {
  padding: 0 15px;
}
/*page policy*/
.sec_policy .inner {
  max-width: 800px;
  margin: 0 auto;
  background-color: #141C26;
  border: solid 1px rgba(160, 164, 168, 0.2);
}
.sec_policy .inner_cont {
  padding: 70px 60px;
  color: #A0A4A8;
}
.sec_policy p {
  line-height: 2em;
  font-size: 15px;
}
.sec_policy dl {
  margin: 40px 0;
}
.sec_policy dl:first-of-type {
  margin-top: 60px;
}
.sec_policy dt {
  font-size: 18px;
  color: #BFA57D;
  border-bottom: solid 1px rgba(160, 164, 168, 0.2);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.sec_policy dd div {
  margin-top: 30px;
  background-color: rgba(0, 0, 0, 0.2);
  border-left: solid 2px #BFA57D;
  padding: 50px;
}
.sec_policy dd div {
  color: #fff;
}
/*news single*/
#single .sec_news_single {
  line-height: 2;
  letter-spacing: 0.08em;
  -webkit-font-smoothing: antialiased;
}
#single .sec_news_single .btn {
  margin: 50px auto;
}
#single .sec_news_single .inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  z-index: 2;
}
#single .sec_news_single article {
  margin-bottom: 100px;
}
#single .sec_news_single figcaption {
  font-size: 12px;
  color: #A0A4A8;
  margin-top: 10px;
  text-align: center;
}
#single .sec_news_single figure {
  margin: 40px 0;
}
#single .sec_news_single p {
  margin-bottom: 30px;
  text-align: justify;
}
#single .sec_news_single h2 {
  font-size: 24px;
  color: #BFA57D;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 15px;
  margin-top: 60px;
  margin-bottom: 30px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
#single .sec_news_single article a {
  color: #BFA57D;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(191, 165, 125, 0.4);
}
#single .sec_news_single strong {
  color: #fff;
  background: linear-gradient(transparent 70%, rgba(191, 165, 125, 0.4) 70%);
}
#single .sec_news_single h3 {
  font-size: 20px;
  margin-top: 50px;
  margin-bottom: 25px;
  padding-left: 15px;
  border-left: 4px solid #BFA57D;
  line-height: 1.4;
  font-weight: 500;
}
#single .sec_news_single ul {
  margin-bottom: 30px;
  padding-left: 0;
}
#single .sec_news_single ul li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 10px;
  color: #a0a4a8;
}
#single .sec_news_single ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  background: #BFA57D;
  border-radius: 50%;
}
#single .sec_news_single ol {
  margin-bottom: 30px;
  padding-left: 1.5em;
  color: #a0a4a8;
}
#single .sec_news_single ol li {
  margin-bottom: 10px;
  padding-left: 0.5em;
}
#single .sec_news_single blockquote {
  margin: 40px 0;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 4px solid #a0a4a8;
  font-style: italic;
  color: #a0a4a8;
}
#single .sec_news_single blockquote p:last-child {
  margin-bottom: 0;
}
#single .sec_news_single table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  min-width: 500px;
  margin: 40px 0;
}
#single .sec_news_single th {
  background: rgba(255, 255, 255, 0.05);
  color: #BFA57D;
  font-weight: normal;
  width: 30%;
}
#single .sec_news_single th,
#single .sec_news_single td {
  padding: 15px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  font-size: 15px;
}
.post_nav {
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
  margin-bottom: 60px;
}
.nav_next,
.nav_prev {
  width: 45%;
  display: flex;
  flex-direction: column;
}
.post_nav span {
  font-size: 12px;
  color: #a0a4a8;
  margin-bottom: 5px;
  font-family: sans-serif;
}
#single .sec_news_single .post_nav a {
  font-size: 15px;
  line-height: 1.4;
  transition: 0.5s;
  color: #fff;
  text-decoration: none;
}
#single .sec_news_single .post_nav a:hover {
  color: #BFA57D;
}
.nav_next {
  text-align: right;
  align-items: flex-end;
}
/*--------------
----responsive----
--------------*/
@media (max-width:1080px) {
  .wrapp {
    max-width: 90%;
  }
}
@media (max-width:890px) {
  .header_inner {
    padding: 20px;
  }
  header nav ul {
    gap: 20px;
  }
  .sec_lineup .inner {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .home_cont {
    padding: 80px 0;
  }
  .story_item {
    display: block;
    position: static;
    margin-bottom: 60px;
  }
  .story_body {
    position: static;
    flex: none;
    padding: 32px 20px 48px;
    max-width: 100%;
    border: none;
  }
  .story_body span {
    margin-left: 0;
    margin-bottom: 10px;
  }
  .story_media::after {
    background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(30, 40, 50, 0.65)50%, #0B1016 88%);
    ;
    transform: rotate(0deg);
  }
  .sec_comitment .story_item:nth-of-type(even) .story_media::after {
    background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(30, 40, 50, 0.65)50%, #0B1016 88%);
    ;
    transform: rotate(0deg);
  }
  .fix_btn {
    display: none;
  }
  .fix_btn.SP {
    display: block;
  }
  .is_loaded .fix_btn.SP {
    right: 0;
    left: 0;
    bottom: 10px;
    margin: auto;
    width: 100%;
  }
  .is_loaded .fix_btn a.btn {
    width: 95%;
    padding: 15px 0;
    margin: auto;
    justify-content: center;
    background-color: #BFA57D;
    color: #000;
  }
  .is_loaded .fix_btn a.btn .arrow::before,
  .is_loaded .fix_btn a.btn .arrow::after {
    background-color: #000;
  }
  .header_inner {
    padding: 16px 18px;
  }
  #sp_nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(86vw, 360px);
    height: 100dvh;
    padding: 96px 22px 28px;
    z-index: 50;
    background: rgba(11, 16, 22, 0.86);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateX(105%);
    opacity: 0;
    transition: transform .55s ease, opacity .55s ease;
    overflow: auto;
  }
  #sp_nav ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
  #sp_nav a {
    font-size: 16px;
    letter-spacing: 0.06em;
  }
  .nav_toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    background: transparent;
    color: #fff;
    cursor: pointer;
    padding: 8px 6px;
    position: relative;
    z-index: 60;
  }
  .nav_toggle_text {
    font-size: 12px;
    letter-spacing: 0.18em;
    opacity: 0.8;
  }
  .nav_toggle_line {
    width: 26px;
    height: 1px;
    background: rgba(255, 255, 255, 0.9);
    display: block;
    transition: transform .45s ease, opacity .45s ease, background .45s ease;
    transform-origin: center;
  }
  .nav_toggle .nav_toggle_line:nth-of-type(1) {
    position: absolute;
    left: 0;
    top: 10px;
  }
  .nav_toggle .nav_toggle_line:nth-of-type(2) {
    position: absolute;
    left: 0;
    top: 18px;
  }
  .nav_toggle {
    width: 30px;
    height: 20px;
    justify-content: flex-end;
  }
  .is_nav_open .nav_toggle .nav_toggle_line:nth-of-type(1) {
    transform: translateY(4px) rotate(45deg);
    background: rgba(191, 165, 125, 0.95);
  }
  .is_nav_open .nav_toggle .nav_toggle_line:nth-of-type(2) {
    transform: translateY(-4px) rotate(-45deg);
    background: rgba(191, 165, 125, 0.95);
  }
  .is_nav_open #sp_nav {
    transform: translateX(0);
    opacity: 1;
  }
  .is_nav_open .nav_overlay {
    opacity: 1;
    pointer-events: auto;
  }
  .body_lock {
    position: fixed;
    width: 100%;
    overflow: hidden;
  }
  #sp_nav li:last-of-type {
    display: none;
  }
  .sec_lineup .inner {
    flex-wrap: wrap;
  }
  .sec_lineup .inner dt {
    text-align: center;
  }
  footer {
    padding-bottom: 80px;
  }
  .banner_area {
    min-height: 320px;
  }
  #home .banner_area p .SP {
    display: block;
  }
}
@media (max-width: 600px) {
  footer ul {
    display: block;
  }
  footer li {
    border: none;
    margin-bottom: 15px;
  }
  .sec_company table th,
  .sec_company table td {
    padding: 25px 15px;
  }
  .sec_company table td {
    line-height: 1.5em;
  }
  .sec_company table th {
    width: 50px;
  }
  .sec_policy .inner_cont {
    padding: 70px 30px;
  }
  #single .sec_news_single table {
    min-width: auto;
  }
  #single .sec_news_single th,
  #single .sec_news_single td {
    padding: 10px 15px;
  }
  #single .sec_news_single .inner {
    padding: 0;
  }
}
@media (max-width: 500px) {
  body {
    font-size: 14px;
  }
  .page_head {
    padding: 45px 0;
  }
  .sec_policy dd div {
    padding: 50px 20px;
  }
  .sec_policy dt {
    font-size: 16px;
    line-height: 1.5em;
  }
  .sec_policy p {
    font-size: 14px;
  }
  br.SP {
    display: block;
  }
  .home_cont {
    padding: 60px 0;
  }
  #home h2,
  #page h2,
  #single .sec_news_single h1 {
    font-size: 25px;
    margin-bottom: 60px;
  }
  #single .sec_news_single h1 {
    line-height: 2em;
    padding: 0 20px;
  }
  #page h2 {
    margin-bottom: 30px;
  }
  #home h2 span,
  #page h2 span {
    font-size: 12px;
  }
  .story_body span {
    font-size: 65px;
  }
  .story_body h3,
  .sec_lineup h3 {
    font-size: 20px;
  }
  #home .banner_area .SP {
    display: block;
  }
  .banner_area {
    min-height: 370px;
  }
  .sec_news li a {
    display: block;
  }
  .sec_news li a span {
    font-size: 11px;
    display: block;
    margin-bottom: 10px;
  }
  .sec_lineup dl {
    padding: 40px 20px;
  }
  #single .sec_news_single h1 .label {
    font-size: 12px;
  }
  .post_nav {
    display: block;
  }
  .nav_next,
  .nav_prev {
    width: 100%;
    text-align: left;
    align-items: flex-start;
  }
  .nav_prev {
    margin-bottom: 30px;
  }
  #single .sec_news_single .post_nav a {
    font-size: 13px;
  }
  #single .sec_news_single h2 {
    font-size: 22px;
  }
  #single .sec_news_single h3 {
    font-size: 18px;
  }
  #single .sec_news_single th,
  #single .sec_news_single td {
    font-size: 14px;
  }
}