@charset "UTF-8";
/*---------------------------------------------------------*/
/* せんだい・宮城フィルムコミッション
/* 「兄を持ち運べるサイズに」特集サイト スタイル               */
/* last 2025.11.4 */
/*---------------------------------------------------------*/
/***		初期設定		***/
/* フォント */
html {
  font-size: 10px; /* initial 10px */
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem; /* default font-size 16px */
  line-height: 1.5;
  color: #000;
}

html,
body {
  margin: 0 auto;
}

p {
  margin: 0 0 1em 0;
  line-height: 1.6;
}

ul {
  list-style: none;
  padding: 0;
}

section {
  position: relative;
  width: 100%;
  word-wrap: break-word;
}

/* イメージレスポンシブ用 */
img {
  max-width: 100%;
}

/*** アンカー処理 ***/
a {
  color: #000;
}

a:hover {
  text-decoration: none;
  color: #464646;
}

a .cinema-thumb,
.hov-anime img {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

a:hover .cinema-thumb,
.hov-anime:hover img {
  opacity: 0.65;
}

/*----------------------------------------------------------
/* define
-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/* 基本包含
/*-----------------------------------------------------------*/
#wrapper {
  margin: 0 auto 0;
  width: 100%;
}

article section {
  margin: 0 auto 0;
  width: 100%;
}

@media screen and (max-width: 1199px) {
  article section {
    padding-right: 15px;
    padding-left: 15px;
  }
}
/*-------------------------------------------------------------------
/*  見出し
--------------------------------------------------------------------*/
.sec_inner h2 {
  text-align: center;
}

