@charset "UTF-8";
@import url("grid.css");
:root { /* 色変更される場合は、#以降のカラーコードを変更してください IE非対応 */
  --base-color: #000;
  --link-color: #0099ff;
  --linkhover-color: #0066cc;
  --back-color: #f7f7f7;
  --border-color: #ccc;
  --white-color: #fff;
}
img {
  max-width: 100%;
  height: auto; /*高さ自動*/
}
a {
    color: var(--link-color);
  text-decoration-line: none;
}
a:hover {
  color: var(--linkhover-color);
}
a img {
  margin-bottom: 1rem;
}
a img:hover {
  opacity: 0.8;
  left: auto;
}
.underline {
  color: #fff;
  padding-top: 6rem;
  padding-right: 0;
  padding-left: 0;
  padding-bottom: 6rem;
  text-align: center;
  background-image: url("../img/subimg.png");
  background-position: bottom;
  background-position: center;
  background-size: cover;
  font-weight: bold;
}
/*ヘッダー
-------------------------------------*/
.head {
  display: flex;
  flex-direction: row;
  padding: 1rem 0 0 0;
}
.head h1 {
  padding-top: 1rem;
  padding-right: 0;
  padding-left: 0;
  padding-bottom: 0;
  margin: 0 !important;
}
.telbox {
  margin-left: auto;
  font-size: 2rem;
  padding: 0;
}
.telbox a {
  color: #0099ff;
}
.telbox img {
  color: aqua;
  width: 3rem;
  margin-right: 5px;
  margin-bottom: -7px;
}
nav ul {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  list-style: none;
  margin-bottom: 1rem;
  margin-left: 0px;
}
nav li {
  display: block;
  flex: 1 0 auto;
  background-color: #E7E7E7;
  font-weight: bold;
}
nav li a {
  text-decoration: none;
  text-align: center;
}
nav a:hover {
  background-color: var(--back-color);
  color: #0099ff;
}
nav a {
  display: block;
  padding: 1rem;
  color: #0099ff;
}
.head iframe{
	margin-left:10px;
	margin-top: 10px;
	height:50px;
	width:150px;
}

