@charset "UTF-8";
/* CSS INFORMATION -====================================================
File name : top.css
Description : トップ
===================================================================== */
.main_notice {
    margin-bottom: 2rem;
    padding: 1em;
    text-align: center;
    line-height: 1.5;
    background-color: #fff;
    border: 2px solid #ff7607;
    width: calc(700 / 1000 * 100%);
    margin-left: auto;
    margin-right: auto;
}
.main_notice strong {
  font-size: 115%;
  color: red;
}

/* =====================================================================
    mv
======================================================================*/
.mv {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}
@media screen and (min-width: 768px) {
  .mv {
    padding: 1.4rem 0;
  }
}
.mv > .inner {
  padding: 4rem 0;
  border: 0.6rem solid #ff7607;
}
@media screen and (min-width: 768px) {
  .mv > .inner {
    padding: 2rem 0;
    max-width: 1300px;
  }
}
.mv_logo {
  margin: 0 auto;
  width: calc(552 / 650 * 100%);
}
@media screen and (min-width: 768px) {
  .mv_logo {
    margin: 0 auto 0 2.3076923077%;
    width: 42.4615384615%;
  }
}
.mv_catch {
  margin: 0 auto;
  width: calc(468 / 650 * 100%);
}
@media screen and (min-width: 768px) {
  .mv_catch {
    margin: 0 2.3076923077% 0 auto;
    width: 40.5384615385%;
  }
}
.mv_slider {
  position: relative;
  margin: 4rem 0;
}
@media screen and (min-width: 768px) {
  .mv_slider {
    margin: 2rem calc(50% - 50vw);
  }
  .mv_slider_list {
    padding-bottom: 16px;
  }
}
.mv_slider .slick-list {
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .mv_slider .slick-slide {
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
  }
  .mv_slider .slick-slide:not(.slick-current) {
    padding-top: 10rem;
  }
  .mv_slider .slick-slide.slick-current, .mv_slider .slick-slide.is-active-next {
    padding-top: 0;
  }
}
.mv_slider_item {
  margin: auto 0.5rem 0;
  width: 68rem !important;
}
@media screen and (min-width: 768px) {
  .mv_slider_item {
    margin: 0 calc(30 / 1600 * 100vw);
    width: calc(800 / 1600 * 100vw) !important;
  }
}
.mv_slider_arrow {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: auto;
  font-size: 0.8rem;
  height: 8.75em;
}
@media screen and (min-width: 768px) {
  .mv_slider_arrow {
    height: auto;
    font-size: 6px;
  }
}
.mv_slider .slick-arrow {
  position: absolute;
  width: 8.75em;
  height: 8.75em;
  background: url(../images/top/icon_slider_arrow.svg) no-repeat center/contain;
  z-index: 1;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .mv_slider .slick-arrow {
    font-size: 0.45vw;
    top: 12vw;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .mv_slider .slick-arrow:hover {
    opacity: 0.5;
  }
}
.mv_slider .slick-arrow.prev {
  left: 0;
}
@media screen and (min-width: 768px) {
  .mv_slider .slick-arrow.prev {
    margin-left: calc(315 / 1600 * 100vw);
  }
}
.mv_slider .slick-arrow.next {
  right: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
@media screen and (min-width: 768px) {
  .mv_slider .slick-arrow.next {
    margin-right: calc(315 / 1600 * 100vw);
  }
}
.mv_slider .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 12.5em;
}
.mv_slider .slick-dots li {
  display: inline-block;
  margin: 0 0.8em;
  width: 1em;
  height: 1em;
  -webkit-transition: width 0.5s ease;
  transition: width 0.5s ease;
}
.mv_slider .slick-dots li button {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: transparent;
}
.mv_slider .slick-dots li button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #dbdbca;
  border-radius: 50%;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}
@media screen and (min-width: 768px) {
  .mv_slider .slick-dots li button:hover::before {
    background-color: #ff7607;
  }
}
.mv_slider .slick-dots li.slick-active {
  width: 5em;
}
.mv_slider .slick-dots li.slick-active button::before {
  background-color: #ff7607;
  border-radius: 0.8em;
}

