@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Asap');
@import url('https://fonts.googleapis.com/css?family=Catamaran');
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
/* --------------------------------------------------------------------- */


/* base */


/* --------------------------------------------------------------------- */

*,
html {
  margin: 0px;
  padding: 0px;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  margin: 0px;
  padding: 0px;
  line-height: 100%;
  font-family:"Noto Sans Myanmar","ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  -webkit-text-size-adjust: none;
  background: #ffffff;
  color: black;
}

html, body {
  overflow-x: hidden;
}

/* -------- 順番にふわっと出てくる --------*/
.delay-time01{
animation-delay: 0.2s;
}

.delay-time02{
animation-delay: 0.4s;
}

.delay-time03{
animation-delay: 0.6s;
}

.delay-time04{
animation-delay: 0.8s;
}

.delay-time05{
animation-delay: 1.0s;
}

.delay-time06{
animation-delay: 1.2s;
}

.delay-time07{
animation-delay: 1.4s;
}

.delay-time08{
animation-delay: 1.6s;
}

.delay-time09{
animation-delay: 1.8s;
}

.delay-time10{
animation-delay: 2s;
}

.delay-time11{
animation-delay: 2.2s;
}


.wrapper{
    overflow: hidden;
}
  
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger,
.fadeInTrigger,
.flipLeftTopTrigger {
opacity: 0;
}