/*-----------------------------------------------------------*/
/* ヘッダー */
/*-----------------------------------------------------------*/
header {
  margin: 0 auto 0;
  width: 100%;
  background-image: linear-gradient(to right, #000, #000 8px, transparent 8px);
  background-size: 16px 2px;
  background-position: left bottom;
  background-repeat: repeat-x;
}

header .header-inner {
  position: relative;
  display: flex !important;
  flex-wrap: wrap;
  align-items: flex-start;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 70px;
}

/*** sdメニューボタン ***/
.sitemenu-openbtn {
  cursor: pointer;
  position: fixed;
  right: 20px;
  transition: all 0.2s ease-out;
  opacity: 1;
  z-index: 20;
}

.sitemenu-openbtn.active {
  opacity: 0;
}

/*** sdメニュー スクロール中ボタン ***/
.scroll-openbtn {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

/* SPナビOPENボタン */
.sdmenu-btn {
  display: block;
  position: fixed;
  top: 20px;
  right: 26px;
  cursor: pointer;
  width: 32px;
  height: 42px;
  text-align: center;
  opacity: 0.7;
  transition: 0.2s ease-in-out;
  z-index: 20;
}

.sdmenu-btn:hover {
  opacity: 1;
}

.sdmenu-btn.active {
  opacity: 0;
  pointer-events: none;
}

.sdmenu-btn .menu-label {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  font-family: "Barlow", sans-serif;
  line-height: 1;
  text-align: center;
  font-size: 1rem;
  color: #000;
}

.sdmenu-btn span:nth-of-type(-n+3) {
  display: block;
  position: absolute;
  width: 32px;
  height: 4px;
  left: 0;
  background: #000;
  border-radius: 10px;
  transition: 0.2s ease-in-out;
}

.sdmenu-btn span:nth-child(1) {
  top: 0;
}

.sdmenu-btn span:nth-child(2) {
  top: 12px;
}

.sdmenu-btn span:nth-child(3) {
  top: 24px;
}

.sdmenu-btn.active span:nth-of-type(-n+3) {
  top: 16px;
}

.sdmenu-btn.active span:nth-child(1) {
  transform: rotate(-45deg);
}

.sdmenu-btn.active span:nth-child(2),
.sdmenu-btn.active span:nth-child(3) {
  transform: rotate(45deg);
}

/* メニュー内クローズボタン */
.sitemenu-closebtn {
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 19px;
  transition: all 0.2s ease-out;
  opacity: 0;
  z-index: -1;
}

.sitemenu-closebtn.active {
  opacity: 1;
  z-index: 20;
}

@media screen and (max-width: 767px) {
  header {
    margin: 10px auto 0;
    width: calc(100% - 30px);
  }
  header .header-inner {
    padding: 0 0 10px 0;
    border-radius: 12px;
  }
  /* sdメニューボタン */
}
@media screen and (min-width: 768px) {
  header .header-inner {
    padding: 0 24px;
  }
  /* SPナビOPENボタン */
  .sdmenu-btn {
    top: 10px;
  }
}
/*-------------------------------------------------------------------
/*  ボタンナビ／常時右上・追従
--------------------------------------------------------------------*/
/* メニュー表示マスク */
.sd-sitemenu-wrap {
  visibility: hidden;
  position: fixed;
  top: 2px;
  right: 0;
  padding: 10px;
  width: auto;
  background-color: #fff;
  border-radius: 20px;
  opacity: 0;
  transition: all 0.2s ease-out;
  transform-origin: top right;
  transform: scale(10%);
  z-index: 20;
}

/* コンテンツメニューマスク */
.sd-sitemenu-wrap.active {
  visibility: visible;
  opacity: 1;
  transform: scale(100%);
}

.sd-sitemenu-wrap nav {
  position: relative;
  padding: 32px 32px 32px 32px;
  width: 100%;
  height: auto;
  border: dashed 2px #000;
  border-radius: 10px;
}

/* メニュー */
.sd-sitemenu-wrap .regular-menu li {
  padding-bottom: 6px;
  background-image: linear-gradient(to right, #000, #000 8px, transparent 8px);
  background-size: 16px 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
}

.sd-sitemenu-wrap .regular-menu li:nth-of-type(n+2) {
  margin-top: 20px;
}

.sd-sitemenu-wrap .regular-menu .officiallink {
  margin-top: 45px !important;
}

.sd-sitemenu-wrap .regular-menu .officiallink img {
  display: inline-block;
  margin-right: 6px;
  vertical-align: baseline;
}

.sd-sitemenu-wrap .regular-menu li a {
  font-size: 1.5rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .footer-sitemenu-wrap nav .contents-menu-box {
    display: none;
  }
  /* メニュー表示マスク */
}
@media screen and (min-width: 768px) {
  /* メニュー表示マスク */
  /* PCグロナビだけの基本情報表示 */
  .nav-infobox {
    width: 350px;
  }
  .nav-infobox .nav-logo {
    margin: 0 0 30px 0;
  }
  .nav-infobox .nav-info {
    margin: 0 0 0 0;
    line-height: 1.8;
    font-size: 2rem;
  }
  .sd-sitemenu-wrap .close-btn {
    position: absolute;
    top: 5px;
    right: 8px;
  }
  /* メニュー */
  .sd-sitemenu-wrap .regular-menu li a {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1619px) {
  /* メニュー表示マスク */
}
@media print, screen and (min-width: 1620px) {
  /* メニュー表示マスク */
}
/*-------------------------------------------------------------------
/*  トップページグローバルナビ／ ラージデバイス上のみ表示
--------------------------------------------------------------------*/
.ld-sitemenu-wrap {
  display: none;
}

@media print, screen and (min-width: 1200px) {
  .ld-sitemenu-wrap {
    position: absolute;
    bottom: -50px;
    left: 0;
    display: flex !important;
    flex-wrap: wrap;
    align-items: flex-start;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0;
    width: 100%;
    z-index: 1;
  }
  .ld-sitemenu-wrap .contents-menu > ul {
    display: flex !important;
    flex-wrap: wrap;
    align-items: flex-start;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0;
    width: 100%;
  }
  .ld-sitemenu-wrap .contents-menu > ul > li:nth-of-type(n+2) {
    margin-left: 20px;
  }
  .ld-sitemenu-wrap .contents-menu > ul > li a img {
    transition: all 0.2s ease-out;
  }
  .ld-sitemenu-wrap .contents-menu > ul > li a:hover img {
    filter: drop-shadow(0px 6px 2px #F9D949);
  }
}
/*-------------------------------------------------------------------
/*  メインタイトル（オープニング）
--------------------------------------------------------------------*/
/* 包含 */
#sec_opening {
  margin: 0 auto 0;
  padding: 0 0 0 0;
  background-color: #F9D949;
}

#sec_opening .sec_inner {
  margin: 0 auto 0;
}

h1 {
  margin: 0 0 0 0;
  text-align: center;
  background-color: #F9D949;
}

/*-------------------------------------------------------------------
/*  あらすじ
--------------------------------------------------------------------*/
/* 包含 */
#sec_synopsis {
  margin: 0 auto 0;
}

#sec_synopsis .sec_inner {
  margin: 0 auto 0;
  max-width: 670px;
}

/* 見出し */
#sec_synopsis h2 {
  margin: 0 auto 25px;
  font-size: 3rem;
  font-weight: bold;
}

