body {
  background: #8369BB;
  background-image: url('background.jpg');
  background-size: cover;
  /* 画像を画面いっぱいに拡大縮小 */
  background-repeat: no-repeat;
  /* 繰り返さない */
  background-position: center center;
  /* 中央に配置 */
  background-attachment: fixed;
  /* ←これがポイント！ */
  font-family: 'Noto Sans JP', 'Helvetica Neue', Helvetica, Arial, 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
  width: 100vw;
  height: 100vh;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden !important;
  box-sizing: border-box;
  letter-spacing: 0.1em;
}

button {
  cursor: pointer;
  cursor: hand;
}

@media screen and (max-width:767px) {
  body {}
}

a {
  color: black;
}

/* フェードインアニメーション */
.fadeIn {
  animation-name: fadein;
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  overflow-x: hidden;
}

@keyframes fadein {
  0% {
    filter: blur(50px);
  }

  70% {
    filter: blur(15px);
  }

  100% {
    filter: blur(0px);
  }
}

hr {
  border: none;
  height: 1px;
  background-color: #000;
  /* 黒などハッキリした色 */
  margin: 10px 0;
}

/* ヘッダー */
/* PC & タブレット */
@media screen and (min-width:768px) {
  .header-title {
    width: 100vw;
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 50;
    background-color: #D9D9D9;
    height: 70px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s;
  }

  .header-title.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .header-title img {
    height: 58px;
    width: auto;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translate(0px, -50%);
  }

  .header {
    width: 100vw;
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 100;
  }

  .openbtn1 {
    position: absolute;
    /* ボタン内側の基点となるためrelativeを指定 */
    cursor: pointer;
    cursor: hand;
  }
}

@media screen and (max-width:767px) {
  .header-title {
    width: 100vw;
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 50;
    background-color: #D9D9D9;
    height: 40px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s;
  }

  .header-title.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .header-title img {
    height: 29px;
    width: auto;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translate(0px, -50%);
  }

  .header {
    width: 100vw;
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 100;
  }

  .openbtn1 {
    position: absolute;
    /* ボタン内側の基点となるためrelativeを指定 */
    cursor: pointer;
    cursor: hand;
  }
}

/* PC & タブレット */
@media screen and (min-width:768px) {
  .header {
    height: 70px;
  }

  .openbtn1 {
    width: 55px;
    height: 55px;
    right: 20px;
  }
}

/* スマホ */
@media screen and (max-width:767px) {
  .header {
    height: 60px;
  }

  .openbtn1 {
    width: 40px;
    height: 40px;
    right: 10px;
    top: -7px;
  }
}

/* ヘッダー */
/* メニューボタン */
@media screen and (min-width:768px) {
  .openbtn1 span {
    display: inline-block;
    transition: all .4s;
    /* アニメーションの設定 */
    position: absolute;
    left: 10px;
    height: 5px;
    background: #131313;
    width: 70%;
  }

  .openbtn1 span:nth-of-type(1) {
    top: 25%;
    transform: translateY(6px) rotate(0deg);
  }

  .openbtn1 span:nth-of-type(2) {
    top: 50%;
    transform: translateY(6px) rotate(0deg);
  }

  .openbtn1 span:nth-of-type(3) {
    top: 75%;
    transform: translateY(6px) rotate(0deg);
  }

  /* activeクラスが付与されると線が回転して×に */
  .openbtn1.active span:nth-of-type(1) {
    top: 50%;
    transform: translateY(6px) rotate(-45deg);
    width: 70%;
  }

  .openbtn1.active span:nth-of-type(2) {
    opacity: 0;
    /* 真ん中の線は透過 */
  }

  .openbtn1.active span:nth-of-type(3) {
    top: 70%;
    transform: translateY(-6px) rotate(45deg);
    width: 70%;
  }
}

/* スマホ */
@media screen and (max-width:767px) {
  .openbtn1 span {
    display: inline-block;
    transition: all .4s;
    /* アニメーションの設定 */
    position: absolute;
    left: 10px;
    height: 4px;
    background: #131313;
    width: 70%;
  }

  .openbtn1 span:nth-of-type(1) {
    top: 25%;
    transform: translateY(6px) rotate(0deg);
  }

  .openbtn1 span:nth-of-type(2) {
    top: 50%;
    transform: translateY(6px) rotate(0deg);
  }

  .openbtn1 span:nth-of-type(3) {
    top: 75%;
    transform: translateY(6px) rotate(0deg);
  }

  /* activeクラスが付与されると線が回転して×に */
  .openbtn1.active span:nth-of-type(1) {
    top: 50%;
    transform: translateY(5px) rotate(-45deg);
    width: 70%;
  }

  .openbtn1.active span:nth-of-type(2) {
    opacity: 0;
    /* 真ん中の線は透過 */
  }

  .openbtn1.active span:nth-of-type(3) {
    top: 70%;
    transform: translateY(-3.5px) rotate(45deg);
    width: 70%;
  }
}

