@charset "UTF-8";

/* ====================================================================
	共通
=======================================================================*/
/*-------------------- responsive --------------------*/
body {
  margin: 0;
  background-color: #e60039;
  color: #fff;
  font-family: a-otf-ud-shin-go-pr6n, sans-serif;
  font-style: normal;
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  body {
    padding-top: 0;
  }
}

body.is-scroll-locked {
  position: fixed;
  top: var(--scroll-lock-top, 0px);
  left: 0;
  right: 0;
  width: 100%;
}

.pc-only {
  display: block !important;
}
.sp-only {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
  .sp-only {
    display: block !important;
  }
}

*,
*::before,
*::after { box-sizing: border-box; }

.d-flex {
  display: flex !important;
}

a { transition: .4s ease;}
a:hover { opacity: .8; color: #ed174f;}
.blank-icon::after,
.card__desc a::after,
#modal-notificationno a::after { content: url(/guinness/2025/assets/img/blank_icon.svg);
  margin-left: 5px;
}

#modal-functional a::after { content: url(/guinness/2025/assets/img/icon_pdf.svg);
  margin-left: 5px;
}



.cnt {
  text-align: center !important;
  margin: 0 auto;
}
.text-center {
  text-align: center;
}
.w200 {
  font-weight: 200;
}
.w300 {
  font-weight: 300;
}
.w400 {
  font-weight: 400;
}
.w500 {
  font-weight: 500;
}
.w600 {
  font-weight: 600;
}
.w700 {
  font-weight: 700;
}
.w900 {
  font-weight: 900;
}

.ls-25r {
  letter-spacing: -0.025em;
}

/* topへのアイコン */
.icon-totop {
  display: none;
  z-index: 10;
  position: fixed;
  bottom: 10%;
  right: 20px;
  cursor: pointer;
}

/* hover */
.hover-thin {
  opacity: 1;
  -webkit-transition: .4s;
  transition: .4s;
}
.hover-thin:hover {
  opacity: 0.7;
  -webkit-transition: .4s;
  transition: .4s;
}

.main {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
}





/* ====================================================================
フェードアップ
=======================================================================*/
html.is-js .fade-up { opacity: 0; transform: translateY(24px); }

.fade-up { transition: opacity .8s ease, transform .8s ease; }





/* ====================================================================
MV
=======================================================================*/

.mv-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1500 / 750;
  overflow: hidden;
  z-index: 3; /* 前面に表示 */
  border-radius: 30px;
}

@supports not (aspect-ratio: 1) {
+ .mv-container { height: calc(100vw * 750 / 1500); }
}

.mv-map {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('/guinness/2025/assets/img/mv_mapbg.png') no-repeat center center;
  background-size: cover;
  left: 0;
  top: 0;
  z-index: 2;
}

.mv-bg {
  position: absolute;
  width: calc(min(100vw, 1500px) * (1115 / 1500));
  aspect-ratio: 1115 / 476;
  height: auto;
  background: url('/guinness/2025/assets/img/mv_bg.png') no-repeat center center;
  background-size: cover;
  top: 51%;
  left: 51%;
  transform: translate(-50%, -50%);
  z-index: 3;
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.15));
}


.mv-logo {
  position: absolute;
  width: 657px;
  height: 288px;
  background: url('/guinness/2025/assets/img/mv_logo.png') no-repeat center center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
}

.mv-header-logo {
  position: absolute;
  width: 243px;
  height: 102px;
  background: url('/guinness/2025/assets/img/logo.png') no-repeat top center;
  background-size: contain;
  top: 0;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  backface-visibility: hidden;
  will-change: transform;
  z-index: 5;
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.15));
  contain: paint;
}

.fade-target {
  opacity: 0;
  animation: fade-in 0.6s ease-out 1.5s forwards;
}

.mv-bg.fade-target {
  opacity: 0;
  animation:
    scale-animation 6s ease-in-out infinite,
    fade-in 0.6s ease-out 1.5s forwards;
}