@media screen and (min-width: 568px) {
  /* PC時はMENUボタンを非表示 */
  #open, #close {
    display: none !important;
  }
  #navi {
    display: block !important;
  }
}
@media screen and (max-width: 568px) {
	
	.head iframe{
		position: absolute;
		margin-left:0;
		margin-top: 0;
		width:140px;
		height:60px;
		top:100px;
	}

	.underline {font-size:14px;}
  .head {
    flex-direction: column;
    text-align: left;
    margin-bottom: 20px;
  }
  .telbox_org {
    margin-left: 0;
    text-align: center;
  }
  .telbox {
	margin-top: -20px;
    margin-right: 20px;
    text-align: right;
  }
  .head #open, #close {
    position: absolute;
    top: 28px;
    right: 12px;
  }
  nav ul {
    flex-direction: column;
  }
  nav li {
    padding-top: 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0;
  }
  /* スマホ時はMENUボタンを表示 */
  #open {
    display: block;
    background: url(../img/button.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 20px;
    right: 12px;
  }
  #close {
    display: block;
    background: url(../img/button2.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 20px;
    right: 12px;
  }
  /* スマホ時はメニューを非表示 */
  #navi {
    display: none;
  }
}
/*メイン画像
-------------------------------------*/
.mainimg img {
  /*    max-width: 1000px;*/
  /*	width: 100vw;*/
}
.mainimg {
  width: 100%;
  text-align: center;
  margin: 0 auto 2rem auto;
  max-width: 1000px;
}
/*メインコンテンツ
-------------------------------------*/
main {
  margin: 2rem 0 5rem 0;
}
/*新着情報
-------------------------------------*/
.news h2 {
  border-bottom: 3px solid #0c2775;
  padding-bottom: 0.5rem;
  color: #fff;
  background: #0b33a4;
  font-weight: bold;
  padding-top: 0.6em;
  padding-left: 0.5rem;
  font-size: large;
}
.news .news-new {
	overflow:auto;
	max-height:340px;
	overflow-y: scroll;
	scrollbar-face-color: #999;
	scrollbar-track-color: #eee;
	-webkit-overflow-scrolling: touch;
}
.news li {
  list-style-type: none;
  border-bottom: 1px solid var(--border-color);
  padding: 0.5rem 0;
}
.news li span {
  font-size: small;
  color: #0b33a5;
  margin-right: 10px;
}
.news li #span {
  font-size: small;
  color: #0b33a5;
  margin-right: 10px;
  height:100%;
}
.heading-008 {
  display: inline-block;
  position: relative;
  padding: .2em .7em;
  border: solid 1px #0b33a5;
  background-color: #fff;
}
/*フッター
-------------------------------------*/
footer {
  background-color: var(--back-color);
  padding: 5rem 0;
  border-bottom: 1px solid #C5C5C5;
}
footer h5 {
  border-bottom: 1px solid #C5C5C5;
  font-weight: bold;
}
/*コピーライト
-------------------------------------*/
.copyright {
  font-size: small;
  letter-spacing: 0.2rem;
  text-align: center;
  padding: 1rem 0;
  background-color: var(--back-color);
}
.copyright a {
  color: var(--base-color);
  text-decoration: none;
  display: inline-block;
}
/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
  position: fixed;
  bottom: 15px;
  right: 15px;
}
#pagetop a {
  display: block;
  background-color: var(--base-color);
  color: var(--white-color);
  width: 50px;
  padding: 10px 5px;
  text-align: center;
}
#pagetop a:hover {
  background-color: var(--link-color);
}
/*パンくずリスト
-----------------------------------*/
.breadcrumb {
  margin: 0 0 1em 0;
  padding: 0;
  font-size: small;
}
.breadcrumb li {
  list-style-type: none;
}
.breadcrumb li a {
  display: inline-block;
  color: var(--link-color);
}
/*グーグルマップ
-----------------------------------*/
.google-maps {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%; /* 比率を4:3に固定 */
}
.google-maps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*フェード
-----------------------------------*/
.fade-img {
  left: -49%;
  margin: auto;
  position: relative;
  /* [disabled]width: 100%; */
  max-width: 1000px;
  /* [disabled]height: 50%; */
  max-height: 399px;
}
.fade-img img {
  position: absolute;
  width: 100%;
}
/*見出し
-----------------------------------*/
.heading-023 {
  display: flex;
  align-items: center;
  padding: .5em .7em;
  background-color: #f2f2f2;
  color: #333333;
}
.heading-023::before {
  display: inline-block;
  width: 5px;
  height: 1.5em;
  margin-right: .5em;
  background-color: #0b33a4;
  content: '';
}
.heading-002 {
  padding: 0 .4em .2em;
  border-bottom: 3px solid #0b33a4;
  background-color: #ffffff;
  color: #333333;
}
.heading-038 {
  position: relative;
  padding: .5em 1.2em;
  color: #333333;
}
.heading-038::before, .heading-038::after {
  display: inline-block;
  position: absolute;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border: 2px solid #0b33a4;
  content: '';
}
.heading-038::before {
  top: calc(50% - 3px);
  left: 0;
}
.heading-038::after {
  top: calc(50% + 3px);
  left: 5px;
}
/*ボタン
-----------------------------------*/
.button-003 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  margin: 1rem auto;
  padding: .9em 2em;
  border: none;
  border-radius: 5px;
  box-shadow: 0 2px 3px rgb(0 0 0 / 25%), 0 2px 3px -2px rgb(0 0 0 / 15%);
  background-color: #0b33a4;
  color: #fff;
  font-weight: 600;
  font-size: 1em;
}
.button-003::after {
  transform: rotate(45deg);
  width: 5px;
  height: 5px;
  margin-left: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: '';
  color: #fff;
}
.button-003:hover {
  background-color: #1C84C5;
  color: #fff;
}
/*リスト
-----------------------------------*/
.list-009 {
  list-style-type: disc;
  list-style-position: inside;
}
.list-009 li {
  padding: .5em;
}
.list-009 li:not(:last-child) {
  border-bottom: 1px solid #E1E1E1;
}
.list-009 li::marker {
  color: #0b33a4;
  font-size: 1.1em;
}
.list-002 {
  counter-reset: li;
}
.list-002 li {
  display: flex;
  align-items: center;
  padding: .3em;
}
.list-002 li::before {
  display: inline-block;
  min-width: 1.7em;
  margin-right: 5px;
  background-color: #0b33a4;
  color: #fff;
  font-weight: bold;
  font-size: .75em;
  line-height: 1.7em;
  text-align: center;
  content: counter(li);
  counter-increment: li;
}




/*タブ
-----------------------------------*/
.tab-002 a {
  color: #fff;
}
.tab-002 a :hover {
cursor: pointer;
}
.tab-002 {
  display: flex;
  flex-wrap: wrap;
  gap: 0 10px;
  max-width: 600px;
}
.tab-002 > label {
  flex: 1 1;
  order: -1;
  opacity: .5;
  min-width: 70px;
  padding: .6em 1em;
  border-radius: 5px 5px 0 0;
  background-color: #0f4091;
  color: #fff;
  font-size: .9em;
  text-align: center;
  /* cursor: pointer;*/
}
.tab-002 > label:hover {
  opacity: .8;
}
.tab-002 input {
  display: none;
}
.tab-002 > div {
  display: none;
  width: 100%;
  padding: 1.5em 1em;
  background-color: #fff;
}
.tab-002 label:has(:checked) {
  opacity: 1;
}
.tab-002 label:has(:checked) + div {
  display: block;
}


