/* =================================================
Base / Reset
================================================= */

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

html {
  height: 100%;
  overflow: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
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,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td{
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-family: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0px;
  width: 100%;
  height: 100%;
}

.efblock{ width: 100%;}

#damImg {
  width: 64px;
  height: 64px;
  position: absolute;
  top: -100%;
  left: -100%;
  z-index: 20;
}

/*---------------------------------------------
loading
----------------------------------------------*/

#loader {
  display: none;
  width: 48px;
  height: 48px;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -24px;
  margin-left: -24px;
  z-index: 200;
}

#loader-bg {
  width: 100%;
  height: 100%;
  background: #fff;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 150;
  display: none;
}

@keyframes fadeanm {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

#loader_logo {
  background: url("../images/common/logo_s.png") no-repeat top 48% left 50%;
  background-size: 100px auto;
  display: none;
  width: 150px;
  height: 150px;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -75px;
  margin-left: -75px;
  z-index: 200;
  animation: fadeanm 0.5s ease 0.1s forwards;
  opacity: 0;
}

.loader-ring {
  width: 100%;
  height: 100%;
  border: 1px solid #678591;
  border-radius: 50%;
  -webkit-mask: conic-gradient(#678591 180deg, transparent 180deg);
  mask: conic-gradient(#678591 180deg, transparent 180deg);
  opacity: 0.5;

  /* アニメーションを追加：2秒で1回転、等速、無限ループ */
  animation: ring-spin 1.2s linear infinite;
}

/* 0度から360度まで回転させる設定 */
@keyframes ring-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

a {
  transition: all 0.3s ease;
  text-decoration: none;
}

a:link {
  color: #e0617c;
}

a:visited {
  color: #e0617c;
}

a:active {
  color: #f587a8;
}

a img {
  border: 0;
}

a:focus {
  outline: none;
}

/*---------------------------------------------
ef
----------------------------------------------*/

.ef-fade {
  opacity: 0;
  transition: 1.5s ease 0.3s;
}

.ef-fade2 {
  opacity: 0;
  transform: scale(0.9);
}

.fade {
  opacity: 1.0;
  transform: translate(0, 0) scale(1);
}


/*---------------------------------------------
print
----------------------------------------------*/

@media print {
  body {
    display: none !important;
  }
}
