/* ===== RESET ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none

}
svg, img {
    pointer-events: none;
    vertical-align: middle;
    border-style: none
}
html {
    font-family: "-apple-system","BlinkMacSystemFont","Segoe UI","Roboto","Oxygen-Sans","Ubuntu","Cantarell","Helvetica Neue",sans-serif;
    word-break: break-all;
    scrollbar-color: #888 #171717;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    line-height: 1.5
}
::-webkit-scrollbar {
    width: 12px
}
::-webkit-scrollbar-thumb {
    background: #888
}
::-webkit-scrollbar-track {
    background: #171717
}
button {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: inherit
}

/* header */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    animation-duration: 0.5s;
    padding: 35px 20px 30px;
    width: 100%;
    max-width: 100%;
    z-index: 100;
}
.navbar__inner {
    width: 100%;
    max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 70px;
}
.navbar__inner button{
    display: none;
    position: relative;
    background: transparent;
    flex-shrink: 0;
    width: 25px;
    height: 25px;
}
.navbar__inner i {
    position: absolute;
    left: 4px;
  width: 17px;
  height: 2px;
    background-color: #fff
}
.navbar__inner i:nth-of-type(1) {
    top: 5px
}
.navbar__inner i:nth-of-type(2) {
    top: 11px
}
.navbar__inner i:nth-of-type(3) {
    top: 17px
}

.active i:nth-of-type(1) {
    width:17px;
    transform:translateY(6px) rotate(45deg)
}
.active i:nth-of-type(2) {
    opacity:0
}
.active i:nth-of-type(3) {
    width:17px;
    transform:translateY(-6px) rotate(-45deg)
}


.navbar__logo {
    font-weight: 700;
    font-size: 24px;
    color: #fff;
    text-decoration: none;
}
.navbar__links {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 50px;
}
.navbar__links .is-active a {
    text-decoration: underline;
  text-underline-offset: 15px;
}
.navbar__links li a {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    text-decoration: none;
    text-transform: none;
    padding: 10px 0;
    color: #fff;
}
.navbar__links li a:hover {
    /* color: #fff; */
}

@media(max-width:1280px){
    .navbar__links{
        width: 100%;
    }
    .navbar__inner{
        flex-direction: column;
        align-items: start;
        row-gap: 20px;
        max-width: 960px;
    }

}
@media(max-width:980px){
    .navbar__inner button{
        display: block;
    }
    .navbar__links{
        display: none;
    }
    .navbar__inner{
        max-width: 720px;
        flex-direction: inherit;
        align-items: center;
        justify-content: space-around;
    }
}
@media(max-width:680px){
    .navbar{
        padding: 20px 40px 0px;
        max-width: 620px;
        margin: 0 auto;
    }
}

/* menuList */
.menuList{
  display: none;
  background: #2b2d42;
  padding: 120px 40px 0;
  position: fixed;
  width: 100%;
  z-index: 1;
  height: 100%;
}

.menuList li{
    max-width: 650px;
  margin: 0 auto;
}

.menuList a{
    color: #fff;
    text-decoration: none;
    padding: 20px 0;
    display: block;
    width:100% ;
}

.active{
    display: block;
}

/* fv */
.fv {
    background:linear-gradient(rgba(17,18,26,.60), rgba(17,18,26,.60)),url("https://kankou-xover-contest-2026.2kyousou.org/wp-content/uploads/2026/02/unsplash-CzLh6GqXvw4-1-1.jpg");
    background-size: cover;
    background-position: 51% 0%;
    background-attachment: scroll;
    background-repeat: no-repeat;
    padding: 270px 0 150px;
    width: 100%;
    max-width: 100%;
}
.fv__content {
    max-width: 1230px;
  margin: 0 auto;
  padding: 0 30px;
}
.fv__title {
    color: #fff;
    line-height: 1.25;
    font-weight: 700;
    font-size: 3em;
    text-transform: none;
    text-align: center;
}
.fv__sub {
    font-weight: bold;
  font-size: 1.2em;
  line-height: 1.5;
  text-transform: none;
  text-align: center;
  color: #fff;
    margin: 20px 0 0;
}

