@charset "UTF-8";

/* reset
------------------------------------------------------------------*/

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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, main {
  display: block;
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  -webkit-text-size-adjust: 100%;
  word-break:break-all;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
input[type="radio"],
input[type="checkbox"],
input[type="submit"],
input[type="button"],
label {
  cursor:pointer
}

::-webkit-input-placeholder {
  color: #666;
  opacity: .6;
}
:-moz-placeholder {
  color: #666;
  opacity: .6;
}
::-moz-placeholder {
  color: #666;
  opacity: .6;
}
:-ms-input-placeholder {
  color: #666;
  opacity: .6;
}
:placeholder-shown {
  color: #666;
  opacity: .6;
}
select::-ms-expand {
  display: none;
}

a,canvas {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
a,
a:link,
a:visited {
  color: inherit;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}
em {
  font-weight: bold;
}
figure {
  margin: 0;
}
sup {
  font-size: 50%;
  vertical-align: super;
}

/* public ----------------------------------------*/
body {
  font-family: arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}


/* module ----------------------------------------*/
/* clearfix */
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
  overflow:hidden;
}

/* align */
.align-l {
  text-align: left;
}
.align-r {
  text-align: right;
}
.align-c {
  text-align: center;
}

/* over */
.over,
a.over,
button.over {
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 1;
}
.over:hover,
a.over:hover,
button.over:hover {
  opacity: .7;
}

/* font */
.ft-mincho {
  font-family: "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  letter-spacing: -.05em;
}

.ft-grad {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 100% auto;
}
.ft-grad { color: #00a6da; background-image: linear-gradient(135deg, #920783 0%,#0068b7 50%,#920783 100%); }

/* color */
.color-blue {
  color: #425f8e;
}

/* text */
.text-underline {
  text-decoration: underline;
}

@media all and (-ms-high-contrast: none) {
  .ft-mincho {
    font-family: 'ヒラギノ明朝 Pro W3','Hiragino Mincho Pro','ＭＳ Ｐ明朝','MS PMincho',serif;
  }
  .ft-grad {
    background: none;
  }
}

/* sp-only pc-only
------------------------------------------------------------------*/
@media screen and (min-width: 769px) {
  .sp-only {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}
