@charset "utf-8";
/* ===================================================================
CSS information
 file name  : freepagefull08
 author     : honyaclub.com
 date       : 2022/02/14
 update     : 
 about      : freepagefull08
=================================================================== */

/* ==============================================
      共通
============================================== */
body {
  font-family: メイリオ, meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino kaku Gothic Pto", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  word-break: break-all;
  background-color: #eee;
  text-align: center;
}
a, a img {
  color: #0085cd;
  border: none;
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}
a[target="_blank"] {
  background: url(../../img/campaign/mitsubachi/another_window.png) no-repeat right 10px center;
  padding-right:24px;
}
a.none[target="_blank"] {
	background: none;
	padding-right: 0;
}
a.disabled {
	pointer-events: none;
}
img {
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}
ul li {
  list-style-type: none;
}
div::after, ul::after {
  clear: both;
  height: 0;
}
* {
  box-sizing: border-box;
}

/*-----　wrapper背景　-----*/
#wrapper {
  position: relative;
  width: 100%;
  color: #333;
  background-color: #f9ed9b;
  overflow-x: hidden;
}

/*----- アニメーション -----*/
/*----- move_arrow -----*/
a.move_arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  transition: opacity .3s ease;
	padding-top: 5px;
}
a.move_arrow::after {
	content: "";
	display: block;
	width: 20px;
	height: 11px;
	background: url(../../img/campaign/common/ico_arrow_gy.png) no-repeat center;
	background-size: contain;
}
a.move_arrow:hover::after {
  animation: move_arrow 1.5s 1 ease-out;
}
@keyframes move_arrow{
  0% {transform: translateY(0)}
	30% {transform: translateY(0.5em)}
	60% {transform: translateY(0)}
}

/* 
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
*/

/*----- return to top -----*/
#page-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 9999;
}
#page-top a {
  z-index: 9999;
  padding: 0 5px 10px 5px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  font-size: 12px;
  line-height: 1.1;
  width: 60px;
  height: 60px;
  border-radius: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#page-top a::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fefefe;
  border-left: 2px solid #fefefe;
  position: absolute;
  top: 30%;
  left: 53%;
  transform: translate(-70%, -50%)rotate(45deg);
}
#page-top a:hover {
  text-decoration: none;
  opacity: 0.7;
}
/*----- floating banner -----*/
.floating_banner_wrap {
  display: block;/*最初は隠す*/
    width: auto;
    height: 45px;
    position: fixed;
    bottom: 235px;
    right: 10px;
    z-index: 10;
}
.floating_banner_wrap a img {
  width: 180px;
	height: auto;
}
@media screen and (max-width:750px) {
	/*----- return to top -----*/
#page-top {
  position: fixed;
  bottom: 110px;
  right: 10px;
  z-index: 9999;

}
.point{
  padding: 50px 0% 0% 0%!important;
}
/*----- floating banner -----*/
.floating_banner_wrap a img {
  display: none;
}
.floating_banner_wrap {
  display: block;/*最初は隠す*/
    width: 100%;
    height: auto;
    position: fixed;
    bottom: 0px;
    right: 0px;
    z-index: 10;
}
 .floating_banner_wrap span.floating_banner_btn {
  padding: 15px 25px;
  background: #FF5F04!important;
  box-shadow: 4px 10px 25px rgba(255, 95, 4, 0.3);
  border-radius: 0px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  color: #fff;
position: absolute;
bottom: 0;
right: 0;
width: 100%;
height: 60px
}
  }
  
/* ==============================================
      【SP】 共通
============================================== */

/*-----　headerナビゲーション　-----*/
#header_container {
  width: 100%;
  background-color: #fff;
  position: fixed;
  height: 50px;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
  width: 95%;
  z-index: 1000;
  padding: 0;
}
.logo,
.sns {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}
.logo {
  text-align: left;
}
.logo img {
  width: auto;
  height: 35px;
  z-index: 1000;
}
.sns ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.sns ul li {
  margin-left: 8px;
}

