@charset "utf-8";
/*
Base style
*/

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: #847373;
    background-image: url(../img/1sweets.png);
    background-size: cover;
}
@media screen and (max-width: 750px){
    body {
       width: 100%;
    }
}
a {
    text-decoration: none;
    color: white;
}


 /* PCヘッダー*/
 @media screen and (min-width: 750px){
    .sp-header {
        display: none;
    }
    .header {
        width: 100%;
        height: 85px;
        background-image: url(../img/38.png);
        background-size: cover;
        background-position: 100% 100%;
        display: flex;
        line-height: 60px;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
    }
    .header-nav {
        width: 800px;
        height: 70px;
        list-style: none;
        margin: auto;
        margin-top: 0;
    }
    .header-navlist {
        display: flex;
        height: 70px;
        justify-content: space-between;
    }
    .heroine-logo {
        width: 100px;
    }
    .header-navitem {
        text-align: center;
    }
    .header-navitem a {
        display:inline-block;
        height: 70px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .header-navitem a:hover {
        color: #fffac0;
    }
}



@media screen and (max-width: 750px){
/*PCヘッダーOFF*/
.header {
    display: none;
}
/*SPヘッダー*/
.sp-heroine-logo {
    width: 100px;
}
/* Navbar & Navmenu color */
:root {
    --background-navbar: rgba(55, 55, 55, 0.98);
    --background-image: url(../img/38.png);
    background-size: cover;
  }
  
  .sp-header {
    background: var(--background-image);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 52px;
    display: flex;
    flex-direction: row-reverse;
    z-index: 999;
  }
  
  /* Nav items */
  .menu {
    list-style: none;
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
    margin-top: 52px;
    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: #d9e7e7f3;
  }
  
  /* 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: 16px;
    text-transform: capitalize;
    color: #847373;
    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: 24px 14px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  
  .navicon {
    background: #ffffff;
    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: #ffffff;
    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: 52px;
    position: absolute;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Navbar Text */
  .navtext {
    position: absolute;
    left: 12px;
    top: 8px;
    text-transform: uppercase;
    color: #ddd;
    letter-spacing: 4px;
    font-size: 20px;
  }
}








/*
ヒーロー
*/
.hero {
    width: 100%;
    margin: auto;
    margin-top: 50px;
}
.slider {
    background-color:transparent; 
    background-color: #333;
}
@media screen and (max-width: 750px){
    .hero {
        width: 100%;
        margin: auto;
        margin-top: 45px;
    }
}
/*
メインコンテンツ
*/
.main-contents {
    width: 800px;
    margin: auto;
}
section {
    text-align: center;
}
@media screen and (max-width: 750px){
    .main-contents {
        width: 100%;
        margin: auto;
    }
}
/*スマホで副業チャット＆音声通話キャスト大募集中！*/
.now-hiring-heroine-call {
    padding-top: 0px;
    padding-bottom: 35px;
    font-weight: bold; 
}
.now-hiring-heroine-call span {
    color: #ac97c9;
    font-family: "Mochiy Pop One", sans-serif;
    font-weight: normal;
    font-style: normal;
}
.blue {
    color: #7ec8c9;
    font-size: 37px;
    margin: 0;
    font-family: "Mochiy Pop One", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.text-big {
    color: #7ec8c9;
    font-size: 44px;
    margin: 0;
    font-family: "Mochiy Pop One", sans-serif;
    font-weight: 400;
    font-style: normal;
}
@media screen and (max-width: 750px){
    .now-hiring-heroine-call {
        margin-top: -20px;
        padding-bottom: 10px;
    }
    .text-big {
        font-size: 25px;
    }
    .blue {
        font-size: 20px;
    }
    .now-hiring-heroine-call span {
        font-size: 25px;
    }
}
/*ヒロインコールとは*/
.about-heroine-call {
    margin: auto;
    margin-top: 40px;
    margin-bottom: 50px;
    width: 489px;
    height: 184px;
    background-color: white;
    border: 2px solid #f297c36d;
    position: relative;
    border-radius: 15px;
}
.ribbon1 {
    width: 300px;
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.card-description {
    padding: 30px 40px 30px;
} 
@media screen and (max-width: 750px){
    .about-heroine-call {
        width: 80%;
        height: auto;
        margin-bottom: 20px;
    }
    .ribbon1 {
        width: 230px;
    }
}
/*動画*/
.promotional-video {
    margin-top: 55px;
    margin-bottom: 31px;
    width: 800px; 
    background-image: url(../img/24videoback.png); 
    border-radius: 15px;
}
video {
    width: 740px;
    margin: 40px 30px;
}
@media screen and (max-width: 750px){
    .promotional-video {
        width: 100%;
        margin-top: 30px;
        margin-bottom: 30px;
    }
    video {
        width: 90%;  

        margin: 20px 5% 20px 5%;
    }
}
/*ご応募はコチラ*/
.apply {
    width: 150px;
    height: 35px;
    margin: auto;
    background-color: #ac97c9;
    padding-left: 9px;
    border-radius: 50px;
    box-shadow: 0 3px 0 #392d489f;
    border: solid 1.5px #9a7cc5;
}
.apply-link {
    width: 150px;
    height: 35px;
    align-items: center;
    text-align: center;
    vertical-align: middle;
}
.application {
    vertical-align: middle;
    height: 35px;
    padding: 5px 0;
    margin: 0;
}
.apply:hover {
    transform: translateY(5px);
    box-shadow: 0 0 0 #333;
}

/*ヒロインコールの仕事とは*/
.heroine-call-logo {
    width: 140px;
}
.heroine-call-jobs {
    margin-top: 73px;
}
.setion-text span {
    color: #e06aa3;
    font-size: 18px;
}
.section-emphasis {
    background-image: url(../img/25background.png);
    background-size: cover;
    width: 730px;
    height: 50px;
    border-radius: 50px;
    line-height: 50px;
    margin: auto;
}
.section-emphasis p {
    color: white;
    font-size: 17px;
    padding: 0px 25px;
    margin-top: 0;
}
.section-emphasis span {
    color: #fffac0;
}
@media screen and (max-width: 750px){
    .heroine-call-jobs {
        width: 90%;
        margin: auto;
        margin-top: 40px;
    }
    .section-emphasis {
        width: 95%;
        height: auto;
    }
    .section-emphasis p {
        width: 90%;
        line-height: 1.2;
        font-size: 14px;
        display: inline-block;
        vertical-align: middle;
        padding-top: 2%;
        padding-bottom: 2%;
        margin-bottom: 0;
    }
}
/*こんな方におすすめ！*/
.recomend {
    width: 100%;
    margin-top: 0px;
    background-color: #fefafc;
}
.recomend-line {
    background-size: cover;
    width: 100%;
    margin-top: 50px;
}
.recomend-linedown {
    transform: scaleY(-1);
    background-size: cover;
    width: 100%;
}
h4 {
    margin-top: 0;
    font-size: 20px;
    margin-bottom: 5px;
}
.recommended-list {
    margin: auto;
    width: 800px;
    list-style: none;
    padding: 20px 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.recomend-item {
    margin: 10px;
    width: 160px;
}
.macaroons {
    width: 100%;
}
@media screen and (max-width: 750px){
    .recomend {
        width: 100%;
        padding-top: 20px;
    }
    .recommended-list {
        width: 100%;
        padding-bottom: 20px;
        padding-top: 10;
    }
    .recomend-item {
        margin: 3px 5px;
        width: 130px;
    }
    h4 {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 0;
    }
    .recomend-linedown {
        margin-bottom: 50px;
    }
}
/*あなたはどっち？？*/
.which-choose {
    width: 800px;
    margin: auto;
    margin-top: 70px;
    margin-bottom: 110px;
}
.chooses {
    display: flex;
}
.ribbon2 {
    width: 250px;
    margin-bottom: 10px;
}
.which-choose1 {
    margin-right: 20px;
    width: 400px;
}
.which-choose2 {
    width: 400px;
}
@media screen and (max-width: 750px){
    .which-choose {
        width: 100%;
        margin-top: 0px;
        margin-bottom: 80px;
    }
    .ribbon2 {
        width: 200px;
    }
    .chooses {
        width: 100%;
        justify-content: space-between;
        padding: 0px 0px;
    }
    .which-choose1 {
        margin-right: 0px;
        width: 50%;
    }
    .which-choose2 {
        width: 50%;
    }
}
/*キャストに求める事*/
.look {
    margin: auto;
    margin-top: 20px;
    width: 489px;
    background-color: white;
    border: 2px solid #97e4f26d;
    position: relative;
    border-radius: 15px;
}
.ribbon3 {
    width: 300px;
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.card-description2 {
    padding: 40px 40px 30px;
} 
@media screen and (max-width: 750px){
    .look {
        width: 80%;
        height: auto;
        margin-bottom: 20px;
    }
    
    .ribbon3 {
        width: 230px;
    }
}
/*キャストの声*/
.cast-line {
    background-size: cover;
    width: 100%;
    margin-top: 40px;
}
.cast-linedown {
transform: scaleY(-1);
    background-size: cover;
    width: 100%;
    margin-bottom: 50px;
}
.cast-comments {
    background-color: #fefeff;
    padding: 10px 0;
}
.cast-coment {
    width: 800px;
    margin: auto;
}
.ribbon4 {
    margin: auto;
    width: 300px;
}
.cast-image {
    width: 180px;
}
.figure {
    display: flex;
    padding: 0px 20px;
    align-items: center;
}
.cast1, .cast3 {
    margin-right: 20px;
}
.cast2 {
    margin-left: 20px;
}
.about-caption1, .about-caption3 {
    text-align: left;
}
.about-caption2 {
    text-align: right;
}
@media screen and (max-width: 750px){
    .cast-comments {
        width: 100%;
    }
    .cast-coment {
        width: 100%;
    }
    .cast-image {
        width: 50%;
        
    }
    .ribbon4 {
        width: 200px;
        padding-top: 10px;
    }
    .figure {
        padding: 0px 5px;
        font-size: 12px;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 20px;
    }
    .cast1, .cast3 {
        margin-right: 0px;
    }
    .cast2 {
        margin-left: 0px;
        order: 1;
    }
    .cast-set2{
        order: 2;
    }
}
/*フッター*/
.heroine-logo {
    width: 100px;
}
.footer {
    height: 345px;
    background-image: url(../img/21footerback.png);
    color: white;
    margin-top: 40px;
}
.footer-top-list {
    width: 800px;
    margin: auto;
    padding-top: 70px;
    padding-left: 0;
    list-style: none;
}
.footer-top-list li {
    text-align: center;
}
.line {
    width: 800px;
    height: 0.5px;
    margin: auto;
    background-color: white;
}
.footer-under-list {
    width: 800px;
    margin: auto;
    margin-top: 30px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    padding-left: 20px;
    padding-right: 20px;
    align-items: center;
    margin-bottom: 30px;
}
.footer-under-list li {
    text-align: center;
}
.footer-navitem {
    height: 30px;
    line-height: 30px;
}
.footer-navitem a {
    display:inline-block;
    height: 30px;
    padding-left: 10px;
    padding-right: 10px; 
    vertical-align: middle;  
}
.footer-navitem a:hover {
    color: #fffac0;
}
.container {
    width: 800px;
    height: 10px;
    text-align: center;
    font-size: 13px;
}
@media screen and (max-width: 750px){
    .heroine-logo {
        width: 70px;
    }
    .footer {
        width: 100%;
        height: 450px;
        background-image: url(../img/47_sp_footer_back.png);
        background-size: cover;
        padding-right: 20px;
        padding-left: 20px;
        padding-bottom: 60px;
        font-size: 11px;
    }
    .footer-top-list {
        width: 100%;
    }
    .footer-under-list {
        width: 100%;
    }
    .container {
        width: 100%;
    }
    .container p {
        margin: 0;
        font-size: 10px;
    }
    .line {
        width: 100%;
    }
    .footer-under-list {
        width: 100%;
        padding: 0;
        padding-top: 20px;
        margin-bottom: 10px;
        display: block;
    }
    .footer-navitem a {
        padding-left: 2px;
        padding-right: 2px;
    }
    
}
/*↓↓↓↓↓報酬について↓↓↓↓↓*/
/*報酬について*/
.rewards {
    width: 800px;
    margin: auto;
    margin-top: 50px;
    padding: 50px 20px;
}
.rewards-tables {
    margin: auto;
}
.ribbon26 {
    width: 300px;
}
.rewards-set {
    text-align: center;
}
.rewards-images {
    width: 700px;
}
.payment {
    width: 100%;
    text-align: center;
    background-image: url(../img/28back.png);
    background-size: cover;
    height: 520px;
    margin-bottom: 50px;
    padding: 45px 0;
}
.payment-image {
    width: 700px;
}
.payment-image-title {
    font-size: 24px;
    margin-bottom: -30px;
}
@media screen and (max-width: 750px){
    .rewards {
        width: 100%;
        padding-bottom: 20px;
        padding-top: 35px;
    }
    .ribbon26 {
        width: 230px;
    }
    .rewards-images {
        width: 95%;
    }
    .rewards-set p {
        margin: 5px 0;
    }
    .payment {
        width: 100%;
        height: 350px;
        padding-top: 35px;
        margin-top: 20px;
        margin-bottom: 25px;
    }
    .payment-image {
        width: 90%;
    }
    .payment-image-title {
        font-size: 20px;
    }
}

/*↓↓↓↓↓応募資格↓↓↓↓↓*/
.qualifications {
    width: 800px;
    margin: auto;
    margin-top: 90px;
    margin-bottom: 20px;
    padding: 10px;
    text-align: center;
}
.qualigications-ribbon {
    width: 300px;
    margin-bottom: 10px;
}
.question {
    display: flex;
    width: 420px;
    justify-content: space-between;
    margin: auto;
}
.question-box {
    width: 200px;
    height: 90px;
    background-image: url(../img/35patarn.png);
    background-size: cover;
    align-items: center;
    display: flex;
    justify-content: center;
    border-radius: 8px;
    color: white;
}
.example {
    margin: 20px;
}
.japan {
    width: 400px;
    margin: auto;
    margin-top: 20px;
    background-color: white;
    border-radius: 8px;
    border: solid #7ec8c984 1px;
    box-shadow: 2px 2px 8px 0px rgba(84, 84, 84, 0.157);
    padding: 20px;
}
.japan-map {
    width: 200px;
}
.necessary {
    width: 240px;
    margin-top: 50px;
    margin-bottom: 10px;
}
.point {
    width: 500px;
    margin: auto;
    margin-top: 30px;
}
.point-image {
    width: 100px;
}
@media screen and (max-width: 750px){
    .qualifications {
        width: 100%;
        margin-top: 75px;
    }
    .qualigications-ribbon {
        width: 230px;
    }
    .necessary { 
        width: 190px;
        margin-top: 30px;
    }
    .point-image {
        width: 80px;
    }
    .question {
        width: 100%;
        height: auto;
    }
    .question-box {
        width: 50%;
        height: auto;
        padding: 2%;
    }
    .japan {
        width: 100%;
    }
    .point {
        width: 100%;
    }
    .point1 {
        width: 100%;
    }
}

/*↓↓↓↓↓よくある質問↓↓↓↓↓*/
.question-lists {
    width: 800px;
    margin: auto;
    margin-top: 90px;
    text-align: center;
    margin-bottom: 30px;
}
.question-libbon {
    width: 300px;
    margin-bottom: 10px;
}
.question-list {
    margin-bottom: 30px;
}
.quest {
    display: flex;
    background-color: #ac97c9;
    border-radius: 50px;
    padding: 2px 15px;
}
.q {
    width: 30px;
    height: 30px;
    background-color: white;
    border-radius: 50px;
    margin: 0;
    margin-top: 5px;
    margin-bottom: 5px;
    color: #ac97c9;
    align-items: center;
    display: flex;
    justify-content: center;
    margin-right: 10px;
}
.qq {
    color: white;
    margin: 0;
    align-items: center;
    display: flex;
    justify-content: center;
}
.answer {
    display: flex;
    background-color: white;
    border: solid 1px #ac97c9;
    border-radius: 15px;
    padding: 5px 15px;
}
.a {
    height: 30px;
    padding: 10px;
    border-radius: 50px;
    margin: 0;
    margin-top: 5px;
    margin-bottom: 5px;
    background-color: #ac97c9;
    color: white;
    align-items: center;
    display: flex;
    justify-content: center;
    margin-right: 10px;
    word-wrap: break-word; 
}
.aa {
    margin: 0;
    align-items: center;
    display: flex;
    justify-content: center;
    text-align: left;
}

@media screen and (max-width: 750px){
    .question-lists {
        width: 100%;
        margin-top: 75px;
    }
    .question-libbon {
        width: 230px;
    }
    .question-list { 
        margin: auto;
        width: 95%;
        margin-bottom: 20px;
    }
}