@charset "UTF-8";
/* CSS Document */

/* css reset
---------------------------------------------*/

/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
	display:block;
}

/*
nav ul {
    list-style:none;
}
*/

ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}

/* end css reset
---------------------------------------------*/


/* 基本設定
---------------------------------------------*/

html {
  font-size: 62.5%; /* ≒10px */
} 


body {
  animation-name: anim-fadein;
  animation-duration: 1s;
  animation-fill-mode:forwards;
  font-family: var(--fontgothic);
  
}

p {
  color: #313131;
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 10px;
}

a {
  color: #835b43;
  text-decoration: underline;
  transition: .3s;
}

a:hover {
  opacity: .8;
  text-decoration: none;
}

img {
    width: 100%;
  }

/* 変数 */
:root {
  --basecolor: #3cb57d; /* 基本色 */
  --secondcolor: #0ab7b9;
  --gradient: linear-gradient( 0deg,  rgba(30,214,99,1) 0%, rgba(51,213,219,1) 90% ); /* 参考サイト：https://gradienthunt.com */
  
  /* フォントの指定 */
  --fontmincho: 'Hiragino Mincho', serif;
  --fontgothic: "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif
  
}

/* アニメーション */
@keyframes anim-fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* / アニメーション */


/* end 基本設定
---------------------------------------------*/


/* レイアウト
---------------------------------------------*/


/* ヘッダー
--------------------------------------*/
.header-wrap {
  border-bottom: solid 1px var(--basecolor);
  height: 80px;
  width: 100%;
}

.header {
  display: flex;
  height: 80px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1100px;
  min-width: 700px;
  padding: 0 10px;
}

h1 {
  padding-top: 13px;
  width: 180px;
}

h1 img {
  width: 100%;
}

h1 a:hover {
  opacity: 1;
}
  
  .gnavi {
    align-items: center;
    display: flex;
    font-family: var(--fontmincho);
    font-size: 1.6rem;
    justify-content: flex-end;
    height: 80px;
    width: 670px;
  }

  .gnavi li {
    margin-left: 35px;
  }

  .gnavi li:first-child {
    margin-left: 0;
  }
  
  .gnavi a {
    color: #555;
    font-weight: bold;
    letter-spacing: .05em;
    text-decoration: none;
    position: relative;
    z-index: 1;
  }
  
  .gnavi a:hover {
    opacity: .7;
  }
  
/*
  .gnavi a span {
    font-size: 10px;
    font-weight: normal;
    letter-spacing: normal;
  }
*/

.gnavi a::after{
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;/*テキストからの距離*/
  width: 0%;/*初期状態では下線非表示*/
  height: 1px;/*下線の高さ*/
  background: var(--basecolor);/*下線の色*/
  z-index: -1;
  transition: all 0.4s;/*アニメーション速度*/
}

.gnavi a:hover::after{
  width: 100%;/*hover時に表示*/
}
  
/*
  .gnavi li a span {
    padding-left: 1.5em;
  }
*/
  
  #sp_btn {
    display: none;
  }


/* end ヘッダー
--------------------------------------*/

  
/* ページレイアウト
--------------------------------------*/

/* ボタンの設定 */
.btn01 {
  
}

.btn01 a {
  background: var(--basecolor);
  border: solid 1px var(--basecolor);
  border-radius: 50px;
  box-shadow: 3px 4px 0 0 #bfbfbf;
  color: #fff;
  display: block;
  font-size: 1.6rem;
  text-align: center;
  text-decoration: none;
  transition: .3s;
}

.btn01 a:hover {
  background: #fff;
  color: var(--basecolor);
}

.btn-w24,
.btn-w24 a {
  height: 36px;
  line-height: 36px;
  width: 240px;
}

.btn-w23,
.btn-w23 a {
  height: 30px;
  line-height: 30px;
  width: 230px;
}

.btn-w40,
.btn-w40 a {
  height: 46px;
  line-height: 46px;
  margin: 20px auto;
  width: 400px;
}

