@charset "utf-8";
/*
Theme Name: ゆうばり国際ファンタスティック映画祭
Theme URI: 
Version: 1.0.0
Author: ステム株式会社
Author URI: http://www.stem-inc.tokyo/
*/

/* ========================================================
  RESET
========================================================= */
* {
	padding: 0px;
	margin: 0px;
	outline: none;
}

*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	border: 0px;
	overflow-y: scroll;
	-webkit-text-size-adjust: 100%;
	font-size: 62.5%;
}

body {
	color: #000;
	cursor: default;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  font-size: 16px; font-size: 1.6rem;
	line-height: 1.8;
	word-wrap: break-word;
  letter-spacing: .07em;
  text-align: justify;
  width: 100%;
}

img {
	max-width:100%;
	height:auto;
	vertical-align: bottom;
	border: 0;
}

a {
	color: #ec6504;
  text-decoration: underline;

}
a:hover,
a:hover img {
	opacity: .7;
	-webkit-opacity: .7;
	-moz-opacity: .7;
}

a img {
  transition: all .3s;
}

/* ========================================================
  LAYOUT
========================================================= */
/*  header ------------------  */
.header {
  width: 100%;
  background-color: #fff;
  position: relative;
  z-index: 99;
  height: 114px;
  /* top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transition: all .3s; */
}
.header__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  background-color: #fff;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  margin: 0 auto;
  padding: 20px 2.5%;
  transition: all .5s;
  top: -80px;
}
.header__logo img {
  width: 240px;
  transition: all .3s;
  vertical-align: text-bottom;
}
.header .header__inner.fixed {
  position: fixed;
  height: 80px;
  padding: 10px 2.5%;
  top: 0;
}
.header .header__inner.fixed .header__logo img {
  width: 160px;
}
@media only screen and (max-width: 960px) {
#home .header__logo img {
  display: block;
}
.header__logo img {
  max-width: 160px;
  vertical-align: baseline;
}
.header {
  height: auto;
}
.header__inner {
  align-items: inherit;
  height: auto;
  padding: 0;
  transition: none;
  top: 0px;
}
.header .header__inner.fixed {
  height: inherit;
  padding: inherit;
}
.header .header__inner.fixed .header__logo {
  width: inherit;
}
}

/*  nav-global ------------------  */
.global-nav {
  width: 100%;
  flex: 1;
}
.global-nav__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  justify-content: right;
  margin: 0 auto;
  list-style: none;
  gap: 25px;
}
.global-nav li.global-nav__item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 0;
}
.global-nav li.global-nav__item a {
  color: #000;
  text-decoration: none;
  font-family: "Fjalla One";
  font-size: 16px; font-size: 1.6rem;
  display: block;
  position: relative;
  text-align: center;
  width: 100%;
}
.global-nav li.global-nav__item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background:#000;
  transition: all .3s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.global-nav li.global-nav__item.current a::after,
.global-nav li.global-nav__item a:hover::after,
.home .global-nav li.global-nav__home a::after,
.contact .global-nav li.global-nav__contact a::after,
.news .global-nav li.global-nav__news a::after,
.tour .global-nav li.global-nav__tour a::after,
.ticket .global-nav li.global-nav__ticket a::after,
.timetable .global-nav li.global-nav__timetable a::after,
.map .global-nav li.global-nav__map a::after,
.category .global-nav li.global-nav__news a::after,
.date .global-nav li.global-nav__news a::after,
.single-post .global-nav li.global-nav__news a::after {
  transform: scale(1, 1);
}

.global-nav li.global-nav__item a:hover {
  opacity: 1;
}
.global-nav li.global-nav__entry a {
  background-color: #000;
  border-radius: 5px;
  color: #fff;
  padding: 5px 20px;
  transition: all .2s;
}
.global-nav li.global-nav__entry a:hover {
  background-color: #666;
}

.global-nav__dropdown-menu {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: -10px;
  white-space: nowrap;
  list-style: none;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px 20px;
}
.global-nav .global-nav__item:hover .global-nav__dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  -webkit-transition: .8s;
  transition:  .8s;
}
.global-nav .global-nav__item .global-nav__dropdown-menu a {
  font-size: 15px; font-size: 1.5rem;
  font-weight: 400;
  display: block;
  text-align: left;
  padding: 10px 0 5px 10px;
  position: relative;
}
.global-nav .global-nav__item .global-nav__dropdown-menu a::before {
  content: "";
  width: 5px;
  height: 1px;
  display: block;
  background-color: #000;
  position: absolute;
  top: 55%;
  left: 0;
  transform: translateY(-55%);
  -webkit-transform: translateY(-55%);
}
.global-nav .global-nav__item .global-nav__dropdown-menu a:hover {
  color: #2293d2
}
.global-nav .global-nav__item .global-nav__dropdown-menu a:hover::before {
  background-color: #2293d2;
}