/* その場で */
.fadeIn{
animation-name:fadeInAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 下から */
.fadeUp{
animation-name:fadeUpAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* 左上へ */
.flipLeftTop{
  animation-name: flipLeftTopAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity:0;
}
  
  @keyframes flipLeftTopAnime{
    from {
     transform: translate(-20px,80px) rotate(-15deg);
       opacity: 0;
    }
  
    to {
     transform: translate(0,0) rotate(0deg);
      opacity: 1;
    }
}



/* --------------------------共通--------------------------------- */
.midashi-2 {
  width:90%;
  max-width:1200px;
  right:0;
  left:0;
  margin:auto;
}

.midashi-3 {
  width:100%;
  max-width:1200px;
  right:0;
  left:0;
  margin:auto;
}
@media screen and (max-width:757px) {
	.midashi-3 { width:90%; }
}

.midashi-logo {
  display: inline-block;
  width:50px;
}
@media screen and (max-width:757px) {
	.midashi-logo { width:40px; }
}

.midashi-moji {
  display: inline-block;
  margin-left:20px;
  margin-bottom: -20px;
}
@media screen and (max-width:757px) {
	.midashi-moji { margin-left:10px; }
}

.midashi-moji-1 {
  font-size:50px;
  font-weight: bold;
  line-height:40px;
  color:#004099;
  margin-bottom:0;
}
@media screen and (max-width:757px) {
	.midashi-moji-1 { font-size:20px; line-height:28px; }
}

.midashi-moji-2 {
  font-size:15px;
  font-weight: bold;
  line-height:30px;
  color:#4C4C4D;
}


.gray {
  background-color: #EFEFEF;
}


/* --------------------------First view--------------------------------- */
.firstview {
  position: relative;
  background-color: #fff;
  padding-bottom:0;
  width:100%;
}
@media screen and (max-width:757px) {
	.firstview { height:auto; }
}

.firstview-narabi {
  width:90%;
  max-width:1200px;
  margin:0 auto;
}

.firstview-header {
  display: flex;                /* 横並び */
  justify-content: space-between;/* 左右に配置 */
  align-items: center;          /* 縦位置を中央揃え */
  width: 100%;                  /* 画面幅いっぱい */
  box-sizing: border-box;
}
@media screen and (max-width:757px) {
  .firstview-header {
    flex-direction: column;     /* ← flexのまま縦並び */
    justify-content: flex-start;/* 上から順に配置 */
    align-items:flex-start;        /* 中央に揃える */
  }
}

.firstview-logo {
  margin-top:30px;
  height:140px;
  width:auto;
  object-fit: cover;
}
@media screen and (max-width:1030px) {
	.firstview-logo {height:100px; }
}
@media screen and (max-width:757px) {
	.firstview-logo { margin-top:20px; width:200px; height:auto; }
}

.firstview-btn {
  margin-top:50px;
  background: #E60013;
  color: #fff;
  padding: 20px 35px 15px 35px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
  font-size:20px;
  font-weight: normal;
  text-align: center;
  line-height:34px;
    transition: transform .25s ease, box-shadow .25s ease;
}
@media screen and (max-width:757px) {
	.firstview-btn { margin-top:20px; padding: 10px 10px 8px 10px; font-size:16px; width:100%; line-height:25px; }
}
.firstview-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
    opacity: 1;
}

.firstview-btn span {
  font-size:26px;
  font-weight: bold;
}
@media screen and (max-width:757px) {
	.firstview-btn span { font-size:20px; }
}


/* スライダー */
.slider-outer{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible;            /* 外にはみ出すのを許可 */
  position: relative;
  top:30px;
}
@media screen and (max-width:757px) {
	.slider-outer { display:none; }
}

.slider-outer-sp{
  display:none;
}
@media screen and (max-width:757px) {
	.slider-outer-sp { 
    display:block;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible;            /* 外にはみ出すのを許可 */
  position: relative;
  top:30px;
   }
}

/* スライダー枠 */
.swiper.js-main-swiper{
  width: 100%;
  position: relative;
  box-sizing: border-box;               
  overflow: visible;
}

.swiper.js-main-swiper .swiper-slide{
  width: 100%;     /* 中央スライドが親の見た目幅と一致 */
  overflow: hidden;
}

.swiper.js-main-swiper .swiper-wrapper{
  overflow: visible;            /* チラ見えを切らない */
}

/* 画像のフィット */
.swiper.js-main-swiper img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ページネーション点 */
.swiper-pagination-bullet {
  background: rgba(255,255,255,.9);
  opacity: .8;
}
.swiper-pagination-bullet-active {
  background: #fff;
}

/* 矢印の色（必要なら） */
.swiper-button-prev,
.swiper-button-next {
  color: #fff;
  text-shadow: 0 0 8px rgba(0,0,0,.5);
}



.date {
  margin-top: 60px !important;
}
@media screen and (max-width:757px) {
	.date { margin-top: 50px !important; }
}

.firstview-date {
    width:100%;
  object-fit: cover;
}
@media screen and (max-width:757px) {
	.firstview-date { height:auto; }
}


/* -------------------------concept--------------------------------- */
.concept {
  width:90%;
  max-width:1200px;
  right:0;
  left:0;
  margin:auto;
  padding-top:50px;
  margin-top:80px;
}
@media screen and (max-width:757px) {
	.concept { padding-top:0px; margin-top:50px; }
}

.concept-moji-a {
  width:100%;
  margin-top:40px;
}

.concept-moji-1 {
  font-size:18px;
  line-height:40px;
  color:#4C4C4D;
  text-align: justify;
  font-weight: bold;
}
@media screen and (max-width:757px) {
	.concept-moji-1 { font-size:15px; line-height:30px; }
}


.concept-moji-b {
  width:100%;
}

.concept-moji-2 {
  font-size:25px;
  line-height:45px;
  font-weight: bold;
  color:#4C4C4D;
  text-align: justify;
  margin-top:40px;
}
@media screen and (max-width:757px) {
	.concept-moji-2 { font-size:22px; line-height:38px; }
}

.concept-moji-3 {
  font-size:16px;
  line-height:35px;
  color:#4C4C4D;
  text-align: justify;
  margin-top:20px;
}
@media screen and (max-width:757px) {
	.concept-moji-3 { font-size:15px; line-height:30px; }
}

.concept-moji-3-b {
  line-height:35px;
  color:#4C4C4D;
  text-align: justify;
  margin-top:20px;

  font-weight:bold;
  font-size:21px;
  font-style: oblique;
  font-family: 'Noto Sans JP', sans-serif;
  display: inline-block;
  transform: skew(-22deg);
  font-style: normal;
}
@media screen and (max-width:757px) {
	.concept-moji-3-b{ font-size:15px; }
}

.concept-moji-3-b2 {
  color:#4C4C4D;
  text-align: justify;
  font-weight: normal;
  font-size: 15px;
  margin-top:10px;
}


/* コンテナー */
.container {
  display: flex;
  justify-content: center;   /* 中央揃え */
  flex-wrap: wrap;           /* スマホで折り返し */
  gap: 25px;                 /* ボックス間の余白 */
  margin: 80px auto;
  max-width: 1200px;
}
@media screen and (max-width:757px) {
	.container {gap:8px; margin: 50px auto; }
}

.contents {
  display: block;            /* aタグをブロック化して全体クリック可 */
  width: 281px;              /* ボックス幅（調整可） */
  background-color: #EFEFEF;
  border-radius: 20px;
  padding: 25px 25px;
  text-align: center;
  position: relative;
  text-decoration: none;     /* リンクの下線除去 */
  color: #000;
  transition: transform .25s ease, box-shadow .25s ease;
  text-align: left;           /* ←文字を左寄せ */
  position: relative;         /* ★画像を中で絶対配置するため */
  overflow: hidden;           /* 画像がはみ出さないように */
}
@media screen and (max-width:757px) {
	.contents { width:46%; padding:15px; }
}
.contents:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
    opacity: 1;
}

