@charset "utf-8";

/* #home
================================================== */

#home #container {
  overflow: hidden;
}

/* Header
================================================== */

.l-header-inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 25px;
}

.header-logo img {
  width: 300px;
}

/* header-search */
.header-search {
  margin-right: 25px;
}

.search-form {
  border: 1px solid #000;
  max-width: 420px;
  width: 100%;
  height: 36px;
  border-radius: 18px;
  display: flex;
  align-content: center;
}

.search-input {
  border: none;
  width: 380px;
  margin-left: 15px;
}

.search-submit {
  height: 20px;
  margin: 8px 10px;
}

/* .header-right */

.header-right {
  display: flex;
  align-items: flex-end;
}

.header-right-info {
  margin: 15px 0 5px;
}

.header-contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 15px;
}

.header-contact-title {
  font-size: 1.7rem;
  font-weight: 700;
}

.header-contact-tel img {
  width: 250px;
}

.sp-sns-list {
  display: none;
}

/* header-right-nav-list */

.header-right-list {
  display: flex;
  align-items: flex-end;
}

.header-right-item {
  font-size: 1.3rem;
  margin-right: 20px;
}

.header-right-item a {
  font-weight: 700;
  position: relative;
}

.header-right-item a::before {
  transform: scale(1, 1);
  position: absolute;
  bottom: 1px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #333;
  transform-origin: center top;
  transition: transform 0.2s;
}

.header-right-item a:hover::before {
  transform: scale(0, 1);
}

.header-right-nav-sns:first-child {
  margin-right: 15px;
}

.header-right-nav-sns a::before {
  content: none;
}

.header-right-nav-sns img {
  width: 25px;
}

/* l-header-nav */

.l-header-nav {
  width: 100%;
  background-color: #fff;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1240px;
  width: 100%;
  margin: 25px auto 50px;
  padding: 0 20px;
}

.header-nav-list {
  display: flex;
}

.header-nav-item {
  border-left: 1px solid #000;
  text-align: center;
  padding: 10px 20px 10px 40px;
}

.header-nav-item a {
  position: relative;
  font-weight: 700;
  font-size: 1.6rem;
}

.header-nav-item a::after {
  content: "";
  position: absolute;
  background: url(/theme/sn-default/images/icon02.png) no-repeat;
  background-size: cover;
  width: 20px;
  height: 20px;
  left: -25px;
  transition: 0.2s;
}

.header-nav-item a::before {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #333;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.2s;
}

.header-nav-item a:hover::before {
  transform: scale(1, 1);
}

/* is-fixed */
.is-fixed.l-header-nav {
  box-shadow: 0 2px 3px -3px #000;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 100%;
}

.is-fixed .header-nav {
  margin: 10px auto;
}

/* join-link */
.join-link {
  width: 200px;
  height: 50px;
  background-color: #ffdd19;
  font-size: 1.6rem;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-left: 15px;
  font-weight: 700;
  transition: 0.2s;
}

.join-link::before {
  content: "";
  position: absolute;
  background: url(/theme/sn-default/images/icon01.png) no-repeat;
  background-size: cover;
  width: 20px;
  height: 20px;
  left: 15px;
  top: 52%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transition: 0.2s;
}

.join-link:hover {
  background: #f9be00;
}

.join-link:hover::before {
  left: 20px;
}

/* is-fixed join-link */
.is-fixed .join-link {
  height: 45px;
  border-radius: 22.5px;
}

@media screen and (max-width: 1240px) {
  .header-logo img {
    width: 250px;
  }

  /* header-search */
  .search-input {
    width: 250px;
  }

  /* .header-right */
  .header-contact-tel img {
    width: 200px;
  }

  /* l-header-nav */
  .header-nav-item {
    padding: 10px 15px 10px 30px;
  }

  .header-join .join-link {
    width: auto;
    padding: 0 15px 0 35px;
  }

  .header-join .join-link::before {
    left: 10px;
  }

  .header-join .join-link:hover::before {
    left: 15px;
  }
}

@media screen and (max-width: 1050px) {
  .l-header-inner {
    padding-bottom: 0;
  }

  .header-logo img {
    width: 200px;
  }

  /* header-search */
  .header-search {
    margin-right: 15px;
    margin-bottom: 3px;
  }

  .search-form {
    height: 30px;
  }

  .search-input {
    width: 200px;
  }

  .search-submit {
    margin: 4px 8px;
  }

  /* header-right */
  .header-right-item {
    margin-right: 15px;
  }

  /* l-header-nav */
  .header-nav {
    margin: 35px auto;
    padding: 0 5px;
  }

  .header-nav-item a {
    font-size: 1.3rem;
  }

  .header-join .join-link {
    font-size: 1.5rem;
    height: 45px;
  }
}

@media screen and (max-width: 900px) {
  .l-header-inner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 5;
    border-bottom: 1px solid #ccc;
    padding: 0;
  }

  .sp-sns-list {
    display: block;
  }

  .header-search,
  .header-right-list,
  .header-nav {
    display: none;
  }

  .header-logo {
    position: relative;
  }

  .header-logo .header-logo-image {
    margin-left: 60px;
    height: 70px;
    width: auto;
  }

  .header-logo::before {
    content: "";
    position: absolute;
    background: url(/theme/sn-default/images/sp_head.png) no-repeat;
    background-size: contain;
    height: 80px;
    width: 80px;
  }

  .header-right-info {
    margin: 0;
  }

  .header-contact {
    margin-right: 0;
  }

  .header-contact-tel {
    background: #f9be00;
    height: 70px;
    width: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 70px;
  }

  .header-contact-tel img {
    height: 40px;
    width: auto;
    margin-top: 5px;
  }

  .header-contact-title {
    margin-top: 5px;
    font-size: 1rem;
  }

  .ly-right-nav {
    display: none;
  }
}