.btn02 {
  
}

.btn02 a {
  background: #f5f5f5;
  border: solid 1px var(--secondcolor);
  border-radius: 50px;
  color: var(--secondcolor);
  display: block;
  font-size: 1.4rem;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: .3s;
}

.btn02 a::before {
  content: "";
  border-left: solid 1px var(--secondcolor);
  border-bottom: solid 1px var(--secondcolor);
  height: 4px;
  position: absolute;
  left: 20px;
  top: calc(50% - 3px);
  transform: skew(-45deg);
  transition: .3s;
  width: 33px;
}

.btn02 a:hover {
  background: #fff;
  color: var(--basecolor);
}

.btn02 a:hover {
  background: var(--secondcolor);
  color: #fff;
}

.btn02 a:hover::before {
  border-left-color: #fff;
  border-bottom-color: #fff;
}


/* / ボタンの設定 */


/*トップページ------------*/

/*スライド画像の設定*/
.slide-wrap {
  background: #e6feef;
  /*height: 577px;*/
  margin-bottom: 70px;
  padding: 23px 0;
  width: 100%;
}

.top-ban {
  /*height: 554px;*/
  overflow: hidden;
  position: relative;
  max-width: 904px;
  min-width: 700px;
}

.top-ban a {
  display: block;
  transition: .3s;
}

.top-ban a:hover {
  opacity: .85;
}

.top-ban-first {/*動画が1つしかない時の処理*/
  height: 554px;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  width: 904px;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--basecolor);
  background: rgba(255, 255, 255, .4);
  height: 105%;
  padding: 0 5px;
  top: 0;
}

.swiper-button-next {
  right: 0;
}

.swiper-button-prev {
  left: 0;
}

/* 見出しや枠の調整 */
.box {
  margin: 80px auto;
  max-width: 1100px;
  min-width: 700px;
  padding-left: 10px;
  padding-right: 10px;
}

h2 {
  color: var(--basecolor);
  font-family: var(--fontmincho);
  font-size: 2.6rem;
}

.box h3 {
  color: #333;
  font-size: 1.8rem;
}

.midashi {
  font-family: var(--fontmincho);
  margin-bottom: 30px;
  text-align: center;
  width: 100%;
}

.midashi h2 {
  background: url(../img/icon001.svg) no-repeat center top;
  background-size: 60px;
  padding-top: 40px;
}

.midashi p {
  color: var(--secondcolor);
  font-size: 1.4rem;
}

/* イントロダクション */
.intro {
  margin: 0 auto;
  max-width: 800px;
  min-width: 700px;
  padding-left: 10p;
  padding-right: 10p;
}

.intro > p {
  font-size: 1.7rem;
  margin-bottom: 3rem;
  text-align: justify;
}

/* コンサートのお知らせ */
.newslist {
  font-size: 1.6rem;
  margin: 0 auto;
  width: 700px;
}

.newslist li {
  border-bottom: solid 1px #696969;
  margin-bottom: 10px;
  margin-top: 20px;
  padding-bottom: 8px;
}

.newslist li a {
  color: #835b43;
  display: inline-block;
  padding: 8px 0;
  position: relative;
  text-decoration: none;
  width: 100%;
}

.newslist li a:after {
  content: "";
  border-right: solid 2px #696969;
  border-bottom: solid 1px #696969;
  height: 4px;
  position: absolute;
  right: 8px;
  top: calc(50% - 3px);
  transform: skew(45deg);
  transition: .3s;
  width: 17px;
}

.newslist li a:before {
  content: "";
  background: #fff;
  border: solid 1px #696969;
  border-radius: 50%;
  height: 30px;
  position: absolute;
  right: 0;
  top: 0;
  transition: .3s;
  width: 30px;
}

.newslist li a:hover:before {
  background: #af9686;
  border: solid 1px #af9686;
}

.newslist li a:hover:after {
  border-right: solid 2px #fff;
  border-bottom: solid 1px #fff;
}

