@charset "UTF-8";
/*==========================================================
  
==========================================================*/
/*-----------------------------------------------------------
  #content setting
-----------------------------------------------------------*/
body {
  position: relative;
  background-image: url(../../common/img/bg_moyou.png);
  background-size: 100%;
  background-repeat: repeat-y;
  background-position: top;
  background-color: #f0f0f0;
}

.l-loader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #fff;
}

.l-loader.is-loaded {
  -webkit-animation-name: loaded;
  animation-name: loaded;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.l-loader.is-hide {
  display: none;
}

.l-loader .roseinoue {
  opacity: 1;
  position: absolute;
  top: 45%;
  left: 50%;
  width: 150px;
  height: 150px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.l-loader .roseinoue.is-loaded {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.l-loader .roseinoue.is-loaded--sp-chrome {
  opacity: 0;
  width: 900px;
  height: 900px;
  transition: all 2s ease;
}

@-webkit-keyframes loaded {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    z-index: -1;
  }
}

@keyframes loaded {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    z-index: -1;
  }
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale3d(1, 1, 1);
    transform: translate(-50%, -50%) scale3d(1, 1, 1);
  }
  20% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale3d(1, 1, 1);
    transform: translate(-50%, -50%) scale3d(1, 1, 1);
  }
  35% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale3d(6, 6, 6);
    transform: translate(-50%, -50%) scale3d(6, 6, 6);
  }
}

@keyframes zoomIn {
  from {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale3d(1, 1, 1);
    transform: translate(-50%, -50%) scale3d(1, 1, 1);
  }
  20% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale3d(1, 1, 1);
    transform: translate(-50%, -50%) scale3d(1, 1, 1);
  }
  35% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale3d(6, 6, 6);
    transform: translate(-50%, -50%) scale3d(6, 6, 6);
  }
}

#header {
  position: relative !important;
  z-index: 0;
  padding: 0;
  background: none;
}

h1 {
  height: 50px;
  padding: 5px;
}

h1 a {
  vertical-align: middle;
}

h1 img {
  width: auto;
  height: 50px;
}

#main {
  overflow: hidden;
  padding: 10px 0 30px;
}

@media screen and (min-width: 861px) {
  #main {
    overflow: visible;
  }
}

h2 {
  font-size: 20px;
  line-height: 1.4;
}

@media screen and (min-width: 861px) {
  h2 {
    line-height: 1.5;
  }
}

.mybox {
  border: 2px dotted #EAA8BF;
  /* 線の太さ・種類・色 */
  max-width: 240px;
  margin: 10px auto;
  /* 外側の余白 上下・左右 */
  padding: 15px 15px;
  /* 内側の余白 上下・左右 */
  position: relative;
}

@media screen and (min-width: 861px) {
  .mybox {
    max-width: 280px;
    padding: 30px;
  }
}

.mybox:before {
  content: '♥';
  color: #fff;
  /* 左上の花の色 */
  font-size: 50px;
  /* 左上の花のサイズ */
  font-weight: bold;
  position: absolute;
  top: -30px;
  left: -15px;
  transform: rotate(-20deg);
  -moz-transform: rotate(-20deg);
  -webkit-transform: rotate(-20deg);
  -o-transform: rotate(-20deg);
  text-shadow: 0 0 8px #eaa8bf, 0 0 6px #eaa8bf, 0 0 4px #eaa8bf, 0 0 2px #eaa8bf, 0 0 0.5px #eaa8bf;
  /* 左上の花の縁取りの色 */
}

.mybox:after {
  display: block;
  position: absolute;
  content: '';
  bottom: -40px;
  right: -50px;
  width: 90px;
  height: 110px;
  margin-left: 100px;
  background: url(../img/poseinoue.png) no-repeat center;
  background-size: 100%;
}

@media screen and (min-width: 861px) {
  .mybox:after {
    bottom: -70px;
    right: -90px;
    width: 140px;
    height: 190px;
  }
}

.name {
  font-size: 18px;
  font-family: serif;
}

@media screen and (min-width: 861px) {
  .name {
    font-size: 24px;
  }
}

.main {
  display: inline-block;
  color: #fff;
  font-size: 24px;
  text-shadow: 0 0 10px #f00050;
}

@media screen and (min-width: 861px) {
  .main {
    font-size: 30px;
  }
}

body.under #main {
  overflow: visible;
  padding-top: 0;
  padding-bottom: 0;
}

body.under h2 {
  margin-top: -50px;
  font-size: 14px;
}

