@charset "utf-8";

body{
  margin: 0px;
  padding: 0px;
}
.title {
  height: 200px; 
  background-image: url(../images/rose.jpg);  
  background-repeat: no-repeat;
  background-position: 50% 42%; 
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-shadow: 1px 1px 10px #4b2c14;
}

.title h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: bold;
}

.title p {
  font-size: 14px;
  margin-top: 15px;
}

.main h2 {
  font-size: 22px;
  font-weight: bold;
  line-height: 30px;
}
.main h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background-color: #000000;
  margin-top: 20px;
}
.map {
  width: 930px;
  max-width: 90%;
  margin-top: 75px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
.map iframe {
  display: block;
  width: 100%;
  height: 200px;   
  margin-top: 25px;
}

.contact {
  text-align: center;
  width: 930px;
  max-width: 90%;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
}

.form-area {
  background-color: #f8f8f8;
  border: 1px solid #aaaaaa;
  margin-top: 25px;
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
}

.form-area dt {
  width: 200px;
  padding: 15px 0;
  font-size: 15px;
  font-weight: bold;
  line-height: 24px;
}

.form-area dt .required::after {
  content: '必須';
  font-size: 11px;
  color: #eb4f32;
  margin-left: 10px;
}

.form-area dd {
  width: calc(100% - 200px);
  padding: 15px 0;
}

.input-text {
  background-color: #ffffff;
  width: 100%;
  border: 1px solid #909090;     
  max-width: 280px;
  height: 40px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius:5px;
}

.message {
  background-color: #ffffff;
  width: 100%;
  height: 260px;
  border: 1px solid #909090;  
  padding: 10px;
  line-height: 1.5;
  border-radius:5px;
}

.confirm-text {
  font-size: 14px;
  line-height: 22px;
  margin-top: 30px;
}

.submit-button{
  background-color:#66FFFF;
  display: inline-block;
  min-width: 100px;
  line-height: 48px;
  border-radius:24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  text-align: center;
  margin-top: 20px;
  cursor: pointer;
  border: none;
}
.submit-button:hover{
  background-color: #66CCFF;
}


.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
  0% {
   transform: translate3d(-90px,0,0);
  }
  100% { 
    transform: translate3d(85px,0,0);
  }
}


.footer{
  margin-top: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  
}
svg.waves{
  padding-bottom: 0px;
  border: 0px;
  vertical-align: bottom;
}
.copyright{
  background-color: #bbfadb;
}
/***追従するトップへ戻るボタン***/
#page-top {
    position: fixed;
    right: 5px;
    bottom: 20px;
    height: 50px;
    text-decoration: none;
    font-weight: bold;
    transform: rotate(90deg);
    font-size: 90%;
    line-height: 1.5rem;
    color: #737373;
    padding: 0 0 0 35px;
    border-top: solid 1px;
}
#page-top::before {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: 0px;
    width: 15px;
    border-top: solid 1px;
    transform: rotate(35deg);
    transform-origin: left top;
}
/***トップへ戻るボタンここまで***/



@media (max-width:800px){
  .map,
  .contact{
    width: 500px;
    margin-top: 45px;
  }
  .form-area dt,
  .form-area dd{
    width: 100%;
  }
  .form-area dt{
    padding-bottom: 0;
  }
  .submit-button{
    width: 100%;
  }
.copyright{
  margin-top: 0px;
}


}