@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Gilda+Display&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  /* border: 1px solid #ff1414; */
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

:root {
  --semi-fontsize: 0.77rem;
  --normal-fontsize: 0.83rem;
  --middle-fontsize: 0.95rem;
  --big-fontsize: 1.2rem;
  --line-height: 1.4;
}

@media screen and (min-width: 600px) {
  :root {
    --semi-fontsize: 0.8rem;
    --normal-fontsize: 0.9rem;
    --middle-fontsize: 1.1rem;
    --big-fontsize: 1.4rem;
    --line-height: 1.5;
  }
}
@media screen and (min-width: 1024px) {
  :root {
    --semi-fontsize: 0.83rem;
    --normal-fontsize: 1.0rem;
    --middle-fontsize: 1.2rem;
    --big-fontsize: 1.7rem;
    --line-height: 1.6;
  }
}
@media screen and (min-width: 1440px) {
  :root {
    --semi-fontsize: 0.92rem;
    --normal-fontsize: 1.05rem;
    --middle-fontsize: 1.4rem;
    --big-fontsize: 1.9rem;
    --line-height: 1.7;
  }
}
@media screen and (min-width: 1900px) {
  :root {
    --semi-fontsize: 0.97rem;
    --normal-fontsize: 1.13rem;
    --middle-fontsize: 1.6rem;
    --big-fontsize: 2.0rem;
    --line-height: 1.8;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: #232323;
  line-height: var(--line-height);
  letter-spacing: 0.04rem;
  font-feature-settings: 'palt';
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

p {
  word-break: break-word;
  font-size: var(--normal-fontsize);
  line-height: var(--line-height);
}
a {
  text-decoration: none;
  color: #232323;
  font-size: var(--normal-fontsize);
  line-height: var(--line-height);
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
  line-height: 0;
}
table {
  border-collapse: collapse;
}
ol, ul {
    list-style: none;
}
button{
  outline: none;
  border: 0;
}
a:link, a:visited, a:active, a:hover {
  overflow: hidden;
  outline: none;
}

.sp-only {
  display: block;
}
.tb-only{
  display: none;
}
.pc-only {
  display: none;
}

@media screen and (min-width: 599px) {
  .sp-only {
    display: none;
  }
  .tb-only {
    display: block;
  }
}

@media screen and (min-width: 1024px) {
  .pc-only {
    display: block;
  }
}

/*-- ここからHEADER --*/
.logo_group{
  display: flex;
  align-items: center;
}
header {
  z-index: 99;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 1em;
}
.header {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.logo_group{
  display: flex;
  align-items: center;
}
.h_logo{
  width: 160px;
}
.h_logo img{
  padding: 2px 0;
}
.header {
  margin: 0;
  padding: 10px;
}
.header nav {
  margin: 0 0 0 auto;
}
.header ul {
  list-style: none;
  margin: 0;
  display: flex;
}
.pc-nav li {
  margin: 0 0 0.2em 2em;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: #232323;
  position: relative;
}
.pc-nav a{
  text-decoration: none;
  font-size: 0.8rem;
  color: #232323;
}

@media screen and (max-width: 1024px) {
  .h_logo{
    width: 120px;
  }
  .h_logo img{
    padding: 7px 0 0;
  }
}

@media screen and (max-width: 768px) {
  .pc-nav {
      display: none;
  }
}

@media (max-width: 430px) {
  header{
    padding: 0;
  }
  .header {
    padding: 0 0.5em;
  }
  .h_logo {
  width: 100px;
  }
  .h_logo img {
    padding: 7px 0;
  }
}
/*-- ここまでHEADER --*/

/* ここから 共通 */
.l-inner{
  padding: 6% 10%;
}

@media screen and (min-width: 1024px) {
  .l-inner{
    padding: 4rem 0;
    width: 900px;
    margin: auto;
  }
}

@media screen and (min-width: 1680px) {
  .l-inner{
    padding: 6rem 0;
    width: 880px;
  }
}

/* ここまで 共通 */

/* ここからMAIN VISUAL */
.kv-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.bg-svg-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  will-change: transform;
  transform: translateZ(0);
  z-index: 0;
}

.content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 4vw;
  padding: 6vw;
  z-index: 1;
}

.kv-img {
  max-width: 75vw;
  height: auto;
  opacity: 0;
  transform: translateY(70px);
  transition:
    opacity 1s ease-out,
    transform 1.1s cubic-bezier(0.2,0.8,0.2,1);
}

.kv-intro,
.kv-head,
.kv-title img,
.kv-sub {
  opacity: 0;
  transform: translateY(70px);
  transition:
    opacity 0.85s ease-out,
    transform 0.85s cubic-bezier(0.2,0.8,0.2,1);
  will-change: opacity, transform;
}

.show {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.kv-intro { 
  font-size: 4.5vw; 
  font-weight: 700; 
  line-height: 1.3; 
  width: fit-content; 
  margin: 0 auto 4vw; 
  text-align: center; 
} 

.kv-head { 
  font-family: "Inter", sans-serif; 
  font-size: 16.7vw; 
  font-weight: 700; 
  line-height: 1; 
  color: #232323; 
} 

.kv-title { 
  width: 98%;
  margin: auto;
  line-height: 0;
} 

.kv-sub { 
  font-size: 3.3vw; 
  font-weight: 700; 
  margin: 4.5vw 0; 
  line-height: 1; 
  color: #232636; 
  text-align: center;
}

@media (min-width: 600px) {
  .content {
    padding: 0 14%;
  }
  .kv-sub { 
    font-size: 3vw;
    margin: 6.5vw 0 3vw;
  }
  .kv-img {
    max-width: 60vw;
  }
}

@media (min-width: 1024px) {
  .content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 5.6vw;
  }
  .kv-wrap {
    order: 0;
    text-align: left;
  }
  .kv-img {
    order: 1;
    max-width: 38vw;
  }
  .kv-intro { 
    font-size: 1.6vw;
    width: fit-content; 
    margin: 0 auto 2.2vw; 
  } 
  .kv-head {
    font-size: 10.8vw;
    margin: 0 0.2vw -1vw; 
  }
  .kv-sub { 
    font-size: 1.7vw;
    margin: 3.2vw 0 0; 
  }
}

@media (min-width: 1440px) {
  .kv-intro { 
    font-size: 1.6vw;
    margin: 0 auto 2.7vw; 
  } 
  .kv-sub { 
    font-size: 1.6vw;
    margin: 3.8vw 0 0; 
  }
  .kv-wrap {
    margin-bottom: 2rem;
  }
}

@media (min-width: 1900px) {
  .kv-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .content {
    padding: 5vw 10vw 5vw 6vw;
    min-width: 1400px;
    max-width: 2600px;
    width: fit-content;
    margin: auto;
    gap: 10rem;
  }
  .kv-img {
    max-width: 680px;
  }
  .kv-intro { 
    font-size: 1.4vw;
    line-height: 1;
    margin: 0 auto 2.8rem;
  }
  .kv-title {
    width: 100%;
  }
  .kv-head { 
    font-size: 9.4vw;
  }
  .kv-sub { 
    font-size: 1.4vw;
    margin: 3.8rem 0 0; 
  }
}

@media (min-width: 2500px) {
  .kv-img {
    max-width: 800px;
  }
  .kv-intro { 
    font-size: 36.3168px;
  }
  .kv-head { 
    font-size: 237.068px;
  }
  .kv-sub { 
    font-size: 46.1526px;
  }
}

/* scroll */
.scroll_down{
  display: none;
}

@media screen and (min-width: 990px) {
.scroll_down{
  display: block;
  position: absolute;
  top: 100vh;
  right: 4%;
  z-index: 99;
}
.scroll_down.hidden {
  display: none;
}
.scroll_down a{
  position: absolute;
  left: 10px;
  bottom: 110px;
  color: #232636;
  font-size: 12px;
  font-family: "Urbanist", sans-serif;
  letter-spacing: .2em;
  writing-mode: vertical-lr;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll_down:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background:#232636;
  animation:
    circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
}

@keyframes circlemove{
  0%{bottom:180px;}
  100%{bottom:0px;}
}

@keyframes cirlemovehide{
  0%{opacity:0}
  50%{opacity:1;}
  80%{opacity:0.9;}
  100%{opacity:0;}
}

.scroll_down:after{
  content:"";
  position: absolute;
  bottom:0;
  left:0;
  width: 1px;
  height: 180px;
  background:#232636;
}
}
/* scroll */

/* ここまでMAIN VISUAL */

/* scroll nav */
.scroll-nav {
  display: none;
}

@media screen and (min-width: 1024px) {

  .scroll-nav {
    display: block;
    position: sticky;
    top: 0;
    width: 100%;
    background: #937C4E;
    transform: translateY(100%);
    transition: transform 0.25s ease;
    z-index: 9999;
    margin: 4rem 0 2rem;
  }

  .scroll-nav.is-active {
    transform: translateY(0);
  }

  .scroll-nav.is-fixed {
    transform: none;
  }

  .scroll-nav__list {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 12px 0;
    list-style: none;
  }

  .scroll-nav__list a {
    color: #fff;
    text-decoration: none;
    padding: 0 2rem;
    font-size: 0.8rem;
  }
}

@media screen and (min-width: 1440px) {
  .scroll-nav__list a {
    font-size: var(--normal-fontsize);
  }
}
/* scroll nav */

/* ここから FIRST */
.first__contents{
  background: #F2F2F2;
}
.first__wrapper{
  padding: 10% 8%;
}
.first__ttl{
  font-weight: 500;
  text-align: center;
}
.first__contents h2{
  width: 60%;
  margin: 3vw auto 0;
}
.first__text{
  padding: 1.5rem;
}
.first__image{
  width: 70%;
  margin: auto;
  display: block;
}

@media screen and (min-width: 600px) {
  .first__wrapper{
    padding: 8% 12%;
  }
  .first__contents h2{
    width: 60%;
  }
  .first__text{
    padding: 1.5rem 0 2.5rem;
  }
}

@media screen and (min-width: 1024px) {
  .first__wrapper{
    padding: 8%;
  }
  .first__ttl{
    margin: 0 0 0.8rem;
    font-size: var(--middle-fontsize);
  }
  .first__contents h2{
    width: 26vw;
    margin: 2rem auto 0;
  }
  .first__group{
    display: flex;
    gap: 10vw;
    padding: 4rem 0 0;
    align-items: flex-start;
  }
  .first__image{
    width: 24vw;
    flex-shrink: 0;
  }
  .first__text {
    flex: 1;
    line-height: 1.8;
  }
}

@media screen and (min-width: 1440px) {
  .first__wrapper {
    padding: 8% 0;
    width: 1100px;
    margin: auto;
  }
  .first__group{
    padding: 5rem 0 0;
    gap: 6vw;
  }
}

@media screen and (min-width: 1900px) {
  .first__wrapper{
    width: 1200px;
  }
  .first__group{
    gap: 7rem;
  }
  .first__image {
    width: 18vw;
  }
}
/* ここまで FIRST */

/* ここから midashi */
.main__title {
  font-family: "Cinzel", serif;
  font-optical-sizing: auto;
  font-size: 7.8vw;
  font-weight: 700;
  letter-spacing: -0.2vw;
  background: linear-gradient(
    100deg,
    #f6e7b1 0%,
    #937C4E 50%,
    #4D4D4B 100%
  );
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1;
}

.main__subtitle{
  font-family: "Noto Serif JP", serif;
  font-size: var(--semi-fontsize);
  color: #937C4E;
  line-height: 1;
}

.main__title span,
.main__subtitle span{
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s forwards ease-out;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main__subtitle-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.main__subtitle-wrapper::before {
  content: "";
  display: block;
  height: 1px;
  width: 3vw;
  max-width: 60px;
  min-width: 20px;
  background: #937C4E;
  margin: 0 1rem 0 0;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeLine 1.4s ease-out forwards;
}

@keyframes fadeLine {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (min-width: 1024px) {
  .main__title {
    font-size: 6.2vw;
  }
  .main__subtitle{
    font-size: var(--normal-fontsize);
  }
}

@media screen and (min-width: 1900px) {
  .main__title {
    font-size: 140px;
  }
}

.title {
  font-optical-sizing: auto;
  font-size: 2vw;
  font-weight: bold;
  text-align: center;
  background: linear-gradient(
    110deg,
    #FFEDB8 0%,
    #937C4E 60%,
    #b9834b 100%
  );
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1.4;
}

.title span{
  display: inline-block;
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s forwards ease-out;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ここまで midashi */

/* ここから CASE TOKUCHO */
.intro__contents {
  background: #fff;
}
#cuboid{
  padding: 0 0 4%; 
}
.intro__wrapper{
  padding: 8%;
}
.intro__group{
  padding: 8% 0;
}
.intro__image{
  width: 70%;
  margin: auto;
  display: block;
}
.intro__text__wrapper {
  line-height: 1.9;
  letter-spacing: 0.02rem;
}
.intro__text__title {
  font-family: "Noto Serif JP", serif;
  font-size: var(--big-fontsize);
  font-weight: 700;
  letter-spacing: 0.05rem;
  margin-bottom: 0.2rem;
  color: #937C4E;
}
.intro__text__header {
  font-size: var(--middle-fontsize);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.intro__text {
  margin-bottom: 1.8rem;
}
.intro__text br {
  line-height: 2;
}

@media screen and (min-width: 600px) {
  .intro__wrapper{
    padding: 8% 12%;
  }
  .intro__group {
    padding: 8% 0;
  }
  .intro__text{
    padding: 0.5rem 0 0;
  }
}

@media screen and (min-width: 1024px) {
  .intro__wrapper{
    padding: 8%;
  }
  #cuboid {
    padding: 0 0 8%;
  }
  .intro__group{
    display: flex;
    gap: 8vw;
    padding: 4rem 0;
    align-items: flex-start;
  }
  .intro__group:nth-child(2n){
    flex-direction: row-reverse;
  }
  .intro__image{
    width: 28vw;
    flex-shrink: 0;
  }
  .intro__text {
    flex: 1;
    line-height: 1.8;
  }
}

@media screen and (min-width: 1440px) {
  .intro__group{
    padding: 8rem 0 3rem;
  }
  .intro__text {
    padding: 0;
  }
  .intro__text__title {
    margin-bottom: 0.5rem;
  }
  .intro__text__header {
    margin-bottom: 2.8rem;
  }
}

@media screen and (min-width: 1900px) {
  .intro__wrapper{
    width: 1400px;
    margin: auto;
    padding: 8% 0;
  }
  .intro__group {
    gap: 8rem;
  }
  .intro__image{
    width: 580px;
  }
}

/* ケース テーブル */
.case-base-container {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  line-height: 1.6;
  background: transparent;
  border: none;
  padding: 8% 16% 0; 
}
.case-base-title{
  text-align: center;
  font-size: var(--middle-fontsize);
  padding: 0 0 3vw;
}

@media screen and (max-width: 1023px) {
  .case-base-container {
    padding: 8% 4%;
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 599px) {
  .case-base-container {
    padding: 8% 6%;
    font-size: 0.68rem;
  }
}

.case-base-container table{
  margin: auto;
}

.case-base-container th,
.case-base-container td {
  text-align: left;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  vertical-align: top;
  word-break: break-word;
}

.case-base-container th {
  width: 30%;
  font-weight: 600;
  white-space: normal;
  color: #937C4E;
}

.case-base-container tr:last-child th,
.case-base-container tr:last-child td {
  border-bottom: none;
}

@media (max-width: 599px) {
  .case-base-container th,
  .case-base-container td {
    display: block;
    width: 100%;
    padding: 10px 10px 0;
  }

  .case-base-container th {
    color: #937C4E;
  }

  .case-base-container td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 0;
  }

  .case-base-container tr {
    display: block;
  }
}

/* ケース テーブル */

/* CASE TOKUCHO */

/* ここから LINEUP */
.lineup__contents{
background: linear-gradient(to bottom, #323232 0%, #3F3F3F 40%, #1C1C1C 150%), linear-gradient(to top, rgba(255,255,255,0.40) 0%, rgba(0,0,0,0.25) 200%);
 background-blend-mode: multiply;
}
.lineup__wrapper{
  padding: 10% 6%;
}

@media screen and (min-width: 1900px) {
  .lineup__wrapper{
    padding: 8% 8% 0;
    margin: auto;
  }
}

/* テーブル */
.model-table-container {
  overflow-x: auto;
  min-width: 320px;
  margin: 6rem 0 0;
  font-size: 0.8rem;
}

.model-table {
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
  table-layout: fixed;
  border: none;
}

.model-table th:first-child,
.model-table td:first-child {
  width: 120px;
}

.model-table th:not(:first-child),
.model-table td:not(:first-child) {
  width: calc((100% - 120px) / 6);
}

.model-table th,
.model-table td {
  padding: 1em;
  text-align: left;
  border-bottom: 1px solid #444;
  border-right: 1px solid #444;
  text-align: center;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}

.model-table th:last-child,
.model-table td:last-child {
  border-right: none;
}

.model-table th {
  color: #937C4E;
  border-bottom: 1px solid #937C4E;
  text-align: center;
  background-color: #242424;
  line-height: 1.4;
}

.model-table td {
  background-color: #111;
  color: #eee;
}

.model-table tbody tr:nth-child(even) td {
  background-color: #242424;
}

.model-table .center{
  text-align: center;
}

@media (max-width: 1536px) {
  .model-table-container {
    font-size: 0.72rem;
    margin: 4rem 0 0;
  }
}

@media (max-width: 1023px) {
  .model-table-container {
    font-size: 0.68rem;
    margin: 2rem 0;
  }
  .model-table th,
  .model-table td {
    padding: 0.8em;
    text-align: left;
  }
}
/* テーブル */

.lineup__pop__contents{
  padding: 2rem 0 0;
  text-align: center;
  max-width: 900px;
  margin: auto;
}

@media (min-width: 1024px) {
  .lineup__pop__contents{
    padding: 4rem 0 2rem;
  }
}

@media (min-width: 1900px) {
  .lineup__pop__contents{
    padding: 8rem 0 2rem;
  }
}

.lineup__pop{
  padding: 6vw 0;
}

.lineup__pop__image{
  padding: 3vw 0 0;
  max-width: 760px;
  margin: auto;
}

@media (min-width: 1024px) {
  .lineup__pop{
    padding: 3rem 0 0;
  }
}

.lineup__pop .title{
  font-size: var(--middle-fontsize);
}

/* テーブル for spec */
.spec-container {
  margin: 4rem auto;
  font-size: 0.85rem;
  padding: 0 8%;
}

@media (max-width: 1900px) {
.spec-container {
  margin: 2rem auto;
  font-size: 0.8rem;
  padding: 0 4%;
}
}

@media (max-width: 1023px) {
.spec-container {
  margin: 3vw auto 4vw;
  font-size: 0.68rem;
}
}

.spec-container table {
  width: 100%;
  border-collapse: collapse;
}

.spec-container th,
.spec-container td {
  text-align: left;
  padding: 10px 14px;
  vertical-align: top;
  border-bottom: 1px solid #cdcbcb;
  line-height: 1.5;
  word-break: break-word;
}

.spec-container th {
  width: 25%;
  font-weight: 600;
  white-space: nowrap;
}

.spec-container tr:last-child th,
.spec-container tr:last-child td {
  border-bottom: none;
}

.spec-container .spec-gold th,
.spec-container .spec-gold td {
  color: #937C4E !important;
}

@media (max-width: 768px) {
  .spec-container table {
    width: 100%;
    border-collapse: collapse;
  }

  .spec-container tr {
    display: flex;
    flex-wrap: wrap;
  }

  .spec-container th,
  .spec-container td {
    padding: 6px 8px;
    border-bottom: 1px solid #c2c0c0;
    line-height: 1.4;
    min-width: 0;
    word-break: break-word;
  }

  .spec-container th {
    flex: 0 0 30%;
    font-weight: 500;
  }

  .spec-container td {
    flex: 1 1 70%;
  }

  .spec-container tr:last-child th,
  .spec-container tr:last-child td {
    border-bottom: none;
  }
}

/* テーブル for spec */

/* もっと見る */
.spec-container {
  position: relative;
}

/* テーブルの基本 */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  transition: max-height 0.5s ease;
}

.spec-table th,
.spec-table td {
  padding: 0.8em 1em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: #f4f4f4;
}

.spec-table tr {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  display: none;
}

.spec-table tr.visible {
  opacity: 1;
  transform: translateY(0);
  display: table-row;
}

@media (min-width: 769px) {
  .btn-more {
    display: none;
  }
  .spec-table tr {
    display: table-row;
  }
}

@media (max-width: 768px) {
  .spec-table tr {
    display: none;
  }
  .spec-table tr.visible {
    display: table-row;
  }
  .btn-more {
    display: inline-block;
    width: fit-content;
    margin: 1rem auto;
    padding: 10px 4rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
  }
  .btn-more:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.03);
  }
}
/* もっと見る */

/* button animation */
.btn_anime_wrap{
  max-width: 500px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 2rem auto 0;
}
#btn_animation p {
  color: #FFF;
  text-align: center;
}
#btn_animation .btn {
  display: block;
  position: relative;
  border: 2px solid #937C4E;
  width: fit-content;
  margin: 0.3rem auto 0;
  padding: 0 2rem;
  line-height: 40px;
  font-size: var(--middle-fontsize);
  font-weight: 700;
  text-decoration: none;
  color: #937C4E;
  text-align: center;
  overflow: hidden;
}