@media screen and (max-width: 599px) {
  .header-logo::before {
    height: 80px;
    width: 65px;
  }

  .header-logo .header-logo-image {
    height: 50px;
    margin-top: 10px;
  }

  .search-form {
    max-width: calc(100vw - 130px);
    height: 25px;
    font-size: 1.4rem;
  }

  .search-submit {
    margin: 1px 8px;
  }

  .sp-sns-item img {
    height: 25px;
    width: auto;
  }
}

@media screen and (max-width: 399px) {
  .header-logo::before {
    height: 65px;
    width: 55px;
    top: 5px;
  }

  .header-logo .header-logo-image {
    margin-left: 50px;
  }

  .header-logo .header-logo-image {
    height: 50px;
    margin-top: 10px;
  }
}

/* sp-header-search
================================================== */

.sp-header-search {
  display: none;
}

@media screen and (max-width: 900px) {
  .sp-header-search {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    background: url(/theme/sn-default/images/stripe.png);
    padding: 15px;
  }

  .sp-header-search .search-form {
    background: #fff;
    margin-right: 15px;
  }

  .sp-header-search .search-input {
    width: calc(100% - 30px);
  }

  .sp-sns-list {
    display: flex;
  }

  .sp-sns-item+.sp-sns-item {
    margin-left: 15px;
  }

  .sp-sns-item img {
    height: 30px;
    width: auto;
  }
}

/* hamburgar
================================================== */

.hamburger {
  display: none;
}

.hamburger-button {
  position: relative;
  width: 70px;
  height: 70px;
  cursor: pointer;
  transform: translateX(0);
  border: none;
  background: none;
  background: #666;
  z-index: 102;
  display: block;
}

.active.hamburger-button {
  background: none;
}

.hamburger span {
  display: inline-block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: #fff;
  transition: all 0.5s;
}

.hamburger-button span:last-child {
  background-color: none;
}

.hamburger-button span:nth-of-type(1) {
  top: 16px;
}

.hamburger-button span:nth-of-type(2) {
  top: 26px;
}

.hamburger-button span:nth-of-type(3) {
  top: 36px;
}

.active.hamburger-button span {
  background-color: #4d4d4d;
}

.active.hamburger-button span:nth-of-type(1) {
  transform: translate(-19px, 14px) rotate(-45deg);
}

.active.hamburger-button span:nth-of-type(2) {
  opacity: 0;
}

.active.hamburger-button span:nth-of-type(3) {
  transform: translate(-19px, -6px) rotate(45deg);
}