/* ボタン群 */
.fv__buttons {
    display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0 0 0;
}

/* 青いボタン（応募はこちら） */
.btn-apply {
    display: inline-block;
    background: #2f7cff;
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
    font-weight: bold;
}
.btn-apply:hover {
    background: rgba(43,45,66,1);
    transform: translateY(-2px);
}

/* 白枠ボタン（詳細はこちら） */
.btn-detail {
    display: inline-block;
    background: #fff;
    color: #000;
    font-family: inherit;
    font-size: 16px;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
    font-weight: bold;
}
.btn-detail:hover {
    background: #2f7cff;
    color: #fff;
    transform: translateY(-2px);
}

@media(max-width:980px){
    .fv__content{
        max-width: 540px;
    }
    .fv{
        padding: 130px 0 65px;
    }
}
@media(max-width:680px){
    .fv{
        padding: 165px 0 65px;
    }
}

/* news */
.news-bar{
  background: #fff;
  padding: 20px 0 0;
}
.news-bar__inner{
  max-width: 1230px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 3fr;
  padding: 0 8px;
  align-items: center;
  column-gap: 0px;
}

.news-bar__label{
  width: 100%;
  color: rgb(43, 45, 66);
  text-align: center;
  font-family: "Mulish",Helvetica, Arial, Sans-Serif, serif;
  font-weight: 700;
  font-size: 1.8em;
  line-height: 1.25;
  text-transform: none;
  padding: 20px 0;
}

.news-bar__list{
  display: grid;
  row-gap: 15px;
  align-content: center;
  padding: 8px 0;
}

.news-bar__row{
  display: grid;
  grid-template-columns: 1fr 3fr;
  align-items: center;
  padding: 11px 8px;
  border-left: 1px solid rgb(98, 102, 150);
}

.news-bar__date{
  font-size: 16px;
  color: #23263a;
  white-space: nowrap;
}

.news-bar__text{
  font-size: 16px;
  color:#23263a;
  line-height: 1.8;
}

/* スマホで崩れにくい形 */
@media (max-width: 980px){
  .news-bar__inner{
    max-width: 700px;
  }
  .news-bar__row{
    grid-template-columns: 100px 1fr;
    column-gap: 16px;
  }
}
@media(max-width:680px){
    .news-bar__inner{
        grid-template-columns: 1fr;
        max-width: 540px;
    }
    .news-bar__row{
        grid-template-columns: 1fr;
    }

}


/* theme */
.theme{
  background:#fff;
  padding: 30px 0px;
}

.theme__inner{
  max-width: 1230px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 2fr;
  align-items: center;
}

.theme__left{
    padding: 15px 15px;
}   

.theme__title{
  font-weight: bold;
  font-size: 3em;
  line-height: 1.143;
  color: rgb(43, 45, 66);
}

.theme__line{
    width: 180px;
  padding: 2px 0;
  margin: 30px 0 30px;
  background: rgb(47, 124, 255);
  max-width: 100%;
}

.theme__lead{
  margin: 0 0 20px;
  font-size: 1.2em;
  line-height: 1.5;
  text-transform: none;
  color: rgb(43, 45, 66);
  font-weight: bold;
}

.theme__p{
  margin: 0 0 20px;
  color: #2a2d3f;
  font-size: 16px;
  line-height: 1.4;
}

.theme__p:nth-of-type(3){
  margin: 0 0 40px;
}

.theme__link{
  color: rgb(47, 124, 255);
  text-decoration: none;
  font-weight: 700;
}

.theme__figure{
  width: 100%;
  padding: 15px 15px;
}

.theme__img{
  width: 100%;
  display: block;
}

