@charset "utf-8";

/* teaser */
.contents_wrap {
  display: block;
  overflow-x: hidden;
}
.sidenav {
  display: none;
}
.maincontents {
  width: 100%;
}
.main {
  width: 100%;
  padding-top: 60px;
}
.mv {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
}
@media screen and (min-width: 769px) {
  .contents_wrap {
    display: flex;
    min-width: 1366px;
  }
  .sidenav {
    position: relative;
    display: block;
    width: 243px;
    border-right: 1px solid #C4C4C4;
    /* background: #FFFFFF; */
    background: url(../img/teaser3/bg_ptn1.jpg) center top;
  }
  .sidenav_inner {
    position: relative;
  }
  .sidenav_contents {
    position: sticky;
    top: 0;
  }
  .sidenav_contents.scrolled {
    position: absolute;
    top: auto;
    bottom: 0;
  }
  .spheader {
    display: none;
  }
  .btn_drawer {
    display: none;
  }
  .maincontents {
    /*width: calc(100% - 300px);*/
    width: 100%;
    padding-top: 0;
  }
  .main {
    width: 100%;
    padding-top: 0;
  }
}

.spheader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  padding: 9px 0 0 10px;
  box-shadow: 0 3px 3px rgba(0,0,0,.16);
  background: #fff;
  z-index: 998;
}
.spheader_logo {
  width: 100px;
  height: 42px;
}

.btn_drawer {
  position: fixed;
  top: 8px;
  right: 4px;
  display: block;
  width: 50px;
  height: 46px;
  z-index: 1000;
  cursor: pointer;
}
.btn_drawer span {
  position: absolute;
  left: 8px;
  display: inline-block;
  width: 34px;
  height: 4px;
  border-radius: 2px;
  background: #797979;
  transition: .25s;
}
.btn_drawer span:first-of-type {
  top: 8px;
}
.btn_drawer span:nth-of-type(2) {
  top: 20px;
}
.btn_drawer span:last-of-type {
  top: 33px;
}
.btn_drawer.open span:first-of-type {
  top: 20px;
  transform: rotate(225deg);
  background: #555;
}
.btn_drawer.open span:nth-of-type(2) {
  width: 0;
}
.btn_drawer.open span:last-of-type {
  top: 20px;
  transform: rotate(-225deg);
  background: #555;
}

@media screen and (min-width: 769px) {
  .btn_drawer {
    display: none;
  }
}

.drawer {
  position: fixed;
  top: 0;
  left: 101%;
  width: 100%;
  height: 100vh;
  min-height: 102vh;
  /*padding: 90px 30px 40px;*/
  padding: 50px 30px 40px;
  background: #fff;
  z-index: 999;
  overflow-y: auto;
  transition: .3s;
}
.drawer.open {
  left: 0;
}
.drawer_inner {
  max-width: 243px;
  margin: 0 auto; 
}
.drawer_menu {
  margin: 45px 0;
}
.drawer_menu_item {
  display: block;
  margin-top: 10px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
.drawer_menu_item:first-of-type {
  margin-top: 0;
}
.nav_share {
  display: block;
}
.nav_social_twitter {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 18px;
  overflow: hidden;
}

.sidenav_inner {
  position: sticky;
  top: 0;
  left: 0;
  width: 243px;
  /* height: 100vh; */
  padding: 35px 20px;
  overflow-y: auto;
}
.sidenav_logo {
  margin: 0 0 49px;
  padding: 0 0 28px;
  border-bottom: 1px solid #000;
}
.sidenav_menu_item {
  position: relative;
  display: block;
  margin: 3px 0;
  padding: 2px 5px;
  overflow: hidden;
  transition: .3s;
}
.sidenav_menu_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, #dbaa42 0%, #ef7635 100%);
  z-index: 0;
  opacity: 0;
  transition: .5s;
}
.sidenav_menu_item:hover::before {
  opacity: 1;
}
.sidenav_menu_item p {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  color: #2B2B2B;
  z-index: 1;
  transition: .3s;
}
.sidenav_menu_item:hover p {
  color: #fff;
}
/* .sidenav_menu_item {
  position: relative;
  display: block;
  width: 255px;
  height: 37px;
  margin-top: 11px;
  background: #DD6D2A;
}
.sidenav_menu_item:first-of-type {
  margin-top: 0;
}
.sidenav_menu_item_on {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 255px;
  height: 37px;
}
.sidenav_menu_item_off {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 255px;
  height: 37px;
  background: #F7F7F7;
  opacity: 1;
  transition: .2s;
}
.sidenav_menu_item:hover .sidenav_menu_item_off {
  opacity: 0;
}
.sidenav_menu_item::before {
  left: -11px;
  transition: .2s;
} 
.sidenav_menu_item::after {
  opacity: 0;
  transition: .2s;
}
.sidenav_menu_item:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 9px;
  height: 100%;
  background: #DBAA42;
}
.sidenav_menu_item:hover::after {
  content: "";
  position: absolute;
  top: calc(50% - 3px);
  right: 8px;
  width: 7px;
  height: 5px;
  background: url(../img/teaser/icon_arrow_right_white.svg) center no-repeat;
  background-size: contain;
  opacity: 1;
  z-index: 3;
} */