#sec_synopsis h3 {
  margin: 0 auto 33px;
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
}

/* キャスト・スタッフリスト用 */
#sec_synopsis .list-md {
  margin: 0 auto 14px;
  text-align: left;
}

/* あらすじ */
.synopsis-sent {
  position: relative;
  margin: 0 0 110px 0;
  line-height: 1.8;
  font-size: 1.5rem;
}

.synopsis-sent .dash {
  display: inline-block;
  margin: 0 8px 0 8px;
  transform: scaleX(2);
}

/*** キャスト・スタッフ ***/
.cast-staff-list {
  margin: 0 0 67px 0;
  width: 100%;
}

.cast-staff-list > li {
  line-height: 1.6;
  font-size: 1.5rem;
}

/*** キャスト ***/
.cast-list > li > span {
  font-size: 1.2rem;
}

/*** スタッフ ***/
.staff-list > li:nth-of-type(n+2) {
  margin-top: 10px;
}

.cast-staff-list > li > span {
  font-size: 1.4rem;
  font-weight: bold;
}

.cast-staff-list > li .nobold {
  font-weight: normal !important;
}

.cast-staff-list .sepa {
  margin-bottom: 20px;
}

/* youtube埋め込み */
.youtube-box {
  position: relative;
  margin: 0 auto 0;
  width: 100%;
  max-width: 575px;
  padding-top: 56.25%;
}

.youtube-box > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  /* 包含 */
  #sec_synopsis {
    background-color: #F6F6F6;
  }
  #sec_synopsis .sec_inner {
    padding: 36px 0 84px 0;
  }
  /*** スタッフリスト ***/
  .staff-list.cast-staff-list > br {
    display: none !important;
  }
  /** あらすじ 続きを読む処理 **/
  .synopsis-sent {
    max-height: 300px;
    transition: max-height 0.8s ease-out;
    overflow: hidden;
  }
  .synopsis-sent.active {
    max-height: 1000px;
    overflow: visible;
  }
}
@media screen and (min-width: 768px) {
  /* 包含 */
  #sec_synopsis {
    background: url("../images/home/synopsis_bg.png") center center/cover no-repeat, #F6F6F6;
  }
  #sec_synopsis .sec_inner {
    padding: 85px 0 90px 0;
  }
  /* 見出し */
  #sec_synopsis h2 {
    font-size: 4rem;
  }
  /* あらすじ */
  .synopsis-sent {
    margin: 0 0 110px 0;
    letter-spacing: -0.06em;
    font-size: 1.8rem;
  }
  .synopsis-sent .tsume {
    letter-spacing: -0.4em;
  }
  /* キャスト・スタッフ */
  .cast-staff-list > li {
    font-size: 1.8rem;
  }
  .cast-staff-list > li > span {
    font-size: 1.7rem;
  }
  /* スタッフリスト */
  .staff-list.cast-staff-list > li {
    display: inline-block;
  }
  /* 製作幹事だけインライン処理 */
  .staff-list.cast-staff-list .inline {
    display: inline;
  }
  .staff-list.cast-staff-list .lmargin {
    padding-left: 1em;
  }
}
@media print, screen and (min-width: 1200px) {
  /* 包含 */
  #sec_synopsis .sec_inner {
    padding: 170px 0 177px 0;
  }
}
/*-------------------------------------------------------------------
/*  ロケ地紹介
--------------------------------------------------------------------*/
/* 包含 */
#sec_loca-intro {
  margin: 0 auto 0;
  background-color: #F9D949;
}

#sec_loca-intro .sec_inner {
  margin: 0 auto 0;
  max-width: 1130px;
}

#sec_loca-intro h2 {
  margin: 0 auto 92px;
}

/*** スライド ***/
#main-location-slides h3 {
  margin: 0 0 8px 0;
  padding-bottom: 6px;
  font-size: 2.2rem;
  font-weight: bold;
  border-bottom: dashed 2px #000;
}

#main-location-slides h3 span {
  font-size: 1.6rem;
}

#main-location-slides .place {
  margin: 0 0 10px 0;
  font-size: 1.4rem;
}