/* レスポンシブ */
@media (max-width: 980px){
  .theme__inner{
    grid-template-columns: 1fr;
    max-width: 700px;
  }
}


/* reqblock */
.reqblock{
  background:#fff;
  padding: 100px 0;
}

/* 画像左 / テキスト右 の2カラム */
.reqblock__inner{
  display: grid;
  grid-template-columns: 4fr 6fr;
  align-items: center;
}

.reqblock__img{
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 5px;
}

.reqblock__text{
  background: #f3f4f6;
  padding: 5% 15%;
  margin: 20px 0;
}

.reqblock__text li{
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
  color: rgb(43, 45, 66);
}

.reqblock__title{
  margin: 0 0 50px;
  font-weight: 700;
  font-size: 3em;
  line-height: 1.143;
  color: rgb(43, 45, 66);
}

.reqblock__text strong{
  font-weight: bold;
}

/* レスポンシブ：縦積み */
@media (max-width: 980px){
  .reqblock__inner{
    grid-template-columns: 1fr;
  }
  .reqblock__text{
    padding: 10% 10%;
    margin: 0;
  }
}

/* youth-section.css */
.reqblock2{
  background:#fff;
  padding: 100px 0;
}

.reqblock2__inner{
  display: grid;
  grid-template-columns: 6fr 4fr;
}

.reqblock2__text{
  background: #f3f4f6;
  padding: 5% 15%;
  margin: 40px 0 0;
}

.reqblock2__text li{
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
  color: rgb(43, 45, 66);
}

.reqblock2__title{
  margin: 0 0 50px;
  font-weight: 700;
  font-size: 3em;
  line-height: 1.143;
  color: rgb(43, 45, 66);
}

.reqblock2__text strong{
  font-weight: bold;
}

.reqblock2__img{
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 5px;
}

/* レスポンシブ：縦積み */
@media (max-width: 1100px){
  .reqblock2__media{
    justify-content:center;
  }
}
@media(max-width:980px){
    .reqblock2__inner{
        grid-template-columns: 1fr;
    }
    .reqblock2__text{
        order: 1;
        margin: 0;
        padding: 10% 10%;
    }
}

/* requirements-cards.css */

.reqsec{
  background:#fff;
  padding: 30px 0;
}

.reqsec__inner{
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 30px;
}

.reqsec__title{
  margin: 30px 0 30px;
  font-family: Mulish,Helvetica, Arial, Sans-Serif, serif;
  font-weight: 700;
  font-size: 3em;
  line-height: 1.143;
  text-transform: none;
  color: rgb(43, 45, 66);
  text-align: center;
}
.reqsec__line{
  width: 180px;
  padding: 2px 0;
  margin: 30px auto 30px;
  background: rgb(47, 124, 255);
  max-width: 100%;
}

.reqsec__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

