@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-style: normal;
}

html {
  font-size: 10px;

  /* for iPhone */
  -webkit-text-size-adjust: 100%;
}

body {
  position: relative;
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-family:
    YuGothic,
    "游ゴシック",
    'ヒラギノ角ゴ Pro W3',
    'Hiragino Kaku Gothic Pro',
    'メイリオ',
    'Meiryo',
    'Osaka',
    'ＭＳ Ｐゴシック',
    sans-serif;
  width: 100%;
  height: 100%;
}
img {
  max-width :100%;
  vertical-align: top;
}
img.keep {
  width: auto!important;
  max-width :100%!important;
}
a img  {
  border: none;
}
ul,ol,li {
  list-style-type: none;
}
input,label,select,textarea {
  vertical-align: middle;
}


/* SP コピーガード */
#main img {
  pointer-events: none;
  -webkit-touch-callout: none; /* default or none */
    -webkit-user-select: none; /* auto or none */
            user-select: none;
}
#main .controller img,
#main .prev img,
#main .next img{
  pointer-events: auto;
  -webkit-touch-callout: default;
    -webkit-user-select: auto;
            user-select: auto;
}

/* mfp保存禁止 */
.mfp-figure figure {
  position: relative;
}
.mfp-figure figure::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  content: '';
  background: url("images/background.png") no-repeat center top;
  background-size: 100% auto; /* 横幅100%、縦は自動調整 */
}

/*----------------------------------------------------
common
----------------------------------------------------*/

.clearfix:after{
  content: ".";
  display: block;
  height: 0;
  font-size:0;
  clear: both;
  visibility:hidden;
}
.clearfix{display: inline-block;}
* html .clearfix {height: 1%;}
.clearfix{display:block;}


body {
  color: #000000;
  font-size: 14px;
  line-height: 1.5;
  width: 100%;
  background: url("../images/background.png") repeat-y top center;
  background-size: 100% auto;
  text-align: center;
}
@media screen and (min-width: 751px) {
  body {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  body {
    background-size: 200% auto;
  }
}

.off {
  display: none;
}
.on {
  display: block;
}

@media screen and (max-width: 750px) {
  html,
  body {
    height: auto;
    width: 100%;
    overflow-x: hidden;
  }
  .forPC {
    display: none;
  }
  .forSP {
    display: block;
  }
  .forSPi {
    display: inline;
  }
  .forSPib {
    display: inline-block;
  }
}
@media screen and (min-width: 751px) {
  html,
  body {
    height: 100%;
  }
  .forPC {
    display: block;
  }
  .forSP,
  .forSPi,
  .forSPib {
    display: none;
  }
}

a {
  outline: none;
  text-decoration: underline;
  color: #000000;
}
a:link {
  color: #fff;
}
a:visited {
  color: #fff;
}
a:hover {
  color: #c40018;
  }

@media screen and (min-width: 751px) {
  a:hover {
  color: #c40018;
  }
  a img.alpha {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  a:hover img.alpha {
    opacity: 0.8;
  }
}
.nowrap {
  white-space: nowrap;
}

.ibLeft {
  display: inline-block;
  text-align: left;
}

.image img {
  width: 100%;
}
.alignLeft {
  text-align: left;
}
.alignCenter {
  text-align: center;
}
.alignRight {
  text-align: right;
}

/* ruby */
rt {
  font-size: 0.6em;
}

/* text change */
.large {
  font-size: 1.36em;
}
.small {
  font-size: 0.8em;
}
.bold {
  font-weight: bold;
}
.gold {
  font-color: #FAB81E;
}
.title2 {
  font-weight: bold;
  font-size: 1.36em;
  font-color: #FAB81E;
}

/* text color */
.white{
  color: #ffffff;
}
.black {
  color: #000000;
}
.yellow {
  color: #fff100;
}
.red {
  color: #c40018;
}
.purple {
  color: #7238ad;
}
.green {
  color: #44b77e;
}
.blue {
  color: #3580ba;
}
.orange {
  color: #eb9800;
}
.olive{
  color: #c4be27;
}
.pink{
  color: #d04aa9;
}


/*----------------------------------------------------
inner
----------------------------------------------------*/

.inner,
.innerSP,
.innerPC {
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}
.inner,
.innerSP {
  padding: 0 20px;
}
@media screen and (min-width: 751px) {
  .inner,
  .innerPC {
    margin: 0 auto;
  }
  .innerSP {
    padding: 0;
  }
}
@media screen and (min-width: 1041px) {
  .inner,
  .innerPC {
    width: 1000px;
    padding: 0;
  }
}


/*----------------------------------------------------
loading
----------------------------------------------------*/

#loaderBg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background-image: url(../images/background.png);
  z-index: 10000;
}
#loader {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  margin-top: -50px;
  margin-left: -50px;
  text-align: center;
  color: #555555;
  z-index: 10001;
}
#loader p {
  display: none;
  margin-top: 10px;
  color: #555555;
}
#loader img {
  display: none;
  width: 100%;
  height: auto;
  max-width: 100px;
}
@media screen and (min-width: 751px) {
  #loader img {
    max-width: 100px;
  }
}