.openbtn {
  display: none;
}
@media only screen and (max-width: 1080px) {
.global-nav li.global-nav__item a {
  padding: 10px 0;
  font-size: 15px; font-size: 1.5rem;
}
.global-nav li.global-nav__entry a {
  padding: 5px 20px;
}
.global-nav__wrap {
  gap: 20px;
}
}
@media only screen and (max-width: 960px) {
.header {
  z-index: 999;
  position: fixed;
  top: 0;
}
.header__inner {
  width: 100%;
}
.header__logo {
  padding: 10px 10px 10px;
  z-index: 999;
  line-height: 1;
}
html.fixed {
  height: 100%;
  overflow: hidden;
}
.global-nav {
	position: absolute;
	z-index: 998;
	width: 100%;
	height: auto;
  padding: 0;
	transition: all .5s;
  opacity: 0;
}
.global-nav.panelactive {
  opacity: 1;
}
.global-nav__wrap {
  position: absolute;
  z-index: 998;
  width: 100%;
  height: 100vh;
  padding: 120px 20px 120px;
  background-color: #fff;
  display: none;
  overflow: auto;
}
.panelactive .global-nav__wrap {
  display: block;
}
.global-nav__dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  position: static;
  width: 100%;
  white-space: nowrap;
  padding: 0px 20px 10px;
  background-color: inherit;
}
.global-nav li.global-nav__item {
  width: 100%;
  flex-wrap: wrap;
  justify-content: left;
}
.global-nav li.global-nav__item a {
  padding: 15px 10px 15px;
  text-align: left;
  text-shadow: none;
}
.global-nav li.global-nav__item a:hover,
.global-nav .global-nav__item .global-nav__dropdown-menu a:hover {
  color: #000;
}
.global-nav li.global-nav__item > a {
  border-top: 1px solid #cccccc;
  font-size: 18px; font-size: 1.8rem;
}
.global-nav li.global-nav__item:last-of-type > a {
  border-bottom: 1px solid #cccccc;
}
.global-nav__item a::before {
  content: none;
}
.global-nav__item a::before {
  background-size: 50px 38px;
  width: 50px;
  height: 38px;
}
.global-nav li.global-nav__entry a {
  text-align: center;
  padding: 10px;
}
.openbtn {
  position: absolute;
	z-index: 9999;/*ボタンを最前面に*/
	top: 10px;
	right: 10px;
	cursor: pointer;
	width: 60px;
	height: 60px;
  display: block;
}
.openbtn span{
	display: inline-block;
	transition: all .4s;
	position: absolute;
	left: 13px;
	height: 2px;
	border-radius: 2px;
	background-color: #000;
	width: 60%;
}
.openbtn span:nth-of-type(1) {
  top:15px; 
}
.openbtn span:nth-of-type(2) {
  top:23px;
}
.openbtn span:nth-of-type(3) {
  top:31px;
}
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 13px;
  transform: translateY(6px) rotate(-45deg);
  width: 60%;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3){
  top: 30px;
  left: 13px;
  transform: translateY(-6px) rotate(45deg);
  width: 60%;
}
.openbtn .openbtn-menu {
  font-size: 11px;
  font-size: 1.1rem;
  text-align: center;
  position: absolute;
  bottom: 2px;
  left: 50%;
  color: #000;
  transform: translateX(-50%);
  letter-spacing: .1em;
}

.global-nav li.global-nav__item a::after {
  display: none;
}
}

/*  Page Home ------------------------  */
.mainvisual {
  position: relative;
  text-align: center;
  height: calc(100vh - 114px);
  z-index: 10;
}
.mainvisual .mainvisual__inenr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  position: absolute;
  z-index: 1;
  width: 70%;
  max-width: 450px;
}
.main-img {
  max-width: 800px;
  width: 95%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}
/* スクロールダウン */
.scroll-down {
  width: 1px;
  height: 60px;
  position: absolute;
  background-color: #fff;
  animation: scroll-down 2s ease infinite;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  bottom: 30px;
  z-index: 990;
}
/* 矢印のアニメーション */
@keyframes scroll-down {
  0%{
    transform-origin: top;
    transform: scaleY(0);
  }
  45%{
    transform-origin: top;
    transform: scaleY(1);
  }
  55%{
    transform-origin: bottom;
    transform: scaleY(1);
  }
  100%{
    transform-origin: bottom;
    transform: scaleY(0);
  }
}

body.home {
  background-color: #000;
  color: #fff;
}

.section-guest {
  background-color: #1b1b1b;
  padding: 1em 3em 3em;
}
.guest-wrap__inner {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.guest-wrap__inner .guest-item {
  width: calc((100% - 10px * 1) / 2);
}
.guest-4col .guest-wrap__inner .guest-item {
  width: calc((100% - 10px * 3) / 4);
}
.guest-heading {
  font-family: "Zen Antique Soft", serif;
  font-weight: 400;
  text-align: center;
  color: #d1b66e;
  font-size: 34px; font-size: 3.4rem;
  margin: .5em 0 .5em;
}

.home-btn-wrap {
  margin: 4.5em 0 6em;
}
.home-btn-wrap a,
.home-btn-wrap .col-wrap {
  max-width: 840px;
  margin: 5px auto;
  gap: 0;
}

.main-visual-bg {
  position: relative;
  width: 100%;
  /* height: calc(100vh - 114px ); */
  overflow: hidden;
  z-index: -1;
}

.layer {
  position: fixed;
  left: 0;
  width: 20vw; /* 個別調整OK */
}

.layer img {
  display: block;
  width: 130%;
  max-width: 130%;
  height: auto;
}
.layer1 { left: 0%;  top: 0; z-index: 5;}
.layer2 { left: 22%; top: 0; z-index: 3;}
.layer3 { left: 60%; top: 0; z-index: 4;}
.layer4 { left: 80%; top: 0; z-index: 2;}
.layer5 { left: 40%; top: 0; z-index: 1;}

.dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;          /* 最初は透明 */
  pointer-events: none; /* クリックなど邪魔しない */
  transition: opacity 0.1s linear; /* なめらかに変化 */
  z-index: 1;
}

