@charset "UTF-8";
/*==========================================
リセットCSS
===========================================*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}
html {
  line-height: 1.5;
}
body, button, input, select, textarea {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
ol, ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}
q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}
a {
  color: #0000cc;
  text-decoration: none;
}
a img {
  border: none;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
img, video {
  max-width: 100%;
  display: inline-block;
  height: auto;
  width: auto;
  vertical-align: bottom;
}
html {
  font-size: 24px;
  font-size: 1.33333rem;
  -webkit-font-smoothing: antialiased;
}
/*==========================================
共通CSS
===========================================*/
#wrap {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}
#main-wrapp{
	max-width: 750px;
    margin: auto;
    /*box-shadow: 0 6px 20px grey;*/
    margin-bottom: 20px;
}
@media screen and (max-width:480px) {
  #main-wrapp{
  	max-width: 100%;
      margin: auto;
      /*box-shadow: 0 6px 20px grey;*/
      margin-bottom: 10px;
  }
}
main {
  max-width: 1000px;
  margin: 0 auto;
}
.img-box {
   text-align:center;
}

/*青背景 LINEで今すぐ予約するボタン*/
.offer_blue01{
	position: relative;
    background: #6dbfc6;
    width: 100%;
    height: auto;
}
.offer_blue01 .button01{
	position: absolute;
    top: 14%;
    left: 0;
	right: 0;
	margin: auto;
    padding-bottom: 10%;
    width: 90%;
}
.offer_blue01::after{
	display: block;
    content: '';
    width: 100%;
    height: 0;
    padding-top: 43%;
}

/*白背景 LINEで今すぐ予約するボタン*/
.offer_white01{
	position: relative;
    background: #fff;
    width: 100%;
    height: auto;
}
.offer_white01 .button01{
	position: absolute;
    top: 14%;
    left: 0;
	right: 0;
	margin: auto;
    padding-bottom: 10%;
    width: 90%;
}
.offer_white01::after{
	display: block;
    content: '';
    width: 100%;
    height: 0;
    padding-top: 43%;
}

/*LINEで今すぐ予約するボタン 拡大縮小アニメーション*/
@keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(0) scale(1);

  }
  50% {
    transform: translateY(0) scale(1.1);
  }
}

/* このクラスをつけると回転を無限に繰り返します */
.anime-fuwafuwa {
  animation: 3s fuwafuwa infinite ease-in-out;
}

/* アニメーションには関係ない見た目のスタイル */
