html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "adineuePRO", "Noto Sans JP", sans-serif;
  overflow-x: hidden;
}

.jfa-content {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.jfa-content::before {
  content: '';
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
}

.unit-block {
  padding: 120px 0;
}


.header {
  width: 100%;
  position: relative;
  z-index: 10;
}

.header h1 {
  padding: 10px 0;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.kv-slider {
  background: #292f60;
}

.kv-slider-away {
  background: #ffffff;
}

.kv-slider img,.kv-slider-away img {
  width: 100%;
  display: block;
}


.concept {
  overflow: hidden;
  background: #292f60;
}

.concept-away {
  overflow: hidden;
  background: #ffffff;
}

.section-mode-nav {
  width: 100%;
  margin: -5px auto 0;
  padding: 50px 0;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  box-shadow: none;
}

.section-mode-nav.is-away {
  background: #000;
}

.section-mode-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.section-mode-head {
  width: min(1000px, 100%);
  margin: 0px auto 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-top: 18px;
}

.section-mode-switch {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  width: min(1000px, 100%);
  margin: 0 auto;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}

.section-mode-button {
  min-width: 0;
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  position: relative;
  overflow: hidden;
  min-height: 44px;
  padding: 9px 32px 10px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: background 0.28s ease, color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
  opacity: 1;
  cursor: pointer;
}

.section-mode-button::before {
  content: none;
}

.section-mode-button::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 6px;
  height: 6px;
  margin-top: -4px;
  margin-left: 0;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  background: transparent;
  opacity: 0.78;
  transform: rotate(45deg);
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.section-mode-eyebrow,
.section-mode-name {
  position: relative;
  z-index: 1;
  text-align: center;
}

.section-mode-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.58);
}

.section-mode-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.1;
}

