@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@900&display=swap');
@font-face {
font-family: rbomiya;
src: url("../font/FuturaforRedBull-Bold.ttf") format("truetype");
}
html{
	 scroll-behavior: smooth;
}
.guide-main{
	font-size: 1.4rem;
}
.guide-main main{
	padding: 0;
	position: relative;
}
.guide-main main .en{
	font-family: rbomiya;
}
.guide-main main a.under-line{
	color: #FFFFFF;
}

.guide-main p{
	line-height: 1.5;
}
/*---------- 
ボタン
---------*/
.guide-main .guide-button.text-center{
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-pack: center;
	-webkit-box-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	-webkit-box-align: center;
	align-items: center;
	margin-top: 20px;
}
.guide-main .guide-button.text-center a{
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-pack: center;
	-webkit-box-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	-webkit-box-align: center;
	align-items: center;
	width: 316px;
	min-height: 60px;
	border-radius: 30px;
	padding: 0 15px;
	font-size: 1.4rem;;
	color: #FFFFFF;
	font-weight: 700;
	background-color:#001D46 ;
	position: relative;
	z-index: 1;
	-webkit-transition: opacity 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
	transition: opacity 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.guide-main .guide-button.text-center a:hover{
	opacity: .7;
}
.guide-main .guide-button.text-center a span{
	display: inline-block;
	width: 100%;
	position: relative;
	text-align: center;
	z-index: 1;
}
.guide-main .guide-button.text-center a span:after{
	content: "";
	position: absolute;
	right: 10px;
	top: calc(50% - 0px);
	width: 9px;
	height: 9px;
	border-top: solid 1px #FFFFFF;
	border-right: solid 1px #FFFFFF;
	-webkit-transform: rotate(45deg) translateY(-50%);
	transform: rotate(45deg) translateY(-50%);
	-webkit-transition: right 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
	transition: right 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.guide-main .guide-button.bg-w a{
	background-color: #FFFFFF;
	color: #001D46;
}
.guide-main .guide-button.bg-w a span:after{
	border-top: solid 1px #001D46;
	border-right: solid 1px #001D46;
}

.guide-main .pagetop {
	height: 50px;
	width: 50px;
	position: fixed;
	right: 15px;
	bottom: 30px;
	background: #fff;
	border: solid 2px #001D46;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 100;
}

.guide-main .pagetop_arrow {
	height: 10px;
	width: 10px;
	border-top: 3px solid #001D46;
	border-right: 3px solid #001D46;
	transform: translateY(20%) rotate(-45deg);
}
.guide-main .banner {
	margin-top: 20px;
}
/*---------- 
タイトル / 見出し
---------*/
.guide-main .sec-ttl{
	text-align: center;
	margin-bottom: 20px;
}
.guide-main .sec-ttl span{
	display: block;
	font-size: 2.2rem;
	font-weight: bold;
	letter-spacing: .2rem;
}
.guide-main .ct_tll{
	position: relative;
	padding: 16px;
	background-color: #FFFFFF;
	border-radius: 10px;
	text-align: center;
	margin-bottom: 32px;
	color: #001D46;
	position: relative;
	z-index: 1;
}
.guide-main .ct_tll._orange{
	background-color: #eb5c01;
	color: #FFFFFF;
}
.guide-main .ct_tll._blue{
	background-color: #001D46;
	color: #FFFFFF;
}
.guide-main .ct_tll._red{
	background-color: #D2003C;
	color: #FFFFFF;
}
.guide-main .ct_tll:before{
	content: "";
	position: absolute;
	top: calc(100% - 8px);
	inset-inline: 0;
	margin-inline: auto;
	width: 24px;
	height: 24px;
	background-color: #FFFFFF;
	clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.guide-main .ct_tll._orange:before{
	background-color: #eb5c01;
}
.guide-main .ct_tll._blue:before{
	background-color: #001D46;
}
.guide-main .ct_tll._red:before{
	background-color: #D2003C;
}
.guide-main .fukidashi{
	align-items: center;
	background-color: #eb5c01;
	display: flex;
	justify-content: center;
	position: relative;
	width: 38.533333%;
	z-index: 10;
	margin: 0 auto;
	padding: 5px;
	color: #FFFFFF;
}
.guide-main .fukidashi span{
	-webkit-text-stroke-width: 0.5px;
	-webkit-text-stroke-color: currentcolor;
	color: #FFFFFF;
	display: block;
	font-style: normal;
	font-weight: 300;
	letter-spacing: 0.08em;
	line-height: 1.363636;
}
.guide-main .fukidashi:after{
	aspect-ratio: 1 / 1;
	background-color: #eb5c01;
	clip-path: polygon(0px 0px, 100% 0px, 50% 100%);
	content: "";
	display: block;
	left: 0px;
	margin-inline: auto;
	position: absolute;
	right: 0px;
	top: calc(100% - 1px);
	width: 6.228374%;
}
.zoomin.is-animated {
  animation: zoomIn 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
 
@keyframes zoomIn {
  0% {
    transform: scale(0.2);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.slidein.is-animated {
  animation: slideIn 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
 
@keyframes slideIn {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%,100% {
    opacity: 1;
  }
}
/*---------- 
ここまでタイトル / 見出し
---------*/
.guide-main .guide-bg_images{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	}
.guide-main .guide-bg_images div{
	 position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		width: 100%;
	height: 100%;
		transition: opacity .6s ease-out;
	}
.guide-main .guide-bg_images div:after{
	z-index: 1;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: none repeat-y center 0 transparent;
	background-size: 100% auto;
	content: "";
	animation: pc-bg 500s linear infinite;
	background-image: url(../img/pc-bg.png);
	}

@keyframes pc-bg {
    0% {
        background-position:center 0
    }

    100% {
        background-position:center -237.0833333333vw
    }
}


.guide-main .guide-contents{
	background-color: #001D46;
	border-left: 1px solid #001D46;
	border-right: 1px solid #001D46;
	padding-bottom: 5%;
	z-index: 1;
}
.guide-main .guide-contents_l{
	position: sticky;
	top: 0;
	width: 57.5757575758%;
	width: calc((100% - 475px)*.575);
	width: 572px;
	height: 100vh;
	z-index: 1;
}
.guide-main .guide-contents_r{
	position: sticky;
	top: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 42.4242424242%;
	width: 423px;
	height: 100vh;
	background-color: #F3F3F3;
	padding: 210px 0 89px;
	padding: 38px 0 89px;
}

.guide-main .inner{
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	
}
.guide-main .kv-img{
	padding-bottom: 11%;
	border-radius: 0 0 50px 50px;
	position: relative;
	background-color: #F3F3F3;
	display: flex;
	align-items: center;
	justify-content: center;
}
.guide-main .guide-slideshow{
	position: relative;
	margin-top: 30px;
}
.guide-main .guide-slideshow > div{
	width: 100%;
	height: 6vw;
	backface-visibility: hidden;
	background: none repeat-x left top transparent;
	background-size: auto 100%;
	animation-duration: 100s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	background-image: url(../img/slideshow.png);
	animation-name: slideshow;
}
@keyframes slideshow {
    0% {
        background-position:0 0
    }

    100% {
        background-position:-1598.3901px 0
    }
}
.guide-main .guide-contents-nav{
	margin: 10% 0 16.5%;
}
.guide-main .guide-contents-nav ul{
	display: flex;
	gap: 1.25rem;
	justify-content: center;
	flex-wrap: wrap;
}
.guide-main .guide-contents-nav ul li{
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	gap: 12px;
	padding: 12px 16px 30px;
	text-align: center;
	background-color: #001D46;
	border-radius: 20px;
	transition: .8s;
	pointer-events: painted;
	width: 47%;
	border: 1px solid #FFFFFF;
}
.guide-main .guide-contents-nav ul li:hover{
	background-color: #FFFFFF;
}
.guide-main .guide-contents-nav ul li:before{
	content: "";
	position: absolute;
	bottom: 10px;
	left: 47%;
	transition: all 0.2s ease-in-out;
	display: block;
	width: 8px;
	height: 8px;
	border-top: solid 2px #001D46;
	border-right: solid 2px #001D46;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	z-index: 1;
}
.guide-main .guide-contents-nav ul li:after{
	content: "";
	position: absolute;
	bottom: 5px;
	left: 50%;
	transform: translate(-50%);
	margin: auto;
	transition: all 0.2s ease-in-out;
	display: block;
	width: 18px;
	height: 18px;
	background-color: #FFFFFF;
	border-radius: 50%;
}
.guide-main .guide-contents-nav ul li:hover:before{
	border-top: solid 2px #001D46;
	border-right: solid 2px #001D46;
}
.guide-main .guide-contents-nav ul li a{
	color: #FFFFFF;
	transition: opacity 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
	font-weight: bold;
	margin: 2px;
}
.guide-main .guide-contents-nav ul li:hover a{
	color: #001D46;
}
.guide-main .guide-contents-nav ul li a span.en{
	display: block;
	font-size: 1.8rem;
	margin-bottom: 4px;
}
.guide-main .section-articles{
	background-color: #F3F3F3;
	border-radius: 50px;
	margin-bottom: 14%;
}
.guide-main .section-articles:not(:first-child){
	margin-top: 14%;
}
/*次のホームゲームはいつ？*/
.guide-main #matches{
	position: relative;
	padding-top: 16%;
	padding-bottom: 16%;
}
.guide-main #matches .swiper-slide{
	opacity: .5!important;
}
.guide-main #matches .swiper-slide-active{
	opacity: 1!important;
}
.guide-main #matches .matches-item{
	padding: 30px 10px;
	position: relative;
	background-color: #FFFFFF;
	display: flex;
	color: #000000;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.guide-main #matches .matches-item .league-logo{
	width: 32px;
	position: absolute;
	right: 20px;
	top: 10px;
	text-align: center;
}
.guide-main #matches .matches-item .league-logo img{
	width: 19px;
}
.guide-main #matches .matches-item .league-logo span{
	font-size: 1.0rem;
	display: block;
	margin-top: -5px;
	font-weight: bold;
}
.guide-main #matches .matches-item .date-block{
	width: 140px;
}
.guide-main #matches .matches-item .date-block dl{
	text-align: left;
	line-height: 1.0;
}
.guide-main #matches .matches-item .date-block dt{
	font-size: 4.0rem;
	font-family: rbomiya;
}
.guide-main #matches .matches-item .date-block dt span{
	margin-left: -5px;
	font-size: 1.5rem;
	display: inline-block;
	transform: rotate(90deg);
	vertical-align: middle;
}
.guide-main #matches .matches-item .date-block dd{
	margin-top: 10px;
	font-family: rbomiya;
	font-size: 2.4rem;
}
.guide-main #matches .matches-item .date-block dd span{
	font-size: 1.4rem;
	display: inline-block;
	margin-left: 5px;
}
.guide-main #matches .matches-item .teams-block{
	width: calc(100% - 170px);
	margin-left: 10px;
}
.guide-main #matches .matches-item .teams-block figure img{
	width: 70px;
}
.guide-main #matches .matches-item .teams-block span{
	text-align: center;
	font-weight: bold;
	font-size: 1.4rem;
	display: block;
	margin-top: -10px;
}
.guide-main #matches .matches-item .matches-button{
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	margin-top: 15px;
}
.guide-main #matches .matches-item .matches-button a{
	background-color: #001D46;
	color: #FFFFFF;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	position: relative;
	border-radius: 30px;
	padding: 0 15px;
	font-size: 1.2rem;
	min-height: 36px;
	width: 45%;
}
.guide-main #matches .matches-item .matches-button span{
	background-color: #f0f0f0;
	color: #888888;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	position: relative;
	border-radius: 30px;
	padding: 0 15px;
	font-size: 1.2rem;
	min-height: 36px;
	width: 45%;
}
.guide-main #matches .matches-item .matches-button a:not(:first-child){
	margin-left: 5px;
}
.guide-main #matches .matches-item .matches-button a:before{
	content: "";
	position: absolute;
	right: 15px;
	top: calc(50% - 0px);
	width: 9px;
	height: 9px;
	border-top: solid 1px #FFFFFF;
	border-right: solid 1px #FFFFFF;
	transform: rotate(45deg) translateY(-50%);
}
/*チケットはどこで買えるの？*/
.guide-main #ticket{
	border-radius: 50px;
	overflow: hidden;
	padding-bottom: 2.5%;
}
.guide-main #ticket .ticket-box{
	background-color: #FFFFFF;
	padding: 11% 5% 9.3%;
	position: relative;
	border-radius: 50px;
}
.guide-main #ticket .ticket-step-box .ticket-img{
	position: relative;
	padding: 10px 20px;
}
.guide-main #ticket .ticket-step-box .ticket-text{
	color: #001D46;
	border: 1px solid #001D46;
	text-align: left;
	position: relative;
	padding: 35px 20px 10px;
}
.guide-main #ticket .ticket-step-box .label{
	display: inline-block;
	background-color: #001D46;
	color: #FFFFFF;
	padding: 5px;
	position: absolute;
	top: 0;
	left: 0;
	min-height: 30px;
}
.guide-main #ticket .ticket-step-box .ticket-text h4{
	margin-bottom: 4px;
	font-size: 2.0rem;
}
.guide-main #ticket .ticket-step-box .ticket-text p{
	font-size: 1.3rem;
}