.container-moji {
  position: relative;
    z-index: 10;
}

.contents-moji-1 {
  font-family: din-condensed, sans-serif;
  font-size: 25px;
  margin-bottom: 3px;
    color: #4C4C4D;
}
@media screen and (max-width:757px) {
	.contents-moji-1 { font-size: 20px; line-height: 1.2; }
}

.contents-moji-2 {
  color: #004099;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
}
@media screen and (max-width:757px) {
	.contents-moji-2 { font-size: 14px; letter-spacing: -2px; }
}

.contents-moji-3 {
  font-size: 15px;
  line-height: 1.5;
  color: #4C4C4D;
}
@media screen and (max-width:757px) {
	.contents-moji-3 { font-size: 14px; }
}

.contents-img {
  position: absolute;   /* 親を基準に絶対配置 */
  right: 20px;          /* 右端からの距離 */
  width: auto;          /* サイズは調整可 */
  height: 80%;
  pointer-events: none; /* 画像上もクリック可能にする */
  z-index: 1;
}



/* 土台 */
.ikf2025-hero{
  position: relative;
  width: 100%;
  max-width: 1200px;     /* 任意：レイアウトに合わせて */
  margin: 0 auto;
  overflow: hidden;      /* 角丸に画像を沿わせる */
    margin-bottom:130px;
}
@media screen and (max-width:757px) {
	.ikf2025-hero { margin-bottom:130px; overflow: visible;  }
}


/* 背景画像 */
.contents-ikf2025{
  display: block;
  width: 100%;
  height: auto;
}

/* 赤いボタン（中央下に重ねる） */
.ikf2025-btn{
  position: absolute;
  left: 50%;
  bottom: 70px;                 /* ボタンの上下位置 */
  transform: translateX(-50%);
  display: inline-block;
   border-radius: 15px;
  background: #E60013;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
  z-index: 2;                   /* グラデより前面 */
  transition: transform .25s ease, box-shadow .25s ease;
  width:365px;
  padding-top:35px;
  padding-bottom:30px;
  text-align: center;
  font-size:23px;
}
@media screen and (max-width:757px) {
	.ikf2025-btn { position:relative; bottom: -30px; width:90%;  }
}
.ikf2025-btn:hover {
  transform: translateX(-50%) translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,.85);
    opacity: 1;
}

.ikf2025-btn:focus-visible{
  outline: 3px solid #fff;
  outline-offset: 3px;
}




/* -------------------------program--------------------------------- */
.program {
  width:90%;
  max-width:1200px;
  right:0;
  left:0;
  margin:auto;
  padding-top:150px;
  padding-bottom:130px;
}
@media screen and (max-width:757px) {
	.program { width:100%; padding-top:80px; padding-bottom:30px; }
}


.program-siro {
  background: #fff;
  margin-top: 80px;
  padding: 100px 70px;
}
@media (max-width: 757px) {
  .program-siro { padding: 40px 20px; margin:20px; margin-top: 50px; }
}

.program-siro:last-child {
  margin-bottom: 80px;
}

.title-wrap {
  text-align: center;           /* ★ 親で中央寄せ */
}