@keyframes fade-in {
  to { opacity: 1; }
}

h1 a { display: block;}




@media screen and (max-width: 768px){
  .mv-container {
    position: relative;
    width: 100%;
    aspect-ratio: 375 / 481;
    max-height: 481px;
    border-radius: 0;
    overflow: hidden;
    border-radius: 10px;
  }

  .mv-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .mv-map {
    width: 94%;
    height: 94%;
    aspect-ratio: 375 / 481;
    background: url(/guinness/2025/assets/img/mv_mapbg_sp.png) no-repeat center center;
    background-size: 100%;
    border-radius: 10px;
    /* padding: 4%; */
    margin: 3%;
  }

 .mv-bg {
   position: absolute;
    width: 89%;
    height: 100%;
    background: url(/guinness/2025/assets/img/mv_bg_sp.png) no-repeat center center;
    background-size: 100%;
    top: 56%;
    left: 50%;
 }
 
   .mv-logo {
    width: 100%;
    height: 45vh;
    background: url('/guinness/2025/assets/img/mv_logo_sp.png') no-repeat center center;    
    top: 52%;
    left: 52%;
  }

 .mv-header-logo {
    width: 40vw;
    aspect-ratio: 128 / 64; 
  }
 .mv-star-wrap {
    top: calc(50% + 106px);
    left: calc(50% + -4px);
    width: 30px;
    height: 30px;
  }
}





/* ====================================================================
  紙吹雪
=======================================================================*/

.fubuki-container {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.fubuki-container--sec02 {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  border-radius: inherit;
}

.sec02 .sec02-content { position: relative; z-index: 2; }

.fubuki {
  position: absolute;
  width: 30px;
  height: 30px;
  background-size: contain;
  animation: fall-animation 5s linear infinite, rotate-animation 3s linear infinite;
  pointer-events: none;
  z-index: 9999;
}

.fubuki-pk { background: url('/guinness/2025/assets/img/fubuki_pk.png') no-repeat center center; }
.fubuki-pu { background: url('/guinness/2025/assets/img/fubuki_pu.png') no-repeat center center; }
.fubuki-yl { background: url('/guinness/2025/assets/img/fubuki_yl.png') no-repeat center center; }





/* ====================================================================
  crown
=======================================================================*/

.crown {
  margin: 0px auto 30px;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 1.5s;
  width: 70px;
}

.keyframe{
  animation-name: crown;
  transform: rotate(5deg);
  animation-duration: 5s;
}

@keyframes crown {
  50% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(5deg);
  }
}

@media screen and (max-width: 768px) {
  .crown {
    width: 50px;
  }
}





/* ====================================================================
 sec01
=======================================================================*/

.sec01 {
  position: relative;
  padding: 80px 20px 40px;
  margin: 0 auto;
  text-align: center;
  z-index: 3; /* 0基準 */
  background-image: url('/guinness/2025/assets/img/bg_flag_l.png'),
                    url('/guinness/2025/assets/img/bg_flag_r.png');
  background-repeat: no-repeat, no-repeat;
  background-position: left top, right top;
  background-size: 216px 139px, 216px 139px;
}

.sec01 .crown +  p img {
  max-width: 100%;
  width: calc(min(100vw, 1500px) * (936 / 1500));
  aspect-ratio: 936 / 228;
  height: auto;
  margin: 0 auto;
  text-align: center;
}

.sec01 p.read-txt {
  font-size: 20px;
  margin: 40px auto 60px;
}

.movie-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 60px auto 20px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  align-self: start;
}

.movie-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}





@media screen and (max-width: 768px) {
  .sec01 {
    padding: 50px 20px 30px;
    margin: 0 auto;
    text-align: center;
    
    background-image: url('/guinness/2025/assets/img/bg_flag_l.png'),
                      url('/guinness/2025/assets/img/bg_flag_r.png');
    background-repeat: no-repeat, no-repeat;
    background-position: left top, right top;
    background-size: 30% auto, 30% auto;
  }
  .sec01 p.read-txt {
    font-size: 16px;
    text-align: left;
    margin: 30px auto;
  }
  .sec01 .crown + p img {
    max-width: 100%;
    height: auto;
    width: clamp(150px, 100%, 330px);
    aspect-ratio: 335 / 166;
    height: auto;
    margin: 0 auto;
    text-align: center;
  }
  .movie-container {
    max-width: 100%;
    margin: 40px auto 20px;
  }
}