#main-location-slides .gglmap-link {
  margin: 0 0 23px 0;
}

#main-location-slides .gglmap-link a {
  text-decoration: none;
  font-size: 1.7rem;
  font-weight: bold;
  color: #8C93E8;
}

#main-location-slides .gglmap-link a img {
  display: inline-block !important;
  margin-right: 8px;
}

/* ロケ地スライド枠 */
.slide-card {
  position: relative;
}

.slide-card .loca-slide {
  padding: 10px;
  background-color: #fff;
  border: dashed 2px #000;
}

#main-location-slides .loca-slide .slick-slide {
  margin: 0 0 0 0;
}

#main-location-slides .loca-slide .slick-slide a img {
  transition: all 0.2s ease-out;
}

#main-location-slides .loca-slide .slick-slide a:hover img {
  opacity: 0.7;
}

/** slick style override **/
/* ドット */
#main-location-slides .slick-dots li button::before {
  content: "●";
  font-size: 13px;
  color: #fff;
  opacity: 1;
}

#main-location-slides .slick-dots li.slick-active button::before {
  color: #000;
}

#main-location-slides .loca-slide .slick-slide img {
  margin: 0 auto 0;
}

/** lightbox min style override **/
#anisize-top #lightbox .lb-data .lb-details {
  width: 90%;
}

#anisize-top #lightbox .lb-data .lb-caption {
  display: inline-block;
  margin-bottom: 6px;
  line-height: 1.4;
  font-weight: normal;
}

/* 紹介文 */
.loca-place-intro {
  margin: 0 0 0 0;
}

.loca-place-intro .notes {
  font-weight: bold;
}

/*** おすすめウインドウ ***/
/* オープンボタン */
.osusume-openbtn {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  transition: all 0.3s ease-out;
  opacity: 1;
}

.osusume-openbtn.active {
  opacity: 0;
}

/* ウインドウ */
.osusume-box {
  visibility: hidden;
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  width: 100%;
  height: auto;
  background-color: #fff;
  transition: all 0.2s ease-out;
  transform-origin: top right;
  transform: scale(10%);
  border-radius: 20px;
  opacity: 0;
  z-index: 11;
}

.osusume-box.active {
  visibility: visible;
  opacity: 1;
  transform: scale(100%);
}

.osusume-box .inner {
  padding: 14px 22px;
  width: 100%;
  height: auto;
  border: dashed 2px #000;
  border-radius: 16px;
}

.osusume-box .osusume-title {
  margin: 0 0 6px 0;
  padding-bottom: 4px;
  font-size: 1.6rem;
  font-weight: bold;
  border-bottom: dashed 2px #000;
}

.osusume-box .osusume-title img {
  display: inline-block !important;
  margin: -5px 5px 0 5px;
}

.osusume-box .place-name {
  margin: 0 0 6px 0;
  font-size: 2rem;
  font-weight: bold;
}

.osusume-box .place-name .sml {
  font-size: 1.5rem;
}

.osusume-box .place {
  margin: 0 0 6px 0;
  font-size: 1.4rem;
}

.osusume-box .gglmap-link {
  margin: 0 0 14px 0 !important;
  font-size: 1.4rem;
}

.osusume-box .gglmap-link a {
  text-decoration: none;
  font-size: 1.7rem;
  font-weight: bold;
  color: #8C93E8;
}

.osusume-box .photo {
  margin: 0 0 20px 0;
}

.osusume-box .place-intro {
  margin: 0 0 0 0;
  font-size: 1.4rem;
}

/* おすすめクローズボタン */
.osusume-close-btn {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 2.8rem;
}