#btn_animation .btn:hover {
  text-decoration: none;
  color: #f1d498;
}

#btn_animation .btn::before {
  position: absolute;
  content: '';
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fbfbfb;
  animation: btn_animation 2.5s ease-in-out infinite;
}

@keyframes btn_animation {
  0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
  80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

@media screen and (min-width: 600px) {
  .btn_anime_wrap {
    margin: 4rem auto;
  }
  #btn_animation .btn {
    padding: 0.3rem 3rem;
  }
  #btn_animation p {
    font-size: var(--middle-fontsize);
    font-weight: bold;
  }
}

@media screen and (min-width: 1024px) {
  #btn_animation .btn {
    padding: 0.3rem 3rem;
    margin: 4rem auto;
  }
}

@media screen and (min-width: 1440px) {
  .btn_anime_wrap{
    max-width: 700px;
    margin: 6rem auto 0;
  }
  #btn_animation .btn {
    padding: 1rem 5rem;
  }
}

@media screen and (min-width: 1900px) {
  #btn_animation .btn {
    margin: 4rem auto 8rem;
  }
}
/* button animation */

/* button lineup */
.button_lineup a {
  background:#937C4E;
  border-radius: 9999px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 1.8vw auto;
  max-width: fit-content;
  padding: 7px 30px;
  text-decoration: none;
  color: #FFF;
  line-height: 1.0;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  font-size: var(--semi-fontsize);
}
.button_lineup a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 1rem;
  font-size: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 4px;
  height: 4px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.button_lineup a:hover {
  background: #f1d498;
  color: #333;
}
.button_lineup a:hover:after {
  right: 0.6rem;
}