/*-----　contents内容　-----*/
#contents {
  padding-top: 35px;
  margin: 0 auto;
}
.section {
  padding: 3%;
}


#main_visual img{
  width: 100%;
}
/*
#main h1,
#main p.main_visual {
  animation: fadeIn 6s ease 0s 1 normal;
  -webkit-animation: fadeIn 6s ease 0s 1 normal;
}
*/
.section h2 {
  font-size: 22px;
  font-weight: bold;
  color: #c6141d;
  margin: 0 auto 10px;
  text-align: center;
  border-bottom: solid 2px #c6141d;
	padding: 5px 0;
}
.section h3 {
  /* font-size: 16px; */
  font-weight: bold;
  margin: 0 auto;
	padding: 5px 0;
}
.section h4 {
  font-size: 15px;
  font-weight: bold;
}
.inner_section {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 10px;
}
.note {
  font-size: 12px;
  text-indent: -1em;
  padding-left: 1em;
}
.note_mark {
  font-size: 12px;
}

/*-----　.section#main　-----*/
.section#main h1 {
  margin: 10px 0;
  font-size: 24px;
  font-weight: bold;
} 

/*-----　.section#contents_navi　-----*/
.section#contents_navi ul.navi_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.section#contents_navi ul.navi_list li {
  width: 48%;
  margin-bottom: 5px;
  background-color: #f7f5ed;
	padding: 5px;
}
.section#contents_navi ul.navi_list li a {
  /* background-color: #f6f5e1; */
  background-color: #f7f5ed;
  color: #c6141d;
  font-size: 16px;
  font-weight: bold;
  height: 60px;
	border: solid 2px #ffffff;
}
.section#contents_navi ul.navi_list li a.move_arrow::after {
  position: absolute;
	top: 60%; 
}

/*-----　.section#present　-----*/
.section#present h2 {
  width: 80%;
}
.section#present .inner_present {
  background-color: #fff;
  border: solid 2px #c6141d;
  border-radius: 5px;
  padding: 3%;
  margin-bottom: 10px;
}
.section#present .inner_present h3 {
  background-color: #c6141d;
  color: #ffffff;
  width: 80%;
}
.section#present .inner_present h4 {
  color: #c6141d;
  font-size: 15px;
  font-weight: bold;
  margin: 10px auto;
}
.section#present .inner_present p {
  font-weight: bold;
  margin-bottom: 10px;
}
.section#present .inner_present p.num {
  border-radius: 15px;
  font-size: 18px;
  background-color: #f7ee12;
  width: 40%;
  margin: 10px auto;
	padding: 5px 0;
}

/*-----　.section#apply　-----*/
.section#apply .period p {
  margin-bottom: 10px;
}
.section#apply .method {
  font-weight: bold;
  margin-bottom: 50px;
  /* background-color: #dddddd; */
	background-color: #ffffff;
  border-radius: 15px;
  padding: 20px 0;
}
.section#apply .method:last-child {
  margin-bottom: 10px;
}
.section#apply .method h2 {
  width: 80%;
  color: #ffffff !important;
  background-color: #c6141d;
  margin: 0 auto;
	border-bottom: 0 !important;
}
/*　横スクロール　*/
.section#apply .method .scroll_box {
  margin: 0 auto;
  padding: 5% 0;
  width: 90%;
  display: -ms-flexbox;
  display: flex; 
  white-space: nowrap;  /* 横スクロールの指定 */
  overflow-x: scroll;  /* 横スクロールの指定 */
  overflow-scrolling: touch;  /* スクロールを滑らかにする */ /* スクロールバーカスタム時は無効にする */
  -webkit-overflow-scrolling: touch;  /* スクロールを滑らかにする */ /* スクロールバーカスタム時は無効にする */
}
.section#apply .method .scroll_box li {
  background-color: #ffffff;
  border-radius: 15px;
  /* box-shadow: 2px 4px 12px rgb(0 0 0 / 8%); */
  box-shadow: 2px 4px 12px rgb(0 0 0 / 20%);
  /* border-right: solid 1px #777777; */
  padding: 0 8%;
  margin: 0 2%;
	min-width: 80%;
}

