@charset "utf-8";
/* CSS Document */
html {
  background-color: #fff;
}
body {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ",
    Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  /*
	font-family:"Roboto Slab" , Garamond , "Times New Roman" , "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
	*/
  margin-top: 0;
}
img {
  width: 100%;
}
header,
section {
  width: 100%;
}
section {
  padding-bottom: 0px;
}
#sphead {
  position: fixed;
  z-index: 100;
  margin-top: -0.5%;
}

.pc {
  display: none;
}

.sp {
  display: block;
}

main {
  max-width: 100%;
  margin: 0 0;
  background-color: #fff;
  position: relative;
}

main h1 {
  margin-top: 0px;
}

.alink {
  display: flex;

  justify-content: space-around;
}
.alink li img {
  width: 93%;
  margin: 6% 3.5% 0%;
}
#Bt_Fixd {
  background: rgba(255, 255, 255, 0.8);
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 5px 2% 8px;
  box-sizing: border-box;
  z-index: 101;
}
#Bt_Fixd .txt img {
  width: 92%;
  margin: 0% 4%;
}
#Bt_Fixd ul {
  display: flex;
  justify-content: space-around;
}
#Bt_Fixd ul li {
  margin-left: 0%;
}
#Bt_Fixd p {
  text-align: center;
  color: #fff;
  font-size: 11px;
  margin-top: 5px;
}
#Bt_Fixd a {
  display: block;
}

#Bt {
  background: rgba(255, 255, 255, 0.6);
  bottom: 0;
  width: 96%;
  padding: 2% 2% 0;
  box-sizing: border-box;
  z-index: 101;
}
#Bt .txt img {
  width: 92%;
  margin: 0% 4%;
}
#Bt ul {
  display: flex;
  justify-content: space-around;
}
#Bt ul li {
  width: 0;
}
#Bt p {
  text-align: center;
  color: #fff;
  font-size: 11px;
  margin-top: 5px;
}
#Bt a {
  display: block;
}

/*******ボタン*********/
.btn-cv1 {
  overflow: hidden;
  position: relative;
  /*background: url(../img/pc/btn_bg_1.png?) repeat-x;
	background-size: 2.8%;*/
}
.btn-cv1 a {
  display: block;
}
.btn-cv2 {
  overflow: hidden;
  position: relative;
  /*background: url(../img/pc/btn_bg_1.png?) repeat-x;
	background-size: 2.8%;*/
}
.btn-cv2 a {
  display: block;
}
.btn-cv1:hover {
}
.btn-cv a {
  border-radius: 18px;
  border: solid #fff 3px;
  display: block;
  padding: 16px 40px;
  position: relative;
  text-align: center;
  text-decoration: none;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  vertical-align: middle;
}
.btn-cv1 a img {
  vertical-align: middle;
}
.btn-cv1 a:after {
  content: " " !important;
}
.cv_btn {
  top: 0;
  margin: auto;
  left: 0;
}
.btn-cv1 .pc {
  display: block;
}
.btn-cv1 .sp {
  display: none;
}
/* ボタンの光沢 */
.is-reflection a {
  overflow: hidden;
}
.is-reflection a:after {
  -moz-animation: is-reflection 2s ease-in-out infinite;
  -moz-transform: rotate(45deg);
  -ms-animation: is-reflection 2s ease-in-out infinite;
  -ms-transform: rotate(45deg);
  -o-animation: is-reflection 2s ease-in-out infinite;
  -o-transform: rotate(45deg);
  -webkit-animation: is-reflection 2s ease-in-out infinite;
  -webkit-transform: rotate(45deg);
  animation: is-reflection 4s ease-in-out infinite;
  background-color: #fff;
  content: " ";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: -180px;
  transform: rotate(45deg);
  width: 30px;
}
/* アニメーションを遅延させる */
.is-reflection + .is-reflection a:after {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
@keyframes is-reflection {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
@-webkit-keyframes is-reflection {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
@-webkit-keyframes is-trembling {
  0% {
    -webkit-transform: translate(-3px, 0);
  }
  100% {
    -webkit-transform: translate(0, 0);
  }
}
/* 点滅 */
.blinking {
  -webkit-animation: blink 0.8s ease-in-out infinite alternate;
  -moz-animation: blink 0.8s ease-in-out infinite alternate;
  animation: blink 0.8s ease-in-out infinite alternate;
}
@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/**/

/**************************/

.foot {
  background-image: url("../img/lp_14_sp.jpg");
  background-repeat: no-repeat;
  background-size: 100%;
  height: auto;
  padding-top: 130%;
  position: relative;
}

.sect1 {
  width: 100%;
  margin: 0 auto;
}

.sect {
  width: 100%;
  margin: 0 auto;
}

.top {
}

.top a {
  background-color: #f39800;
  color: #fff;
  ont-size: 4vw;
  border: 2px solid #f39800;
  border-radius: 10px;
  padding: 5px 20px;
  transition: 0.6s;
  background-clip: padding-box;
}
.top a:hover {
  background-color: #fff;
  color: #f39800;
  border: 2px solid #f39800;
  transition: 0.6s;
  background-clip: padding-box;
}

.map {
  /*background-image: url("../img/map_bg_sp.png");*/
  background-color: #fff6de;
  background-repeat: no-repeat;
  background-size: 100%;

  padding-top: 100%;
  position: relative;
  padding-bottom: 17%;
}

.map iframe {
  position: absolute;
  top: 3%;
  left: 10%;
  width: 80%;
  padding-top: 0;
  height: 330px;
  margin: 0 auto;
  margin-bottom: 4%;
}

.map2 {
  background-image: url("../img/map_bg_sp.png");
  background-repeat: no-repeat;
  background-size: 100%;

  padding-top: 90%;
  position: relative;
}

.map2 iframe {
  position: absolute;
  top: 3%;
  left: 10%;
  width: 80%;
  padding-top: 0;
  height: 330px;
  margin: 0 auto;
  margin-bottom: 4%;
}

.offer {
  background-image: url("../img/offer_bg_sp.png");
  background-repeat: no-repeat;
  background-size: 100%;
  height: auto;
  padding-top: 150%;
  position: relative;
}

.offer img {
  position: absolute;
  top: 70%;
  width: 85%;
  margin: 0 7%;
}

.offer2 {
  background-image: url("../img/offer2_bg_sp.png");
  background-repeat: no-repeat;
  background-size: 100%;
  height: auto;
  padding-top: 200%;
  position: relative;
}

.offer2 img {
  position: absolute;
  top: 80%;
  width: 85%;
  margin: 0 7%;
}

.copy {
  width: 80%;
  margin: 10% auto 30%;
}

.me {
  width: 80%;
  margin: 0.5% 10% 1%;
}

/******** ▼▼▼▼▼▼*********/