/*スタジアムまでの行き方は？*/
.guide-main #access .sec-ttl{
	color: #FFFFFF;
}
.guide-main #access .map{
	margin-bottom: 20px;
}
.guide-main #access .ct_tll{
	margin-bottom: 0;
}

/*何時に行こう?*/
.guide-main #time{
	position: relative;
	padding-top: 10%;
	padding-bottom: 16%;
}
.timeline {
	max-width: 400px;
	width: 100%;
	margin: 50px auto;
	padding: 0 0 0 10px;
}

.timeline li {
	position: relative;
	list-style: none;
	padding: 0 0 20px 0;
}

.timeline .timeline-inner {
	margin: 0 0 40px 1.5em;
	overflow: hidden;
	position: relative;
}
.timeline .timeline-inner:last-child{
	margin-bottom: 0;
}
.timeline dl{
	color: #eb5c01;
	margin-bottom: 15px;
}
.timeline dt{
	font-size: 1.8rem;
	margin-right: 10px;
}
.timeline dd{
	font-size: 1.8rem;
	display: inline-block;
	background-color: #001D46;
	color: #FFFFFF;
}
.timeline .timeline-inner p{
	color: #001D46;
	font-size: 1.4rem;
	letter-spacing: -.025em;
	line-height: 1.7307692308;
	margin-top: 15px;
	padding-right: 8px;
}