/* スクロールバーカスタム */
/*スクロールバー全体の高さ*/ 
.section#apply .method .scroll_box::-webkit-scrollbar {
  height: 6px;
}
/*スクロールバー全体の背景*/
.section#apply .method .scroll_box::-webkit-scrollbar-track {
  margin: 0 2px; 
  background: #d8cfc5; 
  border-radius: 5px;
}
/*スクロールバーの動く部分*/
.section#apply .method .scroll_box::-webkit-scrollbar-thumb {
  border-radius: 5px; 
  background: #83684c;
}
/*スクロールバーの動く部分のホバー（マウスオーバー）*/
/* .section#apply .method .scroll_box::-webkit-scrollbar-thumb:hover {
  background: #999;
} */
 /* 
.section#apply .method ul {
 display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 10%;  
} 
.section#apply .method ul li {
  padding: 5% 0;
  border-bottom: solid 1px #777777;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;  
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.section#apply .method ul li:last-child {
  border-bottom: none;
}
*/
/*
.section#apply .method .txt_scroll {
  text-align: right;
  font-size: 10px;
  margin-right: 5px;
}
*/
.section#apply .method dl.step {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;	
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.section#apply .method dd.ico img {
  width: 50%;
}
.section#apply .method dl.step dt {
  font-size: 18px;
  color: #c6141d;
	margin-top: 15px;
}
.section#apply .method dl.step dd {
  margin: 15px 0;
}
.section#apply .method .caution {
  width: 90%;
  margin: 0 auto;
}
.section#apply .method .caution h3 {
  color: #c6141d;
	font-size: 16px;
	background-color: #faeaea;
	margin-bottom: 10px;
}
.section#apply .method .caution.receipt.photographing_method {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 3%;
  font-size: 14px;
}
.section#apply .method .caution.receipt.photographing_method .inner_receipt {
	margin-bottom: 20px;
}
.section#apply .method .caution li {
  font-weight: normal;
  text-align: left;
  text-indent: -1em;
  margin-left: 1em;
  margin-bottom: 10px;
}
.section#apply .method .caution li::before {
  content: '\0025cf';
}
.section#apply .method .caution.receipt.photographing_method .container_collayout {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.section#apply .method .caution.receipt.photographing_method .inner_collayout.col3 {
	width: 33%;
}
.section#apply .method .caution_link {
	margin-top: 20px;
}

/*-----　.section#present_original　-----*/


/*-----　.section#event　-----*/
.section#event .inner_event {
  position: relative;
}
.section#event .inner_event .inner_collayout {
  position: relative;
}
.section#event .inner_event p.bnr {
	margin: 20px 0 0;
}
.section#event .inner_event p {
  margin: 10px;
}
.section#event .inner_event p.date {
  background-color: #dddddd;
  color: #ffffff;
  font-weight: bold;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 20px;
  left: 30px;
	z-index: 10;
	font-size: 14px;
}

/*-----　.section#fair　-----*/
.section#fair .inner_fair p {
  margin: 10px 0;
}

/*-----　.section#products　-----*/
.section#products .inner_products p {
  margin: 10px;
}

/*-----　.btn_container .btn　-----*/
.btn_container {
  margin: 20px auto ;
  width: 90%;
	padding-bottom: 10px;
}
.btn_container:last-child {
	padding-bottom: 0;
}
.btn_container.type_line {
	background-color: #ffffff;
	border-radius: 15px;
	padding: 20px;
}
.btn_container .btn {
  position: relative;
}

