@charset "utf-8";
/*
theme Name: 2025EastScratch
Author: XXXX
Description: original theme
version： 1.0.0
*/

/* *************************************************************** */

/* グローバル変数定義                                      　　　    */

/* *************************************************************** */

/*  --theme_color : topページ、ヘッダー、フッターのカラーを設定します  */

/*                                                                 */

/*                                                                 */

/*                                                                 */

/* *************************************************************** */

:root {
  --theme_color: rgb(233, 218, 205);
  /* --theme_color : rgb(209, 205, 233); */
  /* --theme_color : rgb(205, 233, 209); */
}

a {
  color: #333;
  text-decoration: none;
}

a:hover {
  color: #333;
  text-decoration: none;
}

button,
input {
  overflow: visible;
  border: none;
}
button:focus{
  outline: none;
}

* {
  outline: 0;
}

/*サイト全体の基準となるCSSを記述*/

html {
  font-size: 18px;
}

body {
  /*フォントの指定*/
  font-family: sans-serif, "Meiryo", "ヒラギノ角ゴ", "Hiragino Kaku Gothic Pro W3",
    "Hiragino Kaku Gothic StdN", "Meiryo", "Calibri Light", "myriad-pro", "YuMincho",
    "Hiragino Mincho ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝",
    sans-serif;
  font-style: normal;
  letter-spacing: 0.02em;
  line-height: 1.7;
}

/* ***************************************************************
  共通style
******************************************************************
  共通のスタイルを指定します


*************************************************************** */
.br_sp {
  display: none;
}

.border_sp {
  display: none;
}

/*スケジュールボタン*/
.schedule_row button{
  text-align: center;
  width: 180px;
  padding: 10px 20px;
  color: #fff;
  cursor: pointer;
  max-width: 280px;
}

.button_wrap a button{
  background-color: #8c1018;
}
.button_wrap > button{
  background-color: #7c7c7c;
  pointer-events: none;
}
.button_wrap > button.thanks {
  background-color: #ad6507;
}
.btn_entry a {
  color: #fff;
}
.btn_inactive{
  pointer-events: none;
}


.competition_summary .row,
.competition_rules .row {
  align-items: center;
}

.text_title {
  font-weight: bold;
  letter-spacing: 0.4em;
  font-size: 2.2rem;
}

.footer {
  padding: 0 200px 0 200px;
}

nav li a {
  color: white;
}

#contact_wrapper {
  display: flex;
  text-align: center;
  padding: 80px 0;
  align-items: center;
}

.contact_contents {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
}

#contact_left {
  width: 30%;
  text-align: center;
}
#contact_right {
  width: 70%;
  text-align: center;
}
#contact_wrapper hr {
  border-color: #fff;
}
#contact_wrapper h2 {
  font-weight: bold;
}
footer h3 {
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 40px;
  letter-spacing: 0.13rem;
}
#contact_tournament_title {
  font-weight: bold;
  font-size: 1.2rem;
}

.contactform_btn {
  border: 1px solid;
  border-color: #fff;
  line-height: 2.5;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: #fff;
  padding: 10px 60px;
  background-color: rgba(0, 0, 0, 0);
}
.telnum_wrapper {
  padding: 0 40px;
}

.telnum_wrapper a {
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
}

.textCenter {
  text-align: center;
}

/**********共通部分メディアクエリ**********/
@media (max-width: 1400px) {
  .telnum_wrapper {
    padding: 0 20px;
  }
  .telnum_wrapper a {
    font-size: 1rem;
  }
  #tournament_telnum {
    font-weight: 1.2rem;
  }
  .contactform_btn {
    padding: 10px 20px;
  }
}
@media (max-width: 1199px) {
  #footer-main aside dl{
    margin: auto;
    text-align: center;
  }
}
@media (max-width: 1100px) {
  #contact_wrapper {
    display: block;
    padding: 80px 0 0 0;
  }
  #contact_left {
    width: 100%;
    margin-bottom: 40px;
  }
  #contact_right {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .contact_contents {
    display: block;
  }
  .contactform_btn{
    width: 100%;
  }
}
/**********共通部分メディアクエリ終了**********/

/* bamburgar */

button[aria-expanded="true"] > span {
  position: relative;
  display: none;
}

button[aria-expanded="true"]::after {
  top: 20px;
  right: 20px;
  font-size: 1.75rem;
  content: "X";
  color: white;
}

.row {
  margin-left: 0;
  margin-right: 0;
}

/* ***************************************************************
  PGSLogo
******************************************************************
  SP 時の PGSLogo のスタイルを指定します


*************************************************************** */

.ham_dropdown > a img {
  position: fixed;
  top: 10px;
  left: 10px;
  width: 50px;
  height: 50px;
  color: #075137;
  z-index: 20;
}

/* ***************************************************************
  header.php
******************************************************************
  ヘッダーのスタイルを指定します


*************************************************************** */

.clone-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  transition: 0.3s;
  transform: translateY(-100%);
}
.is-show {
  transform: translateY(0);
}

header {
  position: fixed;
  width: 100%;
  display: flex;
  background-color: #8c1018;
  font-size: 1rem;
  letter-spacing: 0.02em;
  line-height: 1.7;
  justify-content: space-between;
  align-items: center;
  z-index: 15;
  top: 0;
}

.header-fixed-bar {
  position: fixed;
  width: 100%;
  height: 70px;
  background-color: #8c1018;
  justify-content: space-between;
  box-shadow: 2px 0 5px #1b1a1a;
  z-index: 5;
  top: 0;
}
.header-absolute-margin {
  width: 100%;
}

.header_logo {
  margin-left: 40px;
}

.header_logo img {
  margin: 10px;
  width: 50px;
  height: 50px;
}

#navi-in {
  margin-right: 40px;
}

#navi-in ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
  margin: auto 0;
  height: 70px;
  gap: 26px;
}

#navi-in ul li {
  display: flex;
  height: 70px;
  align-items: center;
}

#navi-in ul li a {
  display: block;
  font-weight: bold;
  font-size: 0.7rem;
}

#navi-in ul li a:hover {
  color: white;
}

#navi-in ul li .sub-menu {
  position: absolute;
  display: block;
  padding: 0;
  width: 355px;
  top: 0px;
  right: 0px;
  opacity: 0;
  z-index: -10;
}
#navi-in ul li .sub-menu li {
  height: 35px;
  margin: 0;
  padding: 5px 10px;
}
#navi-in ul li:hover .sub-menu {
  transition-duration: 0.2s;
  position: absolute;
  display: block;
  padding: 0;
  width: 355px;
  top: 70px;
  right: 0px;
  opacity: 1;
  z-index: 0;
}
#navi-in ul li:hover .sub-menu li {
  height: 35px;
  top: 0px;
  right: 0px;
  background-color: rgba(140, 16, 24, 0.8);
  z-index: 1;
}
#navi-in ul li:hover .sub-menu li a {
  z-index: 10;
  font-weight: normal;
}
#navi-in ul li:hover > .sub-menu::before {
  content: "";
}
#navi-in ul li:hover > .sub-menu::after {
  content: "";
}
@media (max-width: 1200px) {
  #navi-in ul {
    gap: 18px;
  }
}

/* ***** dropdownメニュー ***** */

.ham_dropdown {
  display: none;
}

.drawer-nav {
  align-items: center;
  display: flex;
  transform: translate(400%, 0%);
  transition: 0.4s ease-in-out;
  position: fixed;
  top: 0;
  flex-direction: row;
  width: 25%;
  height: 100%;
  background-color: transparent;
  opacity: 0.9;
  z-index: 25;
}

.drawer-nav.active {
  transform: translate(300%, 0);
}

.drawer-nav-bg {
  display: flex;
  transform: translate(400%, -100%);
  transition: 0.4s ease-in-out;
  position: fixed;
  top: 0;
  width: 25%;
  height: 100%;
  background-color: transparent;
  opacity: 0.9;
  z-index: 25;
}

.drawer-nav-bg.active {
  flex-direction: row;
  z-index: 25;
  background-color: #8c1018;
  opacity: 0.9;
  transform: translate(300%, 0);
}

.ham_logo {
  width: 20%;
  text-align: center;
}

.ham_logo img {
  display: none;
}

