.title{
	background-image: url(../images/mv_title.webp);
	background-position: 50% 50%;
  background-size: cover;
  color: #fff;
  padding: 120px 0;
  box-shadow: 0.5px 3px 4px 0.5px black;
}

@media screen and (max-width: 600px) {
  .title{
    background-image: url(../images/mv_title_sp.webp);
  }
}

.title-innar,
.product-innar{
	width: 90%;
	margin: 30px auto 90px auto;
}

.title-innar h1{
	margin-bottom: 0px;
}

.title-innar p{
	margin: 0;
	font-size: 0.9rem;
	margin-bottom: 20px;
}



/* ========================================
   NEWS PAGE
======================================== */

.news-page {
  --news-archive-top: 8rem;
  --news-about-lift: 20vh;
  background:linear-gradient( 180deg, #f7f6f2 0%, #ffffff 35%,#f7f6f2 100%);
  color: #191a1c;
}

.news-archive {
	padding: var(--news-archive-top) 0 8rem;;
	text-align: left;
}

.news-archive-inner {
  width: 90%;
  max-width: 1500px;
  margin: 0 auto;
}

.news-about{
  display: grid;
  grid-template-columns: minmax(100px, 10%) minmax(0, 1fr) minmax(100px, 10%);
  margin: calc(-1 * var(--news-about-lift)) 0 0;
}


.news-about-content{
  position: relative;
  padding: 60px;
  box-sizing: border-box;
  background: transparent;
  margin-left: 30px;
  line-height: 2;
  letter-spacing: 0.04em;
}

.news-about-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height:max( 0px, calc( var(--news-about-lift) - var(--news-archive-top) ) );
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, #f7f6f2 100% );
  z-index: 0;
  pointer-events: none;
}

.news-about-content > * {
  position: relative;
  z-index: 1;
}

.news-about .btn-arrow{
  margin-left: 0;
}

@media screen and (max-width: 600px) {
  .news-about{
    display: block;
  }
  .news-about-content{
    margin-left: 0;
    padding: 30px;
    margin-bottom: 3rem;
    font-size: 0.8rem;
    line-height: 1.9;
    letter-spacing: 0.04em;
  }
  .news-page{
    --news-archive-top: 2rem;
  }
}

@media screen and (min-width: 601px) and (max-width: 1000px) {
  .news-about-content{
    padding:30px;
  }
}


.news-entry {
  display: grid;
  grid-template-columns: minmax(100px, 10%) minmax(0, 1fr) minmax(100px, 10%);
  gap: 30px;
  width: 100%;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(184, 154, 98, 0.35);
  align-items: start;
}

.news-entry:last-child{
	border-bottom:none;
}

.news-date {
  min-width: 0;
  padding-top: 6px;
  text-align: right;
  padding:  50px 0;
}

.news-date time {
  color: #a58b58;
  font-size: 0.8rem;
}

.news-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: visible;
  border-left: 1px solid rgba(184, 154, 98, 0.35);
  padding: 50px 0 50px 30px;
}

.news-title {
  flex: 0 0 auto;
  position: relative;
  width: 100%;
  margin: 0;
  padding-bottom: 28px;
  box-sizing: border-box;
  color: #191a1c;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.news-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 0.5px;
  background: #191a1c;
}

.news-body {
  flex: 0 0 auto;
  width: 100%;
  margin-top: 32px;
  box-sizing: border-box;
  font-size: 1rem;
  line-height: 2;
	letter-spacing: 0.04em;
}

.news-body p {
  margin: 0 0 1em;
}

.news-body p:last-child {
  margin-bottom: 0;
}

