@charset "UTF-8";
/* ---------------------------------------
  TITLE : HANSHIN Tigers
  URI : hanshintigers.jp
  (C) HANSHIN Tigers.
--------------------------------------- */
@import "/common/css/ticket.css";
/*
--------------------------------------- */
/*  /ticket/group/plan/ 団体入場券
--------------------------------------- */
/*======page_link======*/
.group #fl_bt {
  position: fixed;
  bottom: 10px;
  right: 0;
  opacity: 0;
  transform: translateX(200px);
}
.group #fl_bt.visible {
  animation: VisibleAnime 0.5s forwards;
}
@keyframes VisibleAnime {
  from {
    opacity: 0;
    transform: translateX(200px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.group #fl_bt.hide {
  animation: HideAnime 0.5s forwards;
}
@keyframes HideAnime {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 1;
    transform: translateX(200px);
  }
}
.group #tp {
  background: url(/img/ticket/pt_group.gif) 0 0 no-repeat;
}
.group .p_nav {
  margin: 10px 0;
  overflow: hidden;
}
.group .p_nav li {
  float: left;
  margin-bottom: 10px;
}
.group .p_nav li:nth-child(2) {
  float: right;
}
.group .nav3 li:nth-child(2) {
  margin: 0 9px;
}
.group .p_nav li a:hover, .group .nav3 li a:hover {
  opacity: 0.7;
}


/* ▼ ボタン4つを2列レイアウトにする */
.group .btn-grid {
  list-style: none;
  padding: 0;
  margin: 20px auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2列 */
  gap: 20px; 
  max-width: 800px; 
}

/* ▼ 共通のボタンデザイン */
.group .btn-grid li a,
.group .btn-grid li span {
  display: block;
  padding: 14px 40px 14px 30px;
  border-radius: 10px;
  font-weight: bold;
  text-align: center;
  font-size: 18px;
  position: relative;
  text-decoration: none;
}