/* .btn_container .btn::before {
  display: block;
	position: absolute;
	width: 10px;
	height: 10px;
	margin-top: -5px;
	content: "";
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 50%;
	right: 20px;
} 
.btn_container .btn::after {
  display: block;
	position: absolute;
	width: 10px;
	height: 10px;
	margin-top: -5px;
	content: "";
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 50%;
	right: 25px;
}
.btn_container .btn.typeA::before {
 	background-color: #ffffff;
}
btn_container .btn.typeA::after {
  background-color: #ba9f25;
}
.btn_container .btn.typeB::before {
 	background-color: #ba9f25;
}
.btn_container .btn.typeB::after {
  background-color: #ffffff;
} */
.btn_container .btn a {
  display: block;
	padding: 10px;
	font-size: 18px;
	font-weight: bold;
	text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s 0s ease;
}
.btn_container .btn a:hover {
  opacity: 1;  
  transform: translateY(3px);
}
.btn_container .btn.typeA a {
  color: #fff;
  /* background-color: #6ba8eb; */
  /* background-color:#ba9f25;
  box-shadow: 0 6px 0 #6e5e14, 0 0 0 rgba(0,0,0,0.2); */
	background-color: #ff6b09;
	box-shadow: 0 6px 0 #b95d00, 0 0 0 rgba(0,0,0,0.2);
}
.btn_container .btn.typeB a {
  color:#ba9f25;
  background-color:#ffffff;
  box-shadow: 0 6px 0 #6e5e14, 0 0 0 rgba(0,0,0,0.2);
  border:3px #ba9f25 solid;
  padding: 20px 0;
}
.btn_container .btn a span {
  font-size: 14px;
  font-weight: normal;
}

/*-----　.section#detail　-----*/
.section#detail .inner_detail {
  font-size: 13px;
  text-align: left;
  padding: 5% 3%;
}
.section#detail .inner_detail dt {
  color: #c6141d;
  font-size: 16px;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 5px;
}
.section#detail .inner_detail dd {
  margin-bottom: 10px;
  line-height: 1.4;
}
.section#detail .inner_detail dd span {
  font-weight: bold;
}
.section#detail .inner_detail dd p {
  margin-bottom: 10px;
}
.section#detail .faq dl.question {
  border-bottom: 1px dotted #999999;
}
.section#detail .faq dl.question dt{
  font-size: 13px;
  color: inherit;
  margin-top: 10px !important;
  margin-bottom: 10px;
  text-indent: -1em;
  padding-left: 1em;
}
.section#detail .faq dl.question dd {
  text-indent: -1em;
  padding-left: 1em;
}
.section#detail .faq dl.question dt::before,
.section#detail .faq dl.question dd::before {
  margin-right: .5em;
}
.section#detail .faq dl.question dt::before {
  content:"Q";
  color: #c6141d;
}
.section#detail .faq dl.question dd::before {
  content:"A";
  color: #0085C8;
}
.section#detail dl.caution dt {
  font-size: 13px;
  background-color: #faeaea;
  padding: 5px 10px;
  margin-top: 10px;
}
.section#detail dl.caution dd li {
  text-indent: -1em;
  margin-left: 1em;
  margin-bottom: 10px;
}

/*----- footer -----*/
#footer {
  padding: 1em 0 10em;
  background-color: #eee;
  font-size: 10px;
}

/*----- 終了時のおしらせ -----*/
.info_end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 9998;
  background-color: rgba(55, 55, 55, 0.2);
}
.info_end p {
  /* font-size: 2em;*/
  font-size: 22px;
  font-weight: bold;
  color: #ffffff;
  margin: auto;
  background-color: rgba(55, 55, 55, 0.9);
  padding: 20px 0;
  border-radius: 20px;
  width: 90%;
  position: absolute; /*IE*/
  top: 50%; /*IE*/
  left: 50%; /*IE*/
  -ms-transform: translate(-50%,-50%); /*IE*/
  -webkit-transform : translate(-50%,-50%); /*IE*/
  transform : translate(-50%,-50%); /*IE*/
}
.info_end p span {
  font-size: 14px;
}

/*----- 表示/非表示 -----*/
.pc_display {
  display: none !important;
}
.sp_display {
  display: block !important;
  margin: 0 auto;
}

