@charset "utf-8";

/* 固定 */
*, article, aside, canvas, details, figcaption, figure,
header, footer, hgroup, nav, section, summary {
  margin: 0;
  padding: 0;
}

/* 固定 */
html,body{ height:100%;}

/* 背景（一部適宜書き換え） */
body {
  line-height: 1.7;/* 固定 */
  color: #333333;/* 固定 */
  font-family: 'メイリオ', 'Meiryo',"Hiragino Kaku Gothic Pro", Arial, sans-serif;
  font-size: 93%;/* 固定（日本語ページは90%） */
  background:#FFFFFF;/* 適宜書き換え */
}

/* 画像全体 */
img {
  border: 0;
  vertical-align: top;
  max-width: 100%;
}

/* 見出し */
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

/* リスト */
ol, ul, li {
  list-style-image: none;
  list-style-position: outside;
  list-style-type: none;
}

/* テーブル */
table {
  border-collapse: collapse;
}

/* HTML5, 5.1 で追加 */
article, aside, canvas, details, figcaption, figure, footer,
header, hgroup, main, menu, nav, picture, section, summary {
  display: block;
}

/* コンテンツ全体 */
#contents_all {
  width:100%;
  height:auto !important;
  height:100%;
  background:#FFFFFF;
  margin:0 auto;
  min-height:684px;
  position: relative;
}

/* ヘッダー */
.background {
  background: #333333;
  position: sticky;
  top: 0;
  z-index: 3;
}
header {

}
header h1 {
  width: 100px;
  background: #cf121b;
}
.header_wrapper {
  max-width: 1400px;
  margin: auto;
  display: flex;
  height: 60px;
}
/******/

/******/

/* コンテンツ */
#contents {
  width: 100%;
}
#contents.page{
  background: url(../images/bg_bottom_hero.png) repeat-x bottom;
}

/* クリアフィクス */
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

/* メニュー */
/*ハンバーガー ボタン*/
.gnav_btn {
  display: none;
}

/* グローバル メニュー */
.gnav {
  /*transform: translateX(100%); /* 画面外へ隠す */
  /* transition: transform 0.3s ease; */
}
.gnav.active {
  /* transform: translateX(0); */
}
.gnav ul {
  display: flex;
  justify-content: flex-start;
  margin:0 auto 0 1em;
  position: relative;
}
/*2階層目以降は横並びにしない*/
.gnav ul ul {
  display: block;
}
.gnav ul li {
  position: relative;
}

.gnav > ul > li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  position: relative;
  text-align: center;
  padding: 2px 5px;
  box-sizing: border-box;
  font-size: 12px;
  font-weight: bold;
}
.gnav > ul > li:last-child {
  box-sizing: border-box;
}
.gnav > ul.menu > li > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 40px;
  line-height: 1.1;
  transition:all .3s;
  text-decoration: none;
  padding: 2px;
  box-sizing: border-box;
  color: #FFFFFF;
  padding: 5px;
}
.gnav > ul.menu > li span {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 40px;
  line-height: 1.1;
  transition:all .3s;
  text-decoration: none;
  padding: 2px;
  box-sizing: border-box;
  color: #FFFFFF;
  padding: 5px;
  cursor: pointer;
}
.gnav > ul.menu > li span.on,
.gnav > ul.menu > li span:hover,
.gnav > ul.menu > li > a.on,
.gnav > ul.menu > li > a:hover {
  background:#cf121b;
  min-height: 16px;
  box-sizing: border-box;
}

/*下の階層を持っているulの指定*/
.gnav ul > li.has-child {
  display: flex;
  line-height: 1.1;
  /* align-items: center; */
  /* justify-content: center; */
  /* background: #000000; */
  color: #FFFFFF;
  position: relative;
}
.gnav ul > li.has-child:before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 10px;
  width:0;
  height:0;
  border-style:solid;
  border-width: 5px 3.5px 0 3.5px;
  border-color: #FFFFFF transparent transparent transparent;
}
.gnav > ul.menu > li span {
  width: 100%;
  color: #FFFFFF;
}
.gnav li.has-child ul {
  position: absolute;
  left: 0;
  /* top: 43px; */
  top: 100%;
  z-index: 2;
  /* min-width: 160px; */
  width: 100%;
  /* padding: 5px 15px; */
  box-sizing: border-box;
  visibility: hidden;  
  /* opacity: 1; */
  opacity: 0;
  transition: all 0.3s;
  box-shadow: 0px 0px 16px -6px rgba(0,0,0,0.6);
}
/*hoverしたら表示*/
.gnav li.has-child:hover > ul,
.gnav li.has-child ul li:hover > ul {
  visibility: visible;
  opacity: 1;
  
}
/*2階層*/
.gnav li.has-child ul li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
  min-width: 180px;
  width: 100%;
  min-height: 40px;
  line-height: 1.1;
  background: #FFFFFF;
  border-bottom: 1px solid #EEEEEE;
  padding: 5px 15px;
  /* font-weight: normal; */
  box-sizing: border-box;
  color: #333333;
  box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
}
.gnav li.has-child ul li a.on,
.gnav li.has-child ul li a:hover {
  text-decoration: none;
  color: #cf121b;
}
.gnav li.has-child ul li:last-child a {
  border-bottom:none;
}