/*----------------------------------------------------
forIE
----------------------------------------------------*/

body .forIE {
  display: none;
}
body.ie .noIE {
  display: none;
}
body.ie .forIE {
  display: block;
}


/*----------------------------------------------------
imgHov
----------------------------------------------------*/

@media screen and (min-width: 751px) {
  .imgHov .target {
    display: block;
    overflow: hidden;
    cursor: pointer;
  }
  .imgHov .target img {
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    -ms-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
  }
  .imgHov:hover .target img {
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}


/*----------------------------------------------------
bg
----------------------------------------------------*/

/* about */
#pageAbout #loadingWrap {
  background: url(../images/background.png) no-repeat center top;
  background-size: 100% 100%;
}
@media screen and (min-width: 751px) {
  #pageAbout #loadingWrap {
    background-image: url(../images/background.png);
  }
}

/* heighlights */
#pageHighlights #loadingWrap {
  background: url(../images/background.png) no-repeat center top;
  background-size: 100% 100%;
}
@media screen and (min-width: 751px) {
  #pageHighlights #loadingWrap {
    background-image: url(../images/background.png);
  }
}

/* ticket */
#pageTicket #loadingWrap {
  background: url(../images/background.png) no-repeat center top;
  background-size: 100% 100%;
}
@media screen and (min-width: 751px) {
  #pageTicket #loadingWrap {
    background-image: url(../images/background.png);
  }
}

/* event */
#pageEvent #loadingWrap {
  background: url(../images/background.png) no-repeat center top;
  background-size: 100% 100%;
}
@media screen and (min-width: 751px) {
  #pageEvent #loadingWrap {
    background-image: url(../images/background.png);
  }
}
/* profile */
#pageProfile #loadingWrap {
  background: url(../images/background.png) no-repeat center top;
  background-size: 100% 100%;
}
@media screen and (min-width: 751px) {
  #pageProfile #loadingWrap {
    background-image: url(../images/background.png);
  }
}

/* goods */
#pageGoods #loadingWrap {
  background: url(../images/background.png) no-repeat center top;
  background-size: 100% 100%;
}
@media screen and (min-width: 751px) {
  #pageGoods #loadingWrap {
    background-image: url(../images/background.png);
  }
}

/* special */
#pageSpecial #loadingWrap {
  background: url(../images/background.png) no-repeat center top;
  background-size: 100% 100%;
}
@media screen and (min-width: 751px) {
  #pageSpecial #loadingWrap {
    background-image: url(../images/background.png);
  }
}

/* english */
#pageEnglish #loadingWrap {
  background: url(../images/background.png) no-repeat center top;
  background-size: 100% 100%;
}
@media screen and (min-width: 751px) {
  #pageEnglish #loadingWrap {
    background-image: url(../images/background.png);
  }
}


/*----------------------------------------------------
siteHead
----------------------------------------------------*/

#siteHead {
  position: fixed;
  top: 0;
  right: 0;
  width: 64px;
  height: 80px;
  z-index: 9999;
}
#siteHead .logo {
  display: none;
}
@media screen and (min-width: 751px) {
  #siteHead .logo {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 11.976%;
  }
}
@media screen and (min-width: 1336px) {
  #siteHead {
    width: 100%;
    height: 50px;
    background-image: url(../images/background.png);
  }
  #siteHead .logo {
    top: 50px;
    width: 160px;
  }
}


/*----------------------------------------------------
menuBtn
----------------------------------------------------*/

.menuBtn {
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 80px;
  box-sizing: border-box;
    background-image: url(../images/background.png);
  transition: all 0.3s;
  z-index: 9999;
}
.menuBtn.open {
 background-image: url(../images/background.png);
}
@media screen and (min-width: 751px) {
  .menuBtn {
    cursor: pointer;
  }
}
@media screen and (min-width: 1336px) {
  .menuBtn {
    display: none;
  }
}