.sidenav_share {
  width: 240px;
  margin: 0 auto;
}
.nav_share_title {
  display: flex;
  align-items: center;
}
.nav_share_title::before,
.nav_share_title::after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #000;
}
.nav_share_title::before {
  margin-right: 1rem;
}
.nav_share_title::after {
  margin-left: 1rem;
}
.nav_share_title .nav_share_title_text {
  width: 36px;
  height: 12px;
}
.nav_share_wrap {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}
.sidenav_share_item {
  width: 36px;
  height: 36px;
  margin: 0 10px;
}

@media screen and (min-width: 420px) {
  .drawer {
    padding: 90px 60px 40px;
  }
}

@media screen and (min-width: 769px) {
  .drawer {
    position: fixed;
    top: -102px;
    left: 0;
    width: 100%;
    min-width: 1366px;;
    height: 100px;
    min-height: 100px;
    padding: 16px 30px;
    box-sizing: border-box;
    border-bottom: 1px solid #D9970B;
    background: #fff;
    z-index: 999;
    overflow-y: hidden;
    transition: .3s;
  }
  .drawer.scrolled {
    top: 0;
  }
  .drawer_inner {
    max-width: 100%;
    margin: 0 auto; 
  }
  .drawer_logo {
    width: 187px;
    height: 66px;
  }
  .drawer_menu {
    position: absolute;
    top: 16px;
    left: auto;
    right: 25px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    margin: 0;
  }
  .drawer_menu_item {
    position: relative;
    display: block;
    height: 66px;
    line-height: 66px;
    margin-top: 0;
    padding: 0 1em;
    transition: .25s;
  }
  .drawer_menu_item:first-of-type {
    margin-top: 0;
  }
  .drawer_menu_item:hover {
    color: #D9970B;
  }
  .drawer_menu_item::after {
    content: "";
    position: absolute;
    bottom: 15px;
    left: 1em;
    width: calc(100% - 2em);
    height: 2px;
    background-color: #D9970B;
    opacity: 0;
    transition: .35s;
  }
  .drawer_menu_item:hover::after {
    opacity: 1;
  }
  .drawer_menu_item p {
    font-size: 18px;
    font-weight: 700;
  }
  .nav_share.drawer_share {
    display: none;
  }

  .sidenav_share {
    width: 180px;
    /*margin-top: 110px;*/
    margin-top: 60px;
  }
  .sidenav_social_twitter {
    position: relative;
    display: block;
    width: 180px;
    height: 34px;
    margin: 0 0 18px;
    overflow: hidden;
  }
  .sidenav_social_twitter::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 180px;
    height: 34px;
    background: url(../img/teaser/nav_button_x_on.svg) center no-repeat;
    background-size: 100%;
    opacity: 0;
    transition: .2s;
  }
  .sidenav_social_twitter:hover::after {
    opacity: 1;
  }
}



.keyvisual {
  /*width: calc(100% - 300px);*/
  width: 100%;
  position: relative;
  padding: 24px 20px 20px;
}
.keyvisual_title {
  position: absolute;
  bottom: calc(20px + 0.25%);
  left: calc(20px + 3%);
  width: 64%;
}
/* .keyvisual_catch {
  position: absolute;
  top: 47%;
  left: 74%;
  width: 5.25%;
} */
.keyvisual_annecy {
  display: none;
}