.hamburger-text {
  color: #fff;
  position: absolute;
  font-size: 1.3rem;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.active.hamburger-button .hamburger-text {
  display: none;
}

@media screen and (max-width: 900px) {
  .hamburger {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
  }
}

/* right-nav
=====================================================*/

.ly-right-nav {
  display: none;
  width: 100%;
  height: 100%;
  padding-top: 20px;
  background: url(/theme/sn-default/images/stripe.png);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 11;
  padding: 75px 15px 15px;
  background-size: 5px;
}

@keyframes fadeIn {
  /*animetion-nameで設定した値を書く*/

  0% {
    display: block;
    opacity: 0;
  }

  /*アニメーション開始時は不透明度0%*/

  100% {
    opacity: 1;
  }

  /*アニメーション終了時は不透明度100%*/
}

.right-nav-list {
  margin: 0 auto;
  padding: 0 20px;
  width: 50%;
}

.right-nav-item {
  list-style: none;
  position: relative;
}

.right-nav-item::after {
  content: "";
  position: absolute;
  background: url(/theme/sn-default/images/line01.png) repeat-x;
  background-size: contain;
  height: 3px;
  width: 100%;
  bottom: 0;
}

.right-nav-item a {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 15px 10px 15px 35px;
  position: relative;
}

.right-nav-item a::before {
  content: "";
  position: absolute;
  background: url(/theme/sn-default/images/icon02.png) no-repeat;
  background-size: contain;
  height: 15px;
  width: 15px;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.right-nav-join {
  width: 50%;
  margin: 0 auto;
  padding: 25px 20px 0;
}

.right-nav-join .join-link {
  width: 100%;
  height: 45px;
  justify-content: flex-start;
  padding-left: 45px;
}

@media screen and (max-width: 599px) {

  .right-nav-list,
  .right-nav-join {
    width: 100%;
  }
}

/* Swiper
================================================== */

.top-slider {
  margin-bottom: 60px;
}

.swiper-container {
  /* padding-bottom: 35px; */
}

.swiper-button-next,
.swiper-button-prev {
  top: 50%;
  width: 27px;
  height: 24px;
  margin-top: -30px;
  background-size: contain;
  transition: 0.2s;
}

.swiper-button-prev {
  background-image: url(/theme/sn-default/images/arrow-prev.png);
}

.swiper-button-next {
  background-image: url(/theme/sn-default/images/arrow-next.png);
}

.swiper-pagination-bullet-active {
  background: #ffdd19;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 6px;
}

/* sub-slider */

.sub-slider {
  background: url(/theme/sn-default/images/bg1.jpg);
  background-size: contain;
  padding: 65px 20px;
}

.sub-slider img {
  width: 100%;
}

@media screen and (max-width: 900px) {
  .top-slider {
    margin-bottom: 30px;
  }

  .sub-slider {
    padding: 30px 20px;
  }
}

@media screen and (max-width: 599px) {
  .top-slider {
    margin-bottom: 20px;
  }

  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }

  .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

/* info
================================================== */

.info {
  background: linear-gradient(90deg,
      #fafafa 0%,
      #fafafa 50%,
      #fefbe8 50%,
      #fefbe8 100%);
}

.info-inner {
  padding: 60px 0 90px;
  display: flex;
}

.info-section {
  width: 50%;
}

.info-section:first-child {
  padding: 0 60px 0 20px;
}

.info-section:last-child {
  padding: 0 20px 0 60px;
}

.info-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #000;
  padding-bottom: 15px;
}

.info-title {
  font-size: 2.7rem;
  position: relative;
  margin-left: 40px;
}

.info-title::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 30px;
  top: 0;
  left: -40px;
}

.info-title-news::after {
  background: url(/theme/sn-default/images/news.png) no-repeat;
  background-size: contain;
}

.info-title-trouble::after {
  background: url(/theme/sn-default/images/maintenance.png) no-repeat;
  background-size: contain;
}

.info-index {
  font-size: 1.5rem;
  font-weight: 700;
}

.info-index::after {
  transition: 0.2s;
  left: -25px;
}

.info-index:hover::after {
  left: -20px;
}

.info-body {
  /* margin-top: 20px; */
}

.info-item {
  border-bottom: 1px solid #b3b3b3;
  transition: 0.2s;
  position: relative;
}

.info-item:last-child {
  border-bottom: none;
}

.info-item a {
  padding: 25px 0 30px;
  display: block;
  transition: background-color 0.3s;
}

.info-item:hover a {
  text-decoration: none;
  background-color: #ededed;
}

.info-item .date {
  color: #f9be00;
  font-size: 1.4rem;
  margin: 0 10px 10px 0;
  display: inline-block;
}

.info-item .new {
  font-size: 1.1rem;
  color: #fff;
  background: #e2041b;
  border-radius: 5px;
  padding: 0 5px;
  margin-bottom: 2px;
  text-decoration: none;
}

.info-item .title {
  display: block;
  transition: 0.2s;
  text-decoration: underline;
}

.info-item:hover .title {
  text-decoration: none;
}

.info-section-trouble .info-item a:hover {
  background-color: #fcf5ce;
}

@media screen and (max-width: 900px) {
  .info {
    background: none;
  }

  .info-inner {
    flex-direction: column;
    padding: 0;
  }

  .info-section {
    width: 100%;
  }

  .info-section:last-child,
  .info-section:first-child {
    padding: 40px 20px 20px 20px;
  }

  .info-section-news {
    background: #fafafa;
  }

  .info-section-trouble {
    background: #fefbe8;
  }

  .info-body {
    margin-top: 0;
  }

  .info-sp-index {
    display: flex;
    justify-content: flex-end;
    padding: 20px 0;
  }
}

@media screen and (max-width: 599px) {
  .info-item a {
    padding: 20px 0;
  }
}

/* content
================================================== */

.content {
  padding: 120px 0;
}

.content-inner {
	display: flex;
    /* padding-bottom: 35px; */
    /* margin-bottom: 45px; */
    /* background: url(/theme/sn-default/images/line01.png) repeat-x; */
    background-size: auto 10px;
    background-position: bottom center;
}



/* content-left */

.content-left {
  padding: 0 30px;
  width: 50%;
}

.content-title {
  font-size: 2.3rem;
  position: relative;
  margin-left: 30px;
  margin-bottom: 15px;
}

.content-title::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  left: -30px;
}

/* join-list */

.join-list {
  position: relative;
}



.join-item {
  margin-bottom: 30px;
  transition: 0.2s;
}

.join-item:hover {
  opacity: 0.6;
}

/* keyword */

.keyword {
  padding: 0 0 30px 0;
}

.keyword-title::before {
  background: url(/theme/sn-default/images/search02.png) no-repeat;
  background-size: contain;
}

.keyword-form {
  width: 100%;
}

.keyword-input {
  width: 75%;
  height: 50px;
  border-radius: 25px;
  background: #f2f2f2;
  border: none;
  padding-left: 25px;
}

.keyword-input::placeholder {
  color: #808080;
  font-weight: 700;
}

.keyword-submit {
  width: 18%;
  height: 50px;
  border-radius: 25px;
  border: none;
  font-size: 20px;
  color: #fff;
  background: #f97300;
}

/* lot */

.lot {
  padding: 30px 0;
}

.lot-title {
  margin-bottom: 35px;
}

.lot-title::before {
  background-color: #f9be00;
  width: 10px;
  left: -25px;
  border-radius: 3px;
}

.lot-list {
  display: flex;
  flex-wrap: wrap;
}

.lot-item {
  margin: 0 2% 2% 0;
}

.lot-item a {
  display: block;
  font-size: 1.3rem;
  padding: 15px;
  width: 100%;
  text-align: center;
  border: 1px solid #000;
  border-radius: 30px;
  transition: 0.2s;
}

@media screen and (max-width: 1090px) {
.lot-item a {
    font-size: 90%;
}
}

.lot-item a:hover {
  background: #000;
  color: #fff;
  /* border: 1px solid #ccc; */
}

/* content-right */

.content-right {
  padding: 0 20px 0 55px;
  width: 50%;
}


@media screen and (max-width: 950px) {
.content-right {
    font-size: 90%;
}
}


/* 
.content-right-title {
  margin-left: 35px;
  margin-bottom: 30px;
}

.twitter-title::before {
  background: url(/theme/sn-default/images/tw.png) no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
  top: -3px;
  left: -35px;
}
*/


.content-right-area {
  border: 1px solid #000;
  overflow: hidden;
}


.content-tw{
	text-align: center;
    padding: 0 20px;
}

.content-tw img{
	width: 100%;
	max-width: 500px;
}

@media screen and (max-width: 950px) {
.keyword {
    padding: 0 0 10px 0;
}
}