.program-title {
  font-family: din-condensed, sans-serif;
  font-size: 80px;
  text-align: center;
  color: #004099;
  margin-bottom: 20px;
  width:auto;
  display: inline-block;          /* ★ テキストの幅にあわせる */
  border-bottom: solid 4px #004099;
  padding-bottom: 4px;            /* 文字と線の間隔（お好み） */
}
@media (max-width: 757px) {
  .program-title { font-size:35px; border-bottom: solid 3px #004099; }
}

.program-subtitle {
  text-align: center;
  font-size: 35px;
  font-weight: bold;
  line-height: 50px;
  margin-top:30px;
  color: #4C4C4D;
}
@media (max-width: 757px) {
  .program-subtitle { font-size:23px; margin-top:20px; line-height: 32px; }
}

.program-date {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  color: #004099;
}
@media (max-width: 757px) {
 .program-date { font-size:20px; }
}

.program-date span {
  font-size: 30px;
}
@media (max-width: 757px) {
 .program-date span { font-size:18px; }
}

.program-moji-1 {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  line-height: 35px;
  margin-top:30px;
  color: #4C4C4D;
}
@media (max-width: 757px) {
 .program-moji-1  { text-align: justify; line-height: 32px; }
}

/* メイン写真 */
.program-photo img {
  width: 80%;
  height: auto;
  margin-top:40px;
  margin-bottom: 80px;
}
@media (max-width: 757px) {
 .program-photo img { width:100%; margin-top:30px; margin-bottom: 50px; }
}

/* テキスト */
.program-moji-2 {
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 10px;
  font-size:30px;
  color: #4C4C4D;
}
@media (max-width: 757px) {
 .program-moji-2 { font-size:20px; }
}
.program-moji-2 span {
  color: #003f98;
  margin-right:5px;
}

.program-moji-3 {
  line-height: 2;
  font-size:16px;
  color: #4C4C4D;
  text-align: justify;
}
.program-moji-3 span {
  font-weight: bold;
}

.program-moji-4 {
  line-height: 2;
  font-size:30px;
  color: #4C4C4D;
  font-weight: bold;
  margin-top:30px;
}
@media (max-width: 757px) {
 .program-moji-4 { font-size:23px; line-height:1.7; }
}

.program-moji-5 {
  line-height: 2;
  font-size:25px;
  color: #4C4C4D;
  font-weight: bold;
  margin-top:80px;
  margin-bottom:20px;
}
@media (max-width: 757px) {
 .program-moji-5 { font-size:20px; line-height:1.5; margin-top:50px;}
}

.program-moji-6 {
  line-height: 2;
  font-size:16px;
  color: #4C4C4D;
  text-align: justify;
  margin-top:50px;
  margin-bottom:80px !important;
}
@media (max-width: 757px) {
 .program-moji-6 { margin-top:30px; margin-bottom:60px; }
}


/* 4カード横並び */
.program-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 50px;
  margin-bottom: 60px;
}
.card {
  position: relative;
  flex: 1 1 calc(50% - 20px);
  min-width: 260px;
  border-radius: 12px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  /* ↓ここがポイント */
  display: flex;                     /* 子を中央にまとめる */
  flex-direction: column;
  align-items: center;               /* 横中央 */
  justify-content: center;           /* 縦中央 */
  padding: 40px;
  height: 240px;                     /* 共通の高さを指定（調整可） */
}
@media (max-width: 1030px) {
 .card { padding:  20px; padding-top:40px;  padding-bottom:40px; height:350px;  }
}
@media (max-width: 757px) {
 .card { padding: 20px; height: 280px; }
}

.card-bg {
  background-size: cover;
  background-position: center;
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  transition: transform .3s ease;
}

.card-text-1 {
  position: relative;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  line-height: 1.5;
  font-size: 25px;
  z-index: 1;
  margin-top:10px;
}
@media (max-width: 1030px) {
 .card-text-1 { font-size:18px; }
}


.card-text-2 {
  position: relative;
  text-align: justify;
    font-size: 16px;
  z-index: 1;
  margin-top:20px;
}
@media (max-width: 1030px) {
 .card-text-2 { margin-top:10px; font-size: 15px; }
}

/* ボタン */
.program-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top:20px;
}
@media (max-width: 757px) {
 .program-buttons {display: block; }
}


.program-btn {
  display: inline-block;
  border-radius: 15px;
  background: #004099;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
  z-index: 2;                   /* グラデより前面 */
  transition: transform .25s ease, box-shadow .25s ease;
  width:365px;
  padding-top:35px;
  padding-bottom:30px;
  text-align: center;
  font-size:23px;
}
@media (max-width: 757px) {
 .program-btn { width:100%; margin-bottom:20px; }
}
.program-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,.85);
    opacity: 1;
}


.award-oubo {
  background-color: #EFEFEF;
  padding:40px;
}
@media (max-width: 757px) {
 .award-oubo { padding:20px; }
}