.keyvisual_slider {
	display: none;
}
.keyvisual_slider.slick-initialized {
	display: block;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.keyvisual_slider_textbtn {
  position: absolute;
  top: auto;
  bottom: -10px;
  right: 5%;
  display: block;
  width: 90%;
  height: 1em;
  font-size: 16px;
  line-height: 1em;
  text-align: center;
  cursor: pointer;
  transform: none;
  z-index: 10;
}

.slick-dots
  {
      position: absolute;
      top: auto;
      right: 50%;
      bottom: -50px;

      display: flex;
      justify-content: center;

      width: 100%;
      padding: 0;
      margin: 0;

      list-style: none;
      box-sizing: border-box;
      text-align: center;
      transform: translateX(50%);
      z-index: 10;
  }
  .slick-dots li
  {
      position: relative;

      display: inline-block;

      width: 46%;
      height: 3px;
      margin: 4px 2%;
      padding: 0;

      cursor: pointer;
  }
  .slick-dots li button
  {
      font-size: 0;
      line-height: 0;

      display: block;

      width: 100%;
      height: 100%;
      padding: 0;

      cursor: pointer;

      color: transparent;
      border: 0;
      outline: none;
      background: transparent;
  }
  .slick-dots li button:hover,
  .slick-dots li button:focus
  {
      outline: none;
  }
  .slick-dots li button:hover:before,
  .slick-dots li button:focus:before
  {
      opacity: 1;
  }
  .slick-dots li button:before
  {
      content: '';
      position: absolute;
      top: 0;
      left: 0;

      width: 100%;
      height: 100%;

      text-align: center;

      opacity: 1;
      background-color: #BFBFBF;

      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
  }
  .slick-dots li.slick-active button:before
  {
      opacity: 1;
      background-color: #DD6D2A;
  }

@media screen and (min-width: 769px) {
  .keyvisual {
    width: calc(100% - 243px);
    padding: 0;
    background: url(../img/teaser3/bg_ptn1.jpg) center top;
  }
  .keyvisual_title {
    bottom: 1%;
    left: 4%;
    width: 55.53%;
  }
  /* .keyvisual_catch {
    top: 43.5%;
    left: 81.5%;
    width: 5%;
  } */
  .keyvisual_annecy {
    position: absolute;
    bottom: 19%;
    left: 3.5%;
    display: block;
    width: 26.266%;
  }

  .keyvisual_slider {
    width: calc(100% - 110px);
    line-height: 0;
  }

  .keyvisual_slider_textbtn {
    position: absolute;
    top: 240px;
    right: 40px;
    display: block;
    width: 220px;
    height: 1em;
    font-size: 24px;
    line-height: 1em;
    cursor: pointer;
    transform-origin: top right;
    transform: rotate(90deg);
    z-index: 10;
  }

  /* slick overwrite */
  /* Dots */

  .slick-dots
  {
      position: absolute;
      top: 10px;
      right: -110px;
      bottom: auto;
      display: flex;
      flex-flow: column;

      width: 110px;
      padding: 230px 30px 30px;
      margin: 0;

      list-style: none;
      box-sizing: border-box;
      text-align: center;
      transform: none;
      z-index: 10;
  }
  .slick-dots li
  {
      position: relative;

      display: inline-block;

      width: 3px;
      height: 140px;
      margin: 4px auto;
      padding: 0;

      cursor: pointer;
  }
  .slick-dots li button
  {
      font-size: 0;
      line-height: 0;

      display: block;

      width: 3px;
      height: 140px;
      padding: 0;

      cursor: pointer;

      color: transparent;
      border: 0;
      outline: none;
      background: transparent;
  }
  .slick-dots li button:hover,
  .slick-dots li button:focus
  {
      outline: none;
  }
  .slick-dots li button:hover:before,
  .slick-dots li button:focus:before
  {
      opacity: 1;
  }
  .slick-dots li button:before
  {
      content: '';
      position: absolute;
      top: 0;
      left: 0;

      width: 3px;
      height: 140px;

      text-align: center;

      opacity: 1;
      background-color: #BFBFBF;

      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
  }
  .slick-dots li.slick-active button:before
  {
      opacity: 1;
      background-color: #DD6D2A;
  }
}

.contents {
  padding: 13vw 5.5% 0;
}
@media screen and (min-width: 769px) {
  .contents {
    padding: 120px 0 0;
  }
  .contents_inner {
    max-width: 826px;
    margin: 0 auto;
  }
}

.bn_area_pc {
  display: none;
}
.bn_area_sp {
  display: block;
  width: 100%;
  padding: 4vw 0 6vw;
}
.bn_item {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 0 4vw;
  box-shadow: 3px 3px 3px rgba(0,0,0,.4);
}
.bn_item.bn_item_s {
  width: 104%;
  max-width: 104%;
  margin-right: -4%;
  box-shadow: none;
}

@media screen and (min-width: 769px) {
  .bn_area_pc {
    display: block;
    padding: 60px 0 50px;
  }
  .bn_area_sp {
    display: none;
  }
  .bn_item {
    width: 80%;
    max-width: 688px;
    margin: 0 auto 40px;
    box-sizing: border-box;
  }
  .bn_item.bn_item_s {
    width: 50%;
    max-width: 372px;
    margin: 0 auto;
    padding-left: 1.3%;
  }
}

.roadshow {
  width: 100%;
  margin: 3vw auto 6vw;
}
.bn_filmarks {
  width: 50vw;
  min-width: 270px;
  margin: 4vw auto 0;
}
.awards {
  margin: 4vw auto 4vw;
}
@media screen and (min-width: 769px) {
  .roadshow {
    width: 64%;
    margin: 0 auto;
  }
  .bn_filmarks {
    width: 17vw;
    min-width: 270px;
    margin: 40px auto 0;
  }
  .awards {
    margin: 40px auto 0;
  }
}

.outline {
  margin: 0 0 88px;
}

.outline_annecy {
  display: block;
  width: 80%;
  margin: 20px auto 40px;
}
.outline_spmenu {
  display: block;
  margin: 0 0 8vw;
}
.outline_spmenu_item {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 0 3vw;
  background: #DD6D2A;
}
.outline_billing {
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .outline_annecy {
    display: none;
  }
  .outline_spmenu {
    display: none;
  }

  .outline_billing {
    width: 448px;
    margin: 0 auto 136px;
  }
}

section {
  margin: 0 0 120px;
}
.section_title {
  width: 280px;
  height: 46px;
  margin: 0 auto 46px;
  padding: 14px 0;
}
.section_title img {
  display: block;
  width: auto;
  height: 14px;
  margin: 0 auto;
}
@media screen and (min-width: 420px) {
  .section_title {
    width: 316px;
    height: 52px;
    padding: 19px 0;
  }
}

@media screen and (min-width: 769px) {
  section {
    margin: 0 0 160px;
  }
  .section_title {
    width: 616px;
    height: 101px;
    margin: 0 auto 66px;
    padding: 42px 0;
  }
  .section_title img {
    height: 17px;
  }
}

.intro_title {
  background: url(../img/teaser/intro_title_en.svg) center no-repeat;
  background-size: auto 100%;
}
.cast_title {
  background: url(../img/teaser/cast_title_en.svg) center no-repeat;
  background-size: auto 100%;
}
.staff_title {
  background: url(../img/teaser/staff_title_en.svg) center no-repeat;
  background-size: auto 100%;
}

.streaming {
  background-image: url(../img/index/streaming_bg_ptn.png);
  background-position: center top;
  background-repeat: repeat;
  background-size: 455px 384px;
  color: #2B2B2B;
  padding: 11.9444vw 5vw 13.33333vw;
}
.streaming_title {
  font-size: 5.55555vw;
  font-weight: 700;
  text-align: center;
}
.streaming_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  padding: 12.22222vw 0;
}
.streaming_item {
  margin: 2%;
  width: 48%;
}
.streaming_item:nth-of-type(odd) {
  margin-left: 0;
}
.streaming_item:nth-of-type(even) {
  margin-right: 0;
}