/* カード本体 */
.reqcard{
  background: #fff;
  padding: 15px 15px;
  border-bottom: 3px solid #f17c20;
  box-shadow: 0px 19px 38px 0px rgba(0, 0, 0, 0.16);
}
.reqcard--orange{ border-bottom: 3px solid #f17c20; }
.reqcard--green{ border-bottom: 3px solid #10b981; }

/* 上の丸アイコン（スター） */
.reqcard__badge{
  width: 80px;
  height: 80px;
  border-radius: 50px;
  display: grid;
  place-items: center;
  text-align: center;
  margin: 0 auto 10px;
}
.reqcard__star{
  font-size: 40px;
  color: #fff;
}

.reqcard--orange .reqcard__badge{ background:#f17c20; }
.reqcard--green  .reqcard__badge{ background:#4eba9a; }

.reqcard__head{
  font-family: "Mulish",Helvetica, Arial, Sans-Serif, serif;
  font-size: 1.4em;
  line-height: 1.4;
  text-transform: none;
  color: rgb(43, 45, 66);
  text-align: center;
  font-weight: bold;
}

/* 左キー（青）/右本文 */
.reqcard__row{
  display:grid;
  grid-template-columns: 135px 1fr;
  margin: 10px 0;
}
.reqcard__row dt{
  font-size: 0.9em;
  color: #2f6bf2;
  white-space: nowrap;
  text-align: center;
}
.reqcard__row dd{
  color: rgb(43, 45, 66);
  font-size: 15px;
  font-style: normal;
  line-height: 1.4;
  text-align: left;
}
.reqcard__row dd.warn{
  color: #eb1414;
  font-weight: 900;
  text-decoration: line-through;
}
.reqcard__link{
  color: rgb(47, 124, 255);
  text-decoration: none;
  font-weight: 800;
}

/* 過去ボタン列 */
.reqsec__past{
  margin: 23px 130px;
  display: grid;
  grid-template-columns: 225px 1fr 1fr 1fr;
  align-items: center;
  column-gap: 50px;
}
.reqsec__pastlabel{
  font-family: "Mulish",Helvetica, Arial, Sans-Serif, serif;
  font-size: 1.125em;
  line-height: 1.4;
  color: rgba(43,45,66,1);
}
.yearbtn{
  border-radius: 5px;
  background: #2f7cff;
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  box-shadow: 0 10px 18px rgba(47,107,242,.25);
  width: 150px;
  max-width: 100%;
  padding: 12px 24px;
  text-align: center;
  text-decoration: none;
}
.yearbtn:hover{ filter: brightness(.95); }

/* レスポンシブ */
@media (max-width: 980px){
  .reqsec__grid{
    grid-template-columns: 1fr;
  }
  .reqsec__past{
    grid-template-columns: 1fr;
    row-gap: 30px;
    margin: 60px 0 60px;
  }
  .reqcard__row{
    grid-template-columns:1fr;
  }
  .reqcard__row dt{
    text-align: left;
  }
  .reqsec__pastlabel{
    text-align: center;
  }
  .yearbtn{
    margin: 0 auto;
  }
}
@media(max-width:680px){
    .reqsec__inner{
        padding: 0 15px;
    }
}

/* judges-section.css */

.judgeSec{
  background: #fff;
  padding: 20px 0;
}

.judgeSec__inner{
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 15px;
}

.judgeSec__title{
  margin: 30px 0 30px;
  font-family: Mulish,Helvetica, Arial, Sans-Serif, serif;
  font-weight: 700;
  font-size: 3em;
  line-height: 1.143;
  text-transform: none;
  color: rgb(43, 45, 66);
  text-align: center;
}
.judgeSec__line{
  width: 180px;
  padding: 2px 0;
  margin: 30px auto 30px;
  background: rgb(47, 124, 255);
  max-width: 100%;
}

/* 白いパネル（影つき） */
.judgePanel{
  position: relative;
  background: #fff;
  border-radius: 6px;
  padding: 30px 30px;
  text-align: center;
  border-bottom: 3px solid rgb(241, 124, 32);
  box-shadow: 0px 19px 38px 0px rgba(0, 0, 0, 0.16);
}
.orangeLine{
    border-bottom: 3px solid rgb(241, 124, 32);
}
.greenLine{
    border-bottom: 3px solid #4eba9a;
}

/* 上の丸バッジ（オレンジ＋星） */
.judgePanel__badge{
  width: 80px;
  height: 80px;
  border-radius: 50px;
  display: grid;
  place-items: center;
  text-align: center;
  margin: 0 auto 10px;
  font-size: 40px;
  color: #fff;
}
.orange{
    background: #f17c20;
}
.green{
    background: #4eba9a
}

.judgePanel__sub{
  font-family: "Mulish",Helvetica, Arial, Sans-Serif, serif;
  font-size: 1.4em;
  line-height: 1.4;
  text-transform: none;
  color: rgb(43, 45, 66);
  text-align: center;
  font-weight: bold;
}

/* ここが肝：4つ＋中央下1つ */
.judgeGrid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
  row-gap: 15px;
}

/* 各カード */
.judgeCard{
  width: 100%;
}

.judgeAvatar{
    width: 150px;
    max-width: 100%;
    border-radius: 100px;
    background: #fff;
    margin: 0 auto 10px;
    box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.5);
}

.judgeAvatar__text{
  font-weight: 900;
  letter-spacing: .06em;
  font-size: 20px;
  line-height: 1.05;
  color:#111;
}

.judgeName{
  color: rgb(43, 45, 66);
  font-family: "Mulish",Helvetica, Arial, Sans-Serif, serif;
  font-weight: 500;
  font-size: 1.4em;
  line-height: 1.4;
  text-transform: none;
}

.judgeRole{
  font-family: "Mulish",Helvetica, Arial, Sans-Serif, serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
  text-transform: none;
  color: rgb(43, 45, 66);
  font-style: italic;
  margin: 0 0 5px;
}
.judgeJP{
  font-family: "Mulish",Helvetica, Arial, Sans-Serif, serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
  text-transform: none;
  color: rgb(43, 45, 66);
}

/* 5人目を「2段目の中央」に置く */
.judgeCard.is-center{
  grid-column: 2 / 4; /* 2〜3列をまたいで中央に寄せる */
  justify-self: center;
}

/* レスポンシブ */
@media (max-width: 1100px){
  .judgeGrid{
    grid-template-columns: repeat(2, 1fr);
  }
  .judgeCard.is-center{
    grid-column: auto;
  }
}
@media (max-width: 560px){
  .judgeGrid{
    grid-template-columns: 1fr;
  }
  .judgePanel{
    padding: 54px 18px 40px;
  }
  .judgeCard{
    width: auto;
  }
}

/* benefits-section.css */

.benefSec{
  background: #fff;
  padding: 20px 0;
}

.benefSec__inner{
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 30px;
}

.benefSec__title{
  margin: 30px 0 30px;
  font-family: Mulish,Helvetica, Arial, Sans-Serif, serif;
  font-weight: 700;
  font-size: 3em;
  line-height: 1.143;
  text-transform: none;
  color: rgb(43, 45, 66);
  text-align: center;
}
.benefSec__line{
  width: 180px;
  padding: 2px 0;
  margin: 30px auto 30px;
  background: rgb(47, 124, 255);
  max-width: 100%;
}

/* 影の強い感じ（スクショの広い影） */
.benefGrid{
  display:grid;
  row-gap: 16px;
}

.benefRow:nth-child(odd) {
  display:grid;
  justify-content:center;
  grid-template-columns: repeat(3, calc((100% - 48px) / 3));
  column-gap: 16px;
  row-gap: 16px;
  max-width: 100%;
  width: 100%;
}

.benefRow:nth-child(even) {
  display:grid;
  justify-content:center;
  grid-template-columns: repeat(2, calc((100% - 48px) / 3));
  column-gap: 16px;
  row-gap: 16px;
  max-width: 100%;
  width: 100%;
}

/* 横長カード */
.benefCard{
  width: 100%;
  background: #fff;
  box-shadow: 0 22px 44px rgba(0,0,0,.16);
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0 30px;
  aspect-ratio: 16/5;
}

.benefCard__icon{
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  flex: 0 0 auto;
}
.benefCard span{
    width: 60px;
  height: 60px;
  border-radius: 50px;
  max-width: 100%;
  aspect-ratio: 1/1;
}
.benefCard svg{
  width: 40px;
  height: 40px;
  fill: #fff;
  text-align: center;
  margin: 10px auto;
  display: block;
}

.benefCard__label{
  font-weight: 900;
  font-size: 18px;
}

.is-orange .benefCard__label{ 
    color:#f17c20;
}
.is-orange span{
    background-color:#f17c20;
}


.is-green .benefCard__label{
    color:#4eba9a
}
.is-green span{
    background-color:#4eba9a
}

/* レスポンシブ */
@media (max-width: 980px){
  .benefRow:nth-child(odd),.benefRow:nth-child(even){
    flex-wrap:wrap; 
    grid-template-columns: 1fr;
  }
  .benefCard{
    flex-direction: column;
    justify-content: center;
    padding: 25px 0;
  }
  .benefSec__inner{
    padding: 0 15px;
    max-width: 540px;
    margin: 0 auto;
  }
}

/* venue-section.css */
.venueSec{
  background:#fff;
  padding: 30px 0;
}

.venueSec__inner{
  display:grid;
  width: 1230px;
  margin: 0 auto;
  grid-template-columns: 1fr 1.15fr; /* 右の地図が少し大きい */
  column-gap: 60px;
  align-items:stretch;
  padding: 15px 15px;
  max-width: 100%;
}

.venueSec__left{
  padding: 0 15px;
}

.venueSec__title{
  margin: 20px 0;
  font-family: "Mulish",Helvetica, Arial, Sans-Serif, serif;
  font-weight: 700;
  font-size: 3em;
  line-height: 1.143;
  color: rgb(43, 45, 66);
}

/* メタ情報（左：ラベル太字、右：値） */
/* .venueMeta{
} */
.venueMeta__row{
  display: grid;
  grid-template-columns: 85px 1fr;
  align-items: center;
  justify-content: center;
}
.venueMeta__row dt{
  font-family: Mulish,Helvetica, Arial, Sans-Serif, serif;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.4;
  color: rgb(43, 45, 66);
}
.venueMeta__row dd{
  color: rgb(43, 45, 66);
  font-size: 16px;
}

.venueSec__inner iframe{
  max-width: 100%;
  display: block;
  margin: 0 auto;
  width: 600px;
}

/* レスポンシブ */
@media (max-width: 980px){
  .venueSec__inner{
    grid-template-columns: 1fr;
    row-gap: 40px;
    padding: 0 15px;
  }
  .venueMap iframe{
    height: 320px;
  }
  .venueSec__left {
    margin: 0 auto;
    width: 100%;
    max-width: 720px;
}
}
@media (max-width: 680px){
      .venueSec__left {
        text-align: center;
      }
}


/* sponsors-section.css */
.sponSec{
  background:#f4f4f5;
  padding: 100px 0;
}

.sponSec__inner{
  max-width: 1230px;
  margin: 0 auto;
}

/* 見出し + 下の青線（短め） */
.sponSec__title{
  font-family: Mulish,Helvetica, Arial, Sans-Serif, serif;
  font-weight: bold;
  font-size: 1.8em;
  line-height: 1.25;
  margin:0 0 20px;
  color: rgb(43, 45, 66);
  text-align: center;
}
.sponSec__line{
  width: 150px;
  padding: 2px 0;
  margin: 30px auto 30px;
  background: rgb(47, 124, 255);
  max-width: 100%;
}

/* ロゴの4カラム */
.sponSec__grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-items: center;
  margin: 36px 0 36px;
}

/* 角丸の白カード */
.sponCard{
  width: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/11;
}

.sponCard img{
  max-width: 100%;
  width: 150px;
  display: block;
}

/* 後援テキスト */
.sponSec__support{
  font-family: Mulish,Helvetica, Arial, Sans-Serif, serif;
  font-size: 1.125em;
  line-height: 1.4;
  color: rgb(43, 45, 66);
}

/* レスポンシブ */
@media (max-width: 980px){
  .sponSec__inner{
    max-width: 960px;
    padding: 0 50px;
  }
}
@media (max-width: 680px){
  .sponSec__grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
    max-width: 540px;
    margin: 0 auto;
    width: 100%;
  }
  .sponSec__inner{
    padding: 0 15px;
  }
  .sponCard img {
    width: 100px;
  }
}

