@charset "utf-8";
/* CSS Document */

h1,
ul {
  margin: 0;
  padding: 0;
}
ul li{
  list-style: none;
}
a,
a:active,
a:hover,
a:visited {
  text-decoration: none;
  color: inherit !important;
}

h2{
	font-size:4.5rem;
	margin-top: 0;
}
button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  border-radius: 0;
  background: none;
}

/*---------------------
utility
-----------------------*/
html {
	font-size:62.5%;
}
img{
    max-width: 100%;
    height: auto;
}

.text_center{
	text-align: center;
	margin: 0 auto;
}
.is-bold{
	font-weight:bold;
}
.img_center{
	display: block;
	margin: 0 auto;
}
.br_sp{
    display: block;
}
.br_pc{
    display: none;
}
.is-red{
	color:#e52067;
}
.is-blue{
color:#0ea8ec;
}

.is-blue_2{
color:#028bfd;
}
/*.is-blue_3{
color: #3086C2;
}*/

/*.is_green{
	color: #2ac202;
}*/
/*.is-brown{
	color: #823801;
	 text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
              -1px 1px 0 #FFF, 1px -1px 0 #FFF,
              0px 1px 0 #FFF,  0-1px 0 #FFF,
              -1px 0 0 #FFF, 1px 0 0 #FFF;
}*/
.is-white{
	color:#FFF;
/*	text-shadow:-1px -1px 3px #028bfd;
*/}
.is-white_2{
	 text-shadow:1px 1px 0 #0ea8ec, -1px -1px 0 #0ea8ec,
              -1px 1px 0 #0ea8ec, 1px -1px 0 #0ea8ec,
              0px 1px 0 #0ea8ec,  0-1px 0 #0ea8ec,
              -1px 0 0 #0ea8ec, 1px 0 0 #0ea8ec;
}
.is-pink{
	color:#E85484;
}
.is-pink_2{
	color:#fa6ea2;
  text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
              -1px 1px 0 #FFF, 1px -1px 0 #FFF,
              0px 1px 0 #FFF,  0-1px 0 #FFF,
              -1px 0 0 #FFF, 1px 0 0 #FFF;
}
.contents {
    padding-top: 0;
}

/*-----------------------
common
-------------------------*/
.contents {
    font-size: 1.6rem;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    color: #000;
}

.contents P{
    margin-top: 0;
}

	/*-----------------------
	header
	-------------------------*/
  .header_bg{
		background-image: url(/assets/img/special/enjoy_yorimichi/header_bg__sp.jpg);
		background-size:auto;
        background-repeat:no-repeat;
	    background-position: 60% 0%;
        position:relative;
	  width:100%;
    }

   .header_logo{
	position: fixed;
    top: 2%;
    width: 20%;
    height: auto;
    margin-left: 4px;
    z-index: 10;
   }

.title p:first-of-type{
	font-size:2.2rem;
	font-weight:bold;
/*	padding:0;*/
	margin:0;
	line-height: 1;
}

  h1{
  font-size: 2.6rem;
/*  color:#e85484;*/
  line-height: 1.3;
  }	

    /*-----------------------
    navigation
    -------------------------*/
.nav_wrapper__sp{
    position: fixed;
    top: 0;
    width: 100%;
    height: 62px;
	background-color: rgba(255,255,255,0.8);
	z-index: 10;
}

.nav_logo{
	position: fixed;
    top: 12px;
    left: 5px;
    z-index: 8;
    width: 250px;
    height: auto;
}

/**************** 以下、ハンバーガーボタンのスタイリング ****************/
.btn_nav {
	position: fixed;
	top: 7px;
	right: 10px;
	z-index: 10;
	width: 48px;
	height: 48px;
}

/***** 真ん中のバーガー線 *****/
.btn-line {
	display: block;
	position: relative;
	width: 100%;
	height: 4px;
	background-color: #404040;
	transition: .2s;
}

/***** 上下のバーガー線 *****/
.btn-line::before , .btn-line::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #404040;
	transition: .5s;
}

.btn-line::before {
	transform: translateY(-16px);
}

.btn-line::after {
	/* 下の線の位置 */
	transform: translateY(16px);
}

/***** メニューオープン時 *****/
.btn-line.open {
	background-color: transparent;
}

.btn-line.open::before , .btn-line.open::after {
	content: "";
	background-color: #333;
	transition: .2s;
}

.btn-line.open::before {
	transform: rotate(45deg);
}

.btn-line.open::after {
	transform: rotate(-45deg);
}

