@charset "utf-8";
/* デフォルト */

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  /*font-size: 100%;*/
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #262e33;
}

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

body {
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  background-color: #fff;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

/* ----------------- 
      共通
-----------------  */
body {
  width: 375px;
  margin: 0 auto;
}

@media only screen and (min-width: 376px) {
  body {
    width: 100vw;
    max-width: 750px;
    margin: 0 auto;
  }
}

@media only screen and (min-width: 751px) {
  body {
    width: 750px;
    margin: 0 auto;
  }
}

header {
  background-color: #000;
}

.flex-start {
  display: flex;
  justify-content: flex-start;
}

.flex-end {
  display: flex;
  justify-content: flex-end;
}

.flex-center {
  display: flex;
  justify-content: center;
}

.flex-between {
  display: flex;
  justify-content: space-between;
}

.items-center {
  align-items: center;
}

.mx-auto {
  margin: 0 auto;
}

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

/* ----------------- 
      ヘッダー 
-----------------  */

.header_inner {
  padding: 10px 0 8px 0;
  height: 75px;
}

.header_logo {
  padding-left: 10px;
  width: 180px;
}

.header_offer div {
  width: 80px;
  margin-right: 5px;
}

@media only screen and (min-width: 376px) {
  .header_inner {
    padding: 2.666vw 0 2.133vw 0;
    height: 20vw;
  }

  .header_logo {
    padding-left: 2.666vw;
    width: 48vw;
  }

  .header_offer div {
    width: 21.333vw;
    margin-right: 1.333vw;
  }
}

@media only screen and (min-width: 751px) {
  .header_inner {
    padding: 20px 0 10px 0;
    height: 150px;
  }

  .header_logo {
    padding-left: 10px;
    width: 360px;
  }

  .header_offer div {
    width: 160px;
    margin-right: 5px;
  }
}

/* ----------------- 
  オファーエリア 
-----------------  */
#offer_box {
  margin: 20px auto;
}

#offer_box p {
  font-weight: bold;
  line-height: 110%;
  font-size: 17px;
}

#offer_box img {
  width: 80%;
  margin: 10px auto;
}

#offer_box img.caution_icon {
  width: 15%;
  margin: 0;
}

@media only screen and (min-width: 376px) {
  #offer_box p {
    font-size: 4.533vw;
  }
}

@media only screen and (min-width: 751px) {
  #offer_box p {
    font-size: 24px;
  }
}

/* ----------------- 
  フッター 
-----------------  */

footer .zero {
  padding-bottom: 130px;
}

#fixed_footer {
  width: 375px;
  position: fixed;
  bottom: 0;
  background: #EAEAEA;
  padding: 10px 0 5px 0;
}

#fixed_footer p {
  font-weight: bold;
  line-height: 110%;
  font-size: 17px;
}

#fixed_footer img {
  width: 150px;
  margin: 5px;
}

@media only screen and (min-width: 376px) {
  footer .zero {
    padding-bottom: 34.666vw;
  }

  #fixed_footer {
    width: 100vw;
    position: fixed;
    bottom: 0;
    background: #EAEAEA;
    padding: 2.666vw 0 1.333vw 0;
  }

  #fixed_footer p {
    font-size: 4.533vw;
  }

  #fixed_footer img {
    width: 40vw;
    margin: 1.333vw;
  }
}

@media only screen and (min-width: 751px) {
  footer .zero {
    padding-bottom: 220px;
  }

  #fixed_footer {
    width: 750px;
    position: fixed;
    bottom: 0;
    background: #EAEAEA;
    padding: 10px 0 5px 0;
  }

  #fixed_footer p {
    font-size: 24px;
  }

  #fixed_footer img {
    width: 250px;
    margin: 10px;
  }
}