@media only screen and (max-width: 1200px) {
.layer {
  width: 25vw;
}
}
@media only screen and (max-width: 800px) {
.layer {
  width: 50vw;
}
.layer1 { left: -10%; }
.layer2 { left: 0%; }
.layer3 { left: 30%; }
.layer4 { left: 45%; }
.layer5 { display: none; }
}
@media only screen and (max-width: 640px) {
.mainvisual {
  margin-top: 69px;
}
.scroll-down {
  display: none;
}

.section-guest {
  padding: 1em 1em 2em 1em;
}
.guest-wrap__inner {
  gap: 10px 0;
}
.guest-4col .guest-wrap__inner {
  gap: 10px;
}
.guest-wrap__inner .guest-item {
  width: 100%;
}
.guest-4col .guest-wrap__inner .guest-item {
  width: calc((100% - 10px * 1) / 2);
}
.guest-heading {
  font-size: 24px; font-size: 2.4rem;
}

}

.sns-x {
  position: fixed;
  z-index: 999;
  bottom: 10px;
  right: 10px;
}
.sns-x a {
  color: #ccc;
}
@media only screen and (max-width: 640px) {
.sns-x {
  display: none;
}
}

/*  Page service ------------------------  */
ol.flow-step {
  margin: 3em 0 3em 42px;
  list-style: none;
  counter-reset: number 0;
}
@media (max-width: 922px) {
  ol.flow-step {
    margin-left: 30px;
  }
}
ol.flow-step li {
  position: relative;
  padding-top: 20px;
  padding-left: 70px;
  padding-bottom: 2em;
  border-left: 2px solid #0179c8;
}
ol.flow-step li:last-child {
  border-left: none;
}
ol.flow-step li dt {
  font-size: 28px; font-size: 2.8rem;
  font-weight: 700;
}
@media (max-width: 922px) {
  ol.flow-step li {
    padding-top: 15px;
    padding-left: 50px;
  }
}
ol.flow-step li:before {
  display: block;
  counter-increment: number 1;
  content: "STEP" counter(number);
  position: absolute;
  top: 0;
  left: -42px;
  width: 85px;
  height: 85px;
  text-align: center;
  line-height: 85px;
  white-space: nowrap;
  border-radius: 85px;
  background: #0179c8;
  color: #ffffff;
}
@media (max-width: 922px) {
  ol.flow-step li:before {
    left: -36px;
    width: 70px;
    height: 70px;
    line-height: 70px;
  }
}
@media only screen and (max-width: 768px) {
ol.flow-step li dt {
  font-size: 22px; font-size: 2.2rem;
}
}

/*  slider ------------------  */
.slick-track {
  margin-left: inherit!important;
}
.thumbnail-img img {
  opacity: .7;
}
.thumbnail-img.slick-current img {
  opacity: 1;
}
.slick-slide {
  padding: 5px;
}
.thumbnail .slick-track {
  transform: unset !important;
}
@media only screen and (max-width: 768px) {
.slick-slide {
  padding: 0;
}
.thumbnail .slick-slide {
  padding: 10px 3px 0px;
}
}

/*  news-list ------------------  */
.news-list {
  border-top: 1px solid #c6c6c6;
  text-align: left;
  display: flex;
  padding: 1em 0;
}
.news-list dt {
  width: 9em;
}
.news-list dd {
  flex: 1;
}
.news-list:last-of-type {
  border-bottom: 1px solid #c6c6c6;
}
.news-list a {
  color: #000;
  display: block;
  text-decoration: none;
  transition: all .3s;
}
.news-list a:hover {
  color: #999;
}
.news-list__date {
  margin-bottom: .5em;
}
.news-list__ttl {
  font-weight: 600;
}

.home .news-list {
  border-top: 1px solid #484848;
}
.home .news-list:last-of-type {
  border-bottom: 1px solid #484848;
}
.home .news-list a {
  color: #fff;
}
@media only screen and (max-width: 640px) {
.news-list {
  flex-direction: column;
}
.news-list dt {
  width: 100%;
  margin-bottom: .3em;
  font-size: 13px; font-size: 1.3rem;
}
}

/*  btn ------------------  */
.btn {
  background-color: #000;
  border-radius: 5px;
  color: #fff;
  font-size: 21px; font-size: 2.1rem;
  font-weight: 500;
  text-decoration: none;
  margin: .5em auto 1.5em;
  padding: .6em .5em;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  max-width: 640px;
  width: 100%;
}
.article__inner a.btn {
  color: #FFF;
}
.btn::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: .5em;
  height: .5em;
  border: 1px solid currentColor;
  margin-left: 3px;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(10%) rotate(45deg);
  transition: all .2s;
}
.btn:hover::after {
  transform: translateX(45%) rotate(45deg);
}
.icon-pdf.btn::after {
  background-image: url(images/common/icon_pdf.svg);
  background-repeat: no-repeat;
  background-size: contain;
  padding-left: 25px;
  border: none;
  transform:  rotate(0deg);
  width: auto;
  height: 24px;
  margin-left: 6px;
}
.icon-pdf.btn:hover::after {
  transform: translateX(20%);
}

.btn.btn--white {
  background-color: #fff;
  color: #000;
  font-size: 21px; font-size: 2.1rem;
}
.article__inner a.btn.btn--white {
  color: #000;
}
.btn.btn--white::after {
  color: #000;
}
.icon-pdf.btn.btn--white::after {
  background-image: url(images/common/icon_pdf_black.svg);
}