/* The 44th JSBTP2026（44btp）のリンクボタン */
.btn_44btp.pc_only {
  display: flex;
  margin-left: auto;
  align-items: center;
  display: inline-flex;
  align-items: center;
}
.btn_44btp.sp_only {
  display: none;
}
.btn_44btp.pc_only a {
  background: #cf121b;
  border: 1px solid #cf121b;
  color: #FFFFFF;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  font-weight: bold;
  padding: 0.2px 8px;
  box-sizing: border-box;
  display: block;
  margin: 0 30px 0 auto;
  text-decoration: none;
  transition: 0.3s all;
  white-space: nowrap;
}
.btn_44btp.pc_only a:hover {
  background: #FFFFFF;
  border: 1px solid #cf121b;
  color: #cf121b;
}

.hero {
  background: url(../images/bg_top_hero.png) repeat-x top,
  url(../images/bg_bottom_hero.png) repeat-x bottom;
}
.hero .inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
/* スクロールダウン */
.scrolldown {
	position:absolute;
	right: 2.5%;
  bottom: 20%;
}
/* Scrollテキスト */
.scrolldown span {
    /*描画位置*/
	position: absolute;
	left:10px;
	bottom:80px;
    /*テキストの形状*/
	color: #eee;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
  writing-mode: vertical-rl;
}
/* 丸の描写 */
.scrolldown:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom:0;
  left:-4px;
  /*丸の形状*/
	width:10px;
	height:10px;
	border-radius: 50%;
	background:#eee;
  /*丸の動き2秒かけて透過し、永遠にループ*/
	animation:
		circlemove 2s ease-in-out infinite,
		cirlemovehide 2s ease-out infinite;
}
/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove{
      0%{bottom:200px;}
     100%{bottom:-5px;}
 }
/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide{
      0%{opacity:0}
     50%{opacity:1;}
    80%{opacity:0.9;}
	100%{opacity:0;}
 }

/* 線の描写 */
.scrolldown:after{
	content:"";
  /*描画位置*/
	position: absolute;
	bottom:0;
	left:0;
  /*線の形状*/
	width:2px;
	height: 200px;
	/* height: 50px; */
	background:#eee;
}