@-webkit-keyframes loopRight {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes loopRight {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@-webkit-keyframes loopLeft {
  from {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes loopLeft {
  from {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/* =====================================================================
*    header
* =================================================================== */
.top_header .nav_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 3rem 0;
}
.top_header .nav_menu > li {
  position: relative;
  padding: 0 0.4rem;
  width: 20%;
}
.top_header .nav_menu > li::before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.4rem;
  height: 4.5rem;
  background-image: radial-gradient(#dbdbca 0.2rem, transparent 0.2rem);
  background-size: 1rem 1rem;
  background-position: top 0.3rem left -0.3rem;
}
.top_header .nav_menu > li:last-child::before {
  display: none;
}
.top_header .nav_menu > li > a {
  position: relative;
  padding-top: 6.5rem;
  height: 100%;
}
.top_header .nav_menu > li > a::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  width: 5rem;
  height: 5rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.top_header .nav_menu > li > a img {
  margin: 0 auto;
  width: 73.33%;
}
.top_header .nav_menu > li.nolink a {
  pointer-events: none;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
.top_header .nav_youtube a::before {
  background: url(../images/top/icon_nav_youtube.png) no-repeat center/contain;
}
.top_header .nav_insta a::before {
  background: url(../images/top/icon_nav_insta.png) no-repeat center/contain;
}
.top_header .nav_twitter a::before {
  background: url(../images/top/icon_nav_twitter.png) no-repeat center/contain;
}
.top_header .nav_blog a::before {
  background: url(../images/top/icon_nav_blog.png) no-repeat center/contain;
}
.top_header .nav_announcer a::before {
  background: url(../images/top/icon_nav_announcer.png) no-repeat center/contain;
}
.top_header .nav_photostudio a::before {
  background: url(../images/top/icon_nav_photostudio.png) no-repeat center/contain;
}

@media screen and (min-width: 768px) {
  .top_header .nav_menu {
    margin: 0 auto;
    padding: 1.7rem 0;
    max-width: 1200px;
  }
  .top_header .nav_menu > li {
    margin-bottom: 0;
  }
  .top_header .nav_menu > li > a::before {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .top_header .nav_menu > li > a:hover::before {
    top: -1rem;
  }
  .top_header .nav_menu > li > a img {
    width: 77.5%;
  }
}
/* =====================================================================
    movie
======================================================================*/
.movie {
  padding: 11rem 0;
  background: #f3f3e2;
}
.movie::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 196rem);
  background-size: auto auto;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 1rem, #ededd3 1rem, #ededd3 2rem);
}
.movie .banner_list {
  margin-bottom: 5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.movie .banner_list li {
  margin-right: 0;
  width: calc(500 / 650 * 100%);
}

.movie_pickup {
  margin-bottom: 14rem;
}

.pickup_ttl {
  position: relative;
  margin-bottom: 6.2rem;
  padding-top: 13rem;
}
.pickup_ttl::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: #f3f3e2;
  border-radius: 6rem 6rem 0 0;
}
.pickup_ttl h2 {
  position: relative;
  width: calc(578 / 650 * 100%);
}
.pickup_ttl h2::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  margin: -6.7082683307% -12.6365054602% 0 0;
  width: 24.9609984399%;
  padding-top: 24.4929797192%;
  background: url(../images/top/bg_ttl_youtube.png) no-repeat center/contain;
  -webkit-animation: 8s linear infinite rotation;
          animation: 8s linear infinite rotation;
}
.pickup_ttl h2 img {
  position: relative;
  z-index: 2;
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.movie_embed {
  position: relative;
  margin-left: calc(-15 / 650 * 100%);
  width: calc(680 / 650 * 100%);
  border: 2rem solid #fff;
}
.movie_embed::after {
  content: "";
  position: absolute;
  display: block;
  top: -4rem;
  left: -4rem;
  width: 10.2rem;
  height: 10.1rem;
  background: url(../images/top/icon_new.png) no-repeat center/contain;
  -webkit-filter: drop-shadow(1rem 1rem 1rem rgba(0, 0, 0, 0.1));
          filter: drop-shadow(1rem 1rem 1rem rgba(0, 0, 0, 0.1));
}
.movie_embed_inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.movie_embed_inner iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.movie_weekly h2 {
  margin: 0 0 6.5rem calc(-15 / 650 * 100%);
  width: calc(680 / 650 * 100%);
}
.movie_weekly_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 5rem;
}
.movie_weekly_list li .rank {
  position: relative;
  margin-right: calc(20 / 650 * 100%);
  padding-top: calc(179 / 650 * 100%);
  width: calc(120 / 650 * 100%);
  background: url(../images/top/bg_ranking.png) no-repeat top center/contain;
}
.movie_weekly_list li .rank span {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-top: 70.8333333333%;
  font-family: "Noto Serif JP", serif;
  font-size: 5.5rem;
  color: #fff;
}
.movie_weekly_list li a {
  width: calc(480 / 650 * 100%);
  border: 1rem solid #fff;
}

@media screen and (min-width: 768px) {
  .movie {
    padding: 5rem 0 10rem;
  }
  .movie::before {
    height: calc(100% - 110rem);
  }
  .movie .banner_list li {
    width: calc(700 / 1000 * 100%);
  }
  .movie_pickup {
    margin-bottom: 7rem;
  }
  .pickup_ttl {
    margin: 0 0 5.2rem;
    padding-top: 8.9rem;
  }
  .pickup_ttl::before {
    width: calc(1120 / 1000 * 100%);
  }
  .pickup_ttl h2 {
    width: calc(641 / 1000 * 100%);
    margin-left: calc(180 / 1000 * 100%);
  }
  .movie_embed {
    margin: 0 auto;
    width: calc(760 / 1000 * 100%);
  }
  .movie_weekly h2 {
    margin: 0 auto 7.2rem;
    width: calc(680 / 1000 * 100%);
  }
  .movie_weekly_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .movie_weekly_list li {
    position: relative;
    display: block;
    margin-bottom: 0;
    width: calc(310 / 1000 * 100%);
  }
  .movie_weekly_list li .rank {
    position: absolute;
    top: 0;
    left: 0;
    margin: -3.2258064516% 0 0 -3.2258064516%;
    padding-top: 34.5161290323%;
    width: 23.2258064516%;
    z-index: 1;
  }
  .movie_weekly_list li .rank span {
    font-size: 3.6rem;
  }
  .movie_weekly_list li a {
    width: 100%;
    overflow: hidden;
  }
  .movie_weekly_list li a img {
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
  }
  .movie_weekly_list li a:hover img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
/* =====================================================================
    insta
======================================================================*/
.insta {
  margin-top: -13rem;
}
.insta h2 {
  position: relative;
  margin: 0 auto -5.4rem;
  padding-top: 8rem;
  width: calc(590 / 650 * 100%);
  background: linear-gradient(225deg, transparent 1.5em, #ffb200 1.5em), linear-gradient(135deg, transparent 1.5em, #ffb200 1.5em);
  background-position: top right, top left;
  background-size: 51% 100%;
  background-repeat: no-repeat;
  z-index: 1;
}
.insta h2 img {
  margin: 0 auto;
  width: 68.1355932203%;
}
.insta_inner {
  position: relative;
  padding: 14.5rem 0 10rem;
}
.insta_inner::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: #ffb200;
}

.insta_list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: calc(-10 / 650 * 100%);
  width: calc(670 / 650 * 100%);
}
.insta_list li {
  margin: 0 4.4776119403% 3rem 0;
  width: 29.8507462687%;
}
@media screen and (max-width: 767px) {
  .insta_list li:nth-child(3n) {
    margin-right: 0;
  }
  .insta_list li:nth-child(n+13) {
    display: none;
  }
}
.insta_list li a {
  border: 0.3em solid #fff;
}

@media screen and (min-width: 768px) {
  .insta {
    margin-top: -11rem;
  }
  .insta h2 {
    padding-top: 5.3rem;
    width: calc(680 / 1000 * 100%);
  }
  .insta h2 img {
    width: 59.1176470588%;
  }
  .insta_inner {
    padding: 11rem 0 7rem;
  }
  .insta_list {
    margin: 0;
    width: 100%;
  }
  .insta_list li {
    margin: 0 calc(20 / 1000 * 100%) 2rem 0;
    width: calc(150 / 1000 * 100%);
  }
  .insta_list li:nth-child(6n) {
    margin-right: 0;
  }
}
/* =====================================================================
    twitter
======================================================================*/
.twitter {
  padding: 13rem 0;
  background: #ffb200;
}
.twitter h2 {
  position: relative;
  margin: 0 auto 6.4rem;
  width: calc(390 / 650 * 100%);
}
.twitter h2::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/top/bg_ttl_twitter.png) no-repeat center/contain;
  -webkit-animation: 16s linear infinite rotation;
          animation: 16s linear infinite rotation;
}

@media screen and (min-width: 768px) {
  .twitter {
    padding: 10rem 0;
  }
  .twitter .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .twitter h2 {
    margin: 0 calc(113 / 1000 * 100%) 0 0;
    width: calc(325 / 1000 * 100%);
  }
  .twitter_widget {
    width: calc(490 / 1000 * 100%);
  }
}
/* =====================================================================
    blog
======================================================================*/
.blog {
  padding: 17rem 0 16rem;
}
.blog h2 {
  margin: 0 auto 7rem;
  width: calc(547 / 650 * 100%);
}

.blog_list li {
  margin-bottom: 2.7rem;
}
.blog_list li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 1rem;
  border-right: 0.4rem solid #dbdbca;
  border-bottom: 0.4rem solid #dbdbca;
}
.blog_list li .right {
  text-align: center;
  padding: 0.8em 0;
  width: calc(120 / 650 * 100%);
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0;
  background: linear-gradient(45deg, transparent 0.7em, #ffeb07 0.7em);
  background-position: top left;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.blog_list li .date {
  display: inline-block;
  padding: 0.35em 0;
  border-top: 2px dotted;
  border-bottom: 2px dotted;
}
.blog_list li .date dt {
  margin-bottom: 0.3em;
  font-size: 72%;
}
.blog_list li .date dd {
  font-size: 120%;
}
.blog_list li .week {
  display: block;
  font-size: 72%;
}
.blog_list li .left {
  width: calc(460 / 650 * 100%);
}
.blog_list li .ttl {
  margin-bottom: 0.3em;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}
.blog_list li .auther {
  color: #ff7607;
}

.btn_more {
  position: relative;
  margin: 7rem 0 0 auto;
  padding-bottom: 2rem;
  width: calc(240 / 650 * 100%);
}
.btn_more img {
  margin: 0 auto;
  width: 65%;
}
.btn_more .arrow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 0.5em);
  height: 0.6rem;
  background: #ff7607;
}
.btn_more .arrow::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  right: -1.4rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.5rem 0 0 1.5rem;
  border-color: transparent transparent transparent #ff7607;
}

