@charset "utf-8";

/* 全体 */
body {
    font-family:"ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
    width: 100%;
    font-size: 14px;
    line-height: 1.5;
    color: #a28b80;
    background-image: url(../images/background.png);
    background-size: 100%;
    /* background-color: #dd5989; */
}
a {
    text-decoration: none;
    color: #a28b80;
}
@media screen and (max-width: 750px){
    body {
        width: 100%;
        background-image: url(../images/background-sp.png);
        background-size: 100%;
        font-size: 12px;
    }
}
/* ヘッダー */
header {
    width: 100%;
    /* background-color: #dd5989; */
    margin: auto;
    position: absolute;
    top: 0px;
    z-index: 2;
    /* text-shadow: -1px -1px 0 white,  
                  1px -1px 0 white,
                 -1px  1px 0 white,
                  1px  1px 0 white; */
    background-color: #faf8f4e3;
    padding: 10px 0;
}
.header-nav {
    width: 80vh;
    align-items: center;
    margin: auto;
    display: flex;
    justify-content: space-between;
    list-style: none;
}
.heroine-logo {
    width: 100px;
}
.sp-header {
    display: none;
}

@media screen and (max-width: 750px){
    header {
        display: none;
        text-shadow: none;
    }
    .sp-header {
        display: block;
    }
    .heroine-logo {
        width: 93px;
    }
    /* Navbar & Navmenu color */
:root {
    --background-navbar: rgba(55, 55, 55, 0.98);
    --background-color: #faf8f4f7;
    background-size: cover;
  }
  
  .sp-header {
    background: var(--background-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 45px;
    display: flex;
    flex-direction: row-reverse;
    z-index: 999!important;
  }
  
  /* Nav items */
  .menu {
    list-style: none;
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
    margin-top: 45px;
    padding: 0 0 10px 0;
    clear: both;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
    transform: scale(1, 0);
    transform-origin: top;
    background-color: #faf8f4e9;
  }
  
  /* Hamburger menu button */
  .menu-btn:checked ~ .menu {
    transform: scale(1, 1);
    transform-origin: top;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  
  /* Hamburger menbu text */
  .menu a {
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 14px;
    text-transform: capitalize;
    color: #a28b80;
    opacity: 0;
    transition: 0.5s;
  }
  
  .menu li {
    /*border-top: 0.5px solid #847373ae;*/
    padding: 15px 40px;
    margin: 0 0px;
    opacity: 0;
    transition: 0.5s;
    text-align: center;
  }
  
  .menu-btn:checked ~ .menu a,
  .menu-btn:checked ~ .menu li {
    opacity: 1;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
  }
  
  .menu-btn {
    display: none;
  }
  
  .menu-icon {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding: 11px 14px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  
  .navicon {
    background: #a28b80;
    display: block;
    border-radius: 30px;
    height: 2.5px;
    width: 26px;
    position: relative;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  
  .navicon:before,
  .navicon:after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    background: #a28b80;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
    border-radius: 30px;
  }
  
  .navicon:before {
    top: 9px;
    border-radius: 30px;
  }
  
  .navicon:after {
    bottom: 9px;
    border-radius: 30px;
  }
  
  /* Hamburger Menu Animation Start */
  .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
  }
  
  .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
  }
  
  .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
    top: 0;
  }
  .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    bottom: 0;
  }
  
  .menu-btn:checked ~ .menu-icon .navicon {
    background: rgba(0, 0, 0, 0);
    transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  /* Hamburger Menu Animation End */
  
  /* Navbar Container */
  .navtext-container {
    width: 100%;
    height: 45px;
    position: absolute;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Navbar Text */
  .navtext {
    position: absolute;
    left: 12px;
    top: -4px;
    text-transform: uppercase;
    color: #ddd;
    letter-spacing: 4px;
    font-size: 20px;
  }
}

/* トップ画像 */
.hero {
    width: 100%;
    position: relative;
}
.hero-image-pc {
    width: 100%;
}
.hero-image-sp {
    display: none;
}
.icon {
    width: 8.5%;
    position: absolute;
    top: 33vw;
    z-index: 2;
} 
.google-icon {
    position: absolute;
    right: 28.4%;
}
.app-icon {
    right: 19%;
}
@media screen and (max-width: 750px){
    .hero {
        margin-top: 13px;
    }
    .hero-image-sp {
        display: block;
        width: 100%;
    }
    .hero-image-pc {
        display: none;
    }
    .icon {
        width: 15%;
        top: 45vw;
    } 
    .google-icon {
        right: 20%;
    }
    .app-icon {
        right: 4%;
    }
}

/* メインコンテンツ */
    main {
        width: 60%;
        /* background-color: #dd5989; */
        margin: auto;
        margin-top: 30px;
        position: relative;
        z-index: 500;
        display: flex;justify-content: space-between;
        padding: 1.5%;
    }
    .content {
        margin: 0% 4% 4% 4%;
    }
    .content img {
        border-radius: 10px;
        width: 100%;
    }
    .twitter-timeline {
        width: 100%;
    }
    .youtube_sp {
        display: none;
    }
    .youtube_pc {
      width: 100%;
      aspect-ratio: 16 / 9;
    }
    .youtube_pc iframe {
      width: 100%;
      height: 100%;
    }
@media screen and (max-width: 750px){
    main {
        display: block;
        margin-top: 0;
        width: 95%;
    }
    .youtube_pc {
        display: none;
    }
    .youtube_sp {
        display: block;
        text-align: center;
        width: 100%;
        aspect-ratio: 16 / 9;
    }
    .youtube_sp iframe {
      width: 100%;
      height: 100%;
    }
}
    



/* キャラ */
.chara {
    position: absolute;
    z-index: 0;
}
.chara1 {
    width: 35%;
    left: 0%;
    top: 70vw;
}
.chara2 {
    width: 34%;
    right: 0%;
    top: 50vw;
}
@media screen and (max-width: 750px){
    .chara {
        display: none;
    }
}



/* フッター */
footer {
    width: 100%;
    background-color: #f4a19e;
    text-align: center;
    padding: 30px 0;
    color: #fff;
    /* text-shadow: -1px -1px 0 #dd5989,  
    1px -1px 0 #dd5989,
   -1px  1px 0 #dd5989,
    1px  1px 0 #dd5989; */
}
.footer-list1 {
    width: 80vh;
    margin: auto;
    padding: 0;
    margin-top: 30px;
    z-index: 5;
    position: relative;
    z-index: 3;
}
.footer-list1-nav {
    list-style: none;
    color: #fff;
    display: flex;
    justify-content: space-between;
    text-align: center;
    padding: 0;
}
.footer-list1-nav a {
    color: #fff;
    background-color: #f4a19e;
    padding: 5px;
    border-radius: 5px;
}
.footer-list2 {
    margin: 40px 0;
}
.success-logo {
    width: 120px;
}
.trademark {
    margin-top: 20px;
    font-size: 11px;
}
.copy {
    font-size: 10px;
}
@media screen and (max-width: 750px){
    .footer-list1 {
        width: 100%;
    }
    .footer-list1-nav {
        display: block;
    }
    .footer-list1-item {
        margin: 10px 0;
    }
}




/* ウェーブ */
.wav {
    position:relative;
    text-align:center;
    position: absolute;
    top: 42vw;
    width: 100%;
    /* background: linear-gradient(60deg, rgba(84,58,183,1) 0%, rgba(0,172,193,1) 100%);
    color:white; */
  }
  .inner-header {
    height:100%;
    width:100%;
    margin: 0;
    padding: 0;
  }
  .flex { /*Flexbox for containers*/
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .waves {
    position:relative;
    width: 100%;
    margin-bottom:-7px; /*Fix for safari gap*/
    min-height:110px;
    max-height:140px;
  }
  /* Animation */
  
  .parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
  }
  .parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
  }
  .parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
  }
  .parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
  }
  .parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
  }
  @keyframes move-forever {
    0% {
     transform: translate3d(-90px,0,0);
    }
    100% { 
      transform: translate3d(85px,0,0);
    }
  }
  /*Shrinking for mobile*/
  @media (max-width: 768px) {
    .waves {
      height:10px;
      min-height:40px;
    }
    .wav {
      height:30vh;
      top: 63vw;
    }
    h1 {
      font-size:24px;
    }
  }


  /* ヒロインコールとは？ページ */
  .about-page {
    background-image: url(../images/background2.png);
    background-size: cover;
    color: #a28b80;
  }
  .title-back-pc {
    width: 100%;
    position: absolute;
    top: -20px;
    left: 0;
  }
  .title-back-sp {
    display: none;
  }
  .top-title {
    text-align: center;
    margin-top: 60px;
    padding: 15px 0;
  }
  .top-title h1{
    margin: 0;
    position: relative;
    z-index: 3;
  }
  .top-title p {
    margin: 0;
    position: relative;
    z-index: 3;
  }
  .about-image {
    display: block;
    width: 50%;
    margin: auto;
    position: relative;
    z-index: 5;
  }
  .aboutimg {
    width: 100%;
  }
  .about-text {
    text-align: center;
    margin: 0px 0;
    width: 60%;
    margin: auto;
  }
  .about-text p {
    width: 100%;
    font-size: 100%;
  }
  .recommend {
    margin: 70px 0;
    position: relative;
    z-index: 9;
  }
  .hart {
    width: 60%;
    margin: auto;
  }
  .hart img {
    width: 15%;
  }
  .chara3 {
    width: 34%;
    left: 0%;
    top: 50vh;
    z-index: 0;
  }
  .chara4 {
    width: 34%;
    right: 0%;
    top: 20vh;
    z-index: 0;
  }

  @media (max-width: 768px) {
    .about-text {
      width: 90%;
    }
    .about-image {
      width: 85%;
    }
    .top-title h1 {
     font-size: 16px;
     padding: 0 2%; 
    }
    .top-title p { 
      font-size: 14px;
    }
    .recommend {
      width: 100%;
      margin: 45px 0;
    }
    .hart {
      width: 100%;
      margin: 0;
    }
    .hart img {
      width: 22%;
    }
    .title-back-pc {
      display: none;
    }
    .title-back-sp {
      display: block;
      width: 100%;
      position: absolute;
      top: -58px;
      left: 0;
    }
  }

    /* 遊び方 */
    .page {
      background-image: url(../images/background2.png);
      background-size: cover;
    }
   .steps {
      width: 60%;
      margin: auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      position: relative;
      z-index: 9;
   }
   .step {
      width: 49%;
      margin-bottom: 30px;    
   }
   .step-image {
      width: 100%;
   }
   .chara5 {
      width: 34%;
      left: 0%;
      top: 200vh;
      z-index: 0;
  }
  .chara6 {
      width: 34%;
      right: 0%;
      top: 50vh; 
      z-index: 0;
  }
  @media (max-width: 768px) {
    .steps {
      width: 100%;
      display: block;
    }
    .step {
      width: 98%;
      margin: auto;  
      margin-bottom: 30px;
     }
  }

  /* 初回限定ボーナスページ */
  .exclusive-bonuses {
    width: 47%;
    margin: auto;
    position: relative;
    z-index: 9;
    height: 100%;
    margin-bottom: 140px;
    margin-top: 30px;
  }
  .exclusive-bonuses img {
    width: 100%;
    border-radius: 8px;
  }
  @media (max-width: 768px) {
    .exclusive-bonuses {
      width: 85%;
      margin-bottom: 40px;
      margin-top: 10px;
    }
  }

    /* 相性診断 */
    .test {
      width: 47%;
      margin: auto;
      position: relative;
      z-index: 9;
      height: 100%;
      margin-bottom: 40px;
      margin-top: 30px;
    }
    .test img {
      width: 100%;
      border-radius: 8px;
    }
    @media (max-width: 768px) {
      .test {
        width: 85%;
        margin-bottom: 20px;
        margin-top: 10px;
      }
    }

    /* イベント情報 */
    .event-nav {
      width: 60%;
      margin: auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      position: relative;
      z-index: 9;
    }
    .event {
      width: 49%;
      margin-bottom: 30px;
      background-color: #ffffffe1;
      border-radius: 8px;
      padding: 2%;
      box-shadow: 0px 2px 7px 0px rgba(112, 85, 85, 0.14);
    }
    .event-image {
      width: 100%;
      border-radius: 8px 8px 0px 0px;
    }
    .event-time {
      width: 100%;
      background-color: #93807f;
      border-radius: 0px 0px 5px 5px ;
      margin: 0;
      padding: 10px 0;
      color: #fff;
      text-align: center;
    }
    .event-situation-ok {
      width: 50%;
      margin: auto;
      text-align: center;
      background-color: #ee8985;
      padding: auto;
      border-radius: 8px;
      padding: 7px 0;
      font-size: 110%;
      color: #fff;
      margin-top: 10px;
    }
    .event-situation-no {
      width: 50%;
      margin: auto;
      text-align: center;
      background-color: #807777;
      padding: auto;
      border-radius: 8px;
      padding: 7px 0;
      font-size: 110%;
      color: #fff;
      margin-top: 10px;
    }
    .event-off {
      background-color: #cdcdcdcc;
    }
  
    @media (max-width: 768px) {
      .event-nav {
        display: block;
        width: 92%;
        margin: auto;
      }
      .event {
        width: 100%;
      }
    }

    /* プライバシーポリシー 利用規約*/
  .privacys {
    width: 50%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    z-index: 9;
  }
  .privacy {
    background-color: #ffffffe1;
    margin-bottom: 60px;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0px 2px 7px 0px rgba(112, 85, 85, 0.14);
  }

  @media (max-width: 768px) {
    .privacys {
      width: 90%;
    }
    .privacy {
      margin-bottom: 30px;
    }
  }

  /* 監視指導に基づく処置 */
  .guidance {
    margin-bottom: 900px;
  }
  @media (max-width: 768px) {
    .guidance {
      margin-bottom: 150px;
    }
  }

  /* 特定商取引法に基づく表記 */
  .transactions {
    width: 100%;
    background-color: #ffffffe1;
    border-radius: 8px;
    margin-bottom: 60px;
    padding: 20px;
    box-shadow: 0px 2px 7px 0px rgba(112, 85, 85, 0.14);
    text-align: center;
  }
  .transactions img {
    width: 90%;
    padding-bottom: 20px;
  }
  @media (max-width: 768px) {
    .transactions {
      margin-bottom: 30px;
      padding: 10px;
    }
    .transactions img {
      width: 100%;
      padding-bottom: 10px;
    }
  }

/* イベントYOUTUBE組み込み
------------------------------------------------------------*/
.video-wrapper {
   position: relative;
   padding-bottom: 56.25%; /* 16:9のアスペクト比 */
   height: 0;
   overflow: hidden;
   max-width: 100%;
   background: #000;
   border-radius: 8px 8px 0 0;
}

.video-wrapper iframe {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
}


