@charset "UTF-8";
img {
  width: 100%;
  height: auto;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  background-repeat: repeat;
}

html,
body {
  padding: 0;
  margin: 0;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
}

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

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

object,
embed {
  vertical-align: top;
}

hr,
legend {
  display: none;
}

img,
abbr,
acronym,
fieldset {
  border: 0;
}

li {
  list-style-type: none;
}

sup {
  vertical-align: super;
  font-size: 0.5em;
}

img {
  vertical-align: top;
}

i {
  font-style: normal;
}

body {
  text-align: start;
  font-family: "游ゴシック体" Yugothic, "游ゴシックMedium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
  font-family: "Rounded M+ 1c";
  font-family: "Fira Sans", sans-serif;
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
}

img {
  width: 100%;
  height: auto;
}

body,
ul {
  margin: 0;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1.6rem;
  padding: 0;
  margin: 0;
  font-weight: unset;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}

a {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

dl {
  padding: 0;
  margin: 0;
}

dt,
dd {
  padding: 0;
  margin: 0;
}

p {
  padding: 0;
  margin: 0;
  font-weight: unset;
  margin-block: 0px;
  margin-inline: 0px;
}

figure {
  padding: 0;
  margin: 0;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.button {
  background-color: #c1c1c1;
}

/* ボタン共通設定 */
.btn03 {
  /*影の基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  text-align: center;
  background: transparent;
  outline: none;
  /*アニメーションの指定*/
  transition: all 0.2s ease;
  border-radius: 0;
  border: 0;
  left: 50%;
  transform: translateX(-50%);
}

/*hoverをした後のボタンの形状*/
.btn03:hover {
  border-color: transparent;
}

/*ボタンの中のテキスト*/
.btn03 span {
  position: relative;
  z-index: 2; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  /*テキストの形状*/
  display: block;
  padding: 42px 115px 42px 69px;
  background: #f45f5f;
  color: #fcfcfc;
  /*アニメーションの指定*/
  transition: all 0.3s ease;
  border-radius: 0;
  border: solid 1px #333;
  font-size: 2.4rem;
}
.btn03 span::after {
  content: "";
  position: absolute;
  top: 50px;
  right: 30px;
  width: 20px;
  height: 17px;
  background-image: url(../img/btn__right.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .btn03 span {
    font-size: 1.6rem;
    padding: 22px 52px 22px 41px;
  }
  .btn03 span::after {
    content: "";
    position: absolute;
    top: 29px;
    right: 22px;
    width: 15px;
    height: 13px;
    background-image: url(../img/btn__right.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}

/*== 7-1-17　左下に押し込まれる（立体が平面に） */
/*影の設定*/
.pushleft:before {
  content: "";
  /*絶対配置で影の位置を決める*/
  position: absolute;
  z-index: 0;
  top: 12px;
  right: 12px;
  /*影の形状*/
  width: 100%;
  height: 100%;
  background-color: white;
  border: 1px solid black;
  border-radius: 0;
}

/*hoverの際にX軸に-4px・Y軸に4pxずらす*/
.pushleft:hover span {
  background-color: #f45f5f;
  color: #fff;
  transform: translate(-12px, 12px);
  border: 1px solid black;
}

@media (max-width: 767px) {
  .br__pc {
    display: none;
  }
}

@media (min-width: 768px) {
  .br__sp {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */