@charset "utf-8";

* {
  font-family: "Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","HiraginoSans-W3","メイリオ","Meiryo","ＭＳ Ｐゴシック",sans-serif;
}
p {
  font-size: 15px;
}

a {
  text-decoration: underline;
}

a:hover {
  color: #0074d7;
}

.section-wrapper {
  min-width: 980px;
}

.section-contents {
  margin-top: 70px;
}

header {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  position: fixed;
  top: 0;
  z-index: 19;
  width: 100%;
  background-color: #fff;
}

.ttl-logo {
  width: 300px;
  text-align: center;
  padding: 3px 20px;
  background-color: #fff;
}

.ttl-logo img {
  width: 100%;
}

/* PC用メニュー */
.list-menu {
  display: flex;
  width: 100%;
  z-index: 9;
}
.list-menu a {
  text-decoration: none;
  color: #fff;
}
.list-menu__item {
  width: 17%;
  height: 70px;
  background-color: #00036b;
  position: relative;
  transition: all .3s;
  line-height: 1.4;
}
.list-menu__item:hover {
  background-color: #3035cd;
}
.list-menu__item__txt {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 15px;
  transition: all .3s;
  padding: 0 8px;
}
.list-menu__item__txt:hover {
}
.list-menu__dropdownList {
  display: none;
  position: absolute;
  transition: all .3s;
}
.list-menu__item:hover .list-menu__dropdownList {
  display: block;
}
.list-menu__dropdownList__item {
  font-size: 15px;
  background: #0074d7;
  transition: all .3s;
}
.list-menu__dropdownList__item:hover {
  background: #3595e8;
}
.list-menu__dropdownList__item a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 12px 18px;
  color: #fff;
}
.list-menu__dropdownList__item a:hover {
}

.txt-popupWindow::after {
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url(../images/ico_window.png);
  background-size: 14px 14px;
  background-repeat: no-repeat;
  content: "";
  margin-left: 4px;
  vertical-align: middle;
}

/* スマホ用メニュー */
.btn-spMenu {
  display: none;
  background-color: #00036b;
  color: #fff;
  z-index: 999;
  width: 4rem;
  height: 4rem;
  padding: 1.2rem 1rem;
  position: relative;
}
.btn-spMenu.active {
}
.btn-spMenu .btn-spMenu__border {
  height: 2px;
  width: 2rem;
  font-size: 0;
  background-color: #fff;
  display: block;
  position: absolute;
  transition: ease .3s;
}
.btn-spMenu .btn-spMenu__border span {
  display: none;
}
.btn-spMenu span:nth-child(1) {
  top: 1.1rem;
}
.btn-spMenu span:nth-child(2) {
  top: 1.8rem;
}
.btn-spMenu span:nth-child(3) {
  top: 2.5rem;
}
.btn-spMenu.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 1.9rem;
}
.btn-spMenu.active span:nth-child(2) {
  opacity: 0;
}
.btn-spMenu.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 1.9rem;
}
.box-spMenu {
  display: none;
  background-color: #00036b;
  color: #fff;
  padding: 5rem 0;
  width: 100%;
  top: 0;
  z-index: 10;
  position: fixed;
  height: 100vh;
  overflow-y: scroll;
}
.list-spMenu a{
  text-decoration: none;
  color: #fff;
}
.list-spMenu__item {

}
.list-spMenu__item__txt {
  display: block;
  padding: 1.2rem 2rem;
  font-size: 1.2rem;
  position: relative;
}
.list-spMenu__item__txt.icon-toggeOpen::after {
  margin-top: -0.7rem;
  position: absolute;
  right: 1.8rem;
  font-size: 1.8rem;
  top: 50%;
  line-height: 1;
  background-image: url(../images/ico_plus_white.png);
  content: "";
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  background-repeat: no-repeat;
  background-size: contain;
}
.list-spMenu__item__txt.icon-toggeOpen.open::after {
  background-image: url(../images/ico_minus_white.png);
}
.list-spMenu__dropdownList {
  display: none;
  background: #0074d7;
}
.list-spMenu__dropdownList__item {

}
.list-spMenu__dropdownList__item a {
  display: block;
  padding: 1.2rem 2rem;
  font-size: 1.1rem;
}

/* ホームメイン画像 */
.box-mainImg {
  height: 330px;
  position: relative;
}
.box-mainImg__item{
  height: 330px;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  position: absolute;
}
.box-mainImg__item span{
  display: none;
}
.box-mainImg__item.fade01 {
    background-image: url("../images/bg_main01.jpg");
    display: none;
}
.box-mainImg__item.fade02 {
    background-image: url("../images/bg_main02.jpg");
    display: none;
}
.box-mainImg__item.fade03 {
    background-image: url("../images/bg_main03.jpg");
    display: none;
}
.box-mainImg__item.fade04 {
    background-image: url("../images/bg_main04.jpg");
    display: none;
}

.box-contentWrapper {

}

