@charset "UTF-8";

* {
  box-sizing: border-box;
}

.pc{
  display: block;
}

.sp{
  display: none;
}

/* MV */
.mv {
    margin-bottom: 100px;
}
/* MV */

/* イントロ*/
.movie_intro{
    margin-bottom: 70px;
}

.movie_intro p:first-child{
    font-weight: bold;
}

.movie_intro p{
    font-size: 24px;
    text-align: center;
}

/* レビューセクション */
.review-section {
    margin-bottom: 100px;
}

/* 動画コンテンツ */
.movie-container {
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 auto 70px;
    border-radius: 8px;
    padding: 0 7vw;
    /* background-image: url('https://www.infirmiere.co.jp/img/usr/feature/fea_tensaipianist_nursearuarumovie/movie-bg.png'); */
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.video-thumbnail:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 70px;
    background: #ff0000;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.play-button:hover {
    background: #cc0000;
    transform: translate(-50%, -50%) scale(1.05);
}

.play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 25px solid white;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    margin-left: 3px;
}

/* 動画タイトル */
.video-title {
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-left: -60px;
}

.video-title::before {
    content: '';
    width: 60px;
    height: 60px;
    background: url('https://www.infirmiere.co.jp/img/usr/feature/fea-tensaipianist-realreview25ss/icon.png') no-repeat center center;
    background-size: contain;
    display: inline-block;
}

/* モーダルスタイル */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    width: 60%;
    max-width: 1200px;
    aspect-ratio: 16/9;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: scale(1);
}

.close-btn {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    z-index: 10001;
}

.close-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.youtube-player {
    width: 100%;
    height: 100%;
    border: none;
    margin: 0;
    padding: 0;
    display: block;
}

@media (min-width: 769px) {
    .youtube-player {
        width: 100%;
        height: 100%;
        border: none;
        margin: 0;
        padding: 0;
        display: block;
    }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    .review-section {
        margin-bottom: 70px;
    }

    .video-title {
        font-size: 28px;
        gap: 8px;
        margin-bottom: 5px;
        margin-left: -32px;
    }

    .video-title::before{
        width: 32px;
        height: 32px;
    }

    .modal-content {
        width: 95%;
    }

    .close-btn {
        top: -40px;
        font-size: 24px;
        width: 35px;
        height: 35px;
        z-index: 10001;
    }

    .play-button {
        width: 50px;
        height: 35px;
        border-radius: 6px;
    }

    .play-button::after {
        border-left-width: 12px;
        border-top-width: 8px;
        border-bottom-width: 8px;
    }

    .youtube-player {
        border-radius: 0;
        margin: 0;
        padding: 0;
        display: block;
        height: 100% !important;
        width: 100% !important;
    }

    .movie-container{
        margin: 0 -35px 30px;
        padding: 0 10vw;
    }
}

/* アニメーション */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal.show {
    animation: fadeIn 0.3s ease;
}
/* 動画コンテンツ */

/* -----------------
    タレント紹介
----------------- */

.talent-container{
    margin: 150px 0;
}

.talent-container h2 {
    font-family: "M PLUS 1", serif;
    font-size: 30px;
    font-weight: bold;
    color: #000;
    text-align: center;
    line-height: 1em;
    margin: 0 auto 30px;
    position: relative;
    display: table;
    padding: 0 50px;
}

.talent-container h2:before {
    content: '';
    width: 30px;
    height: 3px;
    background: #000;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.talent-container h2:after {
    content: '';
    width: 30px;
    height: 3px;
    background: #000;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.talent-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.talent-wrap .talent-img {
    width: 300px;
    margin-right: 30px;
}

.talent-wrap .talent-prof {
    font-family: YuGothic, "Yu Gothic Medium", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin-left: 30px;
}

.talent-wrap .talent-prof h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 20px;
    line-height: 1.6em;
}

.talent-wrap .talent-prof dl {
    margin-bottom: 30px;
}