/* メニューボタン */
/* メニュー */
.menubase {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0px;
  left: 0px;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  display: none;
  transition: all .4s;
  overflow-y: hidden;
}

.menubase.active {
  opacity: 1;
  visibility: visible;
  display: block;
  background: rgba(0, 0, 0, 0.5);
}

.menu {
  position: fixed;
  z-index: 99;
  height: 100vh;
  top: 0px;
  background: #D9D9D9;
  transition: all .4s;
  visibility: hidden;
}

.menu img {
  margin: 10px 10px;
  cursor: pointer;
  cursor: hand;
  transition: .4s;
  width: auto;
  color: #131313;
}

.menu.active {
  right: 0px;
  visibility: visible;
}

.menu ul {
  list-style: none;
  margin: 110px 0px 0px 0px;
}

.menu hr {
  border: none;
  /* ← これ超重要！ */
  height: 2px;
  /* 線の太さ */
  background-color: #131313;
  /* 背景色で線を描く */
}

.menu img:hover {
  transform: scale(1.1);
}

/* PC & タブレット */
@media screen and (min-width:768px) {
  .menu {
    width: 450px;
    right: -450px;
  }

  .menu img {
    height: 34px;
  }
}

/* スマホ */
@media screen and (max-width:767px) {
  .menu {
    width: 95vw;
    right: -95vw;
  }

  .menu li {
    font-size: 20px;
  }
}

/* メニュー */
/* トップ */
.top {
  width: 100vw;
  height: 100vh;
  margin: 0px;
  padding: 0px;
}

.top {}