/**************** ここまで、ハンバーガーボタンのスタイリング ****************/

/**************** 以下、メニューのスタイリング ****************/
.nav_menu {
	/* メニューを縦に */
	display: none;
	position: absolute;
	flex-direction: column;
	/* メニューの位置マイナス指定で画面外に */
	right: -100%;
	width: 100%;
	height: 100vh;
	background-color: #fff;
    z-index: 9;
}
.nav_menuitem {
	/* メニューテキスト位置をリスト内中心に */
	display: block;
	align-items: center;
	justify-content: center;
	font-size: 3.2rem;
	border-bottom: solid 1px #dcdcdc;
	margin: 0 20px 20px;
}
.nav_menuitem:first-of-type{
	margin: 80px 20px 20px;
}

.nav_menuitem:hover {
	cursor: pointer;
	transition: .3s;
}
.nav_menutitle{
	pointer-events: all;
}
.nav_menutitle i{
	margin-left: 10px;
	transition: .3s;
}

/***** メニューオープン時位置0にして画面内に *****/
.nav_menu.open {
	display: flex;
	position: fixed;
	top: 0;
	right: 0;
	overflow-y: scroll;
}

.nav_menu__child{
	display: none;
	font-size: 2.4rem;
}
.nav_menu__child li{
	margin-left: 40px;
}


/* PageTopBtn */
.pagetop{
    display: none;
    position: fixed;
    right: 15px;
    bottom: 80px;
    z-index: 5;
}
.pagetop a{
    display: block;
    font-size: 0;
    width: 50px;
    height: 50px;
    text-align: center;
    background-color:#fff;
    border-radius: 50%;
    line-height: 50px;
    box-shadow: 0px 0px 9px -6px rgba(0,0,0,0.6);
	transition: .3s;
}
.pagetop a:hover{
    background-color:#fbab20;
}
.pagetop a i{
    font-size: 2rem;
    color:#333333;
    line-height: 50px;
}
.pagetop a:hover .fas.fa-chevron-up{
    color:#fff;
}


	/*-----------------------
	about
	-------------------------*/
.about{
    margin: 0 auto;
    padding: 64px 10px 40px;
	text-align: center;
}
.about img{
	width: 88%;
	/*width:100%;*/
    max-width: 260px;
    height: auto;
	padding-bottom: 10px;
}
    .about_title{
    padding:10px 0;
	font-size:1.8rem;
    }
    .about_txt{
		text-shadow: 0.5px 0.5px 0 rgba(255,255,255,0.2), -0.5px -0.5px 0 rgba(255,255,255,0.2), -0.5px 0.5px 0 rgba(255,255,255,0.2), 0.5px -0.5px 0 rgba(255,255,255,0.2), 0px 0.5px 0 rgba(255,255,255,0.2), 0 -0.5px 0 rgba(255,255,255,0.2), -0.5px 0 0 rgba(255,255,255,0.2), 0.5px 0 0 rgba(255,255,255,0.2);
   }

	/*-----------------------
	section
	-------------------------*/
	.section_inner{
		max-width: 1000px;
		margin: 0 auto;
		padding: 64px 10px 80px;
	}
	.section_inner2{
		max-width: 1000px;
		margin: 0 auto;
		padding: 64px 10px 20px;
	}
	.section_inner3{
		max-width: 1000px;
		margin: 0 auto;
		padding: 20px 10px 20px 10px;
}

   	/*-----------------------
	special_contents
	-------------------------*/
    .info_thumb{
        width:100%;
   }

.info_thumb_first{
    margin-right: 1.3333%;
}
.info_thumb_second{
    margin-right: 1.3333%;
}

.info_list{
	padding-top:30px;
}
.logo_1,.logo_2,.logo_3{
	position:relative;
}

.info_list:nth-child(even):before{
	right: 1%;
    top: 3%;
}

.info_list:first-of-type{
	padding-top:0;
}
   .info_list:nth-child(even){
/*		padding-top:30px;*/
    }
    .info_txt{
        width:100%;
		margin-top:15px;
    }
    .info_title{
        font-size:2.2rem;
		padding-top: 10px;
    }
    .info_title span{
        font-size:1.6rem;
    }
.info_title p{
	line-height: 1.3;
}
.info_content p{
	margin-top: 15px;
}
.info_line{
	border-bottom: solid 10px #028bfd;
}

.campaign{
	padding-top:15px;
}
.sapa_bnr{
	text-align: center;
}

	/*-----------------------
	info_limited
	-------------------------*/	