/* ====================================================================
 sec02
=======================================================================*/

.sec02 {
  width: min(1460px, 100% - 40px);
  max-width: none;
  border-radius: 40px;
  position: relative;
  margin: 0 auto;
}

.sec02::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #FBF6EC;
  border-radius: inherit;
  z-index: 0;/* 最背面 */
}

.sec02-inner {
  position: relative;
  padding: 90px;
  z-index: 3;
}

.sec02 .crown + p img {
  max-width: 100%;
  height: auto;
  width: calc(min(100vw, 1500px) * (553 / 1500));
  aspect-ratio: 553 / 105;
  height: auto;
  margin: 0 auto;
  text-align: center;
}

.sec02__map {
  position: relative;
  width: min(100%, 1080px);
  aspect-ratio: 1080 / 600; 
  height: auto;
  margin: 50px auto;
  background: url("/guinness/2025/assets/img/sec02_02.png") center/cover no-repeat;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  z-index: 3;
}

/* エリアアイコン（ボタン） */
.area-ico {
  position: absolute;
  left: calc(var(--left) / 1080 * 100%);
  top:  calc(var(--top)  / 600  * 100%);
  width:  calc(var(--w) / 1080 * 100%);
  height: calc(var(--h) / 600  * 100%);
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.area-ico img {
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 160ms ease, filter 160ms ease;
}
.area-ico:hover img,
.area-ico:focus-visible img,
.area-ico[aria-expanded="true"] img {
  transform: scale(1.03);
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.2));
}
.area-ico:focus-visible {
  outline: 3px solid #1b73e8;
  outline-offset: 3px;
  border-radius: 8px;
}

/* パネルラッパー */
.sec02__panelwrap {
  width: min(100%, 1080px);
  margin: 18px auto 0;
  position: relative;
  min-height: 0;
}

.sec02__panelwrap.fade-up { opacity: 0; transform: translateY(12px); transition: opacity 320ms ease-out, transform 320ms cubic-bezier(0.22, 1, 0.36, 1); }
.sec02__panelwrap.fade-up.is-shown { opacity: 1; transform: translateY(0); }

/* パネル本体（初期は非表示） */
.sec02__panel {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.14);
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  max-height: 0;
  visibility: hidden;
  pointer-events: none;
  will-change: opacity, transform, max-height, box-shadow;
  transition:
    opacity 420ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    max-height 520ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 420ms ease;
}

/* 表示状態 */
.sec02__panel.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  max-height: 2000px; /* 内容に十分な値に調整 */
  visibility: visible;
  pointer-events: auto;
  box-shadow: 0 12px 30px rgba(0,0,0,0.16);
}

.area-ico[aria-expanded="true"] img {
  transform: scale(1.04);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.24));
}

/* パネルヘッダー（赤帯） */
.sec02__panel-head {
  background: #E60039;
  color: #fff;
  padding: 16px 20px;
  position: relative;
  text-align: center;
}
.sec02__panel-title img {
  margin: 0 auto;  
}

#panel-asia .sec02__panel-title img {
  max-width: 100%;
  height: auto;
  width: calc(min(100vw, 1080px) * (382 / 1080));
  aspect-ratio: 382 / 38;
  margin: 0 auto;
  text-align: center;
} 

#panel-americas .sec02__panel-title img {
  max-width: 100%;
  height: auto;
  width: calc(min(100vw, 1080px) * (409 / 1080));
  aspect-ratio: 409 / 38;
  margin: 0 auto;
  text-align: center;
} 

