@charset "UTF-8";
/* --------------------------------------------------------------------
  共通
--------------------------------------------------------------------- */
:root {
  --font-rounded: "M PLUS Rounded 1c", sans-serif;
  --font-gothic: 'Yu Gothic', '游ゴシック', 'YuGothic', '游ゴシック体', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN', Meiryo, メイリオ, Helvetica, Arial, sans-serif;
  --font-notosans: "Noto Sans JP", sans-serif;
  --color-black: #484545;
  --color-orange: #ED6D00;
}
.sp {
    display: none;
}
.wrapper {
    background: #FFFCF8;
}
/* pc */
[data-browse-mode="P"] .ekiben_uketorimap {
    width: 1200px;
    margin: 60px auto 100px;
}

/* sp */
[data-browse-mode="S"] .pc {
    display: none;
}
[data-browse-mode="S"] .sp {
    display: block;
}
[data-browse-mode="S"] img.sp {
    display: inline-block;
}
[data-browse-mode="S"] .ekiben_uketorimap {
    width: 100%;
    margin: 0 auto 60px;
}

/* --------------------------------------------------------------------
  nav
--------------------------------------------------------------------- */
.nav {
    position: relative;
}
.nav::before,
.nav::after {
    content: "";
    position: absolute;
    border-top: 2px solid #484545;
    border-bottom: 2px solid #484545;
    height: 100%;
    top: 50%;
    transform: translateY(-50%);
}
.nav::before {
    border-left: 2px solid #484545;
    left: 0;
}
.nav::after {
    border-right: 2px solid #484545;
    right: 0;
}
.nav_ttl {
    color: var(--color-black);
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}
.nav_ttl span {
    color: var(--color-orange);
    display: inline-block;
    margin-right: 10px;
}
.tab {
    margin: 0 auto 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
}
.tab li {
    text-align: center;
    font-weight: bold;
    padding: 10px 10px;
    background-color: #FFE2CF;
    color: #3A1D0B;
}
.tab li.active {
    background-color: #3A1D0B;
    color: #FFE2CF;
}

.anchor {
    margin: 0 auto;
    display: flex;
    gap: 20px;
    justify-content: center;
}
.nav_ttl.-anchor.is-hidden,
.anchor.is-hidden,
.anchor .platform.is-hidden {
    display: none;
}
.anchor li a {
    width: 100%;
    display: block;
    position: relative;
    border-radius: 8px;
    border: 2px solid #707070;
    color: var(--color-black);
    text-align: center;
    font-weight: bold;
    background-color: #ffffff;
}
.anchor li a::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-top: 2px solid #EA6C1C;
    border-top: 2px solid var(--color-orange);
    border-right: 2px solid #EA6C1C;
    border-right: 2px solid var(--color-orange);
    top: 50%;
    right: 24px;
    transform: translateY(-50%) rotate(135deg);
}
/* pc */
[data-browse-mode="P"] .nav {
    width: 1020px;
    margin: 60px auto 0;
}
[data-browse-mode="P"] .nav::before,
[data-browse-mode="P"] .nav::after {
    width: 10px;
}

[data-browse-mode="P"] .nav_ttl {
    font-size: 24px;
}

[data-browse-mode="P"] .tab {
    width: 808px;
}
[data-browse-mode="P"] .tab li {
    width: calc((100% - 54px) / 4);
    padding: 8px 10px;
    font-size: 20px;
    border-radius: 23px;
    cursor: pointer;
}
[data-browse-mode="P"] .anchor {
    width: 620px;    
}
[data-browse-mode="P"] .anchor li {
    width: calc((100% - 18px) / 2);
}
[data-browse-mode="P"] .anchor li a {
    font-size: 20px;
    padding: 13.4px 10px;
}
/* sp */
[data-browse-mode="S"] .nav {
    margin-top: 30px;
    padding: 0 15px;
}
[data-browse-mode="S"] .nav::before,
[data-browse-mode="S"] .nav::after {
    width: 10px;
}
[data-browse-mode="S"] .nav::before {
    left: 15px;
}
[data-browse-mode="S"] .nav::after {
    right: 15px;
}
[data-browse-mode="S"] .nav_ttl {
    font-size: 18px;
}
[data-browse-mode="S"] .tab {
    flex-wrap: wrap;
    width: 83.5%;
    gap: 10px;
}
[data-browse-mode="S"] .tab li {
    width: calc((100% - 10px) / 2);
    font-size: 14px;
    padding: 6.5px 6.5px;
    border-radius: 17px;
}
[data-browse-mode="S"] .anchor {
    flex-wrap: wrap;
    width: 83.5%;
}
[data-browse-mode="S"] .anchor li {
    width: 100%;
}
[data-browse-mode="S"] .anchor li a {
    padding: 13px 6.5px;
    border-radius: 5px;
    font-size: 14px;
    text-decoration: none;
}
/* --------------------------------------------------------------------
  map
--------------------------------------------------------------------- */
.map {
    display: none;
}
.map.active {
    display: block;
}
.map_ttl {
    font-weight: bold;
    text-align: center;
}
.bnto_map_wrapper {
    background-color: #ccc;
    overflow: hidden;
}
.bnto_map_inner_ {
   cursor: move; 
}
.bnto_map_description {
    display: flex;
    gap: 100px;
    margin-top: 50px;
}
.bnto_map_description .image_box{
    border: 2px solid #EF8327;
    background-color: #ffffff;
}
.bnto_map_description .image_box img {
    aspect-ratio: 600 / 400;
    object-fit: cover;
}
#linear .description {
    background-color: #ffffff;
    text-align: center;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* pc */