@media only screen and (max-width: 768px) { 
.btn {
  font-size: 16px; font-size: 1.6rem;
}
.btn.btn--white {
  font-size: 18px; font-size: 1.8rem;
}
}


/*  heading ------------------  */
.heading-lv2 {
  font-family: "Fjalla One";
  font-weight: 400;
  font-size: 56px; font-size: 5.6rem;
  line-height: 1.3;
  margin-bottom: .3em;
}
.heading-lv2 span {
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 16px; font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: .02em;
  margin-left: 15px;
  color: #8b8b8b;
}
.heading-lv3 {
  font-family: "Fjalla One";
  font-weight: 400;
  font-size: 30px; font-size: 3.0rem;
  margin-top: 40px;
  margin-bottom: 25px;
  line-height: 1.3;
  position: relative;
  text-align: left;
  word-break: break-word;
}
.heading-lv3 span {
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 16px; font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: .02em;
  margin-left: 15px;
  display: inline-block;
  color: #8b8b8b;
}
.heading-lv3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100px;
  height: 2px;
  background-color: #000;
}

@media only screen and (max-width: 640px) {
.heading-lv2 {
  font-size: 42px; font-size: 4.2rem;
}
.heading-lv2 span {
  font-size: 14px; font-size: 1.4rem;
}
.heading-lv3 {
  font-size: 22px; font-size: 2.2rem;
}
.heading-lv3 span {
  font-size: 13px; font-size: 1.3rem;
  display: block;
  margin-left: 0;
}
.heading-lv3::before {
  width: 60px;
  bottom: -10px;
}
}


/*  footer ------------------  */
.footer {
  border-top: 1px solid #cecece;
  position: relative;
  z-index: 12;
}
.footer__banner-wrap {
  background-color: #fff;
}
.footer__banner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 3em 20px 3.5em;
  background-color: #fff;
  color: #000;
}
.footer__inner {
  width: 100%;
  margin: 0 auto;
  padding: 30px 20px 45px;
  background-color: #000;
  color: #fff;
}
.footer-txt {
  font-size: 15px; font-size: 1.5rem;
  text-align: left;
}
.footer-txt a {
  color: #fff;
  text-decoration: none;
}
.footer-kyousan-banner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 15px auto 0;
  gap: 1.5em 5%;
}
.footer-kyousan-banner.footer-kyousan-banner--cenetr {
  justify-content: center;
}
.footer-kyousan-banner__item {
  width: 21%;
}
.footer-kyousan-banner--2 .footer-kyousan-banner__item {
  width: 12%;
}
.footer-kyousan__head {
  font-size: 17px; font-size: 1.7rem;
  font-weight: 600;
  text-align: center;
  margin: .5em 0 1em;
}

.sns {
  text-align: left;
  margin-bottom: 25px;
}
.sns img {
  width: 30px;
}

.copyright {
  font-size: 15px; font-size: 1.5rem;
  text-align: left;
}
@media only screen and (max-width: 800px) {
.footer__banner {
  flex-direction: column;
  align-items: normal;
}
}
@media only screen and (max-width: 800px) {
.footer-txt {
  font-size: 12px; font-size: 1.2rem;
  letter-spacing: .02em;
}
}
@media only screen and (max-width: 640px) {
.footer-kyousan-banner__item {
  width: 47.5%;
}
.footer-kyousan-banner--2 .footer-kyousan-banner__item {
  width: 30%;
}
}

.footer-page-top {
  position: fixed;
  bottom: 20px;
  right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #000;
  z-index: 99;
	opacity: 0;
	transform: translateY(100px);
}
.footer-page-top:hover .arrow {
  margin-top: -2px;
}
.footer-page-top .arrow {
  width: 25px;
  height: 25px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(-45deg);
  top: 25px;
  position: absolute;
  transition: all .3s;
}
.footer-page-top::before {
  content: "";
  width: 40px;
  height: 1px;
  top: 12px;
  display: block;
  background-color: #fff;
  position: absolute;
}
.footer-page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}
.footer-page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
from {
  opacity: 1;
transform: translateY(0);
}
to {
  opacity: 1;
transform: translateY(100px);
}
}
@media only screen and (max-width: 600px) {
.footer-page-top {
  display: none;
}
}

.table-1 {
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 1.6;
  border-top: 1px solid #dadada;
  width: 100%;
  background-color: #fff;
  line-height: 1.3;
}
.table-1 th,
.table-1 td {
  border-bottom: 1px solid #dadada;
  padding: 25px 5px;
  vertical-align: top;
}

.table-30 {
  width: 30%;
}
.table-35 {
  width: 35%;
}
.table-65 {
  width: 65%;
}
.table-70 {
  width: 70%;
}

/*  form ------------------  */
.form-1 {
  border-top: 1px solid #dadada;
  margin-bottom: 20px;
  margin-top: 50px;
}

.form-1 dt {
  font-weight: 400;
  clear: left;
  float: left;
  padding: 20px 0 15px;
  text-align: left;
  width: 20em;
}
.form-1 dt span.red {
  color: #fff!important;
  background-color: #ec0000;
  padding: 0 6px 2px;
  font-size: 12px;
  border-radius: 4px;
  margin-left: 10px;
}
.form-1 dd {
  border-bottom: 1px solid #dadada;
  padding: 15px 0 15px 20em;
  text-align: left;
}
.article__inner .form-1 p {
  margin-bottom: 0;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="url"],