/* ホームボックス */
.box-topContent {
  padding: 34px 40px;
  background: #fff;
  line-height: 1.6;
}
.box-topContent:nth-child(even){
  background: #f5f5f5;
}
.box-topContentInner {
  max-width: 1100px;
  margin: 0 auto;
}
.txt-topCaption {
  font-size: 30px;
  color: #292ca3;
  font-weight: bold;
  margin-bottom: 20px;
}

/* ホーム トピックスのリスト*/
.list-topics {

}
.list-topics__row {
  border-bottom: 1px solid #ddd;
  padding: 18px 0;
  display: table;
  width: 100%;
}
.list-topics__row:last-child{
  border: none;
}
.list-topics__row__accent {
  color: #0074d7;
  padding-right: 20px;
  font-weight: bold;
  display: table-cell;
}
.list-topics__row__text {
  display: table-cell;
}

/* フッター */
footer {
  background-color: #00036b;
  color: #fff;
  line-height: 2;
  padding: 40px 40px;
}
.txt-footerName {
  font-size: 24px;
  font-weight: bold;
}
.list-footerFormBtn {
  margin-top: 12px;
}
.list-footerFormBtn li {
  display: inline-block;
  margin-right: 4px;
}

/* テーブル関連 */
.table-schedule {

}
.table-schedule tr {

}
/* .table-schedule tr:nth-child(odd) {
  background-color: #f4f4f4;
} */
.table-schedule th {
  border: 1px solid #ddd;
  padding: 12px 20px;
  background-color: #3035cd;
  color: #fff;
  vertical-align: middle;
}
.table-schedule td {
  border: 1px solid #ddd;
  padding: 8px;
  vertical-align: middle;
}
.table-schedule img {
  width: 40px;
}
.table-schedule .btn-form {
  font-size: 14px;
}
.td-center {
  text-align: center;
}
.td-accent {
  color: #0074d7;
  font-weight: bold;
  background-color: #f4f4f4;
}
.td-bold {
  font-weight: bold;
}
.td-form {
  min-width: 140px;
}
/* リンク集グループ */
.box-linkGroup {
  margin-bottom: 30px;
}
.box-linkGroup__capt {
  color: #0074d7;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 8px;
}

/* リンク集のリスト */
.list-link {

}
.list-link--topMargin {
  margin-top: 24px;
}
.list-link__item {
  padding: 4px 0;
}
.list-link__item::before {
  display: inline-block;
  width: 6px;
  height: 10px;
  background-image: url(../images/ico_arrow.png);
  background-size: 6px 10px;
  background-repeat: no-repeat;
  content: "";
  margin-right: 16px;
  vertical-align: middle;
}
.list-link__item a {
  text-decoration: none;
}
.list-link__item--indent {
  margin-left: 24px;
}

/* 強化ジュニア委員会 */
.box-juniorBnr {

}
.box-juniorBnr img {
  max-width: 510px;
}
.box-juniorBnr a:hover{
  opacity: 0.8;
}



/* なにかと */
.box-generic {
  margin: 10px 0;
}

.txt-memo {
  margin-bottom: 8px;
}

.txt-sm {
  font-size: 13px;
}

.txt-caution {
  color: #e43535;
}

.btn-form {
  display: inline-block;
  background-color: #1595ff;
  color: #fff;
  padding: 5px 14px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  margin: 2px;
}

.btn-form::before{
  display: inline-block;
  width: 6px;
  height: 10px;
  background-image: url(../images/ico_arrow_white.png);
  background-size: 6px 10px;
  background-repeat: no-repeat;
  content: "";
  margin-right: 8px;
  vertical-align: middle;
}
.btn-form:hover {
  color: #fff;
  opacity: 0.7;
}

/* 表示を消す */
.item-spOnly {
  display: none;
}

@media screen and (max-width:885px) {
  .list-menu__item a {
    font-size: 12px;
    overflow: hidden;
  }
}
@media screen and (max-width:480px) {
    /*　画面サイズが480pxからはここを読み込む　*/

.section-wrapper {
  min-width: auto;
}
.ttl-logo {
  width: 58%;
  text-align: left;
  padding: 0 0.2rem;
  max-height: 4rem;
}
.ttl-logo img {
  max-height: 4rem;
}
.txt-popupWindow::after {
  width: 1rem;
  height: 1rem;
  background-size: 1rem;
  margin-left: 8px;
}
.section-contents {
  margin-top: 4rem;
}
.btn-spMenu {
  display: block;
}
.box-mainImg {
  height: 180px;
}
.box-mainImg__item{
  height: 180px;
}
.list-menu {
  display: none;
}
.box-spMenu.active {
  display: block;
}

.txt-topCaption {
  margin-bottom: 20px;
}

.list-topics__row {
  display: block;
}
.list-topics__row__accent {
  display: block;
  margin-bottom: 0.4rem;
}
.list-topics__row__text {
  display: block;
}
.table-schedule {
   width: 1000px;
}
.table-schedule th {
  min-width: 90px;
}
.box-tableWrapper {
  overflow-x: scroll;
}

.list-footerFormBtn li {
  display: block;
  margin-bottom: 8px;
}

.box-juniorBnr img {
  width: 100%;
}

/* SPのみ表示 */
.item-spOnly {
  display: block;
}

}
