@charset "UTF-8";
/* --------------------------------
	style_pc.css
--------------------------------
FAQページ用のcssです。
-------------------------------- */

.Contents01 {
	margin-top: 33px;
}
#faq_top {
	height: 110px;
	width: 100%;
	text-align: center;
}
#faq_top h1 {
	background: url(/special/event/006/images/mosaic.jpg);
	background-position: left top;
	background-size: auto;
	padding: 23px 0px;
	box-sizing: border-box;
	font-size: 24px;
	color: #4d4d4d;
	font-weight: bold;
	margin: 0;
}

#faq_top p {
	width: 100%;
	text-align: center;
	padding: 5px 0px;
	box-sizing: border-box;
	font-size: 13px;
	color: #4d4d4d;
	margin: 0;
	font-weight: bold;
}

#FAQ_contents {
	margin: 0px auto;
	box-sizing: border-box;
	font-size: 16px;
	line-height: 1;
	color: #4d4d4d;
	font-family: 'Montserrat', sans-serif;
	padding: 0 40px;
}

@media (max-width: 960px) {
#FAQ_contents {
	padding: 0 20px;
}	
}

.s_inner {
	max-width: 960px;
	margin: 0px auto;
	padding: 0px 0 40px;
	box-sizing: border-box;
	overflow: hidden;
	width: 100%;
}

/*アコーディオン全体*/
.menu {
  width: 100%;
  padding: 10px 0px 20px;
box-sizing: border-box;
}
.menu input {
  display: none; /*チェックボックスを隠す*/
}
/*バー部分*/
.menu label {
  cursor :pointer;
  display: block;
  text-decoration: none;
  color: #fff;
  line-height: 1;
  position: relative;
  margin: 0 0 10px;
  padding: 20px 20px 20px 50px;
 background: #333 url(../images/icon_q.png) no-repeat;
	 background-position: left 5px  center;
}
/*開いたときに表示される部分*/
.menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 1px;
}
.menu li {
  height: 0;
  overflow-y: hidden;
  transition: padding-bottom 0.5s, padding-top 0.5s; /*閉じるときのアニメーション*/
  -webkit-transition: padding-bottom 0.5s, padding-top 0.5s;
  -moz-transition: padding-bottom 0.5s, padding-top 0.5s;
  -ms-transition: padding-bottom 0.5s, padding-top 0.5s;
  -o-transition: padding-bottom 0.5s, padding-top 0.5s;
}
#menu_bar01:checked ~ #links01 li,
#menu_bar02:checked ~ #links02 li,
#menu_bar03:checked ~ #links03 li,
#menu_bar04:checked ~ #links04 li,
#menu_bar05:checked ~ #links05 li,
#menu_bar06:checked ~ #links06 li,
#menu_bar07:checked ~ #links07 li,
#menu_bar08:checked ~ #links08 li,
#menu_bar09:checked ~ #links09 li,
#menu_bar10:checked ~ #links10 li,
#menu_bar11:checked ~ #links11 li,
#menu_bar12:checked ~ #links12 li,
#menu_bar13:checked ~ #links13 li,
#menu_bar14:checked ~ #links14 li,
#menu_bar15:checked ~ #links15 li,
#menu_bar16:checked ~ #links16 li,
#menu_bar17:checked ~ #links17 li,
#menu_bar18:checked ~ #links18 li{
  height: auto; /*開いたときに表示されるliの高さ*/
  opacity: 1;
	background: #f1f1f1 url(../images/icon_a.png) no-repeat;
	 background-position: left 5px top 10px;
   padding: 20px 20px 20px 50px;
	line-height: 1.8;
}
 /*開いたときの下の余白*/
#menu_bar01:checked ~ #links01 li:last-child,
#menu_bar02:checked ~ #links02 li:last-child,
#menu_bar03:checked ~ #links03 li:last-child,
#menu_bar04:checked ~ #links04 li:last-child,
#menu_bar05:checked ~ #links05 li:last-child,
#menu_bar06:checked ~ #links06 li:last-child,
#menu_bar07:checked ~ #links07 li:last-child,
#menu_bar08:checked ~ #links08 li:last-child,
#menu_bar09:checked ~ #links09 li:last-child,
#menu_bar10:checked ~ #links10 li:last-child,
#menu_bar11:checked ~ #links11 li:last-child,
#menu_bar12:checked ~ #links12 li:last-child,
#menu_bar13:checked ~ #links13 li:last-child,
#menu_bar14:checked ~ #links14 li:last-child,
#menu_bar15:checked ~ #links15 li:last-child,
#menu_bar16:checked ~ #links16 li:last-child,
#menu_bar17:checked ~ #links17 li:last-child,
#menu_bar18:checked ~ #links18 li:last-child {
  margin-bottom: 20px;
}
/*閉じた状態の矢印描画*/
.menu label:after{
  content:"";
  display:block;
  width:8px;
  height:8px;
  border-top: #fff 2px solid;
  border-right: #fff 2px solid;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  position:absolute;
  right: 2%;
  top: 0;
  bottom: 15%;
  margin: auto;
}
/*開いた状態の矢印描画*/
.menu input[type=checkbox]:checked + label:after{
  content:"";
  display:block;
  width:8px;
  height:8px;
  border-top: #fff 2px solid;
  border-right: #fff 2px solid;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position:absolute;
  right: 2%;
  top: 7%;
  bottom: 0;
  margin: auto;
}

.menu li li{
  background: none!important;
	padding: 0!important;
	margin: 0!important;
}

.menu li li:before{
 content: "・";
}

.menu li a{
  text-decoration: underline;
}

.menu li a:hover{
  text-decoration: none;
}