@media screen and (max-width: 900px) {
  .content {
    padding: 60px 0;
  }

  .content-left {
    padding: 0 20px;
  }

  .join-list {
/*    margin-bottom: 50px;*/
  }

  .join-list::after {
    bottom: -45px;
  }

  .keyword {
  }

  .keyword-input {
    height: 40px;
    border-radius: 20px;
  }

  .keyword-submit {
    height: 40px;
    border-radius: 20px;
    font-size: 18px;
  }

  .lot-item a {
    font-size: 1.5rem;
    padding: 10px;
  }

  .content-right {
    padding: 0 20px 0 30px;
  }

  .content-right-area {
    height: 500px;
    overflow: hidden;
  }
}

@media screen and (max-width: 750px) {
  .content-left {
    padding: 0 0 0 20px;
  }
}

@media screen and (max-width: 720px) {
  .content {
    padding: 30px 0 120px;
  }

  .content-inner {
    flex-direction: column;
  }

  .content-left {
    width: 100%;
    padding: 0 20px;
    position: relative;
  }


	
	
.join-list {
    margin-bottom: 0;
    display: flex;
}
	
.join-item {
    transition: 0.2s;
    margin: 1%;
    margin-bottom: 30px;
}

  .lot {
    padding: 30px 0 0;
  }
	
.lot-list {
    justify-content: center;
}
	
.lot-item a {
    font-size: 90%;
}

  .content-right {
    width: 100%;
	margin-top: 35px;
    padding: 0 20px;
  }

  .content-right-area,
  .content-right-title {
    display: none;
  }

  .content-right-sp {
    width: 100%;
    height: auto;
    padding: 30px 0;
  }
	
.keyword-form {
    text-align: center;
}
	
.keyword-input {
    margin-right: 7px;
}
	
}


@media screen and (max-width: 590px) {
	
.join-list {
    margin-bottom: 0;
    display: block;
}
	
.join-item {
    margin: 0 0 10px 0;
}
	
}

@media screen and (max-width: 400px) {
.content-inner {
    margin-bottom: 25px;
}
}

/* program
================================================== */

.program {
  background: #fde599;
  padding-bottom: 60px;
}

.program-inner {
  padding: 120px 20px 85px;
  position: relative;
}

.program-inner::before {
  content: "";
  position: absolute;
  background: url(/theme/sn-default/images/bangumi_bg.jpg) no-repeat;
  background-size: contain;
  height: 100px;
  width: 200px;
  top: -100px;
  right: 0;
}

.program-inner::after {
  content: "";
  position: absolute;
  background: url(/theme/sn-default/images/line01.png) repeat-x;
  background-size: contain;
  height: 10px;
  width: 100%;
  bottom: 0;
  left: 0;
}

.program-title {
  font-size: 4rem;
  text-align: center;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}

.program-title::before,
.program-title::after {
  content: "";
  flex-grow: 1;
  background: url(/theme/sn-default/images/line01.png) repeat-x;
  background-size: contain;
  display: block;
  height: 10px;
}

.program-title::before {
  margin-right: 30px;
}

.program-title::after {
  margin-left: 30px;
}

.program-body {
  display: flex;
}

/* guide */

.guide {
  width: 70%;
  margin-right: 3%;
}

.guide-inner {
  background: #fff;
  padding: 15px;
  height: 390px;
}

.guide-list {
  overflow-y: scroll;
  height: 360px;
}

.guide-item {
  border-bottom: 1px solid #b3b3b3;
  padding: 30px 10px;
  display: flex;
  align-items: center;
}

.guide-item.guide-now {
  background-color: #fff8dc;
  position: relative;
}

.guide-item.guide-now::before {
  content: "放送中";
  position: absolute;
  top: 8px;
  font-size: 1.2rem;
  color: #fff;
  background-color: #f97300;
  padding: 1px 4px 2px;
}

.guide-time {
  position: relative;
  font-size: 1.8rem;
  font-weight: 700;
  color: #f97300;
  margin-left: 25px;
  margin-right: 40px;
}