@media screen and (min-width: 768px) {
  .blog {
    padding: 10rem 0 7.5rem;
  }
  .blog h2 {
    margin-bottom: 5rem;
    width: calc(547 / 1000 * 100%);
  }
  .blog_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .blog_list li {
    margin-bottom: 2rem;
    width: calc(490 / 1000 * 100%);
  }
  .blog_list li a:hover {
    -webkit-transform: translate(0.5rem, 0.5rem);
            transform: translate(0.5rem, 0.5rem);
  }
  .blog_list li .right {
    width: 18.3673469388%;
    font-size: 1.6rem;
  }
  .blog_list li .left {
    width: 70.4081632653%;
  }
  .blog_list li .ttl {
    font-size: 18px;
  }
  .btn_more {
    margin-top: 0.7rem;
    width: calc(145 / 1000 * 100%);
  }
  .btn_more .arrow {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .btn_more:hover .arrow {
    width: 105%;
  }
}
/* =====================================================================
    announcer
======================================================================*/
.announcer h2 {
  position: relative;
  margin: 0 auto -5rem;
  padding-top: 10rem;
  width: calc(590 / 650 * 100%);
  background: linear-gradient(225deg, transparent 1.5em, #f3f3e2 1.5em), linear-gradient(135deg, transparent 1.5em, #f3f3e2 1.5em);
  background-position: top right, top left;
  background-size: 51% 100%;
  background-repeat: no-repeat;
  z-index: 1;
}
.announcer h2 img {
  margin: 0 auto;
  width: 83.3898305085%;
}
.announcer_inner {
  position: relative;
  padding: 15rem 0 10rem;
}
.announcer_inner::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: #f3f3e2;
}

.announcer_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-left: calc(-30 / 650 * 100%);
  width: calc(710 / 650 * 100%);
}