.ham_menu {
  width: 80%;
  height: 90%;
  overflow-y: scroll;
  -ms-overflow-style: none;
  /*スクロールバー非表示（IE・Edge）*/
  -ms-overflow-style: none;
  /*スクロールバー非表示（Firefox）*/
  scrollbar-width: none;
}
/*スクロールバー非表示（Chrome・Safari）*/
.ham_menu::-webkit-scrollbar{
  display:none;
}

.ham_menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ham_menu > ul{
  height: 100%;
  display: flex;
  flex-direction: column;
  margin: auto;
}
.ham_menu ul li {
  border-bottom: solid 1px #fff;
  line-height: 60px;
}
.ham_menu ul li:first-child{
  margin: auto 0 0;
}
.ham_menu ul li:last-child{
  margin: 0 0 auto 0;
}

.ham_menu ul li:nth-last-child(2),
.ham_menu ul li:last-child {
  border-bottom: none;
}

.ham_menu ul li a {
  display: block;
  font-weight: bold;
}

.ham_menu ul li a:hover {
  color: white;
}

.ham_menu ul li .sub-menu {
  margin-top: -0.5rem;
  margin-bottom: 0.5rem;
}
.ham_menu ul li .sub-menu li {
  border-bottom: none;
}
.ham_menu ul li .sub-menu li a {
  font-weight: bold;
  font-size: 0.6rem;
  line-height: 1.5rem;
}

/*=============================
.btn-trigger
=============================*/
.menu-close {
  position: fixed;
  z-index: 20;
  top: 15px;
  right: 55px;
  width: 80px;
  height: 40px;
  color: #fff;
}
.menu-title {
  margin: 5px 5px;
}
#btn01 .close-title {
  display: none;
}
#btn01.active .close-title {
  display: block;
  margin: 5px 5px;
}
#btn01.active .menu-title {
  display: none;
}
.btn-trigger {
  position: fixed;
  z-index: 30;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-color: #8c1018;
  justify-content: center;
  padding: 8.5px 0;
}
.btn-trigger.active {
  background-color: transparent;
}
.btn-trigger.active .menu-close {
  background-color: transparent;
}
.btn-trigger span {
  margin: 5px auto;
  width: 18px;
  height: 1px;
  background-color: #fff;
  border-radius: 0.5px;
}
.btn-trigger,
.btn-trigger span {
  display: block;
  transition: all 0.5s;
  box-sizing: border-box;
}
.btn-trigger span:nth-of-type(1) {
  top: 0;
}
.btn-trigger span:nth-of-type(2) {
  top: 20px;
}
.btn-trigger span:nth-of-type(3) {
  bottom: 0;
}

/*=============================
#btn01
=============================*/
#btn01.active span:nth-of-type(1) {
  -webkit-transform: translateY(6px) rotate(-45deg);
  transform: translateY(6px) rotate(-45deg);
}
#btn01.active span:nth-of-type(2) {
  opacity: 0;
}
#btn01.active span:nth-of-type(3) {
  -webkit-transform: translateY(-6px) rotate(45deg);
  transform: translateY(-6px) rotate(45deg);
}

/* ***************************************************************
  home.php
******************************************************************
  トップページのスタイルを指定します


*************************************************************** */
.handicap {
  margin-left: 10%;
  margin-right: 10%;
  box-shadow: 0 0 8px grey;
}
.handicap-title-container {
  background-color: #0d335f;
}
.handicap-title {
  display: flex;
  height: auto;
  padding: 20px 0;
  line-height: 24px;
  color: #ffffff;
  margin: 0 auto;
  width: 75%;
  max-width: 740px;
}
.handicap-title-required {
  color: #8c1018;
  font-weight: bolder;
  font-size: 1.9rem;
  background-color: #fff;
  display: block;
  margin-top: 5px;
  height: 51px;
  line-height: 51px;
  min-width: 103px;
  width: 103px;
  outline: solid 3px #8c1018;
  text-align: center;
}

.handicap_image {
  width: 200px;
  filter: drop-shadow(0px 0px 5px rgba(0,0,0,0.4));
}
  
.handicap-body-detail a {
  color: #0d335f;
}

.top_img_pc {
  margin-top: 70px;
}

.top_img_sp {
  display: none;
}

div#top-main {
  position: relative;
  padding-right: 10%;
  padding-left: 10%;
}

.about-background {
  padding-right: 10%;
  padding-left: 10%;
  background: linear-gradient(to right, #f9f4ee 0%, #f9f4ee 76.316%, #fff 76.316%, #fff 100%);
  padding-bottom: 150px;
}

#about .text_important {
  color: red;
}

/* ********トップページのメディアクエリ******** */

@media (max-width: 1199px) {
  .handicap-title {
    padding: 20px 0;
    width: 90%;
  }
}
@media (max-width: 991px) {
  .handicap-title {
    display: block;
    width: 90%;
  }
  .handicap-title-required {
    margin: 0 auto 10px auto;
    font-size: 1.5rem;
    height: 45px;
    line-height: 45px;
    min-width: 87px;
    width: 87px;
  }
}
.handicap-title-text {
  font-size: 1rem;
  line-height: 1.7rem;
  color: #ffffff;
  text-align: left;
  font-weight: bold;
  margin: auto 0 auto 20px;
}
@media (max-width: 991px) {
  .handicap-title-text {
    margin-left: 0;
  }
}
.handicap-title-text span {
  display: inline-block;
  align-items: center;
}
.handicap-title-text .spOnly {
  display: none;
}
.handicap-body {
  font-size: 1rem;
  padding: 20px 20px;
  background: #ffffff;
  margin: 0;
  border: solid 3px #0d335f;
}
.handicap-body table td:nth-of-type(1) {
  padding: 0 10px 0 0;
  text-align: center;
}
.handicap-body table td:nth-of-type(2) {
  padding: 0 0 0 10px;
}
@media (max-width: 991px) {
  .handicap-title-text .pcOnly {
    display: none;
  }
  .handicap-title-text .spOnly {
    display: block;
  }
  .pcOnly {
    display: none;
  }
  .handicap-body table td {
    display: block;
  }
  .handicap-body table td:nth-of-type(1) {
    padding: 0 0 10px 0;
  }
  .handicap-body table td:nth-of-type(2) {
    padding: 10px 0 0 0;
  }
}
@media (max-width: 767px) {
  .handicap-title-text {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .handicap-body {
    padding: 20px 10px;
  }
  .handicap {
    margin-left: 5%;
    margin-right: 5%;
  }
}

@media (max-width: 1199px) {
  .about-background {
    padding-bottom: 100px;
  }
}

/* *******　トップページのメディアクエリ終了　******* */

/**************************/
/*     トップバナー部分    */
/**************************/
.top-banner {
  position: relative;
  padding: 0;
  margin-right: 10.417%;
  margin-left: 10.417%;
  padding-top: 30px;
  padding-bottom: 30px;
}

.top-banner .backgroundcolor {
  position: absolute;
  background-color: #eeece7; /* 背景色指定 */
  left: 0px; /* 左からの位置指定 */
  top: 0px;
  width: 110%;
  height: 800px;
  margin-left: -26.316%;
  z-index: -20;
}

div.col-xl-6 {
  padding: 0;
  margin: 0;
}

/**************************/
/*      お知らせ部分       */
/**************************/
#news {
  background-color: #ffffff;
  width: 100%;
  padding: 40px 10%;
  margin: auto;
  box-shadow: 4px 0 10px #b8b8b8;
  z-index: 10;
}

.news_title {
  display: flex;
  position: relative;
}

#news h2.title {
  width: 200px;
  min-width: 200px;
  margin: -6px 0 0 0;
}

.news_underline {
  text-decoration: underline;
  text-decoration-color: #c49557;
  text-decoration-thickness: 2.5px;
  text-underline-offset: 10px;
}

#news .news_select {
  position: absolute;
  top: 10px;
  left: 200px;
  height: 20px;
  font-size: 0.8rem;
  white-space: nowrap;
  overflow-x: scroll;
  overflow-y: hidden;
  width: 65%;
  -ms-overflow-style: none; /* IE, Edge 対応 */
  scrollbar-width: none; /* Firefox 対応 */
}
#news .news_select::-webkit-scrollbar {
  /* Chrome, Safari 対応 */
  display: none;
}

.news_select form button {
  border: none;
  outline: none;
  background: transparent;
  outline: none;
}

