@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,
font,
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 {
  background: transparent;
  border: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

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

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

/* alt --*/
.alttext {
  display: block;
  overflow: hidden;
  text-indent: -9999px;
}

a {
  text-decoration: none;
}

hr {
  display: none;
}

iframe[name=google_conversion_frame] {
  position: absolute;
  top: 0;
  left: 0;
}

html,
body {
  width: 100%;
  height: 100%;
}

html {
  font-size: 16px;
}
@media only screen and (max-width: 750px) {
  html {
    font-size: 3.2vw;
  }
}

body {
  color: #808080;
  font-family: "メイリオ", meiryo, "Hiragino Kaku Gothic ProN", sans-serif;
}

/****************************************************/
#cover {
  background: #fff;
  position: fixed;
  transition: all 0s ease 0s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  backface-visibility: hidden;
}

#cover .mark {
  position: absolute;
  transition: all 0.1s ease-in;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
}

#cover.hide {
  opacity: 0;
  transition: all 1s ease 0.5s;
  visibility: hidden;
}

#cover.hide .mark {
  opacity: 0;
  transition: all 0.5s ease;
  /*-webkit-transform: scale3D(0.8,0.8,1);
    -moz-transform: scale3D(0.8,0.8,1);
     -ms-transform: scale3D(0.8,0.8,1);
      -o-transform: scale3D(0.8,0.8,1);
         transform: scale3D(0.8,0.8,1);*/
}

#cover .mark > div {
  position: relative;
  width: 100%;
  height: 100%;
}

#cover .mark .base {
  opacity: 0.5;
}

#cover .mark .loader {
  animation: load 1s linear 0s infinite;
  opacity: 1;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  stroke-dasharray: 130;
  stroke-dashoffset: 100;
}

#cover .mark svg {
  position: absolute;
  top: 0;
  left: 0;
}

#cover .mark svg circle {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  fill: none;
  stroke: #f5e700;
  stroke-miterlimit: 10;
  stroke-width: 3px;
}

#cover.hide .base svg circle {
  stroke-width: 50px;
}

#cover.hide .loader svg circle {
  stroke-width: 0;
}

@-webkit-keyframes load {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes load {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-ms-keyframes load {
  0% {
    -ms-transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
  }
}
@-o-keyframes load {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(360deg);
  }
}
@keyframes load {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/****************************************************/
/****************************************************/
.share {
  display: flex;
  align-items: center;
}
.share dt {
  padding-right: 4px;
}
.share dd {
  padding-left: 6px;
}