/* ▼ グレーアウト*/
.group .btn-grid li span{
  background: linear-gradient(to bottom, #e0e0e0 50%, #bfbfbf 50%);
  border: 3px solid #a5a5a5;
  color: #777;
  cursor: default; /* ポインタを通常に */
}

/* ▼ 黄色ボタン*/
.group .btn-grid li:not(.blue) a {
  background: linear-gradient(to bottom, #fffc00 50%, #ffd100 50%);
  border: 3px solid #d9b500;
  color: #000;
}

/* ▼ 水色ボタン*/
.group .btn-grid li.blue a {
  background: linear-gradient(to bottom, #d9f5ff 50%, #8cd6ff 50%);
  border: 3px solid #6cbbe0;
  color: #000;
}

/* ▼ 小さな下向き矢印(ボタン2×2レイアウト用)*/
.group .btn-grid li a::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #000;
}

/* 行（横並び） */
.group .btn-row {
  list-style: none;
  margin: 20px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.group .btn-row-green,
.group .btn-row-orange { justify-content: center; }

/* 共通スタイル（枠付きボタン） */
.group .btn-outline {
  display: inline-block;
  width: 230px;
  padding: 14px 0;
  border-radius: 8px;
  border: 3px solid currentColor;
  background: #fff;
  color: #006b34;          /* デフォは緑 */
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  position: relative;
  text-decoration: none;
}

/* ▼マーク（共通） */
.group .btn-outline::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid currentColor;
}

/* 緑ボタン */
.group .btn-outline-green {
  color: #007c39;
}

/* オレンジボタン */
.group .btn-outline-orange {
  color: #f26522;
}

/* パンフDLボタンだけレイアウト変更（アイコン＋文字） */
.group .btn-download {
  display: flex;
  align-items: center;
  justify-content: center;
	font-size: 14px;
	line-height: 1.1em;
	padding: 10px 0;
}

/* ▼マークは不要なので消す */
.group .btn-download::after {
  display: none;
}

/* アイコン画像 */
.group .btn-download .icon {
  display: inline-flex;
  margin-right: 8px;
}
.group .btn-download .icon img {
  display: block;
  width: 40px;
  height: auto;
}


/* ▼ グレーアウト(緑・オレンジボタン用)*/
.group .btn-disabled {
  background: #ccc;
  border: 3px solid #a5a5a5;
  color: #777;
  cursor: default;
  pointer-events: none;
}

/* ▼ マークは不要なので非表示（グレーアウト用） */
.group .btn-disabled::after {
  display: none;
}


.group .btn-grid li :hover,
.group .btn-row li :hover{
  opacity: 0.7;
}

.group .nav3 {
  margin-bottom: 30px;
}
.group .nav3 h5 {
  font-size: 20px;
  font-weight: bold;
	padding: 7px 0;
  margin: 10px 0;
	text-align: center;
}

.group .nav3 h5.green {
  background: #cce1d7;
  color: #006835;
}
.group .nav3 h5.orange {
  background: #f9d6cf;
  color: #df330d;
}
.group .nav3 ul {
  overflow: hidden;
  margin-top: 15px;
  text-align: center;
  letter-spacing: -0.5em;
}
.group .nav3 ul li {
  display: inline-block;
  letter-spacing: normal;
}
.group .unit {
  margin-bottom: 20px;
}
.group .unit p {
  font-size: 14px;
}
.group .unit .mt-10 {
  margin-top: -10px;
}
.group .unit span.icon_new {
  background: #e60012;
  border: #fff 1px solid;
  color: #fff;
  font-weight: bold;
  padding: 0 4px;
  margin-left: 3px;
}
.group .unit .bright_red {
  color: #e60012;
}

.group .unit h5 span{
	font-size: 14px;
	font-weight: bold;	
}


.group .unit h5.stl_yellow {
  background: #ffe100;
  border-bottom: #000 3px solid;
  font-size: 28px;
  padding: 10px 20px;
  font-weight: bold;
  position: relative;
}
.group .unit h5.stl_green {
  background: #aacd23;
  border-bottom: #006835 3px solid;
  font-size: 28px;
  padding: 10px 20px;
  font-weight: bold;
  color: #006835;
  position: relative;
}
.group .unit h5.stl_red {
  background: #e60012;
  border-bottom: #000 3px solid;
  font-size: 28px;
  padding: 10px 20px;
  font-weight: bold;
  color: #fff;
  position: relative;
}
.group .unit h5 p.tag {
  position: absolute;
  top: 13px;
  right: 10px;
}
.group .unit h5 p.tag img {
  margin-right: 5px;
}
.group .unit .btn {
  display: block;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  padding: 15px;
  text-decoration: none;
  width: 560px;
  margin: 20px auto;
}
.group .unit span.btn {
  padding: 12px;
  background: #ccc;
  color: #999;
}
.group .unit a.btn:hover {
  opacity: 0.7;
}
.group .unit .btn small {
  font-size: 14px;
  font-weight: normal;
}
.group .unit .btn_gray {
  background: #333 url(/img/ticket/group/plan/2023/btn_arrow.png) no-repeat right 20px center;
}
.group .unit .btn_blue {
  background: #0057ad url(/img/ticket/group/plan/2023/btn_arrow_blue.png) no-repeat right 20px center;
}
.group .unit .btn_green {
  background: #006835 url(/img/ticket/group/plan/2023/btn_arrow_green.png) no-repeat right 20px center;
}
.group .unit .btn_remind_green {
  background: #ffe100 url(/img/ticket/group/plan/2023/btn_arrow_bg_green.png) no-repeat right 20px center;
  border: #157231 2px solid;
  color: #157231;
  font-size: 16px;
}
.group .unit .btn_remind_blue {
  background: #ffe100 url(/img/ticket/group/plan/2023/btn_arrow_bg_blue.png) no-repeat right 20px center;
  border: #0057ad 2px solid;
  color: #0057ad;
  font-size: 16px;
}
/**/
.group .unit p.catch {
  font-size: 18px;
  font-weight: bold;
  padding-top: 10px;
}
.group .unit dl.point {
  font-size: 16px;
  padding: 20px 0 0 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  color: #e60012;
  font-weight: bold;
}
.group .unit dl.point dt {
  width: 12%;
  margin-bottom: 20px;
}
.group .unit dl.point dt span {
  background: #e60012;
  color: #fff;
  padding: 3px 10px;
  font-size: 14px;
}
.group .unit dl.point dd {
  width: 88%;
  margin-bottom: 17px;
}
.group #syugakuryokou p.note {
  margin: -1em 0 20px 0;
}
.group .unit .koshien {
  background: #e6f4eb;
  padding: 20px;
  margin: 20px 0 40px 0;
}
.group .unit .koshien h6 {
  color: #006835;
  border-bottom: 3px solid #006835;
  font-size: 28px;
  font-weight: bold;
}
.group .unit .kyocera {
  background: #e5eef7;
  padding: 20px;
  margin: 20px 0 40px 0;
}
.group .unit .kyocera h6 {
  color: #0057ad;
  border-bottom: 3px solid #0057ad;
  font-size: 28px;
  font-weight: bold;
}
.group .unit dl.info {
  margin-top: 10px;
}
.group .unit dl.info dt {
  color: #FFF;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 15px;
  margin: 0 0 10px 0;
}
.group .unit .koshien dl.info dt {
  background: #006835;
}
.group .unit .kyocera dl.info dt {
  background: #0057ad;
}
.group .unit dl.info dd, .group .unit dl.info dt {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 10px;
}
.group .unit dl.info dd ul.indent {
  font-weight: normal;
  font-size: 13px;
  text-indent: -1em;
  margin-left: 1em;
}
.group .unit dl.info dd span.normal {
  font-weight: normal;
  font-size: 14px;
}
.group .unit table.price_list {
  width: 100%;
  font-weight: bold;
}
.group .unit table.price_list thead th {
  background-color: #626262;
  color: #fff;
}
.group .unit table.price_list th, .group .unit table.price_list td {
  padding: 8px 10px;
  border: 1px solid #D9D9D9;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
  background-color: #fff;
}
.group .unit table.price_list th.yellow {
  background-color: #fff100;
  color: #000;
}
.group .unit table.price_list th.orange {
  background-color: #f4a727;
  color: #000;
}
.group .unit table.price_list th.green {
  background-color: #8fc31f;
  color: #000;
}
.group .unit table.price_list th.blue {
  background-color: #00a0e9;
  color: #000;
}
.group .unit table.price_list tbody tr.normal_p td {
  background-color: #f0f0f0;
  color: #999;
}

.group .unit table.price_list tbody tr.normal_p_black td{
  background-color: #f0f0f0;
  color: #000;
}

.group .unit p.img_c {
  text-align: center;
  margin-top: 40px;
}
/*対象カード*/
.group #game .calendar_mark {
  padding: 10px 0;
  border-bottom: 1px #000 solid;
  border-top: 1px #000 solid;
  margin: 20px 0;
}
.group #game .calendar_mark ul {
  display: flex;
  justify-content: center;
}
.group #game .calendar_mark li {
  margin: 0 10px;
}
.group #game .calendar_mark li span {
  display: inline-block;
  width: 40px;
  height: 20px;
  border: solid 1px #000;
  vertical-align: middle;
  margin-right: 3px;
}
.group #game .calendar_mark li.koshien_c span {
  background: #d7e7ae;
}
.group #game .calendar_mark li.kyocera_c span {
  background: #badcf4;
}
.group #game .calendar_mark li.category span {
  width: 27px;
  height: 20px;
  padding-bottom: 3px;
  color: #fff;
  font-weight: bold;
  border: none;
  background: #e60012;
  text-align: center;
  font-size: 16px;
}
/*申込方法・購入の流れ*/
.group .unit h6.stl_pink {
  background-color: #f9579b;
  padding: 10px 13px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  margin: 30px 0;
}
.group .unit h6.stl_blue {
  background-color: #2fa9e6;
  padding: 10px 13px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  margin: 30px 0;
}
.group .unit h6.stl_gray {
  background-color: #606060;
  padding: 10px 13px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  margin: 30px 0;
}
.group .unit h6.stl_green {
  background-color: #006835;
  padding: 10px 13px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  margin: 20px 0;
}