#news .box_srcollbar {
  padding-inline-start: 0;
  margin-top: 15px;
  width: 100%;
  height: 300px;
  overflow: auto;
  word-break: break-all;
}

/*スクロールバーの横幅指定*/
#news .box_srcollbar::-webkit-scrollbar {
  width: 3px;
  height: 1px;
}
/*スクロールバーの背景色・角丸指定*/
#news .box_srcollbar::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #ffffff;
}
/*スクロールバーの色・角丸指定*/
#news .box_srcollbar::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #c49557;
}

#news .news_list{
  padding: 0;
}
#news .news_list li{
list-style: none;
line-height: 2.5rem;
}
@media (max-width: 767px) {
  #news .news_list li{
    line-height: 3rem;
    }
}

#news .news_list .news_left{
  width: 15rem;
}
#news .news_list .news_left .news_category{
  font-weight: bold;
}

#news .news_list .news_right{
  width: calc(100% - 15rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 767px) {
  #news .news_list .news_right{
    width: 100%;
    }
}

#news small {
  opacity: 0.6;
}

#news .text_line {
  text-decoration: underline;
}

.sp_block {
  display: flex;
}

/**************************/
/*      試合検索部分       */
/**************************/
h2.title {
  font-size: 2rem;
  letter-spacing: 0.2em;
  line-height: 1.1;
  font-weight: bold;
}
h2::after {
  content: attr(data-title);
  display: inline-block;
  color: #c49557;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  line-height: 1.7;
  margin-bottom: -20px;
}

.qualify_entryfee h2::after {
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  line-height: 1.7;
  font-weight: normal;
  color: #ffffff;
  display: block;
}
footer h2::after {
  color: #ffffff;
  font-weight: normal;
  font-size: 1.3rem;
  display: block;
  letter-spacing: 0.2em;
  line-height: 1.7;
  margin-top: 8px;
}

#top_banner_search {
  background-image: url("./images/search_background.png");
  background-size: cover;
  padding-bottom: 20px;
  padding-right: 10%;
  padding-left: 10%;
  box-shadow: 0px 0px 12px #24242429;
  margin-bottom: 6px;
  background-position: center;
}

#frame_search_top {
  background-color: white;
  padding-top: 0;
  z-index: 10;
  border: solid 2px #0d335f;
  box-shadow: 0 0 8px grey;
}

/* ****** 試合検索部分メディアクエリ ****** */
@media (max-width: 576px) {
  #top_banner_search {
    padding-right: 5.3%;
    padding-left: 5.3%;
  }
}

/**************************/
/*      大会について       */
/**************************/
#medals {
  padding: 0;
  margin: 0;
  /* 縦方向を揃える */
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
  align-items: center; /* 縦方向中央揃え */
}

#medals figure {
  position: absolute;
  right: -25%;
  width: 100%;
  max-width: 680px;
  height: 340px;
  padding: 0;
  margin: 0;
}

@media (max-width: 1199px) {
  #medals figure {
    height: 250px;
  }
}

#medals figure.slider img {
  padding: 0;
  margin: 0;
  object-fit: cover;
}

#about {
  width: 94.7%;
  padding: 90px 0 0 0;
  margin: 0;
}

#about .about-black,
#about .about-blue {
  font-weight: bold;
}

#about p {
  letter-spacing: 0.06em;
  margin-bottom: 0;
  font-size: 1rem;
  margin-bottom: 2rem;
}

#about h2.title {
  margin-bottom: 50px;
}
#about > a{
  color: #000000;
  text-decoration-line: underline;
  font-size: 1.1rem;
}

/* ブラッククラス、ブルークラス */
#classEntry {
  margin-top: -50px;
  margin-bottom: 100px;
}
.classEntry_pc {
  display: flex;
  justify-content: center;
}
.classEntry_sp {
  display: none;
}

#classEntry .black_class,
#classEntry .blue_class {
  position: relative;
  height: 100%;
}
#classEntry .black_class .black_class_text,
#classEntry .black_class .classEntryButton,
#classEntry .blue_class .blue_class_text,
#classEntry .blue_class .classEntryButton {
  position: absolute;
  width: 90%;
  height: 50px;
  bottom: 3%;
  margin-left: 5%;
  margin-right: 5%;
  font-weight: bold;
}

#classEntry .black_class,
#classEntry .blue_class {
  width: 30%;
}
#classEntry .black_class {
  margin: 0 5% 0 8%;
}
#classEntry .blue_class {
  margin: 0 8% 0 5%;
}

#classEntry .black_class figure,
#classEntry .blue_class figure {
  margin-bottom: 0;
}

#classEntry div figure img {
  width: 100%;
}

/* ブラッククラス、ブルークラスのそれぞれ */
.black_class_text,
.blue_class_text {
  position: relative;
}

.black_class:hover .black_class_text .hover_hide,
.blue_class:hover .blue_class_text .hover_hide {
  opacity: 0;
}
.black_class_text_title,
.blue_class_text_title {
  margin-top: 20px;
  text-align: center;
  font-weight: bold;
  font-size: 1.4rem;
}
.black_class_text_title_sub {
  text-align: center;
  font-size: 0.9rem;
  color: #ffffff;
}
.blue_class_text_title_sub {
  text-align: center;
  font-size: 0.9rem;
  color: #ffffff;
}

/* ホバーなし */
.black_class_text_title_header {
  background-color: #242424;
  color: #ffffff;
  padding: 10px 0;
}
.blue_class_text_title_header {
  background-color: #0d335f;
  color: #ffffff;
  padding: 10px 0;
}
.black_class_text_title_header .black_class_text_title,
.blue_class_text_title_header .blue_class_text_title {
  font-weight: bold;
  margin-top: 0;
}
.black_class_entry_button,
.blue_class_entry_button {
  background-color: #8c1018;
  color: #ffffff;
  padding: 8px 2px;
  margin-top: 0;
  text-align: center;
}

/**************************/
/*      CNバナー部分       */
/**************************/

#CN {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 150px;
}

#CN img {
  width: 100%;
  padding: 0;
}

#CN_sp {
  display: none;
}

@media (min-width: 991px) {
  #about p {
    font-size: 0.9rem;
  }
}

/**************************/
/*        facebook        */
/**************************/

.facebook_title_container {
  padding: 60px 10% 60px 10%;
  background-color: #f9f4ee;
}
.facebook_blocks_container {
  padding-left: 10%;
  background-color: #f9f4ee;
  height: 270px;
}
div.facebook_blocks {
  transform: scale(0.6);
  width: 166%;
  transform-origin: 0 0;
  display: flex;
  overflow-x: scroll;
  /* IE, Edge 対応 */
  -ms-overflow-style: none;
  /* Firefox 対応 */
  scrollbar-width: none;
}
div.facebook_blocks_sp {
  display: none;
  overflow-x: scroll;
  /* IE, Edge 対応 */
  -ms-overflow-style: none;
  /* Firefox 対応 */
  scrollbar-width: none;
}
.facebook_blocks::-webkit-scrollbar,
.facebook_blocks_sp::-webkit-scrollbar {
  /* Chrome, Safari 対応 */
  display: none;
}
/*スクロールバーの横幅指定*/
#facebook .box_srcollbar::-webkit-scrollbar {
  height: 10px;
}
/*スクロールバーの背景色・角丸指定*/
#facebook .box_srcollbar::-webkit-scrollbar-track {
  border-radius: 10px;
  background: transparent;
}
/*スクロールバーの色・角丸指定*/
#facebook .box_srcollbar::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #c49557;
}

.facebook_block {
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.2));
  margin-right: 4%;
}
.facebook_block div {
  overflow-y: scroll;
  height: 480px;
  -ms-overflow-style: none; /* IE, Edge 対応 */
  scrollbar-width: none; /* Firefox 対応 */
  background-color: #ffffff;
}
.facebook_block div::-webkit-scrollbar {
  /* Chrome, Safari 対応 */
  display: none;
}
.facebook_more_container {
  padding: 100px 10% 100px 10%;
  background-color: #f9f4ee;
}
.facebook_title_container h2 {
  text-align: center;
  font-size: 2rem;
  letter-spacing: 0.2em;
  font-weight: bold;
}
.facebook_title_at {
  text-align: center;
  font-size: 1.1rem;
  font-weight: bold;
  color: #c49557;
}

.facebook_more_container a {
  display: block;
  width: 46%;
  margin: 0 27%;
}