#panel-europe .sec02__panel-title img {
  max-width: 100%;
  height: auto;
  width: calc(min(100vw, 1080px) * (259 / 1080));
  aspect-ratio: 259 / 38;
  margin: 0 auto;
  text-align: center;
}

/* パネルボディ2カラム */
.sec02__panel-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 40px;
  align-items: stretch;
}

.sec02__col { min-width: 0; display: flex; }
.sec02__col > .card { height: 100%; display: flex; flex-direction: column; }

/* カード */
.card {
  border-radius: 10px;
  overflow: hidden;
  background: #FFF2F5;
  border: solid 4px #f8a9bc;
  padding: 25px 30px;
}

.card__media {
  aspect-ratio: 16 / 9;
}

.card__media img {
  border-radius: 10px;
  border: 1px solid #ccc;
}

.card__text {  }
.card__ttl { margin: 15px 0 10px; font-weight: 700; color:#E60039; font-size: 24px;}
.card__desc { margin: 0; color: #000; font-size: 16px; }
.card__desc a { text-decoration: underline; letter-spacing: -0.07em;}

.placeholder {
  display: grid;
  place-items: center;
  color: #000;
  font-size: 16px;
}

.mini-map { position: relative; }
.mini-map .map { position: relative; z-index: 0; }

.pin {
  position: absolute;
  width: 30px;
  height: 45px;
  z-index: 2;
  background-image: url(/guinness/2025/assets/img/sec02_mappin_off.png);
  background-size: cover;
  cursor: pointer;
}

.pin:hover,
.pin.is-active {
  transform: scale(1.2);
  transition: transform 0.2s;
  background-image: url(/guinness/2025/assets/img/sec02_mappin_on.png);
}





/* アジアだけ変更 */
/* PC幅のみ：2カラム化＆右を上・左を下に配置 */
@media (min-width: 1024px) {
  #panel-asia .sec02__panel-body {
    display: flex;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 40px;
    flex-direction: column-reverse;
  }
  #panel-asia .card {
    display: flex;
    align-items: center;
    width: 100%;
    flex-direction: row;
  }
  #panel-asia .card__media {
    margin-right: 40px;
    width: 50%;
  }
  #panel-asia .card__text { margin-top: -25px; }
  
  
  #panel-asia .card.card--china-multi .card__ttl { margin: 15px 0 10px;}
  #panel-asia .card.card--china-multi .card__list {
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr 1fr;
  }
  #panel-asia .card.card--china-multi .card__media {
    margin-right: 0;
    width: 100%;
  }
  #panel-asia .card.card--china-multi .card__text { margin-top: 0; }
}





