/* メイン画像 */
.content{
  width: 90%;
  margin: 0px auto;
  padding-top: 90px;
}
  
.content_img{
  background-image: url(../img/Slide002.png);
  background-size: cover;
  background-position: bottom;
  position: relative;
  background-attachment: fixed;
  width: 100%;
  height: 60vh;
  margin: auto auto 30px auto;
}

@media only screen and (max-width:900px) {
  .content{
    width: 100%;
    padding-top: 60px;
    }
  .content_img{
    height: 40vh;
    margin: auto auto 15px auto;
    background-attachment:local;
  }
}

.content_title {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 200%;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  width: 350px;
  height: 70px;
  line-height: 70px;
     
  padding: 0.2rem;
  margin-bottom: 0.2rem;
  font-weight: bold;
  text-align: center; 
}


/* アニメーション */

.headline {
  -webkit-transition: 0.8s ease-in-out;
  -moz-transition: 0.8s ease-in-out;
  -o-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  transform: translateX(0px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}
.headline.on {
  opacity: 1.0;
  filter: alpha(opacity=100);
  -moz-opacity: 1.0;
  transform: translateX(0);
}

/* スライド2 */
.cards {
  display: flex;
  justify-content: center;
  padding: 15px;
}

.card {
  width:100%;
  height: auto;
  overflow: visible;

  overflow: hidden;
}

.card:nth-child(2) {
  margin-right: 10px;
  margin-left: 10px;
}

.picture img {
  width: 100%;
  height: auto;

  display: block;
	transition: 0.5s;
}
.card img:hover {
	transform: scale(1.1, 1.1);
}

.text{
  padding: 30px;
}
.text_main{
  font-size: 28px;
  text-align: center;
  font-weight: bold;
}

@media only screen and (max-width:900px) {
  .cards {
  padding: 0px;
  margin-bottom: 8px;  
  }
  .card:nth-child(2) {
  margin-right: 5px;
  margin-left: 5px;
  }
  .text{
  padding: 20px;
  }
  .text_main{
    font-size: 22px;
  
  }
}

/* 見出し */

.headline{
  width: 100%;
  padding: 60px;
}

.headline_main{
  margin: auto auto 40px auto;
  font-size: 200%;
  
  padding: 0.2rem;
  margin-bottom: 0.2rem;
  font-weight: bold;
  text-align: center;  
}  

.headline span {
  background: linear-gradient(transparent 60%, #f4f5b2 60%);
}
  
.headline_sub{
  font-size: 22px;
  margin-top: 40px;
  text-align: center;
  line-height: 70px;
}
  
@media only screen and (max-width:900px) {
  .headline_main{
    font-size: 180%;
  }
  .headline_sub{ 
    text-align: left;
    font-size: 18px;
    line-height: 30px;
    }
  .headline{
    padding: 30px;
  }
}

/* お問い合わせ */

.contact{
  margin-bottom: 5rem;
  text-align: center;
}
.contact_item{
  display:inline-block
}
.contact_item:hover {
  transform: scale(.9, .9);
}
.contact a{
  width: auto;
  height: auto;
}

