@charset "UTF-8";
/* google font */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
/* ----------------------------------------------------
変数
-----------------------------------------------------*/
:root {
  --font-base: -apple-system, BlinkMacSystemFont, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --font-serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  --font-en: "Montserrat", sans-serif;
}

/* ----------------------------------------------------
base設定
-----------------------------------------------------*/
html {
  font-size: 62.5%;
  height: 100%;
  overflow-y: scroll;
  width: 100%;
  scroll-padding-top: 100px;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: min(18vw, 80px);
  }
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-base);
}

body {
  font-family: var(--font-base);
  color: var(--color-text);
  line-height: 1.6;
  font-size: clamp(1.4rem, 1.327rem + 0.36vw, 1.6rem);
  line-height: 1.8;
  background: #fff;
  overflow-wrap: break-word;
  width: 100%;
  min-width: 320px;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

a {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  color: #333;
  text-decoration: none;
  transition: opacity 0.3s;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
  font-weight: normal;
}

.hide {
  opacity: 0;
  visibility: hidden;
}

.show {
  opacity: 1;
  visibility: visible;
}

body.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

/* ----------------------------------------------------
共通
-----------------------------------------------------*/
.sec-title {
  line-height: 2;
  font-size: min(5.8vw, 4rem);
  font-weight: 700;
  text-align: center;
  -webkit-text-decoration: underline dashed var(--color-sub);
          text-decoration: underline dashed var(--color-sub);
  text-underline-offset: min(2vw, 20px);
  text-decoration-thickness: min(0.5vw, 3px);
}

@media screen and (max-width: 767px) {
  .table__scroll {
    overflow-x: scroll;
  }
}

/* ----------------------------------------------------
header
-----------------------------------------------------*/
.header {
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #FFF;
  width: 100%;
  transition: all 0.3s ease;
}
.header__inner {
  position: relative;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: min(6vw, 20px);
       column-gap: min(6vw, 20px);
}
@media screen and (max-width: 767px) {
  .header__inner {
    height: min(20vw, 90px);
  }
}
.header__logo {
  display: flex;
  align-items: center;
  line-height: 1.5;
  -moz-column-gap: min(6vw, 20px);
       column-gap: min(6vw, 20px);
  padding-block: min(3vw, 10px);
}
@media screen and (max-width: 767px) {
  .header__logo {
    font-size: min(3.2vw, 1.3rem);
    line-height: 1.3;
    -moz-column-gap: min(3vw, 10px);
         column-gap: min(3vw, 10px);
  }
}
@media screen and (max-width: 767px) {
  .header__logo h1 {
    max-width: 18vw;
  }
}
@media screen and (max-width: 510px) {
  .header__logo h1 {
    max-width: 28vw;
  }
}
.header__logo p {
  font-family: var(--font-serif);
  font-weight: 500;
}
.header__logo p b {
  font-size: 120%;
}

/* ----------------------------------------------------
ナビゲーション
-----------------------------------------------------*/
/* ハンバーガーメニュー  */
.hamburger {
  display: grid;
  place-content: center;
  position: absolute;
  top: 50%;
  right: min(0.5vw, 15px);
  transform: translateY(-50%);
  z-index: 9999;
  cursor: pointer;
  width: min(10vw, 60px);
  height: min(10vw, 60px);
  background-color: black;
  border-radius: 50%;
}
.hamburger > div {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45%;
  height: 35%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 480px) {
  .hamburger > div {
    width: 50%;
    height: 40%;
  }
}
.hamburger > div > span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: white;
  left: 0;
  transition: 0.35s ease-in-out;
}
.hamburger > div > span:nth-child(1) {
  top: 0;
}
.hamburger > div > span:nth-child(2) {
  top: 46%;
}
.hamburger > div > span:nth-child(3) {
  bottom: 0;
}
.open .hamburger > div span:nth-child(1) {
  top: 50%;
  transform: rotate(315deg);
}
.open .hamburger > div span:nth-child(2) {
  width: 0;
  left: 50%;
}
.open .hamburger > div span:nth-child(3) {
  bottom: 40%;
  transform: rotate(-315deg);
}