.news-image {
  position: relative;
  flex: 0 0 auto;
  display: block;
  width: 100%;
  margin: 35px 0 0;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.news-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.news-link {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  width: 100%;
  justify-content: flex-end;
  margin: 40px 0 0;
  box-sizing: border-box;
}

.news-link a {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  width: auto;
  max-width: 100%;
  box-sizing: border-box;
  color: #191a1c;
}

.news-link-arrow {
  position: relative;
  display: block;
  width: 42px;
  height: 1px;
  background: currentColor;
  transition:
    width 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.news-link-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.news-link a:hover {
  color: #b89a62;
}

.news-link a:hover .news-link-arrow {
  width: 52px;
  transform: translateX(5px);
}

.news-columns {
  display: grid;
  grid-template-columns:
    minmax(0, 55%)
    minmax(0, 45%);
  gap: 30px;
  width: 100%;
  margin-top: 32px;
  box-sizing: border-box;
  align-items: start;
}

.news-column-text {
  min-width: 0;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.04em;
}

.news-column-text p {
  margin: 0 0 1em;
}

.news-column-text p:last-child {
  margin-bottom: 0;
}

.news-column-image {
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.news-column-image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

@media screen and (max-width: 600px) {

  .news-archive {
    padding: 40px 0 80px;
  }

  .news-entry {
    display: block;
    border-left: 1px solid rgba(184, 154, 98, 0.35);
  }

  .news-date {
    padding: 30px 30px 0;
    text-align: left;
  }

  .news-date p {
    margin: 0;
  }

  .news-content{
  	padding: 30px;
  	border-left: none;
  }

  .news-title {
    padding-bottom: 20px;
    font-size: clamp( 1.15rem, 5vw, 1.4rem);
  }

  .news-body {
    margin-top: 24px;
    font-size: 0.8rem;
    line-height: 1.9;
  }

  .news-image {
    margin-top: 20px;
  }

  .news-link a {
    font-size: 0.7rem;
    gap: 20px;
  }

  .news-link-arrow {
    width: 32px;
  }
  .news-columns {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .news-column-text {
    font-size: 0.8rem;
  }

}


@media screen and (min-width: 601px) and (max-width: 1000px) {

  .news-date time {
    font-size: 0.95rem;
  }
  .news-body, {
    font-size: 1rem;
  }
  .news-columns {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

}



/* ========================================
   SLIDER
======================================== */

.system-slider {
  position: relative;
  width: 100%;
  margin-top: 40px;
  overflow: hidden;
  background: #0b0c0b;
}

.system-slider-viewport {
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
}

.system-slider-track {
  display: flex;
  width: 100%;
  transition:transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.system-slide {
  flex:0 0 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.system-slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* SLIDER ARROW */
.system-slider-prev,
.system-slider-next {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  padding: 0;
  border:1px solid rgba(216, 191, 136, 0.3);
  background:rgba(10, 11, 10, 0.75);
  backdrop-filter:blur(5px);
  -webkit-backdrop-filter:blur(5px);
  cursor: pointer;
  transform:translateY(-50%);
  transition:background-color 0.4s ease, border-color 0.4s ease;
}


.system-slider-prev {
  left: 20px;
}


.system-slider-next {
  right: 20px;
}


/* 矢印 */
.system-slider-prev span,
.system-slider-next span {
  position: absolute;

  top: 50%;
  left: 50%;

  display: block;

  width: 12px;
  height: 12px;

  border-top:
    1px solid #d8bf88;

  border-right:
    1px solid #d8bf88;
}


.system-slider-prev span {
  transform:
    translate(-35%, -50%)
    rotate(-135deg);
}


.system-slider-next span {
  transform:
    translate(-65%, -50%)
    rotate(45deg);
}


.system-slider-prev:hover,
.system-slider-next:hover {
  background:
    rgba(10, 11, 10, 0.95);

  border-color: #f1e2bb;
}

/* SLIDER STATUS */

.system-slider-status {
  position: absolute;
  right: 22px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  color: #fff;
  background:rgba(10, 11, 10, 0.6);
  backdrop-filter:blur(4px);
  -webkit-backdrop-filter: blur(4px);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.system-slider-current {
  color: #d8bf88;
}

.system-slider-line {
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(216, 191, 136, 0.7);
}

@media screen and (max-width: 600px) {
  .system-header {
    padding:
      80px
      0
      50px;
  }
  .system-header-caption {
    font-size: 0.85rem;
  }
  .system-list {
    padding-bottom: 60px;
  }
  .system-entry {
    display: block;
    border-left: 1px solid rgba(184, 154, 98, 0.35);
  }
  .system-label {
    padding: 30px 30px 0;
    text-align: left;
  }

  .system-label p {
    display: inline-block;
    margin: 0 0 0 10px;
  }

  .system-content {
    padding: 30px;
    border-left: none;
  }

  .system-slider {
    margin-top: 25px;
  }

  .system-slider-prev,
  .system-slider-next {
    display: none;
  }

  .system-slider-status {
    right: 5px;
    bottom: 5px;
    font-size: 0.6rem;
    padding: 3px 6px;
    gap:2px;
  }

  .system-slider-line {
    width: 10px;
  }

}



/* ========================================
   SPEC
======================================== */

.spec{
  flex: 5 !important;
  width: 100%;
}

.spec h4{
  margin: 0;
}

.spec th{
  text-align: left;
  width: 140px;
}


/* ========================================
   FAQ
======================================== */

.faq-list {
  border-top: 1px solid rgba(25, 26, 28, 0.25);
  margin: 40px 0;
}

.faq-item {
  border-bottom:1px solid rgba(25, 26, 28, 0.25);
  padding:1rem 1rem;
  align-items: center;
}

.faq-question {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 50px;
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: color 0.4s ease, background-color 0.4s ease;
  text-align: left;
}

.faq-number {
  color: #b89a62;
  letter-spacing: 0.15em;
  margin-top: 2px;
}

.faq-question-text {
  font-size:1rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  margin: 0 !important;
}

.faq-icon {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  justify-self: end;
  align-items: center;
}

.faq-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #b89a62;
  transform: translateY(-50%);
}

.faq-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: #b89a62;
  transform: translateX(-50%);
  transition:
    transform 0.45s
    cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease;
}

.faq-item.is-open
.faq-icon::after {
  opacity: 0;
  transform:translateX(-50%) rotate(90deg);
}

.faq-question:hover {
  color: #b89a62;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease;
  text-align: left;
}

.faq-item.is-open
.faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 1rem;
}

.faq-answer > * {
  overflow: hidden;
}

.faq-answer-inner {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 50px;
  box-sizing: border-box;
  padding: 0 0.5rem 0;
}

.faq-answer-label {
  color: #b89a62;
  font-family: serif;
  font-size: 1.4rem;
  line-height: 1.6;
}

.faq-answer-text {
  line-height: 2;
  letter-spacing: 0.04em;
}


.faq-answer-text p {
  margin: 0;
}

.faq-answer-text p:last-child {
  margin-bottom: 0;
}


.faq-answer-link {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  color: #191a1c;
  font-size: 0.8rem;
}

.faq-link-arrow {
  position: relative;
  display: block;
  width: 34px;
  height: 1px;
  background: currentColor;
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-link-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer-link:hover {
  color: #b89a62;
}

.faq-answer-link:hover
.faq-link-arrow {
  width: 42px;
  transform: translateX(4px);
}

.detail-page{
  text-align: right;
  margin-top: 2rem;
}

@media screen and (max-width: 600px) {

  .faq-list{
    margin: 1rem 0;
  }

  .faq-list p{
    font-size: 0.8rem;
  }

  .faq-item{
  	padding: 0.5rem;
  }

  .faq-question {
    grid-template-columns: 25px minmax(0, 1fr) 20px;
  }

  .faq-question-text {
    padding-right: 10px;
  }

  .faq-icon {
    width: 18px;
    height: 18px;
    margin-top: 2px;
  }

  .faq-answer-inner {
    grid-template-columns: 25px minmax(0, 1fr);
  }

  .faq-answer-label {
    font-size: 1.1rem;
  }

  .faq-answer-text {
    font-size: 0.85rem;
    line-height: 1.9;
  }

}


@media screen
  and (min-width: 601px)
  and (max-width: 1000px) {

  .faq-list{
    margin: 1rem 0;
  }

  .faq-list p{
    font-size: 1rem;
  }

}


.train-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 50px;
  box-sizing: border-box;
  padding: 0 0.5rem 0;
}

.train-list{
  font-size: 0.8rem;
}

span.train-company{
  margin-top: 1rem;
  font-weight: bold;
  color: #a58b58;
}