@media screen and (max-width: 768px) {
  .sec02 {
    width: 92%;
    max-width: 100%;
    border-radius: 20px;
    margin: 0 4%;
  }
  .sec02-inner {
    padding: 10% 4%;
  }
  
  .sec02 .sp-only img.cnt {
    margin-bottom: 30px;
    filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.15));
  }
  

  .sec02 .crown + p img {
    max-width: 100%;
    height: auto;
    width: clamp(150px, 90%, 330px);
    aspect-ratio: 323 / 60;
    height: auto;
    margin: 0 auto;
    text-align: center;
  }
  .sec02 .accordion img.cnt {
    margin-bottom: 10px;
  }

  .sec02__panel-head {
    background: #E60039;
    color: #fff;
    padding: 0;
    position: relative;
    text-align: center;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
  }

  /* ヘッダー内の開閉ボタン（ラベル中央＋アイコン右固定） */
  .sec02-panel.sp-only .accordion__group-trigger {
    display: block;
    width: 100%;
    padding: 16px 20px;
    background: transparent;
    border: 0;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
    position: relative;
  }

  /* ラベル画像の扱い（中央・はみ出し防止） */
  .sec02-panel.sp-only .accordion__group-label img {
    display: block;
    max-width: 80%;
    height: auto;
    max-height: 22px;
  }

  /* グループ用アイコン（＋／−）を右端に固定配置 */
  .sec02-panel.sp-only .accordion__group-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #fff;
  }
  
  .sec02-panel.sp-only .accordion__group-icon::before,
  .sec02-panel.sp-only .accordion__group-icon::after {
    content: "";
    position: absolute;
    background: currentColor;
  }
  
  .sec02-panel.sp-only .accordion__group-icon::before { /* 横棒（−） */
    left: 3px; right: 3px; top: 50%;
    height: 2px; transform: translateY(-50%);
  }
  
  .sec02-panel.sp-only .accordion__group-icon::after {  /* 縦棒（＋の縦線） */
    top: 3px; bottom: 3px; left: 50%;
    width: 2px; transform: translateX(-50%);
    transition: opacity 0.2s ease;
  }
  
  /* 開いたら縦棒を消して「−」表示に */
  .sec02-panel.sp-only.is-group-open .accordion__group-icon::after,
  .sec02-panel.sp-only .accordion__group-trigger[aria-expanded="true"] .accordion__group-icon::after {
    opacity: 0;
  }

  /* セクションの開閉 */
  .sec02-panel.sp-only .accordion { display: none; }
  .sec02-panel.sp-only.is-group-open .accordion { display: block; }

  /* キーボード操作のフォーカス可視化 */
  .sec02-panel.sp-only .accordion__group-trigger:focus-visible {
    outline: 2px solid #0099ff;
    outline-offset: 2px;
    border-radius: 6px;
  }

  /* PCの初期「非表示」スタイルをSPで打ち消す */
  .sec02-panel.sp-only .sec02__panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-height: none;
    transform: none;
    overflow: visible;
    box-shadow: none;
    background: transparent;
    border-radius: 10px;
   /* border-bottom: 1px solid #e5e5e5; */
  }

  /* アコーディオンリスト（各行） */
  .accordion { margin: 8px 0 0; }
  .accordion__header {
    margin: 0 0 1% 0;
    background: #fff;
    border-radius: 4px;
    padding: 0 4% 0 2%;
   }

  /* 各行のトリガー（ボタン） */
  .accordion__trigger {
    appearance: none;
    -webkit-appearance: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 14px 4px;
    background: transparent;
    border: 0;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
  }

  /* 各行のラベルとアイコン */
  .accordion__label {
    font-weight: 600;
    font-size: 20px;
    color: #E60039;
  }
  
  .accordion__icon {
    position: relative;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    color: #E60039;
  }
  
  .accordion__icon::before,
  .accordion__icon::after {
    content: "";
    position: absolute;
    background: currentColor;
  }
  
  .accordion__icon::before {
    left: 3px; right: 3px; top: 50%;
    height: 2px; transform: translateY(-50%);
  }
  
  .accordion__icon::after {
    top: 3px; bottom: 3px; left: 50%;
    width: 2px; transform: translateX(-50%);
    transition: opacity 0.2s ease;
  }
  
  .sec02__panel.is-open .accordion__icon::after,
  .sec02__panel[aria-expanded="true"] .accordion__icon::after {
    opacity: 0; /* 開いたら縦棒を消して「−」表示に */
  }

  /* 各行の内容を開閉 */
  .accordion__content { display: none; }
  .sec02__panel.is-open .accordion__content,
  .sec02__panel[aria-expanded="true"] .accordion__content {
    display: block;
  }

  /* 内容内余白・カード */
  .accordion__inner { padding: 10px 0 ; }
  .card {
    display: grid;
    grid-template-columns: 100%;
    gap: 10px;
    border-radius: 8px;
    background: #fafafa;
    padding: 12px;
  }
  
  .card__media img {
    display: block;
    width: 100%;
    height: auto;
    background: #FFF2F5;
  }
  
  .card__text { display: grid; gap: 6px; margin-top: 0;}
  .card__ttl { font-size: 16px; font-weight: 700; margin: 0; }
  .card__desc { margin: 0; color: #333; }
  .card__desc a { text-decoration: underline; }
  .card__desc span { color: inherit; }
  .card__detail { margin: 0; color: #666; font-size: 14px; }
  
  
  
  
  
  /* 中国開で子（広州・天津・無錫）のヘッダを隠して中身だけ連続表示 */
  
  /*「中国」系4行の見出し（＋／−）を常に隠す */
  .sec02__panel[data-default-id="chinaguan"] > .accordion__header,
  .sec02__panel[data-default-id="chinatian"] > .accordion__header,
  .sec02__panel[data-default-id="chinawuxi"] > .accordion__header {
    display: none;
  }
  
  /*「中国」系4行の見出し（＋／−）を常に隠す */
  .sec02-panel.sp-only .sec02__panel#chinaguan,
  .sec02-panel.sp-only .sec02__panel#chinatian,
  .sec02-panel.sp-only .sec02__panel#chinawuxi{
    border-bottom: none;
  }

  /* 親chinaが開いている間、子3パネルのヘッダを非表示 */
  .sec02__panel[data-default-id="china"].js-china-open ~ .sec02__panel[data-default-id="chinaguan"] > .accordion__header,
  .sec02__panel[data-default-id="china"].js-china-open ~ .sec02__panel[data-default-id="chinatian"] > .accordion__header,
  .sec02__panel[data-default-id="china"].js-china-open ~ .sec02__panel[data-default-id="chinawuxi"] > .accordion__header {
    display: none;
  }

  /* 子のコンテンツを常に表示（アニメ後も維持） */
  .sec02__panel[data-default-id="china"].js-china-open ~ .sec02__panel[data-default-id="chinaguan"] > .accordion__content,
  .sec02__panel[data-default-id="china"].js-china-open ~ .sec02__panel[data-default-id="chinatian"] > .accordion__content,
  .sec02__panel[data-default-id="china"].js-china-open ~ .sec02__panel[data-default-id="chinawuxi"] > .accordion__content {
    display: block;
  }

  /* 子コンテンツの余白を連続表示向けに最適化 */
  .sec02__panel[data-default-id="china"].js-china-open ~ .sec02__panel[data-default-id="chinaguan"] .accordion__inner,
  .sec02__panel[data-default-id="china"].js-china-open ~ .sec02__panel[data-default-id="chinatian"] .accordion__inner,
  .sec02__panel[data-default-id="china"].js-china-open ~ .sec02__panel[data-default-id="chinawuxi"] .accordion__inner {
    padding-top: 0;
  }
  
  
  
  
  
  
  
  /* SP用マップの重ねレイアウト */
.sec02__map { position: relative; }
.sec02__map .map { display: block; width: 100%; height: auto; }

/* アイコンボタンは%で位置/サイズ指定（コンテナ基準） */
.area-ico {
  position: absolute;
  width: var(--w);
  height: var(--h);
  top: var(--top);
  left: var(--left);
  padding: 0;
  background: none;
  border: 0;
}
.area-ico img { width: 100%; height: 100%; display: block; }

  
  
  
  
  
  
  
  
  
  
  
  
}