.facebook_more_container button {
  width: 100%;
  height: 50px;
  text-align: center;
  background-color: #0d335f;
  color: #fff;
  position: relative;
}
.facebook_more_container button::after{
  content: '＞';
  display: block;
  position: absolute;
  right: 1rem;
  top: 0.5rem;
  font-size: 1rem;
}
.nofacebook {
  font-size: 1.8rem;
  width: 100%;
  margin-left: 6.5%;
}
@media (min-width: 1200px) {
  .facebook_more_container a {
    width: 30%;
    margin: 0 35%;
  }
}

/**************************/
/*   qualify & entryfee   */
/**************************/
.bottom-visual .jumbotron {
  background-image: url("./images/hero-courses_trim.jpg");
  background-size: cover;
  color: #ffffff;
  height: 870px;
  padding: 0;
  margin: 0;
}

.bottom-visual div.jumbotron {
  margin-bottom: 0;
  display: flex;
}

.qualify_entryfee section {
  align-items: center;
  position: relative;
  text-align: center;
  background-color: #0d335f;
  color: #ffffff;
  height: 540px;
  width: 71.35%;
  margin: 150px auto 150px 20.83%;
  padding: 50px;
}

.qualify_entryfee_wrap {
  text-align: left;
  margin-top: 55px;
  padding: 0;
  font-size: 1.1rem;
}
.qualify_entryfee_wrap dd{
  margin: 0;
}
.qualify_entryfee_wrap dd.entryfee_corona{
  margin-top: 2rem;
}
.qualify_entryfee {
  width: 50%;
}
.qualify_entryfee dt {
  font-weight: 400;
}
.qualify_entryfee dd {
  margin: 0;
}
.qualify_entryfee:nth-of-type(1) section {
  margin: 150px 3rem 150px auto;
}
.qualify_entryfee:nth-of-type(2) section {
  margin: 150px auto 150px 3rem;
}
.entryfee_sub {
  position: absolute;
  bottom: 0;
  text-align: left;
  padding-bottom: 50px;
  padding-right: 80px;
  margin-left: 30px;
  margin-bottom: 0;
  display: block;
  line-height: 1.4;
}

/***** qualify & entryfeeメディアクエリ *****/
@media (max-width: 1400px) {
  .qualify_entryfee_wrap{
    font-size: 1rem;
  }
}


/* ***************************************************************
  footer.php
******************************************************************
  フッターのスタイルを指定します


*************************************************************** */

footer {
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  line-height: 1.7;
  background-color: #393939;
  color: #ffffff;
}

footer small {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  line-height: 1.7;
  font-weight: normal;
  display: block;
}

footer div div {
  font-size: 1rem;
  letter-spacing: 0.2em;
  line-height: 1.7;
}

#footer-main {
  padding: 0;
  margin-right: 10%;
  margin-left: 10%;
}

#footer-main div.contact {
  padding-top: 100px;
  margin-bottom: 100px;
}

#footer-main div.contact #contact_title {
  display: flex;
  align-items: center;
  justify-content: center;
}

#footer-main aside {
  margin-top: 40px;
  padding-bottom: 100px;
}

#footer-main div.contact h2 {
  font-weight: bolder;
}

#footer-main div.contact div {
  text-align: center;
}

#footer-main aside dt,
#footer-main aside dd  {
  font-size: 1rem;
  letter-spacing: 0.2em;
  line-height: 1.7;
  font-weight: 500;
}

#footer-main aside dt{
  margin-top: 30px;
  margin-bottom: 10px;
}

#footer-main aside dd {
  text-decoration: underline;
  margin: 0;

}
#footer-main aside a{
  color: #ffffff;
}

#footer-main small:nth-last-of-type(1){
  margin-bottom: 1rem;
}

.copyright {
  font-size: 0.65rem;
  letter-spacing: 0.02em;
  line-height: 1.7;
  color: #7c7c7c;
  background-color: #242424;
  text-align: center;
}

.img-fluid {
  width: 100%;
}

/* ***************************************************************
  back_to_top
******************************************************************
  トップに戻るボタン


*************************************************************** */

#pagetop {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  position: fixed;
  right: 50px;
  bottom: 50px;
  display: none;
  background-color: #0d335f;
  text-align: center;
  box-shadow: 0 0 8px #fff;
}
.pagetopImg {
  width: 20px;
  margin-top: 13px;
}

/* ***************************************************************
  competition_summary
******************************************************************
  大会概要ページのスタイルを指定します


*************************************************************** */
#competition_summary hr {
  border-bottom:solid 5px #0D335F;
  margin-bottom: 0;
}
#competition_summary th {
  width: 200px;
  padding: 40px 0 40px 25px;
  font-size: 1.25rem;
  font-weight: bold;
  vertical-align: middle
}
#competition_summary td {
  padding-top: 2rem;
  padding-bottom: 2rem;
  vertical-align: middle
}
#competition_summary tr:first-child th,
#competition_summary tr:first-child td{
  border-top:none;
}
#competition_summary td span {
color: #FF0000;
}
#competition_summary tr:nth-last-child(2){
  border-bottom:solid 5px #0D335F;
}
.info_area{
  background-color:#F9F4EE;
  padding: 3rem 1.5rem;
  margin-bottom: 3rem;
}
.info_area h5{
  font-weight: bold;
  margin-bottom: 1rem;
}
#competition_summary .mb7 {
  margin-bottom: 70px;
}
/* ***************************************************************
  competition_rules
******************************************************************
  競技ルールページのスタイルを指定します


*************************************************************** */
#competition_rules hr{
  border-bottom:solid 5px #0D335F;
  margin-bottom: 0;
}

.rules_list ul,
.rules_list ol{
  list-style: none;
  padding: 0;
  margin: 0;
}

.rules_list > dt{
  margin: 0.5rem 0 1.5rem;
  padding: 0.5rem 1.5rem;
  background-color:#F9F4EE;
  font-size: 1.3rem;
  letter-spacing: 1.6px;
}

.rules_list dt{
  font-weight: 700;
}
.rules_list_flex{
  display: flex;
}
.rules_ordered_list > div{
  border-bottom:solid 1px #BDBDBD;
}
.rules_ordered_list > div:last-child{
  margin-bottom: 100px;
}
.rules_ordered_list > div,
.rules_ordered_list > div > dt{
  margin-bottom: 1.5rem;
}
.rules_ordered_list  > div > dd{
 margin: 0;
}

.rules_ordered_list  > div > dd:last-child{
  margin-bottom: 1.7rem;;
 }

.rules_ordered_list span{
  margin-right: 0.5rem;
  color:#0D335F;
}
.rules_ordered_list small{
  font-size: 1rem;
}


/* ***************************************************************
  schedule
******************************************************************
  スケジュールページのスタイルを指定します


*************************************************************** */
.schedule_border {
  margin-top: 10px;
  margin-bottom: 10px;
}
#searchform table{
  width: 100%;
}

/* チェックボックス */
/* 元々のチェックボックス（非表示） */
#searchform table tbody tr td input[type="checkbox"] {
  display: none;
}
/* チェックボックスの代わりを成すラベル */
#searchform table tbody tr td input[type="checkbox"] + label {
  display: none;
  cursor: pointer;
  display: inline-block;
  position: relative;
  padding-left: 25px;
  /* padding-right: 10px; */
}
/* ラベルの左に表示させる正方形のボックス□ */
#searchform table tbody tr td input[type="checkbox"] + label::before {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 15px;
  height: 15px;
  margin-top: -10px;
  margin-left: -5px;
  left: 0;
  top: 52%;
  border: 1px solid;
  border-color: #585753; /* 枠の色変更 お好きな色を */
  background-color: #fff; /* 背景の色変更 お好きな色を */
  border-radius: 0.2rem;
}
/* ラベルの左に表示させる正方形のボックス□ */
#searchform table tbody tr td input[type="checkbox"]:checked + label::before {
  border: 0px solid;
  border-color: #fff; /* 枠の色変更 お好きな色を */
  background-color: #0d335f; /* 背景の色変更 お好きな色を */
}
/* チェックが入った時のレ点 */
#searchform table tbody tr td input[type="checkbox"]:checked + label::after {
  font-family: "Font Awesome 6 Free";
  font-size: 14px;
  font-weight: 600;
  content: "\f00c";
  position: absolute;
  display: block;
  top: -2px;
  left: -4px;
  color: #fff;
}