/*.newslist li a:hover::after{
    right: 0px;
    width: 24px;
}*/

/* 六甲山系とは */
.about {
  display: flex;
  justify-content: space-between;
}

.about > div {
  width: 550px;
}

.about p {
  margin: 10px 0;
}

.about figure {
  margin-left: 5%;
  margin-top: 10px;
  width: 95%;
}

/* 動画一覧 */
.movie-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
}

.movie-list .list a {
  color: #333;
  text-decoration: none;
}

.movie-list .list {
  background: #f9f9f9;
  border-bottom: solid 1px var(--basecolor);
  margin-bottom: 30px;
  margin-right: 2%;
  padding-bottom: 10px;
  width: 32%;
  /*max-width: 350px;*/
}

.movie-list .list:nth-child(3n) {
  margin-right: 0;
}

.list-num {
  color: var(--basecolor);
  font-size: 1.4rem;
}

.movie-list .list h3,
.movie-list .list p {
  margin: 5px 0;
}

.movie-list .list figure {
  align-items: center;
  display: flex;
  height: 220px;
  justify-content: center;
  overflow: hidden;
  transition: .3s;
  width: 100%;
}

@media screen and (max-width: 1000px) and (min-width: 641px){
  .movie-list .list figure {
    height: 170px;
  }
	
/* ナビのレイアウト 2022.08	追加------------*/
.gnavi {
    width: 550px;
}
	
/*改行の挿入*/
.newline::before{
	content:"\A";
	white-space: pre;
}
	
	
}


.movie-list .list figure img {
  transition: .5s;
  height: auto;
  width: 100%;
}

.movie-list .list a:hover figure img {
  opacity: .7;
  transform: scale(1.1,1.1);
}

.movie-list .list a:hover h3,
.movie-list .list a:hover p {
  color: #838383;
}

.movie-list .list-encore {
  background: #f1feff;
  border-bottom: solid 1px #3badf5;
  /*border-bottom: solid 1px #f29009;*/
}

.movie-list .list-encore .list-num {
  color: #26a5f5;
}


/* ロケ地マップ */
#map {
  height: 550px;
  width: 100%;
}

.map-wrap img {
  vertical-align: top;
}

.map-point {
  width: 12em;
  margin-bottom: 0;
}

.map-point h5 {
  font-size: 1.em;
  margin: 0 0 3px 0;
}

.map-point img {
  margin: 0 auto;
  width: 90%;
}

.map-point p {
  font-size: .8em;
  margin-bottom: 0;
}

.map-point a {
  color: #00ad99;
}

/* クラウドファンディング */
.funding-cont {
  display: flex;
  justify-content: space-between;
}

.funding-cont > div {
  width: 550px;
}

.funding-cont p {
  margin: 10px 0;
}

.funding-cont figure {
  margin-left: 5%;
  margin-top: 40px;
  width: 95%;
}


  
/* / トップページ------------*/

  
/*記事のページ------------*/

/*動画再生の部分*/
.main-movie {
  margin: 30px auto 0;
  max-width: 900px;
  min-width: 700px;
}

.movie-title {
  margin-bottom: 20px;
}

.movie-num {
  background: var(--gradient);
  -webkit-background-clip: text;
  color: transparent;
  font-size: 2.0rem;
  margin: 0;
  padding: 0;
}

.movie-title h2 {
  background: var(--gradient);
  -webkit-background-clip: text;
  color: transparent;
  font-family: var(--fontmincho);
  font-size: 4.4rem;
  margin-bottom: 10px;
}

.artist-data {
  color: var(--secondcolor);
  font-size: 1.5rem;
}

.syutsuen {
  border: solid 1px var(--secondcolor);
  display: inline-block;
  line-height: 1.2;
  margin-right: 10px;
  padding: 0 .5rem;
}

.sns-btn {
  display: flex;
}

.sns-btn li {
  margin-right: 14px;
  width: 26px;
}

.movie-play {
  margin: 0 0 30px 0;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden;
}

