@charset "utf-8";

/*-- setting --*/

/* reset */
* {
    box-sizing: border-box;
}
body {
    font-family:"ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
    font-size: 16px;
    color: #4d4d4d;
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form,
fieldset, input, textarea, p, blockquote, th, td,img{
    margin: 0;
    padding: 0;
}
html{
    overflow-y: scroll;
    scroll-behavior: smooth;
}
h1, h2, h3, h4, h5, h6{
    font-size: 100%;
    font-weight: normal;
}
ol, ul{
    list-style:none;
}
fieldset, img{
    border:0;
}
table{
    border-collapse: collapse;
    border-spacing:0;
}
caption, th{
    text-align: left;
}
address, caption, cite, code, dfn, em, strong, th, var{
    font-style: normal;
    font-weight: 600;
}
a {
    text-decoration: none;
    color: #5099d3;
}

/*- image -*/
img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}


/*-- common --*/
.mainwidth {
    width: 1100px;
    margin: auto;
}
.mainwidth2 {
    width: 900px;
    margin: auto;
}
.section-title {
    background-color: #101a32;
    border-radius: 5px;
    padding: 4px ;
    text-align: center;
    margin-bottom: 34px;
}
.title-border {
    border: 1px solid #fff;
    border-radius: 5px;
    padding: 18px;
}

/*- clear fix -*/
*,
*:before,
*:after {
    box-sizing: border-box;
}
.cf:before,
.cf:after {
    content: " ";
    display: table;
}
.cf:after {
    clear: both;
}
.cf {
    *zoom: 1;
}

/*- float -*/
.fleft {
    float: left;
}
.fright {
    float: right;
}

/*- flexbox -*/
.fb {
    display: flex;
}

/*- responsive -*/
.pc1, .pc2, .pc3 {
    display: block;
}
.sp1, .sp2, .sp3 {
    display: none;
}


/*-- header --*/

header .outer {
    width: 100%;
    background-image: url(image-inehanabi/bg-mainvisual-1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 36px;
    padding-top: 110px;
    background-position: 70% 50%;
}
.header-navi__container {
    background-color: rgba(0,0,0,0.7);
    padding: 24px 5%;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 5000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-navi__container-title {
    color: #fff;
}
.header-navi {
    display: flex;
    justify-content: right;
}
.header-navi li a {
    display: inline-block;
    display: flex;
    margin-right: 20px;
}
.header-navi .navi-title {
    color: #fff;
    font-size: 16px;
    margin-left: 4px;
}
.header-warap {
    text-align: right;
    padding-right: 28px;
    display: flex;
    justify-content: flex-end;
}
.mainvisual-title {
    margin-bottom: 80px;
}
.bg-container-1 {
    background-image: url(image-inehanabi/bg-container.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 80px;
    position: relative;
}
.bg-hanabi {
position: absolute;
    top:20px;
    right: 0;
}
.header-warap__anniversary {
    margin-left: 24px;
}
/* hamburger */
.header-hamburger {
    position: absolute;
    right: 24px;
    top: 13px;
}
#nav-open {
    display: inline-block;
    width: 30px;
    height: 22px;
    vertical-align: middle;
  }
  /*ハンバーガーアイコンをCSSだけで表現*/
  #nav-open span, #nav-open span:before, #nav-open span:after {
    position: absolute;
    transition: all 0.4s;
    height: 3px;/*線の太さ*/
    width: 25px;/*長さ*/
    border-radius: 3px;
    background: #fff;
    display: block;
    content: '';
    cursor: pointer;
    z-index: 9999;/*最前面*/
  }
  #nav-open span:before {
    bottom: -8px;
  }
  #nav-open span:after {
    bottom: -16px;
  }
  /*中身*/
  #nav-content {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: .2s ease-in-out;
  }
  #nav-content.open {
    display: block;
    opacity: 1;
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);/*背景色*/
    overflow: hidden;/*ブラー効果でボヤけた部分を非表示*/
  }
  /*:beforeにぼかし効果を設定する*/
  #nav-content.open:before {
    content: '';
    overflow: hidden;
    -webkit-filter: blur(10px);
    -moz-filter: blur(10px);
    -o-filter: blur(10px);
    -ms-filter: blur(10px);
    filter: blur(10px);
    z-index: -1;/*重なり順序を一番下にしておく*/
  }
  /*チェックが入ったら表示する内容*/
  .hamburger-top {
    height: 40px;/*×ボタンと被らないように*/
  }
  .category {
    text-align: center;
    margin-top: 2rem;
  }
  .category-title {
    padding: 0.5rem;
    margin-left: -2rem;
    list-style: none;
  }
  .category-title a {
    color: #333;
    text-decoration: none;
  }
  /*三本線を動かす*/
  #nav-open.active span {
    -webkit-transform: translateY(8px) rotate(-45deg);
    transform: translateY(8px) rotate(-45deg);
    background-color: #888;
  }
  #nav-open.active span:before {
    -webkit-transform: translateY(-8px) rotate(45deg);/*打ち消す*/
    transform: translateY(-8px) rotate(45deg);/*打ち消す*/
    opacity: 0;
  }
  #nav-open.active span:after {
    -webkit-transform: translateY(-16px) rotate(45deg);
    transform: translateY(-16px) rotate(90deg);
    background-color: #888;
  }