/* メニュー用 */
@media screen and (max-width:1300px){
  /* ヘッダー */
  .header_wrapper {
    display: block;
    /* position: sticky;
    top: 0; */
    /* flex-direction: column; */
  }
  .header_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: #333333;
    box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.3);
  }

  /*ハンバーガー ボタン*/
  .hamburger {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    border: 2px solid #cf121b;
    cursor: pointer;
    position: fixed;
    top: 5px;
    right: 10px;
    z-index: 10;
    border-radius: 3px;
    box-sizing: border-box;
    }
  .hamburger_line {
    position: relative;
    width: 25px;
    height: 4px;
    background:  #FFFFFF;
  }
  .hamburger_line::before,
  .hamburger_line::after {
    position: absolute;
    content: "";
    display: block;
    width: 25px;
    height: 4px;
    background:  #FFFFFF;
    transition: 0.3s;
  }
  .hamburger_line::before {
    top: -8px;
  }
  .hamburger_line::after {
    bottom: -8px;
  }
  /* 閉じる */
  .hamburger.active .hamburger_line {
    background: transparent;
  }
  .hamburger.active .hamburger_line::before {
    top: 0;
    transform: rotate(45deg);
  }
  .hamburger.active .hamburger_line::after {
    bottom: 0;
    transform: rotate(-45deg);
  }

  /* グローバル メニュー */
  .gnav {
    display: none;
    /* width: 100%; */
    width: 30%;
    position: fixed;
    right: 0;
    z-index: 2;
    background: #333333;
    max-height: 90vh; /* 画面の高さに合わせて調整 */
    overflow-y: auto; /* 垂直方向のスクロールを有効化 */

    transform: translateX(100%); /* 画面外へ隠す */
    transition: transform 1.5s ease; 
  }

  .gnav.active {
    transform: translateX(0);
    display: block;
  }
  .gnav ul {
    width: 100%;
    flex-direction: column;
    margin:0 auto;
  }
  .gnav > ul > li {
    flex-direction: column;
    min-height: auto;
    padding: 0;
    font-size: 14px;
  }
  .gnav > ul.menu > li > a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 40px;
    line-height: 1.1;
    transition:all .3s;
    text-decoration: none;
    box-sizing: border-box;
    color: #FFFFFF;
    padding: 5px 5px 5px 15px;
  }
  /* オーバーレイは初期非表示 */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;  /* 画面いっぱい */
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4); /* 半透明の黒 */
    opacity: 0;
    pointer-events: none; /* 非アクティブ */
    transition: opacity 0.3s ease;
    z-index: 2; /* メニューより下 */
  }
  .overlay.active {
    opacity: 1;
    pointer-events: auto; /* クリック可能に */
  }
  .gnav > ul.menu > li > a:hover,
  .gnav > ul.menu> li:hover {
    /* background: #000000; */
  }
 
  /*下の階層を持っているulの指定*/
  .gnav ul > li.has-child {
    /* display: flex;
    line-height: 1.1; */
    flex-direction: column;
  }
  .gnav ul > li.has-child:before {
    content: normal;
  }
  .gnav ul > li.has-child span {
    height: 40px;
    line-height: 40px;
    /* font-size: 15px; */
    position: relative;
  }
  .gnav ul > li > a,
  .gnav ul > li.has-child span {
    border-top: 1px solid #FFFFFF;
    width: 100%;
    display: block;
    height: 45px;
    text-align: left;
    padding-left: 15px;
    box-sizing: border-box;
    cursor: pointer;
  }
  /*2階層*/
  .gnav li.has-child ul li a {
    min-height: 45px;
    /* font-size: 14px; */
    margin-bottom: 0;
    border-bottom: 1px solid #DDDDDD;
    box-shadow: none;
  }
  .gnav li.has-child ul,
  .gnav li.has-child ul ul{
    position: relative;
    left:0;
    top:0;
    width:100%;
    visibility:visible;/*一旦表示*/
    /*一旦表示*/
    opacity:1;
    /*非表示に*/
    display: none;
    transition:none;
  }
  .gnav li.has-child ul li a:hover {
    min-height: 45px;
  }
  a.font_small {
    font-size: 13px !important;
    line-height: 1.2;
  }

  /*矢印の位置と向き*/
  .gnav ul li.has-child span::before{
    right: 1em;
  }
  .gnav ul ul li.has-child span::before{
    transform: rotate(135deg);
    right: 1em;
  }
  .gnav ul li.has-child span.active::before{
      transform: rotate(-45deg);
  }
  /* 矢印 */
  .gnav ul li.has-child span::before{
    content:'';
    position: absolute;
    right:1em;
    top:18px;
    width:6px;
    height:6px;
    border-top: 2px solid #FFFFFF;
    border-right:2px solid #FFFFFF;
    transform: rotate(135deg);
  }
  .gnav ul ul li.has-child span::before{
    transform: rotate(135deg);
    right: 1em;
  }
  .gnav ul li.has-child.active span::before{
    transform: rotate(-45deg);
  }

  /* The 44th JSBTP2026（44btp）のリンクボタン */
  .btn_44btp.pc_only {
    display: none;
  }
  .btn_44btp.sp_only {
    display: block;
    background: #cf121b;
  }
  .hero .inner {
    padding-top: 60px;
  }

  /* コンテンツ */
  #contents.page{
    padding-top: 60px;
  }

  .pagetop {
    bottom:40px;
    right:10px;
  }

  /* 下記は削除しない */
}

/* 動画 */
.top_vimeo {
  width: 50%;
  margin:20px auto;
}