.wpcf7 textarea {
  width: 100%;
}
input, textarea, select {
  background: none repeat scroll 0 0 #fff;
  border: 1px solid #999;
  border-radius: 5px;
  font-size: 100%;
  margin-top: 5px;
  margin-bottom: 10px;
  margin-right: 5px;
  padding: .7em .5em;
  vertical-align: middle;
}
input.wpcf7-submit, button[type="submit"], input.button-primary {
  border: none;
  border-radius: 10px;
  background-color: #000;
  color: #fff;
  cursor: pointer;
  font-size: 1em;
  min-width: 120px;
  margin: 0 0 20px;
  padding: 15px 20px 15px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: .1em;
  -webkit-appearance: none;
  display: table;
  margin: 1em auto 0;
  transition: all .2s;
}
input.wpcf7-submit:hover, button[type="submit"]:hover, input.button-primary:hover {
  background-color: #666;
}
@media only screen and (max-width: 800px) {
.form-1 dt,
.form-1 dd {
  width: 100%;
}
.form-1 dd {
  padding: 5px 0 15px;
}
.form-1 dd input,
.form-1 dd textarea {
  width: 100%;
}
}

.grecaptcha-badge { 
  visibility: hidden; 
}

/*  iframe ------------------  */
iframe#inlineframe { 
  width: 100%;
  border: none;
}


/*  common ------------------  */
.contents {
  margin: 0 auto;
  word-break: break-all;
  max-width: 1200px;
  margin: 3em auto 5em;
  padding: 0 20px;
}
.section {
  position: relative;
  margin: 3.5em 0;
}
.section__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.home .contents {
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 960px) {
.contents {
  margin: 0 auto 4em;
}

.home .contents {
  margin: 2em auto 4em;
}
}

.article__inner {
  margin: 4em 0;
}
.article__inner p {
  margin-bottom: 1em;
  /* text-align: left; */
}
.article__inner a {
  color: #000;
}


.section p {
  margin-bottom: 1em;
}
.section p:last-of-type {
  margin-bottom: 0;
}

.col-wrap {
  display : flex;
  flex-wrap : wrap;
  justify-content:space-between;
  gap: 40px 0;
}
/* 子要素 */
.col-2 .col__item { 
  width: 47%;
  margin-top: 20px;
}
.col-3 .col__item { 
  width: 31%;
  margin-top: 20px;
}
.col-wrap.col-3::after {
  content: "";
  display: block;
  width: 31%;
}

.col-2.col__news {
  width: calc(100% - 43%);
}
.col-2.col__sns {
  width: 40%;
  text-align: center;
}
@media screen and (max-width: 768px) {
.col-2 .col__item,
.col-3 .col__item { 
  width: 100%;
}
.col-2.col__news,
.col-2.col__sns {
  width: 100%;
  margin: 0 auto;
}
}

ul {
  margin-left: 1em;
}
ol {
  margin-left: 1.5em;
}
ul li,
ol li {
  margin-bottom: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 1.6;
}

.br-sp {
  display: none;
}

.text-s {
  font-size: 14px;
  line-height: 1.6;
}
.text-l {
  font-size: 18px;
  line-height: 1.6;
}
.text-l2 {
  font-size: 21px;
  line-height: 1.6;
}
.text-b {
  font-weight: 600;
}

.red {
  color: #ff0007;
}

.annotation {
  padding-left: 1em;
  text-indent: -1em;
}

.center {
  text-align: center;
}

.align-right {
  text-align: right;
}

.nowrap {
  white-space: nowrap;
  display: inline-block;
}

.m-t-0 {margin-top: 0!important;}
.m-t-10 {margin-top: 10px!important;}
.m-t-20 {margin-top: 20px!important;}
.m-t-30 {margin-top: 30px!important;}
.m-t-40 {margin-top: 40px!important;}
.m-t-50 {margin-top: 50px!important;}
.m-b-0 {margin-bottom: 0!important;}
.m-b-10 {margin-bottom: 10px!important;}
.m-b-20 {margin-bottom: 20px!important;}
.m-b-30 {margin-bottom: 30px!important;}
.m-b-40 {margin-bottom: 40px!important;}
.m-b-50 {margin-bottom: 50px!important;}

/*  animation ------------------  */
.fadeUpTrigger,
.fadeInTrigger {
  opacity: 0;
}
.fadeIn {
animation-name: fadeInAnime;
animation-duration: 1.5s;
animation-fill-mode: forwards;
opacity: 0;
}
@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.fadeUp {
animation-name: fadeUpAnime;
animation-duration: 1.0s;
animation-fill-mode: forwards;
opacity: 0;
}
@keyframes fadeUpAnime{
  from {
  opacity: 0;
  transform: translateY(60px);
  }

  to {
  opacity: 1;
  transform: translateY(0);
  }
}
.fadeLeft {
animation-name: fadeLeftAnime;
animation-duration: 1.0s;
animation-fill-mode: forwards;
opacity: 0;
}
@keyframes fadeLeftAnime{
  from {
  opacity: 0;
  transform: translateX(-60px);
  }

  to {
  opacity: 1;
  transform: translateY(0);
  }
}
.fadeBlur {
	animation-name: blurAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
}
.fadeBlur2 {
	animation-name: blurAnime;
	animation-duration:1.4s;
	animation-fill-mode:forwards;
}
@keyframes blurAnime{
  from {
	filter: blur(10px);
	transform: scale(1.02);
  }

  to {
	filter: blur(0);
	transform: scale(1);
  }
}


