@charset "UTF-8";
/* (レイアウト変数)
***************************************************************/
/*(ブレークポイント)
***************************************************************/
/* (メディアクエリ)
***************************************************************/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
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;
}

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

ol,
ul {
  list-style: none;
}

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

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

button {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

img {
  width: 100%;
}

/* (全体)
***************************************************************/
.wrapper {
  background: #fff;
  overflow: hidden;
}

.sec03 {
  position: relative;
}

.sec03__button {
  position: absolute;
  width: 68.2%;
  top: 70.4%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
@media screen and (max-width:640px) {
  .sec03__button {
    width: 94%;
    top: 69.7%;
    left: 50%;
  }
}
.sec03__button:hover {
  -webkit-transform: translateX(-50%) scale(1.05, 1.05);
          transform: translateX(-50%) scale(1.05, 1.05);
}
@media screen and (max-width:640px) {
  .sec03__button:hover {
    -webkit-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
  }
}
.sec03__button a {
  display: block;
}