@charset "utf-8";


header {
    background: #ffe100;
    width: 100%;
    height: 80px;
}
header .headerInner {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}
header .headerInner h1 {
    float: left;
    padding-top: 22px;
}


header .headerInner h1 img {
    height: 35px;
}

@media screen and (max-width: 980px) {
header .headerInner h1 {
    float: left;
    padding-top: 30px;
    padding-left:10px;
}
header .headerInner h1 img {
    max-width:100px;
    height: auto;
	}
}

header .headerInner .koshienlogo {
    float: right;
    padding-top: 22px;
}
header .headerInner .koshienlogo img {
    height: 40px;
}

@media screen and (max-width: 980px) {
header .headerInner .koshienlogo {
    float: left;
    padding-left: 10px;
    padding-top: 25px;
}
header .headerInner .koshienlogo img  {
    max-width:160px;
    height: auto;
}

}
/*========= 途中からハンバーガーメニューに変化するのためのCSS ===============*/

/*========= ボタンのためのCSS ===============*/

/*ボタン全体の形状*/
.openbtn{
    /*はじめは非表示に*/

    /*ボタンの位置*/
	position:fixed;
	top:10px;
	right: 10px;
	z-index: 999;
    /*ボタンの形状*/
	background:#000;
	cursor: pointer;
    width: 50px;
    height:50px;
	border-radius: 5px;
}

/*ボタンのアイコン設定*/
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 2px;
	background-color: #fff;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

/*activeクラスが付与された後のボタンのアイコン設定*/
.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/*fadeDownクラスが付与された後のボタンの出現アニメーション設定*/
.fadeDown {
    animation-name: fadeDownAnime;
    animation-duration: 0.0s;
    animation-fill-mode: forwards;
    opacity: 1;
    display: block;
}
@keyframes fadeDownAnime{
  from {
    opacity: 1;
	transform: translateY(-100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}


/*========= ヘッダーナビゲーションのためのCSS ===============*/

/*==ヘッダーの形状*/
#header{
	height: 0px;
	max-width:100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background:#fff;
	color:#fff;
	text-align: center;
	padding: 0px 0;
}

/*.doneクラスがついたヘッダー*/
#header.dnone {
	opacity: 0;/*透過0にして非表示に*/
}

/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたら*/
#header.dnone.panelactive {
	opacity: 1;/*不透明にして出現*/
}


/*==ヘッダーのテキストナビゲーションの形状*/
#g-navi ul{
	list-style: none;
	display: flex;
	justify-content: center;
	text-align:left;
}

#g-navi ul li a{
	display: block;
	text-decoration: none;
	color: #fff;
	padding:5px 0;
	display:none;
	font-size:.6em;
}
@media screen and (max-width: 980px) {
#g-navi ul li a{
	font-size:.8em;

	}
}

#g-navi ul li.current a,
#g-navi ul li a:hover{
	color:#fff;	
}

/*.doneクラスがついたヘッダーのテキストナビゲーションの形状*/
#header.dnone #g-navi{
    /*固定位置にして最背面に*/
    position:fixed;
	top: 0;
    left: 0;
	z-index: -1;
    /*高さと幅*/  
	width:100%;
	height: 30vh;
    /*天地中央＆テキスト中央揃え*/  
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
    /*はじめは透過0に*/  
    opacity: 0;
	transition: all 0.4s;
}

/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたナビゲーションの形状*/
#header.dnone.panelactive #g-navi{
	opacity: 1;/*不透明に*/
	z-index:4;/*最前面に*/
	background:rgba(0,0,0,.8);
}

#header.dnone.panelactive #g-navi ul{
	display:block;/*flexの横並びをblockにして縦並びに*/
}


/*リストの形状*/

#header.dnone.panelactive #g-navi li a{
	color: #fff;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
	transition:all 0.3s;
}

@media screen and (max-width: 980px) {
#header.dnone.panelactive #g-navi li a{
	padding:5px;
	}
}



/*-------------------------------------------------

メインビジュアル

------------------------------------------------*/