/*絶対配置で線を設定*/
.border-line {
	/*線の位置*/
	position: absolute;
	left: 0.23em;
	top: 4px;
	width: 3px;
	height: 0; 
	background: #001D46;
}

.timeline li::after {
	content: "";
	position: absolute;
	top: 4px;
	left: 0;
	width: 10px;
	height: 10px;
	background: #eb5c01;
	border-radius: 50%;
}

.guide-main  #time .fukidashi{
	width: auto;
	display: inline-block;
	font-size: 1.0rem;
	max-width: 200px;
}
/*time-sec1*/
.guide-main #time .sec1_ph3{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 15px;
}
.guide-main #time .sec1_ph3 div{
	width: 25%;
	background-color: #eb5c01;
	padding: 10px;
}
.guide-main #time .sec1_ph3 div:nth-child(even){
	background-color: #001D46;
}
/*time-sec2*/
.guide-main #time .sec2-ph{
	display: flex;
	margin-top: 20px;
}
.guide-main #time .sec2-ph > div{
	width: 50%;
}
.guide-main #time .sec2-ph4{
	width: 220px;
	margin-left: auto;
	margin-right: auto;
	margin-top: -16%;
	position: relative;
	z-index: 2
}
.guide-main #time .sec2_ph4_fukidashi{
	margin-left: 60%;
	padding: 8px;
}
.guide-main #time .sec2-ph5{
	text-align: center;
}
.guide-main #time .sec2-ph5 img{
	width: 220px;
}
/*time-sec3*/
.guide-main #time .sec3_ph2_fukidashi{
	margin-left: 40%;
	margin-top: -20%;
	padding: 8px;
}
.guide-main #time .sec3_ph2{
	margin-left: 60%;
	width: 45%;
	margin-top: -3%;
}
.guide-main #time .sec3_ph2 img{
	width: 140px;
}
.guide-main #time .time-sec3 p{
	position: absolute;
	bottom: 0;
	left: 0;
}
.guide-main #time .swiper{
	max-width: 300px;
	margin: auto;
	overflow: visible;
}
.guide-main #time .swiper-slide .swiper-slide-item{
	border: 1px solid #001D46;
	background-color: #001D46;
	color: #FFFFFF;
}
.guide-main #time .swiper-slide .player-deta{
	display: flex;
	align-items: center;
	padding: 3% 5%;
}
.guide-main #time .swiper-slide .player-deta .num{
	width: 70px;
	font-size: 4.0rem;
}
.guide-main #time .swiper-slide .player-deta .name{
	margin-left: 8px;
	text-align: left;
}
.guide-main #time .swiper-slide .player-deta .name > span{
	display: block;
}
.guide-main #time .swiper-slide .player-deta .name > span:nth-child(1){
	font-size: 1.8rem;
}
.guide-main #time .swiper-slide .player-deta .name > span:nth-child(2){
	font-size: 1.2rem;
	font-family: rbomiya;
	font-weight: normal;
}
.guide-main #time .swiper-slide .player-sns{
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 15px;
	padding-top: 10px;
}
.guide-main #time .swiper-slide .player-sns a{
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	border-radius: 50%;
}
.guide-main #time .swiper-slide .player-sns a img{
	width: 22px;
}
.guide-main #time .swiper-slide .player-sns a.tw{
	background-color: #000000;
	color: #FFFFFF;
}
.guide-main #time .swiper-slide .player-sns a.ig{
	background-color: #d93177;
	color: #FFFFFF;
}
.guide-main #time .swiper-slide .player-sns a:first-child{
	margin-right: 10px;
}