.info_thumb_s img{
width: 80%;
  margin:5% 10%;
}
.il_img{
	margin-top:10px;
}
.info_time{
	font-size:2.2rem;
	color: #e85484;
/*	letter-spacing: 0.5em;*/
	margin-bottom:20px;
	padding-top: 10px;
	transform-origin: left center;
    transform: scale(1.05, 0.9);
    line-height: 1.4em;
}

/*.info_txt_s{
	margin-left:30px;
}*/
    .info_txt_s p:first-child{
        margin-bottom:20px;
    }
.txt_small{
	font-size:1.3rem;
	margin-left:17px;
}
p.c-mt24{
	margin-top:24px;
}

 	/*-----------------------
	btn
	-------------------------*/
.btn_wrapper{
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
}
.btn_wrapper:last-child{
	margin-bottom:20px;
	}

.btn_box{
	dislay:flex;
}

.btn  {
  color: #fff;
/*  width: 270px;*/
  text-align: center;
  background: #fd0214;
  padding: 10px 5px;
  position: relative; 
  margin-right: 1%;
  vertical-align: middle;
  cursor: pointer;
  transition: all 0.3s;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all  0.3s ease;
}
.btn:hover{
  opacity:.75
}
.btn_1{
	width:33%;
}

.btn_1:last-of-type{
	margin-right:0;
}
/*.btn_2{
	margin:0 auto;
}*/
.btn_2{
	width:70%;
}
.btn_3{
	width:50%;
}
.btn_wrapper_1{
	margin-top:20px;
}
.btn_wrapper_2{
	justify-content: center;
	margin-top:20px;
}
.btn_wrapper_3{
	justify-content: flex-start;
	margin-top:20px;
	margin-bottom:30px;
}

/*.btn_4:last-child{
	margin-bottom:42px;
}*/


.btn ::after {
  content: ">";
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
}

	/*-----------------------
	event_campaign
	-------------------------*/
h2 p.ttl{
	font-family: 'Lato', sans-serif;
	font-weight:400;
}
.event_campaign{
	background-image: url(/assets/img/special/enjoy_yorimichi/event_campaign_bg__sp.jpg);
         background-repeat:no-repeat;
          background-size:contain;
}
.section_ttl{
	padding-bottom: 20px;
}
.sub_ttl{
	font-size:1.5rem;
}
.event_campaign_txt{
	margin-top:30px;
}
    .item_list{
	margin-bottom:28px;
    }
.item_list:nth-child(even){
	margin-right:0;
}
    .item_thumb{
    margin: 0 auto;
    overflow: hidden;
    }
    .item_thumb img{
        margin-bottom:8px;
		width:100%;
    }
.item_name{
	font-size: 1.8rem;
    line-height: 1.3;
}
    .item_txt{
        width:100%;
    }
.area_name{
	font-size:1.3rem;
}
/*.event_campaign_bg_y{
	background-color:#feecc0;
}*/
.bg_pink{
	background-color:#FFFCE9;
}

.thumb_list{
	margin-bottom: 15px;
}
.thumb_list p {
    padding-top: 10px;
}
.thumb_list:nth-child(even){
	margin-right:0;
}
.thumb_list:last-child{
	margin-bottom: 0;
}
.thumb_list img{
	width:100%;
}
    /*-----------------------
	other
	-------------------------*/
.other_box{
    background-color:#f8f6f0;
	padding-top:40px;
	padding-bottom: 20px;
}
.other_txt{
	padding:0 10px;
}
.other_ttl{
	font-size:2.625rem;
	margin-bottom:30px;
	color:#696046;
	padding-top: 20px;
}

	/*-----------------------
	insta
	-------------------------*/
.sns_ttl{
	font-size:2.2rem;
	margin-bottom: 30px;
}
.img_insta{
	margin-top:20px;
	width:60px;
}
.sns_inner{
	max-width: 1200px;
    margin: 0 auto;
    padding: 64px 10px 80px;
}
.sns_box{
	margin-bottom: 30px;
}
.sns_thumb{
	justify-content: space-around;
    margin: 0 auto;
    max-width: 200px;
	display:flex;
}
/*.sns_embed{
	display:flex;
	margin:0 auto;
	max-width:1000px;
}
.instagram{
	width:500px;
}*/