#searchform table tbody tr.category_tr td input[type="checkbox"]:checked + label::after{
  top: 10px;  
}
@media (max-width: 576px) {
  #searchform table tbody tr.category_tr td input[type="checkbox"]:checked + label::after{
    top: 8px;  
  }
}


/* 検索プルダウン */
.schedule_title_top {
  position: relative;
  height: 50px;
  margin-top: 100px;
}
.schedule_title_top .text_title {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}
.search_position {
  position: relative;
}
.schedule_popup {
  position: absolute;
  right: 0;
  bottom: 0;
}
.schedule_popup span {
  font-weight: bold;
}

#frame_search {
  transition: 0.2s;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 20px;
  background-color: white;
  border: solid 2px #0d335f;
  padding-top: 0;
  z-index: 10;
  width: 100%;
}

/* 絞り込み吹き出しの三角形 */
#frame_search::before {
  content: "\25B8";
  display: block;
  font-size: 2em;
  height: 0;
  line-height: 0;
  position: absolute;
  color: #fff;
  top: -543px;
  right: -500px;
  -moz-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  width: 100%;
  text-shadow: 2px 0 1px #0d335f;
  z-index: 15;
}

#searchButton {
  width: 20px;
}

/* schedule_popup:hover の後にすぐ続くframe_search */
.schedule_popup:hover + #frame_search {
  visibility: visible;
  opacity: 1;
}
#frame_search:hover {
  visibility: visible;
  opacity: 1;
}

#frame_search section div.wrapper {
  display: flex;
  justify-content: center;
}
#frame_search_top section div.wrapper {
  display: flex;
  justify-content: center;
}

#searchform {
  letter-spacing: 0.1rem;
  width: 90%;
  margin: 0;
  padding: 20px 0;
}
#searchform table tbody tr {
  border-bottom: solid 1px #0d335f;
  line-height: 40px;
}
#searchform table tbody tr #label_black,
#searchform table tbody tr #label_blue {
  line-height: 23px;
}
@media (max-width: 576px) {
  #searchform table tbody tr #label_black,
  #searchform table tbody tr #label_blue {
    line-height: 18px;
  }
}
#searchform table tbody tr:last-child {
  border-bottom: none;
}
#searchform table tbody tr th {
  width: 120px;
  padding: 1px 0 0 0;
}
#searchform table tbody tr td label {
  margin: 10px 0 10px 0;
}
#searchform table tbody tr td label input {
  margin-right: 5px;
}
.areaBtn {
  text-align: center;
}
#searchsubmit {
  border-width: 0;
  background-color: #0d335f;
  color: white;
  width: 250px;
  height: 50px;
}

.category_tr th {
  width: 7.5rem;
}

.category_tr td label{
  width: 300px;
}

.year_month_tr td label{
  width: 190px;
}

.condition_tr td label {
  width: 220px;
}

/* 検索結果 */
.schedule_class {
  padding-top: 0;
}
.schedule_class .year_month {
  position: relative;
  padding: 80px 25px 0 25px;
  margin-top: 50px;
  margin-bottom: 50px;
  background-color: #f9f4ee;
}
.schedule_row {
  margin-bottom: 3rem;
}
.schedule_class .year_month_title {
  position: absolute;
  top: 0;
  font-weight: bold;
  letter-spacing: 0.1rem;
  font-size: 1.35rem;
  padding-top: 35px;
}
.schedule_class .year_month:first-child {
  margin-top: 0;
}
.schedule_class .year_month:empty {
  display: none;
}
.schedule_class .cmt {
  margin-top: -30px;
  margin-bottom: 0;
  padding-bottom: 20px;
}

#label_black {
  color: #242424;
  font-weight: bold;
}
#label_blue {
  color: #0d335f;
  font-weight: bold;
}

/* ***************************************************************
 schedule/black/blue
******************************************************************
大会スケジュールの投稿のスタイルを指定します


*************************************************************** */
.competition_img_sp {
  display: none;
}

/* 大会スケジュールスタイル */
.schedule_title {
  font-size: 1rem;
  padding: 10px 25px;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.7;
  margin: 0;
}

.caution_cancel {
  padding: 0 20px 20px 20px;
  color: #8c1018;
}

.match_day span {
  font-size: 2rem;
  font-weight: bold;
}

.schedule_row hr.border_verticle {
  margin: auto 0;
  height: 80px;
  border-top: none;
  width: auto;
  border-right: 2px solid #707070;
}

.schedule_row hr {
  width: 100%;
  border-top: 2px solid #707070;
  margin: 0;
}

.schedule_content {
  align-items: center;
  padding: 10px 25px;
  margin: 0;
}

.schedule_main a {
  font-size: 1.8rem;
  font-weight: bold;
  border-bottom: solid 1px;
}

.schedule_content p{
  margin: 0;
}
.schedule_row {
  background-color: #fff;
}

#match_day {
  line-height: 1.5;
}

.schedule_link {
  display: flex;
  align-items: center;
  margin-left: 20px;
  gap: 20px;
}

.schedule_link p {
  color: #7c7c7c;
  margin: 0;
}
.schedule_link a span,
.schedule_link p span,
.text_closed_s span{
  text-decoration: underline solid;
}
.schedule_link a {
  color: #902201 !important;
  margin: 0;
}
.schedule_row button {
  display: block;
  margin: 20px 0 20px auto;
}

#page_schedule .border_b {
  border-bottom:solid 5px #0D335F;
}

