@charset "UTF-8";

img {
  display: block;
}

/* 既存CSSからの移植 */
#page_mainvisual {
  width: 100%;
  height: 550px;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
#page_mainvisual h2 {
  position: absolute;
  bottom: 160px;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-size: 50px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 1px;
}
#page_mainvisual h2 small {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Helvetica Neue", "Hiragino Kaku Gothic ProN", sans-serif;
  display: block;
  font-size: 20px;
}
#page_mainvisual:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
#page_mainvisual .cap {
  /*background: rgba(120, 120, 120, 0.7);*/
  font-size: 11px;
  color: #fff;
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 0 5px;
  z-index: 2;
}

@media screen and (max-width: 550px) {
  #page_mainvisual {
    height: 332px;
  }
  #page_mainvisual h2 {
    bottom: 120px;
    font-size: 40px;
  }
  #page_mainvisual h2 small {
    font-size: 16px;
  }
}

/* voice */

.voice_intro {
  background-image: url("../img/voice/intro_bg_image.jpg");
  background-repeat: no-repeat;
  background-position: left;
  background-size: cover;
  padding: 30px;
}

.voice_intro .main_title {
  font-size: 20px;
  text-align: center;
}

.voice_intro .main_lead {
  font-size: 26px;
  text-align: center;
}

@media screen and (max-width: 550px) {
  .voice_intro {
    padding: 15px;
  }

  .voice_intro .main_title {
    font-size: 12px;
    text-align: center;
  }

  .voice_intro .main_lead {
    font-size: 14px;
  }
}

.voice_inner {
  width: 92%; /* zuhan1080に合わせる */
  max-width: 1080px; /* zuhan1080に合わせる */
  margin: auto;
  font-size: 18px;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}

.voice_inner .section_title {
  width: 100%;
  position: relative;
  font-size: 55px;
  text-align: left;
  border-bottom: 1px solid #000000;
  line-height: 0.7;
  letter-spacing: 10px;
  padding-left: 80px;
}

.voice_inner .section_title > img {
  position: absolute;
  top: -8px;
  left: -3px;
  /* width: 60px; */
  height: 60px;
}

.voice_inner .section_lead {
  font-size: 20px;
  text-align: center;
}

.voice_inner .section_lead2 {
  font-size: 26px;
  text-align: left;
  color: #985c2f;
  font-weight: bold;
}

.voice_inner .section_sub_title {
  width: 100%;
  position: relative;
  font-size: 30px;
  text-align: left;
  border-bottom: 1px solid #000000;
  line-height: 2;
  padding-left: 80px;
  font-weight: 800;
}

.voice_inner .section_sub_title > img {
  position: absolute;
  top: 3px;
  left: -3px;
  /* width: 60px; */
  height: 60px;
  font-weight: 800;
}

.voice_inner .section_sub_lead {
  font-size: 26px;
  color: #985c2f;
  font-weight: 600;
}

