/* Variables */
/* Fonts */
::marker {
	color:white;
}

.img-brightness {
	-ms-filter: brightness(110%);
	filter: brightness(110%);
}
.img-brightness105 {
	-ms-filter: brightness(105%);
	filter: brightness(105%);
}
.img-brightness120 {
	-ms-filter: brightness(120%);
	filter: brightness(120%);
}
.img-brightness80 {
	-ms-filter: brightness(80%);
	filter: brightness(80%);
}


/*雪のエフェクト*/
.snow {
  /*雪の色*/
  color: rgba(134,172,241,1.00);
  /*雪の大きさ*/
  font-size: 12.5px;
  /*初期位置*/
  position: fixed;
  top: -5%;
  /*雪を適当な幅で降らせる*/
  text-shadow:
  5vw   -100px 2px,
  10vw  -400px 3px,
  20vw  -500px 4px,
  30vw  -580px 1px,
  39vw  -250px 2px,
  42vw  -340px 5px,
  56vw  -150px 2px,
  63vw  -180px 0,
  78vw  -220px 4px,
  86vw  -320px 9px,
  94vw  -170px 7px;
  /*雪アニメーション1*/
  animation: roll 8s linear infinite;
}
  /*2つめの雪アニメーション*/
.snow2nd{animation: anim 13s linear infinite;}

@keyframes roll {
    0% {transform:rotate(0deg);}
   90% {opacity:1;}
   100% {transform:rotate(20deg);top:100%;opacity:0;}
}
@keyframes anim {  100% {color:transparent;top:150%;}
}

/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    width: 96%;
    max-width: 900px;
    margin:0 auto;
}

.accordion-area li{
    margin: 10px 0;
}

.accordion-area section {
	border: 1px solid #ccc;
}

/*アコーディオンタイトル*/
.title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: normal;
	text-align: center;
    padding: 3% 3% 3% 50px;
    transition: all .5s ease;
	border-bottom: solid 1px rgba(0,0,0,1);
	background-color: lavender;		
}
@media screen and (max-width: 600px) {
	.title {
		font-size: 1.1rem;
		padding: 3% 3% 3% 30px;
	}
}

/*アイコンの＋と×*/
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #333;
    
}
.title::before{
    top:48%;
    left: 15px;
    transform: rotate(0deg);
    
}
.title::after{    
    top:48%;
    left: 15px;
    transform: rotate(90deg);

}

/*　closeというクラスがついたら形状変化　*/

.title.close::before{
	transform: rotate(45deg);
}

.title.close::after{
	transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box1 {
    display: none;/*はじめは非表示*/
    background: #f3f3f3;;
}
.text-bold {
	font-weight: bold;
}