/*----------------------------------------------------
burger
----------------------------------------------------*/

.burger {
  position: relative;
  width: 100%;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transition: .3s ease-in-out;
}
.burger span {
  display: block;
  position: absolute;
  width: 22px;
  height: 4px;
  background-image: url(../images/background.png);
  border-radius: 0;
  opacity: 1;
  left: 50%;
  margin-left: -11px;
  -webkit-transform: rotate(0deg);
  transition: 0.4s cubic-bezier(0.45, 0.49, 0.77, 1.15);
}
.burger span:nth-child(1) {
  top: 24px;
}
.burger span:nth-child(2) {
  top: 38px;
}
.burger span:nth-child(3) {
  top: 52px;
}
.burger.open span:nth-child(2) {
  top: 38px;
  margin-left: 0;
  width: 0;
}
.burger.open span {
  background-image: url(../images/background.png);
}
.burger.open span:nth-child(1) {
  top: 38px;
  -webkit-transform: rotate(302deg);
  transform: rotate(302deg);
  width: 36px;
  margin-left: -18px;
}
.burger.open span:nth-child(3) {
  top: 38px;
  -webkit-transform: rotate(-302deg);
  transform: rotate(-302deg);
  width: 36px;
  margin-left: -18px;
}
@media screen and (min-width: 751px) {
  .menuBtn:hover .burger span:nth-child(1) {
    top: 28px;
    transition: top 0.12s;
  }
  .menuBtn:hover .burger span:nth-child(3) {
    top: 48px;
    transition: top 0.12s;
  }

  .menuBtn:hover .burger.open span:nth-child(1) {
    top: 38px;
    -webkit-transform: rotate(330deg);
    transform: rotate(330deg);
    transition: all 0.24s;
  }
  .menuBtn:hover .burger.open span:nth-child(3) {
    top: 38px;
    -webkit-transform: rotate(-330deg);
    transform: rotate(-330deg);
    transition: all 0.24s;
  }
}


/*----------------------------------------------------
gnav
----------------------------------------------------*/

@media only screen and (max-width: 1335px) {
  .gnav {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 53.3%;
    min-height: 100vh;
    background-image: url(../images/background.png);
    transition: all 0.3s;
  }
  .gnav.open {
    right: 0;
  }
  .gnav .pages {
    padding-top: 20px;
  }
  .gnav .pages>li {
    position: relative;
    width: 100%;
    max-width: 375px;
    margin: 0 auto;
  }
  .gnav .pages>li::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    content: '';
    display: block;
    width: 200px;
    height: 1px;
    background-image: url(../images/background.png);
    margin-left: -100px;
  }
  .gnav .pages>li a {
    display: block;
    padding: 20px 0;
  }
  .gnav .sns {
    padding-top: 28px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .gnav .sns>li {
    width: 50px;
    padding: 0 7px;
  }
}
@media only screen and (max-width: 340px) {
  .gnav .pages>li a {
    padding: 15px 0;
  }
  .gnav .sns {
    padding-top: 20px;
  }
}

@media only screen and (min-width: 1336px) {
  .gnav .pages,
  .gnav .sns {
    display: inline-block;
    letter-spacing: -.40em;
    text-align: center;
    vertical-align: top;
  }
  .gnav .pages>li {
    display: inline-block;
    letter-spacing: normal;
  }
  .gnav .pages>li.top {
    display: none;
  }
  .gnav .pages>li a {
    display: block;
    height: 50px;
    padding: 17px 20px 0;
    box-sizing: border-box;
    transition: all 0.3s;
  }
  .gnav .pages>li.current a,
  .gnav .pages>li:hover a {
      background-image: url(../images/background.png);
  }
  .gnav .pages>li a img {
    height: 16px;
  }
  .gnav .sns {
    padding-left: 10px;
  }
  .gnav .sns>li {
    display: inline-block;
    letter-spacing: normal;
  }
  .gnav .sns>li.line {
    display: none;
  }
  .gnav .sns>li a {
    display: block;
    height: 30px;
    padding: 10px 5px 0;
    box-sizing: border-box;
    transition: all 0.3s;
  }
  .gnav .sns>li a img {
    height: 30px;
    transition: all 0.3s;
  }
  .gnav .sns>li a:hover img {
    opacity: 0.85;
  }
}

/* no_link */
.gnav .pages>li.no_link a {
  cursor: default;
}
.gnav .pages>li.no_link a img {
  opacity: 0.5;
}
.gnav .pages>li.no_link a:hover {
  background-image: url(../images/background.png);
}