.streaming_link {
  align-items: center;
  background-color: #2B2B2B;
  border-radius: 1.388888vw;
  color: #fff;
  display: flex;
  font-size: 4.444444vw;
  font-weight: 700;
  height: 16.66666vw;
  justify-content: center;
  line-height: 1.5;
  text-align: center;
  width: 100%;
}
.streaming_link.comingsoon {
  background-color: #BABABA;
  pointer-events: none;
}
.streaming_notes {
  font-size: 3.6vw;
  font-weight: 400;
}

@media screen and (min-width: 769px) {
  .streaming {
    padding: 74px 0 72px;
    text-align: center;
  }
  .streaming_title {
    font-size: 30px;
  }
  .streaming_list {
    padding: 46px 0 60px;
    width: 80%;
  }
  .streaming_item {
    margin: 0.75%;
    width: 18.5%;
  }
  .streaming_item:nth-of-type(odd),
  .streaming_item:nth-of-type(even) {
    margin: 0.75%;
  }
  .streaming_item:nth-of-type(5n + 1) {
    margin-left: 0;
  }
  .streaming_item:nth-of-type(5n) {
    margin-right: 0;
  }
  .streaming_item:nth-of-type(11) {
    margin-left:  0.75%;
  }
  .streaming_link {
    border-radius: 0.366vw;
    font-size: 1.3177159vw;
    height: 5.49048vw;
    transition: .25s;
  }
  .streaming_link:hover {
    background-color: #000;
    text-shadow: 0px 0px 10px #D9970B;
  }
  .streaming_notes {
    font-size: 15px;
  }
}

