/***************
*     ALL      *
***************/
body {
    overflow-x: hidden;
}

.header,
.main,
.footer
{
    margin: 0 auto;
    width: 1200px;
}

.header {
    padding-bottom: 30px;
}

.footer {
    font-size: 12px;
    margin-top: 20px;
    margin-bottom: 5px;
    text-align: center;
}

/***************
*    HEADER    *
***************/
.header {
    box-sizing: border-box;
    display: flex;
    padding: 10px;
}

.logo_01 > img {
    display: block;
    width: 50%;
}

.logo_02 > img {
    display: block;
    margin-left: auto;
    width: 40%;
}

.logo_02 > p {
    font-size: 19px;
    font-weight: bold;
    margin: 10px 0 0 auto;
    text-align: center;
    width: 40%;
}

/***************
*     FORM     *
***************/
.form {
    display: flex;
    font-weight: bold;
}

.form-innerWrap {
    display: flex;
}

.form-innerWrap input {
    height: 30px;
    margin-top: 5px;
    width: 200px;
}

.form-name {
    margin-top: 10px;
}

.form-mail {
    margin-top: 10px;
}

.form-mail input {
    height: 20px;
    margin-top: 5px;
    width: 400px;
}

select{
border:1px;
}

select{
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
 
select::-ms-expand{
display: none;
}

.button {
    margin-left: 50px;
    margin-top: 60px;
    text-align: center;
}

.button button {
    border: 1px solid black;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    height: 40px;
    line-height: 30px;
    padding: 0 10px;
    width: 80px;
}

.button button:focus {
    outline: 0;
}

.button-lang_ja {
    background-color: red;
    color: white;
}

.button-lang_en {
    background-color: yellow;
}

.button-submit {
    background-color: deepskyblue;
    color: white;
    display: inline-block;
    margin-top: 30px;
}

.button-submit:disabled {
    background-color: #cccccc;
    border: 0;
    cursor: default;
}

/***************
*     CARD     *
***************/
.cardArea {
    max-width: 100%;
}

.getarea,
.postarea {
    border-radius: 10px;
    position: relative;
}

.getarea {
    background: #c2ffc2;
    margin-top: 50px;
}

.postarea {
    background: #ffc08c;
    margin-top: 10px;
}

.canvas {
    max-width: 100%;
    margin-top: 10px;
}

.html2canvas {
    overflow-y: hidden;
}

.card {
    cursor: pointer;
    display: block;
    position: absolute;
}

.cardAnimation {
    transition: .5s;
    transform: scale(1.6,1.6) rotate(10deg);
}