.main_reading {
  font-size: 18px;
}
.main_reading span {
  font-size: 18px;
  font-weight: 900;
  background: linear-gradient(transparent 70%, #f5e0c3 40%);
}

.marker {
  font-weight: bold;
  background: linear-gradient(transparent 50%, rgba(255, 223, 107) 30%);
  display: inline;

  /* 背景の繰り返しを停止 */
  background-repeat: no-repeat;

  /* マーカーの横方向を0にして縮める */
  background-size: 0% 100%;

  /* マーカーが引かれる速度を指定 */
  transition: background-size 1.5s;
}

/* マーカーが引かれる際に付与するクラス */
.marker.on {
  /* 横方向を100%にして、マーカーを引く */
  background-size: 100% 100%;
}

@media screen and (max-width: 550px) {
  .main_reading {
    font-size: 12px;
  }
  .main_reading span {
    font-size: 12px;
    font-weight: 900;
    background: linear-gradient(transparent 70%, #f5e0c3 40%);
    animation: marker-run 1s forwards; /* 1秒かけて再生 */
  }
}

.voice_inner .img_wide {
  position: relative;
}

.voice_inner .img_wide_caption_left,
.voice_inner .img_wide_caption_right {
  position: absolute;
  line-height: 1.6;
  font-size: 12px;
  margin-bottom: 0px !important;
  text-align: right;
}

.voice_inner .img_wide_caption_left {
  color: #fff;
  bottom: 50px;
  left: 15px;
}
.voice_inner .img_wide_caption_right {
  color: #333;
  bottom: 0;
  bottom: -15px;
  right: 15px;
}

.voice_inner .img_flex_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 20px;
}

.voice_inner .img_card {
  width: 48%;
  position: relative;
}

.voice_inner .interview_container {
  border: 1px solid #985c2f;
  padding: 30px 70px;
  position: relative;
  height: 500px;
}

.voice_inner .interview_title {
  max-width: 300px;
}

.voice_inner .interview_contents {
  padding-top: 30px;
}

.voice_inner .interview_img {
  width: 70%;
  position: absolute;
  top: 300px;
  left: 15%;
}

.voice_inner .interview_img > img {
  transform: rotate(-5deg);
}

.voice_inner .interview_img_caption {
  position: absolute;
  bottom: -10px;
  right: 5px;
}

.voice_inner .movie_container {
  position: relative;
}

.voice_inner .movie_intro {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  padding: 10px;
}

.voice_inner .movie_caption {
  position: absolute;
  right: 5px;
}

.voice_inner .voice_movie {
  position: relative;
  height: 610px;
}

/* 1080 x 610 */
.mainMovie {
  position: relative;
}

.voice_movie_btn_play {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 100;
  cursor: pointer;
}

.voice_movie_btn_play img {
  position: absolute;
  height: 100px;
  width: 100px;
  left: 490px;
  top: 255px;
  z-index: 101;
}

.voice_movie_btn_skip a,
.voice_movie_btn_replay a {
  position: absolute;
  right: 25px;
  bottom: 10%;
  background: #888;
  border: 1px solid #fff;
  width: 100px;
  padding: 5px;
  color: #fff;
  line-height: 1.4;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  font-weight: normal;
  font-size: 16px;
  text-align: center;
  z-index: 500;
}

.voice_movie_btn_mute a,
.voice_movie_btn_unmute a {
  position: absolute;
  right: 155px;
  bottom: 10.5%;
  width: 40px;
  z-index: 500;
}

@media screen and (max-width: 550px) {
  .voice_inner {
    font-size: 12px;
  }

  .voice_inner .section_title {
    font-size: 45px;
    letter-spacing: 5px;
    padding-left: 60px;
  }

  .voice_inner .section_title > img {
    top: -4px;
    left: -3px;
    /* width: 45px; */
    height: 45px;
  }

  .voice_inner .section_lead {
    font-size: 12px;
  }

  .voice_inner .section_lead.adjust {
    letter-spacing: -1.5px;
  }

  .voice_inner .section_lead2 {
    font-size: 18px;
    text-align: left;
  }

  .voice_inner .section_sub_title {
    font-size: 14px;
    line-height: 2;
    padding-left: 45px;
  }

  .voice_inner .section_sub_title.adjust {
    letter-spacing: -1.5px;
  }

  .voice_inner .section_sub_title > img {
    top: 1px;
    left: -3px;
    /* width: 35px; */
    height: 35px;
  }

  .voice_inner .img_wide_caption_left,
  .voice_inner .img_wide_caption_right {
    line-height: 1.2;
    font-size: 9px;
  }

  .voice_inner .img_wide_caption_left {
    color: #fff;
    bottom: 15px;
    left: 5px;
  }
  .voice_inner .img_wide_caption_right {
    color: #333;
    bottom: -15px;
    right: 5px;
  }

  .voice_inner .section_sub_lead {
    font-size: 14px;
  }

  .voice_inner .img_flex_container {
    row-gap: 10px;
  }

  .voice_inner .img_card {
    width: 48.5%;
  }

  .voice_inner .interview_container {
    padding: 20px 10px;
    height: 350px;
  }

  .voice_inner .interview_title {
    max-width: 150px;
  }

  .voice_inner .interview_contents {
    padding-top: 20px;
  }

  .voice_inner .interview_img {
    width: 80%;
    top: 270px;
    left: 10%;
  }

  .voice_inner .interview_img_caption {
    font-size: 9px;
  }

  .voice_inner .movie_intro {
    font-size: 22px;
    text-align: center;
    padding: 10px;
  }

  .voice_inner .voice_movie {
    height: 210px;
  }

  /* 358.5 x 210 */
  .mainMovie {
  }

  .voice_movie_btn_play {
  }

  .voice_movie_btn_play img {
    height: 50px;
    width: 50px;
    left: 155px;
    top: 80px;
  }

  .voice_movie_btn_skip a,
  .voice_movie_btn_replay a {
    right: 5px;
    font-size: 12px;
    padding: 5px 1px;
    width: 85px;
  }

  .voice_movie_btn_mute a,
  .voice_movie_btn_unmute a {
    right: 105px;
    bottom: 11.5%;
    width: 30px;
  }
}

/* 位置調整要 */

.mt30 {
  margin-top: 30px;
}

.mt50 {
  margin-top: 50px;
}

.mt_section {
  margin-top: 500px;
}

@media screen and (max-width: 550px) {
  .mt30 {
    margin-top: 20px;
  }

  .mt50 {
    margin-top: 35px;
  }

  .mt_section {
    margin-top: 180px;
  }
}

.caption_right_blk_noborder,
.caption_right_wht_noborder {
  position: absolute;
  line-height: 1.6;
  font-size: 12px;
  bottom: 15px;
  right: 15px;
  color: #333;
  margin-bottom: 0px !important;
  text-align: right;
}

.caption_right_blk_noborder {
  color: #333;
}

.caption_right_wht_noborder {
  color: #fff;
}

@media screen and (max-width: 550px) {
  .caption_right_blk_noborder,
  .caption_right_wht_noborder {
    font-size: 2.2vw;
    line-height: 1.4;
  }
}

.caption_left_blk_noborder,
.caption_left_wht_noborder {
  position: absolute;
  line-height: 1.6;
  font-size: 12px;
  bottom: 11px;
  left: 15px;
  color: #333;
  margin-bottom: 0px !important;
  text-align: left;
}

.caption_left_blk_noborder {
  color: #333;
}

.caption_left_wht_noborder {
  color: #fff;
}

@media screen and (max-width: 550px) {
  .caption_left_blk_noborder,
  .caption_left_wht_noborder {
    font-size: 2.2vw;
    line-height: 1.4;
    bottom: 3px;
    left: 3px;
    letter-spacing: -0.5px;
  }

  .caption_left_wht_noborder.adjust_letter_spacing {
    letter-spacing: -1px;
  }
}

.voice2_bg {
  background-image: linear-gradient(0deg, rgba(255, 255, 255, 1), rgba(210, 202, 174, 1));
}