#apply-button {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #dddddd;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: not-allowed; /* 無効時の見た目 */
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .05em;
}
#apply-button:enabled {
  cursor: pointer;
  background-color: #000; /* 有効時の見た目 */
  transition: all .4s;
}
#apply-button:enabled:hover {
  background-color: #666;
}

/* ========================================================
  BLOG
========================================================= */
.main-head__heading {
  font-family: "Fjalla One";
  font-weight: 400;
  font-size: 56px; font-size: 5.6rem;
  text-align: center;
  line-height: 1.2;
  word-break: break-word;
  margin-bottom: 0;
}
.main-head__sub {
  font-weight: 600;
  font-size: 15px; font-size: 1.5rem;
  text-align: center;
  color: #8b8b8b;
}
@media only screen and (max-width: 960px) {
.main-head {
  padding-top: 40px;
}
.main-head__heading {
  font-size: 40px; font-size: 4.0rem;
}
}


/*  post ------------------  */
.wp-block-list {
  margin-bottom: 1em;
  margin-left: 1.5em;
}
.article-article p {
  margin-bottom: 1em;
}
blockquote.wp-block-quote-is-layout-flow {
	background-color: #eee;
	padding: 10px 20px;
  margin-bottom: 1em;
}
blockquote.wp-block-quote-is-layout-flow p:last-child {
  margin-bottom: 0;
}


.article-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  max-width: 1300px;
  margin: 4em auto 2em;
  gap: 40px;
}
.article-article {
  width: 70%;
}
.article-nav {
  width: 25%;
}
.article-nav .heading-lv3 {
  font-size: 24px; font-size: 2.4rem;
  margin-top: 0;
  margin-bottom: 20px;
}

.article-date {
  font-size: 15px; font-size: 1.5rem;
  margin-bottom: 20px;
}
.article-heading {
  font-size: 30px; font-size: 3.0rem;
  line-height: 1.3;
  text-align: left;
  margin-bottom: .8em;
}
.article-date svg {
  vertical-align: text-bottom;
  width: 20px;
  margin-right: 5px;
}

@media only screen and (max-width: 1080px) {
.article-date {
  font-size: 18px; font-size: 1.8rem;
}
.article-heading { 
  font-size: 24px; font-size: 2.4rem;
}
}
@media only screen and (max-width: 768px) {
.article-wrap {
  flex-direction: column;
}
.article-article {
  width: 100%;
}
.article-nav {
  width: 100%;
}
.article-date {
  font-size: 16px; font-size: 1.6rem;
}
.article-heading { 
  font-size: 22px; font-size: 2.2rem;
}
p.article-heading { 
  margin-bottom: 0!important;
}
}

/*  News list ------------------  */
.article-list {
  border-bottom: 1px solid #c6c6c6;
  margin: 5px 0 10px 0;
  padding: 10px 0;
  list-style: none;
}
.article-list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  gap: 25px;
  border-top: 1px solid #c6c6c6;
  padding: 1.5em 0;
  width: 100%;
  align-items: center;
  color: inherit;
  text-decoration: none;
}
.article-thum {
  width: 48%;
}
.article-head {
  width: 52%;
}
@media only screen and (max-width: 600px) {
.article-list a {
  flex-direction: column;
  gap: 15px;
}
.article-thum {
  width: 100%;
  order: 2;
}
.article-head {
  width: 100%;
  order: 1;
}
}

/*  Film Article ------------------  */
.film-article {
  width: 95%;
  max-width: 840px;
  margin: 2em auto 4em;
}
.film-template-default .contents {
  margin-top: 0;
  max-width: 100%;
  width: 100vw;
  padding: 0;
}
.film-head {
  background-color: #000;
}
.film-head__heading {
  font-family: "Fjalla One", "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-size: 42px; font-size: 4.2rem;
  line-height: 1.2;
  color: #fff;
  padding: 20px 0 10px;
  max-width: 840px;
  margin: 0 auto;
  text-align: left;
  word-break: break-word;
}
.film-head__thum {
  max-width: 840px;
  margin: 0 auto;
  padding-bottom: 10px;
}
.film-copyright {
  font-size: 12px; font-size: 1.2rem;
  font-weight: 300;
  color: #d1d1d1;
  padding: 0 0 15px;
  max-width: 840px;
  text-align: left;
  margin: 0 auto ;
}
@media only screen and (max-width: 860px) {
.film-article {
  width: 100%;
  padding: 0 20px;
}
.film-head__heading {
  font-size: 30px; font-size: 3.0rem;
  padding: 15px 10px 10px;
}
.film-copyright {
  padding: 0 10px 10px 10px;
}
}
/*  Film list ------------------  */
.film-post-list {
  display: flex;
  flex-wrap: wrap; /* 折返し可 */ 
  justify-content: space-between;
  width: 100%;
}
.film-post-item { 
  width: 23%;
  margin-bottom: 2em;
}
.film-post-list::after {
  content: "";
  display: block;
  width: 23%;
}
.film-post-list::before { 
  content: ""; 
  display: block; 
  width: 23%;
  order: 1;
}
.film-post-item a {
  color: #000;
  text-decoration: none;
}
.film-post-item a:hover,
.film-post-item a:hover img {
  opacity: 1;
}
.film-post-item h3 {
  font-size: 16px; font-size: 1.6rem;
  margin: 8px 0 0 0;
  line-height: 1.4;
  text-align: left;
  word-break: break-word;
}
.home .film-post-item h3 {
  color: #fff;
}
.film-post-thumbnail {
  position: relative;
  overflow: hidden;
  padding-top: 60%;
}
.film-post-thumbnail img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  transform-origin: left;
}
.film-post-thumbnail:hover img {
  transform: scale(1.15) translate(-50%, -50%);
}
.film-post-relation{
  max-width: 840px;
  width: 90%;
  margin: 0 auto;
}
.film-post-relation h2 {
  font-size: 21px; font-size: 2.1rem;
  margin-bottom: 10px;
}
@media only screen and (max-width: 800px) {
.film-post-item { 
  width: 47.5%;
}
.film-post-list::after {
  display: none;
}
.film-post-list::before { 
  display: none;
}
}