/* メニュー  */
.naviset {
  position: relative;
  padding-top: min(12vw, 35px);
  padding-bottom: min(10vw, 30px);
  padding-inline: min(10vw, 30px);
  display: block;
  pointer-events: none;
  z-index: -1;
  background-color: #F2F2F2;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 0;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s ease 0.3s;
}
.open .naviset {
  pointer-events: auto;
  z-index: 9998;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
  height: 100svh;
}
.naviset__logo {
  max-width: min(20vw, 120px);
  margin-bottom: min(8vw, 60px);
  padding-top: min(6vw, 20px);
}
.naviset__gnav {
  display: grid;
}
.naviset__gnav li {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  font-weight: 700;
}
.naviset__gnav a {
  position: relative;
  line-height: 1;
  grid-auto-flow: initial;
  font-size: min(3.6vw, 1.8rem);
  transition: all 0.3s ease;
  padding-block: min(10vw, 30px);
  padding-inline: min(5vw, 15px);
  border-bottom: 1px solid #333;
}
.naviset__gnav a:hover {
  color: white;
  background-color: #333;
}

/* ----------------------------------------------------
kv
-----------------------------------------------------*/
.kv {
  overflow: hidden;
  padding-top: 140px;
  background: linear-gradient(90deg, rgb(25, 62, 142) 0%, rgb(25, 62, 142) 30%, rgb(255, 255, 255) 30%, rgb(255, 255, 255) 70%, rgb(215, 70, 77) 70%, rgb(215, 70, 77) 100%);
}
@media screen and (max-width: 1300px) {
  .kv {
    padding-top: min(20vw, 90px);
    background: linear-gradient(90deg, rgb(25, 62, 142) 0%, rgb(25, 62, 142) 20%, rgb(255, 255, 255) 20%, rgb(255, 255, 255) 80%, rgb(215, 70, 77) 80%, rgb(215, 70, 77) 100%);
  }
}
@media screen and (max-width: 767px) {
  .kv {
    padding-top: min(20vw, 90px);
    background: linear-gradient(90deg, rgb(25, 62, 142) 0%, rgb(25, 62, 142) 5%, rgb(255, 255, 255) 5%, rgb(255, 255, 255) 95%, rgb(215, 70, 77) 95%, rgb(215, 70, 77) 100%);
  }
}
.kv__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  position: relative;
  max-width: 1780px;
  margin-inline: auto;
}
@media screen and (max-width: 1200px) {
  .kv__inner {
    grid-template-columns: 1fr 3.5fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .kv__inner {
    grid-template-columns: 1fr;
  }
}
.kv__main {
  padding-top: clamp(5px, 3vw, 10px);
  padding-inline: clamp(10px, 10vw, 30px);
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
}
.kv__main--logo {
  position: absolute;
  top: 40%;
  left: 0;
  z-index: 1;
  transform: translateY(-50%);
  text-align: center;
  width: 100%;
}
.kv__main--logo img {
  width: 30vw;
}
@media screen and (max-width: 1300px) {
  .kv__main--logo img {
    width: 40vw;
  }
}
@media screen and (max-width: 1000px) {
  .kv__main--logo img {
    width: 50vw;
  }
}
@media screen and (max-width: 767px) {
  .kv__main--logo img {
    width: 70vw;
  }
}
.kv__main--text {
  text-align: center;
  font-size: min(4vw, 2.5rem);
  letter-spacing: 0.05em;
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: min(6vw, 20px);
}
.kv__main--text span {
  font-size: 80%;
  position: relative;
  padding-top: min(3vw, 10px);
}
@media screen and (max-width: 900px) {
  .kv__main--text span {
    font-size: 70%;
  }
}
.kv__main--text span::before {
  position: absolute;
  top: 65%;
  left: -20px;
  transform: translateX(-50%);
  content: "";
  display: block;
  width: min(6vw, 20px);
  height: 1px;
  background-color: #000;
}
.kv__main--text span::after {
  position: absolute;
  top: 65%;
  right: -40px;
  transform: translateX(-50%);
  content: "";
  display: block;
  width: min(6vw, 20px);
  height: 1px;
  background-color: #000;
}
.kv__main--text-top, .kv__main--text-bottom {
  max-width: 60vw;
}
.kv__main--img {
  text-align: center;
  padding-top: clamp(0.5px, 3vw, 10px);
  padding-bottom: clamp(3px, 3vw, 5px);
  max-width: 50vw;
}
.kv__img-blue {
  background: #193E8E url(https://kansei-de-ashiya.org/cms/wp-content/themes/kdea/images/gala/kv_blue.webp) no-repeat right center;
  background-size: auto 100%;
}
@media screen and (max-width: 767px) {
  .kv__img-blue {
    display: none;
  }
}
.kv__img-red {
  background: #D7464D url(https://kansei-de-ashiya.org/cms/wp-content/themes/kdea/images/gala/kv_red.webp) no-repeat left center;
  background-size: auto 120%;
}
@media screen and (max-width: 767px) {
  .kv__img-red {
    display: none;
  }
}

/* ----------------------------------------------------
lead
-----------------------------------------------------*/
.lead {
  padding-block: min(15vw, 120px);
}
.lead p {
  font-size: min(3.6vw, 2.4rem);
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 2.2;
}
.lead p b {
  font-size: 150%;
}
.lead p span {
  display: block;
}

/* ----------------------------------------------------
gallery
-----------------------------------------------------*/
.gallery .scroll {
  display: flex;
  overflow: hidden;
}
.gallery .scroll_list {
  display: flex;
  animation: scroll-left 80s infinite linear 0.5s both;
}
@media screen and (max-width: 767px) {
  .gallery .scroll_list {
    animation: scroll-left 70s infinite linear 0.5s both;
  }
}
.gallery .scroll_item {
  width: 33.3333333333vw;
}
@media screen and (max-width: 767px) {
  .gallery .scroll_item {
    width: 66.6666666667vw;
  }
}
.gallery .scroll_item img {
  display: block;
  width: 100%;
}
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* ----------------------------------------------------
instagram
-----------------------------------------------------*/
.instagram {
  background-color: #D9D9DD;
  padding-block: min(15vw, 120px);
}
.instagram h2 {
  font-size: min(5.8vw, 3.4rem);
  font-weight: 400;
  text-align: center;
}
.instagram span {
  text-align: center;
  font-size: 50%;
  display: block;
  padding-top: min(3vw, 10px);
}

/* ----------------------------------------------------
schedule
-----------------------------------------------------*/
.schedule {
  padding-block: min(15vw, 120px);
}
.schedule h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: min(5.8vw, 3rem);
  text-align: center;
  display: grid;
  justify-items: center;
}
.schedule h2:after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: #000;
  margin-top: min(4vw, 15px);
}
.schedule__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: min(3vw, 30px);
       column-gap: min(3vw, 30px);
  row-gap: min(6vw, 30px);
}
@media screen and (max-width: 767px) {
  .schedule__main {
    grid-template-columns: 1fr;
  }
}
.schedule__card h3 {
  font-size: min(4.2vw, 2.4rem);
  font-family: var(--font-serif);
  font-weight: 500;
  text-align: center;
  color: white;
  background-color: #6796A7;
  padding-block: min(6vw, 15px);
  padding-inline: min(3vw, 10px);
}
.schedule__card figure img {
  width: 100%;
}
.schedule__card-text {
  background-color: #EAE8E8;
  padding: min(6vw, 20px);
}
.schedule__card-text--info {
  border-top: 1px solid white;
  padding-top: min(6vw, 15px);
  margin-top: min(6vw, 15px);
}