[data-browse-mode="P"] .map {
    margin-top: 100px;
}
[data-browse-mode="P"] .map_ttl {
    font-size: 32px;
}
[data-browse-mode="P"] .map_ttl.platform_ {
    margin-top: 50px;
}
[data-browse-mode="P"] .bnto_map_wrapper {
    width: 1200px;
    margin-top: 30px;
}
[data-browse-mode="P"] .bnto_map_description .txt {
    width: 500px;
    font-size: 18px;
}
[data-browse-mode="P"] .bnto_map_description .image_box{
    width: 600px;
    border-radius: 15px;
    padding: 20px;
}

[data-browse-mode="P"] #linear .description {
    font-size: 18px;
    height: 150px;
    line-height: 2;
}

/* sp */
[data-browse-mode="S"] .map {
    margin-top: 40px;
}
[data-browse-mode="S"] .map_ttl {
    font-size: 18px;
}
[data-browse-mode="S"] .map_ttl.platform_ {
    margin-top: 40px;
}
[data-browse-mode="S"] .bnto_map_wrapper {
    width: 100%;
    margin-top: 30px;
}
[data-browse-mode="S"] .bnto_map_description {
    width: 100%;
    gap: 20px;
    margin-top: 30px;
    flex-direction: column;
    padding: 0 15px;
}
[data-browse-mode="S"] .bnto_map_description .txt {
    width: 100%;
    font-size: 14px;
}
[data-browse-mode="S"] .bnto_map_description .image_box{
    width: 100%;
    border-radius: 15px;
    padding: 10px;
}
[data-browse-mode="S"] #linear {
    padding: 0 15px;
}
[data-browse-mode="S"] #linear .description {
    font-size: 14px;
    height: 100px;
    line-height: 1.6;
}
/* --------------------------------------------------------------------
  bnr
--------------------------------------------------------------------- */
.bnr_box {
    display: flex;
    justify-content: center;    
}
.back_btn {
    display: flex;
    justify-content: center;
}
.back_btn a {
    text-align: center;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #484545;  
}
/* pc */
[data-browse-mode="P"] .bnr_box {
    margin-top: 100px; 
}
[data-browse-mode="P"] .bnr_box a {
    width: 700px; 
}
[data-browse-mode="P"] .back_btn {
    margin-top: 60px;
}
[data-browse-mode="P"] .back_btn a {
    width: 400px;
    font-size: 18px;
    padding: 16.5px 10px;
}
/* sp */
[data-browse-mode="S"] .bnr_box {
    margin-top: 50px;
    padding: 0 15px;
}
[data-browse-mode="S"] .back_btn {
    margin-top: 40px;
}
[data-browse-mode="S"] .back_btn a {
    width: 53.4%;
    font-size: 14px;
    padding: 8.7px 10px;
}
/* --------------------------------------------------------------------
  zoom
--------------------------------------------------------------------- */

.bnto_map_wrapper {
  position: relative;
  overflow: hidden;
  /* SPのピンチはブラウザ既定に任せる → touch-action は指定しない */
}
.bnto_map_inner_ {
  transform-origin: 0 0;
  user-select: none;
  will-change: transform;
  cursor: grab;
}
.bnto_map_inner_.grabbing { cursor: grabbing; }
.bnto_map_inner_ img { display: block; }

/* ズームコントロール（PCのみ表示） */
.map_zoom_controls {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: flex;
  gap: 8px;
  padding: 8px 10px;
  background: rgba(0,0,0,0.45);
  border-radius: 8px;
  color: #fff;
  z-index: 10;
}
@media (hover: none), (pointer: coarse) { .map_zoom_controls { display: none; } }

.zoom_btn {
  border: none; background:#222; color:#fff;
  width:32px; height:32px; border-radius:6px; font-size:18px; line-height:32px; cursor:pointer;
}
.zoom_slider { width:160px; accent-color:#2e7cf4; }