/*.timeline-TweetList{
    display: flex;
}
.timeline-TweetList-tweet{
	width:33.333%;
}*/
.timeline-Widget {
  padding: 20px;
  background-size: auto auto;
  background-color: #3c3c3c;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, #323232 10px, #323232 20px)
}
.timeline-TweetList-tweet {
  color: #fff
}
.SandboxRoot.env-bp-660 .timeline-Header-byline, .SandboxRoot.env-bp-660 .timeline-Header-subtitle, .SandboxRoot.env-bp-820 .timeline-Header-byline, .SandboxRoot.env-bp-820 .timeline-Header-subtitle, .SandboxRoot.env-bp-970 .timeline-Header-byline, .SandboxRoot.env-bp-970 .timeline-Header-subtitle {
  color: #fff !important
}
.timeline-Header-title {
  color: #fff !important;
  font-size: 20px !important
}
.timeline-Header-title a {
  color: #fff !important
}
.timeline-Tweet {
  transition: background-color .3s;
  /*width:33.333%;*/
}
.timeline-Tweet:hover {
  background-color: rgba(0, 0, 0, .2)
}
.TwitterCard-container--clickable:hover {
  background-color: rgba(0, 0, 0, .2)
}

/* PageTopBtn */
.pagetop{
    display: none;
    position: fixed;
    right: 15px;
    bottom: 80px;
    z-index: 5;
}
.pagetop a{
    display: block;
    font-size: 0;
    width: 50px;
    height: 50px;
    text-align: center;
    background-color:#fff;
    border-radius: 50%;
    line-height: 50px;
    box-shadow: 0px 0px 9px -6px rgba(0,0,0,0.6);
	transition: .3s;
}
.pagetop a:hover{
    background-color:#028BFD;
}
.pagetop a i{
    font-size: 2rem;
    color:#333333;
    line-height: 50px;
}
.pagetop a:hover .fas.fa-chevron-up{
    color:#fff;
}
	/*-----------------------
	map
	-------------------------*/
.cont_search_map {
    width: 100%;
    min-height: 590px;
    padding-bottom: 23px;
}
.contents .cont_event_view-outer{
	border:none;
}
/*.map_inner{
	max-width: 1024px;
    margin: 0 auto;
    padding: 48px 64px 64px;
}*/


@media screen and (min-width: 640px){
/*	.contents .cont_search_map {
    float: none;
    width: 100%;
    min-height: 250px;
}*/
	
	/*-----------------------
	header
	-------------------------*/
	h1{
  font-size: 4rem;
 /* line-height: 1.3;*/
  }
	.header_logo {
    width: 130px;
    left: 8px;
	background: none;
  }
	  .header_bg{
		background-image: url(/assets/img/special/enjoy_yorimichi/header_bg__pc.jpg);
    }

	/*-----------------------
	section
	-------------------------*/
	.section_ttl{
		font-size: 4.5rem;
		text-align: center;
	}

	/*-----------------------
	about
	-------------------------*/
	.about{
		min-width: 600px;
	}
	   .about_title{
	font-size:2.2rem;
	pading:5px 0;
    }
    .about_txt{
        font-size:1.8rem;
    }
	.about img{
	width: 100%;
}
	/*-----------------------
	btn
	-------------------------*/
	.absolute{
	position:absolute;
    left: 10%;
    bottom: -10.5%;   
	width:80%;
}

.relative{
	position:relative;
}
.btn_wrapper_2{
	justify-content: flex-start;
}
	.btn_2{
	width:53%;
}
/*.btn_3{
	width:40%;
}*/
.btn_4{
	width:87%;
}
.btn_4:last-child {
    margin-bottom: 20px;
}
.btn_1, .btn_4 {
    margin-bottom: 0;
}
	
	/*-----------------------
	special_contents
	-------------------------*/
	.info_box{
		margin:0 auto;
	}
    .info_list{
        display:flex;
		padding-top:50px;
    }
	   .info_list_s{
        display:flex;
		padding-top:30px;
		padding-bottom:10px;
    }

    .info_list:nth-child(even){
        flex-direction: row-reverse;
    }
	    .info_txt{
		margin-top:15px;
    }
	/*-----------------------
	info_limited
	-------------------------*/
	.info_txt_s{
	margin-left:30px;
}
	.info_thumb_s img{
		width:100%;
		margin:0;
		max-width:250px;
	}

	/*-----------------------
	btn
	-------------------------*/
	.btn4{
		margin-bottom:50px;
	}
	.btn_4:last-child{	
	margin-bottom:0;
}

	/*-----------------------
	event_campaign
	-------------------------*/
	h2{
	margin-bottom: 24px;
    }

	.event_campaign{
	background-image: url(/assets/img/special/enjoy_yorimichi/event_campaign_bg__pc.jpg);
         background-repeat:no-repeat;
		background-size:contain;
}
	.event_campaign_txt{
          margin-top:0;
      }
.item_box{
    display: flex;
}
    .item_list{
    width: 32%;
    max-width: 800px;
    margin-right: 2%;
    }

	.item_list:nth-child(even){
	margin-right:2%;
}
		.item_list:nth-of-type(3n){
	margin-right:0;
}

.thumb_box{
	display:flex;
	flex-wrap: wrap;
}
.thumb_list{
	width: 32%;
    margin-right: 2%;
	margin-bottom:0;
}
	.thumb_list:nth-child(even) {
     margin-right: 2%; 
}
    .thumb_list:nth-child(3n) {
     margin-right: 0; 
}
	.thumb_list:nth-of-type(4),.thumb_list:nth-of-type(5){
		padding-top:20px;
	}
	/*-----------------------
	other
	-------------------------*/	
.other_box{
	display:flex;
	padding-top:40px;
	padding-bottom:0;
}
	.other_txt{
    margin-top:4%;
}
	.other_ttl{
		padding-top:0;
	}
	}