/* ====================================================================
 sec03
=======================================================================*/

.sec03 {
  max-width: 1080px;
  padding: 80px 0px;
  margin: 0 auto;
  text-align: center;
  z-index: 3; /* 0基準 */
}

.sec03 .crown + p img {
  max-width: 100%;
  height: auto;
  width: calc(min(100vw, 1500px) * (197 / 1500));
  aspect-ratio: 197 / 43;
  margin: 0 auto;
  text-align: center;
}

.sec03 p.read-txt {
  font-size: 20px;
  margin: 40px auto 60px;
}

.products {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 8%;
}

/* 商品カード本体 */
.product-card {
  position: relative;
  width: 200px;
  height: 197px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  border-radius: 100px;
  overflow: visible;
}

/* 画像 */
.product-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  translate: 0 0;
  transition: filter 220ms ease;
  position: relative;
  z-index: 3;
}

/* ドロップシャドウ */
.has-shadow .product-img {
  filter: drop-shadow(0 10px 16px rgba(0,0,0,0.22));
}

/* オーバーレイ＋ラベル */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  border-radius: 100px;
  opacity: 0;
  translate: 0 0;
  scale: 0.98;
  transform-origin: center;
  transition: opacity 320ms ease-out, scale 320ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  will-change: opacity, translate, scale;
  z-index: 4;
}