.group .unit h6.stl_lightgreen {
  background-color: #0f9230;
  padding: 10px 13px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  margin: 20px 0;
}


.group .unit table.howto {
  width: 100%;
  font-size: 14px;
}
.group .unit table.howto th {
  background-color: #626262;
  font-weight: bold;
  text-align: center;
}
.group .unit table.howto td {
  padding: 8px 10px;
  border: 1px solid #D9D9D9;
  line-height: 1.4;
  background-color: #fff;
}
.group .unit .purchase_flow {
  background-color: #fffce5;
  border: #ffe100 3px solid;
  padding: 20px;
  margin: 20px 0;
}
.group .unit .purchase_flow dl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.group .unit .purchase_flow dd {
  font-size: 14px;
  line-height: 1.6em;
  padding: 10px;
}
.group .unit .purchase_flow dd span.step_txt {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5em;
}
.group .unit .purchase_flow dd span.detail_txt {
  font-size: 16px;
  font-weight: bold;
}
.group .unit .purchase_flow dd ul {
  font-size: 12px;
  line-height: 1.4em;
  color: #e60012;
}
.group .unit ul.att {
  font-size: 14px;
  line-height: 1.6em;
}
.group .unit .benefits {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: bold;
  margin: 20px 0
}
.group .unit .benefits dl {
  width: 48%;
}
.group .unit .benefits dl.wide {
  width: 100%;
}
.group .unit .benefits dl dt span {
  display: table-cell;
  font-size: 15px;
  font-weight: bold;
  vertical-align: middle;
  padding-left: 5px;
}
.group .unit .benefits dl dt span.bg {
  font-size: 14px;
  background: #aacd23;
  color: #006835;
  width: 80px;
  height: 44px;
  text-align: center;
  padding: 0;
  margin: 10px;
}
.group .unit .benefits dt {
  padding-bottom: 3px;
  border-bottom: solid 2px #006835;
  display: table;
  width: 100%;
  box-sizing: border-box;
}