/* faq-section.css */
.faqSec{
  background:#fff;
  padding: 30px 0;
}

.faqSec__inner{
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 30px;
}

.faqSec__title{
  margin: 30px 0 30px;
  font-family: Mulish,Helvetica, Arial, Sans-Serif, serif;
  font-weight: 700;
  font-size: 3em;
  line-height: 1.143;
  text-transform: none;
  color: rgb(43, 45, 66);
  text-align: center;
}
.faqSec__line{
  width: 150px;
  padding: 2px 0;
  margin: 30px auto 30px;
  background: rgb(47, 124, 255);
  max-width: 100%;
}

.faqList{
  display:grid;
  row-gap: 60px;
  margin: 75px 0 0;
}

/* 背景グレーの角丸カード */
.faqItem{
  background: #f3f4f6;
  border-radius: 22px;
  padding: 55px 44px;
  display: grid;
  grid-template-columns: 430px 1fr;
  column-gap: 45px;
  align-items: center;
  aspect-ratio: 13/2;
}

.faqquestion{
    display: grid;
    grid-template-columns: 85px 1fr;
}

/* 左の ? 丸アイコン */
.faqItem span{
  width: 56px;
  aspect-ratio: 1/1;
  max-width: 100%;
  border-radius: 100px;
  background:#fff;
  display:grid;
  align-items:center;
  color:#fff;
}
.faqItem svg{
    margin: 0 auto;
    display: block;

}

