@charset "utf-8";


html {
  font-size: 100%;
  width: 100%;
}

body {
  font-family: '小塚ゴシック Pro' , "YuGothic" ,"Yu Gothic Medium", "游ゴシック Medium", "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
  font-size: 20px;
  margin: 0 auto;
  color: #333;
  color: #333333;
  width: 750px;
  max-width: 100%;
  line-height: 1.5;
  box-sizing: border-box;
}

* {
  box-sizing: border-box;
}
a {
  text-decoration: none;
  display: block;
  color: #333;
}

p {
  margin-top: 0px;
  margin-bottom: 0px;
}

div img {
  vertical-align: top;
}

.center {
  text-align: center!important;
}


.box2{
  position: relative;
}

.btn1 {
  position: absolute;
  width: 100%;
  margin: 0 auto;
  top: 70%;
  left: 0;
  right:0;
}

.box34 {
  position: relative;
}

.btn2 {
  position: absolute;
  width: 100%;
  margin: 0 auto;
  top: 67%;
  left: 0;
  right:0;
}


/* 地図 */

iframe{
  display: block;
  margin: 0 auto;
  max-width: 100%;
  margin-top:1em;
  margin-bottom:1em;
}

/* ボタン動き */

.move {
  animation-name: btn_move;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 1.5s;
}

@keyframes btn_move {
  0% {
      transform: translate(0,0px);
  }

  100% {
      transform: translate(0,-15px)
  }
}


/* フッター */


footer {
  background-color: #ffa9b0;
  margin: 0 auto;
  margin-top: 20px;
  text-align: center;
  line-height: 3;
}

footer p {
  margin-top: 0;
  margin-bottom: 0;
  color: #67656a;
  font-size: 14px;
}

/* 追従ボタン */

.fixed {
  position: fixed;
  width: 100%;
  bottom: 0;
  right: 0;
  text-align: right;
}

.fixed .btn_fix {
  display: inline-block;
  width: 100%;
}

.btn_fix img{
  max-width:425px;
}



@media print, screen and (min-width: 768px){
body .fixed {
    bottom: 15px;
    right: 15px;
}
}



/* レスポンシブデザイン */
@media screen and (max-width: 768px) {

 
  .content {
    max-width: 100%;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  .btn1 {
    width: 92%;
  }

  .btn2 {
    width: 92%;
  }

  footer {
    max-width: 100%;
    font-size: 0.4rem;

  }


iframe{
  display: block;
  margin: 0 auto;
  width:85%;
  height:300px;
}

  .btn_fix img{
    width:100%;
  }
  

.copy p {
  font-size: 0.7rem;
}
}