/* 結果 階級別ボタン化 */
.list-button li a { 
display: inline-block;
text-align:center;
width: 90px;
border: 1px solid #0066cc;
 border-radius: 5px;
 margin-top: 5px;
margin-left: 6px;
font-size:16px;
line-height:20px;
padding-top:0px;padding-bottom:0px;
padding-left:5px;padding-right:5px;
}
.list-button li a:hover {
background-color:#0066cc;
color:#fff;
}
.list-button .weight a{
	width: 90px;
}
.list-button .weight2 a{
	width: 150px;
}
.list-button .weight3 a{
	width: 50px;
}
.list-button .weight4 a{
	width: 120px;
}
.list-button .kagunen a{
	width: 120px;
}
.list-button .cyusen a{
	width: 140px;
}
.list-button2 li {
	
}
.list-button2 li a { 
display: inline-block;
text-align:left;
width: 400px;
border: 1px solid #0066cc;
 border-radius: 5px;
 margin-top: 5px;
margin-left: 6px;
font-size:16px;
line-height:20px;
padding-top:0px;padding-bottom:0px;
padding-left:5px;padding-right:5px;
}
.list-button2 li a:hover {
background-color:#0066cc;
color:#fff;
}


.list-button3 li a { 
display: inline-block;
text-align:left;
width: 240px;
border: 1px solid #0066cc;
 border-radius: 5px;
 margin-top: 5px;
margin-left: 6px;
font-size:16px;
line-height:20px;
padding-top:0px;padding-bottom:0px;
padding-left:5px;padding-right:5px;
}
.list-button3 li a:hover {
background-color:#0066cc;
color:#fff;
}
.list-button3 .weight a{
	width: 240px;
}

.list-button4 li a { 
display: inline-block;
text-align:left;
width: 140px;
border: 1px solid #0066cc;
 border-radius: 5px;
 margin-top: 0px;
margin-left: 6px;
font-size:16px;
line-height:20px;
padding-top:0px;padding-bottom:0px;
padding-left:5px;padding-right:5px;
}
.list-button4 li a:hover {
background-color:#0066cc;
color:#fff;
}
.list-button4 .weight a{
	width: 100px;
}

.list-button5 li{
	width: 400px;
}
.list-button5 li a { 
display: inline-block;
text-align:left;

border: 1px solid #0066cc;
 border-radius: 5px;
 margin-top: 5px;
margin-left: 6px;
font-size:16px;
line-height:20px;
padding-top:0px;padding-bottom:0px;
padding-left:5px;padding-right:5px;
}
.list-button5 li a:hover {
background-color:#0066cc;
color:#fff;
}

.list-button6 li {
	margin-bottom: 1px;
}
.list-button6 li a { 
display: inline-block;
text-align:left;
width: 400px;
border: 1px solid #0066cc;
 border-radius: 5px;
 margin-top: 5px;
margin-left: 6px;
font-size:16px;
line-height:20px;
padding-top:0px;padding-bottom:0px;
padding-left:5px;padding-right:5px;
}
.list-button6 li a:hover {
background-color:#0066cc;
color:#fff;
}


.list-button7 li {
	margin-bottom: 1px;
}
.list-button7 li a { 
display: inline-block;
text-align:left;
width: 280px;
border: 1px solid #0066cc;
 border-radius: 5px;
 margin-top: 5px;
margin-left: 6px;
font-size:16px;
line-height:20px;
padding-top:0px;padding-bottom:0px;
padding-left:5px;padding-right:5px;
}
.list-button7 li a:hover {
background-color:#0066cc;
color:#fff;
}


/* 注意事項*/ 
.note_cmt{
	width:800px;
	font-size:18px;
	font-weight:bold;
	color:#ff0000;
	border: 2px solid #ff0000;
 border-radius: 5px;
 padding:5px;
 margin-top: 10px;
}
.note_cmt .under {
  background: linear-gradient(transparent 70%, yellow 70%);
}

/* 結果 優勝者画像 */
.imgWin{
	 display: flex;
	margin: 0 auto;
    width: 100%;
    text-align: left;
    position: relative;

}
.imgWin div{
	width: 50%;
	 text-align: center;
}
.imgWin div:hover{
	transform: scale(1);
	width: 100%;
	 transition-duration: 0.5s;
}
.imgWin div img{width:100%;padding:0;}


/*  copyright inf */