@media (min-width: 1024px) {
.button_lineup a {
  margin: 0.7rem auto;
  padding: 10px 40px;
  font-size: 0.82rem;
}
}
/* button lineup */

/* ここから YouTube Gallery */
.yt-wrapper{
  background:
    linear-gradient(to bottom, #2B3330 0%, #394241 45%, #161A19 150%),
    linear-gradient(to top, rgba(255,255,255,0.35) 0%, rgba(0,0,0,0.28) 200%);
  background-blend-mode: multiply;
}
.yt-wrapper{
  padding: 10% 6%;
}

@media screen and (min-width: 1900px) {
  .yt-wrapper{
    padding: 8%;
    margin: auto;
  }
}

.yt-container {
  margin: 0 auto;
  padding: 30px 20px 20px;
}

@media screen and (min-width: 900px) {
  .yt-container {
    padding: 4vw 0 0;
  }
}

@media screen and (min-width: 900px) {
  .yt-container {
    padding: 4vw 0 0;
  }
}

@media screen and (min-width: 900px) {
  .yt-container {
    padding: 6vw 0 0;
  }
}

.yt-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media screen and (min-width: 900px) {
  .yt-grid {
    flex-direction: row;
  }
}

@media screen and (min-width: 900px) {
  .yt-grid {
    gap: 40px;
  }
}

.yt-item {
  flex: 1;
  cursor: pointer;
}

.yt-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
}