/* 中央：質問（太字） */
.faqItem__q{
  font-family: Mulish,Helvetica, Arial, Sans-Serif, serif;
  font-weight: bold;
  font-size: 1.4em;
  line-height: 1.4;
  color: rgb(43, 45, 66);
}

/* 右：回答（細め） */
.faqItem__a{
  font-family: Mulish,Helvetica, Arial, Sans-Serif, serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
  color: rgb(43, 45, 66);
}

/* レスポンシブ */
@media (max-width: 1200px){
  .faqItem{
    grid-template-columns: 335px 1fr;
  }
  .faqSec__inner {
    max-width: 960px;
    padding: 0 50px;
  }
}
@media (max-width: 980px){
    .faqItem{
        padding: 30px 18px;
        grid-template-columns: 270px 1fr;
    }
}
@media (max-width: 680px){
  .faqItem{
    grid-template-columns: 1fr;
    row-gap: 22px;
  }
  .faqquestion{
    align-items: center;
    grid-template-columns: 65px 1fr;
  }
  .faqSec__inner{
    padding: 0 15px;
  }
}


/* organizer-section.css */
.orgSec{
  background: #fff;
  padding: 80px 0 40px;
}

.orgSec__inner{
  max-width: 1110px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 492px 1fr;
  column-gap: 15px;
  align-items: center;
  justify-content: center;
  padding: 0 100px;
}

/* 左の大きい「運営団体」 */
.orgSec__title{
  font-family: "Mulish",Helvetica, Arial, Sans-Serif, serif;
  font-weight: 700;
  font-size: 3em;
  line-height: 1.143;
  color: rgb(43, 45, 66);
}

/* 右の3行 */
.orgSec__list{
  display: grid;
  row-gap: 35px;
}

.orgItem{
  line-height: 1.8;
  color: rgba(43,45,66,1);
  align-items: center;
  font-size: 16px;
  display: grid;
  grid-template-columns: 34px 1fr;
}

.orgItem__text a{
  color:#2a2d3f;
  text-decoration:none;
}
.orgItem__text a:hover{
  text-decoration:underline;
  text-underline-offset: 3px;
}

/* レスポンシブ */
@media (max-width: 980px){
  .orgSec__inner{
    grid-template-columns: 1fr;
    row-gap: 16px;
    padding: 0 50px;
  }
}

@media(max-width:580px){
    .orgSec__inner{
        padding: 0 30px;
    }
}