.menu{
    background-color: #fff450;
    color: #505afe;
}

#main-content p{
    font-size: 1.6em;
}

#main-content form{
    width: 80%;
    margin: 0 auto;
}

input::placeholder{
    font-size: 1.2em;
}

.crient-data{
    line-height: 3.0;
}

.crient-data label{
    width: 30%;
    font-size: 1.4em;
    text-decoration: underline;
    text-decoration-color: pink;
    text-decoration-thickness: 5px;
}

.crient-data input{
    font-size: 1.3em;
}

.crient-data #address,#email{
    width: auto;
}

#comment{
    display: flex;
    flex-direction: column;
}

#comment label{
    font-size: 1.4em;
    text-decoration: underline;
    text-decoration-color: pink;
    text-decoration-thickness: 5px;
}

#comment textarea{
    height: 100px;
    font-size: 1.3em;
}

#notice{
    width: 70%;
    margin: 0 auto;
    font-size: 1.2em;
}

#button{
    width: 60%;
    margin: 0 auto;
}

.submit-button {
    display: inline-block; /* ボタンをインライン要素として配置 */
    padding: 12px 24px; /* ボタンのpadding（上下左右） */
    font-size: 18px; /* フォントサイズ */
    font-weight: 700; /* フォントの太さ */
    color: #fff; /* 文字色 */
    background-color: #49596b; /* 背景色 */
    border: none; /* 枠線を消す */
    border-radius: 5px; /* 角を丸くする */
    cursor: pointer; /* マウスカーソルを指の形にする */
    transition: background-color 0.3s ease; /* 背景色の変化を滑らかにする */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* 影をつける */
  }
  
  .submit-button:hover {
    background-color: #0056b3; /* ホバー時の背景色 */
  }
  
  .submit-button:active {
    background-color: #004085; /* クリック時の背景色 */
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2); /* クリック時に影を小さくする */
    transform: translateY(1px); /* クリック時に少し下げる */
  }



.btn{
    width:95%;
    height:80px;
    line-height:80px;
}

.btn a{
    display:block;
    width:100%;
    height:80%;
    text-decoration: none;
    background:linear-gradient(to bottom, rgb(247, 91, 164), rgb(247, 152, 242));
    text-align:center;
    color:#FFFFFF;
    font-size:30px;
    font-weight:bold;
    border-radius:10px;
    -webkit-border-radius:10px;
    -moz-border-radius:10px;
    box-shadow:5px 5px 0px 0px #DEDEDE ;
    text-shadow:0px 0px 0px #FFFFFF ;
}
.btn a:hover{
    background:#FFB2E1;
    color:#FFFC00;
    margin-left:5px;
    margin-top:5px;
    box-shadow:none;
}

/* スマホ用スタイル */
@media (max-width: 1050px) {

    .crient-data label{
        width: auto;
    }

    .crient-data input{
        width: auto;
    }

    #main-content form{
        width: 100%;
    }

    #main-content p{
        font-size: 1.0em;
    }

    #notice{
        width: 100%;
    }
}