.talent-wrap .talent-prof dl dt {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.talent-wrap .talent-prof dl dd {
    font-size: 14px;
}

.talent-wrap .talent-prof dl:last-child {
    margin-bottom: 0;
}

@media only screen and (max-width: 480px) {
    .talent-container {
        margin: 70px 0;
}
}

@media only screen and (max-width: 480px) {
    .talent-container h2 {
    margin: 0 auto 30px;
    font-size: 18px;
}
}

@media only screen and (max-width: 768px) {
     .talent-wrap {
      display: block;
    }
  }

  @media only screen and (max-width: 768px) {
     .talent-wrap .talent-img {
      width: 280px;
      margin: 0 auto;
    }
  }

  @media only screen and (max-width: 480px) {
     .talent-wrap .talent-img {
    width: 240px;
}
  }
  
  @media only screen and (max-width: 768px) {
     .talent-wrap .talent-prof {
      width: 380px;
      margin: 30px auto 0;
    }
  }
  
  @media only screen and (max-width: 480px) {
     .talent-wrap .talent-prof {
      width: 100%;
      margin: 15px auto 0;
    }
  }

  @media only screen and (max-width: 480px) {
     .talent-wrap .talent-prof h3 {
      font-size: 14px;
    }
  }

  @media only screen and (max-width: 480px) {
     .talent-wrap .talent-prof dl dt {
      font-size: 14px;
    }
  }

   .talent-wrap .talent-prof dl dd {
    font-size: 14px;
  }

  @media only screen and (max-width: 480px) {
     .talent-wrap .talent-prof dl dd {
      font-size: 12px;
    }
  }


/* -----------------
    商品紹介
----------------- */

.product_intro h2{
    font-size: 24px;
    text-align: center;
    margin-bottom:10px;
}
.product_list{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* 2列を等分割 */
    grid-gap: 1rem; /* 列間の間隔 */
    margin-bottom: 70px;
}

.product_item{
    background-color: #F8F9FA;
    border-radius: 25px;
}

.product_item a{
    display: block;
    width: 100%;
    height: auto;
    padding: 20px;
    text-decoration: none;
    color: #000;
    line-height: 1.2;
}

.product_item img{
    width: 60%;
    margin: 0 auto 20px;
    display: block;
}

.product_item p{
    font-size: 16px;
}

/* -----------------
    タレント紹介
----------------- */

/* -----------------------------------------------------------------
    media query(看護師あるある×天才ピアニストのオリジナルコンテンツ)
----------------------------------------------------------------- */

.pianist-contents{
	text-align: center;
}

@media only screen and (max-width: 969px) {
    .pianist-contents {
      margin: 60px 0;
    }
  }

  @media only screen and (max-width: 768px) {
    .pianist-contents {
      margin: 0;
    }
  }

  .pianist-contents h2 {
    font-size: 30px;
    font-weight: bold;
    /* font-family: "M PLUS 1", serif; */
    color: #000;
    text-align: center;
    line-height: 1em;
    margin: 0 auto 30px;
    position: relative;
    display: inline-block;
    padding: 0 50px;
  }

  @media only screen and (max-width: 480px) {
    .pianist-contents h2 {
      font-size: 18px;
      /* font-size: 3.6vw; */
    }
  }

  .pianist-contents h2:before {
    content: '';
    width: 30px;
    height: 3px;
    background: #000;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }

  .pianist-contents h2:after {
    content: '';
    width: 30px;
    height: 3px;
    background: #000;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }

  @media screen and (min-width: 668px) {
    .sp {
      display: none;
    }

  .bnr {
      margin-bottom: 30px;
  }

  .bnr-2row{
    display: flex;
  }

  .bnr-2row li:nth-child(odd) {
        margin-right: 2%;
}

  .banners{
      width: 100%;
      display: flex;
      padding-bottom: 5px;
      margin-bottom: 30px;
  }

  .banners .bnr {
      color: #fff;
      margin: 5px;
      border-radius: 5px;
  }

}

  @media screen and ( max-width:667px ){/*  追加 */
  .pc {
      display: none;
    }

  .pianist-contents {
        margin: 0 -30px;
    }

  .pianist-contents h2 {
    font-size: 18px;
}

.bnr,
  ul.bnr-2row li {
    margin-bottom: 20px;
}

.banners .pc {
    display: none;
}

.banners .bnr,
.banners ul.bnr-2row li {
    margin-bottom: 20px;
}

.banners{
    display: flex;              /* フレックスボックスにする */
    flex-wrap: wrap;
    justify-content:center;
}

.banners .bnr {
    padding: 2px;
    color:  #fff;               /* 文字色 */
    margin:  5px;              /* 外側の余白 */
    border-radius:  5px;        /* 角丸指定 */
    font-size:  30px;           /* 文字サイズ */
    width: 45%;               /* 幅指定 */
    text-align:  center;
}

}
/* -----------------------------------------------------------------
    media query(看護師あるある×天才ピアニストのオリジナルコンテンツ)
----------------------------------------------------------------- */


/*--------------------------
スマホ　640px以下の表示の場合
--------------------------*/
@media screen and ( max-width:520px ){/* SP */

.pc{
    display: none;
}

.sp{
    display: block;
}

h2{
    background: none;
}

/* ---------------
       MV
----------------- */
.mv{
    margin-bottom: 50px;
}

/* ---------------
    イントロ
----------------- */
.movie_intro{
    margin-bottom: 50px;
}

.movie_intro p {
    font-size: 18px;
    text-align: center;
    line-height: 1.4;
}

/* ---------------
    商品紹介
----------------- */
.product_intro h2{
    font-size: 18px;
    line-height: 1.3;
    background-color: none;
}

.product_list{
    grid-template-columns: 1fr 1fr;
    grid-gap: 0.5rem;
}

.product_item a{
    padding: 15px;
}

.product_item img{
    width: 80%;
    margin-bottom: 15px;
}

.product_item p{
    font-size: 14px;
}


/* -----------------
     タレント紹介
----------------- */
.talent_intro{
	margin-bottom: 8%;
}

.talent_desc{
    margin-left: 1%;
    padding: 0 1%;
}

.talent_desc h2{
    font-size: 7vw;
    margin-bottom: 20px;
    background-color: none;
}

.talent_desc h3{
    font-size: 5.5vw;
    margin-bottom: 20px;
    padding: 0 1%;
    text-align: center;
    line-height: 1.2;
}

.talent_desc h4{
    font-size: 5vw;
    }

.talent_desc_inner{
    margin-left: 0px;
}

.talent_desc_inner p{
    font-size: 4vw;
    line-height: 1.4;
}
}