.section-mode-button:hover,
.section-mode-button:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.section-mode-button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.section-mode-button[href="#home-top"] {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.section-mode-button[href="#away-top"] {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.section-mode-button.is-current {
  background: linear-gradient(135deg, #ffffff 0%, #f7f7f7 48%, #eceff2 100%);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.section-mode-button:not(.is-current) {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.section-mode-button[href="#home-top"].is-current {
  color: #1c4fb6;
}

.section-mode-button[href="#away-top"].is-current {
  color: #eb2b2b;
}

.section-mode-button.is-current::after {
  opacity: 0.72;
}

.section-mode-button:hover .section-mode-eyebrow,
.section-mode-button:focus-visible .section-mode-eyebrow,
.section-mode-button.is-current .section-mode-eyebrow {
  color: rgba(255, 255, 255, 0.52);
}

.section-mode-button[href="#home-top"].is-current .section-mode-eyebrow {
  color: rgba(28, 79, 182, 0.52);
}

.section-mode-button[href="#away-top"].is-current .section-mode-eyebrow {
  color: rgba(182, 56, 70, 0.52);
}

.section-mode-button:hover::after,
.section-mode-button:focus-visible::after,
.section-mode-button.is-current::after {
  opacity: 1;
  transform: translateY(1px) rotate(45deg);
}

.section-mode-button:not(.is-current) span,
.section-mode-button:not(.is-current)::before {
  pointer-events: none;
}

.unit-ttl-box {
  color: #fff;
  text-align: center;
}

.unit-ttl {
  font-size: clamp(60px, 6vw, 110px);
  font-weight: 800;
  line-height: 1;
  margin: 10px 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.unit-ttl .sub-ttl01,
.unit-ttl .sub-ttl02 {
  display: block;
  font-size: 14px;
  font-weight: normal;
}

.char {
  transform: translateY(100px);
  transition: transfrom 0.5s;
}

.ease-in,
.ease-in-out {
  margin-bottom: 10px;
}

.concept-cont {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  color: #fff;
  position: relative;
  align-items: center;
  justify-content: space-between;
}

.concept-ttl span {
  display: block;
  font-size: 20px;
}

.concept-ttx {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}


.concept-ttx .unit-ttl-box {
  margin: 0 0 60px;
}

.concept-ttx .text-box p {
  font-size: 16px;
  line-height: 2;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}

.concept-ttx .big-font {
  font-size: 220%;
  font-weight: bold;
}

.unit-ttl-box {
  width: 100%;
}

.concept-img {
  width: 50%;
  aspect-ratio: 1 / 1;
}

.concept-img img {
  display: block;
  position: relative;
}

.img__word {
  opacity: 0;
}

.img__first-bg {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 100;
  transform-origin: left;
  transform: scaleX(0);
  background-color: #fff;
}

.player-gallery-box {
  background: #fff;
  padding-top: 2rem;
  height: 120vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.player-gallery {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.player-gallery .wrapper {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 20px);
}

.player-gallery .wrapper>li {
  flex: 0 0 25vw;
  list-style: none;
  padding: 1rem;
}


.player-gallery img {
  display: block;
  height: auto;
  width: 95%;
}

.campaign {
  background: #004685;
}

.campaign-away {
  background: #f6f5ea;
}

.campaign .text-box {
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  max-width: 1000px;
  margin: 0 auto;
}


.campaign-box {
  max-width: 1000px;
  margin: 0 auto;
}

.cptxt {
  font-size: 28px;
  font-weight: 700;
  margin: 60px auto 30px;
  text-align: center;
  color: #ffffff;
}



.cpgood,
.cpgood-away {
  display: flex;
  max-width: 1000px;
  justify-content: center;
  gap: 3%;
}

.cpgood li,
.cpgood-away li {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 32%;
  text-align: center;
}

.cpgood li{
  color: #ffffff;
}

.cpgood-away li{
  color: #000000;
}

.cpgood li img,
.cpgood-away li img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.cpgood li p,
.cpgood-away li p {
  font-size: 14px;
  line-height: 1.4;
}

.product-jfa {
  /* background: #004685; */
}

.product-jfa .sub-ttl02,
.product-jfa .unit-ttl {
  color: #fff;
}

.product-jfa-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.product-jfa-box li {
  width: 50%;
  box-sizing: border-box;
}

.product-jfa-ttl-box {
  margin: 0 0 40px;
}

.product-jfa-ttl-box .unit-ttl {
  font-size: clamp(40px, 6vw, 100px);
}


.product-jfa-tx {
  padding: 0 30px;
}

.home-tag {
  text-align: center;
  display: inline-block;
  background: #fff;
  color: #004685;
  padding: 5px 10px;
  margin: 10px 0;
}

.product-jfa-tx02 {
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
}

.product-jfa .btn-away,
.product-jfa .btn {
  margin: 40px 0 0;
  padding: 0;
}

.product-jfa .btn a {
  display: block;
  text-align: center;
  color: #fff;
  border: 1px solid #fff;
  padding: 15px 0;
  transition: .3s;
  position: relative;
}

.product-jfa .btn-away a {
  display: block;
  text-align: center;
  color: #000000;
  border: 1px solid #000000;
  padding: 15px 0;
  transition: .3s;
  position: relative;
}

.product-jfa .btn a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 45%;
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(135deg);
}

.product-jfa .btn-away a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 45%;
  width: 5px;
  height: 5px;
  border-top: 1px solid #000000;
  border-right: 1px solid #000000;
  transform: rotate(135deg);
}

.product-jfa .btn a:hover {
  background: #fff;
  color: #004685;
}

.product-jfa .btn a:hover::after {
  border-top: 1px solid #004685;
  border-right: 1px solid #004685;
}

.product-jfa .btn-away a:hover {
  background: #000000;
  color: #ffffff;
}

.product-jfa .btn-away a:hover::after {
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}

.footer {
  background: #fff;
  z-index: 2;
  position: relative;
}

.home-slider {
  overflow: hidden;
}

.home-slider .slick-list {
  overflow: hidden;
}

.home-slider .slick-track {
  display: flex;
  align-items: center;
}

.home-slider .slick-slide {
  width: auto !important;
  height: auto;
}

.home-slider .slick-slide > div {
  height: 100%;
}

.home-slider img,
.jfa-content .home-slider img {
  display: block;
  width: auto;
  max-width: none;
  height: 320px;
}

@media screen and (max-width: 1024px) {
  .jfa-content .home-slider img {
    width: auto;
    max-width: none;
    height: 240px;
  }
}

@media screen and (max-width: 768px) {
  .jfa-content .home-slider img {
    width: auto;
    max-width: none;
  }
}

/* ----▼▼▼ プレーヤーカット ▼▼▼---- */
.horizontal {
  position: relative;
  /* height: 100vh; */
  overflow: hidden;
  background: #fff;
  padding: 100px 0;
}

.horizontal__inner {
  /* display: flex; */
  /* height: 100%; */
}

.panel {
  position: relative;
  /* flex: 0 0 40vw; */
  /* height: 100vh; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.panel img {
  width: 96%;
  height: auto;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* 商品カード部分 */

.lineup {
  max-width: 1200px;
  margin: 0px auto 100px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  margin: 60px 0 40px;
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.section-title-away {
  font-size: 38px;
  font-weight: 700;
  margin: 60px 0 40px;
  color: #000000;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.top-items {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
}

.top-items .item {
  width: 40%;
  background: #fff;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.top-items .item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.top-items .item > img,
.bottom-items .item > img {
  display: block;
  width: 100%;
  height: auto;
}

.top-items .item > img:first-of-type:not(:last-of-type),
.bottom-items .item > img:first-of-type:not(:last-of-type) {
  transition: opacity 0.4s ease;
}

.top-items .item > img + img,
.bottom-items .item > img + img {
  position: absolute;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.top-items .item > img + img {
  top: 30px;
  left: 30px;
  width: calc(100% - 60px);
}

.bottom-items .item > img + img {
  top: 20px;
  left: 20px;
  width: calc(100% - 40px);
}

.top-items .item:hover > img:first-of-type:not(:last-of-type),
.bottom-items .item:hover > img:first-of-type:not(:last-of-type) {
  opacity: 0;
}

.top-items .item:hover > img + img,
.bottom-items .item:hover > img + img {
  opacity: 1;
}

.top-items .name {
  font-size: 18px;
  font-weight: 700;
  margin: 20px 0 12px;
}

.top-items .size {
  font-size: 15px;
  margin-bottom: 6px;
}

.top-items .price {
  font-size: 16px;
  font-weight: 600;
  margin: 12px 0 25px;
}

.top-items .btn {
  display: inline-block;
  border: 1px solid #00297a;
  background: #00297a;
  color: #fff;
  font-size: 15px;
  padding: 12px 26px;
  text-decoration: none;
  transition: 0.3s;
  width: 80%;
  position: relative;
  z-index: 2;
}

.top-items .btn::after {
  content: ">";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: normal;
  font-size: 16px;
}

.top-items .btn:hover {
  background: #ffffff;
  border: 1px solid #00297a;
  color: #00297a;
}


.item-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.bottom-items {
  display: flex;
  /* justify-content: space-between; */
  flex-wrap: wrap;
  gap: 30px;
}

.bottom-items .item {
  width: 28%;
  background: #fff;
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bottom-items .item:hover {
  transform: translateY(-3px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.bottom-items .name {
  font-size: 14px;
  font-weight: 700;
  color: #111;
  margin: 15px 0 10px;
}

.bottom-items .price {
  color: #111;
  font-weight: 700;
  margin: 10px 0 20px;
}

.bottom-items .size {
  color: #111;
  font-weight: 500;
}

.bottom-items .btn {
  display: inline-block;
  border: 1px solid #00297a;
  background: #00297a;
  color: #fff;
  font-size: 12px;
  padding: 10px 20px;
  text-decoration: none;
  transition: 0.3s;
  width: 80%;
  position: relative;
  z-index: 2;
}

.bottom-items .btn::after {
  content: ">";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: normal;
  font-size: 14px;
}

.bottom-items .btn:hover {
  background: #ffffff;
  border: 1px solid #00297a;
  color: #00297a;
}

.fixNavi {
  width: 100%;
  background: rgba(5, 37, 75, 0.8);
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 20;
  display: block;
  transition: background 0.3s ease;
}

.fixNavi ul {
  display: flex;
  border-right: 1px solid #fff;
  max-width: 1200px;
  margin: 0 auto;
}

.fixNavi ul li {
  width: 25%;
  border-left: 1px solid #fff;
}

.fixNavi ul li a {
  font-size: 16px;
  padding: 10px 0;
  color: #fff;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;

}

.fixNavi.is-away {
  background: rgba(120, 20, 32, 0.88);
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 72px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.82);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  padding-bottom: 11px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  cursor: pointer;
  z-index: 1005;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.back-to-top::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 50%;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  border-left: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: rgba(18, 18, 18, 0.94);
  border-color: rgba(255, 255, 255, 0.34);
}

.back-to-top:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.short-movie_list{
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	max-width:700px;
}

.short-movie_item{
    width:48%;
}

.hacobune-app-container{
	background:transparent !important;
}

.short-movie_txt{
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

.pcnone {
  display: none;
}

#short{
	padding-top:50px;
}

@media screen and (max-width: 768px) {

.short-movie_item{
    width:80%;
	margin:0 auto;
}
.short-movie_txt{
    font-size: 13px;
}

.hacobune-unit-video-outline{
padding:0 !important;
}



  .jfa-content {
    background-size: 100%;
  }

  .lineup {
    padding: 0px;
  }

  .top-items {
    flex-direction: column;
    align-items: center;
  }

  .top-items .item {
    width: 80%;
    padding: 24px;
  }

  .top-items .name {
    font-size: 16px;
  }

  .top-items .price {
    font-size: 16px;
  }

  .bottom-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px 10px;
    padding: 0 10px;
  }

  .bottom-items .item {
    width: calc(50% - 5px);
    box-sizing: border-box;
    padding: 0 0 15px 0;
  }

  .btn {
    width: 100%;
    font-size: 13px;
    padding: 0 20px;
  }

  .bottom-items .name {
    font-size: 12px;
    font-weight: 700;
    color: #111;
    margin: 10px 0 5px;
    padding: 0 15px;
    letter-spacing: 1px;
  }

  .bottom-items .price {
    color: #111;
    font-weight: 600;
    margin: 10px 0 15px;
    padding: 0 15px;
    font-size: 12px;
    letter-spacing: 1px;
  }

  .bottom-items .size {
    color: #111;
    font-weight: 500;
    padding: 0 15px;
    font-size: 14px;
    letter-spacing: 1px;
  }

  .bottom-items .btn::after {
    font-size: 12px;
    right: 5px;
  }

  .bottom-items .btn {
    width: 60%;
  }

  .section-title {
    font-size: 38px;
    font-weight: 700;
    margin: 30px 0 30px;
    color: #fff;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }

  .section-title-away {
    font-size: 38px;
    font-weight: 700;
    margin: 30px 0 30px;
    color: #000000;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }

  .video-section {
    background: #004685;
    color: #fff;
    text-align: center;
    padding: 60px 0 60px;
  }

  .video-section-away {
    background: #f6f5ea;
    color: #fff;
    text-align: center;
    padding: 60px 0 60px;
  }

  .cptxt {
    font-size: 24px;
    font-weight: 700;
    margin: 40px auto 30px;
    text-align: center;
    color: #ffffff;
  }

  .pcnone {
    display: block;
  }

  .cptxt02 {
    font-size: 14px;
    margin: 25px auto;
    line-height: 1.5;
  }
}


.federation {
  background: #fff;
}

.federation .unit-ttl-box {
  margin: 0 0 40px;
}

.federation .unit-ttl {
  font-size: clamp(40px, 6vw, 110px);
}

.federation .unit-ttl {
  color: #000;
}

.federation .sub-ttl02 {
  color: #000;
}


.fed-link-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

}

.fed-hover {
  display: block;
  overflow: hidden;
  position: relative;
}

.fed-hover img {
  display: block;
}

.fed-hover .caption {
  text-align: center;
  color: #000;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.fed-hover .caption p {
  font-size: 20px;
  font-weight: bold;
}

.fed-hover .mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.fed-hover:hover .mask {
  opacity: 1;
}

.faito-btn,
.fed-btn {
  max-width: 460px;
  width: 90%;
  margin: 50px auto 0;
}

.faito-btn a,
.fed-btn a {
  display: block;
  text-align: center;
  color: #fff;
  background: #000;
  border: 1px solid #000;
  padding: 15px 0;
  transition: .3s;
  position: relative;
}

.faito-btn a::after,
.fed-btn a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 45%;
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}


.fed-btn a:hover {
  background: #fff;
  color: #000;
}

.fed-btn a:hover::after {
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}

.faito-btn a:hover {
  background:none;
  color: #000000;
}

.faito-btn a:hover::after {
  border-top: 1px solid #000000;
  border-right: 1px solid #000000;
}

@media screen and (max-width:1024px) {
  .unit-block {
    padding: 50px 0;
  }

  .concept-cont li {
    width: 100%;
    padding: 0 20px;
    margin: 0 0 40px;
  }

  .concept-ttx,
  .concept-img {
    width: 100%;
  }

  .concept-ttx p {
    padding: 0 20px;
  }

  .concept-img img {
    min-width: unset;
    right: 0;
  }

  .product-jfa-box li {
    width: 100%;
  }

  .jfa-content img {
    width: 100%;
  }

  .player-gallery-box {
    height: 80vh;
  }

  .player-gallery {
    height: 40vh;
  }

  .player-gallery .wrapper>li {
    flex: 0 0 50vw;
  }

  /* ----▼▼▼ プレーヤーカット ▼▼▼---- */
  .horizontal {
    position: relative;
    /* height: 80vh; */
    overflow: hidden;
    padding: 40px 0;
  }


  .panel img {
    width: 95%;
  }




  /* ▼ スクロールバーの見た目 */
  .scrollbar {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.3);
    overflow: hidden;
  }

  .scrollbar__progress {
    height: 100%;
    width: 0%;
    background-color: #fff;
    transition: width 0.1s linear;
  }

  /* ----▲▲▲ プレイヤーカット ▲▲▲---- */


}

@media screen and (max-width:500px) {
  .inner {
    padding: 0 15px;
  }

  .player-gallery .wrapper>li {
    flex: 0 0 auto;
  }

  .fed-link-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .box-02 {
    height: unset;
  }

  .fixNavi ul li a {
    font-size: 12px;
    padding: 14px 0;
  }

  .back-to-top {
    right: 14px;
    bottom: 68px;
    width: 52px;
    height: 52px;
    font-size: 11px;
    padding-bottom: 10px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .inner {
    padding: 0 24px;
  }

  .section-mode-nav {
    padding: 28px 0 34px;
  }

  .section-mode-head,
  .section-mode-switch {
    width: calc(100% - 48px);
  }

  .section-mode-label {
    font-size: 24px;
  }

  .section-mode-button {
    min-height: 52px;
    padding: 10px 34px 11px 24px;
  }

  .section-mode-eyebrow {
    font-size: 9px;
  }

  .section-mode-name {
    font-size: 16px;
  }

  .top-items {
    gap: 24px;
  }

  .top-items .item {
    width: calc(50% - 12px);
    padding: 24px;
  }

  .bottom-items {
    gap: 24px 16px;
    justify-content: center;
    padding: 0 24px;
  }

  .bottom-items .item {
    width: calc((100% - 32px) / 3);
    padding: 16px 16px 18px;
  }

  .bottom-items .name {
    font-size: 13px;
    padding: 0;
  }

  .bottom-items .price,
  .bottom-items .size {
    padding: 0;
    font-size: 13px;
  }

  .bottom-items .btn {
    width: 70%;
  }

  .target_product {
    width: 100%;
    gap: 16px;
  }

  .target_product .product-card {
    width: calc((100% - 32px) / 3);
  }

  .fed-link-box {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==== VIDEO SECTION ==== */
.video-section {

  color: #fff;
  text-align: center;
  padding: 100px 0 100px;
}

.video-wrap {
  max-width: 1000px;
  margin: 0px auto 0;
  padding: 0 !important;
}

.video-wrap--crossfade {
  display: grid;
}

.video-wrap--crossfade video {
  grid-area: 1 / 1;
  transition: opacity 0.8s ease;
}

.video-wrap--crossfade video.is-active {
  opacity: 1;
  z-index: 2;
}

.video-wrap--crossfade video.is-hidden {
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.video-wrap video {
  width: 100%;
  height: auto;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
  display: block;
}

.video-caption {
  font-size: 16px;
  margin-top: 20px;
  font-family: "Noto Sans JP", sans-serif;
  opacity: 0.9;
}

@media screen and (max-width: 768px) {
  .video-caption {
    font-size: 14px;
  }
}



.side-nav {
  position: fixed;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  z-index: 1000;
  width: 188px;
  max-height: calc(100vh - 140px);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 20px;
  padding: 14px 10px 12px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
  transition: opacity 0.3s ease, visibility 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.side-nav.is-away {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(17, 17, 17, 0.08);
}

.side-nav-title {
  margin: 0 0 10px !important;
  color: #111111;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.side-nav-groups,
.sp-nav-groups {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-group-japan {
  padding: 10px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(29, 74, 162, 0.12) 0%, rgba(255, 255, 255, 0.88) 48%, rgba(202, 34, 54, 0.12) 100%),
    #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.side-nav.is-away .nav-group-japan,
.sp-nav-menu.is-away .nav-group-japan {
  background:
    linear-gradient(135deg, rgba(29, 74, 162, 0.12) 0%, rgba(255, 255, 255, 0.88) 48%, rgba(202, 34, 54, 0.12) 100%),
    #ffffff;
  border-color: rgba(17, 17, 17, 0.08);
}

.nav-group-federation {
  padding: 10px;
  border-radius: 16px;
  background: #f7f7f7;
  border: 1px solid rgba(17, 17, 17, 0.06);
}

.nav-group-title {
  margin: 0;
  color: #111111;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.nav-group-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.nav-group-grid-japan {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nav-group-grid-federation {
  grid-template-columns: 1fr;
}

.side-nav ul {
  margin: 0;
  padding: 0;
}

.side-nav li {
  margin-bottom: 0;
}

.nav-card {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  color: #111111;
  text-decoration: none;
  letter-spacing: 0.03em;
  line-height: 1.25;
  min-height: 48px;
  padding: 9px 10px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
  transition: background 0.22s ease, transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  position: relative;
  overflow: hidden;
}

.nav-card::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  opacity: 0.45;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-card:hover,
.nav-card:focus-visible {
  background: linear-gradient(180deg, #ffffff 0%, #f3f6fb 100%);
  border-color: rgba(29, 74, 162, 0.22);
  transform: translateX(2px) scale(1.02);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.1);
}

.nav-card:focus-visible {
  outline: 2px solid #111111;
  outline-offset: 3px;
}

.nav-card:hover::after,
.nav-card:focus-visible::after {
  opacity: 0.9;
  transform: translateY(-50%) translateX(2px) rotate(45deg);
}

.nav-card-japan {
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 7px;
  min-height: 82px;
  padding: 10px 8px;
}

.nav-card-japan:hover,
.nav-card-japan:focus-visible {
  transform: translateY(-2px) scale(1.02);
}

.nav-card-japan::after {
  content: none;
}

.nav-card-japan p,
.nav-card-japan span {
  text-align: center;
}

.nav-card img {
  width: 30px;
  height: 30px;
  margin-right: 0;
  border-radius: 7px;
  object-fit: cover;
}

.nav-card span {
  color: rgba(17, 17, 17, 0.62);
}

.side-nav .nav-card-japan {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 248, 251, 0.98) 100%);
}

.side-nav .nav-card-japan:hover,
.side-nav .nav-card-japan:focus-visible {
  border-color: rgba(29, 74, 162, 0.24);
  box-shadow: 0 12px 24px rgba(29, 74, 162, 0.1);
}

/* ========== SPナビ ========== */
.sp-nav-tab {
  position: fixed;
  right: 0;
  top: 30%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.96);
  color: #111111;
  padding: 20px 12px 16px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: bold;
  letter-spacing: 0.14em;
  border-radius: 18px 0 0 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  cursor: pointer;
  z-index: 1001;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.sp-nav-tab::before {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto 10px;
  background: currentColor;
  box-shadow: 0 6px 0 currentColor, 0 12px 0 currentColor;
}

.side-nav.is-visible,
.sp-nav-tab.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sp-nav-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(82vw, 320px);
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.98);
  z-index: 1003;
  padding: 20px 18px 28px;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  box-shadow: -12px 0 30px rgba(0, 0, 0, 0.18);
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

.sp-nav-menu.active {
  transform: translateX(0);
}

.sp-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  z-index: 1002;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.sp-nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.sp-nav-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid #d9d9d9;
}

.sp-nav-menu-title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.sp-nav-close {
  border: 0;
  background: transparent;
  font-size: 30px;
  line-height: 1;
  font-weight: 400;
  cursor: pointer;
}

.sp-nav-menu ul {
  padding: 0;
}

.sp-nav-menu li {
  margin-bottom: 0;
}

.sp-nav-menu .nav-group {
  gap: 12px;
}

.sp-nav-menu .nav-group-japan {
  background:
    linear-gradient(135deg, rgba(29, 74, 162, 0.12) 0%, rgba(255, 255, 255, 0.88) 48%, rgba(202, 34, 54, 0.12) 100%),
    #ffffff;
  border-color: rgba(17, 17, 17, 0.08);
}

.sp-nav-menu .nav-group-federation {
  background: #f7f7f7;
  border-color: rgba(17, 17, 17, 0.06);
}

.sp-nav-menu .nav-group-title {
  color: #111111;
}

.sp-nav-menu .nav-group-grid-japan {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.sp-nav-menu .nav-card {
  color: #111;
  background: #ffffff;
  border-color: rgba(17, 17, 17, 0.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.sp-nav-menu .nav-card:hover,
.sp-nav-menu .nav-card:focus-visible {
  background: #ffffff;
  border-color: rgba(17, 17, 17, 0.18);
}

.sp-nav-menu .nav-card-japan {
  min-height: 110px;
}

.sp-nav-menu .nav-card img {
  width: 42px;
  height: 42px;
}

.side-nav p,
.sp-nav-menu p {
  margin: 0;
}

@media screen and (min-width: 769px) {
  .side-nav {
    display: none;
  }

  body.sp-nav-open {
    overflow: hidden;
  }

  .sp-nav-tab {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    top: 98px;
    right: 15px;
    transform: none;
    min-width: 145px;
    justify-content: center;
    padding: 14px 20px;
    writing-mode: horizontal-tb;
    text-orientation: initial;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.12em;
    border-radius: 999px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
    pointer-events: auto;
  }

  .sp-nav-tab::before {
    content: "";
    width: 18px;
    height: 2px;
    margin-bottom: 0;
    margin-right: 2px;
    padding: 0;
    border-radius: 0;
    background: currentColor;
    color: inherit;
    box-shadow: 0 6px 0 currentColor, 0 -6px 0 currentColor;
    flex: 0 0 auto;
  }

  .sp-nav-tab::after {
    content: "";
    width: 6px;
    height: 6px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    margin-top: -1px;
    opacity: 0.9;
  }

  .sp-nav-tab:hover,
  .sp-nav-tab:focus-visible {
    background: #ffffff;
    border-color: rgba(29, 74, 162, 0.22);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
    transform: translateY(-1px);
  }

  .sp-nav-tab:focus-visible {
    outline: 2px solid #111111;
    outline-offset: 3px;
  }

  .sp-nav-tab[aria-expanded="true"]::after {
    transform: rotate(135deg);
  }

  .sp-nav-menu {
    width: min(420px, 36vw);
    padding: 24px 20px 32px;
    background: rgba(255, 255, 255, 0.98);
    color: #111111;
    box-shadow: -16px 0 40px rgba(0, 0, 0, 0.16);
  }

  .sp-nav-menu-head {
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  }

  .sp-nav-menu-title,
  .sp-nav-close {
    color: #111111;
  }

  .sp-nav-menu .nav-group-grid-federation {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .sp-nav-menu .nav-group-japan {
    background:
      linear-gradient(135deg, rgba(29, 74, 162, 0.12) 0%, rgba(255, 255, 255, 0.88) 48%, rgba(202, 34, 54, 0.12) 100%),
      #ffffff;
    border-color: rgba(17, 17, 17, 0.08);
  }

  .sp-nav-menu .nav-group-federation {
    background: #f7f7f7;
    border-color: rgba(17, 17, 17, 0.06);
  }

  .sp-nav-menu .nav-group-title,
  .sp-nav-menu .nav-card {
    color: #111111;
  }

  .sp-nav-menu .nav-card {
    gap: 12px;
    font-size: 13px;
    border-color: rgba(17, 17, 17, 0.08);
    background: #ffffff;
  }

  .sp-nav-menu .nav-card-japan {
    min-height: 104px;
  }

  .sp-nav-menu span {
    color: rgba(17, 17, 17, 0.62);
  }

  .sp-nav-overlay {
    background: rgba(0, 0, 0, 0.56);
  }
}

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

  body.sp-nav-open {
    overflow: hidden;
  }
}

@media screen and (max-width: 768px) {
  .sp-nav-menu {
    width: min(88vw, 360px);
    height: 100vh;
    height: 100dvh;
    max-height: 100dvh;
    padding: 16px 16px calc(132px + env(safe-area-inset-bottom));
  }

  .sp-nav-tab {
    top: 92px;
    bottom: auto;
    right: 0;
    transform: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 92px;
    min-height: 44px;
    padding: 12px 10px;
    writing-mode: horizontal-tb;
    text-orientation: initial;
    line-height: 1;
    letter-spacing: 0.08em;
    border-radius: 20px 0 0 20px;
  }

  .sp-nav-tab::before {
    width: 16px;
    height: 2px;
    margin: 0 2px 0 0;
    box-shadow: 0 5px 0 currentColor, 0 -5px 0 currentColor;
  }

  .sp-nav-menu .nav-group-grid-japan {
    gap: 8px;
  }

  .sp-nav-menu .nav-card {
    min-height: 62px;
    padding: 12px 10px;
  }

  .sp-nav-menu .nav-card-japan {
    min-height: 96px;
    padding: 12px 8px;
  }
}

/*--marking--*/
.howto-marking-list {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 82%;
}

.howto-marking-list p {
  width: 46%;
  text-align: left;
}

.howto-line {
  border-top: 1px solid #eee;
  height: 1px;
  margin: 40px auto;
  width: 96%;
}

.howto-marking-txt {
  text-align: left;
  font-size: 0.8em;
  line-height: 1.8;
  display: block;
  margin: 20px 0;
}

.marking {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 0 20px;
  background: #fff;
  text-align: center;
  box-sizing: border-box;
}

.marking h3 {
  font-size: clamp(30px, 4vw, 40px);
  color: #10112c;
  font-weight: 600;
  margin: 0 0 1em;
  letter-spacing: .04em;
}

.marking p {
  font-size: 16px;
  margin: 0 0 1.6em;
  line-height: 1.8em;
  font-weight: 500;
  color: #10112c;
  text-align:center;
}

.marking a {
  font-size: 15px;
  max-width: 600px;
  border-radius: 99px;
  padding: 10px 0 13px;
  margin: auto;
  background: #10112c;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pc-none{
  display: none;
}

@media screen and (max-width: 768px) {
  .sp-nav-tab {
    padding: 25px 14px 25px;
    font-size: 14px;
    letter-spacing: 0.2em;
    border-radius: 18px 0 0 18px;
  }

  .section-mode-nav {
    padding: 30px 0 30px;
  }

  .section-mode-head {
    width: calc(100% - 30px);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 12px;
    align-items: center;
    gap: 0;
    padding-top: 0;
  }

  .section-mode-label {
    font-size: 20px;
    letter-spacing: 0.14em;
  }

  .section-mode-switch {
    width: calc(100% - 30px);
    margin-left: auto;
    margin-right: auto;
    gap: 6px;
    padding: 5px;
  }

  .section-mode-button {
    min-height: 54px;
    padding: 9px 16px 11px 16px;
    gap: 3px;
    border-radius: 999px;
  }

  .section-mode-eyebrow {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .section-mode-name {
    font-size: 16px;
    letter-spacing: 0.12em;
  }

  .section-mode-button::after {
    right: 13px;
    top: 50%;
    width: 5px;
    height: 5px;
    margin-top: -3px;
  }

  .marking {
    margin: 60px 15px;
    padding: 40px 0 20px;
  }
  .pc-none{
    display: block;
  }

  .marking p {
    width: 100%;
  }

  .howto-marking-list {
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 500px) {
  .marking {
    margin: 60px 15px;
    padding: 40px 0 10px;
  }

  .marking a{
    margin: 0 10px;
  }
}
.item .tag {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  padding: 4px 8px;
  z-index: 3;
  letter-spacing: 0.5px;
  pointer-events: none;
}

.tag.kids {
  background-color: #da8311;
}

.tag.women {
  background-color: #e4007f;
}




@media screen and (max-width: 768px) {
  .item .tag {
    top: 0;
    left: 0;
    font-size: 10px;
  }

.marking h3 {
    font-size: 26px;
    padding: 0px 20px 0 20px;
}
}

.comingsoon {
    display: inline-block;
    /*background: #030303;
    color: #fff;*/
    font-size: 14px;
    padding: 10px;
    text-decoration: none;
    transition: 0.3s;
    width: 90%;
    position: relative;
    z-index: 2;
    font-weight: 600;
}

.cptitle{
  font-size: 18px;
  font-weight: 700;
  color: white;
  display: inline-block;
  padding: 0.3em 0.7em;
  border: 1px solid #fff;
  color: #fff;
  margin: 40px 0 15px;
}

.cptitle-away{
  font-size: 18px;
  font-weight: 700;
  color: rgb(0, 0, 0);
  display: inline-block;
  padding: 0.3em 0.7em;
  border: 1px solid #000000;
  color: #000000;
  margin: 40px 0 15px;
}

.cptxt01{
  font-size: 16px;
  color: white;
  letter-spacing: 1.5px;
  line-height: 1.5;
  margin-bottom: 30px;
}
.cptxt01 span{
  font-size: 18px;
  font-weight: 700;
  color: white;
  letter-spacing: 1.5px;
  line-height: 2em;
}

.cptxt02 {
  font-size: 14px;
  margin-top: 40px;
  color: #ffffff;
}

.cptxt01-away{
  font-size: 16px;
  color: rgb(0, 0, 0);
  letter-spacing: 1.5px;
  line-height: 1.5;
  margin-bottom: 30px;
}

.cptxt01-away span{
  font-size: 18px;
  font-weight: 700;
  color: rgb(0, 0, 0);
  letter-spacing: 1.5px;
  line-height: 2em;
}

.cptxt02-away {
  font-size: 14px;
  margin-top: 40px;
  color: #000000;
}

.target_product {
  width: 1000px;
  margin: 30px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.product-card {
  width: calc((1000px - 60px) / 4);
  text-align: center;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  transition: 0.3s;
}

.product-card img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.product-name {
  font-size: 12px;
  margin-bottom: 5px;
  color: #ffffff;
}

.target_product .product-card:nth-child(n+5) {
  display: none;
}

.toggle-btn {
  margin: 30px auto 0;
  text-align: center;
  background: #fff;
  color: #004685;
  display: flex;
  padding: 10px 30px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: bold;
  width: 60%;
  justify-content: center;
  font-size: 16px;
}

.toggle-btn:hover {
  background: #004685;
  color: #fff;
}

.toggle-btn-away {
  margin: 30px auto 0;
  text-align: center;
  background: #000000;
  color: #ffffff;
  border: solid 1px #000000;
  display: flex;
  padding: 10px 30px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: bold;
  width: 60%;
  justify-content: center;
  font-size: 16px;
}

.toggle-btn-away:hover {
  background: #ffffff;
  color: #000000;
  border: solid 1px #ffffff;
}

@media screen and (max-width: 768px) {
  .target_product {
    width: 100%;
    gap: 15px;
    margin: 15px auto;
  }
  .product-card {
    width: calc((100% - 10px) / 2);
  }
}


@media screen and (max-width: 768px) {

.cptxt02 {
    font-size: 14px;
    margin: 20px auto;
    line-height: 1.5;
}
}

@media screen and (max-width: 768px) {
  .target_product .product-card {
    width: calc(50% - 8px);
  }

  .target_product .product-card:nth-child(n+3) {
    display: none;
  }

  .product-name {
  margin-bottom: 15px;
}
.cp_targetsmoll{
  font-size: 10px;
  padding: 5px 10px;
}
.gentei{
  font-size: 10px;
  padding: 5px 10px;
}
}

.cp_target{
  background-color: #ff1e1e;
  font-size: 14px;
  display: inline-block;
  padding: 5px 20px;
  color: #ffffff;
  font-weight: 600;
}

.cp_targetsmoll{
  background-color: #ff1e1e;
  font-size: 12px;
  display: inline-block;
  padding: 5px 20px;
  color: #ffffff;
  font-weight: 600;
}

.gentei{
background-color: #2b2f5f;
    font-size: 12px;
    display: inline-block;
    padding: 5px 20px 7px;
    color: #ffffff;
    font-weight: 600;
  margin-left: 8px;
  margin-right: 8px;
  margin-bottom: 5px;
}

.target_product .product-card {
  display: none;
}

.side-nav span{
  font-size: 10px;
}

@media screen and (max-width: 768px) {
.cp_targetsmoll{
  font-size: 10px;
  padding: 5px 10px;
  margin-top: 5px;
}

.gentei{
  font-size: 10px;
  padding: 5px 10px;
}

.comingsoon {
  display: inline-block;
  /*background: #000000;
  color: #fff;*/
  font-size: 12px;
  padding: 10px 20px;
  text-decoration: none;
  transition: 0.3s;
  width: 80%;
  position: relative;
  z-index: 2;
}

.sp-nav-menu span{
  font-size: 12px;
}

  .cpgood li p {
  font-size: 12px;
  line-height: 1.4;
}

  .campaign-box-away .cpgood {
    justify-content: space-between;
    gap: 20px 0;
  }

  .campaign-box-away .cpgood li {
    width: 48%;
  }

.spnone{
  display: none;
}

}

.staff_styling{
  margin: 80px auto;
  max-width: 1200px;
}
.staff_styling h1{
  margin: 100px auto 60px;
  color: #ffffff;
  font-size: 60px;
  font-weight: bold;
  text-align: center;
}

.staff_styling ul{
  margin: 0 auto;
  width: 1200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.staff_styling li{
  margin: 0 auto;
  width: 31%;
  display: flex;
}

.staff_styling p{
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin: 10px auto 30px;
  text-align: left;
  line-height: 1.6;
}

.staff_styling span{
  font-size: 14px;
  font-weight: normal;
  color: #ffffff;
  text-align: left;
}


@media screen and (max-width: 768px) {

  .staff_styling{
  padding: 0 4%;
}

.staff_styling ul{
  width: 100%;
  gap: 4%;
}

.staff_styling li{
  width: 48%;
}
}


/* ===== staff popup ===== */
.staff-popup {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
}

.staff-popup.active {
  display: flex;
}

.staff-popup__content {
  background: #fff;
  width: 800px;
  max-width: 95%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  padding: 40px 20px;
}

.staff-popup__close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.staff-popup__inner {
  display: flex;
  gap: 24px;
}

/* 左側：スタッフ画像 */
.staff-popup__left {
  position: relative;
  width: 45%;
}
.staff-popup__slider img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

.staff-popup__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
}
.staff-popup__arrow.prev { left: 10px; }
.staff-popup__arrow.next { right: 10px; }

/* 右側：スタッフ情報＋商品 */
.staff-popup__right {
  width: 52%;
  display: flex;
  flex-direction: column;
}

.staff-popup__name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}
.staff-popup__height {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}
.staff-popup__comment {
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 20px;
  padding-right: 30px;
}

.staff-popup__comment02 {
  font-size: 16px;
  font-weight: 800;
}


.staff-popup__items {
  display: flex;
  gap: 12px;
  overflow: visible;
}
.staff-popup__items .product-card {
  flex: 0 0 260px;
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px;
  text-align: center;
}
.staff-popup__items .product-card img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 8px;
}
.staff-popup__items .product-card p {
  margin: 0;
  font-size: 14px;
}


.staff-slider-bar {
  width: 92%;
  height: 4px;
  background: #e0e0e0;
  border-radius: 2px;
  margin-top: 16px;
  position: relative;
  display: none;
}
.staff-slider-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: var(--progress, 0%);
  background: linear-gradient(90deg, #00297A, #0046D8);
  transition: width 0.35s ease;
}

/* SP対応 */
@media screen and (max-width: 750px) {
  .staff-popup__inner {
    flex-direction: column;
  }
  .staff-popup__left,
  .staff-popup__right {
    width: 100%;
  }
  .staff-popup__arrow.prev { left: 12px; }
  .staff-popup__arrow.next { right: 12px; }
  .staff-popup__items {
    overflow-x: auto;
  }
  .staff-popup__items::-webkit-scrollbar {
    display: none;
  }
}


.staff-popup__items {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 12px;
  overflow: hidden;
  max-width: 100%;
}

.staff-popup__items .product-card {
  flex: 0 0 170px !important;
  width: 170px !important;
  height: auto;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #787878;
  border-radius: 6px;
  text-align: center;
}

.staff-popup__items .product-card img {
  width: 100%;
  max-width: 240px;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

.staff-popup__items .product-card p {
  margin: 10px 0 10px;
  font-size: 10px;
  color: #111;
  font-weight: 600;
}


.staff-popup__items .slick-track {
  display: flex !important;
  justify-content: flex-start;
}

.staff-popup__items .slick-slide {
  float: none !important;
  height: auto !important;
}

.staff-popup__items .slick-list {
  overflow: visible !important;
}


.staff-popup__items .slick-slide {
  width: 170px !important; 
  float: none !important;
  display: flex !important;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
}


.staff-popup__items .slick-track {
  display: flex !important;
  justify-content: flex-start;
  align-items: flex-start;
}


.staff-popup__items .slick-list {
  overflow: visible !important;
}

.staff-popup__content {
    background: #fff;
    width: 800px;
    max-width: 100%;
    border-radius: 10px;
    /* overflow: hidden; */
    position: relative;
    padding: 20px 0px 20px 20px;
    bottom: 3%;
    /* height: 77px; */
}

@media screen and (max-width: 750px) {
.staff-popup__content {
    top: 60%;
    overflow: scroll;
    padding: 40px 20px 100px;
}

.staff-popup {
    overflow: scroll;
}

.staff-popup {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  padding:15px;
}

.staff_styling h1 {
    margin: -30px auto 60px;
    font-size: 60px;
    letter-spacing: 1.5px;
    line-height: 1.2;
}
}


.target_product {
  column-gap: 20px !important;
  row-gap: 20px !important;
}


@supports not (gap: 1rem) {
  .target_product {
    margin: 30px auto -20px -20px !important;
  }
  .target_product .product-card {
    margin: 0 0 20px 20px !important;
  }
}


.staff-popup__items{
  column-gap: 12px !important;
  row-gap: 12px !important; 
}



.staff-popup__items.slick-initialized{
  gap: 0 !important;
}
.staff-popup__items.slick-initialized .slick-track{
  gap: 0 !important;
}
.staff-popup__items.slick-initialized .slick-slide{
  margin-right: 12px !important;
}
.staff-popup__items.slick-initialized .slick-slide:last-child{
  margin-right: 0 !important;
}


@supports not (gap: 1rem) {

  .staff-popup__items{
    margin: 0 -6px -12px -6px !important;
  }
  .staff-popup__items .product-card{
    margin: 0 6px 12px 6px !important;
  }
}

.staff-slider-bar {
  position: relative;
  width: 92%;
  height: 4px;
  background: #e5e5e5;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 10px;
}

.staff-slider-progress {
  width: 0%;
  height: 100%;
  background: #2b2f5f;
  transition: width 0.25s linear;
}




.staff-slider-bar {
  width: 92%;
  height: 3px;
  background: #ffffff;
  position: relative;
  margin: 12px 0 0;
  display: block !important;
  overflow: hidden;
}

.staff-slider-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: #004685;
  transition: width 0.2s linear;
}

@media screen and (max-width: 750px) {
.staff-slider-bar {
    width: 100%;
}

.staff-popup__name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.staff-popup__height {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}

.staff-popup__comment {
  font-size: 14px;
  line-height: 1.6;

  margin-bottom: 20px;
  padding-right: 30px;
}

.staff-popup__comment02 {
  font-size: 16px;
  font-weight: 800;
}

.staff-popup__items .product-card {
  flex: 0 0 220px !important; /* 固定幅で統一 */
  width: 220px !important;
}

.staff-popup__items .product-card p {
  font-size: 14px;
}

.staff-popup__items .slick-slide {
  width: 220px !important; 
}

}

/* ============================
   ★ 背景スクロール禁止
   ============================ */
/* ==================================
   背景スクロール禁止（位置保持対応）
   ================================== */
body.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}


/* ---------------------------------------------
   スタッフ：商品スライダー矢印
--------------------------------------------- */
.staff-items-prev,
.staff-items-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 50;
}

.staff-items-prev { left: -20px; }
.staff-items-next { right: -20px; }

.staff-items-prev:hover,
.staff-items-next:hover {
  background: #eee;
}


/* ▼ 商品スライダー下の矢印ナビゲーション */
.staff-items-nav-bottom {
  text-align: center;
  margin-top: 20px;
  display: none; /* 商品2個以下の時は非表示 */
}

.staff-items-nav-bottom button {
  background: none;
  border: none;
  font-size:10px;
  margin: 0 25px;
  cursor: pointer;
  color: #444;
  transition: 0.2s;
}

.staff-items-nav-bottom button:hover {
  transform: scale(1.1);
  color: #000;
}
/* ================================
   商品カードスライダー用・下部矢印
================================ */
.staff-items-bottom-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.staff-items-bottom-nav button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ff5d5d;
  border: none;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
}

.staff-items-bottom-nav button:hover {
  background: #004685;
  color: #fff;
}

/* ▼▼▼ 商品カードスライダー下の矢印ボタン ▼▼▼ */

.staff-items-nav-bottom {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 18px 0 10px;
}

.staff-items-bottom-prev,
.staff-items-bottom-next {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e5e7eb;   /* 薄いグレー */
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  color: #111;
  transition: background .2s, transform .2s;
}

.staff-items-bottom-prev::before {
  content: "◀";
}

.staff-items-bottom-next::before {
  content: "▶";
}

.staff-items-bottom-prev:hover,
.staff-items-bottom-next:hover {
  background: #d1d5db;
  transform: translateY(-2px);
}

/* slick active 時の位置調整（壊さないやつ） */
.staff-popup__items.slick-initialized + .staff-items-nav-bottom {
  margin-top: 20px;
}

/* 商品が 1〜2 個でスライダー無しのとき → ボタン非表示 */
.no-slider .staff-items-nav-bottom {
  display: none !important;
}
/* ▼ 商品カードスライダー下の矢印ボタン（常時白丸） */
.staff-items-nav-bottom {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 18px;
}

.staff-items-bottom-prev,
.staff-items-bottom-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #a3a3a3;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15); /* なめらか影 */
}

/* 矢印中身 */
.staff-items-bottom-prev::before {
  content: "◀";
}
.staff-items-bottom-next::before {
  content: "▶";
}

/* ホバー時：少し濃いグレーに */
.staff-items-bottom-prev:hover,
.staff-items-bottom-next:hover {
  background: #f0f0f0;
}

.horizontal {
  background: #fff;
  padding: 60px 0;
  overflow: hidden;
}

.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  margin: 20px 0;
  content-visibility: auto;
  contain-intrinsic-size: 180px;
}

.marquee__inner {
  display: inline-flex;
  gap: 20px;
  width: max-content;
  animation: marquee var(--marquee-duration, 40s) linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.marquee--bottom .marquee__inner {
  animation-direction: reverse;
}

.marquee__inner img {
  width: 300px;
  height: auto;
  flex-shrink: 0;
  user-select: none;
  pointer-events: none;
}

/* 無限ループ */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-1 * var(--marquee-distance, 50%))); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__inner {
    animation: none;
    transform: none;
  }
}

@media screen and (max-width: 750px) {
.marquee__inner img {
  width: 300px;
}
}

.bana_bg{
    background-color:#ffffff;
}

.pack_bana{
    margin: 0 auto;
    max-width: 100%;
    width: 1000px;
    padding: 0 0 0 0;
}

.pack_banatxt{
    font-family: "adineuePRO", 'Poppins', sans-serif;
    text-align: center;
    font-size: 44px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.pack_banatxt2{
    font-family: "adineuePRO", 'Poppins', sans-serif;
    text-align: center;
    font-size: 54px;
    font-weight: 700;
    /*color: #373d65;*/
	margin-top:40px;
}

.pack_bana span {
    margin: 10px auto 30px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    color: #ffffff;
}

.pack_banatxt2-2{
    margin: 10px auto 30px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: center;
}

.pack_banabtn{
    margin: 30px auto 0px;
    font-size: 18px;
    font-weight: 700;
    padding: 15px 20px;
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    width: 60%;
    position: relative;
    border: solid 1px #000000;
}

.pack_banabtn::after {
    content: "▶";
    font-size: 10px;
    margin-left: 9px;
    color: #ffffff;
    position: absolute;
    right: 3%;
    bottom: 35%;
}

.pack_banabtn:hover{
    background-color: #ffffff;
    color: #000000;
    border: solid 1px #000000;
}

.pack_banabtn:hover::after{
    color:rgb(0, 0, 0);
}

.pack_banatxt02{
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    margin: 15px auto 30px;
}

.pack_banatxt{
    font-family: "adineuePRO", 'Poppins', sans-serif;
    text-align: center;
    font-size: 44px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
}

.pack_banatxt2{
    font-family: "adineuePRO", 'Poppins', sans-serif;
    text-align: center;
    font-size: 54px;
    font-weight: 700;
    /*color: #373d65;*/
	margin-top:40px;
}

.pack_banatxt2-2{
    margin: 10px auto 30px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: center;
}

.pack_banatxt02{
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    margin: 15px auto 30px;
    color: #000000;
}

@media screen and (max-width: 768px) {

 .bana_bg {
    padding-bottom: 80px;
}

.pack_banatxt {
    font-size: 44px;
    font-weight: bold;
    line-height: 1.32;
}

.pack_banatxt2 {
    font-size: 44px;
    font-weight: bold;
    line-height: 1.1;
}


.pack_bana {
    max-width: 94%;
    margin: 0 auto;
}

.pack_banabtn {
    width: 86%;
}

.pack_banabtn::after {
    right: 5%;
    bottom: 40%;
}

.pack_banatxt {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.32;
}

.pack_banatxt2 {
    font-size: 44px;
    font-weight: bold;
    line-height: 1.1;
}
}




/* 260310追記 */

.concept-away
.concept-cont,
.concept-away
.unit-ttl-box,
.concept-away
.concept-ttx p{
  color:#000;
}

.campaign-box-away{
  max-width: 1000px;
  color:#000;
  margin: 0 auto;
}

.campaign-box-away,
.campaign-box-away p,
.campaign-box-away .cptxt{
  color:#000;
}

.campaign-box-away .cpgood {
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 24px 2%;
}

.campaign-box-away .cpgood li {
  max-width: none;
  width: 23.5%;
}

@media screen and (max-width: 768px) {
  .campaign-box-away .cpgood {
    justify-content: space-between;
    gap: 20px 0;
  }

  .campaign-box-away .cpgood li {
    width: 48%;
  }
}

.product-jfa-box-away{
  color:#000;
}

.product-jfa-box-away li{
color:#000;
}

.product-jfa-box-away li .unit-ttl,
.product-jfa-box-away li .sub-ttl02,
.product-jfa-box-away li .product-jfa-tx02{
color:#000;
}

.product-jfa-box-away {
  display: flex;
  align-items: center;
}

.product-jfa-box-away li {
  width: 100%;
  box-sizing: border-box;
}

.product-jfa-ttl-box-away {
  margin: 0 0 40px;
}

.product-jfa-ttl-box-away .unit-ttl {
  font-size: clamp(40px, 6vw, 100px);
}

.home-tag-away {
    text-align: center;
    display: inline-block;
    background: #ff0000;
    color: #ffffff;
    padding: 5px 10px;
    margin: 10px 0;
}

.home-section{
background:url(../img/jfa2025/jfa-background.jpg) no-repeat center top;
background-attachment:fixed;
background-size:auto;
padding-bottom: 80px;
position: relative;
}

.away-section{
background:url(../img/jfa2025/jfa-background-away.jpg) no-repeat center top;
background-attachment:fixed;
background-size:100% auto;
padding-bottom: 120px;
position: relative;
}


@media screen and (max-width: 768px) {
.product-jfa-ttl-box {
    margin: 20px 0 15px;
}

.product-jfa-box-away,
.product-jfa-box {
    flex-wrap: wrap;
}

.home-section{
background:#292f60 url(../img/jfa2025/jfa-background-homu_sp.jpg) no-repeat center top / contain !important;
padding-bottom: 20px;
}

.away-section{
background:#f4f2e8 url(../img/jfa2025/jfa-background-away_sp.jpg) no-repeat center top / contain !important;
padding-bottom: 20px;
}

.horizontal {
    padding: 60px 0;
}

.target_product {
    row-gap: 20px !important;
    column-gap: 15px !important;
}
}

.hacobune-container {
  width: 100%;
  min-height: 400px;
}
.hacobune-unit-video-title{
  display: none;
}

.hacobune-app-container[data-v-f6dfcf18] {
  padding: 100px 0 30px !important;
}

.hacobune-container {
  width: 100% !important;
  min-height: 400px !important;
}
.hacobune-univideo {
  overflow: visible !important;
}

@media (max-width: 750px) {
    .hacobune-unit-video[data-v-2a6c6f09] {
      margin: 40px 0 !important; 
    }

    .hacobune-app-container[data-v-f6dfcf18] {
        width: 95% !important;
        margin: 0px auto !important;
        padding: 20px 0 10px !important;
    }
}