/*スタジアムの楽しみ方！*/
.guide-main #enjoy{
	border-radius: 50px;
	overflow: hidden;
	padding-bottom: 2.5%;
}
.guide-main #enjoy .enjoy-box{
	background-color: #FFFFFF;
	padding: 11% 0 9.3%;
	position: relative;
	border-radius: 50px;
}
.guide-main #enjoy .swiper-slide{
	height: auto;
}
.guide-main #enjoy .swiper-slide .swiper-slide-item {
	height: 100%;
	background-color: #001D46;
} 
.guide-main #enjoy .swiper-slide .enjoy-img{
	margin-inline: auto;
	position: relative;
	width: 75.1243781095%;
	z-index: 2;
	padding-top: 5%;
}
.guide-main #enjoy .swiper-slide .enjoy-text{
	color: #FFFFFF;
	padding-bottom: 10%;
	position: relative;
	z-index: 2;
	padding-left: 10px;
	padding-right: 10px;
}
.guide-main #enjoy .swiper-slide .enjoy-text p{
	margin-top: 10px;
}
.guide-main #enjoy .goods-inner{
	margin-top: 30px;
} 
.guide-main #enjoy .point-text{
	background-color: #D2003C;
	color: #FFFFFF;
	padding: 5px;
	text-align: center;
	
}