.announcer_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.announcer_list li {
  width: 48.7323943662%;
  margin: 0 1.6901408451% 1.2rem 0;
}
@media screen and (max-width: 767px) {
  .announcer_list li:nth-child(2n) {
    margin-right: 0;
  }
}
.announcer_list li a {
  position: relative;
}
.announcer_list li a::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-top: 4.0462427746%;
  padding-top: 2.3121387283%;
  width: 17.3410404624%;
  background: #ffeb07;
  border-radius: 1em;
}
.announcer_list li a h3 {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: right;
  margin-right: 5.7803468208%;
  width: 40.4624277457%;
}
.announcer_list li a h3 span {
  margin-top: 15%;
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.333;
  color: #ff7607;
}

@media screen and (min-width: 768px) {
  .announcer h2 {
    margin-bottom: -4rem;
    padding-top: 7.8rem;
    width: 100%;
  }
  .announcer h2 img {
    width: calc(492 / 1000 * 100%);
  }
  .announcer_inner {
    margin: 0;
    padding-bottom: 7rem;
    width: 100%;
  }
  .announcer_list li {
    margin: 0 calc(16 / 1000 * 100%) 2.5rem 0;
    width: calc(238 / 1000 * 100%);
  }
  .announcer_list li:nth-child(4n) {
    margin-right: 0;
  }
  .announcer_list li a::before {
    content: "";
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 10%;
    height: 1.5rem;
    width: 80%;
    opacity: 0;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    z-index: -1;
  }
  .announcer_list li a:hover {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  .announcer_list li a:hover::before {
    opacity: 1;
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  .announcer_list li a h3 {
    font-size: 1.8rem;
  }
  .announcer_list li a h3 span {
    font-size: 1.5rem;
  }
}
/* =====================================================================
    photostudio
======================================================================*/
#top .photostudio {
  padding: 14rem 0;
  background-color: #ffb200;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 5px, #ffad00 5px, #ffad00 10px);
}
#top .photostudio::before, #top .photostudio::after {
  background: url(../images/common/bg_film2.png) repeat-y top center/100% auto;
}
#top .photostudio h2 {
  width: 75.0724637681%;
}
#top .photostudio_list_theme {
  background-image: url(../images/photostudio/img_theme_deco2.png);
}
#top .photostudio_list_text {
  color: #fef1d4;
}
#top .photostudio .btn_more {
  text-align: center;
  margin: 0 auto;
  padding-right: 0.3em;
  width: 28rem;
  font-size: 4rem;
  font-weight: 900;
  color: #ffffff;
}
#top .photostudio .btn_more .arrow {
  background: #ffffff;
}
#top .photostudio .btn_more .arrow::after {
  border-color: transparent transparent transparent #ffffff;
}

@media screen and (min-width: 768px) {
  #top .photostudio {
    padding: 8rem 0;
  }
  #top .photostudio h2 {
    width: calc(801 / 1000 * 100%);
  }
  #top .photostudio .btn_more {
    width: 155px;
    font-size: 22px;
  }
}/*# sourceMappingURL=top.css.map */