@media screen and (max-width: 320px) {
  body.under h2 {
    float: right;
    margin-right: 5px;
  }
}

body.under .name {
  font-size: 14px;
}

body.under .main {
  font-size: 14px;
}

#content {
  overflow: visible;
}

body.under #content {
  overflow: hidden;
  z-index: 0;
}

.contentWrap {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px 0 0;
  position: relative;
  z-index: 2;
  text-align: center;
  line-height: 2;
}

@media screen and (min-width: 861px) {
  .contentWrap {
    padding-top: 40px;
  }
}

.contentBox {
  margin-top: 0;
}

.lead {
  margin-top: -50px;
}

.strong {
  font-weight: bold;
  text-decoration: underline;
}

.omikuji {
  display: block;
  margin: 20px auto;
  width: 55px;
  height: auto;
}

@media screen and (min-width: 861px) {
  .omikuji {
    width: 80px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  background: transparent;
  outline: none;
  display: block;
  margin: 0 auto;
  font-family: dnp-shuei-anti-std, sans-serif;
}

button:hover {
  cursor: pointer;
}

.animated-button1 {
  background: linear-gradient(-30deg, #651212 50%, #530F0F 50%);
  padding: 15px 40px;
  -webkit-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
  overflow: hidden;
  color: #f7d4d4;
  font-size: 20px;
  letter-spacing: 2.5px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

@media screen and (min-width: 861px) {
  .animated-button1 {
    padding: 20px 50px;
  }
}

.animated-button1::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #ad8585;
  opacity: 0;
  -webkit-transition: .2s opacity ease-in-out;
  transition: .2s opacity ease-in-out;
}

.animated-button1:hover::before {
  opacity: 0.2;
}

.animated-button1 span {
  position: absolute;
}

.animated-button1 span:nth-child(1) {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 4px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(43, 8, 8, 0)), to(#d92626));
  background: linear-gradient(to left, rgba(43, 8, 8, 0), #d92626);
  -webkit-animation: 2s animateTop linear infinite;
  animation: 2s animateTop linear infinite;
}

@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.animated-button1 span:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 4px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(43, 8, 8, 0)), to(#d92626));
  background: linear-gradient(to top, rgba(43, 8, 8, 0), #d92626);
  -webkit-animation: 2s animateRight linear -1s infinite;
  animation: 2s animateRight linear -1s infinite;
}

@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

.animated-button1 span:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(43, 8, 8, 0)), to(#d92626));
  background: linear-gradient(to right, rgba(43, 8, 8, 0), #d92626);
  -webkit-animation: 2s animateBottom linear infinite;
  animation: 2s animateBottom linear infinite;
}

@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

.animated-button1 span:nth-child(4) {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 4px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(43, 8, 8, 0)), to(#d92626));
  background: linear-gradient(to bottom, rgba(43, 8, 8, 0), #d92626);
  -webkit-animation: 2s animateLeft linear -1s infinite;
  animation: 2s animateLeft linear -1s infinite;
}

@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

.img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  animation: heartBeat;
  /* referring directly to the animation's @keyframe declaration */
  animation-duration: 3s;
  /* don't forget to set a duration! */
}

@media screen and (min-width: 861px) {
  .img {
    margin-bottom: 30px;
  }
}

.deco_line {
  margin: 0 auto;
}

h3 {
  color: #a26800;
  font-size: 16px;
}

#share {
  position: relative;
  top: 0;
  right: 0;
  z-index: 0;
  width: 100%;
  margin: 40px auto 0;
  text-align: center;
}

#share ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: relative;
  right: 0;
  bottom: 0;
  width: 130px;
  margin: 10px auto 0;
}

#share li {
  width: 50px;
  margin: 0;
}

#share a {
  display: block;
}

.voice {
  color: #000;
}

.voice span {
  position: relative;
}

.voice span:before, .voice span:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 35px;
  height: 2px;
  background-color: black;
}

.voice span:before {
  left: -35px;
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}

.voice span:after {
  right: -35px;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}

.back {
  position: relative;
  padding-left: 12px;
  color: #d92626;
  font-size: 16px;
}

.back:after {
  display: block;
  position: absolute;
  content: '';
  top: 55%;
  left: -30px;
  -webkit-transform: translate(0, -50%) rotate(90deg);
  transform: translate(0, -50%) rotate(90deg);
  width: 20px;
  height: 100px;
  background: url(../img/rose.svg) no-repeat center;
  background-size: 100%;
}