/*----------------------------------------------------
siteFoot
----------------------------------------------------*/

#siteFoot .toHome {
  padding: 35px 0;
}
#siteFoot .toHome .inner {
  text-align: center;
}
#siteFoot .toHome a {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 300px;
  color: #000;
  font-size: 14px;
  line-height: 40px;
  font-weight: bold;
  box-sizing: border-box;
  border: solid 2px #ff4800;
}
#siteFoot .toHome a:hover {
  text-decoration: none;
}
#siteFoot .toHome a::after {
  position: absolute;
  top: 50%;
  right: 16px;
  content: '';
  display: block;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #ff4800;
  border-right: 2px solid #ff4800;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#pageHome #siteFoot .toHome {
  display: none;
}
#siteFoot .final {
  padding: 15px 0;
  background: #ad8bba;
  text-align: center;
  color: #000;
  border-top: 3px solid #000; /* ← 追加 */
}
#siteFoot .final ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#siteFoot .final li {
  display: inline-block;
  letter-spacing: normal;
  margin: 0 20px;
}
#siteFoot .final a {
  display: inline-block;
  color: #ffffff;
  text-decoration: underline;
  font-size: 12px;
  padding: 6px 0;
}
#siteFoot .copyright {
  font-size: 10px;
  line-height: 1.6;
  margin-top: 1.2em;
}
@media only screen and (min-width: 751px) {
  #siteFoot .toHome {
    padding: 50px 0;
  }
  #siteFoot .toHome a {
    font-size: 18px;
    line-height: 40px;
    width: 300px;
    transition: all 0.3s;
  }
  #siteFoot .toHome a:hover {
    background: #41000a;
    color: #ffffff;
  }
  #siteFoot .toHome a::after {
    transition: all 0.3s;
  }
  #siteFoot .toHome a:hover::after {
    border-top-color: #ffffff;
    border-right-color: #ffffff;
    right: 8px;
  }
  #siteFoot .final {
    padding: 20px 0;
  }
  
  #siteFoot .final a {
    font-size: 16px;
    padding: 0 10px;
  }
  #siteFoot .final a:hover {
    text-decoration: none;
  }
  #siteFoot .copyright {
   font-weight: bold;
    font-size: 12px;
  }
}
@media only screen and (min-width: 1336px) {
  #siteFoot .final {
    padding: 12px 0;
  }
  #siteFoot .inner {
    width: 1300px;
  }
  #siteFoot .final ul {
    display: inline-block;
  }
  #siteFoot .final li {
    margin: 0;
  }
  #siteFoot .copyright {
    display: inline-block;
    margin: 0 0 0 20px;
  }
}


/*----------------------------------------------------
pageTitle
----------------------------------------------------*/

#pageTitle {
  height: 160px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 751px) {
  #pageTitle {
    height: 235px;
  }
  #pageGoods #pageTitle {
    height: 367px;
  }
}

#pageAbout #pageTitle img {
  width: 100px;
}
@media only screen and (min-width: 751px) {
  #pageAbout #pageTitle img {
    width: 118px;
  }
}

#pageHighlights #pageTitle img {
  width: 120px;
}
@media only screen and (min-width: 751px) {
  #pageHighlights #pageTitle img {
    width: 145px;
  }
}

#pageTicket #pageTitle img {
  width: 99px;
}
@media only screen and (min-width: 751px) {
  #pageTicket #pageTitle img {
    width: 110px;
  }
}

#pageEvent #pageTitle img {
  width: 100px;
}
@media only screen and (min-width: 751px) {
  #pageEvent #pageTitle img {
    width: 150px;
  }
}
#pageProfile #pageTitle img {
  width: 250px;
}
@media only screen and (min-width: 751px) {
  #pageProfile #pageTitle img {
    width: 300px;
  }
}

#pageGoods #pageTitle img {
  width: 120px;
}
@media only screen and (min-width: 751px) {
  #pageGoods #pageTitle img {
    width: 150px;
  }
}

#pageSpecial #pageTitle img {
  width: 180px;
}
@media only screen and (min-width: 751px) {
  #pageSpecial #pageTitle img {
    width: 200px;
  }
}

#pageEnglish #pageTitle img {
  width: 100px;
}
@media only screen and (min-width: 751px) {
  #pageEnglish #pageTitle img {
    width: 115px;
  }
}


/*----------------------------------------------------
toPageTop
----------------------------------------------------*/