/* ==============================================
      【SP】 freepage カスタム
============================================== */

/*============  fes2022winter  ============*/
#fes2022winter {
	background-color: #deeef8;
}
#fes2022winter .section h2 {
	color: #ec6601;
	border-bottom: solid 2px #ec6601; 
}
#fes2022winter .section#contents_navi ul.navi_list li {
	background-color: #feea94;
}
#fes2022winter .section#contents_navi ul.navi_list li a {
	background-color: #feea94;
	color: #ec6601;
}
#fes2022winter .section#apply .method.line {
	background-color: #07B53B;
}
#fes2022winter .section#apply .method.web {
	background-color: #77aeee;
}
#fes2022winter .section#apply .method h2 {
	background-color: #ec6601;
}
#fes2022winter .section#apply .method.line .inner_method ul.scroll_box li {
	min-height: 300px;
}
#fes2022winter .section#apply .method.line .inner_method ul.scroll_box li dd.ico {
	margin: 0 !important;
}
#fes2022winter .section#apply .method dd.ico img {
  width: 100%;
}
#fes2022winter .section#apply .method dl.step dt {
	color: #ec6601;
}
#fes2022winter .section#apply .method .caution h3 {
	color: #ec6601;
}
#fes2022winter .section#apply .method .caution_link a {
	color: #ffffff;
}
#fes2022winter .section#present_original h4 {
	background-color: #ffefd7;
	color: #ec6601;
	margin: 10px auto;
}
#fes2022winter .section#present_original p.officialsite {
	margin: 20px 0;
}
#fes2022winter .section#event .inner_event p img {
	width: 300px;
	height: auto;
}
#fes2022winter .section#fair .fair_note {
	font-size: 14px;
	padding: 0 5px;
}
#fes2022winter .section#fair .fair_note p:last-child {
	margin: 0;
}
#fes2022winter .section#detail .inner_detail dt {
	color: #ec6601;
}



/* ==============================================
      【TAB】 共通
============================================== */
@media screen and (min-width:751px){
.sp_display {
display: none !important;
}
.pc_display {
display:block !important;
}

}



/* ==============================================
      【PC】 共通
============================================== */

@media screen and (min-width:751px) {
  /*----- wrapper背景 -----*/
  #wrapper {
    /*min-width: 960px;*/
  }
  
  /*----- header固定のナビゲーション----- */
  #header_container {
    height: 55px;
  }
  #head_inner {
    width: 100%;
    padding: 0 1.5%;
  }
  .logo,
  .sns {
    -ms-flex-preferred-size: 48%;
    flex-basis: 48%;
  }
  .logo img {
    width: 160px;
    height: auto;
  }
  .sns ul li {
    margin: 0;
    padding-left: 1rem;
  }
  
  /*----- contents内容 -----*/
  #contents {
    padding-top: 35px;
    max-width: 1000px;
  }
  .section{
    width: inherit;
    position: relative;
  }
	.inner_section {
		padding: 10px 20px;
	}
  
 /*-----　.section#contents_navi　-----*/ 
	.section#contents_navi ul.navi_list {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
	}
  .section#contents_navi ul.navi_list li {
    width: 24%;
  }
  .section#contents_navi ul.navi_list li a {
		font-size: 18px;
	} 
	
  /*-----　.section#present　-----*/
  .section#present p {
    margin: 0 10px 0;
  }
  .section#present .container_collayout {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .section#present .container_collayout:last-child {
    margin-bottom: 0;
  }
  .section#present .inner_present {
    padding: 1%;
  }
  
  /*-----　.section#apply　-----*/
  .section#apply .method {
    margin: 0 !important;
  }
  .section#apply .method h2 {
  width: 60%;
}
  .section#apply .method.line {
    margin-bottom: 60px !important;
  }
  .section#apply .method .container_collayout {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  /*横スクロール*/
  /* 画面幅が751px以上の場合、横スクロールを解除 */
  .section#apply .method .scroll_box {
    overflow-x: inherit;
    padding: 20px 10px 0;
    white-space: inherit;
  } 
  .section#apply .method .scroll_box li {
    border-bottom: none;
    padding: 10px !important;
    margin:  0 1% !important;
    min-width: 25%;
    min-height: 300px;
  }
	.section#apply .method.web .scroll_box li {
		min-height: 190px;
	}
  .section#apply .method .caution.receipt.photographing_method .inner_receipt:last-child {
	margin-bottom: 0;
}

  /*-----　.section#event　-----*/
  .section#event .inner_event p.date {
    left: -20px;
  }
  
  /*-----　.btn_container .btn　-----*/
  .btn_container {
    width: 60% !important;
	}
  
  /*-----　.section#detail　-----*/
  .section#detail .inner_detail {
    padding: 10px 20px;
  }
  .point{
  padding: 55px 0% 0% 0%!important;
}
  /*----- footer -----*/
  #footer_container {
    font-size: 12px;
    background-color: #eee;
  }
  #footer {
    width: 960px;
    margin: 0 auto;
    padding: 30px 0 120px;
    background-color: #eee;
  }
  