.award-oubo-moji-1 {
  font-size: 30px;
  text-align: center;
  font-weight: bold;
    color: #4C4C4D;
}

.award-oubo-moji-2 {
  font-size: 16px;
  text-align: center;
    color: #4C4C4D;
}



/* --トークセッション-- */
:root{
  --blue: #004099;
  --gray-plate: #EFEFEF;
  --text: #4C4C4D;
  --muted: #6b6b6b;
}

.talk{
  width: 100%;
  margin: 0 auto;

}

.session{ 
  margin: 36px 0 80px;
}
@media (max-width: 757px) {
 .session { margin: 36px 0 70px; }
}

.session:last-child { 
  margin: 36px 0 30px;
}

.session-no{
  color: var(--blue);
  font-weight: 700;
  margin: 0 0 12px;
  font-size:20px;
}
@media (max-width: 757px) {
 .session-no { font-size:16px; margin: 0 0 8px; }
}

.session-title{
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight:bold;
  color: var(--text);
  font-size:30px;
  margin-bottom:40px;
  line-height: 1.7;
}
@media (max-width: 757px) {
 .session-title { font-size:20px; line-height: 1.7; margin-bottom:20px; }
}

/* グレー帯 Stay tuned! */
.staytuned{
  background: var(--gray-plate);
  padding:50px 30px 30px 30px;
  text-align: center;
}
@media (max-width: 757px) {
 .staytuned { padding:50px 0px 30px 0px; }
}

.staytuned-main{
  font-family: din-condensed, sans-serif;
  font-size:80px;
  font-weight: normal;
  color: #D3D3D3;
}
@media (max-width: 757px) {
 .staytuned-main { font-size:50px; }
}

.staytuned-sub{
  margin-top: 25px;
  color: #4C4C4D;
  font-weight: 700;
  font-size: 16px;
  position: relative;
}
@media (max-width: 757px) {
 .staytuned-sub{ font-size: 13px; }
}

.staytuned-sub span{ 
  padding: 0 16px; 
  position: relative; 
}
@media (max-width: 1030px) {
 .staytuned-sub span{ padding: 0px; }
}

.staytuned-sub::before,
.staytuned-sub::after{
  content:"";
  display:inline-block;
  width: 120px; height: 1px;
  background: #4C4C4D;
  vertical-align: middle;
  margin: 0 12px;
}
@media (max-width: 757px) {
 .staytuned-sub::before,
.staytuned-sub::after { width:30px; }
}

/* 登壇者ブロック */
.speaker{
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 22px;
}
@media (max-width: 757px) {
 .speaker { margin-top:10px; gap: 30px; }
}

.speaker-thumb{
  flex: 0 0 180px;
  width:300px;
  aspect-ratio: 1/1;
  object-fit: cover;
  background: var(--gray-plate);
  border-radius: 4px;
}
.speaker-body{ flex: 1; }
.speaker-heading{
  color:#4C4C4D;
  font-weight: 700;
  margin-bottom:20px;
    font-size: 23px;
}
@media (max-width: 757px) {
 .speaker-heading{ font-size: 20px; }
}

.speaker-text{
  color: #4C4C4D;
  line-height: 1.9;
  margin: 0;
  text-align: justify;
  font-size: 16px;
}

/* スマホ：縦積み */
@media (max-width: 1030px){
  .speaker{ flex-direction: column; }
  .speaker-thumb{ width: 100%; }
}


/*--------ギャラリー--------*/
.gallery {
  width: 100%;
  margin: 0 auto;
  margin-top:50px;
}

.gallery-main {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.gallery-main img {
  width: 100%;
  display: none;
  object-fit: cover;
}
.gallery-main img.active {
  display: block;
}

.gallery-thumbs {
  display: flex;
  justify-content: center;
  gap: 2%;
  margin-top: 20px;
}
.gallery-thumbs img {
  width: 23.5%;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity .3s;
}
.gallery-thumbs img.active,
.gallery-thumbs img:hover {
  opacity: 1;
}



/* ボタン */
.movie-cta {
  display: block;
  border-radius: 15px;
  background: #004099;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
  z-index: 2;                   /* グラデより前面 */
  transition: transform .25s ease, box-shadow .25s ease;
  width:365px;
  padding-top:35px;
  padding-bottom:30px;
  text-align: center;
  font-size:23px;
  margin:0 auto;
  margin-top:40px;
}
@media screen and (max-width:757px){
  .movie-cta { width:100%; }
}
.movie-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,.45);
    opacity: 1;
}