@media screen and (min-width:841px) {
  .mainvis {
    position: absolute;
    max-width: 98vw;
    max-height: 95vh;
    width: auto;
    height: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

/* タブレット */
@media screen and (min-width:631px) and (max-width:840px) {
  .mainvis {
    position: absolute;
    max-width: 98vw;
    max-height: 95vh;
    width: auto;
    height: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

/* スマホ */
@media screen and (max-width:630px) {
  .mainvis {
    position: absolute;
    max-width: 98vw;
    max-height: 95vh;
    width: auto;
    height: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

/* トップ */
/* 共通項目 */
.title {
  display: inline-block;
  background: white;
  border: 1px solid black;
  vertical-align: middle;
}

/* PC */
@media screen and (min-width:768px) {}

/* スマホ */
@media screen and (max-width:767px) {}

/* 共通項目 */
/* PC */
@media screen and (min-width:768px) {
  .border {
    width: 80vw;
    max-width: 1000px;
    height: auto;
    margin: 50px auto 100px auto;
    display: block;
  }
}

/* スマホ */
@media screen and (max-width:767px) {
  .border {
    width: 90vw;
    /* max-width: 1000px; */
    height: auto;
    margin: 20px auto 50px auto;
    display: block;
  }
}

/* about */
@media screen and (min-width:841px) {
  .about {
    position: relative;
    z-index: 1;
  }

  .about-contents {
    width: 900px;
    padding: 30px 60px 61px 60px;
    background-color: #D9D9D9;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: calc(100vw - 300px)
  }

  .about1 {
    margin: 50px auto 100px 100px;
  }

  .about2 {
    margin: 50px 100px 100px auto;
  }

  .about-contents h1 {
    font-size: 35px;
    line-height: 52px;
  }

  .about-contents h2 {
    font-size: 25px;
  }

  .about-contents p {
    font-size: 16px;
    line-height: 35px;
    font-weight: 500;
    text-align: justify;
  }

  .about-contents ul {
    list-style: none;
    padding-left: 20px;
    line-height: 35px;
  }

  .about-contents button {
    border: none;
    background-color: #EAC676;
    color: #8369BB;
    font-weight: 700;
    font-size: 35px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 28px 65px;
    margin: 42px auto 0px auto;
    display: block;
  }

  .about-bg-svg-1 {
    position: absolute;
    top: 100px;
    /* 位置は調整 */
    left: 50vw;
    width: 60vw;
    /* サイズ調整 */
    max-width: 850px;
    min-width: 600px height:auto;
    z-index: -1;
    /* 背面に配置 */
    pointer-events: none;
    /* クリック無効でUI干渉防止 */
  }

  .about-bg-svg-2 {
    position: absolute;
    bottom: 100px;
    /* 位置は調整 */
    right: 50vw;
    width: 60vw;
    /* サイズ調整 */
    max-width: 850px;
    min-width: 600px height:auto;
    z-index: -1;
    /* 背面に配置 */
    pointer-events: none;
    /* クリック無効でUI干渉防止 */
  }
}

/* タブレット */
@media screen and (min-width:631px) and (max-width:840px) {
  .about-contents {
    padding: 20px 30px 41px 30px;
    background-color: #D9D9D9;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 30px 25px;
  }

  .about-contents h1 {
    font-size: 30px;
    line-height: 1.1em;
    padding-bottom: 0px;
    margin-bottom: 0px;
  }

  .about-contents h2 {
    font-size: 20px;
    line-height: 30px;
    padding-bottom: 0px;
    margin-bottom: 40px;
  }

  .about-contents p {
    font-size: 15px;
    line-height: 30px;
    font-weight: 500;
    text-align: justify;
  }

  .about-contents ul {
    list-style: none;
    padding-left: 20px;
    font-size: 15px;
    line-height: 30px;
    font-weight: 500;
  }

  .about-contents button {
    border: none;
    background-color: #EAC676;
    color: #8369BB;
    font-weight: 700;
    font-size: 25px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 28px 65px;
    margin: 42px auto 0px auto;
    display: block;
  }

  .about-bg-svg-1 {
    display: none;
  }

  .about-bg-svg-2 {
    isplay: none;
  }
}

/* スマホ */
@media screen and (max-width:630px) {
  .about-contents {
    padding: 5px 22px 41px 22px;
    background-color: #D9D9D9;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 50px 10px;
  }

  .about-contents h1 {
    font-size: 30px;
    line-height: 1.1em;
    padding-bottom: 0px;
    margin-bottom: 0px;
  }

  .about-contents h2 {
    font-size: 18px;
    line-height: 30px;
    padding-bottom: 0px;
    margin-bottom: 20px;
  }

  .about-contents p {
    font-size: 14px;
    line-height: 25px;
    font-weight: 500;
    text-align: justify;
  }

  .about-contents ul {
    list-style: none;
    padding-left: 20px;
    font-size: 14px;
    line-height: 25px;
  }

  .about-contents button {
    border: none;
    background-color: #EAC676;
    color: #8369BB;
    font-weight: 700;
    font-size: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px 65px;
    margin: 42px auto 0px auto;
    display: block;
    max-width: 95%;
  }

  .about-bg-svg-1 {
    display: none;
  }

  .about-bg-svg-2 {
    isplay: none;
  }
}

/* about */
.end-time{
  font-size:0.85em;
}
/* 共通項目 */
@media screen and (min-width:841px) {
  .contents-wrapper {
    display: block;
    margin: 0px auto;
    width: 1000px;
    margin: 50px auto 100px auto;
    padding: 0px auto;
    max-width: calc(100vw - 100px)
  }

  .contents-title {
    margin: 0px 0px 42px 32px;
  }
}

/* タブレット */
@media screen and (min-width:631px) and (max-width:840px) {
  .contents-wrapper {
    display: block;
    margin: 0px auto;
    /* width: 1000px; */
    margin: 50px 25px 100px 25px;
    padding: 0px auto;
    position: relative;
  }

  .contents-title {
    margin: 0px 0px 32px 12px;
    height: 35px;
    width: auto;
  }
}

/* スマホ */
@media screen and (max-width:630px) {
  .contents-wrapper {
    display: block;
    margin: 0px auto;
    /* width: 1000px; */
    margin: 60px 10px 50px 10px;
    padding: 0px auto;
  }

  .contents-title {
    margin: 0px 0px 20px 14px;
    height: 30px;
    width: auto;
  }
}

/* 共通項目 */
/* news */
@media screen and (min-width:841px) {
  .news {}

  .news-contents {
    padding: 60px 60px 60px 60px;
    background-color: #D9D9D9;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .news-contents p {
    text-align: justify;
    font-size: 20px;
    font-weight: 400;
  }
}

/* タブレット */
@media screen and (min-width:631px) and (max-width:840px) {
  .news {}

  .news-contents {
    padding: 20px 30px 20px 30px;
    background-color: #D9D9D9;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .news-contents p {
    text-align: justify;
    font-size: 15px;
    font-weight: 400;
  }
}

/* スマホ */
@media screen and (max-width:630px) {
  .news {}

  .news-contents {
    padding: 22px 22px 22px 22px;
    background-color: #D9D9D9;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .news-contents p {
    text-align: justify;
    font-size: 14px;
    line-height: 25px;
    font-weight: 400;
  }
}

/* news */
/* tickets */
.tickets {
  position: relative;
  z-index: 2;
}

@media screen and (min-width:841px) {
  .tickets {}

  .tickets-contents {
    padding: 60px 60px 60px 60px;
    background-color: #D9D9D9;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: justify;
    word-break: break-all;
    /* 長い単語やURLを途中で改行！ */
    overflow-wrap: break-word;
    /* 念のためURLが折り返しやすく */
  }

  .tickets-contents h2 {
    font-size: 30px;
  }

  .tickets-contents h3 {
    font-size: 25px;
    font-weight: 400;
    padding-bottom: -100px;
  }

  .tickets-contents p {
    font-size: 15px;
    line-height: 30px;
  }

  .button-grid {
    margin: 10px 0px 40px 0px;
    display: flex;
    flex-wrap: wrap;
    /* 2列→2行に折り返す */
    gap: 25px;
    /* ボタン間の余白 */
    justify-content: flex-start;
    /* ← 左寄せ！ */
    max-width: 700px;
    /* ボタン全体の横幅制限（任意） */
  }

  .button-grid button {
    flex: 0 0 calc(50% - 25px);
    /* 2列配置（余白考慮） */
    padding: 15px 5px;
    font-size: 15px;
    border: 1pt;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    /* background-color: #white; */
    /* color: #8369BB; */
    font-weight: 700;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
}

/* タブレット */
@media screen and (min-width:631px) and (max-width:840px) {
  .tickets {}

  .tickets-contents {
    padding: 20px 30px 20px 30px;
    background-color: #D9D9D9;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: justify;
    word-break: break-all;
    /* 長い単語やURLを途中で改行！ */
    overflow-wrap: break-word;
    /* 念のためURLが折り返しやすく */
  }

  .tickets-contents h2 {
    font-size: 30px;
  }

  .tickets-contents h3 {
    font-weight: 400;
    font-size: 22px;
    margin-bottom: 0px;
    padding-bottom: 0px;
  }

  .tickets-contents p {
    font-size: 15px;
    line-height: 35px;
  }

  .button-grid {
    margin: 10px 0px 40px 0px;
    display: flex;
    flex-wrap: wrap;
    /* 2列→2行に折り返す */
    gap: 25px;
    /* ボタン間の余白 */
    justify-content: flex-start;
    /* ← 左寄せ！ */
    max-width: 700px;
    /* ボタン全体の横幅制限（任意） */
  }

  .button-grid button {
    flex: 0 0 calc(50% - 25px);
    /* 2列配置（余白考慮） */
    padding: 15px 5px;
    font-size: 15px;
    border: 1pt;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    /* background-color: #white; */
    /* color: #8369BB; */
    font-weight: 700;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
}

/* スマホ */
@media screen and (max-width:630px) {
  .tickets {}

  .tickets-contents {
    text-align: justify;
    padding: 22px 20px 30px 20px;
    background-color: #D9D9D9;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .tickets-contents h2 {
    font-size: 25px;
  }

  .tickets-contents h3 {
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 0px;
    padding-bottom: 0px;
  }

  .tickets-contents p {
    font-size: 14px;
    line-height: 25px;
    font-weight: 400;
    text-align: justify;
    word-break: break-all;
    /* 長い単語やURLを途中で改行！ */
    overflow-wrap: break-word;
    /* 念のためURLが折り返しやすく */
  }

  .button-grid {
    margin: 10px 20px 40px 20px;
    display: flex;
    flex-wrap: wrap;
    /* 2列→2行に折り返す */
    gap: 20px;
    /* ボタン間の余白 */
    justify-content: flex-start;
    /* ← 左寄せ！ */
    max-width: 700px;
    /* ボタン全体の横幅制限（任意） */
  }

  .button-grid button {
    flex: 0 0 calc(100% - 25px);
    /* 2列配置（余白考慮） */
    padding: 12px 5px;
    font-size: 13px;
    border: 1pt;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    /* background-color: #white; */
    /* color: #8369BB; */
    font-weight: 700;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
}

/* tickets */
/* crowdfunding */
.crowdfunding-contents a {
  text-decoration: none;
}

.crowdfunding {
  /* position: relative;
  z-index: 1; */
}

@media screen and (min-width:841px) {
  .crowdfunding {
    position: relative;
    z-index: 1;
  }

  .crowdfunding-contents {
    padding: 40px 60px 60px 60px;
    background-color: #D9D9D9;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: justify;
    word-break: break-all;
    /* 長い単語やURLを途中で改行！ */
    overflow-wrap: break-word;
    /* 念のためURLが折り返しやすく */
    position: relative;
    z-index: 1;
  }

  .crowdfunding-contents h2 {
    font-size: 24px;
    line-height: 40px;
  }

  .crowdfunding-contents p {
    font-size: 15px;
    line-height: 35px;
  }

  .crowdfunding-contents button {
    border: none;
    background-color: #EAC676;
    color: #8369BB;
    font-weight: 700;
    font-size: 35px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px 65px;
    margin: 40px auto 42px auto;
    display: block;
  }

  .crowdfunding-bg-svg-1 {
    position: absolute;
    bottom: 200px;
    right: -30vw;
    /* 位置は調整 */
    /* right: 100px; */
    width: 50vw;
    /* サイズ調整 */
    max-width: 700px;
    min-width: 600px height:auto;
    z-index: -10;
    /* 背面に配置 */
    pointer-events: none;
    /* クリック無効でUI干渉防止 */
  }
}

/* タブレット */
@media screen and (min-width:631px) and (max-width:840px) {
  .crowdfunding {}

  .crowdfunding-contents {
    padding: 20px 30px 20px 30px;
    background-color: #D9D9D9;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: justify;
    word-break: break-all;
    /* 長い単語やURLを途中で改行！ */
    overflow-wrap: break-word;
    /* 念のためURLが折り返しやすく */
  }

  .crowdfunding-contents h2 {
    font-size: 20px;
    line-height: 30px;
  }

  .crowdfunding-contents p {
    font-size: 15px;
    line-height: 35px;
  }

  .crowdfunding-contents button {
    border: none;
    background-color: #EAC676;
    color: #8369BB;
    font-weight: 700;
    font-size: 28px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 18px 45px;
    margin: 35px auto 37px auto;
    display: block;
  }

  .crowdfunding-bg-svg-1 {
    display: none;
  }
}

/* スマホ */
@media screen and (max-width:630px) {
  .crowdfunding {}

  .crowdfunding-contents {
    padding: 22px 22px 30px 22px;
    background-color: #D9D9D9;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: justify;
    word-break: break-all;
    /* 長い単語やURLを途中で改行！ */
    overflow-wrap: break-word;
    /* 念のためURLが折り返しやすく */
  }

  .crowdfunding-contents h2 {
    font-size: 17px;
    line-height: 25px;
  }

  .crowdfunding-contents p {
    font-size: 14px;
    line-height: 25px;
    font-weight: 400;
  }

  .crowdfunding-contents button {
    border: none;
    background-color: #EAC676;
    color: #8369BB;
    font-weight: 700;
    font-size: 25px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 18px 45px;
    margin: 35px auto 37px auto;
    display: block;
  }

  .crowdfunding-bg-svg-1 {
    display: none;
  }
}

/* crowdfunding */
.story {
  position: relative;
  z-index: 1;
}

@media screen and (min-width:841px) {
  .story {}

  .story-contents {
    padding: 60px 60px 60px 60px;
    background-color: #D9D9D9;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .story-contents {
    text-align: justify;
    font-size: 16px;
    line-height: 35px;
    letter-spacing: 0.05em;
  }

  .story-image {
    margin: 40px auto;
    text-align: center;
  }

  .story-image img {
    width: 80%;
    margin: 0px auto;
  }

  .story-image figcaption {
    font-size: 12px;
    margin-top: 0px;
  }

  .story-bg-svg-1 {
    position: absolute;
    bottom: 200px;
    left: -30vw;
    /* 位置は調整 */
    /* right: 100px; */
    width: 55vw;
    /* サイズ調整 */
    max-width: 800px;
    min-width: 600px height:auto;
    z-index: -2;
    /* 背面に配置 */
    pointer-events: none;
    /* クリック無効でUI干渉防止 */
  }
}

/* タブレット */
@media screen and (min-width:631px) and (max-width:840px) {
  .story {}

  .story-contents {
    padding: 20px 30px 20px 30px;
    background-color: #D9D9D9;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .story-contents {
    text-align: justify;
    font-size: 16px;
    line-height: 35px;
    letter-spacing: 0.05em;
  }

  .story-image {
    margin: 40px auto;
    text-align: center;
  }

  .story-image img {
    width: 95%;
    margin: 0px auto;
  }

  .story-image figcaption {
    font-size: 12px;
    margin-top: 0px;
  }

  .story-bg-svg-1 {
    display: none;
    ;
  }
}

/* スマホ */
@media screen and (max-width:630px) {
  .story {}

  .story-contents {
    padding: 22px 22px 30px 22px;
    background-color: #D9D9D9;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .story-contents {
    text-align: justify;
    font-size: 14px;
    line-height: 25px;
    font-weight: 400;
    letter-spacing: 0.05em;
  }

  .story-image {
    margin: 30px auto;
    text-align: center;
  }

  .story-image img {
    width: 95%;
    margin: 0px auto;
  }

  .story-image figcaption {
    font-size: 12px;
    margin-top: 0px;
  }

  .story-bg-svg-1 {
    display: none;
    ;
  }
}

/* performers */
.performers {
  position: relative;
  z-index: 1;
}

@media screen and (min-width:841px) {
  .performers {}

  .performers-contents {
    padding: 60px 60px 60px 60px;
    margin-bottom: 80px;
    background-color: #D9D9D9;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .performers-contents img {
    width: calc(100% - 40px);
    height: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* 画像サイズ */
    background: white;
    /* 背景を白 */
    padding: 20px;
    /* 白い余白 */
  }

  .performers-contents .sara {
    width: auto;
    height: 655px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .performers-contents h2 {
    font-size: 30px;
  }

  .performers-contents p {
    text-align: justify;
    font-size: 16px;
    line-height: 35px;
    letter-spacing: 0.05em;
  }

  .performers-bg-svg-1 {
    position: absolute;
    top: 1000px;
    right: -30vw;
    /* 位置は調整 */
    /* right: 100px; */
    width: 55vw;
    /* サイズ調整 */
    max-width: 800px;
    min-width: 600px height:auto;
    z-index: -2;
    /* 背面に配置 */
    pointer-events: none;
    /* クリック無効でUI干渉防止 */
  }

  .performers-bg-svg-2 {
    position: absolute;
    bottom: 1000px;
    right: -30vw;
    /* 位置は調整 */
    /* right: 100px; */
    width: 55vw;
    /* サイズ調整 */
    max-width: 800px;
    min-width: 600px height:auto;
    z-index: -2;
    /* 背面に配置 */
    pointer-events: none;
    /* クリック無効でUI干渉防止 */
  }

  .performers-bg-svg-3 {
    position: absolute;
    top: 3000px;
    left: -30vw;
    /* 位置は調整 */
    /* right: 100px; */
    width: 55vw;
    /* サイズ調整 */
    max-width: 800px;
    min-width: 600px height:auto;
    z-index: -2;
    /* 背面に配置 */
    pointer-events: none;
    /* クリック無効でUI干渉防止 */
  }
}

/* タブレット */
@media screen and (min-width:631px) and (max-width:840px) {
  .performers {}

  .performers-contents {
    padding: 30px 30px 30px 30px;
    margin-bottom: 80px;
    background-color: #D9D9D9;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .performers-contents img {
    width: calc(100% - 40px);
    height: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* 画像サイズ */
    background: white;
    /* 背景を白 */
    padding: 20px;
    /* 白い余白 */
  }

  .performers-contents .sara {
    width: auto;
    height: 655px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .performers-contents h2 {
    font-size: 30px;
  }

  .performers-contents p {
    text-align: justify;
    font-size: 16px;
    line-height: 35px;
    letter-spacing: 0.05em;
  }

  .performers-bg-svg-1 {
    display: none;
  }

  .performers-bg-svg-2 {
    display: none;
  }

  .performers-bg-svg-3 {
    display: none;
  }
}

/* スマホ */
@media screen and (max-width:630px) {
  .performers {}

  .performers-contents {
    padding: 30px 22px 30px 22px;
    margin-bottom: 80px;
    background-color: #D9D9D9;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .performers-contents img {
    width: calc(100% - 20px);
    height: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    height: auto;
    /* 画像サイズ */
    background: white;
    /* 背景を白 */
    padding: 10px;
    /* 白い余白 */
  }

  .performers-contents .sara {
    width: 100%;
    height: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .performers-contents h2 {
    font-size: 20px;
  }

  .performers-contents p {
    text-align: justify;
    font-size: 14px;
    line-height: 25px;
    font-weight: 400;
    letter-spacing: 0.05em;
  }

  .performers-bg-svg-1 {
    display: none;
  }

  .performers-bg-svg-2 {
    display: none;
  }

  .performers-bg-svg-3 {
    display: none;
  }
}

/* performers */
/* message */
.message {
  position: relative;
  z-index: 1;
}
@media screen and (min-width:841px) {
  .clearfix::after {
    content: "";
    display: block;
    clear: both;
  }

  .message {}

  .message-contents {
    padding: 30px 30px 30px 30px;
    margin-bottom: 40px;
    background-color: #D9D9D9;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .message-contents img {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    float: left;
    /* 左に寄せる */
    margin: 0 25px 5px 0px;
    /* テキストとの余白 */
    width: 425px;
    max-width: 50vw;
    /* 画像サイズ */
    background: white;
    /* 背景を白 */
    padding: 10px;
    /* 白い余白 */
    /* border-radius: 10px; */
    height: auto;
  }

  .message-contents h2 {
    font-size: 30px;
    margin-top: 0;
    /* ← 上余白をゼロにする */
    padding-top: 0;
    /* ← 念のため padding もゼロ */
    margin-bottom: 0;
    /* ← 上余白をゼロにする */
    padding-top: 0;
    /* ← 念のため padding もゼロ */
  }

  .message-contents h2 span {
    font-size: 17px;
  }

  .message-contents p {
    text-align: justify;
    font-size: 16px;
    line-height: 34px;
    letter-spacing: 0.05em;
  }

  .message-contents .mawarikomanai {
    text-align: justify;
    font-size: 16px;
    line-height: 34px;
    letter-spacing: 0.05em;
    float: right;
    width: calc(100% - 470px);
  }

  .message-bg-svg-1 {
    position: absolute;
    top: 200px;
    right: -30vw;
    /* 位置は調整 */
    /* right: 100px; */
    width: 55vw;
    /* サイズ調整 */
    max-width: 800px;
    min-width: 600px height:auto;
    z-index: -2;
    /* 背面に配置 */
    pointer-events: none;
    /* クリック無効でUI干渉防止 */
  }

  .message-bg-svg-2 {
    position: absolute;
    bottom: 1000px;
    left: -30vw;
    /* 位置は調整 */
    /* right: 100px; */
    width: 55vw;
    /* サイズ調整 */
    max-width: 800px;
    min-width: 600px height:auto;
    z-index: -2;
    /* 背面に配置 */
    pointer-events: none;
    /* クリック無効でUI干渉防止 */
  }
}

/* タブレット */
@media screen and (min-width:631px) and (max-width:840px) {

  /* .clearfix::after {
    content: "";
    display: block;
    clear: both;
  } */
  .message {}

  .message-contents {
    padding: 30px 30px 30px 30px;
    margin-bottom: 40px;
    background-color: #D9D9D9;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .message-contents img {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* float: left; */
    /* 左に寄せる */
    margin: 0 25px 5px 0px;
    /* テキストとの余白 */
    width: 400px;
    /* 画像サイズ */
    background: white;
    /* 背景を白 */
    padding: 10px;
    /* 白い余白 */
    /* border-radius: 10px; */
    height: auto;
  }

  .message-contents h2 {
    font-size: 30px;
    margin-top: 0;
    /* ← 上余白をゼロにする */
    padding-top: 0;
    /* ← 念のため padding もゼロ */
    margin-bottom: 0;
    /* ← 上余白をゼロにする */
    padding-top: 0;
    /* ← 念のため padding もゼロ */
  }

  .message-contents h2 span {
    font-size: 17px;
  }

  .message-contents p {
    text-align: justify;
    font-size: 16px;
    line-height: 34px;
    letter-spacing: 0.05em;
  }

  .message-contents .mawarikomanai {
    text-align: justify;
    font-size: 16px;
    line-height: 34px;
    letter-spacing: 0.05em;
    /* float: right;
    width: calc(100% - 495px); */
  }

  .message-bg-svg-1 {
    display:none;
  }

  .message-bg-svg-2 {
  display:none;
  }
}

/* スマホ */
@media screen and (max-width:630px) {

  /* .clearfix::after {
    content: "";
    display: block;
    clear: both;
  } */
  .message {}

  .message-contents {
    padding: 22px 22px 22px 22px;
    margin-bottom: 40px;
    background-color: #D9D9D9;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .message-contents img {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* float: left; */
    /* 左に寄せる */
    /* margin: 0px; */
    /* テキストとの余白 */
    width: calc(100% - 22px);
    /* 画像サイズ */
    background: white;
    /* 背景を白 */
    padding: 10px;
    /* 白い余白 */
    /* border-radius: 10px; */
    height: auto;
  }

  .message-contents h2 {
    font-size: 20px;
    margin-top: 0;
    /* ← 上余白をゼロにする */
    padding-top: 0;
    /* ← 念のため padding もゼロ */
    margin-bottom: 0;
    /* ← 上余白をゼロにする */
    padding-top: 0;
    /* ← 念のため padding もゼロ */
  }

  .message-contents h2 span {
    font-size: 14px;
  }

  .message-contents p {
    text-align: justify;
    font-size: 14px;
    line-height: 25px;
    font-weight: 400;
    letter-spacing: 0.05em;
  }

  .message-contents .mawarikomanai {
    text-align: justify;
    font-size: 14px;
    line-height: 25px;
    font-weight: 400;
    letter-spacing: 0.05em;
  }

  .message-bg-svg-1 {
    display:none;
  }

  .message-bg-svg-2 {
  display:none;
  }
}

/* message */
/* sns */
@media screen and (min-width:841px) {
  .sns {}

  .sns-contents {
    padding: 60px 60px 60px 60px;
    background-color: #D9D9D9;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .icon-wrapper {
    height: 70px;
    display: flex;
    align-items: center;
    /* ← これで縦中央揃え！ */
    gap: 20px;
    /* 画像とpの間の余白 */
    margin-bottom: 0px;
  }

  .sns-contents img {
    float: left;
    /* 左に寄せる */
    margin: 0 48px 0px 20px;
    /* テキストとの余白 */
    height: 45px;
    /* 画像サイズ */
    width: auto;
  }

  .sns-contents p {
    font-size: 20px;
    margin: 0;
  }
}

/* タブレット */
@media screen and (min-width:631px) and (max-width:840px) {
  .sns {}

  .sns-contents {
    padding: 30px 30px 30px 30px;
    background-color: #D9D9D9;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .icon-wrapper {
    height: 60px;
    display: flex;
    align-items: center;
    /* ← これで縦中央揃え！ */
    gap: 5px;
    /* 画像とpの間の余白 */
    margin-bottom: 0px;
  }

  .sns-contents img {
    float: left;
    /* 左に寄せる */
    margin: 0 25px 0px 20px;
    /* テキストとの余白 */
    height: 40px;
    /* 画像サイズ */
    width: auto;
  }

  .sns-contents p {
    font-size: 15px;
    margin: 0;
  }
}

/* スマホ */
@media screen and (max-width:630px) {
  .sns {}

  .sns-contents {
    padding: 22px 22px 22px 22px;
    background-color: #D9D9D9;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .icon-wrapper {
    height: 40px;
    width: 100%;
    display: flex;
    align-items: center;
    /* ← これで縦中央揃え！ */
    gap: 5px;
    /* 画像とpの間の余白 */
    margin-bottom: 0px;
    flex-wrap: wrap;
  }

  .sns-contents img {
    /* float: left; */
    /* 左に寄せる */
    margin: 0 20px 0px 5px;
    /* テキストとの余白 */
    height: 20px;
    /* 画像サイズ */
    width: auto;
  }

  .sns-contents p {
    max-width: calc(100% - 100px);
    font-size: 12px;
    margin: 0;
    word-break: break-all;
    /* 長い単語やURLを途中で改行！ */
    overflow-wrap: break-word;
    /* 念のためURLが折り返しやすく */
  }
}

/* sns */
/* contact */
@media screen and (min-width:841px) {
  .contact {}

  .contact-contents {
    padding: 60px 60px 60px 60px;
    background-color: #D9D9D9;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .contact-contents p {
    font-size: 17px;
    line-height: 35px;
  }

  .nomura {
    height: 20px;
    padding: 0px;
    margin: 0px;
    vertical-align: middle;
  }

  .contact-logo-wrapper {
    margin-top: 70px;
    display: flex;
    justify-content: center;
    /* 横中央揃え */
    align-items: center;
    /* 縦も中央（任意） */
    gap: 50px;
    /* 画像の間隔（お好みで） */
  }

  .contact-logo {
    height: 45px;
    width: auto;
  }
}

/* タブレット */
@media screen and (min-width:631px) and (max-width:840px) {
  .contact {}

  .contact-contents {
    padding: 30px 30px 40px 30px;
    background-color: #D9D9D9;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .contact-contents p {
    font-size: 15px;
    line-height: 35px;
  }

  .nomura {
    height: 15px;
    padding: 0px;
    margin: 0px;
    vertical-align: middle;
  }

  .contact-logo-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    /* 横中央揃え */
    align-items: center;
    /* 縦も中央（任意） */
    gap: 20px;
    /* 画像の間隔（お好みで） */
  }

  .contact-logo {
    height: 45px;
    width: auto;
  }
}

/* スマホ */
@media screen and (max-width:630px) {
  .contact {}

  .contact-contents {
    padding: 22px 22px 22px 22px;
    background-color: #D9D9D9;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .contact-contents p {
    font-size: 12px;
    line-height: 25px;
    font-weight: 400;
  }

  .nomura {
    height: 12px;
    padding: 0px;
    margin: 0px;
    vertical-align: middle;
  }

  .contact-logo-wrapper {
    margin-top: 20px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    /* ← 縦に積む！ */
    align-items: center;
    /* ← 左右中央揃え！ */
    gap: 20px;
  }

  .contact-logo {
    height: 40px;
    width: auto;
  }
}

/* footer */
@media screen and (min-width:841px) {
  footer {
    text-align: center;
    margin: 80px 0px 40px 0px;
    padding-bottom: 60px
  }

  footer p {
    font-size: 20px;
    font-weight: 100;
    color: #D9D9D9;
  }
}

/* タブレット */
@media screen and (min-width:631px) and (max-width:840px) {
  footer {
    text-align: center;
    margin: 100px 0px 60px 0px;
    padding-bottom: 60px
  }

  footer p {
    font-size: 10px;
    font-weight: 100;
    color: #D9D9D9;
  }
}

/* スマホ */
@media screen and (max-width:630px) {
  footer {
    text-align: center;
    margin: 80px 0px 40px 0px;
    padding-bottom: 60px
  }

  footer p {
    font-size: 10px;
    font-weight: 100;
    color: #D9D9D9;
  }
}