.yt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.yt-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 68px;
  height: 48px;
  background: rgba(0,0,0,0.7);
  border-radius: 14px;
}

.yt-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #fff;
}

.yt-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  z-index: 9999;
}

.yt-popup-inner {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 90%;
  max-width: 1000px;
  aspect-ratio: 16 / 9;
}

.yt-popup-inner iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* ここまで YouTube Gallery */

/* ここから fadein */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 600px) {
  .fade-in {
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
}
/* ここまで fadein */

/* ここから KODAWARI */
.feature-contents {
  position: relative;
  background:
    linear-gradient(135deg, rgba(245, 245, 245, 0.6) 0%, rgba(220, 220, 220, 0.7) 100%),
    url("../images/bg_graygold.jpg") center/cover no-repeat;
  background-blend-mode: lighten;
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  box-shadow: inset 0 0 60px rgba(255, 255, 255, 0.3);
  overflow: hidden;
  z-index: 0;
  background-blend-mode: overlay;
  filter: brightness(0.9) contrast(1.1);
  /* opacity: 0.9; */
}

.feature-contents::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(245, 245, 245, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: -1;
  border-radius: inherit;
}
.feature-section {
  width: 100%;
  padding: 3rem 8%;
  line-height: 1.8;
}
.feature-section .main__title {
  font-family: "Cinzel", serif;
  font-optical-sizing: auto;
  font-size: 6.8vw;
  font-weight: 700;
  letter-spacing: 0.2rem;
  text-align: center;
  background: linear-gradient(
    100deg,
    #f6e7b1 0%,
    #937C4E 50%,
    #4D4D4B 100%
  );
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1.4;
}

.feature-section .main__subtitle{
  font-family: "Noto Serif JP", serif;
  font-size: var(--semi-fontsize);
    background: linear-gradient(
    100deg,
    #f6e7b1 0%,
    #937C4E 50%,
    #4D4D4B 100%
  );
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  text-align: center;
}

.feature-section .main__title span,
.feature-section .main__subtitle span{
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s forwards ease-out;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (min-width: 1024px) {
  .feature-section .main__title span {
    font-size: 5.2vw;
  }
}

.feature-header {
  position: relative;
  display: inline-block;
  font-size: 4.6vw;
  font-weight: 700;
  color: #937C4E;
  text-align: center;
  padding: 2rem 0;
  letter-spacing: 0.05em;
}
.feature-header-wrap {
  text-align: center;
}
.feature-header::after {
  content: "";
  position: absolute;
  bottom: 1rem;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(100deg, #937C4E 0%, #c9a763 100%);
  border-radius: 3px;
  opacity: 0;
  box-shadow: 0 0 8px rgba(108,160,220,0.25);
  transition:
    width 1.4s cubic-bezier(0.25, 1, 0.3, 1),
    opacity 0.6s ease;
}
.feature-header.active::after {
  width: 100%;
  opacity: 1;
}
.feature {
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: radial-gradient(circle at center, rgba(255, 217, 102, 0.05) 0%, transparent 70%);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 0 60px rgba(255, 217, 102, 0.05);
}
.feature.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature.reverse { flex-direction: row-reverse; }

.feature-text {
  flex: 1;
}
.feature-label{
  color: #4D4D4B;
  font-family: "Noto Serif JP", serif;
  font-size: var(--semi-fontsize);
}
.feature-title {
  font-size: 4.6vw;
  font-weight: 600;
  color: #937C4E;
  margin-bottom: 1.5rem;
  overflow: hidden;
  position: relative;
  padding: 0 0 0.5rem;
}
.feature-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #937C4E 0%, #937C4E 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 1.2s ease;
}
.feature.visible .feature-title::after {
  transform: translateX(0);
}
.feature-title span {
  display: inline-block;
  transform: translateY(100%);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature.visible .feature-title span {
  transform: translateY(0);
}
.feature-text p {
  margin: 0.5rem 0 1rem;
  color: #111;
}
.feature-background {
  padding: 1rem;
  background: #FFF;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 0 40px rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.feature-background strong{
  font-size: 3.6vw;
  color: #cd3222;
  font-weight: bold;
  line-height: 1.2;
}
.feature-background p {
  color: #1a1a1a;
}
.feature-background::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255,255,255,0.03) 0,
    rgba(255,255,255,0.03) 1px,
    transparent 1px,
    transparent 20px
  );
  pointer-events: none;
  border-radius: 1rem;
}
.feature-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0 0;
}
.feature-image img{
  border-radius: 10px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 0 40px rgba(255, 255, 255, 0.25);
}