.film-article p {
  margin-bottom: 1em;
  text-align: left;
}
.film-info {
  display: flex;
  align-items: flex-start;
	padding-bottom: 20px;
  gap: 15px;
}
.film-info__l {
  flex-basis: 58%;
  font-size: 13px; font-size: 1.3rem;
  padding-top: 5px;
}
.film-info__r {
  display: flex;
  justify-content: end;
  flex-basis: 42%;
}
.film-info__date {
  background-color: #ffffff;
  font-size: 13px; font-size: 1.3rem;
  padding: 7px 15px;
  background-image: url(images/film/icon_film2.svg);
  background-repeat: no-repeat;
  background-size: 22px;
  padding-left: 45px;
  background-position: 10px center;
  border: 1px solid #c6c6c6;
  display: inline-block;
  font-weight: 500;
  margin: 0 !important;
}
.film-info__heading {
  font-size: 24px; font-size: 2.4rem;
  margin: 2.5em 0 .8em;
  padding-bottom: 15px;
  line-height: 1.3;
  border-bottom: 1px solid #c6c6c6;
  position: relative;
}
.film-info__heading:first-of-type {
  margin-top: 1.5em;
}
.film-info__heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 15%;
  height: 1px;
  background-color: #000;
}
.film-info__heading-2 {
  font-size: 20px; font-size: 2.0rem;
  margin-bottom: 10px;
  border-left: 2px solid #000;
  padding-left: 10px;
  line-height: 1.3;
}
.film-info__heading-2 em {
  font-size: 14px; font-size: 1.4rem;
  font-weight: 400;
  font-style: normal;
}
.film-info__kantoku {
  margin-top: 25px;
}
.film-info__table table {
  font-size: 15px;
}
.film-info__table table td {
  border-color: #c6c6c6;
}
.film-info__table table td:first-child {
  font-size: 14px;
  font-weight: 600;
  width: 30%;
  background-color: #f2f2f2;
}
@media only screen and (max-width: 800px) {
.film-info {
  flex-direction: column;
  gap: 0;
  padding-bottom: 0;
}
.film-info__r {
  margin: 0 auto;
}
}
@media only screen and (max-width: 781px) {
.film-info__kantoku {
  gap: 20px;
}
}
@media only screen and (max-width: 640px) {
.film-info__heading {
  font-size: 22px; font-size: 2.2rem;
}
.film-info__table table td,
.film-info__table table td:first-child {
  display: block;
  width: 100%;
  margin-top: -1px;
}
.film-info__table table {
  border-top: 1px solid #c6c6c6;
}
}

/*  Tour ------------------  */
.table-scroll-wrap {
  width: 100%;
  overflow-x: auto; /* 横スクロールを有効にする */
  -webkit-overflow-scrolling: touch; /* iOSデバイスでのスムーズスクロール */
}

.table-scroll table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  font-size: 14px;
  text-align: left;
}
@media only screen and (max-width: 600px) {
.table-scroll table {
  font-size: 13px;
}
.table-scroll table {
  min-width: 600px; /* テーブルの最小幅。内容に応じて調整 */
  white-space: nowrap;
}
}
.table-scroll table td {
  border-color: #dbdbdb;
}
/* スクロールバーを常に表示する場合 */
.table-scroll-wrap::-webkit-scrollbar {
height: 8px; /* スクロールバーの高さ */
}
.table-scroll-wrap::-webkit-scrollbar-thumb {
background-color: #000; /* スクロールバーの色 */
border-radius: 4px; /* スクロールバーの角を丸くする */
}
.table-scroll-wrap::-webkit-scrollbar-thumb:hover {
background-color: #000; /* ホバー時のスクロールバーの色 */
}

.table-tour.table-scroll table tr:first-child,
.table-ticket.table-scroll table tr:first-child {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  background-color: #f2f2f2;
}
.table-tour.table-scroll table tr:first-child td:nth-child(8) {
  text-align: center;
}
.table-tour.table-scroll table tr td:first-child,
.table-ticket.table-scroll table tr td:first-child {
  text-align: center;
}
.table-tour.table-scroll table tr:first-child td:first-child::before,
.table-ticket.table-scroll table tr:first-child td:first-child::before {
  background-color: #f2f2f2;
}
.table-tour.table-scroll table tr td:nth-child(5),
.table-tour.table-scroll table tr td:nth-child(6),
.table-tour.table-scroll table tr td:nth-child(7),
.table-ticket.table-scroll table tr td:nth-child(3) {
  text-align: center;
}
.table-tour.table-scroll table tr td:nth-child(8) {
  text-align: right;
}
@media only screen and (max-width: 600px) {
.table-tour.table-scroll table tr td:first-child {
  position: sticky;
  top: 0;
  left: 0;
  text-align: center;
}
.table-tour.table-scroll table tr td:first-child::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-left: 1px #dbdbdb solid;
  border-right: 1px #dbdbdb solid;
  background-color: #fff;
  z-index: -1;
  box-sizing: content-box;
}
.table-tour.table-scroll table tr td:first-child,
.table-ticket.table-scroll table tr td:first-child {
  filter: drop-shadow(3px 0px 4px rgba(0, 0, 0, 0.2));
}
}