.movie-play iframe {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/*メイキングのタイトルの部分*/
.main-making {
  margin: 30px auto 0;
  max-width: 900px;
  min-width: 700px;
}

.main-making .movie-play {
  width: 100%;
  height: 100%;
  padding-bottom: 0;
  position: relative;
  overflow: visible;
}

.movie-title {
  margin-bottom: 20px;
}

.movie-name,
.movie-name a {
  background: var(--gradient);
  -webkit-background-clip: text;
  color: transparent;
  font-family: var(--fontmincho);
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.movie-name span {
  font-family: var(--fontgothic);
  font-size: 1.7rem;
  font-weight: normal;
}

.main-making h2 {
  color: var(--secondcolor);
  font-family: var(--fontmincho);
  font-size: 4.0rem;
  margin: 20px 0;
}

.movie-btn-wrap {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
  width: 480px;
}

.encore-title h2,
.encore-title .movie-num {
  background: linear-gradient( 0deg,  rgba(55,174,249,1) 0%, rgba(71,212,225,1) 90% ); /* 参考サイト：https://gradienthunt.com */;
  -webkit-background-clip: text;
  color: transparent;
}

.encore-title .movie-num {
  
}


/*記事*/
.contents {
  margin: 70px auto 50px;
  width: 700px;
}

.contents section {
  margin-bottom: 60px;
}


.contents h3 {
  color: var(--basecolor);
  font-family: var(--fontmincho);
  font-size: 2.6rem;
  margin: 20px 0;
}

.contents h4 {
  color: var(--secondcolor);
  font-family: var(--fontmincho);
  font-size: 2.2rem;
  margin: 15px 0;
}

.contents h5 {
  color: #333;
  font-size: 1.8rem;
  line-height: 1.5;
  margin: 15px 0;
}

.contents p {
  margin-bottom: 30px;
}

.contents figure {
  margin: 30px 0;
}

/*メイキングボタン*/
.making-btn-contets {
  margin: 0 auto;
  width: 700px;
}

.making-miadshi {
  color: var(--basecolor);
  border-bottom: solid 1px var(--basecolor);
  font-family: var(--fontmincho);
  font-size: 2.8rem;
  margin-bottom: 20px;
  padding-bottom: 3px;
  line-height: 1;
}

.making-miadshi span {
  font-size: 1.4rem;
}

.making-btn-wrap {
  display: flex;
  justify-content: space-between;
}

.making-btn {
  background: #05a3a5;
  height: 180px;
  overflow: hidden;
  position: relative;
  width: 340px;
}

.making-btn figure {
  align-items: center;
  display: flex;
  justify-content: center;
}

.making-btn img {
  transition: .3s;
  opacity: .3;
}

.making-btn p {
  align-items: center;
  border: solid 1px #fff;
  color: #fff;
  display: flex;
  height: 160px;
  justify-content: center;
  margin: 9px 9px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 320px;
  z-index: 10;
}

.making-btn a:hover img {
  width: 110%;
}


/* お知らせ------------*/
.midashi-info {
  margin: 50px 0 ;
}

.midashi-info h2 {
  font-size: 3.2rem;
}

.contents-info {
  margin: 0 auto 30px;
  width: 900px;
}

.contents-info h3 {
  border-bottom: solid 1px #333;
  color: #333;
  font-size: 2.4rem;
  font-weight: normal;
  margin-bottom: 10px;
  padding-bottom: 5px;
}

.contents-info .sns-btn {
  margin-bottom: 30px;
}

/* / お知らせ------------*/


/* リアルコンサート参加者募集------------*/

/*タイトル幅拡張のレイアウト*/
.width-long{
	max-width: 1100px;
}

.width-long .sns-btn {
    max-width: 900px;
	margin: auto;
}

.width-long p{
	max-width: 900px;
	margin:0 auto 10px;
}

/*写真レイアウト*/
.figure-box {
    display: flex;
    justify-content: space-between;
}

.figure-box figure {
    width: 48%;
	margin: 0;/*marginの解除*/
	margin-bottom:30px;
}

/*須磨観光ハウスの説明文*/
.figure-box figcaption {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

/*ランチとお菓子の説明文*/
.figure-box .caption {
    display: block;
    width: 48%;
}


/*助成*/
.josei p{
	display:inline-block;
	margin-right: 30px;
	margin-bottom: 0;
}
.josei img{
	width:80%; 
	max-width:210px;
	vertical-align: -7px;
}

/*/// 2022.08追加 ///*/
.figcaption-bottom{
	margin-bottom: 0;/*figcaption｛margin-bottom: 10px;} の取消*/
    margin-top: 10px;
	text-align: center;
}

.matsukata_logo {
    max-width: 300px;
    margin-bottom: 30px;
}
.matsukata_map {
    max-width: 500px;
}

/*PDFボタン*/
.pdf-btn {
	text-align: center;
}

.pdf-btn a{
    background: var(--basecolor);
    border-radius: 30px;
    color: #fff;
	display: inline-block;	
    font-size: 2rem;
    padding: 15px 25px;
    text-decoration: none;
}

/* / リアルコンサート参加者募集------------*/
  
  /* / 記事のページ------------*/



/* end ページレイアウト
--------------------------------------*/



/* フッター
--------------------------------------*/
.footer {
  background: url(../img/img_footer_bg.png) no-repeat top center;
  clear: both;
  height: 334px;
  position: relative;
  width: 100%;
}

.kobe-np-logo {
  bottom: 70px;
  margin-left: -121px;
  left: 50%;
  position: absolute;
  width: 242px;
}
  
.copy {
  bottom: 10px;
  color: #fff;
  position: absolute;
  font-size: 1.2rem;
  text-align: center;
  width: 100%;
}

/* トップへ戻るボタン */
.totop {
  margin: 0 auto;
  height: 50px;
  position: relative;
  max-width: 1100px;
  min-width: 700px;
}
  
  .totop a {
    background: #fff;
    border: solid 1px var(--basecolor);
    border-radius: 50px;
    position: absolute;
    padding: 0 0 0 0;
    color: #000;
    vertical-align: middle;
    text-decoration: none;
    font-size: 15px;
    width: 50px;
    height: 50px;
    margin: 0 0 20px 0;
    right: 0;
    display: block;
    transition: .3s;
  }
  
  .totop a::after {
    content: "";
    left: 50%;
    top: 16px;
    width: 10px;
    height: 10px;
    margin: -3px 0 0 -5px;
    border-top: 1px solid var(--basecolor);
    border-right: 1px solid var(--basecolor);
    position: absolute;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition: .3s;
  }

.totop a::before {
  background: var(--basecolor);
  content: "";
  height: 25px;
  left: 50%;
  margin-left: 0;
  position: absolute;
  top: 13px;
  transition: .3s;
  width: 1px;
  z-index: 50;
}

.totop a:hover {
  background: var(--basecolor);
}

.totop a:hover::after {
  border-top-color: #fff;
  border-right-color: #fff;
}

.totop a:hover::before {
  background: #fff;
}
  

/* end フッター
--------------------------------------*/


/* end レイアウト
---------------------------------------------*/


/* レスポンシブ調整（スマホレイアウト）
---------------------------------------------*/
@media screen and (max-width: 640px){
  
/* ヘッダー
--------------------------------------*/
  
  .header-wrap {
    border-bottom: solid 1px var(--basecolor);
    height: 100px;
    position: relative;
    width: 100%;
    z-index: 100;
  }

  .header {
    display: block;
    height: 100px;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    padding: 0;
  }

  h1 {
    margin: 0 auto;
    padding-top: 20px;
    width: 50%;
    max-width: 250px;
  }
  
  h1 img {
    width: 100%;
  }

  h1 a:hover {
    opacity: 1;
  }
  
  
  /* スマホ用メニューボタン */
  #sp_btn {
    border: none;
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 78px;
    height: 65px;
    padding: 0 20px;
    color: var(--secondcolor);
    background: transparent;
    z-index: 500;
    transition: all .2s ease-in;
  }

  #sp_btn span {
    border-radius: 10px;
    display: block;
    width: 100%;
    height: 5px;
    background: var(--basecolor);
    transition: all .2s ease-in;
  }

  #sp_btn span:nth-of-type(1) {
    margin: 5px 0 0;
  }

  #sp_btn span:nth-of-type(2) {
    margin: 5px 0 0;
  }

  #sp_btn span:nth-of-type(3) {
    margin: 5px 0 5px;
  }
  
  /* 開閉時のアニメーション */
  #sp_btn.active span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
  }
  #sp_btn.active span:nth-of-type(2) {
    opacity: 0;
  }
  #sp_btn.active span:nth-of-type(3) {
    transform: translateY(-10px) rotate(45deg);
  }
  
  /* / スマホ用メニューボタン */
  
  /* メニュー */
  /*nav ul {
    display: none;
  }*/
  