/* fax部分 */
.fax_download {
  background-image: url("./images/hero-courses.jpg");
  background-size: cover;
  padding: 40px;
  margin-top: 100px;
}
.fax_download h1 {
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.fax_row {
  display: flex;
  justify-content: center;
}

.fax_row a{
  margin: 10px 20px;
  font-size: 0.9rem;
}

.fax_row a:hover{
  color: #fff;
}

.fax_download button{
  background-color: #8c1018;
  text-align: center;
  width: 220px;
  padding: 10px 20px;
  color: #fff;
  cursor: pointer;
  max-width: 280px;
}

.fax_download a.btn_inactive button{
  background-color: #7c7c7c;
  color: #bfbfbf;
}

/*Styling Selectbox*/

* {
  outline: 0;
}

.dropdown {
  width: 300px;
  display: inline-block;
  background-color: #075137;
  transition: all 0.5s ease;
  position: relative;
  color: #fff;
  height: 100%;
  text-align: left;
}

.dropdown .select {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  padding: 10px;
}

.dropdown .select > i {
  font-size: 0.7rem;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  float: right;
  line-height: 20px;
}

.dropdown:hover {
  box-shadow: 0 0 4px rgb(204, 204, 204);
}

.dropdown.active:hover,
.dropdown.active {
  box-shadow: 0 0 4px rgb(204, 204, 204);
}

.dropdown.active .select > i {
  transform: rotate(-180deg);
}

.dropdown .dropdown-menu {
  position: absolute;
  background-color: #eedcdd;
  width: 100%;
  left: 0;
  overflow: hidden;
  display: none;
  overflow-y: auto;
  z-index: 9;
  border-radius: 0;
  border: none;
  margin-top: 0;
}

.dropdown .dropdown-menu li {
  padding: 10px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.dropdown .dropdown-menu {
  padding: 0;
  list-style: none;
}

.dropdown .dropdown-menu li:hover {
  background-color: #fbf7f7;
}



/*********************** メディアクエリ ***********************/

/* PC（画面サイズ：大） */

@media (max-width: 1199px) {

  /* ブラッククラス、ブルークラス */
  #classEntry {
    margin-top: 60px;
    margin-bottom: 130px;
  }
  .classEntry_pc {
    display: none;
  }
  .classEntry_sp {
    display: block;
  }

  #classEntry .black_class,
  #classEntry .blue_class {
    width: 100%;
  }
  #classEntry .black_class,
  #classEntry .blue_class {
    margin-left: 0;
    margin-top: 150px;
  }

  #classEntry .black_class figure,
  #classEntry .blue_class figure {
    margin-bottom: 0;
  }

  #classEntry div figure img {
    width: 100%;
  }

  #classEntry .black_class figure img,
  #classEntry .blue_class figure img {
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    filter: grayscale(0%);
  }

  /* ブラッククラス、ブルークラスのそれぞれ */
  .black_class:hover .black_class_text .hover_hide,
  .blue_class:hover .blue_class_text .hover_hide {
    opacity: 1;
  }
  .black_class_text_title,
  .blue_class_text_title {
    margin-top: 20px;
    text-align: left;
    font-weight: bold;
    font-size: 1.4rem;
  }
  .black_class_text_title_sub {
    text-align: left;
    font-size: 0.9rem;
    color: #ffffff;
    margin-left: 10px;
  }
  .blue_class_text_title_sub {
    text-align: left;
    font-size: 0.9rem;
    color: #ffffff;
    margin-left: 10px;
  }
  #classEntry .classEntryButton {
    background-color: #8c1018;
    color: #ffffff;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  #classEntry .classEntryButton a {
    padding: 10px;
    color: #ffffff;
    font-weight: bold;
  }

  /********************/
  /*    CNバナー部分   */
  /********************/

  #CN {
    display: none;
  }
  #CN_sp {
    display: block;
    text-align: center;
    margin-top: -50px;
    margin-bottom: 0;
  }
  #CN_sp img {
    width: 100%;
    padding: 0;
  }


  /*****************/
  /*    facebook   */
  /*****************/
  .facebook_blocks_container {
    padding-left: 10%;
    height: 270px;
    overflow-x: scroll;
    overflow-y: hidden;
    -ms-overflow-style: none; /* IE, Edge 対応 */
    scrollbar-width: none; /* Firefox 対応 */
  }
  div.facebook_blocks {
    display: none;
  }
  div.facebook_blocks_sp {
    display: flex;
    transform: scale(0.6);
    transform-origin: 0 0;
    overflow-x: scroll;
    width: 4000px;
    -ms-overflow-style: none; /* IE, Edge 対応 */
    scrollbar-width: none; /* Firefox 対応 */
  }
  .facebook_block {
    height: 400px;
    margin-right: 40px;
    width: 480px;
    overflow-y: scroll;
    -ms-overflow-style: none; /* IE, Edge 対応 */
    scrollbar-width: none; /* Firefox 対応 */
  }
  .facebook_blocks_container::-webkit-scrollbar,
  .facebook_blocks::-webkit-scrollbar,
  .facebook_block::-webkit-scrollbar {
    /* Chrome, Safari 対応 */
    display: none;
  }

  /**************************/
  /*   qualify & entryfee   */
  /**************************/

  .bottom-visual div.jumbotron {
    display: block;
  }

  .qualify_entryfee {
    width: 100%;
    height: 435px;
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .qualify_entryfee:nth-of-type(1) section,
  .qualify_entryfee:nth-of-type(2) section{
    margin: auto;
    width: 89.3%;
    height: 375px;
  }
  .qualify_entryfee_wrap {
    text-align: left;
    margin: 40px 180px 40px 180px;
    padding: 0;
  }
  .entryfee_sub {
    position: absolute;
    bottom: 0;
    text-align: left;
    padding-bottom: 20px;
    padding-left: 180px;
    padding-right: 40px;
  }

/* ***************************************************************
footer
******************************************************************
フッターのスタイルを指定します


*************************************************************** */

  #footer-main .table tr th {
    font-size: 0.8rem;
  }

/* ***************************************************************
schedule
******************************************************************
スケジュールページのスタイルを指定します


*************************************************************** */
  /* スケジュール */
  #frame_search::before {
    top: -453px;
    right: -400px;
  }
}


/***************************** タブレット（画面サイズ：中）*****************************/

@media (max-width: 991px) {
/* ***************************************************************
  共通style
******************************************************************
  共通のスタイルを指定します


*************************************************************** */
  .br_pc {
    display: none;
  }
  .br_sp {
    display: block;
  }

  header {
    display: none;
  }

  .drawer-nav {
    align-items: center;
    display: flex;
    transform: translate(100%, 0%);
    transition: 0.4s ease-in-out;
    position: fixed;
    top: 0;
    flex-direction: row;
    width: 100%;
    height: 100%;
    background-color: transparent;
    opacity: 0.9;
  }
  .drawer-nav.active {
    transform: translate(0, 0);
  }
  .drawer-nav-bg {
    display: flex;
    transform: translate(100%, -100%);
    transition: 0.4s ease-in-out;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    opacity: 0.9;
  }
  .drawer-nav-bg.active {
    flex-direction: row;
    background-color: #8c1018;
    opacity: 0.9;
    transform: translate(0, 0);
  }

  .ham_dropdown {
    display: block;
  }
  .btn-trigger {
    top: 10px;
    right: 10px;
  }
  .btn-trigger.active {
    background-color: #fff;
    opacity: 80%;
  }
  .btn-trigger.active span {
    background-color: #8c1018;
  }
  /*=============================
  #btn01 shadow
  =============================*/
  div#btn01.btn-trigger {
    box-shadow: 0 0 8px #cccccc;
  }
  .ham_logo img {
    display: inline;
  }
  .ham_logo {
    width: 40%;
    text-align: center;
  }
  .ham_menu {
    width: 60%;
  }
  .menu-close {
    display: none;
  }

  .top_img_pc {
    margin: 0;
  }

  .header-fixed-bar {
    display: none;
  }

  /*****************/
  /*  トップページ  */
  /*****************/

  .about-background {
    padding-bottom: 100px;
  }
  #medals figure {
    height: 250px;
  }

  /*****************/
  /*    facebook   */
  /*****************/
  .nofacebook {
    margin-left: 0.5%;
  }

  /*****************/
  /*    footer     */
  /*****************/
  #footer-main div.contact {
    padding-top: 0;
    margin-bottom: 0;
  }
  #footer-main aside  {
    margin-top: 0;
    padding-bottom: 40px;
  }
  #footer-main div.contact h2 {
    margin-top: 40px;
  }
  #footer-main .tel a {
    font-size: 1.2rem;
  }

  .qualify_entryfee:nth-of-type(1) {
    width: 100%;
    padding-top: 40px;
    padding-bottom: 20px;
  }
  
  .qualify_entryfee:nth-of-type(2) {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 40px;
  }
  
  .qualify_entryfee section {
    padding: 20px 40px 40px 20px;
  }

  .qualify_entryfee_wrap {
    margin: 40px 80px 40px 80px;
  }
  .entryfee_sub {
    padding-bottom: 20px;
    padding-left: 40px;
    padding-right: 40px;
  }

/* ***************************************************************
  schedule
******************************************************************
スケジュールページのスタイルを指定します


*************************************************************** */
  .schedule_title_top {
    height: 30px;
  }
  #frame_search::before {
    top: -333px;
    right: -280px;
  }

  .schedule_popup {
    top: -25px;
  }
  .schedule_class .cmt {
    font-size: 0.8rem;
  }

/* ***************************************************************
 schedule/black/blue
******************************************************************
大会スケジュールの投稿のスタイルを指定します


*************************************************************** */
  .border_pc {
    display: none;
  }
  .border_sp {
    display: block;
  }
  .schedule_row button{
    width: 100%;
    padding: 8px 20px;
    margin: 10px auto;
  }
  .text_title {
    font-size: 1.2rem;
  }
  .schedule_title,
  .match_day span,
  .schedule_main a {
    font-size: 1.2rem;
  }

  .schedule_row hr {
    width: 90%;
    margin: 0 auto;
  }

/*****************/
/*      fax      */
/*****************/
  .fax_row {
    flex-direction: column;
    align-items: center;
  }
  .fax_row p {
    margin: 10px auto;
  }
  .fax_download {
    margin-top: 0px;
  }
}

/* ****************************** スマートフォン（画面サイズ：小）****************************** */

@media (max-width: 767px) {
/* ***************************************************************
  home.php
******************************************************************
  トップページのスタイルを指定します


*************************************************************** */
  div#top-main {
    padding: 0;
    margin-top: 0px;
    margin-right: 5.33%;
    margin-left: 5.33%;
  }
  .top-banner .backgroundcolor {
    width: 90%;
    height: 1000px;
  }

  .sp_block {
    display: block;
  }

  #about {
    margin-top: 100px;
    padding-top: 0;
    width: 100%;
  }
  #about h2.title {
    margin-top: 50px;
  }

  #medals {
    margin-top: 20px;
  }
  #medals figure {
    position: relative;
    width: 100%;
    right: inherit;
    margin-bottom: 10px;
  }
  .top-banner {
    margin: 0 5.33% 0 5.33%;
    padding-top: 40px;
    padding-bottom: 0;
  }

  #classEntry .classEntryButton {
    max-width: inherit;
    font-size: 0.85rem;
  }

  /********************/
  /* qualify_entryfee */
  /********************/

  .qualify_entryfee section {
    margin: 0 5.33% 0 5.33%;
    padding: 20px;
  }

  .qualify_entryfee_wrap {
    margin: 40px 0px 40px 0px;
  }
  .entryfee_sub {
    padding-bottom: 20px;
    padding-left: 0px;
    padding-right: 20px;
  }
  .entryfee_sub small {
    font-size: 0.7rem;
  }

