@charset "UTF-8";

/*style.css*/

html{
    font-family: sans-serif;
}

html *{
       box-sizing: border-box;
}

/* PCの場合 */
@media screen and (min-width:798px) {
    main {
    width:1000px;
    margin:auto;
    }

    .cat{
        height: 619px;
        background:url(../images/formback.jpg);
        background-size: cover;
        padding-top: 300px;
    }

/* アドレス入力欄自体 */
.asumeruform .inputtext.inputtextlong {
	width: 91%;
	max-width: 100%;
    height: 100px;
}

.asumeruform .formbtn {
    margin-left:0px;
	font-size: 16px;
	width:91%;
    max-width: 100%;
}


    }

/* スマホの場合 */
    @media screen and (max-width:797px) {

        .cat{
            height: 256px;
            background:url(../images/formback.jpg);
            background-size: cover;
            padding-top: 120px;
        }
    /* アドレス入力欄自体 */
.asumeruform .inputtext.inputtextlong {
	width: 91%;
	max-width: 100%;
    height: 50px;
}

.asumeruform .formbtn {
    margin-left:0px;
	font-size: 16px;
	width:91%;
    max-width: 100%;
}


        }

/* スマホSEの場合 */
@media screen and (max-width:700px) {

    .cat{
        height: 232px;
        background:url(../images/formback.jpg);
        background-size: cover;
        padding-top: 90px;
    }
/* アドレス入力欄自体 */
.asumeruform .inputtext.inputtextlong {
	width: 91%;
	max-width: 100%;
    height: 50px;
}

.asumeruform .formbtn {
    margin-left:0px;
	font-size: 16px;
	width:91%;
    max-width: 100%;
}


    }



.btn{
    text-decoration: none!important;
}

img{
    border: none;
    width: 100%;
}



body{
    margin: 0;
    padding: 0;
}


<!--フォームのCSSここから-->

.asumeruform{

	width: 98%;
    max-width:98%;
}



.center-text{
	text-align: center;
}


input#touroku_mail {
font-size:1.1rem;
text-align:center;
}


/* 申込みボタンマウスオーバー色薄くなるアクション */

.asumeruform .formbtn{
    margin: 0 auto;
    overflow: hidden;
    width: 90%;
    max-width:90%;
  }
.asumeruform .formbtn{
    width: 100%;
    cursor: pointer;
    transition-duration: 0.3s;
  }
.asumeruform .formbtn:hover{
    opacity: 0.6;
    transition-duration: 0.3s;
  }
  
  /* 申込みボタンマウスオーバー色薄くなるアクション ここまで ↑*/


/* 申込みボタン動くアクション */

.asumeruform .formbtn {
    animation-name:anime01; /* 動きの名前anime */
    animation-duration:1s; /* 動く時間 */
    animation-iteration-count:infinite; /* 動く回数 */
    }
    @keyframes anime01 {
    0% {transform:scale(1);}
    50% {transform:scale(1.1);}
    0% {transform:scale(1);}
    }
    
    /* 申込みボタン動くアクションここまで↑ */





<!--フォームのCSSここまで-->


  


/* service一覧 */
.servicebox{
    display: flex;
    width: 1200px;
    text-align: center;
    margin: 0 auto;
    justify-content: space-between;
}
.servicemenu1{
    width: 290px;
}
.servicemenu2{
    width: 290px;
}
.servicemenu3{
    width: 290px;
}
.servicettl{
    text-align: center;
}

/* MOREボタン */
.btn{
    display: block;
    border: 1px solid #fff;
    border-radius: 2px;
    background: #000;
    color: #fff;
    text-align: center;
    position: relative;
    width: 270px;
    padding: 20px 20px 17px;
    margin: 0 auto;
}

.btn .yajirushi{
    position: absolute;
    bottom: 15px;
    right: 50px;
    z-index: 10;
    transition: all .3s ease;
}
.btn:hover .yajirushi{
    transition: all .3s ease;
    right: -30px;
}
.btn:hover{
    background: #fff;
    color: #000;
    border: 1px solid #000;
    transition: all .3s ease;
}

.service{
    padding: 50px 0 50px;
    margin-top: 40px;
    background-color: #F5F5F5;
}
.service .servicetitle{
    margin-bottom: 60px;
}

/* フッター */
.footer{
    background-color: dimgray;
    text-align: center;
}