@media screen and (max-width: 767px) {
  /* 包含 */
  #sec_loca-intro .sec_inner {
    padding: 30px 0 150px 0;
  }
  #sec_loca-intro h2 {
    margin: 0 auto 35px;
    width: 56.6%;
  }
  /* スライド誘導案内 */
  .locacard-scroll-guide {
    margin: 0 0 12px 0;
    font-size: 1.6rem;
  }
  /* ロケ地スライド枠 */
  .slide-card {
    position: relative;
  }
  /** slick style override **/
  /* スライド間隔 */
  #main-location-slides .slick-slide {
    margin-right: 10px;
    margin-left: 10px;
  }
  /* 親スライド送りナビ */
  #main-location-slides .slide-arrow {
    cursor: pointer;
    width: 36px;
    transition: all 0.2s ease-out;
    opacity: 0.6;
    z-index: 1;
  }
  #main-location-slides .slide-arrow:hover {
    opacity: 1;
  }
  #main-location-slides .slide-arrow.prev-arrow {
    position: absolute;
    bottom: 20px;
    left: 2px;
    transform: translateY(50%);
  }
  #main-location-slides .slide-arrow.next-arrow {
    position: absolute;
    right: 2px;
    bottom: 20px;
    transform: translateY(50%);
  }
  /* おすすめウインドウが表示された場合は送りボタンの表示OFF */
  #main-location-slides .slide-arrow.active {
    opacity: 0;
    pointer-events: none !important;
  }
}
@media screen and (min-width: 768px) {
  /* 包含 */
  #sec_loca-intro .sec_inner {
    padding: 70px 0 177px 0;
  }
  /*** スライド ***/
  #main-location-slides {
    position: relative;
    display: flex !important;
    flex-wrap: wrap;
    align-items: flex-start;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
  }
  #main-location-slides::after {
    content: "";
    width: 30%;
    height: 0;
  }
  /* 親スライド送りナビ／PC非表示 */
  #main-location-slides .slide-arrow {
    display: none !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  #main-location-slides > div {
    width: 48%;
  }
  #main-location-slides > div:nth-of-type(n+3) {
    margin-top: 90px;
  }
}
@media print, screen and (min-width: 1200px) {
  /*** スライド ***/
  #main-location-slides > div {
    width: 30%;
  }
  #main-location-slides > div:nth-of-type(n+4) {
    margin-top: 90px;
  }
}
/*-------------------------------------------------------------------
/*  監督・原作者インタビュー
--------------------------------------------------------------------*/
/* 包含 */
#sec_interview {
  margin: 0 auto 0;
  background-color: #F6F6F6;
}

#sec_interview .sec_inner {
  margin: 0 auto 0;
  max-width: 845px;
}

#sec_interview h2 {
  margin: 0 auto 263px;
}

/** インタビュー **/
.interview-box {
  position: relative;
  width: 100%;
  background-color: #F9D949;
}

.interview-box .interview-md {
  font-size: 1.4rem;
  font-weight: bold;
}

.interview-box .interview-md span {
  display: inline-block;
  font-size: 2rem;
}

.interview-box .interview-sent {
  position: relative;
  margin: 0 0 0 0;
  line-height: 1.8;
  font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
  /* 包含 */
  #sec_interview .sec_inner {
    padding: 46px 0 93px 0;
  }
  #sec_interview h2 {
    margin: 0 auto 122px;
    width: 94%;
  }
  /* 監督 */
  .interview-box.director {
    margin: 0 0 110px 0;
    padding: 26px 20px 26px 20px;
    border-radius: 0 0 10px 10px;
  }
  .interview-box.director::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: #F9D949;
    border-radius: 20px 20px 0 0;
    transform: rotate(-10deg);
    transform-origin: left bottom;
  }
  /* 著者 */
  .interview-box.author {
    margin: 0 0 0 0;
    padding: 26px 20px 26px 20px;
  }
  .interview-box.author::before {
    position: absolute;
    top: -59px;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 60px;
    background: url("../images/home/interview-parts_bookhead.svg") center bottom/110% no-repeat;
  }
  .interview-box.author::after {
    position: absolute;
    bottom: -79px;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 80px;
    background: url("../images/home/interview-parts_bookbottom.svg") center top/110% no-repeat;
  }
  .interview-box .interview-md {
    margin: 0 0 10px 0;
  }
  .interview-box .interview-md span {
    margin: 0 0 0 14px;
  }
  /** インタビュー 続きを読む処理 **/
  .interview-sent {
    max-height: 300px;
    transition: max-height 0.8s ease-out;
    overflow: hidden;
  }
  #interview-sent-director.active,
  #interview-sent-author.active {
    max-height: 1000px;
    overflow: visible;
  }
}
@media screen and (min-width: 768px) {
  /* 包含 */
  #sec_interview .sec_inner {
    padding: 80px 0 216px 0;
  }
  /** インタビュー **/
  /* 監督 */
  .interview-box.director {
    margin: 0 0 110px 0;
    padding: 60px 88px 74px 88px;
    border-radius: 0 0 20px 20px;
  }
  .interview-box.director::before {
    content: "";
    position: absolute;
    top: -90px;
    left: 0;
    width: 100%;
    height: 90px;
    background-color: #F9D949;
    border-radius: 20px 20px 0 0;
    transform: rotate(-10deg);
    transform-origin: left bottom;
  }
  /* 著者 */
  .interview-box.author {
    margin: 0 0 0 0;
    padding: 76px 88px 52px 88px;
  }
  .interview-box.author::before {
    position: absolute;
    top: -59px;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 60px;
    background: url("../images/home/interview-parts_bookhead.svg") center bottom/110% no-repeat;
  }
  .interview-box.author::after {
    position: absolute;
    bottom: -79px;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 80px;
    background: url("../images/home/interview-parts_bookbottom.svg") center top/cover no-repeat;
  }
  .interview-box .interview-md {
    margin: 0 0 23px 0;
  }
  .interview-box .interview-md span {
    margin-left: 2em;
  }
  .interview-box .interview-sent {
    font-size: 1.8rem;
  }
}
/*-------------------------------------------------------------------
/*  撮影関係者コメント
--------------------------------------------------------------------*/
#sec_comment {
  margin: 0 auto 0;
}