/* ------------------------MainStage--------------------------------- */
.mainstage {
  width:90%;
  max-width:1200px;
  right:0;
  left:0;
  margin:auto;
  margin-top:150px;
  padding-bottom:130px;
}
@media screen and (max-width:757px) {
	.mainstage { width:100%; margin-top:80px; padding-bottom:50px; }
}


.venue { 
  padding: 40px 16px; 
  margin-top:80px;
}
@media (max-width: 757px) {
 .venue{ margin-top:30px; }
}

.venue-inner { 
  max-width: 100%; 
  margin: 0 auto; 
  text-align: center; 
}

.venue-title {
  font-size:45px;
  font-weight: 800;
  color: #4C4C4D;
  margin: 0 0 15px;
}
@media (max-width: 757px) {
.venue-title{ font-size:28px; margin: 0 0 10px; }
}

.venue-sub {
  color: #004099;
  font-size:34px;
  font-weight: bold;
  margin: 0 0 10px;
}
@media (max-width: 757px) {
.venue-sub{ font-size:21px; }
}

.venue-logos {
  align-items: center;
    margin-bottom:10px;
}

.venue-logo { 
  height: auto; 
  width: 480px; 
  object-fit: cover;
}
@media (max-width: 757px) {
.venue-logo { width: 100%;   }
}


.btn {
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s ease, box-shadow .2s ease, color .2s ease;
}
.btn-primary {
  display: inline-block;
  border-radius: 15px;
  background: #004099;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
  z-index: 2;                   /* グラデより前面 */
  transition: transform .25s ease, box-shadow .25s ease;
  width:480px;
  padding-top:35px;
  padding-bottom:30px;
  text-align: center;
  font-size:23px;
}
@media (max-width: 757px) {
.btn-primary { width: 100%;   }
}
.btn-primary:hover { 
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,.45);
  opacity: 1;
}

.btn-outline {
  color: #004099;
  border: 2px solid #004099;
  background: #fff;
  display: inline-block;
  border-radius: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
  z-index: 2;                   /* グラデより前面 */
  transition: transform .25s ease, box-shadow .25s ease;
  width:365px;
  padding-top:35px;
  padding-bottom:30px;
  text-align: center;
  font-size:23px;
}
@media (max-width: 757px) {
.btn-outline { width: 100%;  font-size:20px;  }
}
.btn-outline:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,.45);
    opacity: 1;
}

.venue-note {
  color: #4C4C4D;
  line-height: 1.9;
  font-size: 16px;
  margin: 30px auto 40px;
}
@media (max-width: 757px) {
.venue-note{ text-align: justify;}
}

.map-wrap {
  margin-top:80px;
  overflow: hidden;
  /* レスポンシブ比率 */
  aspect-ratio: 16/7;
}
@media (max-width: 757px) {
.map-wrap { margin-top:50px; aspect-ratio: 3/2; }
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}




/* ------------------------KAiGO PRiDE WEEK 2026--------------------------------- */
.week {
  width:90%;
  max-width:1200px;
  right:0;
  left:0;
  margin:auto;
  padding-top:150px;
  padding-bottom:130px;
}
@media screen and (max-width:757px) {
	.week { width:100%; padding-top:80px; padding-bottom:100px; }
}


.week-moji {
  width:100%;
}
@media screen and (max-width:757px) {
	.week-moji { width:90%; margin: 0 auto; }
}

.week-moji-2 {
  font-size:25px;
  line-height:45px;
  font-weight: bold;
  color:#4C4C4D;
  text-align: justify;
  margin-top:80px;
}
@media screen and (max-width:757px) {
	.week-moji-2 { font-size:22px; margin-top:50px; }
}

.week-moji-3 {
  font-size:16px;
  line-height:35px;
  color:#4C4C4D;
  text-align: justify;
  margin-top:40px;
}
@media screen and (max-width:757px) {
	.week-moji-3 {  margin-top:20px; }
}

.week-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top:50px;
}
@media screen and (max-width:757px) {
	.week-buttons { display: block; text-align: center; }
}