.intro .forPc {
  display: none;
}
.intro .forSp {
  display: inline;
}
.intro_catch {
  text-align: center;
  font-size: 4.25vw;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 2.25em;
}
.intro_text {
  margin-top: 2em;
  text-align: center;
  font-size: 3.25vw;
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: 2.25em;
}
@media screen and (min-width: 769px) {
  .intro .forPc {
    display: inline;
  }
  .intro .forSp {
    display: none;
  }
  .intro_catch {
    font-size: 20px;
    font-weight: 700;
    line-height: 2.5em;
  }
  .intro_text {
    font-size: 16px;
    font-weight: 500;
  }
}

.cast_set {
  margin: 60px 0 0;
}
.cast_set:first-of-type {
  margin: 0;
}
.cast_photo {
  width: 43.75%;
  margin: 0 auto;
}
.cast_text {
  width: 100%;
  margin-top: 20px;
}
.cast_name_cast {
  width: 100%;
  font-size: 4.75vw;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.3em;
}
.cast_name_chara {
  width: 100%;
  font-size: 4vw;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.3em;
}
.cast_comment_label {
  width: 30%;
  height: auto;
  margin: 18px auto;
}
.cast_prof {
  font-size: 3.5vw;
  font-weight: 400;
}
@media screen and (min-width: 769px) {
  .cast_set {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 100px 0 0;
  }    
  .cast_photo {
    width: 160px;
    margin: 0;
  }
  .cast_text {
    width: calc(100% - 160px - 26px);
    margin-top: 0;
  }
  .cast_name {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    margin: 0 0 36px;
  }
  .cast_name_cast {
    width: auto;
    margin-right: 1.75em;
    font-size: 26px;
    line-height: 1em;
    text-align: left;
  }
  .cast_name_chara {
    width: auto;
    font-size: 20px;
    font-weight: 500;
    line-height: 1em;
    text-align: left;
  }
  .cast_comment_label {
    width: 94px;
    height: 16px;
    margin: 0 0 15px;
  }
  .cast_prof {
    font-size: 16px;
    font-weight: 500;
  }
}

section.staff {
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  section.staff {
    margin-bottom: 0;
  }
}

.staff_set {
  margin-top: 14vw;
}
.staff_set:first-of-type {
  margin-top: 0;
}

.staff_wrap {
  display: flex;
  flex-wrap: wrap;
  max-width: 500px;
  margin: 0 auto;
}
.staff_wrap > .staff_set {
  width: 50%;
}
.staff_wrap > .staff_set:first-of-type {
  margin-top: 14vw;
}

