/************************************/
/*お問合わせ*/
/************************************/
#contactDiv {
    margin: 0 auto 0;
    text-align: center;  
    width: 100%;
}

/*お問合わせタイトル*/
.contactTitle {
    font-size: 60px;
    width: 100%;
    color:#FFF;
    display:inline-block;
    margin-top: 90px;
    margin-bottom: -10px;
    font-family: 'RockSalt';
}
/*お問合わせ　丸*/
.maru {
    width: 300px;
    height: 300px;
    background-color: #FFF;
    margin: -10px auto 0;
    border-radius: 200px;
    position: relative;
}

/*矢印*/
.toButton {
    width: 152px;
    height: 152px;
    cursor: pointer;
    position: absolute;
    top: 60px;
    left: 74px;
}
/*矢印 棒*/
.toButton span {
  position: absolute;
  right: 65px;
  top: 26px;
  width: 20px;
  height: 80px;
  border-radius: 10px;
  background-color: #004d61;
  animation: toButton-anime 1s alternate infinite;
}

/*矢印 三角屋根左*/
.toButton span::after {
  position: absolute;
  right: 0px;
  top: 50px;
  content: "";
  width: 49px;
  height: 20px;
  border-radius: 10px;
  background-color: #5bd1d7;
  transform: rotate(45deg);      
}

/*矢印 三角屋根右*/
.toButton span::before {
  position: absolute;
  right: -27px;
  top: 53px;
  content: "";
  width: 53px;
  height: 20px;
  border-radius: 10px;
  background-color: #ff502f;
  transform: rotate(-44deg);
  z-index: 99;
}
    
@keyframes toButton-anime {
    0% {
        transform: none;
    }
    100% {
        transform: translateY(-18px);
    }
}

/*Twitter メッセージボタン*/
.toMessage {
    display: block;
    width: 200px;
    height: 52px;
/*    background-color: dodgerblue;*/
    border-radius: 6px;
    background-image: url('../images/messageButton_en.svg');
    background-repeat: no-repeat;
    position: absolute; 
    top: 190px;
    left: 50px;
    z-index: 99;
}
.toMessage:hover {
    opacity: 0.5 !important;
}
/*注意書き*/
.note {
    margin-top: 20px;
    color: #FFF;
    font-size: 10px;
}
/************************************/
/*フッターをオーバーライド*/
/************************************/
#footerDiv {
    margin-top: 500px;
    width: 100%;
    height: 200px;
    background-color: #500404;
    color: #FFF;
    text-align: center;
}