#sec_comment .sec_inner {
  margin: 0 auto 0;
  max-width: 886px;
}

#sec_comment h2 {
  margin: 0 auto 30px;
  text-align: center;
}

/*** コメントコンテンツ ***/
/* 包含 */
.comment-wrap {
  width: 100%;
}

.comment-wrap > div .photo {
  text-align: center;
}

.comment-wrap > div .comment-sent > span {
  display: block;
  margin: 0 0 8px 0;
  line-height: 1.5;
  font-size: 2rem;
  font-weight: bold;
}

.comment-wrap > div .comment-sent span > span {
  font-size: 1.5rem;
}

.comment-wrap > div .comment-sent {
  margin: 0 0 0 0;
  line-height: 1.8;
  font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
  /* 包含 */
  #sec_comment .sec_inner {
    padding: 42px 0 42px 0;
  }
  #sec_comment .sec_inner h2 {
    margin: 0 auto 72px;
    width: 78%;
  }
  /*** コメントコンテンツ ***/
  .comment-wrap > div:nth-of-type(n+2) {
    margin-top: 70px;
  }
  .comment-wrap .comment-box .photo {
    margin: 0 auto 20px;
  }
}
@media screen and (min-width: 768px) {
  /* 包含 */
  #sec_comment .sec_inner {
    padding: 57px 0 70px 0;
  }
  /*** コメントコンテンツ ***/
  .comment-wrap > div {
    display: flex !important;
    flex-wrap: wrap;
    align-items: flex-start;
    align-items: flex-start;
    justify-content: space-between;
  }
  .comment-wrap .comment-box.order .comment-sent {
    order: 1;
  }
  .comment-wrap .comment-box.order .photo {
    order: 2;
  }
  .comment-wrap > div .comment-sent {
    width: calc(100% - 320px);
  }
  .comment-wrap .comment-box.box1 .comment-sent {
    margin-top: 128px;
  }
  .comment-wrap .comment-box.box2 {
    align-items: center;
    padding: 30px 0;
  }
  .comment-wrap .comment-box.box3 {
    align-items: center;
    padding: 0 0 30px 0;
  }
  .comment-wrap > div .comment-sent {
    line-height: 1.6;
    font-size: 1.8rem;
  }
}
/*-------------------------------------------------------------------
/*  あらすじ、監督・原作者インタビューの続きを読むエフェクト
--------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .read-more-mask {
    position: absolute;
    top: 198px;
    left: 0;
    padding: 30px 0;
    width: 100%;
    text-align: center;
    opacity: 1;
    transition: all 0.4s ease-out;
  }
  .read-more-mask.active {
    opacity: 0;
    pointer-events: none !important;
  }
  .read-more-mask .read-more {
    cursor: pointer;
    display: inline-block;
    padding: 12px 30px;
    width: 60%;
    line-height: 1;
    font-size: 1.8rem;
    font-weight: bold;
    border-radius: 20px;
    background-color: #fff;
  }
  /* あらすじ マスク色 */
  #sec_synopsis .read-more-mask {
    background: linear-gradient(rgba(246, 246, 246, 0), rgb(246, 246, 246));
  }
  /* 監督・原作者インタビュー マスク色 */
  #sec_interview .read-more-mask {
    background: linear-gradient(rgba(249, 217, 73, 0), rgb(249, 217, 73));
  }
}
@media screen and (min-width: 768px) {
  /* PCでは続きを読む処理しない */
  .read-more-mask {
    display: none;
  }
}
/*-------------------------------------------------------------------
/*  ロケ地マップ
--------------------------------------------------------------------*/
#sec_loca-map {
  margin: 0 auto 0;
  background-color: #F9D949;
}