/* テキストを縦横ともに中央寄せ（複数行も中央揃え） */
.product-name {
  position: absolute;
  inset: 0;
  padding: 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  color: #fff;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  text-shadow: 0 2px 4px rgba(0,0,0,0.32);
  white-space: pre-line;
  pointer-events: none;
  z-index: 5;

  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 280ms ease-out 90ms,
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1) 90ms;
  will-change: opacity, transform;
}

/* 表示時 */
.product-card:hover .product-name,
.product-name.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ホバー時のオーバーレイ表示・拡大 */
.product-card.is-hovered .overlay {
  opacity: 1;
  scale: 1;
}

/* ホバー時のラベル表示 */
.product-card.is-hovered .product-name {
  opacity: 1;
  transform: translateY(0);
}

/* バウンドアニメーション：画像とオーバーレイを同期 */
.product-card.is-hovered .product-img,
.product-card.is-hovered .overlay {
  animation: product-bounce 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* translateを使った上下動 */
@keyframes product-bounce {
  0%   { translate: 0 0; }
  30%  { translate: 0 -8px; }
  60%  { translate: 0 4px; }
  80%  { translate: 0 -2px; }
  100% { translate: 0 0; }
}





/* モーダル */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: block;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear 360ms;
  will-change: visibility;
}

.modal[aria-hidden="false"] {
  visibility: visible;
  pointer-events: auto;
  transition: visibility 0s linear 0s;
}

#modal-desc { white-space: pre-line; }

.modal-scrim {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 320ms ease;
  will-change: opacity;
}

.modal[aria-hidden="false"] .modal-scrim {
  opacity: 1;
}

.modal-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(900px, calc(100% - 40px));
  transform: translate3d(-50%, calc(-50% + 8px), 0) scale(0.985);
  opacity: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.24);
  overflow: hidden;
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease;
  will-change: transform, opacity;
  contain: paint;
  backface-visibility: hidden;
}

.modal[aria-hidden="false"] .modal-dialog {
  transform: translate3d(-50%, -50%, 0) scale(1);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 5px;
  right: 10px;
  width: 30px;
  height: 30px;
  border: 0;
  color: #000;
  cursor: pointer;
  font-size: 30px;
  font-weight: 700;
  background: #fff;
}

.modal-body { padding: 40px; }

/* モーダル詳細（左画像・右テキスト） */
.modal-product {
  display: grid;
  grid-template-columns: 150px 620px;
  gap: 35px;
  /* align-items: start; */
  place-items: center;
}

.modal-product a {
  text-decoration: underline;
  margin-top: 5px;
  display: block;
}

.modal-media img {
  display: block;
  width: 100%;
  height: auto;
}

.modal-info #modal-title {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 700;
  color: #E60039;
  text-align: left;
}

button:first-child .modal-info #modal-title {
  margin: 0 0 10px;
  font-size: 240px;
  font-weight: 700;
  color: #E60039;
  text-align: left;
}

/* tokuho がある場合 */
#modal-title.has-tokuho::before {
  display: block;
  content: '';
  background-image: url('/guinness/2025/assets/img/tag_tokuho.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 48px;
  height: 22px;
  margin: 0 0 .7rem 0;
}

/* kinou がある場合 */
#modal-title.has-kinou::before {
  display: block;
  content: '';
  background-image: url('/guinness/2025/assets/img/tag_kinou.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 99px;
  height: 22px;
  margin: 0 0 .7rem 0;
}

.modal-info {
  height: 100%;
  max-height: 60vh;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}


.modal-desc { 
  margin: 10px 0 25px;
  color: #000;
  font-size: 16px;
  text-align: left;
}