.week-btn {
  display: inline-block;
  border-radius: 15px;
  background: #004099;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
  z-index: 2;                   /* グラデより前面 */
  transition: transform .25s ease, box-shadow .25s ease;
  width:365px;
  padding-top:35px;
  padding-bottom:30px;
  text-align: center;
  font-size:23px;
}
@media screen and (max-width:757px) {
	.week-btn { width:90%; margin-bottom:20px; }
}
.week-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,.45);
    opacity: 1;
}


@media screen and (max-width:1030px) {
  .week-img-wrap { 
      overflow-x: auto;      /* ← 横スクロールを許可 */
  overflow-y: hidden;    /* 縦スクロールは不要なら隠す */
  -webkit-overflow-scrolling: touch; /* iOSで慣性スクロール */
   }
}
.week-img {
  display: block;
  width: 100%;
  margin-top: 100px;
}
@media screen and (max-width:1030px) {
  .week-img { margin-top:50px; min-width:800px; }
}




/* -------------------------Support--------------------------------- */
.support {
  width:90%;
  max-width:1200px;
  right:0;
  left:0;
  margin:auto;
  margin-top:150px;
  padding-bottom:130px;
}
@media screen and (max-width:757px) {
	.support { width:100%; margin-top:80px; padding-bottom:50px; }
}


:root{
  --blue: #004099;
  --text: #4C4C4D;
  --muted:#4C4C4D;
}

/* セクション全体 */
.sponsor-hero{
  padding: 48px 20px 64px;
  text-align: center;
  color: #4C4C4D;
  margin-top:40px;
}
.sponsor-inner{
  width:100%;
  margin: 0 auto;
}

/* 英字の小見出し（下線つき） */
.support-top-eyebrow{
  font-weight:bold;
  font-size:32px;
  color: #004099;
  display: inline-block;          /* ★ テキストの幅にあわせる */
  border-bottom: solid 3px #004099;
  padding-bottom:0px;            /* 文字と線の間隔（お好み） */
  line-height: 1.2;
  margin-bottom:25px;
}
@media screen and (max-width:757px) {
	.support-top-eyebrow { font-size:18px; border-bottom: solid 2px #004099; margin-bottom:15px; }
}


/* 日本語の大見出し */
.support-top-title{
  font-weight:bold;
  font-size:32px;
  color: #004099;
}
@media screen and (max-width:757px) {
	.support-top-title{ font-size:18px; }
}

/* リード文 */
.support-top-lead{
  font-size:28px;
  line-height: 1.6;
  font-weight:bold;
  margin: 50px 0 40px;
}
@media screen and (max-width:757px) {
	.support-top-lead{ font-size:18px; text-align: left; margin: 50px 0 30px; }
}

/* 説明テキスト */
.support-top-desc p{
  margin: 0 0 12px;
  line-height: 1.95;
  color: #4C4C4D;
  font-size: 16px;
    font-weight:bold;
    margin-bottom:50px;
}
@media screen and (max-width:757px){
  .support-top-desc p{ font-size: 15px; font-weight:normal; text-align: justify; margin-bottom:30px; }
}

/* ボタン */
.support-top-cta{
  display: inline-block;
  border-radius: 15px;
  background: #004099;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
  z-index: 2;                   /* グラデより前面 */
  transition: transform .25s ease, box-shadow .25s ease;
  width:365px;
  padding-top:35px;
  padding-bottom:30px;
  text-align: center;
  font-size:23px;
}
@media screen and (max-width:757px){
  .support-top-cta{ width:100%; }
}
.support-top-cta:hover{
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,.45);
    opacity: 1;
}



.support-narabi {
  margin-top:50px;
}
@media screen and (max-width:757px) {
	.support-narabi { margin-top:50px; }
}

.support-section {
  padding: 40px 20px;
}
@media screen and (max-width:757px) {
	.support-section { padding: 30px 20px;}
}

.support-section-2 {
  padding: 40px 20px;
  width:48%;
  margin-right:3.5%;
  display: inline-block;
}
@media screen and (max-width:757px) {
	.support-section-2 { padding: 30px 20px; display:block; margin-right:0; width:100%;}
}
.support-section-2:last-child {
  margin-right:0;
}

.support-divider {
  border-top: 1px solid #4C4C4D;
  margin: 30px auto;
  max-width: 100%;
}
@media screen and (max-width:757px) {
	.support-divider { margin:10px auto; max-width:90%; }
}