/*----- collayout -----*/
 .container_collayout.pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;   
    -ms-flex-pack: distribute!important;
    justify-content: space-around!important;
  }
  .col1 {width: 100%!important;}
  .col2 {width: 49%!important;}
  .col3 {width: 33%!important;}
  .col4 {width: 24%!important;}
  .col5 {width: 19%!important;}
  
/*----- 終了時のおしらせ -----*/
  .info_end p {
    width: 50%;
  }

  /*----- 表示/非表示 -----*/
  .sp_display {
    display: none !important;
  }
  .pc_display {
    display: block !important;
  }
  
/* ==============================================
      【PC】 freepage カスタム
============================================== */
/*============  fes2022winter  ============*/
 #fes2022winter .section#event .container_collayout.pc {
	 -ms-flex-wrap: wrap;
		flex-wrap: wrap;
	 -webkit-box-pack: justify !important;
		-ms-flex-pack: justify !important;
		justify-content: space-between !important;
	}
	#fes2022winter .section#event .inner_event p img {
	width: 400px;
	height: auto;
}

	
/*============  cp_XXX  ============*/

  
  
}



/* ==============================================
      共通
============================================== */
/*----- margin-top//variation -----*/
.mt05 { margin-top: 5px;}
.mt10 { margin-top: 10px;}
.mt15 { margin-top: 15px;}
.mt20 { margin-top: 20px;}
.mt25 { margin-top: 25px;}
.mt30 { margin-top: 30px;}
.mt010 { margin-top: -10px;}
.mt020 { margin-top: -20px;}
.mt025 { margin-top: -25px;}
.mt030 { margin-top: -30px;}

/*----- margin-right//variation -----*/
.mr05 { margin-right: 5px;}
.mr10 { margin-right: 10px;}
.mr15 { margin-right: 15px;}
.mr20 { margin-right: 20px;}
.mr25 { margin-right: 25px;}
.mr30 { margin-right: 30px;}

/*----- margin-bottom//variation -----*/
.mb05 { margin-bottom: 5px;}
.mb10 { margin-bottom: 10px;}
.mb15 { margin-bottom: 15px;}
.mb20 { margin-bottom: 20px;}
.mb25 { margin-bottom: 25px;}
.mb30 { margin-bottom: 30px;}

/*----- margin-bottom//variation -----*/
.ml05 { margin-left: 5px;}
.ml10 { margin-left: 10px;}
.ml15 { margin-left: 15px;}
.ml20 { margin-left: 20px;}
.ml25 { margin-left: 25px;}
.ml30 { margin-left: 30px;}

/*----- text//variation -----*/
.text-center { text-align: center;}
.text-left { text-align: left;}
.text-right { text-align: right;}
.bold { font-weight: bold;}
/* .red { color: #FF0000;} */
.red { color: #c6141d;}
.cap { font-size: 85%;}