/*フッター*/
.footer-box .guide-sns-list{
	padding-left: 15%;
	padding-right: 15%;
}
.footer-box .guide-sns-list ul{
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 20px;
	grid-row-gap: 0px;
	align-items: center;
}
.footer-box .guide-sns-list ul li img{
	width: 30px;
}
.footer-box .guide-footer-logo{
	margin-top: 25px;
	text-align: center;
}
.footer-box .guide-footer-logo a{
	display: block;
	width: 45px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
.footer-box .guide-footer-logo .copy{
	font-size: 1.1rem;
	text-align: center;
	color: #FFFFFF;
	display: block;
}
.footer-box .footer-text{
	text-align: center;
	font-weight: bold;
	margin-bottom: 35px;
	color: #FFFFFF;
	font-size: 2.3rem;
}
	

@media screen and (max-width: 767px){
	.guide-main{
		display: block;
	}
	.guide-main .guide-contents_l{
		display: none;
	}
	.guide-main .kv-img img{
		vertical-align:top;
	}
	.guide-main .guide-contents{
		width: 100%;
		margin: 0;
	}
	.guide-main .guide-contents_r{
		display: none;
	}
	.guide-main .guide-slideshow > div{
	width: 100%;
	height: 20vw;
}
}

@media screen and (min-width: 768px){
	.guide-main main{
	display: -ms-flexbox;
	display: flex;
		justify-content: space-between;
		background-color: #F3F3F3;
}

	.guide-main .guide-contents_l{
		display: flex;
		justify-content: center;
		align-items: center;
		z-index: 1;
	}
	.guide-main .qr-card figure{
		width: 120px;
		margin: 0 auto;
	}
	.guide-main .qr-card .qr-text{
		text-align: center;
		font-weight: bold;
	}
	.guide-main .qr-card .qr-text h4{
		font-size: 1.8rem;
		margin-bottom: 5px;
	}

	.guide-main .guide-contents{
	-webkit-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 400px;
	margin: 0 10px;
	position: relative;
	}
	.guide-main .guide-nav{
		position: absolute;
		z-index: 10;
	}
	.guide-main .guide-nav ul li + li{
		margin-top: 10px;
	}
	.guide-main .guide-nav ul li a{
		display: flex;
		justify-content: flex-start;
		align-items: center;
		padding: 10px 39px 8px 13px;
		background-color: #001D46;
		border: 1px solid rgb(68, 68, 68);
		border-radius: 10px;
		color: #FFFFFF;
	}
	.guide-main .guide-nav ul li span{
		display: inline-block;
		margin-right: 8px;
		font-size: 1.8rem;
	}
	.guide-main .guide-nav ul li p{
		font-weight: bold;
	}


}
@media screen and (min-width: 768px) and (max-width: 1160px){
	.guide-main .guide-contents_l{
		width: 667px;
	}
}