/* ***************************************************************
  competition_summary
******************************************************************
  大会概要ページのスタイルを指定します


*************************************************************** */
  #competition_summary hr.mb-0 {
    margin-top: 0.5rem;
  }

  #competition_summary th,
  #competition_summary td {
    border-bottom: none;
    border-top: none;
    display: block;
    width: 100%;
  }
  #competition_summary th {
    padding-left: 0;
    padding-top: 20px;
    padding-bottom: 0;
    margin-bottom: 0;
    font-size: 1.1rem;
  }
  #competition_summary td {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
  }
  #competition_summary tr {
    border-bottom: 1px solid;
  }
  #competition_summary tr:last-child {
    border-bottom: none;
  }

/* ***************************************************************
  competition_rules
******************************************************************
  競技ルールページのスタイルを指定します


*************************************************************** */
  #competition_rules hr.mb-0 {
    margin-top: 0.5rem;
  }
  #competition_rules div p {
    margin-bottom: 1.1rem !important;
  }

/* ***************************************************************
schedule
******************************************************************
スケジュールページのスタイルを指定します


*************************************************************** */
  #frame_search::before {
    top: -243px;
    right: -200px;
  }

/* ***************************************************************
 schedule/black/blue
******************************************************************
大会スケジュールの投稿のスタイルを指定します


*************************************************************** */
  .schedule_link {
    margin-top: 10px;
  }
  .fax_download h1 {
    font-size: 1.2rem;
  }


/* ***************************************************************
　footer
******************************************************************
  トップページのスタイルを指定します


*************************************************************** */
  #contact_wrapper h2 {
    font-size: 1.2rem;
    display: inline-block;
  }
  footer h2::after,
  footer h3{
    font-size: 0.7rem;
  }
  #footer-main small:nth-last-of-type(1){
    margin: 0;
  }
}

/***************************** スマートフォン（画面サイズ：小）*****************************/

@media (max-width: 576px) {
  .top-margin_sp {
    margin-top: 100px;
  }
/* ***************************************************************
  home
******************************************************************
  トップページのスタイルを指定します


*************************************************************** */
  /* スマートフォン　フォントサイズ */
  h2.title {
    font-size: 1.5rem;
  }

  .news_underline {
    text-decoration: none;
  }

  #medals {
    margin-top: 30px;
  }

  h2::after{
    font-size: 0.8rem;
  }
  .qualify_entryfee h2::after {
    font-size: 1rem;
  }
  .qualify_entryfee_wrap {
    font-size: 0.9rem;
  }
  .top_img_sp {
    display: block;
    padding: 0;
    width: 100%;
    z-index: 0;
  }
  .top_img_pc {
    display: none;
  }
  div#top-main {
    margin-top: 0;
  }
  #news .news_select {
    display: none;
    top: 15px;
    left: 47%;
    width: 50%;
    overflow-x: auto;
    white-space: nowrap;
  }
  #news .box_srcollbar {
    height: 300px;
  }
  #news h2.title {
    width: 100%;
    text-align: center;
  }

  #about {
    margin-top: 0;
  }
  #about h2.title {
    margin-top: 40px;
    margin-bottom: 20px;
  }

  #classEntry .black_class,
  #classEntry .blue_class {
    margin-top: 50px;
  }

  /********************/
  /*      facebook    */
  /********************/

  .facebook_title_container h2 {
    font-size: 1.5rem;
  }
  .facebook_title_container {
    padding: 40px 10% 30px 10%;
  }

  .facebook_blocks_container {
    padding-left: 5%;
    height: 180px;
    overflow-x: scroll;
    overflow-y: hidden;
    -ms-overflow-style: none; /* IE, Edge 対応 */
    scrollbar-width: none; /* Firefox 対応 */
  }
  div.facebook_blocks {
    display: none;
  }
  div.facebook_blocks_sp {
    display: flex;
    transform: scale(0.45);
    transform-origin: 0 0;
    overflow-x: scroll;
    width: 4000px;
    -ms-overflow-style: none; /* IE, Edge 対応 */
    scrollbar-width: none; /* Firefox 対応 */
  }
  .facebook_block {
    height: 400px;
    margin-right: 40px;
    width: 480px;
    overflow-y: scroll;
    -ms-overflow-style: none; /* IE, Edge 対応 */
    scrollbar-width: none; /* Firefox 対応 */
  }

  .facebook_blocks_container::-webkit-scrollbar,
  .facebook_blocks::-webkit-scrollbar,
  .facebook_block::-webkit-scrollbar {
    /* Chrome, Safari 対応 */
    display: none;
  }

  .facebook_more_container {
    padding: 30px 4.5% 80px 4.5%;
  }

  .facebook_more_container a {
    width: 100%;
    margin: 0;
  }

  .nofacebook {
    font-size: 2.5rem;
    margin-left: 0;
  }

/**************************/
/*   qualify & entryfee   */
/**************************/
  .qualify_entryfee_wrap {
    font-size: 0.9rem;
  }

/* ***************************************************************
schedule
******************************************************************
スケジュールページのスタイルを指定します


*************************************************************** */
  .competition_img_sp {
    display: block;
    padding: 0;
    width: 100%;
  }
  .competition_img_pc {
    display: none;
  }
  .schedule_popup span {
    display: none;
  }
  #frame_search::before {
    display: none;
  }
  #searchform table tbody tr td input[type="checkbox"] + label {
    margin: 0;
    padding-right: 0;
    width: 230px;
  }
  .category_tr td label,
  .year_month_tr td label {
    width: 124px;
    margin: 0;
    padding: 0;
  }
  .condition_tr td label {
    width: 130px;
    margin: 0;
    padding: 0;
  }
  table.line_btm tbody tr td {
    font-size: 0.7rem;
  }

  /* レポートページ */
  .single_report_date_type {
    font-size: 0.7rem;
  }
  .single_report_title {
    font-size: 1.3rem;
    margin-bottom: -10px;
  }
  .slider_report .slick-counter {
    top: 0;
    right: 0;
  }
  .slider_report .slick-dots {
    display: block !important;
  }
  /* 1 枚だけの場合はドット非表示 */
  .slider_report .slick-dots > li:first-child:last-child {
    display: none !important;
  }
  .next-arrow .next-arrow-img {
    display: none !important;
  }
  .prev-arrow .prev-arrow-img {
    display: none !important;
  }
  .single_report_movies_pc {
    display: none;
  }
  .single_report_movies_sp {
    display: block;
  }
  .single_report_movies {
    width: 95vw;
  }
  .back_to_information {
    width: 100%;
  }
  .single_report_container article {
    margin-bottom: 60px;
  }
  .sns_icon_image {
    width: 30px;
    margin-right: 10px;
    margin-left: 10px;
  }
  .line-it-button {
    transform: scale(0.7);
    transform-origin: 50% 180%;
  }

  .about-explanation {
    padding-top: 80px;
  }
}

/*************************** スマートフォン（画面サイズ極小） ***************************/

@media (max-width: 420px) {
  /* トップに戻るボタン */
  #pagetop {
    right: 10px;
    bottom: 20px;
  }

  #medals {
    margin-top: 20px;
  }

  .ham_menu ul li .sub-menu li a {
    font-size: 0.6rem;
    line-height: 1rem;
    padding: 5px 0;
  }

  .ham_menu ul li a {
    line-height: 2.6rem;
  }

  #news .box_srcollbar {
    height: 200px;
  }

/**************************/
/*  　　　 大会について　   */
/**************************/
  #about {
    margin-top: -80px;
  }