.support-title {
  color: #4C4C4D;
  margin-bottom: 20px;
  text-align: center;
  font-size:25px;
  font-weight: bold;
}
@media screen and (max-width:757px) {
	.support-title { font-size:22px; margin-bottom:10px; }
}

.support-logo-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top:30px;
}
@media screen and (max-width:757px) {
	.support-logo-container { margin-top:15px; }
}

.support-logo {
  height:200px;
  width: auto;
  object-fit: cover;
  margin:30px;
  vertical-align: middle;
}
@media screen and (max-width:757px) {
	.support-logo { height:100px; margin:15px; }
}

.support-logo-2 {
  height:130px;
  width: auto;
  object-fit: cover;
  margin:20px;
  vertical-align: middle;
}
@media screen and (max-width:757px) {
	.support-logo-2 { height:70px; margin:15px; }
}

.support-logo-3{
  height:80px;
  width: auto;
  object-fit: cover;
  margin:20px;
  vertical-align: middle;
}
@media screen and (max-width:757px) {
	.support-logo-3 { height:50px; margin:15px; }
}




/* -------------------------Chairman’s Message--------------------------------- */
.message {
  width:90%;
  max-width:1200px;
  right:0;
  left:0;
  margin:auto;
  padding-top:150px;
  padding-bottom:130px;
}
@media screen and (max-width:757px) {
	.message { width:100%; padding-top:80px; padding-bottom:50px; }
}



.aboutus-profile-hako {
  margin-bottom:80px;
  margin-top:80px;
}
@media screen and (max-width:757px) {
	.aboutus-profile-hako { width:90%; margin: 0 auto; margin-bottom:50px; margin-top:50px;}
}


.aboutus-profile-left {
  display: inline-block;
  width:24%;
  vertical-align: top;
}
@media screen and (max-width:757px) {
	.aboutus-profile-left { display:block; width:50%; right:0; left:0; margin:auto; }
}

.aboutus-profile-img {
  
}

.aboutus-profile-right {
  display: inline-block;
  width:75%;
  padding-left:3%;
  vertical-align: top;
}
@media screen and (max-width:757px) {
	.aboutus-profile-right { display:block; width:100%; padding-left:0; margin-top:30px; }
}

.aboutus-profile-moji-1 {
  font-size:15px;
  color: #4C4C4D;
  text-align: justify;
  margin-bottom:2px;
}
@media screen and (max-width:757px) {
	.aboutus-profile-moji-1 { font-size:14px; }
}

.aboutus-profile-moji-2 {
  font-size:30px;
  color: #4C4C4D;
  font-weight: bold;
  text-align: justify;
  margin-bottom:10px;
}

.aboutus-profile-moji-3 {
  font-size:20px;
  color: #4C4C4D;
  text-align: justify;
    font-weight: bold;
  margin-bottom:15px;
}
@media screen and (max-width:757px) {
	.aboutus-profile-moji-3 { margin-bottom:10px; }
}

.aboutus-profile-moji-4 {
  font-size:16px;
  color:#4C4C4D;
  line-height: 1.9;
  text-align: justify;
}



/* -------------------------About Us--------------------------------- */
.aboutus {
  width:90%;
  max-width:1200px;
  right:0;
  left:0;
  margin:auto;
  padding-top:150px;
  padding-bottom:200px;
}
@media screen and (max-width:757px) {
	.aboutus { width:100%; padding-top:80px; padding-bottom:80px; }
}

.aboutus-moji {
  font-size:16px;
  line-height:1.9;
  color:#4C4C4D;
  text-align: justify;
  margin-top:80px;
}
@media screen and (max-width:757px) {
	.aboutus-moji { width:90%; margin: 0 auto; margin-top:50px; }
}

.aboutus-wrap {
  text-align: center;   /* ★ これで中身を中央揃え */
}

.aboutus-img {
  margin: 0 auto;
  margin-top:80px;
  width: 40%;
}
@media screen and (max-width:757px) {
	.aboutus-img { width:60%; margin-top:50px; }
}



/* -------------------------contact--------------------------------- */
.contact {
  width:90%;
  max-width:1200px;
  right:0;
  left:0;
  margin:auto;
  padding-top:150px;
  padding-bottom:150px;
}
@media screen and (max-width:757px) {
	.contact { padding-top:80px; padding-bottom:100px; }
}

.contact-form-narabi {
  margin-top:80px;
}