@charset "UTF-8";
/*--------------------------
	Base
--------------------------*/
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/*----------------------------------------------------

	リセットCSS調整ファイルです。
	リセットCSSを調整、カスタマイズしたい場合に編集します。

----------------------------------------------------*/
/* ====================================================

	EXAMPLES FONT-SIZE
	------------------
	 77% = 9px
	 85% = 10px
	 93% = 11px
	100% = 12px
	108% = 13px
	116% = 14px
	124% = 15px
	131% = 16px
	139% = 17px
	147% = 18px
	154% = 19px
	162% = 20px
	170% = 21px
	177% = 22px
	185% = 23px
	193% = 24px
	200% = 25px
	---------------

====================================================*/
html {
  font-size: 62.5%;
}
@media screen and (max-width: 1024px) {
  html {
    font-size: 52.5%;
  }
}

body {
  *font-size: small;
  *font: x-small;
  _font-size: 14px;
}

ul,
li {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  word-break: break-all;
}

img {
  vertical-align: middle;
}

* {
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: inherit;
}

/*----------------------------------------------------

	サイトの基本設定のファイルです。
	最初の設定以外、基本変更することはありません。

----------------------------------------------------*/
/*--------------------------
	フォントの設定
--------------------------*/
/*--------------------------
	カラーの設定
--------------------------*/
/*--------------------------
	レイアウトの設定
--------------------------*/
/*--------------------------
	グリッドのガター
--------------------------*/
/*--------------------------
	レスポンシブの設定
--------------------------*/
/*--------------------------
  アニメーションの設定
--------------------------*/
/*----------------------------------------------------

	Mixinをまとめたファイルです。
	基本的に変更することはありません。
	Mixinを追加したい場合、_mixin_●●.scssという
	別ファイルを生成し、追加してください。

----------------------------------------------------*/
/*--------------------------
	レスポンシブ関連
--------------------------*/
/*----------------------------------------------------

	自作関数をまとめたファイルです。
	基本的に変更することはありません。
	自作関数を追加したい場合、_functions_●●.scssという
	別ファイルを生成し、追加してください。

----------------------------------------------------*/
html {
  font-size: 10px;
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 0.83333vw; /* 10px / 1200px * 100 */
  }
}
@media screen and (max-width: 700px) {
  html {
    font-size: 2.85714286vw; /* 10px / 350px * 100 */
  }
}

body {
  background: #fff;
  color: #333;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.8;
}
@media screen and (max-width: 700px) {
  body {
    font-size: 1.4rem;
  }
}

.wrap {
  overflow: hidden;
  position: relative;
}

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

sup {
  font-size: 50%;
  vertical-align: super;
}

/*--------------------------
	Layout
--------------------------*/
/*----------------------------------------------------

	レイアウト設定のファイルです。
	レイアウトに関する汎用性の高いスタイルをまとめています。
	基本的には編集することはありません。

	命名規則として、クラス名の頭に 
	l-* (Layoutのl)という接頭辞をつけることを推奨します。

----------------------------------------------------*/
.l-section {
  margin: 8rem 0;
}
@media screen and (max-width: 700px) {
  .l-section {
    margin: 4rem 0;
  }
}

.l-inner {
  margin: 0 auto;
  width: 700px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 700px) {
  .l-inner {
    padding: 0;
    width: 100%;
  }
}

.l-flex {
  display: flex;
}
.l-flex--aic {
  align-items: center;
}

.l-pos-relative {
  position: relative;
}

.l-pos-center {
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}

.l-clearfix:after {
  clear: both;
  content: "";
  display: block;
}

.l-left {
  float: left;
}

.l-right {
  float: right;
}

/*--------------------------
	page
--------------------------*/
main {
  background: #f8fadb;
}

.img-btn {
  position: relative;
}
.img-btn__img01 {
  position: relative;
}
.img-btn__coupon_btn {
  position: absolute;
  width: 85%;
  bottom: -9%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.4s;
}
.img-btn__coupon_btn:hover {
  opacity: 0.7;
}
.img-btn__btn {
  position: absolute;
  width: 85%;
  bottom: -1%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.4s;
}
.img-btn__btn:hover {
  opacity: 0.6;
}
.img-btn__btn02 {
  position: absolute;
  width: 85%;
  bottom: 1%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.4s;
}
.img-btn__btn02:hover {
  opacity: 0.6;
}
.img-btn__btn02-1 {
  position: absolute;
  width: 85%;
  bottom: 1%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.4s;
}
.img-btn__btn02-1:hover {
  opacity: 0.6;
}
.img-btn__btn02-2 {
  position: absolute;
  width: 85%;
  bottom: 1%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.4s;
}
.img-btn__btn02-2:hover {
  opacity: 0.6;
}
.img-btn__btn03 {
  position: absolute;
  width: 75%;
  bottom: 3%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.4s;
}
.img-btn__btn03:hover {
  opacity: 0.6;
}
.img-btn__btn04 {
  position: absolute;
  width: 75%;
  bottom: 7%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.4s;
}
.img-btn__btn04:hover {
  opacity: 0.6;
}
.img-btn__btn05 {
  position: absolute;
  width: 80%;
  bottom: -4%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.4s;
}
.img-btn__btn05:hover {
  opacity: 0.6;
}
.img-btn__btn06 {
  position: absolute;
  width: 75%;
  bottom: 29%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.4s;
}
.img-btn__btn06:hover {
  opacity: 0.6;
}
.img-btn__btn07 {
  position: absolute;
  width: 85%;
  bottom: 2%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.4s;
}
.img-btn__btn07:hover {
  opacity: 0.6;
}
.img-btn__floating_banner {
  position: fixed;
  bottom: 4%;
  right: 5%;
  /* transform: translate(-50%, -50%); */
  z-index: 999;
  margin: 0 auto;
  transition: 0.4s;
}
@media screen and (max-width: 700px) {
  .img-btn__floating_banner {
    margin: 4rem 0;
    right: 0;
    bottom: -4%;
    width: 30%;
  }
}
.img-btn__floating_banner-img a {
  transition: 0.4s;
}
.img-btn__floating_banner-img a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 700px) {
  .img-btn__floating_banner-img a:hover {
    opacity: 1;
  }
}

/*--------------------------
	state
--------------------------*/
/*--------------------------
	レスポンシブ関係 ファブレットはなし
--------------------------*/
@media screen and (max-width: 1000px) {
  .is-Pc {
    display: none;
  }
}

@media screen and (max-width: 700px) {
  .is-Tab {
    display: none;
  }
}
@media screen and (min-width: 1001px) {
  .is-Tab {
    display: none;
  }
}

@media screen and (min-width: 701px) {
  .is-Sp {
    display: none;
  }
}

@media screen and (max-width: 700px) {
  .is-Pc_Tab {
    display: none;
  }
}

@media screen and (min-width: 1001px) {
  .is-Tab_Sp {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
