@charset "UTF-8";
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-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

li {
  list-style-type: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }


/* Basic HTML Tags */
html {
    font-size: 14px
}
body {
  background-color: #FFFFFF;
  width: 100%;
  min-width: 320px;
  font-family: Helvetica Neue, Helvetica, YuGothic, Yu Gothic, 'ヒラギノ角ゴ Pro W3', Hiragino Kaku Gothic Pro, "メイリオ", Meiryo, "ＭＳＰゴシック", sans-serif;
  line-height: 1.9;
  -webkit-text-size-adjust: 100%; }

.container {
  position: relative; }

a {
  color: inherit;
  transition: opacity 0.2s ease;
  text-decoration: none; }
a:hover {
    color: inherit;
}
@media only screen and (max-width:640px) {
    a:hover {
        filter:progid:DXImageTransform.Microsoft.Alpha(enabled=false);
        opacity: 1;
        filter:alpha(opacity=100)
    }
}

img {
  vertical-align: middle; }

::-webkit-input-placeholder {
  color: #b2b2b2; }

::-moz-placeholder {
  color: #b2b2b2;
  opacity: 1; }

:-ms-input-placeholder {
  color: #b2b2b2; }

img,
video {
    max-width: 100%;
    height: auto;
    vertical-align: middle
}
*,
*:after,
*:before {
    box-sizing: border-box
}
.clear {
    display: table;
    line-height: 0;
    content: "";
    clear: both
}

/* mode */
@media only screen and (min-width:1001px) {
    .mode-pc {
        display: block!important;
    }
    .mode-sp, img.mode-sp {
        display: none!important;
    }
    img.mode-pc {
        display: inline-block!important;
    }
}

@media only screen and (max-width:1000px) {
    .mode-pc, img.mode-pc {
        display: none!important;
    }
    .mode-sp {
        display: block!important;
    }
    img.mode-sp {
        display: inline-block!important;
    }
}

/* アニメーションボタン */
.btn-animate {
    display: inline-block;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    line-height: 1;
    text-align: center;
    border: 1px solid #d5d4d8;
    white-space: nowrap;
    padding: 29px 0;
    min-width: 325px;
    z-index: 1;
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.2rem;
    background-color: transparent;
    cursor: pointer;
}
a:hover .btn-animate {
    border-color: #d5d4d8;
    color: #551863;
}
a:hover .btn-animate.btn-red {
    color: #b81119;
}
.btn-animate .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    background-color: #ffffff;
    top: 0;
    left: -100%;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transition: all 0.3s cubic-bezier(0.05, 0.06, 0.05, 0.95);
    transition: all 0.3s cubic-bezier(0.05, 0.06, 0.05, 0.95);
    z-index: -1;
}
a:hover .btn-animate .bg {
    left: 0;
}
.btn-animate i {
    margin: 0 0 0 17px;
}