@media (min-width: 600px) {
  .feature-header {
    font-size: 1.8rem;
    padding: 3rem 0;
  }
  .feature-header::after {
    bottom: 2rem;
  }
  .feature-title {
    font-size: 1.6rem;
  }
  .feature-background{
    padding: 1rem 2rem 1.7rem;
  }
  .feature-background strong {
    font-size: 1.15rem;
    line-height: 2.5;
  }
  .feature-text p{
    margin: 1rem 0 1.5rem;
  }
}

@media (min-width: 1280px) {
  .feature-section {
    width: 100%;
    min-width: 1200px;
    padding: 6rem 2rem;
  }
  .feature-header {
    font-size: 2.0rem;
    padding: 5rem 0 2rem;
  }
  .feature-header::after {
    bottom: 1rem;
    height: 4px;
  }
  .feature {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 6rem;
    margin-bottom: 2rem;
    padding: 6rem 3rem 0;
  }
  .feature-background strong {
    font-size: 1.4rem;
    line-height: 3.0;
  }
  .feature-background {
    padding: 1rem 2.5rem 2.2rem;
    border-radius: 20px;
  }
  .feature-text {
    max-width: 600px;
  }
  .feature-text p {
    margin: 1.5rem 0 2rem;
  }
  .feature-image {
    padding: 6rem 0 0;
  }
  .feature-image img {
    border-radius: 1rem;
  }
  .feature-title {
    font-size: var(--big-fontsize);
  }
}