/* -- home -- */

/*- section-attention -*/
.section-attention {
    color: #fff;
    font-size: 20px;
}
.section-attention {
    display: flex;
    justify-content: space-between;
}
.section-attention__left {
    width: 60%;
}
.section-attention__right {
    width: 34%;
}
.section-attention__title {
    background-color: #fff;
    font-size: 20px;
    text-align: center;
    padding: 8px 24px;
    color: #000;
    margin-bottom: 24px;
    border-radius: 25px;
}
.section-attention__right-content-date {
    font-size: 14px;
}
.section-attention__right-content-post {
    border-bottom: solid 1px #888;
    padding-bottom: 24px;
    margin-bottom: 24px;
}
.section-attention__right-content-title {
    margin-bottom: 8px;
}
.section-attention__right-content-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.section-attention__right-content-content {
    font-size: 14px;
}
.section-attention__right-content {
    background-color: #f4e621;
    border-radius: 16px;
    padding: 24px 5%;
}
.section-attention__right .section-attention__title {
    background-color: #f4e621;
}
.section-attention__right-content a {
    color: #000;
}
.section-attention p {
    margin-bottom: 24px;
}
.section-attention p img {
    width: 100%;
}

/* section-attention2 */
.section-attention2 {
    margin-top: 32px;
}
.section-attention2__lead {
    text-align: center;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}
.section-attention2__image {
    text-align: center;
}
.section-attention2__image img {
    width: 100%;
    max-width: 480px;
}
@media screen and (max-width:480px) {
.section-attention__left-content {
    font-size: 18px;
}
.section-attention2__lead {
    font-size: 18px;
}
}

/*- section-schedule -*/
.schedule-warap {
    width: 864px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 122px;
}
.schedule-warap .left {
    color: #fff;
    width: 48%;
}
.schedule-warap .right {
    color: #fff;
    width: 48%;
    font-size: 26px;
}
.schedule-warap .right .place-text {
    margin-bottom: 8px;
}
.schedule-warap .right .whether {
    font-size: 20px;
    margin-bottom: 4px;
}
.schedule-warap .right .caution {
    font-size: 20px;
}
.schedule-warap .left .title {
    font-size: 39px;
    margin-bottom: 6px;
}
.schedule-warap .year {
    font-size: 22px;
}
.schedule-warap .date {
    font-size: 34px;
    margin-bottom: 4px;
}
.schedule-warap .date .small {
    font-size: 22px;
}
.schedule-warap .left .place-text {
    font-size: 23px;
}
.schedule-warap .left .whether {
    font-size: 20px;
}
.schedule-warap .left .caution {
    font-size: 20px;
}
.line-area {
    margin-bottom: 18px;
}
.inewan-warap {
    display: flex;
    justify-content: space-between;
    color: #fff;
    padding-bottom: 65px;
    border-bottom: 1px solid #fff;
}
.inewan-warap .left {
    width: 49%;
    padding-top: 180px;
}
.inewan-warap .right {
    width: 46%;
    padding-top: 180px;
    background-image: url(image-inehanabi/img-finaya.svg);
    background-size: 345px auto;
    background-position: left top;
    background-repeat: no-repeat;
}
.inewan-warap .right .title {
    font-size: 24px;
    margin-bottom: 10px;
}
.inewan-warap .right .textarea {
    font-size: 16px;
    color: #fff;
    line-height: 1.8em;
}
.schedule-list {
    padding: 60px 0;
    border-bottom: 1px solid #fff;
}
.schedule-list .outer {
    width: 930px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}