figcaption {
  font-size: 13px;
}

/*  パンくず ------------------  */
.breadcrumbs {
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1.4;
  margin: 0 auto 0;
  padding: .8em 2.5%;
  letter-spacing: .05em;
  text-align: left;
  left: 0;
  top: 0;
  color: #000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-top: 1px solid #dbdbdb;
  /* background-image: linear-gradient(90deg, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0)); */
  /* background-color: rgba(0, 0, 0, .8); */
  width: 100%;
  opacity: 0;
  z-index: 998;
}
.breadcrumbs ul {
  margin: 0 auto!important;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.breadcrumbs li {
  display: inline;
  margin: 0;
  vertical-align: bottom
}
.breadcrumbs li a {
  color: #000;
  text-decoration: none;
}
.breadcrumbs ul li a:after,.blogHeader-inner .breadcrumbs ul li a:after {
  content: '/';
  color: #000;
  margin: 0 7px
}
@media only screen and (max-width: 960px) {
.breadcrumbs {
  margin-top: 71px;
}
}

/*  News Article ------------------  */
.article-nav ul {
  margin-left: 0;
}
.article-nav ul li {
  display: block;
  margin-bottom: 10px;
  padding: 10px 0;
  margin: 0;
  border-bottom: 1px solid #c6c6c6;
  letter-spacing: .05em;
}
.article-nav ul li a {
  color: inherit;
  text-decoration: none;
}

.pagination {
  margin: 20px 0 30px;
  text-align: center;
}
.pagination a,
.pagination > span,
.pagination span.dots {
  color: #000;
  display: inline-table;
  margin: 5px 2px;
  padding: 5px 15px;
  text-decoration: none;
}
.pagination a:hover {
  opacity: .5;
}
.pagination span.dots {
  border: none;
  background-color: inherit;
}
.pagination .current {
  background: #000;
  color: #fff;
}
.pagination h2.screen-reader-text {
  display: none;
}
.pagination .prev.page-numbers,
.pagination .next.page-numbers {
	display: none;
}

.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2em;
  line-height: 1.2;
  text-align: center;
  margin: 2em auto;
  max-width: 1300px;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2em;
  line-height: 1.2;
  text-align: center;
  margin: 2em auto;
  max-width: 1300px;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.navigation-left {
  display: inline-block;
  width: 50%;
  text-align: left;
  position: relative;
}
.navigation-right {
  display: inline-block;
  width: 50%;
  text-align: right;
  position: relative;
}
.navigation-left a::before {
  content: '';
  width: 8px;
  height: 8px;
  border: 0px;
  border-top: solid 2px #333;
  border-left: solid 2px #333;
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -4px;
}
.navigation-right a::before {
  content: '';
  width: 8px;
  height: 8px;
  border: 0px;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -4px;
}
.navigation a,
.nav-links .page-numbers {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
}
.navigation a:link,
.navigation a:visited {
  color: inherit;
}
@media only screen and (max-width: 768px) {
.navigation {
  flex-direction: column;
}
.navigation-left,
.navigation-right {
  width: 100%;
}
.navigation a {
  padding: 10px 25px;
}

.prev-arrow {
  left: -15px;
}
.next-arrow {
  right: -20px;
}
.prev-arrow:hover {
  left: -20px;
}
.next-arrow:hover {
  right: -20px;
}
}

h2.wp-block-heading {
  font-size: 26px;
  margin-bottom: 20px;
  line-height: 1.3;
}
h3.wp-block-heading {
  font-size: 21px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.border-box {
  border: 1px solid #dbdbdb;
  border-radius: 10px;
  padding: 30px 40px;
}
.bg-gray {
  background-color: #f5f5f5;
  padding: 20px;
  margin-bottom: 0;
  border-radius: 10px;
}
.border-btm {
  border-bottom: 1px solid #dbdbdb;
  margin-top: .5em;
  padding: 0 0 15px;
}
.icon-map {
  background-image: url(images/common/icon_map.svg);
  background-repeat: no-repeat;
  background-size: 15px;
  padding-left: 25px;
  background-position: 2px 8px;
  margin-bottom: .5em!important;
}
.icon-tel {
  background-image: url(images/common/icon_tel.svg);
  background-repeat: no-repeat;
  background-size: 15px;
  padding-left: 25px;
  background-position: 2px 8px;
  margin-bottom: .5em!important;
}


@media only screen and (max-width: 480px) {
h2.wp-block-heading {
  font-size: 21px;
}
h3.wp-block-heading {
  font-size: 17px;
}

.border-box {
  padding: 20px 15px;
}
}


@media only screen and (max-width: 768px) {
body  {
  font-size: 16px;
  font-size: 1.6rem;
}

.content {
  width: 100%;
}

.br-sp {
  display: block;
}
}


@media only screen and (max-width: 480px) {
body  {
  font-size: 15px;
  font-size: 1.5rem;
}
.copyright {
  font-size: 14px;
  font-size: 1.4rem;
}

}