.staff_role {
  margin: 0 0 0.75em;
  color: #DBAA42;
  font-size: 3.5vw;
  font-weight: 400;
  letter-spacing: 0.3em;
  line-height: 1em;
  text-align: center;
}
.staff_name_wrap {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}
.staff_name {
  margin: 0 1.25em;
  font-size: 4.75vw;
  font-weight: 700;
  letter-spacing: 0.3em;
  line-height: 1em;
  text-align: center;
}
.staff_name.song {
  letter-spacing: .1em;
}
.staff_name p {
  margin-top: .5em;
  font-size: 3.5vw;
}
.staff_name_pa {
  width: 36%;
  margin: 0 auto;
}
.staff_btn_comment {
  position: relative;
  display: block;
  width: 220px;
  height: 30px;
  margin: 16px auto 0;
  padding: 8px 0 0;
  border: 1px solid #DBAA42;
  background: #DBAA42;
  transition: .2s;
}
.staff_btn_comment::after {
  content: "";
  position: absolute;
  top: calc(50% - 3px);
  right: 8px;
  width: 7px;
  height: 5px;
  background: url(../img/teaser/icon_arrow_right_white.svg) center no-repeat;
  background-size: contain;
  transition: .2s;
  z-index: 3;
}
.staff_btn_comment img {
  display: block;
  width: 92px;
  height: 12px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .staff_set {
    margin-top: 73px;
  }
  .staff_set:first-of-type {
    margin-top: 0;
  }
  .staff_wrap > .staff_set:first-of-type {
    margin-top: 73px;
  }
  .staff_role {
    margin: 0 0 20px;
    color: #DBAA42;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.3em;
    line-height: 1em;
  }
  .staff_name {
    margin: 0 2em;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.3em;
    line-height: 1em;
  }
  .staff_name p {
    margin-top: .5em;
    font-size: 18px;
  }
  .staff_name_pa {
    width: 18%;
    margin: 0 auto;
  }
  .staff_btn_comment {
    position: relative;
    display: block;
    width: 144px;
    height: 22px;
    margin: 16px auto 0;
    padding: 5px;
    border: 1px solid #DBAA42;
    background: #DBAA42;
    transition: .2s;
  }
  .staff_btn_comment::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: 142px;
    height: 22px;
    border: 1px solid #DBAA42;
    background: #fff url(../img/teaser/comment_button_text_on.svg) center no-repeat;
    background-size: 83px 10px;
    transition: .2s;
    z-index: 2;
    opacity: 0;
  }
  .staff_btn_comment:hover::before {
    opacity: 1;
  }
  .staff_btn_comment::after {
    content: "";
    position: absolute;
    top: calc(50% - 3px);
    right: 8px;
    width: 7px;
    height: 5px;
    background: url(../img/teaser/icon_arrow_right_white.svg) center no-repeat;
    background-size: contain;
    transition: .2s;
    z-index: 3;
  }
  .staff_btn_comment:hover::after {
    top: calc(50% - 2px);
    background: url(../img/teaser/icon_arrow_right_gold.svg) center no-repeat;
    background-size: contain;
  }
  .staff_btn_comment img {
    display: block;
    width: 83px;
    height: 10px;
    margin: 0 auto;
  }
}


.bottom {
  margin-bottom: 20px;
  padding-bottom: 46px;
  border-bottom: 1px solid #F7F7F7;
}
.bottom_logo_wrap {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}
.bottom_logo_item {
  display: inline-block;
  height: 6.75vw;
  margin: 0 3.25vw;
}
.bottom_logo_item img {
  width: auto;
  height: 100%;
}
.bottom_copyright {
  margin-top: 26px;
  text-align: center;
  font-size: 10px;
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .bottom {
    margin-bottom: 30px;
    padding-bottom: 78px;
  }
  .bottom_logo_wrap {
    margin-top: 80px;
  }
  .bottom_logo_item {
    height: 44px;
    margin: 0 30px;
  }  
  .bottom_copyright {
    margin-top: 40px;
    font-size: 12px;
  }
}

.modal_wrap {
  display: none;
}

.modal_comment {
  min-height: 90vh;
  padding: 100px 6%;
  color: #fff;
  background: #A78C29;
  /* background: #DBAA42; */
}
.modal_comment .staff_role {
  color: #fff;
  font-size: 4.25vw;
  line-height: 1.5em;
}
.modal_comment .staff_role img {
  display: block;
  width: 42%;
  margin: 0 auto 10px;
}
.modal_comment .staff_name {
  font-size: 5.25vw;
}
.staff_comment {
  margin-top: 2em;
  font-size: 3.75vw;
}
.modal_comment_close {
  display: block;
  width: 144px;
  height: 22px;
  margin: 80px auto 0;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .modal_comment {
    min-height: auto;
    padding: 100px;
  }
  .modal_comment .staff_role {
    font-size: 20px;
  }
  .modal_comment .staff_role img {
    display: block;
    width: 20%;
    margin: 0 auto 10px;
  }
  .modal_comment .staff_name {
    font-size: 26px;
  }
  .staff_comment {
    margin-top: 4em;
    font-size: 16px;
  }
  .modal_comment_close {
    display: none;
  }
}
