@charset "utf-8";


/* アクセス */
.access {
  padding-top: 150px;
  padding-bottom: 180px;
}

.access h1 {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}

.access h1::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background-color: #000000;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.map {
  width: 930px;
  max-width: 90%;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
}

.map p {
  font-size: 18px;
  text-align: center;
  color:#645057;
}

.map iframe {
  display: block;
  width: 100%;
  height: 320px;
  margin-top: 25px;
}

.contact {
  margin-top: 75px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact p {
  font-size: 18px;
  color:#645057;
  margin-bottom: 50px;
}

.contact img {
  margin-left: 10px;
  margin-right: 10px;
  height: 50px;
  width: auto;
  border-radius: 7px;
}

/* インスタアイコン */
.insta_btn{/*ボタンの下地*/
  color: #FFF;/*文字・アイコン色*/
  border-radius: 7px;/*角丸に*/
  position: relative;
  display: inline-block;
  height: 50px;/*高さ*/
  width: 170px;/*幅*/
  text-align: center;/*中身を中央寄せ*/
  font-size: 20px;/*文字のサイズ*/
  line-height: 53px;/*高さと合わせる*/
  background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;/*グラデーション①*/
  overflow: hidden;/*はみ出た部分を隠す*/
  text-decoration:none;/*下線は消す*/
}

.insta_btn:before{/*グラデーション②*/
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;/*全体を覆う*/
  height: 100%;/*全体を覆う*/
  background: -webkit-linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
  background: linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
}

.insta_btn .fa-instagram{/*アイコン*/
  font-size: 35px;/*アイコンサイズ*/
  position: relative;
  top: 4px;/*アイコン位置の微調整*/
}

.insta_btn span {/*テキスト*/
  display:inline-block;
  position: relative;
  transition: .5s
}
/* ホバーで一周回転
.insta_btn:hover span{/*ホバーで一周回転*/
  /* -webkit-transform: rotateX(360deg);
  -ms-transform: rotateX(360deg);
  transform: rotateX(360deg);
} */ 


@media (max-width: 800px) {
  .access {
    padding-top: 60px;
    padding-bottom: 0px;
  }

}