.main_V{
	max-width:100%;
	background: repeating-linear-gradient(90deg, #000, #000 55px, #3B3736 55px, #3B3736 130px);
	padding:2em 0 ;
	text-align:center;
	border-bottom:15px solid #000;
/*	margin:0 0 -5.2vw;*/
}
.main_V .mv_Img{
	max-width:1100px;
	margin: 0 auto;
}

.main_V .mv_Tx{
	color:#fff;
	background:#f00;
	font-size:.6em;
	font-weight:600;
	padding:.2em .2em;
	margin: 0 auto;
	display:inline-block;
}


/*-------------------------------------------------

阪神タイガース

------------------------------------------------*/
.tigers_CP{
	background: #ffe100;
	padding:2em 0 ;
	box-sizing: border-box;
}

.tigers_contents{
	max-width:980px;
	margin: 0px auto;
	padding:0em;
	border:15px solid #000;
	box-sizing: border-box;
}
.tigers_contents .title{
	border-bottom:15px solid #000;
	background:#fff;
	font-size:1.25em;
	font-weight:900;
	text-align:center;
	padding:.7em;
}
@media screen and (max-width: 980px) {
.tigers_contents .title{
	font-size:1.3em;
	line-height:1.5;
	}
}

.tigers_contents .title_b{
	border-top:0px solid #000;
	background:#000;
	font-size:1.25em;
	font-weight:900;
	text-align:center;
	padding:.7em;
	color:#fff;
}
@media screen and (max-width: 980px) {
.tigers_contents .title_b{
	border-top:none;
	font-size:1.6em;
	}
}


.tigers_contents .Flex_Img{
	display:flex;
	padding: 0em 0em;
	border-bottom:15px solid #000;
	box-sizing: border-box;
}


.tigers_contents .bordernone{
	border-bottom:none;
}
.tigers_contents .detailB{
	max-width:150px;
	 margin: 0 10px 0 auto;
}
@media screen and (max-width: 980px) {
.tigers_contents .detailB{
	max-width:100px;
	 margin: -10px auto 20px;
	}
}



.tigers_contents .flex-item1 {
	flex-basis: 550px; /* flexアイテムの幅を割合で指定 */
	padding:1em .4em;
	background:url(../../assets/img/top/illust_01.png) no-repeat -32px bottom ;
  background-size:auto 445px;
}
.tigers_contents .flex-item2 {
	flex-basis: 58%; /* flexアイテムの幅を割合で指定 */
	padding:1em .8em;
}
.tigers_contents .flex-item3 {
	flex-basis: 400px; /* flexアイテムの幅を割合で指定 */
	padding:1em .4em;
	background: url(../../assets/img/top/illust_02.png) no-repeat ;
	background-position: right -20px bottom;
	background-size:auto 95%;
}

@media screen and (max-width: 980px) {
.tigers_contents .Flex_Img{
	flex-direction: column;
	}
.order1{
	order:2;
	}

.tigers_contents .flex-item1 {
	flex-basis: 250px; /* flexアイテムの幅を割合で指定 */
	padding:1em .4em;
	background:url(../../assets/img/top/illust_01.png) no-repeat 50% bottom ;
  background-size:auto 100%;
	}
.tigers_contents .flex-item3 {
	flex-basis: 250px; /* flexアイテムの幅を割合で指定 */
	padding:1em .4em;
	background: url(../../assets/img/top/illust_02.png) no-repeat ;
	background-position: right 50% bottom;
	background-size:auto 100%;
	}
}

/*-------------------------------------------------

阪神タイガース PICKUP

------------------------------------------------*/
.tigers_pickup{
	background:#fff;
	padding:1em;
}
.title_box{
	display:flex;
	align-items:center;
}
@media screen and (max-width: 980px) {
.title_box{
	display:flex;
	flex-direction: column;
	}
}

.tigers_pickup .tigers_Txt{
	margin:0 20px;
	font-size:.9em;
	font-weight:900;
}
@media screen and (max-width: 980px) {
.tigers_pickup .tigers_Txt{
	margin:0 10px;
	font-size:1.1em;
	}
}

.tigers_FlexBox{
	display:flex;
	padding:0em 1em;
	background:#fff;

}
.tigers_icon img{
	max-width:130px;
}
@media screen and (max-width: 980px) {
.tigers_icon img{
	max-width:100px;
	}

}
.tigers_FlexBox .flex-item04{
	padding:0 .5em 0 0;
}
.tigers_FlexBox .flex-item05{
	flex-basis: 500px;
}
.tigers_FlexBox .flex-item05 img{
	max-width:250px;
}
@media screen and (max-width: 980px) {
.tigers_FlexBox .flex-item05{
	display:none;
}
.tigers_FlexBox .flex-item05 img{
	max-width:250px;
}

}


.tigers_FlexBox .comment_tigers{
	font-size:.6em;
	font-weight:500;
}
@media screen and (max-width: 980px) {
.tigers_FlexBox .comment_tigers{
	font-size:1em;
	}
}

/*-------文字装飾-----*/
.tigers_FlexBox .T_samll{
	display:block;
	font-size:.8em;
	margin:10px 0 0 ;
}
.tigers_FlexBox .tigers_red{
	color:#f00;
}
/*-------シート-----*/

.tigers_FlexBox .seat{
	display:flex;
}
.tigers_FlexBox .seat div{
	width:calc(100% / 2);
	padding:1em .0em;
}
@media screen and (max-width: 980px) {
.tigers_FlexBox .seat{
		flex-direction: column;
	
}
.tigers_FlexBox .seat div{
	width:calc(100% / 1);
	padding:1em .0em;
	}
}

.tigers_FlexBox .seat div dl{
	padding:0 1em;
}
.tigers_FlexBox .seat div dl dt{
	background:#FFE100;
	padding:.3em .6em;
	font-size:.8em;
}
.tigers_FlexBox .seat div dl dd{
	font-size:.55em;
	font-weight:500;
	margin:20px 0 0;
	line-height:1.75;
}
@media screen and (max-width: 980px) {
.tigers_FlexBox .seat div dl{
	padding:0 0em;
	margin:-20px 0 0 ;
}
.tigers_FlexBox .seat div dl dt{
	background:#FFE100;
	padding:.3em .6em;
	font-size:1.1em;
	font-weight:700;
}
.tigers_FlexBox .seat div dl dd{
	font-size:.85em;
	font-weight:500;
	margin:20px auto 0px;
	}
}
/*--------------注意事項------------*/
.tigers_comment_txt{
	font-size:.45em;
	font-weight:500;
	background:#fff;
	margin:-30px 0 0px ;
	padding: 0em 1.5em 2em;
}
@media screen and (max-width: 980px) {
.tigers_comment_txt{
	font-size:.45em;
	font-weight:500;
	background:#fff;
	padding: 0em 1.8em 2em;
	margin:0px 0 0px ;
	}
}

.covd19{
	background:#fff;
	padding: 0em .5em;
}
.covd19 dt{
	background:url(../../assets/img/top/attention.png) no-repeat #E60012 1% 50%;
	font-size:.5em;
	font-weight:900;
	padding:1em .5em;
	text-align:center;
	color:#fff;
	border-radius:10px;
}
@media screen and (max-width: 980px) {
.covd19 dt{
	padding:1em .5em;
	max-width:100%;
	text-align:left;
	font-size:.75em;
	}
.covd19 dt p{
	text-align:left;
	max-width:85%;
	margin:0 0 0 auto;
	}

}

.covd19 dd{
	font-size:.48em;
	font-weight:500;
	color:#f00;
	padding:10px 0 30px;
}

/*-------------阪神甲子園球場内施設でＳポイントを10倍進呈！--------------------*/

.shop_List{
	font-size:.48em;
	font-weight:600;
	margin:10px 0 ;
}
.Img_tigers{
	margin:10px 0 30px ;
}

.Black_border{
	border-top:15px solid #000;
}

/*---------STACIAカードの魅力・メリット盛り沢山！！------------*/
.title_b_title{
	background:#000;
	font-size:1.25em;
	font-weight:900;
	color:#fff;
	text-align:center;
	padding:1.2em;
}



/*-------------------5000Pキャンペーン-------------------------*/
.Shin_cp{
	background: repeating-linear-gradient(-45deg,#FFE100 , #FFE100 30px, #FFF3A4 30px, #FFF3A4 50px);
	/*background:#FFE100;*/

	padding:2em 0 ;
}
.Shin_cp img{
	max-width:100%;
}

.Shin_cp_contents{
	max-width:965px;
	margin: 0 auto;
	background:#fff;
	padding:1em .5em;
	box-sizing: border-box;
	border:8px solid #000;
}
@media screen and (max-width: 980px) {
.Shin_cp_contents{
	max-width:95%;
	padding:0em 0em .5em;
	border:3px solid #000;
	}

}

.Shin_cp_contents .tokuten_lbl{
	background:#000;
	color:#fff;
	margin:0 0 10px;
	padding:.1em 0;
	font-weight:700;
	border-radius:50px;
}



.Shin_cp_flex{
	display:flex;
	padding:0 1em;
	justify-content:space-between;
}
.Shin_cp_flex div{
	width:calc(95% / 2);
	text-align:center;
	padding:.5em 1em;
	border:4px solid #3B3736;
}
.Shin_cp_flex div dt{
	font-size:.75em;
	font-weight:700;
	margin:0px 0 20px;
}
@media screen and (max-width: 980px) {
.Shin_cp_main{
	max-width:100%;
}

.Shin_cp_flex{
		flex-direction: column;
}
.Shin_cp_flex div{
	width:calc(100% / 1);
	text-align:center;
	padding:1em .5em;
	border:2px solid #3B3736;
	margin:5px 0 ;
}
.Shin_cp_flex div dt{
	font-size:1em;
	font-weight:700;
	margin:0px 0 10px;
}
.Shin_cp_flex div p img{
	max-width:70px;
	}
.Shin_cp_flex div dd img{
		max-width:90%;
	}
}
/*-------------------阪神タイガースカード-------------------------*/
.Shin_cp_card{
	background:#FFE100;
	padding:1em 0 2em;
}
@media screen and (max-width: 980px) {
.Shin_cp_card{
	padding:.5em 0 0em;
	}
}
.Shin_cp_contents_card{
	max-width:965px;
	margin: 0 auto;
	display:flex;
	padding:1em 1em;
	box-sizing: border-box;
	border:0px solid #000;
	align-items:center;
}
@media screen and (max-width: 980px) {
.Shin_cp_contents_card{
	max-width:95%;
	margin: 0 auto;
	flex-direction: column;

	}
}

.Shin_cp_contents_card div{
	margin:0 30px 0 0;
}

@media screen and (max-width: 980px) {
.Shin_cp_contents_card div{
	margin:0 0px 20px 0;
	}
}

.Shin_cp_contents_card .flex-item06 img{
	max-width:270px;
}

@media screen and (max-width: 980px) {
.Shin_cp_contents_card .flex-item06 img{
	max-width:70%;
	}
.Shin_cp_contents_card .flex-item06{
	text-align:center;
	}
}

.Shin_cp_contents_card dl{
	margin:0 0 30px;
}
.Shin_cp_contents_card  .LTlist{
	margin:0 0 0px;
}

.Shin_cp_contents_card dt{
	font-size:.7em;
	font-weight:900;
	border-bottom:1px solid #000;
}
@media screen and (max-width: 980px) {
.Shin_cp_contents_card dt{
	font-size:.9em;
	}
}

.Shin_cp_contents_card dd{
	font-size:.6em;
	font-weight:600;
	margin:10px 0 0 ;
}
@media screen and (max-width: 980px) {
.Shin_cp_contents_card dd{
	font-size:.8em;

	}

}

.Shin_cp_contents_card dd .sstext{
	font-size:.7em;
	font-weight:500;
	display:block;
	margin:10px 0 0 ;
	text-indent:-1em;
	padding-left:1em;
}
.Shin_cp_contents_card dd .sstext_02{
	font-size:.8em;
	font-weight:500;
	display:inline-block;
	margin:0px 5px 0 ;
}

.Shin_cp_contents_card dd  .sstext_red{
	color:#E60012;
	font-weight:700;
}

.Shin_cp_contents_card .point_5000{
	font-size:.85em;
	font-weight:700;
}

.Shin_cp_contents_card  .balloon1 {
  padding: 7px 0px;
  min-width: 120px;
  max-width: 100%;
  color: #FFE100;
  background: #000;
  margin: 0 0 20px;
  text-align:center;
}
@media screen and (max-width: 980px) {
.Shin_cp_contents_card  .balloon1 {
	font-size:1.7em;
	line-height:1.2;

	}
}

.dotnone{
	max-width:1000px;
	margin: 0 auto;
}

.dotnone li{
	font-size:1.2rem;
	margin:5px 0 7px;
}

/*---------------------コロナウイルス対策--------------------------*/
.corona-text{
	width:900px;
	margin: 0 auto 30px;
	border:2px solid #000;
	padding:15px 30px;
	background:#fff;
}
@media screen and (max-width: 980px) {
.corona-text{
	width:90%;
	margin: 0 auto;
	margin-bottom:60px;
	border:2px solid #000;
	padding:10px 15px;
	background:#fff;
	}
}
.corona-text dt{
	color:#000;
	font-size:.6em;
	font-weight:bold;
	border-bottom:1px solid #000;
}
@media screen and (max-width: 980px) {
.corona-text dt{
	text-align:center;
	}
}
.corona-text dd{
	font-size:.5em;
	margin:10px 0 0 0;
}
.bgWhite{
	background:#fff;
	padding:1em 0 1em;
}



.MvBtn{
	font-weight:700;
	margin:30px auto 0;
}


/* ボタン共通設定 */
.btn06{
    /*矢印の基点とするためrelativeを指定*/
	position: relative;
    /*ボタンの形状*/
	text-decoration: none;
	display: inline-block;
	background:#3AB8BE;
	color:#fff;
	padding: 10px 40px 10px 30px;
	border-radius:10px;
	text-align: center;
	outline: none;
    /*アニメーションの指定*/
    transition: ease .2s;
    font-size:.7em;
/*    box-shadow: 5px 5px 0px #25787C;*/
    

}

.btn06:hover{
	background:#000;
}


/* 矢印が右に移動 */

.btnarrow1::after{
    content: '';
    /*絶対配置で矢印の位置を決める*/
	position: absolute;
    top:33%;
    right: 13px;
    /*矢印の形状*/
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    /*アニメーションの指定*/
    transition: all .3s;
}

/*hoverした際の移動*/
.btnarrow1:hover::after{
    top:40%;
}

.marginS{
	margin:40px auto 0;
}

.marginS dl{
	margin:10px 0 30px;
}

.marginS dt{
	background:#333;
	color:#fff;
	font-size:.6em;
	padding:.4em;
	text-align:center;
	font-weight:700;
	margin:0 0 10px;
}
.marginS dd{
	font-size:.75em;
	font-weight:700;
	text-align:center;
	padding: 0 0 15px;
}
.marginS .ssma{
	display:block;
	font-size:.7em;
}
@media screen and (max-width: 980px) {
.marginS{
	margin:20px auto 0;
}

.marginS dl{
	margin:10px 0 10px;
}

.marginS dt{
	background:#333;
	color:#fff;
	font-size:.9em;
	padding:.4em;
	text-align:center;
	font-weight:700;
	margin:0 0 10px;
}
.marginS dd{
	font-size:.9em;
	font-weight:700;
	text-align:center;
	padding: 0 0 15px;
	max-width:90%;
	margin: 0 auto;
}
.marginS .ssma{
	display:block;
	font-size:.8em;
}

}