/* 新着情報 */
#news {
  margin: 20px auto 0;
  
  width: 1000px;
  text-align:left;
}
#news h3 {
  width: 100%;
  height: clamp(40px,7.8vw,60px);
  border-radius: 10px;
  line-height: clamp(40px,7.8vw,60px);
  font-size: clamp(20px,3.6vw,28px);
  background: #123972;
  color: #FFFFFF;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  padding-left: 20px;
  box-sizing: border-box;
}
#news_frame {
  width: 100%;
  margin:0 auto;
  font-size: 14px;
  height:160px;
  overflow:auto;
  box-sizing: border-box;
}
#news_frame dl {
  overflow: hidden;
  padding: 5px 20px;
}
#news_frame dt ,#news_frame dd {
  padding-top: 0.5em;
}
#news_frame dt {
  float: left;
  letter-spacing: 0.5px;
}
#news_frame dd {
  padding-left: 8em;
}

/* 事務局等 */
#info {
  background:#FFFFFF;
  
}
#info h4 {
  display: inline-block;
  border: 1px solid #333333;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: bold;
  line-height: 16px;
}
#info address {
  font-style: normal;
  font-size: 12px;
  padding-top: 5px;
}
.info_inner {
  width: 1000px;
  border-top: 1px solid #999999;
  margin:10px auto;
  text-align:left;
  padding: 20px 0 0;
  box-sizing: border-box;
}

/* フッター */
footer {
  text-align: center;
  font-size: 12px;
  padding: 6px 1em;
  box-sizing: border-box;
  width: 100%;
  background: #1f1715;
  color: #FFFFFF;
  line-height: 1.2;
}

.hero-heading {
  position: relative;
  text-align: center;
  font-size: clamp(24px,4.2vw,32px);
  font-weight: bold;
  color: #FFFFFF;
  height: 120px; /* 背景の高さを指定 */
  display: flex; /* 中央揃えのために使用 */
  justify-content: center; /* 横方向に中央配置 */
  align-items: center; /* 縦方向に中央配置 */
}
.hero-heading .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:#cf121b url(../images/bg_h2.png) no-repeat left 60px fixed;
  z-index: 1;
}
.hero-heading .text {
  position: relative;
  z-index: 2; /* 背景の上に配置 */
  line-height: 1.2;
}

/* ここからmain部分 */

/* サブページ内 */
main {
  width: 1000px;
  padding:40px 35px;
  margin: 0 auto;
  position:relative;
  min-height:560px;
}

/* サブページ大見出し */
main h3 {
  background: linear-gradient(to bottom, rgba(18,57,114,1) 0%,rgba(13,39,81,1) 100%);
  color: #FFFFFF;
  font-size: 140%;
  font-weight: bold;
  padding: 10px 10px 8px 25px;
  margin: 2em 0 1em;
  position: relative;
}
main h3::before {
  content: "";
  width: 3px;
  height: 85%;
  background: #FFFFFF;
  position: absolute;
  left: 6px;
  top: 0;
}

/* 一番最初にくる時はアキなしにする場合はここに書き足す */
main h3:first-child, main h4:first-child, main h5:first-child, main p:first-child, main table tr td p:first-child {
  margin-top: 0;
}

/* 組み合わせでアキなしする場合はここに書き足す */
main h3 + h4, main h4 + h5, main h3 + p ,main h4 + p, main h5 + p {
  margin-top:0;
}

main h4 {
  margin-top: 1.5em;
  margin-bottom: 0.75em;
  font-size: 110%;
  font-weight: bold;
  background: #c6d5eb;
  color: #123972;
  padding: 0.5em 0.8em 0.35em;
}

/* サブページ小見出し  */
main h5 {
  margin: 1em 0 0.2em 0;
  margin-bottom: 0.5em;
  padding:0.2em;
  font-weight: bold;
  color: #123972;
  border-bottom: 2px dotted #123972;
}


/* サブページ段落 */
main p {
  margin-top: 1em;
}
main p.han {
  margin-top: 0.5em;
}
main p.zero {
  margin-top: 0;
}

/* サブページリスト */
main ul {
  margin-left: 1em;
}
main ul li {
  list-style: disc;
}
main ul.aki li {
  padding-bottom: 0.5em;
}
main ol {
  margin-left: 1.5em;
}
main ol li {
  list-style: decimal;
}
main ol.aki li {
  padding-bottom: 0.5em;
}


/* 準備中 */
p.jyunbi {
  text-align: center;
  padding-top: 100px;
}

/* 挨拶 */
main.greet p {
  line-height: 1.9;
  margin-top: 0.75em;
}
main .wrapper_greet {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin: 0 0 30px;
}
main .wrapper_greet > p {
  line-height: 1.6;
  text-indent: 0;
  text-align: right;
}
main .wrapper_greet > p:last-child {
  margin-left: 15px;
}