.gnavi {
  background: var(--basecolor);
  display: none;
  font-family: var(--fontgothic);
  height: auto;
  list-style: none;
  margin-top: 20px;
  width: 100%;
}
  
  .gnavi li {
    border-bottom: solid 1px #fff;
    margin-left: 0;
  }
 
  .gnavi a {
    display: block;
    font-size: 1.6rem;;
    font-weight: normal;
    color: #fff;
    padding: .5em 0 .5em 5%;
    position: relative;
    text-decoration: none;
    width:  95%;
  }


/* end ヘッダー
--------------------------------------*/

  
/* ページレイアウト
--------------------------------------*/
  
/* ボタンの設定 */

  .btn-w24,
  .btn-w24 a,
  .btn-w23,
  .btn-w23 a,
  .btn-w40,
  .btn-w40 a {
    height: 3rem;
    line-height: 3rem;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
  }
  
  .btn02 a::before {
    display: none;
  }

/* / ボタンの設定 */
  

/*トップページ------------*/

/*スライド画像の設定*/
  .slide-wrap {
    background: #e6feef;
    height: auto;
    margin-bottom: 70px;
    padding-bottom: 25px;
    padding-top: 25px;
    position: relative;
    width: 100%;
    z-index: 1;
  }
  
  .top-ban {
    height: 100%;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 100%;
  min-width: 100%;
  }
  
  .top-ban-first {/*動画が1つしかない時の処理*/
    height: 100%;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    width: 100%;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    background: rgba(255, 255, 255, 0);
    height: 110%;
    top: 0;
  }
  