@media screen and (min-width: 960px){
	/*-----------------------
	common
	-------------------------*/
    .br_sp{
        display: none;
}
    .br_pc{
        display: block;
    }
	h1{
		font-size:5rem;
	}

	/*-----------------------
	header
	-------------------------*/
	.header_bg{
		padding-top:64px;
	}
	/*-----------------------
	navigation
	-------------------------*/
    .nav_logo {
        position: static;
		width:400px;
/*		width: 600px;
*/        z-index: 11;
		margin: auto 0;
    }
    .btn_nav {
		display: none;
	}

	.navigation__pc {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 86px;
		background-color: rgba(255,255,255,0.8);
		z-index: 11;
	}
	.nav_wrapper__pc{
		display: flex;
		justify-content: space-between;
		max-width: 1140px;
		margin: 0 auto;
		padding: 0 20px;
	}
    .nav_menu__wrapper__pc{
		display: flex;
        flex-direction: inherit;
        position: static;
		top: 0;
		right: 40px;
		width: auto;
		height: auto;
        background-color: transparent;
    }

	.nav_menu__pc {
		display: flex;
		flex-direction: inherit;
		margin: 0 auto;
    }
	.nav_menu__pc > li{
		display: inline-block;
		position: relative;
		padding: 10.5px 20px 10.5px 0;
		cursor: pointer;
	}

	.nav_menutitle__pc img{
		display: block;
		margin: auto;
        width:40.5px;
		height: auto;
	}
	.nav_menutitle__pc2 img{
		display: block;
		margin: auto;
		width:42.5px;
		height: auto;
		margin-top: 5px;
	}
.nav_menu__pc > li:nth-of-type(2){
	padding: 10.5px 30px 10.5px 0;
}
	.nav_menutitle__pc span{
		font-size: 1.4rem;
/*		font-weight: bold;
*/		font-family: 'Lato', sans-serif;
		font-weight:700;
	}

	.nav_menu__pc > li > ul{
		display: none;
	}
	.nav_menu__pc > li:hover ul{
		display: block;
		position: absolute;
		padding: 0;
		margin: 0;
		top: 96px;
		left: 0;
		list-style-type: none;
		background-color: #fff;
		box-shadow: 0 1px 8px rgb(0 0 0 / 5%);
	}
	.nav_menu__child__pc li{
		font-size: 1.5rem;
		padding: 10px 8px;
		border-top: 1px solid #d9d9d9;
		transition: .3s;
	}
	.nav_menu__child__pc li a{
		display: block;
		width: 100%;
	}
	.nav_menu__child__pc li:hover{
		background-color: #c3c3c3;
	}
	/*-----------------------
	info_limited
	-------------------------*/
	.info_title{
		padding-top:5px;
	}
	/*-----------------------
	btn
	-------------------------*/
	.btn_3{
	width:40%;	
	}
    /*-----------------------
	about
	-------------------------*/
	.about_title{
	font-size:2.5rem;
	white-space: nowrap;
	}
	.about_txt{
		font-size:2rem;
		white-space: nowrap;
	}

	/*-----------------------
	event_campaign
	-------------------------*/	
	.thumb_list{
	width: 18.4%;
}
	.thumb_list:nth-child(3n) {
     margin-right: 2%; 
}
    .thumb_list:last-child{
		margin-right:0;
}
		.thumb_list:nth-of-type(4),.thumb_list:nth-of-type(5){
		padding-top:0;
	}
	/*-----------------------
	other
	-------------------------*/	
		.other_txt{
    margin-top:6%;
}
}