.schedule-list .outer .schedule-list-area li {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}
.schedule-list .outer .schedule-list-area .clock-image {
    margin-right: 10px;
}
.schedule-list .outer .schedule-list-area p {
    font-size: 20px;
}
.schedule-list .outer .schedule-list-area span {
    color: #f4e621;
}
.schedule-list .outer .schedule-list-area .caution-text {
    font-size: 15px;
}
.parking-info {
    padding: 100px 0 80px 0;
}
.parking-info .outer .title {
    margin-bottom: 30px;
}
.parking-info__content {
    margin-top: 40px;
    color: #fff;
}
.bg-container-2 {
    background-image: url(image-inehanabi/bg-sand.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 70px 0;
}
.schedule-warap__content {
    margin-bottom: 24px;
}
.schedule-warap__content-subtitle {
    font-size: 20px;
}
.schedule-warap__content-title {
    font-size: 25px;
}
.schedule-warap__content-text {
    font-size: 18px;
}

/*- section-schedule -*/
.parking-infomation__content {
    margin-bottom: 40px;
}
.parking-info-list {
    text-align: center;
    padding-top: 10px;
    margin-bottom: 30px;
}
.parking-infomation__content-table {
    width: 100%;
}
.parking-infomation__content-table th p {
    color: #fff;
    background-color: #101a32;
    padding: 8px 16px;
    text-align: center;
    margin: 0 12px;
}
.parking-infomation__content-table td {
    text-align: center;
    padding: 32px 16px;
    vertical-align: middle;
}
.parking-infomation__content-table tr {
    border-bottom: solid 1px #000;
}
.parking-infomation__content-table tr:first-child {
    border-bottom: none;
}
.infometion-yellow-area {
    display: flex;
    margin-bottom: 50px;
    justify-content: space-between;
}
.infometion-yellow-area__content {
    width: 434px;
}
.parking-title-paid {
    color: #e4027f;
    text-align: left;
}
.parking-title-free {
    color: #07923a;
    text-align: left;
}
.parking-infomation__content-table .line-2 {
    padding-top: 8px;
    padding-bottom: 8px;
}
.parking-infomation__content-table .line-3 {
    padding-top: 8px;
    padding-bottom: 8px;
}
.parking-situation {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f2f2f2;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.parking-situation__wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}
.parking-empty {
    background-color: #7baecb;
}
.parking-full {
    background-color: #c26855;
}
.parking-congestion {
    background-color: #65b07a;
}
.parking-small {
    font-size: 12px;
}
.line-2 .line-content {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
    flex-wrap: wrap;
}
.line-2 .line-content:first-child {
    border-bottom: dotted 1px #000;
}
.line-3 .line-content {
    height: 40px;
    display: flex;
    align-items: center;
    border-bottom: dotted 1px #000;
    justify-content: center;
    line-height: 1.1;
    flex-wrap: wrap;
}
.line-3 .line-content:last-child {
    border-bottom: none;
}
.parking-price {
    color: #e4027f;
    font-weight: bold;
}
.bg-yellow-title {
    font-size: 20px;
    font-weight: bold;
    color: #000328;
    background-color: #f4e621;
    border-radius: 50px;
    padding: 13px 0;
    text-align: center;
    margin-bottom: 20px;
}
.infometion-yellow-area .textarea {
    width: 95%;
    margin: auto;
    font-size: 18px;
    color: #000328;
}
.ban-area {
    display: flex;
    justify-content: space-between;
    font-size: 28px;
    color: #000328;
}
.ban-area .left {
    display: flex;
    align-items: center;
}
.ban-area .right {
    display: flex;
    align-items: center;
}
.ban-area p {
    margin-left: 10px;
}
.bg-container-3 {
    background-image: url(image-inehanabi/bg-container.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.bg-container-3 .title {
    padding: 38px 0;
}
.parking-title__distance {
    text-align: left;
    font-size: 12px;
}

/* movie */
.movie-wrap {
    width: 882px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 32px;
}
.movie-wrap__inner {
    border: solid 1px #fff;
    border-radius: 16px;
    position: relative;
    padding: 36px 0 36px 296px;
    color: #fff;
    font-size: 24px;
}
.movie-wrap__inner-poster {
    position: absolute;
    top: 50%;
    left: 32px;
    transform: translateY(-50%);
}
.movie-wrap__inner-copy {
    position: absolute;
    top: -26px;
    right: -26px;
}
.movie-wrap__inner-subtitle {
    margin-bottom: 8px;
    font-size: 18px;
}
.movie-wrap__inner-minions {
    margin-bottom: 12px;
    font-weight: bold;
}
.movie-wrap__inner-copyright {
    font-size: 12px;
}


/*- section-courtesy-bus -*/
.section-courtesy-bus .outer {
    background-image: url(image-inehanabi/bg-sand.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 64px 0 80px 0;
}
.section-courtesy-bus .outer .section-title {
    margin-bottom: 70px;
}
.bus-timetable {
    text-align: center;
    margin-bottom: 24px;
}
.courtesy-bus-caution {
    color: #fff;
    width: 592px;
    margin: auto;
    background-color: #c36855;
    border-radius: 6px;
    padding: 15px 38px 15px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 7px;
}
.kaeri-txt {
    font-size: 23px;
}
.time {
    font-size: 30px;
}
.bus-caution-txt {
    font-size: 16px;
}
.section-courtesy-bus .outer p {
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    color: #000;
    margin-bottom: 30px;
}
.section-courtesy-bus .outer .green {
    color: #65b17a;
}
.section-courtesy-bus .outer .blue {
    color: #7bafcc;
}
.caution-list-txt {
    width: 590px;
    margin: auto;
}
.caution-list-txt li {
    font-size: 14px;
    margin-bottom: 6px;
}

.google-map img{
    width: 100%;
}

/*- important-points -*/
.important-points {
    background-image: url(image-inehanabi/bg-container.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.important-points .outer {
    padding: 78px 0 130px 0;
    color: #fff;
}
.important-points .outer .title {
    text-align: center;
    font-size: 24px;
    text-align: center;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    padding: 8px 0;
    margin-bottom: 68px;
}
.point-description {
    margin-bottom: 40px;
}
.point-description-funayabiyori {
    text-align: center;
}
.point-warap {
    display: flex;
    justify-content: space-between;
}
.point-warap__content {
    width: 500px;
}
.point-points {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}
.point-points a {
    display: inline-block;
    border: solid 1px #fff;
    padding: 16px 40px;
    color: #fff;
}
.point-points a span {
    position: relative;
    padding-left: 16px;
}
.point-overture {
    display: flex;
    justify-content: center;
}
.point-points a span:before {
    content: url(image-inehanabi/ico-point-more.svg);
    display: inline-block;
    width: 9px;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
}
.point-title {
    width: 500px;
    text-align: center;
    padding: 4px 0;
    font-size: 18px;
    font-weight: bold;
    color: #000;
    background-color: #fff;
    border-radius: 50px;
    margin-bottom: 16px;
}
.point-text {
    font-size: 15px;
    margin-bottom: 30px;
}
.dotted-line {
   border-bottom: dotted 2px #fff;
   padding-top: 40px;
}
@media screen and (max-width:480px) {

    .point-description-funayabiyori {
        text-align: left;
    }

}

/* - section-faq - */
.section-faq__title {
    border: solid 1px #fff;
    font-size: 24px;
    padding: 8px 5%;
    margin-bottom: 64px;
    text-align: center;
}
.section-faq__list {
    margin-bottom: 32px;
    border: solid 1px #fff;
}
.section-faq__list-q {
    background-color: rgba(255,255,255,0.5);
    padding: 16px;
    padding-left: 56px;
}
.section-faq__list-a {
    background-color: #fff;
    color: #000;
    padding: 16px;
    padding-left: 56px;
}
.section-faq__list-q p {
    position: relative;
}
.section-faq__list-q p:before {
    content: url(image-inehanabi/ico-faq-q.svg);
    display: block;
    width: 34px;
    height: 34px;
    position: absolute;
    left: -40px;
    top: -6px;
}
.section-faq__list-a p {
    position: relative;
}
.section-faq__list-a p:before {
    content: url(image-inehanabi/ico-faq-a.svg);
    display: block;
    width: 34px;
    height: 34px;
    position: absolute;
    left: -40px;
    top: -6px;
}

/*- sponsors -*/
.sponsors {
    background-image: url(image-inehanabi/bg-sand.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 66px 0 98px 0;
}
.sponsors .outer .title {
    margin-bottom: 56px;
}
.sponsors .sponsors-list-warap {
    display: flex;
    justify-content: space-between;
}
.sponsors .sponsors-list-warap .sponsors-list li {
    font-size: 15px;
    color: #000328;
    margin-bottom: 18px;
}

/* - flyer - */
.flyer-area {
    display: flex;
    justify-content: space-between;
}
.flyer-area li {
    width: 32%;
}
.flyer-area li img {
    width: 100%;
}


/*-- footer --*/

footer .outer {
    background-image: url(image-inehanabi/bg-footer.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 54px 0 8px 0;
    color: #fff;
    background-position: 70% 50%;
}
footer .outer .inner {
    width: 1145px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding-bottom: 78px;
}
footer .outer .inner .left {
    margin-right: 32px;
}
footer .outer .inner .right {
    padding-top: 40px;
}
footer .outer .inner .right .organizer-area {
    display: flex;
    align-items: flex-start;
    margin-bottom: 28px;
}
.organizer-title {
    font-size: 26px;
    font-weight: bold;
}
.organizer-title-breakdown {
    font-size: 16px;
}
footer .outer .inner .right .item-name {
    width: 120px;
    font-size: 15px;
    border: 1px solid #fff;
    padding: 8px 12px;
    margin-right: 18px;
    text-align: center;
}
footer .outer .inner .right .cooperation-area {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
}
.cooperation-text {
    width: 814px;
    font-size: 18px;
}
.contact-area {
    display: flex;
    align-items: center;
}
.contact-area .tel-area {
    width: 475px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
    border-radius: 50px;
    padding: 10px 0;
    margin-right: 14px;
}
.contact-area .tel-area .contact-ja {
    font-size: 16px;
    font-weight: bold;
    margin-right: 13px;
}
.sns-area {
    display: flex;
}
.sns-area li {
    margin-right: 12px;
}
.copy-right {
    text-align: center;
    font-size: 10px;
}


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


/*-- common --*/

.mainwidth {
    width: 90%;
}
.mainwidth2 {
    width: 90%;
}

/*- responsive -*/
.pc1 {
    display: none!important;
}
.sp1 {
    display: block;
}


/* -- home -- */

.schedule-list .outer {
    width: 90%;
    display: block;
}
.infometion-yellow-area {
    display: block;
}
.point-warap {
    display: block;
}
.schedule-warap {
    width: 100%;
}
.section-attention {
    display: block;
}
.section-attention__left {
    width: 100%;
}
.section-attention__right {
    width: 100%;
}
.schedule-warap {
    display: block;
    width: 100%;
}
.schedule-warap .left {
    width: 100%;
}
.schedule-warap .right {
    width: 100%;
}
.inewan-warap {
    display: block;
}
.inewan-warap .left {
    width: 100%;
}
.inewan-warap .left img {
    width: 100%;
}
.inewan-warap .right {
    width: 100%;
}
.flyer-area {
    display: block;
}
.flyer-area li {
    width: 100%;
    margin-bottom: 32px;
}
.flyer-area li:last-child {
    margin-bottom: 0;
}
.schedule-list .outer .schedule-list-area span {
    display: block;
}
.schedule-list .outer .left {
    margin-bottom: 32px;
}
.schedule-list .outer .schedule-list-area .clock-image {
    width: 32px;
}
.schedule-list .outer .schedule-list-area p {
    flex: 1;
}
.infometion-yellow-area__content {
    margin-bottom: 32px;
}
.parking-infomation__content-table,
.parking-infomation__content-table tbody,
.parking-infomation__content-table tr,
.parking-infomation__content-table th,
.parking-infomation__content-table td {
    display: block;
    width: 100%;
}
.parking-infomation__content-table tr:first-child {
    display: none;
}
.parking-name {
    font-size: 24px;
    text-align: center;
}
.parking-infomation__content-table td {
    padding: 8px 5%;
}
.parking-infomation__content-table tr {
    padding: 16px 0;
}
.parking-capa p {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
}
.line-2 .line-content {
    height: auto;
    padding: 16px 0;
}
.line-3 .line-content {
    height: auto;
    padding: 16px 0;
}
.line-content__inner.sp1 {
    width: 100%;
    margin-top: 8px;
}
.ban-area {
    display: block;
}
.parking-situation {
    width: 64px;
    height: 64px;
    font-size: 32px;
}
.parking-title__distance {
    text-align: center;
}
.line-2 .line-content:first-child {
    padding-top: 0;
}
.line-2 .line-content:last-child {
    padding-bottom: 0;
}
.infometion-yellow-area__content {
    width: 100%;
}



/* movie */
.movie-wrap {
    width: 100%;
}
.movie-wrap__inner {
    padding-right: 5%;
    padding-left: 38%;
}
.movie-wrap__inner-poster {
    width: 30%;
    left: 4%;
}
.movie-wrap__inner-copy {
    right: 0;
}


/* -- footer -- */

footer .outer .inner {
    width: 90%;
    display: block;
}
.cooperation-text {
    width: auto;
}
footer .outer .inner .right .organizer-area {
    display: block;
}
footer .outer .inner .right .cooperation-area {
    display: block;
}
footer .outer .inner .right .item-name {
    margin-bottom: 8px;
    text-align: center;
}

}

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


/*-- common --*/

/*- responsive -*/
.pc2 {
    display: none;
}
.sp2 {
    display: block;
}

/* schedule */
.schedule-warap {
    display: block;
}
.schedule-warap .left {
    width: 100%;
}
.schedule-warap .right {
    width: 100%;
}

/* -- footer -- */
.contact-area .tel-area {
    width: 100%;
    display: block;
    text-align: center;
    padding-left: 5%;
    padding-right: 5%;
}
.contact-area .tel-area .contact-ja {
    margin-bottom: 8px;
}

}

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


/*-- common --*/

/*- responsive -*/
.pc3 {
    display: none;
}
.sp3 {
    display: block;
}

.header-navi__container-title span {
    display: none;
}
.infometion-yellow-area__content {
    width: 100%;
}

/* movie */
.movie-wrap__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 5%;
    align-items: center;
}
.movie-wrap__inner-poster {
    position: relative;
    width: 40%;
    left: 0;
    top: 0;
    transform: translateY(0%);
}
.movie-wrap__inner-content {
    width: 56%;
}
.movie-wrap__inner-content-sp {
    width: 100%;
    margin-top: 24px;
}
.movie-wrap__inner-minions {
    margin-bottom: 0;
}
.header-warap {
    padding-left: 5%;
    padding-right: 5%;
}
}