/* 見出しや枠の調整 */
  .box {
    margin: 60px auto;
    width: 90%;
    max-width: 90%;
    min-width: 90%;
    padding-left: 0;
    padding-right: 0;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  /* イントロダクション */
  .intro > p {
    font-size: 1.6rem;
    text-align: left;
  }
  
/* コンサートのお知らせ */
  .newslist {
    width: 100%;
  }
  
  .newslist li a {
    width: 90%;
  }
  
  .newslist li a:after {
    right: calc(-2.0rem + 8px);
  }
  
  .newslist li a:before {
    right: -2.0rem;
    top: calc(50% - 15px);
  }
  
  
/* 六甲山系とは */
.about {
    display: block;
  }
  
  .about > div {
    width: 100%;
  }
  
  .about figure {
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
  }
  
/* 動画一覧 */
  .movie-list .list {
    background: #f9f9f9;
    border-bottom: solid 1px var(--basecolor);
    margin-bottom: 30px;
    margin-right: 4%;
    padding-bottom: 10px;
    width: 48%;
  }
  
  .movie-list .list:nth-child(3n) {
    margin-right: 4%;
  }
  
  .movie-list .list:nth-child(2n) {
    margin-right: 0;
  }
  
  .movie-list .list figure {
    height: 110px;
  }
  
  .movie-list .list h3 {
    font-size: 1.6rem;
  }
  
  .movie-list .list p {
    font-size: 1.4rem;
    line-height: 1.6;
  }
  
  .movie-list .list-encore {
    background: #eefeff;
    border-bottom: solid 1px #0975f2;
    /*border-bottom: solid 1px #f29009;*/
  }
  
/* ロケ地マップ */
  #map {
    height: 400px;
    width: 100%;
  }
  