/* 開催概要 */
table.hyou_info{
  border-collapse:collapse;
  width:100%;
}
table.hyou_info th{
  border-top:1px solid #a52a2a;
  border-bottom:1px solid #a52a2a;
  padding:1em 1.5em 1em 0.5em;
  vertical-align:top;
  white-space:nowrap;
  text-align:left;
  color:#174690;
  color:#555;
  width:10%;
}
table.hyou_info td{
  border-top:1px solid #a52a2a;
  border-bottom:1px solid #a52a2a;
  padding:1em 0 1em 0.5em;
  vertical-align:top;
  text-align:left;
}

/* endai */

/* 別ページで開く------------------- */

/* 別ページで開くここまで------------------- */

/* kigyo */

/* accsess*/

/* リンク */
p.link {
  background:url(../images/icon_link.png) no-repeat left center;
  padding-left:15px;
  margin-bottom:0;
}
p.link a:link,p.link a:visited {
  color:#333333;
  text-decoration:none;
}
p.link a:hover,p.link a:active {
  color:#666666;
  text-decoration:underline;
}

/* 文章中のリンク */
a:link, a:visited {
  color: #0066CC;
  text-decoration: none;
}
a:hover, a:active {
  color: #0066CC;
  text-decoration: underline;
}

/* pagetop */
.pagetop {
  display: none;
  position: fixed;
  bottom:40px;
  right:95px;
  z-index: 2;
}
.pagetop a {
  display: block;
  background: #123972;
  border: 1px solid #FFFFFF;
  box-sizing: border-box;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  position: relative;
  z-index: 2;
  opacity: 0.9;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  transition: 0.3s all;
}
.pagetop a::before {
  content: "";
  display: block;
  width:0;
  height:0;
  border-style:solid;
  border-width: 0 10px 17.3px 10px;
  border-color: transparent transparent #FFFFFF transparent;
  position: absolute;
  top: calc(50% - 10px);
  left: calc(50% - 10px);
}
.pagetop a:hover {
  opacity: 0.6;
}

/* 外部リンク */
a.external {
  background: url(../images/external.png) no-repeat right center;
  padding-right: 20px;
}

/* テンプレート */
table.hyou_aaa {
  width: 100%;
  margin-bottom: 1em;
}
table.hyou_aaa td {
  border: 1px solid #666666;
  background-color: #FFFFFF;
  padding: 0.5em;
  vertical-align: top;
  text-align: left;
}
table.hyou_aaa th {
  border: 1px solid #666666;
  background-color: #F9F9F9;
  padding: 0.5em;
  vertical-align: top;
  text-align: left;
  font-weight: normal;
  width: 20%;
}
table.hyou_aaa tr {
  padding: 0.5em;
  vertical-align: top;
  text-align: left;
}

/* table line_none */
table.non {
  border: none;
}
table.non td {
  text-align: left;
  vertical-align: top;
}
table.non th {
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
  font-weight: normal;
}

/* ※一字下げ */
.kome{
  padding-left:1em;
  text-indent:-1em;
}

/* text */
.mbm1 {margin-bottom:-1em;}
.mb1 {margin-bottom:1em;}
.mb2 {margin-bottom:2em;}
.mb03 {margin-bottom:0.3em;}
.mb05 {margin-bottom:0.5em;}
.mb15 {margin-bottom:1.5em;}

.pl05 {padding-left:0.5em;}

.ml1 {margin-left:1em;}

.f85 {font-size:85%;}
.f90 {font-size:90%;}
.f95 {font-size:95%;}
.f100 {font-size:100%;}
.f105 {font-size:105%;}
.f110 {font-size:110%;}
.f115 {font-size:115%;}
.f120 {font-size:120%;}

.uchikeshi {
   background:
url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABAQMAAAAl21bKAAAABGdBTUEAAK/INwWK6QAAAANQTFRFAAAAp3o92gAAAApJREFUCB1jYAAAAAIAAc/INeUAAAAASUVORK5CYII=)
0 center repeat-x;
}
.uchikeshi.red {
   background:
url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABAQMAAAAl21bKAAAABGdBTUEAAK/INwWK6QAAAANQTFRF/wAAGeIJNwAAAApJREFUCB1jYAAAAAIAAc/INeUAAAAASUVORK5CYII=
) 0 center repeat-x;
}
.underline {
  text-decoration:underline;
}
.red {color: #FF0000;
}
.blue {color: #1d2777;
}

/* 太字 */
.bold{
  font-style:normal;
  font-weight:bold;
}

.text_r{
  text-align:right;
}
.text_c{
  text-align:center;
}