/* ----------------------------------------------------
performers
-----------------------------------------------------*/
.performers {
  color: white;
  background-color: #191919;
  padding-block: min(15vw, 120px);
}
.performers h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: min(5.8vw, 3rem);
  text-align: center;
  display: grid;
  justify-items: center;
}
.performers h2:after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: white;
  margin-top: min(4vw, 15px);
}
.performers__main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: min(3vw, 60px);
       column-gap: min(3vw, 60px);
  row-gap: min(9vw, 60px);
}
@media screen and (max-width: 767px) {
  .performers__main {
    grid-template-columns: repeat(2, 1fr);
  }
}
.performers__card--img {
  max-width: 60vw;
  margin-inline: auto;
  text-align: center;
  margin-bottom: min(6vw, 20px);
}
.performers__card--img img {
  border-radius: 50%;
}
.performers__card--name {
  font-size: min(5vw, 2.4rem);
  font-weight: 500;
  padding-bottom: min(3vw, 5px);
  margin-bottom: min(3vw, 5px);
  border-bottom: 1px solid white;
}
.performers__card--award {
  margin-bottom: min(3vw, 20px);
}
.performers__card--instagram {
  margin-top: min(6vw, 20px);
}

/* ----------------------------------------------------
history
-----------------------------------------------------*/
.history {
  padding-block: min(15vw, 120px);
}
.history h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: min(5.8vw, 3rem);
  text-align: center;
  display: grid;
  justify-items: center;
}
.history h2:after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: #000;
  margin-top: min(4vw, 15px);
}
.history__main {
  position: relative;
}
.history__main::after {
  position: absolute;
  bottom: -10px;
  left: clamp(116px, 15vw, 173px);
  content: "";
  display: block;
  width: min(8vw, 37px);
  height: min(7vw, 34px);
  background: #888;
  -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
          clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
@media screen and (max-width: 767px) {
  .history__main::after {
    left: 15.5vw;
  }
}
@media screen and (max-width: 420px) {
  .history__main::after {
    left: 14.5vw;
  }
}
.history__card {
  display: grid;
  grid-template-columns: min(160px, 14vw) 1fr;
  -moz-column-gap: min(3vw, 30px);
       column-gap: min(3vw, 30px);
}
@media screen and (max-width: 767px) {
  .history__card {
    grid-template-columns: 1fr 5fr;
  }
}
.history__card--year {
  font-size: min(6vw, 7rem);
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
  line-height: 1.4;
  font-weight: 700;
}
.history__card--content {
  padding-left: min(5vw, 30px);
  border-left: 3px solid #888;
  padding-bottom: min(15vw, 80px);
  display: grid;
  grid-template-columns: 3fr 2fr;
  -moz-column-gap: min(3vw, 30px);
       column-gap: min(3vw, 30px);
}
@media screen and (max-width: 767px) {
  .history__card--content {
    grid-template-columns: 1fr;
    row-gap: min(6vw, 30px);
  }
}
.history__card--content h3 {
  font-size: min(5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: min(3vw, 10px);
}

/* ----------------------------------------------------
crowdfunding
-----------------------------------------------------*/
.crowdfunding {
  background: linear-gradient(20deg, rgb(78, 60, 21) 0%, rgb(209, 181, 60) 100%);
}
.crowdfunding__inner {
  position: relative;
}
.crowdfunding__inner::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background: url(https://kansei-de-ashiya.org/cms/wp-content/themes/kdea/images/gala/crowdfunding_img.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .crowdfunding__inner::after {
    position: initial;
    display: block;
    width: 100%;
    height: min(50vw, 250px);
  }
}
.crowdfunding__main {
  color: white;
  display: grid;
  grid-template-columns: 2fr 1fr;
  padding-block: min(80px, 12vw);
}
@media screen and (max-width: 767px) {
  .crowdfunding__main {
    grid-template-columns: 1fr;
    row-gap: min(6vw, 30px);
  }
}
.crowdfunding__main h2 {
  display: inline-block;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: min(5.8vw, 4rem);
  border-bottom: 1px solid white;
  padding-bottom: min(3vw, 10px);
  margin-bottom: min(9vw, 40px);
}

/* ----------------------------------------------------
フッター
-----------------------------------------------------*/
.footer {
  color: white;
  background-color: #464646;
  padding-block: min(10vw, 80px);
}
.footer__main {
  display: grid;
  justify-content: center;
}
@media screen and (max-width: 1100px) {
  .footer__main {
    display: block;
  }
}
.footer ul {
  display: flex;
  justify-content: center;
  -moz-column-gap: min(3vw, 30px);
       column-gap: min(3vw, 30px);
  border-bottom: 1px solid white;
  padding-bottom: min(9vw, 20px);
	font-size:82%;
}
@media screen and (max-width: 1100px) {
  .footer ul {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: min(3vw, 10px);
  }
}
.footer a {
  color: white;
}
.footer__instagram {
  text-align: center;
  padding-top: min(12vw, 60px);
}
.footer__copy {
  text-align: center;
  padding-top: min(3vw, 10px);
}


/* ----------------------------------------------------
下層用タイトル最終
-----------------------------------------------------*/
.lead_box {
  padding-top: 140px;
	padding-bottom:60px;
}
@media screen and (max-width: 767px) {
  .lead_box {
    padding-top: min(20vw, 90px);
  }
}
.lead_box h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: min(5.8vw, 3rem);
  text-align: center;
  display: grid;
  justify-items: center;
  padding-top: 60px;
}
.lead_box h2:after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: black;
  margin-top: min(4vw, 15px);
}

.list_title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: min(5.5vw, 2.7rem);
  text-align: center;
  display: grid;
  justify-items: center;
  padding-top: 60px;
	margin-bottom: 80px;
}