#sec_loca-map .sec_inner {
  margin: 0 auto 0;
  max-width: 834px;
}

#sec_loca-map h2 {
  margin: 0 auto 92px;
  text-align: center;
}

/* マップ */
.map-box {
  width: 100%;
}

/* ボタン */
.locamap-links > a {
  display: flex !important;
  flex-wrap: wrap;
  align-items: flex-start;
  align-items: center;
  justify-content: center;
  padding: 8px;
  width: 278px;
  background-color: #fff;
  border-radius: 50px;
  box-shadow: 9px 4px 0px 0px rgb(0, 0, 0);
  transition: all 0.2s ease-out;
}

.locamap-links > a:hover {
  opacity: 0.6;
}

.locamap-links > a > span {
  display: flex !important;
  flex-wrap: wrap;
  align-items: flex-start;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 2rem;
  font-weight: bold;
  border: dashed 2px #000;
  border-radius: 50px;
}

@media screen and (max-width: 767px) {
  /* 包含 */
  #sec_loca-map .sec_inner {
    padding: 55px 0 65px 0;
  }
  #sec_loca-map h2 {
    margin: 0 auto 34px;
    width: 65%;
  }
  /* マップ */
  .map-box {
    margin: 0 auto 53px;
  }
  /* ボタン */
  .locamap-links > a {
    margin: 0 auto 0;
  }
  .locamap-links > a:nth-of-type(n+2) {
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) {
  /* 包含 */
  #sec_loca-map .sec_inner {
    padding: 46px 0 165px 0;
  }
  /* マップ */
  .map-box {
    margin: 0 auto 92px;
  }
  /* ボタン */
  .locamap-links {
    display: flex !important;
    flex-wrap: wrap;
    align-items: flex-start;
    align-items: center;
    justify-content: space-around;
  }
}
/*-----------------------------------------------------------*/
/* フッター */
/*-----------------------------------------------------------*/
footer {
  margin: 0 auto 0;
  background-color: #F9D949;
  background-image: linear-gradient(to right, #000, #000 8px, transparent 8px);
  background-size: 16px 2px;
  background-position: left top;
  background-repeat: repeat-x;
}

footer .ft-inner {
  display: flex !important;
  flex-wrap: wrap;
  align-items: flex-start;
  align-items: center;
  justify-content: center;
  height: 75px;
}

/*** 画面右フロートボタン ***/
.side-float-nav {
  position: fixed;
  text-align: center;
  z-index: 20;
  opacity: 1;
  transition: all 0.2s ease-out;
}

/** キャンペーンボタン（上下ふわふわ） **/
.campaign-btn {
  display: block;
  margin: 0 auto 15px;
  animation: fuwafuwa 3s ease-in-out infinite alternate;
}

@keyframes fuwafuwa {
  0% {
    transform: translate(0px, 0px);
  }
  50% {
    transform: translate(0px, -7px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
/* ページ先頭に戻る */
/*
#pagetop-button img{
  filter:drop-shadow(3px 3px 2px rgba(100, 100, 100, 0.2));
}
*/
@media screen and (max-width: 767px) {
  /*** 画面右フロートボタン ***/
  .side-float-nav {
    right: 12px;
    bottom: 15px;
    width: 90px;
  }
}
@media screen and (min-width: 768px) {
  footer .ft-inner {
    height: 75px;
  }
  /*** 画面右フロートボタン ***/
  .side-float-nav {
    right: 2%;
    bottom: 2%;
    width: 110px;
  }
}
/* 汎用スタイル */
.mb0 {
  margin-bottom: 0 !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

/*-------------------------------------------------------------------
/*  過去支援作品の追加スタイル
--------------------------------------------------------------------*/
/*-------------------------------------------------------------------
/*  
--------------------------------------------------------------------*/
/* アンカー色 */
#result-works-cont main a {
  color: #1963c3;
}

#result-works-cont main .wp-block-button__link.has-background {
  color: #fff;
}/*# sourceMappingURL=style.css.map */