@charset 'UTF-8';





/* ================================================================================

	サイトスタイル

================================================================================ */

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	
}

/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	/*モーダル用*/

/* お気軽に〜 */
.text1{
	font-size: 5vw;
font-weight: bold;
text-align: center;
background: #fac114;
padding: 6vw;
margin: 0;
}

/* 各種ボタン */
ul.text2{
	font-size: 0;
	text-align: center;
	padding: 0;
	margin-top: 6vw;
}

ul.text2 li{
	font-size: 5vw;
	list-style-type: none;
	vertical-align: top;
	display: inline-block;
	margin: 1vw 2vw;
	overflow: hidden;
	position: relative;
}
ul.text2 li:before {
	position: absolute;
top: 6.7vw;
right: -24vw;
width: 45vw;
height: 45vw;
content: '';
-webkit-transform: rotate(137deg);
transform: rotate(137deg);
background: #000;
z-index: 1;
}
ul.text2 li:after {
	position: absolute;
content: "";
top: 2.6vw;
right: 6vw;
width: 7vw;
height: 7vw;
background: url(button_icon.png) no-repeat center top / auto 100%;
z-index: 2;
}
ul.text2 li a {
  position: relative;
  background-color: #fac114;
  display: block;
  width: 78vw;
  color: #000000;
  text-decoration: none;
  padding: 2vw 14vw;
}



/* 電話 */
.text3{
	text-align: center;
	font-size: 7vw;
	font-weight: bold;
}
.text3 a{
	color:#fac114;
	padding-bottom: 3vw;
}
.text3 span{
	color:#000000;
	font-size: 4vw;
} 


/* 動きの設定 */
.js-modal__btn{
    position: fixed;
    bottom: 0;
	width: 100%;
	text-align: center;
	background: #fac114;
	border-top: 1px solid #fff;
  z-index: 3;
}
.js-modal__bg {
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: none;
}
.js-modal__main {
  width: calc(100%);
  height: 77%;
  /* padding: 16px; */
padding: 0 ;
  bottom: -81%;
  left: 0;
  background: #fff;
  border-radius:4px 4px 0 0 ;
  position: fixed;
  z-index: 11;
  opacity: 0;
}
.js-modal__btn {
    color:#76952f;
  cursor: pointer;
  -webkit-tap-highlight-color:rgba(0,0,0,0);
}
.js-modal__btn--close {
    margin-top: 40px;
    text-align: center;
    text-decoration: underline;
}
.js-modal__btn--close--fix {
  width: 30px;
  height: 30px;
  //background: #333;
  border-radius: 50%;
  position: absolute;
  top: -50px;
  right: 5px;
  z-index: 101;
  cursor:pointer;
  -webkit-tap-highlight-color:rgba(0,0,0,0);
}
.js-modal__btn--close--fix:before{
  content:"";
  width: 20px;
  height: 20px;
  border-right:3px solid #fff;
  transform: rotate(-45deg);
  position: absolute;
  top: 10px;
  left:-3px;
}
.js-modal__btn--close--fix:after{
  content:"";
  width: 20px;
  height: 20px;
  border-right:3px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top:-2px;
  left:-3px;
}
/*下から上*/
@keyframes SlideUp {
  0% {
    opacity: 0;
    transform: translateY(-1%);
  }
  100% {
    opacity: 1;
    transform: translateY(-80%);
  }
}
/*上から下*/
@keyframes SlideDown {
  0% {
    opacity: 1;
    transform: translateY(-80%);
  }
  100% {
    opacity: 0;
    transform: translateY(-1%);
  }
}
.js-modal__main._slideUp {
animation: SlideUp .5s ease-in-out forwards;
}
.js-modal__main._slideDown {
animation: SlideDown .5s ease-in-out forwards;
}

}