.guide-time::before {
  content: "";
  position: absolute;
  background: url(/theme/sn-default/images/time.png) no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  left: -25px;
  top: 55%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.guide-list .guide-link {
  font-size: 2.1rem;
  font-weight: 700;
  text-decoration: underline;
}

.guide-link:hover {
  text-decoration: none;
}

.guide-comment {
  padding: 20px 0 50px;
}

/* schedule */

.schedule {
  width: 27%;
}

.schedule-item {
  margin-bottom: 15px;
}

.schedule-item:last-child {
  margin-bottom: 0;
}

.schedule-item a {
  width: 100%;
  height: 120px;
  background: #666;
  display: block;
  color: #fff;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  padding: 20px;
  position: relative;
  transition: 0.2s;
}

.schedule-item a::after {
  content: "";
  position: absolute;
  background: url(/theme/sn-default/images/icon02.png) no-repeat;
  background-size: contain;
  height: 20px;
  width: 20px;
  bottom: 10px;
  right: 10px;
}

.schedule-item a:hover {
  background: #222;
}

.schedule-icon {
  height: 38px;
  width: auto;
  display: block;
  margin: 0 auto 20px;
}

.schedule-icon.third {

  margin: 0 auto 0 auto;
}


@media screen and (max-width: 598px) {

.schedule-icon.third {

  margin: 0 auto 10px auto;
}

}



/* other-list */

.other-list {
  display: flex;
  justify-content: space-between;
}

.other-item {
  width: 31%;
}

.other-item a {
  display: flex;
  align-items: center;
  border: 4px solid #ffdd19;
  width: 100%;
  height: 80px;
  background: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  padding: 0 15px;
  position: relative;
  transition: 0.2s;
}

.other-item a::after {
  content: "";
  position: absolute;
  background: url(/theme/sn-default/images/icon02.png) no-repeat;
  background-size: contain;
  height: 30px;
  width: 30px;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transition: 0.2s;
}

.other-item a:hover {
  background: #fff6c6;
}

@media screen and (max-width: 1160px) {
  .program-inner::after {
    /* width: calc(100vw - 40px);
    left: 20px; */
  }
}

@media screen and (max-width: 900px) {
  .program-inner {
    padding: 60px 20px 70px;
    position: relative;
  }

  .program-inner::before {
    height: 81px;
    width: 150px;
    top: -81px;
  }

  .guide-item.guide-now::before {
    top: 3px;
    left: 0;
  }

  .other-item {
    width: 32%;
  }
}

@media screen and (max-width: 599px) {
  .program {
    padding-bottom: 30px;
  }

  .program-inner {
    padding: 30px 20px 30px;
    position: relative;
  }

  .program-inner::after {
    content: none;
    position: relative;
  }

  .program-title {
    font-size: 3rem;
    position: absolute;
    top: -40px;
    left: -10px;
  }

  .program-body {
    flex-direction: column;
  }

  .guide {
    width: 100%;
  }

  .guide-inner,
  .guide-list {
    height: 300px;
  }

  .guide-inner {
    overflow: hidden;
  }

  .guide-item {
    padding: 20px 10px;
    flex-direction: column;
    align-items: flex-start;
  }

  .guide-time {
    display: block;
    margin-bottom: 5px;
    font-size: 1.4rem;
    margin-left: 10px;
  }

  .guide-time::before {
    width: 14px;
    height: 14px;
    left: -20px;
    top: 50%;
  }

  .guide-comment {
    padding: 20px 0 30px;
    font-size: 1.3rem;
  }

  .guide-list .guide-link {
    font-size: 1.6rem;
    margin-left: 10px;
  }

  .schedule {
    width: 100%;
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }

  .schedule::after {
    content: "";
    position: absolute;
    background: url(/theme/sn-default/images/line01.png) repeat-x;
    background-size: contain;
    display: block;
    height: 10px;
    bottom: 0;
    width: 100%;
  }

  .schedule-list {
    display: flex;
  }

  .schedule-item {
    width: 32%;
  }

  .schedule-item+.schedule-item {
    margin-left: 2%;
  }

  .schedule-item a {
    padding: 15px 0;
    font-size: 1.4rem;
    height: 90px;
  }

  .schedule-item a::after {
    content: none;
  }

  .schedule-icon {
    height: 25px;
    margin: 0 auto 15px;
  }

  .other-item a {
    height: 60px;
    font-size: 1.5rem;
    padding: 0 0 0 10px;
    border: none;
  }

  .other-item a::after {
    height: 20px;
    width: 20px;
    right: 5px;
  }
}

/* service
================================================== */

.service {
  background: linear-gradient(180deg,
      #fde599 0%,
      #fde599 50%,
      #f9be00 50%,
      #f9be00 100%);
  padding: 60px 0 30px;
  position: relative;
}

.service-bg {
  content: "";
  position: absolute;
  height: 1100px;
  width: 1100px;
  border-radius: 50%;
  background: #fff;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.service-inner {
  position: relative;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px 90px;
}

.service-header {
  text-align: center;
  z-index: 1;
}

.service-icon {
  height: 140px;
  width: auto;
  position: relative;
  top: -20px;
  display: block;
  margin: 0 auto;
}

.service-title {
  font-size: 3.8rem;
  font-weight: 700;
  padding: 0 10px 15px;
  display: inline;
  background: -webkit-linear-gradient(left, #ffd12b 50%, transparent 50%);
  background: -moz-linear-gradient(left, #ffd12b 50%, transparent 50%);
  background: linear-gradient(left, #ffd12b 50%, transparent 50%);
  background-repeat: no-repeat;
  background-size: 200% 0.8em;
  background-position: 100% 0.8em;
  transition: 1.5s;
  z-index: 1;
}

[data-trigger-mark01].visible .service-title {
  background-position: 0% 0.8em;
}

.service-titbe-tb {
  display: none;
}

.service-text {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.8;
  margin: 40px 0 60px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 80px;
  width: 100%;
}

.service-item {
  width: 48%;
  margin: 0 4% 4% 0;
}

.service-item:nth-child(even) {
  margin-right: 0;
}

.service-item:nth-child(3),
.service-item:nth-child(4) {
  margin-bottom: 0;
}

.service-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 220px;
  width: 100%;
  color: #fff;
  position: relative;
  overflow: hidden;
  border-radius: 25px;
}

.service-item a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  top: 0;
  left: 0;
  transition: 0.2s;
}

.service-item-01 a::after {
  background: url(/theme/sn-default/images/service01.jpg) no-repeat;
  background-size: cover;
  background-position: center bottom;
}

.service-item-02 a::after {
  background: url(/theme/sn-default/images/service02.jpg) no-repeat;
  background-size: cover;
  background-position: center bottom;
}

.service-item-03 a::after {
  background: url(/theme/sn-default/images/service03.jpg) no-repeat;
  background-size: cover;
}

.service-item-04 a::after {
  background: url(/theme/sn-default/images/service04.jpg) no-repeat;
  background-size: cover;
  background-position: center top;
}

.service-item a:hover::after {
  transform: scale(1.1);
}

.service-item-title {
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.service-item-title::before {
  position: absolute;
  content: "";
  background: url(/theme/sn-default/images/icon02.png) no-repeat;
  background-size: contain;
  width: 28px;
  height: 28px;
  left: -35px;
  top: 52%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.service-item-text {
  text-align: center;
  padding-top: 25px;
  font-size: 1.8rem;
  font-weight: 700;
  z-index: 1;
}

.service-join .join-link {
  width: 240px;
  height: 65px;
  margin-bottom: 110px;
  border-radius: 32.5px;
}

.service-join .join-link::before {
  left: 25px;
}

.service-join .join-link:hover::before {
  left: 30px;
}

@media screen and (max-width: 1240px) {
  .service {
    overflow: hidden;
  }

  .service-bg {
    width: 105vw;
    height: 105vw;
    top: 0;
  }

  .service-text {
    margin: 4vw 0;
  }

  .service-item a {
    height: calc(100vw * 0.2);
  }
}

@media screen and (max-width: 960px) {
  .service-bg {
    top: 10vw;
  }

  .service-text {
    margin: 5vw 0;
  }

}

@media screen and (max-width: 900px) {
  .service {
    padding: 5vw 0;
  }

  .service-bg {
    height: 115vw;
    width: 115vw;
  }

  .service-inner {
    padding: 0 20px 15vw;
  }

  .service-item-title {
    font-size: 2rem;
  }

  .service-item-title::before {
    width: 23px;
    height: 23px;
    left: -25px;
    top: 55%;
  }

  .service-item a {
    /* height: calc(100vw * 0.3054); */
  }

  .service-item-text {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 750px) {
  .service-inner {
    padding: 0 20px 10vw;
  }

  .service-icon {
    height: 100px;
  }

  .service-title {
    line-height: 1.6;
    background-size: 200% 0.5em;
    font-size: 3.3rem;
  }

  .service-text {
    font-size: 2rem;
  }

  .service-titbe-tb {
    display: block;
  }

  .service-list {
    margin: 0 0 7vw;
  }

  .service-item a::before {
    position: absolute;
    content: "";
    background: url(/theme/sn-default/images/icon02.png) no-repeat;
    background-size: contain;
    width: 25px;
    height: 25px;
    display: inline;
    bottom: 10px;
    right: 10px;
    z-index: 1;
  }

  .service-item-text {
    display: none;
  }

  .service-item-title::before {
    content: none;
  }

  .service-join .join-link {
    width: 200px;
    height: 50px;
    border-radius: 25px;
  }
}

@media screen and (max-width: 599px) {
  .service {
    padding: 40px 0 30px;
  }

  .service-bg {
    width: 125vw;
    height: 125vw;
  }

  .service-icon {
    top: -40px;
    margin-bottom: -30px;
  }

  .service-title {
    font-size: 2.8rem;
  }

  .service-text {
    font-size: 1.6rem;
  }

  .service-list {
    margin: 0 0 7vw;
  }

  .service-item a {
    text-align: center;
    line-height: 1.6;
  }
}

@media screen and (max-width: 450px) {
  .service-bg {
    width: 135vw;
    height: 135vw;
  }

  .service-title {
    line-height: 1.4;
    background-size: 200% 0.5em;
    font-size: 2.5rem;
    padding: 0 15px;
  }

  .service-item-title {
    font-size: 1.5rem;
  }

  .service-text {
    margin: 15px 0 20px;
  }

  .service-item a::before {
    width: 20px;
    height: 20px;
    bottom: 10px;
    right: 10px;
  }

  .service-join .join-link {
    width: 160px;
    height: 40px;
    border-radius: 20px;
    font-size: 1.5rem;
  }

  .service-join .join-link::before {
    left: 15px;
  }

  .service-join .join-link:hover::before {
    left: 20px;
  }
}

@media screen and (max-width: 350px) {
  .service-bg {
    height: 160vw;
    width: 160vw;
  }
}

/* banner
================================================== */

.banner {
  background: #f9be00;
}

.banner-inner {
  padding: 80px 40px 120px;
  position: relative;
}

.banner-inner::before {
  content: "";
  position: absolute;
  background: url(/theme/sn-default/images/line02.png) repeat-x;
  background-size: contain;
  height: 10px;
  width: 100%;
  top: 0;
  left: 0;
}

.banner-list {
  display: flex;
  flex-wrap: wrap;
}

.banner-item {
  width: 23%;
  transition: opacity 0.2s;
}

.banner-item:hover {
  opacity: 0.8;
}

.banner-item:not(:nth-child(4n + 1)) {
  margin: 0 0 2% 2.666%;
}

.banner-item img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 900px) {
  .banner-inner {
    padding: 40px 20px 60px;
  }

  .banner-list {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .banner-item {
    width: 48%;
  }

  .banner-item:not(:nth-child(4n + 1)) {
    margin: 0;
  }

  .banner-item {
    margin-bottom: 2%;
  }

  .banner-item:nth-child(2n) {
    margin: 0 0 2% 4%;
  }
}

/* top-link
================================================== */

.l-under-nav {
  padding: 100px 0 50px;
  background: #4d4d4d;
}

.under-nav-inner {
  display: flex;
  flex-wrap: wrap;
  padding: 0 20px;
}

.under-list-wrap {
  width: 25%;
  border-left: 1px solid #fff;
  margin-bottom: 50px;
  padding: 0 10px 0 15px;
}

.under-list-title {
  position: relative;
  margin-left: 25px;
  margin-bottom: 10px;
  color: #fff;
}

.under-list-title>a {
  text-decoration: none;
  color: #fff;
}

.under-list {
  color: #fff;
  font-size: 1.8rem;
}

.under-list:nth-child(4n) {
  border-right: 1px solid #fff;
}

.under-list-title::before {
  content: "";
  position: absolute;
  background: url(/theme/sn-default/images/icon02.png) no-repeat;
  background-size: contain;
  height: 20px;
  width: 20px;
  left: -25px;
  top: 1px;
}

.under-item {
  padding-left: 25px;
  margin-bottom: 5px;
  position: relative;
}

.under-item::before {
  content: "- ";
  position: absolute;
  left: 15px;
  top: 2px;
}

.under-item a {
  color: #fff;
  font-size: 1.1rem;
  text-decoration: underline;
}

.under-item a:hover {
  text-decoration: none;
}

@media screen and (max-width: 900px) {
  .l-under-nav {
    padding: 50px 0 20px;
  }

  .under-list-wrap {
    width: 33%;
  }

  .under-list:nth-child(4n) {
    border-right: none;
  }

  .under-list:nth-child(3n) {
    border-right: 1px solid #fff;
  }
}

@media screen and (max-width: 599px) {
  .l-under-nav {
    display: none;
  }
}

/* footer
================================================== */

.l-footer {
  background: url(/theme/sn-default/images/f_bg.jpg) no-repeat;
  background-size: contain;
  background-position: right 0;
}

.footer-inner {
  padding: 120px 20px;
}

.address {
  margin-bottom: 70px;
}

.address-logo {
  width: 200px;
  height: auto;
  margin-bottom: 30px;
}

.address address p {
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 700;
}

p.f-logo-text {
    font-size: 150%;
    font-weight: bold;
    margin-bottom: 30px;
}


p.f-link{
	margin-top: 20px;
}

p.f-link a{
	color: #f87402;
	text-decoration: underline;
}



.footer-bottom {
  display: flex;
  align-items: flex-end;
}

.footer-safe {
  margin-bottom: 7px;
}

.copyright {
  font-size: 1.5rem;
  line-height: 2;
}

@media screen and (max-width: 900px) {
  .footer-inner {
    padding: 60px 20px 80px;
  }

  .address {
    margin-bottom: 30px;
  }

  .address-logo {
    width: 150px;
    margin-bottom: 15px;
  }

  .address address p {
    font-size: 1.6rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .copyright {
    font-size: 1.2rem;
  }

  .footer-safe {
    margin-bottom: 0;
    margin-top: 10px;
  }

  .footer-safe img {
    width: 50px;
  }
}

/* pagetop
================================================== */

.to-pagetop {
  position: fixed;
  z-index: 3;
  bottom: 20px;
  right: 20px;
}

.to-pagetop:hover {
  cursor: pointer;
}

.to-pagetop img {
  height: 130px;
  width: auto;
}

/* page
================================================== */
#page {}

/* pankuzu
================================================== */

#breadCrumb {
  padding: 25px 0 35px;
  line-height: 1.6;
}

.pankuze_list_items,
.pankuze_list_items a {}

.pankuze_list_items a {
  text-decoration: underline;
  margin-right: 5px;
}

.pankuze_list_items a:hover {
  text-decoration: none;
}

.breadCrumb_item_title {
  margin-left: 5px;
}

@media screen and (max-width: 900px) {
  #breadCrumb {
    padding: 20px 0 30px;
  }
}

@media screen and (max-width: 767px) {
  #breadCrumb {
    padding: 20px 0;
    font-size: 1.5rem;
  }
}

/* contentHeader
================================================== */

.contentHeader .date {
  font-size: 1.7rem;
  color: #757575;
  margin: 2% 0;
  text-align: right;
}

/* under-content
================================================== */

.under-content {
  background: #fee59a;
  padding: 80px 20px;
  position: relative;
  margin-top: 100px;
  overflow: hidden;
}

.under-content::before {
  content: "";
  position: absolute;
  background: url(/theme/sn-default/images/bangumi_bg.jpg) no-repeat;
  background-size: contain;
  height: 100px;
  width: 200px;
  top: -100px;
  right: 0;
}

.under-content .join-list {
  display: flex;
  justify-content: space-between;
}

.under-content .join-item {
  width: 48%;
  margin-bottom: 0;
}

.under-content .keyword {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 0 0;
}

.under-content .keyword-title {
  width: 30%;
  margin-bottom: 0;
}

.under-content .keyword-form {
  width: 70%;
}

.under-content .keyword-submit {
  margin-left: 10px;
}

@media screen and (max-width: 900px) {
  .under-content {
    padding: 50px 20px;
    margin-top: 80px;
  }

  .under-content::before {
    height: 80px;
    width: 160px;
    top: -80px;
  }
}

@media screen and (max-width: 600px) {
  .under-content .join-list {
    flex-direction: column;
  }

  .under-content .join-item {
    width: 100%;
  }

  .under-content .join-item:first-child {
    margin-bottom: 20px;
  }

  .under-content .keyword {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0 0;
  }

  .under-content .keyword-title {
    font-size: 2rem;
    margin-bottom: 15px;
    width: 100%;
  }

  .under-content .keyword-form {
    width: 100%;
  }
}

/* cate-list
================================================== */

.cate-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 55px;
}

.cate-item {
  width: 48%;
  border: 1px solid #ffd22c;
  margin-bottom: 4%;
}

.cate-item a {
  transition: 0.2s;
  display: block;
  height: 100%;
}

.cate-item a:hover {
  opacity: 0.8;
}

.cate-item .thumb {
  height: 230px;
  width: 100%;
  display: block;
}

.cate-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

.cate-item .date {
  text-align: left;
  padding: 20px 15px;
  font-size: 1.4rem;
  color: #565656;
  display: block;
}

.cate-item .title {
  padding: 15px 15px 15px 20px;
  margin-left: 10px;
  line-height: 1.6;
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
  position: relative;
}

.cate-item .title::before {
  content: "";
  width: 10px;
  height: calc(100% - 30px);
  background-color: #ffd22c;
  position: absolute;
  left: 0;
}

.cate-item a:hover .title {
  text-decoration: underline;
}

.cate-item .description {
  margin: 10px 15px 20px 15px;
  display: block;
  font-size: 90%;
  line-height: 160%;
}

@media screen and (max-width: 650px) {
  .cate-item .thumb {
    height: 130px;
  }
}

@media screen and (max-width: 480px) {
  .cate-list {
    margin-top: 25px;
  }

  .cate-item {
    width: 100%;
  }

  .cate-item .title {
    font-size: 110%;
  }
}

/* pagination
================================================== */
.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.pagination span {
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  border: 1px solid #ffd22c;
  margin: 5px;
  font-size: 1.3rem;
  transition: all 0.2s;
}

.pagination span.current {
  background-color: #ffd22c;
  border: 1px solid #ffd22c;
  color: #fff;
}

.pagination span a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.pagination span:hover {
  background-color: #ffd22c;
  border: 1px solid #ffd22c;
  color: #fff;
}

.pagination span:hover a {
  color: #fff;
}

@media screen and (max-width: 480px) {
  .pagination span {
    width: 30px;
    height: 30px;
    margin: 3px;
  }
}

/* page-content-wrap
================================================== */
.page-content-wrap {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.page-content-wrap article {
  width: 76%;
}

.page-content-wrap #sidemenu {
  height: 100%;
  position: sticky;
  top: 75px;
  width: 20%;
}

.page-content-wrap #sidemenu section+section {
  margin-top: 15px;
}

.page-content-wrap .sideHeader h2 {
  font-size: 1.8rem;
  color: #fff;
  padding: 10px;
  line-height: 1.4;
  background-color: #444444;
}

.page-content-wrap .sideBody ul {}

.page-content-wrap .sideBody ul li {
  font-size: 1.3rem;
  line-height: 1.4;
  border-bottom: 1px dashed #aaa;
}

.page-content-wrap .sideBody ul li .active {
  background-color: #eee;
}

.page-content-wrap .sideBody ul li a,
.page-content-wrap .sideBody ul li span {
  display: block;
  padding: 1rem 0.5rem;
}

.page-content-wrap .sideBody ul li a {
  transition: background-color 0.3s;
}

.page-content-wrap .sideBody ul li a:hover {
  background-color: #eee;
}

@media screen and (max-width: 900px) {
  .page-content-wrap {
    flex-direction: column;
  }

  .page-content-wrap article {
    width: 100%;
  }

  .page-content-wrap #sidemenu {
    width: 100%;
    margin-top: 20px;
  }
}

/* is-ie
================================================== */
.is-ie {
  display: none;
}

/* sitemap
================================================== */

.sitemap {
  margin-left: 0;
  margin-top: 30px;
}

ul.sitemap-list.sm-depth1-list {
  border-left: none;
  padding: 0;
}

.sitemap li.sm-depth1-item {
  margin: 1%;
  font-weight: bold;
  padding: 0;
  letter-spacing: 2px;
  background-image: none;
  font-size: 2rem;
}

span.sitemap-list-item-span.sm-depth1-label {
  display: block;
  margin: 2% 0;
  transition: 0.3s;
  border-bottom: 1px solid #4d4d4d;
}

span.sitemap-list-item-span.sm-depth1-label>a {
  position: relative;
}

span.sitemap-list-item-span.sm-depth1-label>a:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f152";
  font-size: 1.6rem;
  position: absolute;
  top: 50%;
  transform: translateY(-40%);
  color: #aaa;
  left: 0;
}