/* クラウドファンディング */
  .funding-cont {
    display: block;
  }
  
  .funding-cont > div {
    width: 100%;
  }
  
  .funding-cont figure {
    margin-left: 0;
    margin-top: 40px;
    width: 100%;
  }
  
/* / トップページ------------*/
  
  
/*記事のページ------------*/
  
  /*動画再生の部分*/
  .main-movie {
    margin: 30px auto 0;
    width: 96%;
    max-width: 96%;
    min-width: 96%;
  }
  
  .movie-play {
    margin: 0 -2.1% 30px -2.1%;
    width: 104%;
  }
  
  .movie-title h2 {
    font-size: 3.6rem;
  }
  
  .sns-btn li {
    width: 32px;
  }
  
  /*メイキングのタイトルの部分*/
  .main-making {
    margin: 30px auto 0;
    width: 96%;
    max-width: 96%;
    min-width: 96%;
  }
  
  .main-making .movie-play {
  width: 104%;
  height: 100%;
  padding-bottom: 0;
  position: relative;
  overflow: visible;
}
  
  .movie-btn-wrap {
    display: flex;
    justify-content: space-between;
    margin: 20px auto;
    width: 96%;
  }
  
  .main-making h2 {
    font-size: 3.6rem;
  }
  
  /*記事*/
  .contents {
    width: 86%;
  }
  
  /*メイキングボタン*/
  .making-btn-contets {
    margin: 0 auto 30px;
    width: 86%;
  }
  
  .making-btn {
    height: 100px;
    width: 48%;
  }
  
  .making-btn p {
    align-items: center;
    border: solid 1px #fff;
    color: #fff;
    display: flex;
    height: 80px;
    justify-content: center;
    margin: 9px 4%;
    position: absolute;
    text-align: center;
    top: 0;
    width: 90%;
    z-index: 10;
  }
  
  .making-btn img {
    width: 115%;
  }
  
  .making-btn a:hover img {
  width: 125%;
}
  
  
  /* お知らせ------------*/
  .midashi-info h2 {
    font-size: 3.0rem;
    line-height: 1.5;
  }
  
  .contents-info {
    width: 90%;
  }
  
  /* / お知らせ------------*/


/* リアルコンサート参加者募集------------*/
	
/*折り返さない*/	
.nowrap {
	white-space: nowrap;
}

.figure-box {
    display: flex;
    flex-direction: column;
}

.figure-box figure {
    width: 100%;
}
	
/*ランチとお菓子の説明文*/
	
.figure-box .caption {
	width: auto;
	margin-bottom: 5px;
}
	
/*助成*/
.josei p{
	margin-bottom:10px;
}
.josei img{
	margin-left: 0;
}
	

/* / リアルコンサート参加者募集------------*/
	
	
    /* / 記事のページ------------*/
  

/* end ページレイアウト
--------------------------------------*/

  

/* フッター
--------------------------------------*/
  .footer {
    height: 260px;
  }
  
  .kobe-np-logo {
    bottom: 50px;
    margin-left: -30%;
    left: 50%;
    position: absolute;
    width: 60%;
  }
  
  /* トップへ戻るボタン */
  .totop {
    height: 50px;
    width: 99%;
    max-width: 99%;
    min-width: 99%;
    padding-top: 10px;
  }
  
  .totop a {
    width: 40px;
    height: 40px;
  }
  
  .totop a::after {
    width: 8px;
    height: 8px;
    margin: -3px 0 0 -4px;
  }
  
  .totop a::before {
    height: 20px;
  }
  

/* end フッター
--------------------------------------*/






}
/* end レスポンシブ調整（スマホレイアウト）
---------------------------------------------*/