/* スペック表 */
.spec {
  margin: 0 20px 0 0;
  font-size: 14px;
  line-height: 1.4;
}
.spec-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 8px;
  padding: 10px 0;
  border-top: 1px dotted #A0A0A0;
}
.spec-row:last-child { border-bottom: 1px dotted #A0A0A0; }
.spec dt {
  color: #666;
  text-align: left;
  display: flex;
  align-items: center;
}
.spec dd {
  margin: 0;
  color: #000;
  text-align: left;
}

/* 横揺れを出さずに、モーダル時だけ確実にロック */
html { scrollbar-gutter: stable; } 
@supports not (scrollbar-gutter: stable) {
  html { overflow-y: scroll; } 
}

html.modal-open {
  overflow: hidden;
  overscroll-behavior: contain;
}

.modal-row.is-hidden { display: none !important; }
.spec-row:has(.is-hidden),
.spec-row:has([hidden]) { display: none !important; }





@media screen and (max-width: 768px) {
  .sec03 p img.cnt {
    max-width: 40%;
    height: auto;
    margin: 0 auto;
    text-align: center;
  }

  .sec03 .crown + p img {
    max-width: 100%;
    height: auto;
    width: clamp(150px, 45%, 330px);
    aspect-ratio: 150 / 33;
    margin: 0 auto;
    text-align: center;
  }
  
  .products {
    gap: 17px;
  }
  
  .product-card {
    width: 28%;
    height: auto;
  }
  
  .sec03 p.read-txt {
    font-size: 16px;
    margin: 20px auto 30px;
  }
  
  .modal-body {
    padding: 8% 4%;
  }
  
  .modal-product {
    grid-template-columns: 1fr;
    gap: 5%; /* 縦の間隔はお好みで */
  }
  
  .modal-product > * {
    width: auto;
    min-width: 0;
  }
  
  .modal-product img {
    max-width: 40%;
    height: auto;
  }
  
  .product-name { font-size: 14px;}
  .modal-media {
    display: flex;
    justify-content: center;
  }
  
  .modal-product > * {
    width: auto;
    min-width: 0;
    margin: 0 auto;
  }
  
  .modal-dialog {
    height: 80%;
  }
  
  .modal-info {
    min-width: 0; 
    max-height: 65vw;
  }
  
  .modal-info #modal-title { font-size: 20px;}
  
  .spec-row {
    grid-template-columns: 1fr;
    justify-items: stretch;
    row-gap: 6px;
    width: 100%;
  }
  
  .spec-row > * {
    min-width: 0;
    width: auto;
  }
  
  .spec-row img {
    max-width: 50%;
    height: auto;
  }
}





/* ====================================================================
 footer
=======================================================================*/

footer {
  position: relative;
  height: 60px;
  margin: 0 0 30px;
  background: #FBF6EC;
  color: #000;
  font-size: 14px;
  z-index: 3;
}

footer::after {
  content: "";
  display: block;
  height: 30px;
}

footer .d-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1080px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0;
}

footer .d-flex p a {
  display: block;
  border-left: solid 1px #707070;
  padding: 0 15px;
  cursor : pointer;
}

footer .d-flex p:first-child a {
  border-left: none;
  padding: 0 15px 0 0;
}

.copy { font-size: 10px;}





@media screen and (max-width: 768px) {
  footer {
    height: 30%;
    margin: 0 0 30px;
    background: #FBF6EC;
    color: #000;
    font-size: 14px;
    z-index: 3;
  }

  footer .d-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
  }
  
  footer p {
    display: flex;
    height: 10vw;
    align-items: center;
  }
  
 footer .d-flex p:nth-of-type(1),
 footer .d-flex p:nth-of-type(2) {
    margin: 5vw 0 0;
  }
  
 footer .d-flex p:nth-of-type(3),
 footer .d-flex p:nth-of-type(4) {
    margin: 0 0 5vw;
  }
  
  footer .d-flex p:nth-of-type(3) a {
    border-left: none;
  }

  .copy { text-align: center;}
}