.sitemap li.sm-depth1-item>span>a:first-child {
  text-decoration: none;
  display: block;
  transition: color 0.2s;
  padding: 7px 15px 7px 25px;
}

.sitemap li.sm-depth1-item a {
  transition: color 0.2s;
}

.sitemap li.sm-depth1-item a:hover {
  color: #ffd22c;
}

.sitemap li.sm-depth1-item::before {
  border-right: none;
  border-bottom: none;
}

ul.sitemap-list.sm-depth2-list {
  margin: 25px 0 25px 20px;
}

ul.sitemap-list.sm-depth2-list>li {
  font-size: 1.6rem;
  margin: 10px 0;
}

.sm-depth2-label>a {
  position: relative;
  padding-left: 20px;
  display: inline-block;
}

.sm-depth2-label>a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f101";
  font-size: 1.4rem;
  position: absolute;
  top: 50%;
  transform: translateY(-40%);
  color: #aaa;
  left: 0;
}

ul.sitemap-list.sm-depth3-list {
  margin: 25px 0 25px 30px;
}

ul.sitemap-list.sm-depth3-list>li {
  margin: 10px 0;
  font-weight: normal;
  background-image: none;
  font-size: 1.4rem;
}

.sm-depth3-label>a {
  position: relative;
  padding-left: 15px;
  display: inline-block;
}

.sm-depth3-label>a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
  font-size: 1.4rem;
  position: absolute;
  top: 50%;
  transform: translateY(-40%);
  color: #aaa;
  left: 0;
}

ul.sitemap-list.sm-depth4-list {
  font-weight: normal;
  margin: 25px 0 25px 30px;
}

ul.sitemap-list.sm-depth4-list>li {
  font-size: 1.4rem;
  margin: 10px 0;
}

.sm-depth4-label>a {
  position: relative;
  padding-left: 15px;
  display: inline-block;
}

.sm-depth4-label>a::before {
  font-weight: 900;
  content: "・";
  font-size: 0.5rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  left: 0;
}

/* 印刷時の対応
**********************************/
@media print {
  body {
    zoom: 0.64;
    -webkit-print-color-adjust: exact;
  }

  .bg-preview-notice,
  .is-fixed.l-header-nav {
    display: none;
  }
}