#toPageTop img {
  position: fixed;
  top: auto;
  bottom: 30px;
  left: auto;
  right: 20px;
  width: 70px;
  max-width: none;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: -10;
}
#toPageTop.view img {
  opacity: 1;
  bottom: 60px;
  z-index: 99;
}
#toPageTop.view img:hover {
  bottom: 70px;
}
@media screen and (max-width: 750px) {
  #toPageTop img {
    bottom: 20px;
    right: 5px;
    width: 40px;
  }
  #toPageTop.view img {
    bottom: 60px;
  }
  #toPageTop.view img:hover {
    bottom: 60px;
  }
}


/*----------------------------------------------------
tabBtnSet
----------------------------------------------------*/

.tabBtnSet {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.tabBtn {
  width: 33.3333%;
}


/*----------------------------------------------------
tabBtnSet
----------------------------------------------------*/

.lineTitle {
  position: relative;
  font-size: 18px;
  line-height: 1.3;
  font-weight: bold;
  text-align: center;
}
.lineTitle .wt {
  position: relative;
  display: inline-block;
  padding: 0 1.5em;
  background: #ffffff;
  z-index: 2;
}
.lineTitle::before,
.lineTitle::after {
  position: absolute;
  top: 50%;
  left: 0;
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: #000000;
}
.lineTitle::before {
  margin-top: -2px;
}
.lineTitle::after {
  margin-top: 2px;
}
@media screen and (min-width: 751px) {
  .lineTitle {
    font-size: 26px;
  }
  .lineTitle::before {
    margin-top: -3px;
  }
}


/*----------------------------------------------------
shoulder
----------------------------------------------------*/

.shoulder {
  margin-top: 0.4em;
  font-size: 12px;
  line-height: 1.33;
}
@media screen and (min-width: 751px) {
  .shoulder {
    font-size: 18px;
    line-height: 1.44;
  }
}


/*----------------------------------------------------
movie　埋め込み
----------------------------------------------------*/

.movie {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/*----------------------------------------------------
movie モーダル
----------------------------------------------------*/

.movie_modal .movie_image_box {
  position: relative;
  cursor: pointer;
}

.movie_modal .movie_image_box::before {
  content: '';
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  background-image: url(../images/background.png);
  background-size: 100% 100%;
  transition: .2s;
  z-index: 2;
  pointer-events: none;
}

@media screen and (min-width: 751px) {
  .movie_modal .movie_image_box::before {
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -50px;
  }
  .movie_modal .movie_image_box:hover::before {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.movie_modal .movie_image_box a {
  display: block;
}

.movie_modal .movie_modal {
  opacity: 0;
  pointer-events: none;
  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;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.movie_modal .movie_modal_bg {
  position: fixed;
  background-image: url(../images/background.png);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.movie_modal .movie_modal.open {
  opacity: 1;
  pointer-events: all;
}

.movie_modal .movie_modal .movie_modal_box {
  position: relative;
  width: 70%;
  padding-top: 39.375%;
}

@media screen and (max-width: 750px) {
  .movie_modal .movie_modal .movie_modal_box {
    width: 90%;
    padding-top: 50.625%;
  }
}

.movie_modal .movie_modal .movie_modal_box iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.movie_modal .movie_modal .movie_modal_close {
  position: absolute;
  cursor: pointer;
  right: 10px;
  top: -60px;
  width: 40px;
  height: 40px;
}

.movie_modal .movie_modal .movie_modal_close::before,
.movie_modal .movie_modal .movie_modal_close::after {
  content: '';
  position: absolute;
  width: 34px;
  height: 20px;
  border-top: 5px solid #fff;
}

.movie_modal .movie_modal .movie_modal_close::before {
  left: -5px;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

.movie_modal .movie_modal .movie_modal_close::after {
  right: -3px;
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
@media screen and (min-width: 751px) {
  .movie_modal .movie_modal .movie_modal_close {
    transition: .2s;
  }
  .movie_modal .movie_modal .movie_modal_close:hover {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }
}

/*----------------------------------------------------
キャプション
----------------------------------------------------*/

.cap {
  color: #000000;
  font-size: 10px;
  line-height: 1.6;
  text-align: left;
  padding: 10px 0px;
}

.capblack {
  color: #000000;
  font-size: 10px;
  line-height: 1.6;
  text-align: left;
  padding: 10px 0px;
}

@media screen and (min-width: 751px) {
  .cap {
    font-size: 12px;
}
  .capblack {
    font-size: 12px;
  }
}

