@charset "UTF-8";
/**scss共通***/
.mod-freeHTML img {
  width: 100%;
}

.test {
  -webkit-transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transform: scale(1);
  transform: rotate(-45deg);
  border-radius: 50%;
  animation: Flash1 1s infinite;
  font-family: 'Noto Serif JP', serif;
  background: linear-gradient(90deg, #00486e 0%, #00789b 100%);
}

@keyframes Flash1 {
  50% {
    opacity: 0;
  }
}

.test {
  content: "\f105";
  font-family: FontAwesome;
}

.shadow {
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.4), 1px 3px 3px rgba(0, 0, 0, 0.4), 1px 2px 3px rgba(0, 0, 0, 0.4);
}

/**scss共通ここまで***/
.onmouse {
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
}

.onmouse:hover {
  opacity: 0.6;
}

html {
  overflow-y: scroll;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: inherit;
  font: 100%;
}

img {
  border: 0;
  vertical-align: bottom;
}

nav ul {
  list-style: none;
}

ul li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: normal;
  font-style: normal;
}

.mod-freeHTML {
  font-size: 14px;
  *font-size: small;
  *font: x-small;
  font-family: 'Noto Sans JP', BlinkMacSystemFont, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', '游ゴシック  Medium', meiryo, sans-serif;
  text-align: left;
  line-height: 160%;
  color: #333;
}

.clearfix {
  zoom: 1;
  clear: both;
}

.clearfix:after {
  content: ".";
  display: block;
  visibility: hidden;
  height: 0;
  clear: both;
}

/* link_nomal */
.mod-freeHTML a {
  text-decoration: none;
  color: #333;
}

.mod-freeHTML a:link {
  text-decoration: none;
  color: #333;
}

.mod-freeHTML a:visited {
  text-decoration: none;
  color: #333;
}

.mod-freeHTML a:hover {
  text-decoration: none;
  color: #333;
}

.mod-freeHTML a:active {
  text-decoration: none;
  color: #333;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/**テキスト揃え**/
.text-center {
  text-align: center;
}

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

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

.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

.pc_only_inline {
  display: inline-block;
}

.sp_only_inline {
  display: none;
}

@media (max-width: 800px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
  .pc_only_inline {
    display: none;
  }
  .sp_only_inline {
    display: inline-block;
  }
}
/*# sourceMappingURL=common.css.map */