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

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 {
  display: block;
  visibility: hidden;
  clear: both;
  overflow: hidden;
  height: 0;
  content: ".";
}

/* 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%;
}

audio,
embed,
img,
object,
video {
  width: auto;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

button {
  cursor: pointer;
  border: 0;
  outline: none;
  background: transparent;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, sans-serif;
  overflow-x: hidden;
}

figure {
  margin: 0;
  padding: 0;
}
figure img {
  user-select: none;
  -webkit-user-drag: none;
}

img {
  backface-visibility: hidden;
}

/****************************************************/
/****************************************************/
#cover {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  background: #000;
}

#cover .mark {
  position: absolute;
  top: 50%;
  left: 50%;
  box-sizing: border-box;
  width: 100px;
  height: 100px;
  padding: 15px;
  transition: all 0.1s ease-in;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

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

#cover.hide .mark {
  transition: all 0.2s ease;
  opacity: 0;
}

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

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

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

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

#cover .mark svg circle {
  transition: all 0.2s ease;
  fill: none;
  stroke: #d68f14;
  stroke-miterlimit: 10;
  stroke-width: 1px;
}

#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);
  }
}
/****************************************************/
/****************************************************/
.top__share dl {
  display: flex;
  align-items: center;
}
.top__share dl dd {
  padding-left: 8px;
}

.btn-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  border: 4px solid #fff;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
}
.btn-close span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.btn-close span:before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 80%;
  height: 4px;
  content: "";
  transform: translate(-50%, -50%) rotate(-45deg);
  background: #fff;
}
.btn-close span:after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 80%;
  height: 4px;
  content: "";
  transform: translate(-50%, -50%) rotate(45deg);
  background: #fff;
}

.share {
  display: flex;
  align-items: center;
}
.share dd {
  box-sizing: content-box;
  margin-left: 1%;
}
.share dd a {
  display: block;
  box-sizing: content-box;
  padding: 0.8% 0;
}
@media only screen and (max-width: 750px) {
  .share {
    display: flex !important;
    width: 80vw;
    margin: 0 auto;
    padding-top: 3vw;
    padding-bottom: 3vw;
    justify-content: center;
    justify-content: space-evenly;
  }
}

.sns {
  position: fixed;
  z-index: 3;
  top: 0;
  right: 0;
}
.sns ul {
  display: flex;
}
.sns ul a {
  display: block;
}
@media only screen and (max-width: 750px) {
  .sns {
    position: relative;
    top: auto;
    right: auto;
  }
}