.group .unit .benefits dt.no_line{
  padding-bottom: 3px;
  border-bottom: none;
  display: table;
  width: 100%;
  box-sizing: border-box;
}

.group .unit .benefits dl dd {
  margin: 10px 0;
  line-height: 2em;
}
.group .unit .benefits dl dd ul li span {
  font-size: 20px;
}
.group .unit .benefits dl dd p {
  font-size: 16px;
}
.group .unit dd p.normal {
  font-weight: normal;
  font-size: 14px;
}
.group .unit dd.obento {
  display: flex;
  justify-content: space-around;
  ;
}
.group .unit .benefits dl dd ul.indent {
  font-size: 12px;
  font-weight: normal;
  line-height: 1.6em;
}
.group .unit .rekishikan {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}
.group .unit .rekishikan dl {
  margin-right: 10px;
}
.group .unit .info {
  margin-top: 20px;
}
.group .unit .info dt, .group .unit .info p {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 0.5em;
}
.group .unit .info dd {
  font-size: 14px;
  line-height: 1.8em;
}
.group .unit p.price_txt {
  font-size: 16px;
  font-weight: bold;
}
.group .unit p.price_txt span {
  font-size: 20px;
  color: #e60012;
}
.group .unit dl.bus_reserve {
  margin-bottom: 20px;
}
.group .unit dl.bus_reserve dt {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: bold;
}
.group .unit dl.bus_reserve dt span {
  color: #ffe100;
}
.group #refund p.refund_txt {
  font-size: 18px;
  margin: 20px 0;
}
.group #refund h6 {
  font-size: 24px;
  font-weight: bold;
  border-bottom: 3px #e60012 solid;
  color: #e60012;
  margin: 10px 0;
}
.group #refund dl {
  margin: 10px 0;
}
.group #refund dt {
  background-color: #606060;
  padding: 10px 13px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  margin: 20px 0;
}
.group #refund dd {
  font-size: 14px;
  padding: 10px 0;
}
.group #remind div.inner_yellow {
  background: #fffce5;
  padding: 20px;
  border: #ffe100 2px solid;
}
.group #remind h5 {
  background: #ffe100;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  padding: 7px 0 2px 0;
}
/*finish*/
.group .finish_cont {
  padding: 15px 10px;
  margin: 10px 0;
  border: 3px solid #e14842;
}
.group .finish_cont p {
  font-size: 18px;
  font-weight: bold;
  color: #e14842;
}
/*footer下の余白削除*/
.group #footer #f_u_3.unit {
  margin-bottom: 0;
}


/*slick*/

.group .unit .sc_cal{
	opacity: 0;
  -webkit-transition: opacity 2s;
  transition: opacity 2s;
	padding-bottom: 30px;
}
.group .unit .slick-initialized {
    opacity: 1;
}
.group .unit .sc_cal .slick-arrow {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  position: absolute;
  bottom: 0;
  text-indent: -9999em;
  width: 35px;
  height: 30px;
  border-radius: 5px;
  background: #000;
  transition: opacity .3s;
  line-height: 1;
}
.group .unit .sc_cal .slick-arrow.slick-disabled {
  opacity: 0;
  transition: opacity .3s;
}
.group .unit .sc_cal .slick-prev {
  left: 0;
}
.group .unit .sc_cal .slick-next {
  right:0;
}
.group .unit .sc_cal .slick-arrow::before,
.group .unit .sc_cal .slick-arrow::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}
.group .unit .sc_cal .slick-prev::after,
.group .unit .sc_cal .slick-prev::before {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.group .unit .sc_cal .slick-prev::after {
  left: 20px;
}

.group .unit .sc_cal .slick-prev::before {
  left: 8px;
}

.group .unit .sc_cal .slick-next::after,
.group .unit .sc_cal .slick-next::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.group .unit .sc_cal .slick-next::after {
  right: 20px;
}

.group .unit .sc_cal .slick-next::before {
  right: 8px;
}