@media (min-width: 1680px) {
  .feature-section {
    padding: 6rem 0 3rem;
    width: 1400px;
    margin: auto;
  }
  .feature-header {
    font-size: 2.6rem;
    padding: 6rem 0;
  }
  .feature-header::after {
    bottom: 5rem;
    height: 4px;
  }
  .feature {
    margin-bottom: 4rem;
    align-items: center;
    padding: 6rem 0 0;
    gap: 10rem;
  }
  .feature-image {
    padding: 0;
  }
}
/* ここまで KODAWARI */

/* ここから shop info */
.shop__infowrap {
  padding: 40px 20px;
  margin: 0 auto;
  background-color: #242222;
  color: #dbc053;
}

.shop__list__title {
  font-size: var(--big-fontsize);
  text-align: center;
  margin-bottom: 0.7rem;
  border-bottom: 2px solid #dbc053;
  padding-bottom: 10px;
}

.shop__list_title span {
  background: linear-gradient(90deg, #f0d878 0%, #ffcc00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.shop__open {
  text-align: center;
  font-size: var(--semi-fontsize);
  margin-bottom: 30px;
}

.shop__adress__contents{
    max-width: 580px;
    margin: auto;
}
.shop__adress_wrap {
  margin-bottom: 40px;
  font-size: var(--semi-fontsize);
}

.shop__adress_wrap h3 {
  font-size: var(--middle-fontsize);
  border-left: 5px solid #dbc053;
  padding-left: 10px;
  margin-bottom: 15px;
  color: #dbc053;
}

.shop__adress_wrap h3 span{
  color: #FF2323;
}

.shop__table {
  width: 100%;
  border-collapse: collapse;
}

.shop__table th,
.shop__table td {
  padding: 7px 15px;
  border-bottom: 1px solid #555;
  text-align: left;
}

.shop_table tbody tr:last-child th,
.shop_table tbody tr:last-child td {
  border-bottom: none;
}

.shop__table th.tenpo {
  color: #be984d;
  font-weight: bold;
  white-space: nowrap;
  width: 20%;
}

.shop__table td.adress {
  color: #ddd;
  width: 75%;
}

.shop__table td.detail{
  width: 15%;
}

.shop__table td.detail a {
  color: #937C4E;
  text-decoration: none;
  border-bottom: 1px dashed #937C4E;
  transition: all 0.3s ease;
  font-size: var(--semi-fontsize);
}

.shop__table td.detail a:hover {
  color: #fff;
  border-bottom: 1px solid #fff;
}

@media screen and (min-width: 1024px) {
  .shop__infowrap {
    padding: 6rem 2%;
  }
  .shop__list__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .shop__adress__contents {
    max-width: 900px;
    margin: 4rem auto 0;
  }
  .shop__table tbody{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 3rem;
  }
  .shop__table th.tenpo {
    width: 20%;
  }
  .shop__adress_wrap h3 {
    font-size: var(--normal-fontsize);
  }
}

@media screen and (min-width: 1440px) {
  .shop__adress__contents {
    max-width: 1000px;
  }
  .shop__table tbody{
    gap: 0 4rem;
  }
}
/* ここまで shop info */

/* ここから PR CONTENTS */
.pr__contents{
  background-color: #000;
  background-image: url(../images/bg_backdrop.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
}
.pr__wrapper{
  padding: 8% 12%;
}
.pr__title{
  color: #937C4E;
  font-size: var(--normal-fontsize);
}
.pr__link{
  color: #F5F5F5;
  font-size: var(--semi-fontsize);
  padding: 1rem 0 1.3rem;
}
.pr__wrapper img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 12px 24px rgba(255, 255, 255, 0.25), 
              0 2px 6px rgba(255, 255, 255, 0.05) inset;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.pr__wrapper:hover img {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.5), 
              0 0 8px rgba(255, 255, 255, 0.08) inset;
}
.pr__rogress{
  padding: 8vw 0 4vw;
}

@media screen and (min-width: 1024px) {
  .pr__wrapper{
    width: 800px;
    margin: auto;
    padding: 6% 0 4%;
  }
  .pr__title{
    font-size: var(--middle-fontsize);
  }
  .pr__link{
    font-size: var(--normal-fontsize);
  }
}

@media screen and (min-width: 1440px) {
  .pr__link {
    padding: 1rem 0 1.8rem;
  }
}
/* ここまで PR CONTENTS */

/* ここから お問い合わせ */
.inquery__contents {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.inquery__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  z-index: -1;
  backdrop-filter: blur(2px);
}
.inquery__wrapper {
  margin: 12% 8%;
  padding: 6% 8% 3%;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
}
.inquery__ttl {
  text-align: center;
  font-size: var(--big-fontsize);
  font-weight: bold;
  color: #FFF;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}
.inquery__box {
  background: #FFF;
  padding: 1.5em 1rem;
  margin: 1.5rem 0;
  text-align: center;
  color: #111;
  border-radius: 8px;
}
.inquery__sttl {
  font-size: var(--middle-fontsize);
  font-weight: bold;
  color: #8f6c16;
  text-align: center;
  padding: 0 0 0.5rem;
}
.inquery__tel {
  font-size: var(--big-fontsize);
  font-weight: bold;
}
.inquery__text {
  padding: 0.5rem 0 0.7rem;
}
.inquery__btn {
  background: #8f6c16;
  padding: 0.8rem 2rem;
  line-height: 0;
  width: fit-content;
  margin: auto;
  border-radius: 8px;
}
.inquery__btn a {
  color: #FFF;
}
.inquery__btn:hover {
	background: #b48a1e;
}

@media screen and (min-width: 600px) {
  .inquery__wrapper {
    padding: 4%;
  }
  .inquery__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .inquery__wrapper {
    width: 900px;
    margin: 10% auto;
    padding: 4rem 6rem;
  }
  .inquery__wrap {
    gap: 3rem;
    padding: 1.5rem 0 0;
  }
  .inquery__btn {
    margin: 0.5rem auto;
  }
}

@media screen and (min-width: 1440px) {
  .inquery__wrapper {
    width: 1100px;
    margin: 8% auto;
  }
}

@media screen and (min-width: 1900px) {
  .inquery__wrapper {
    width: 1200px;
  }
}

.lineup__contents .inquery__wrapper{
  margin: 14% auto 0;
}

@media screen and (min-width: 1024px) {
.lineup__contents .inquery__wrapper{
  margin: 10% auto 0;
}
}
/* ここまで お問い合わせ */

/* ここから フッター */
.p-footer {
  padding: 20px 60px 10px;
  background-color: #3D3E4A;
}
.p-footer__inner {
  display: block;
}
.p-footer__nav {
  font-size: 0.65rem;
}
.p-footer__navList {
  max-width: 280px;
  margin: 18px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.p-footer__navItem {
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid #75706f;
}
.p-footer__navItem:nth-child(3n) {
  border-right: transparent;
  margin-right: 0;
  padding-right: 0;
}
.p-footer__logo {
  width: 100%;
  height: auto;
  max-width: 160px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 24px;
}
.p-footer__navItem a {
  color: #FFF;
  font-size: 0.8rem;
}
.p-footer__copyLight {
  text-align: center;
  display: block;
  margin-top: 30px;
  font-size: 0.7rem;
  color: #FFF;
}

@media screen and (min-width: 599px) {
  .p-footer__navList {
    max-width: 100%;
}
.p-footer__navItem:nth-child(3n) {
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid #75706f;
}
.p-footer__navItem:last-child {
  border-right: transparent;
  margin-right: 0;
  padding-right: 0;
}
}

@media screen and (min-width: 768px) {
  .p-footer__inner {
    max-width: 1000px;
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
}
/* ここまで フッター */


/* go to TOP */
#page-top a{
  display: flex;
  justify-content:center;
  align-items:center;
  background:#937C4E;
  border-radius: 5px;
  width: 60px;
  height: 60px;
  color: #FFF;
  text-align: center;
  text-transform: uppercase; 
  text-decoration: none;
  font-size:0.6rem;
  transition:all 0.3s;
}

#page-top a:hover{
  background: #f1d498;
  color: #232323;
}
#page-top {
  position: fixed;
  right: 10px;
  z-index: 2;
  opacity: 0;
  transform: translateY(100px);
}
@media screen and (max-width: 768px) {
  #page-top a{
    opacity: 0.5;
  }
}
#page-top.UpMove{
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}

#page-top.DownMove{
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 1;
  transform: translateY(0);
  }
  to {
    opacity: 1;
  transform: translateY(100px);
  }
}
.pagetop:hover {
  opacity: .8;
}
/* go to TOP */