/**************************/
/*   qualify & entryfee   */
/**************************/
  .bottom-visual .jumbotron {
    background-position: -760px 0;
  }

  .qualify_entryfee {
    padding-top: 65px;
    padding-bottom: 35px;
  }
  .qualify_entryfee section {
    height: 335px;
  }

  .qualify_entryfee_wrap {
    margin: 20px 0px 40px 0px;
  }

  .entryfee_corona {
    margin-top: -10px;
    font-size: 0.7rem;
  }

/* ***************************************************************
competition_summary
******************************************************************
大会概要ページのスタイルを指定します


*************************************************************** */
  #competition_summary .info_area {
    padding: 2rem 1rem !important;
  }

/* ***************************************************************
schedule
******************************************************************
スケジュールページのスタイルを指定します


*************************************************************** */

  .category_tr td label {
    display: block !important;
    width: 150px;
  }
  .schedule_title {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
  .schedule_class .year_month {
    padding: 80px 15px 0 15px;
  }
/* ***************************************************************
 schedule/black/blue
******************************************************************
大会スケジュールの投稿のスタイルを指定します


*************************************************************** */
  .schedule_link {
    display: block;
  }
}

/**************************** スマートフォン（画面サイズ超極小） ****************************/

@media (max-width: 320px) {

  /**************************/
  /*   ハンバーガーメニュー   */
  /**************************/
  .ham_menu ul li a {
    line-height: 2.1rem;
    font-weight: normal;
    font-size: 0.8rem;
  }
  .ham_menu ul li .sub-menu li a {
    padding-bottom: 5px;
  }

  /**************************/
  /*    トップMV付近バナー   */
  /**************************/
  .top-banner {
    margin-top: 0;
  }

  /**************************/
  /*       　お知らせ　     */
  /**************************/

  #news .box_srcollbar {
    height: 240px;
  }

  /**************************/
  /*        大会について     */
  /**************************/
  #about {
    margin-top: -100px;
  }

  /**************************/
  /*   qualify & entryfee   */
  /**************************/

  .qualify_entryfee {
    margin-bottom: 25px;
    height: 395px;
  }

/* ***************************************************************
footer
******************************************************************
フッターのスタイルを指定します


*************************************************************** */
  #footer-main div div div h2 {
    font-size: 1.8rem !important;
  }
  #footer-main .table tr th div.contactform {
    line-height: 2rem;
    padding-top: 10px;
    padding-bottom: 10px;
  }

/* ***************************************************************
スケジュール
******************************************************************
スケジュールのスタイルを指定します


*************************************************************** */
  
  .schedule_title {
    font-size: 0.8rem;
  }

}  /*　スマートフォン（画面サイズ超極小）ここまで */



/* ***************************************************************
  contact
******************************************************************
  お問い合わせページのスタイルを指定します


*************************************************************** */
/* contctform7 */
table.std {
  width: 100%;
  border: 1px solid #ccc;
  margin: 1em 0;
}
table.std th {
  padding: 10px;
  border: 1px solid #ccc;
  background-color: #ededed;
  color: #222;
  vertical-align: top;
}
table.std td {
  padding: 10px;
  border: 1px solid #ccc;
}
table.std tbody tr th {
  text-align: center;
  vertical-align: middle;
}

span.hissu {
  text-align: center;
  vertical-align: middle;
  display: inline-block;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  background: #c24b4b;
  color: #fff;
  padding: 0 2px;
  margin: auto 2px 3px 6px;
  font-size: 0.4rem;
  border: 1px solid #fff;
  font-weight: normal;
  vertical-align: middle;
}
.wpcf7-form-control-wrap input {
  margin: 1px;
  padding: 10px;
  border: 0;
}
.wpcf7-form-control-wrap input[type="text"],
.wpcf7-form-control-wrap input[type="tel"],
.wpcf7-form-control-wrap input[type="email"] {
  width: 100%;
  background: #f1f1f1;
}
.wpcf7-form-control-wrap textarea {
  width: 100%;
  height: 150px;
  padding: 10px;
  background: #f1f1f1;
  border: 0;
}
.frame_privacy {
  border: 1px solid #ededed;
  margin: 15px auto;
  padding: 15px;
}
.frame_privacy .inframe {
  height: 250px;
  overflow-y: scroll;
}
.lv_h3 {
  margin-bottom: 1rem;
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #3a3a3a;
  font-weight: bold;
}
ol.number {
  counter-reset: number;
  list-style: none;
  margin: 0;
  padding: 0;
}
ol.number li {
  margin: 15px 0;
  background: none;
  padding: 0;
  list-style-type: none;
}
ol.number li:before {
  counter-increment: number;
  content: counter(number);
  float: left;
  background: #0d335f;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  line-height: 2;
  margin: 0 7px 0 0;
}
.fa-at:after {
  display: inline-block;
  content: "@";
  width: 1em;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
}
.textCenter {
  text-align: center;
}
span.wpcf7-list-item.first.last {
  margin: 0;
}
.wpcf7-list-item label {
  text-align: center;
  margin: 0;
}
.btnSend {
  text-align: center;
  padding: 20px 0 !important;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
.btnSend input[type="submit"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  padding: 20px 40px;
  background: #0d335f;
  color: #fff;
  font-size: 26px;
  border: 1px;
  cursor: pointer;
  margin: 0 3px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  box-shadow: 2px 2px 0px #c9c9c9;
  -moz-box-shadow: 2px 2px 0px #c9c9c9;
  -webkit-box-shadow: 2px 2px 0px #c9c9c9;
}
#contactform .border_b {
  border-bottom:solid 5px #0D335F;
}

#contactform ::placeholder {
  color: #BCBCBC;
}
#contactform .wpcf7-spinner {
  margin: 0px;
}
#contactform .wpcf7-list-item label input[type="checkbox"] + span {
  padding-right: 20px;
}

/* チェックボックス */
/* 元々のチェックボックス（非表示） */
.wpcf7-list-item label input[type="checkbox"] {
  display: none;
}
/* チェックボックスの代わりを成すラベル */
.wpcf7-list-item label input[type="checkbox"] + span {
  display: none;
  cursor: pointer;
  display: inline-block;
  position: relative;
  padding-left: 25px;
  padding-right: 10px;
}
/* ラベルの左に表示させる正方形のボックス□ */
.wpcf7-list-item label input[type="checkbox"] + span::before {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 15px;
  height: 15px;
  margin-top: -10px;
  left: 0;
  top: 57%;
  border: 1px solid;
  border-color: #585753; /* 枠の色変更 お好きな色を */
  background-color: #fff; /* 背景の色変更 お好きな色を */
  border-radius: 0.2rem;
}
/* ラベルの左に表示させる正方形のボックス□ */
.wpcf7-list-item label input[type="checkbox"]:checked + span::before {
  border: 0px solid;
  border-color: #fff; /* 枠の色変更 お好きな色を */
  background-color: #0d335f; /* 背景の色変更 お好きな色を */
}
/* チェックが入った時のレ点 */
.wpcf7-list-item label input[type="checkbox"]:checked + span::after {
  font-family: "Font Awesome 6 Free";
  font-size: 14px;
  font-weight: 600;
  content: "\f00c";
  position: absolute;
  display: block;
  top: 3px;
  left: 1px;
  color: #fff;
}

/* チェックが入っていない時のボタン */
div.wpcf7 .wpcf7-submit:disabled {
  background-color: #7c7c7c;
}

@media (max-width: 767px) {
  /* contactform7 */
  table.std {
    display: block;
    width: 100%;
    border: 0;
  }
  table.std tbody {
    display: block;
    width: 100%;
  }
  table.std tr {
    display: block;
    width: 100%;
  }
  table.std th {
    list-style-type: none;
    display: block;
  }
  table.std td {
    list-style-type: none;
    border: 0;
  }
  table.std th,
  table.std td {
    list-style-type: none;
    width: 100%;
    padding: 9px 10px;
    box-sizing: border-box;
    display: block;
  }
  .wpcf7-form-control-wrap input[type="text"],
  .wpcf7-form-control-wrap input[type="tel"],
  .wpcf7-form-control-wrap input[type="email"] {
    font-size: 0.8rem;
  }
  .wpcf7-form-control-wrap textarea {
    padding: 5px 1%;
    height: 150px;
    font-size: 0.8rem;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }
  .btnSend input[type="submit"] {
    padding: 15px 0;
    width: 95%;
    padding: 20px 40px;
  }
  #contactform ::placeholder {
    color: #BCBCBC;
  }
}