.white_space {
  white-space: nowrap;
}

.pro-btn_box {
  display: flex;
  flex-wrap:wrap;
  gap: 20px;
  justify-content: center;
  justify-content: space-between;
  margin:20px 5px;
}

/* ボタン */
.button {
  width: 270px;
  border-radius: 9999px;
  text-align: center;
  background-color: #e3ecfa;
  border: 2px solid #033787;
  cursor: pointer;
  font-size:18px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  height:60px;
}

.button a {
  width: 100%;
  height: 100%;
  color: #033787;
  text-decoration: none;
  font-weight:bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;/*長円形作成*/
}
.button:hover {
  background: #033787;
}
.button:hover a {
  color: #FFFFFF;
}
.button_400 {
  width: 400px;
}
.button_190 {
  width: 190px;
}
.button_2line {
  height:60px;
  padding:0;
  line-height: 1.2;
}
.button_3line {
  height:84px;
  padding:0;
  border-radius: 9999px;
  line-height: 1.2;
}

/* 反応しないボタン */
.button_gray {
  width: 270px;
  border-radius: 9999px;/*長円形作成*/
  text-align: center;
  background-color: #BBBBBB;
  font-size:18px;
  font-weight: bold;
  color:#FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height:60px;
}

/* ボタン  アイコン */
.pdf_icon a::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: calc(50% - 12px);
  right: 20px;
  background: url('../images/icon_pdf-25px.png') no-repeat;
  width:25px;
  height:25px;
}

.dl_box {
  display: flex;
  justify-content:space-around;
  flex-wrap: wrap;
  margin:1em 0;
}
.dl_item {
  margin: 10px;
}

/* PCで表示 */
.pc_only {
  display: inline-block;
}
/* PCでは非表示 */
.sp_only, .tb_only, .pc_none {
  display: none;
}

/*------------------------------------------*/
/* タブレット用 */
/*------------------------------------------*/
@media screen and (max-width:1000px){
  /* タブレットで表示 */
  .tb_only, .pc_none {
    display: inline-block;
  }
  /* タブレットでは非表示 */
  .pc_only, .sp_only {
    display: none;
  }

  /* グローバル メニュー */
  .gnav {
    display: none;
    /* width: 100%; */
    width: 50%;
  }
  /* スクロールダウン */
  .scrolldown {
    display: none;
  }
  /* 動画 */
  .top_vimeo {
    width: 60%;
  }

  /* 新着情報 */
  #news {
    padding: 0 2.5%;
    width: 95%;
  }
  #news_frame {
    width: 100%;
  }

  /* 事務局等 */
  #info {
    background:#FFFFFF;
    
  }
  #info h4 {
    display: inline-block;
    border: 1px solid #333333;
    padding: 2px 10px;
    font-size: 12px;
    line-height: 16px;
  }
  #info address {
    font-style: normal;
    font-size: 12px;
    padding-top: 5px;
  }
  .info_inner {
    width: 95%;
  }

  /* ここからmain部分 */

  /* サブページ内 */
  main {
    width: 100%;
    padding:40px 3.5%;
    box-sizing: border-box;
  }

  /* pagetop */
  .pagetop {
    display: none;
    position: fixed;
    bottom:40px;
    right:10px;
  }

  /* 下記は削除しない */
}

/*------------------------------------------*/
/* スマホ用 767px  */
/*------------------------------------------*/
  @media screen and (max-width:767px){
  /* スマホで表示 */
  .sp_only, .pc_none {
    display: inline-block;
  }
  /* スマホでは非表示 */
  .pc_only, .tb_only, .sp_none {
    display: none;
  }

  /* 動画 */
  .top_vimeo {
    width: 95%;
  }

   /* 新着情報 */
  #news {
    width: 95%;
  }
  #news_frame dd {
    padding-top: 0;
  }
  #news_frame dt {
    float: none;
  }
  #news_frame dd {
    padding-left: 0;
    padding-right: 0;
  }


  /* 下記は削除しない */
}

@media screen and (max-width:480px){
  /* ヘッダー */
  .header_wrapper {
    display: block;
  }
  header {
    width: 100%;
    background: #333333;
  }
  /* グローバル メニュー */
  .gnav {
    width: 100%;
  }

  .hero-heading {
    color: #FFFFFF;
    height: 80px;
  }
  .hero-heading .background {
    background:#cf121b url(../images/bg_h2.png) no-repeat left 60px / 200% fixed;
  }
  

  /* 下記は削除しない */
}
