@charset "UTF-8";
html, body {
  color: #595757;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-style: normal;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8em;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
}
@media (max-width: 1400px) {
  html, body {
    font-size: 14px;
  }
}
@media (max-width: 900px) {
  html, body {
    font-size: 12px;
  }
}
@media (max-width: 520px) {
  html, body {
    font-size: 11px;
  }
}

html, body, main, div, section, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup,
var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  background: transparent;
  border: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

img {
  display: block;
  max-width: 100%;
  width: 100%;
}

ul li {
  list-style-type: disc;
  margin-left: 1.5em;
}

h2 {
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  line-height: 50px;
  background: url("../images/title-bg.png") no-repeat;
  background-size: cover;
}
@media (max-width: 900px) {
  h2 {
    line-height: 40px;
  }
}
@media (max-width: 520px) {
  h2 {
    line-height: 35px;
  }
}

a {
  display: block;
  color: #595757;
  text-decoration: none;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover {
  opacity: 0.6;
}

.pc-item {
  display: block;
}
@media (max-width: 900px) {
  .pc-item {
    display: none;
  }
}

.sp-item {
  display: none;
}
@media (max-width: 900px) {
  .sp-item {
    display: block;
  }
}

.to-top-btn {
  position: fixed;
  bottom: 5%;
  right: 2%;
  z-index: 100;
  color: #fff;
  background-color: #757575;
  border: 2px solid #757575;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 30px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (max-width: 900px) {
  .to-top-btn {
    font-size: 13px;
    width: 60px;
    height: 60px;
    padding-top: 26px;
  }
}
.to-top-btn:before {
  position: absolute;
  top: 20px;
  left: 50%;
  content: "";
  width: 15px;
  height: 15px;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
}
@media (max-width: 900px) {
  .to-top-btn:before {
    top: 17px;
    width: 10px;
    height: 10px;
  }
}
.to-top-btn:hover {
  color: #757575;
  background-color: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.to-top-btn:hover:before {
  border-left: 2px solid #757575;
  border-top: 2px solid #757575;
}

.common-btn {
  text-align: center;
}
.common-btn a {
  font-weight: bold;
  display: inline-block;
  color: #fff;
  padding: 0 0.5em 0 1em;
  line-height: 1.8em;
  background: url("../images/btn-bg.png") no-repeat;
}

.sec-line {
  display: block;
  height: 5px;
  margin-top: -1px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
}

.br900 {
  display: none;
}
@media (max-width: 900px) {
  .br900 {
    display: block;
  }
}

.br768 {
  display: none;
}
@media (max-width: 768px) {
  .br768 {
    display: block;
  }
}

.br520 {
  display: none;
}
@media (max-width: 520px) {
  .br520 {
    display: block;
  }
}

.contents-outer {
  position: relative;
  padding-top: 150px;
}
@media (max-width: 1400px) {
  .contents-outer {
    padding-top: 110px;
  }
}
@media (max-width: 900px) {
  .contents-outer {
    padding-top: 80px;
  }
}

.common-inner {
  max-width: 1020px;
  width: 90%;
  margin: 0 auto;
}

/*------------------ヘッダー------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 150px;
}
@media (max-width: 1400px) {
  header {
    height: 110px;
  }
}
@media (max-width: 900px) {
  header {
    height: 80px;
  }
}
header .header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  margin: 0 auto;
  padding: 16px 1.5%;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 1400px) {
  header .header-inner {
    padding: 20px 1.5%;
  }
}
@media (max-width: 900px) {
  header .header-inner {
    padding: 14px 1.5%;
  }
}
header .header-inner .header-logo {
  max-width: 323px;
}
@media (max-width: 1400px) {
  header .header-inner .header-logo {
    width: 190px;
  }
}
@media (max-width: 900px) {
  header .header-inner .header-logo {
    width: 140px;
  }
}
header .header-inner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 0 1.2%;
}
@media (max-width: 900px) {
  header .header-inner ul {
    display: none;
  }
}
header .header-inner ul li {
  list-style: none;
  margin-left: 0;
}
header .header-inner ul li a {
  display: block;
  color: #595757;
  border-right: 2px solid #595757;
  padding: 0 1.7em;
  line-height: 1.1em;
  font-size: 1.32rem;
  font-weight: bold;
  white-space: nowrap;
}
header .header-inner ul li:nth-last-child(1) a {
  border-right: none;
}
header .header-inner .hg-btn {
  display: none;
  position: relative;
  width: 50px;
  height: 50px;
  background: url("../images/hg-btn-bg.png") no-repeat;
  border-radius: 50%;
  cursor: pointer;
  z-index: 100;
}
@media (max-width: 900px) {
  header .header-inner .hg-btn {
    display: block;
  }
}
header .header-inner .hg-btn span {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  border-top: 2px solid #fff;
  width: 23px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .header-inner .hg-btn span:nth-child(1) {
  top: 35%;
}
header .header-inner .hg-btn span:nth-child(2) {
  top: 50%;
}
header .header-inner .hg-btn span:nth-child(3) {
  top: 65%;
}
header .header-inner .hg-btn.on span:nth-child(1) {
  top: 50%;
  left: 50%;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
header .header-inner .hg-btn.on span:nth-child(2) {
  opacity: 0;
}
header .header-inner .hg-btn.on span:nth-child(3) {
  top: 50%;
  left: 50%;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
header .hg-menu-outer {
  display: none;
  position: fixed;
  height: 100vh;
  max-width: 320px;
  width: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background: #fff;
  -webkit-filter: drop-shadow(0px 16px 8px #888);
          filter: drop-shadow(0px 16px 8px #888);
}
@media (max-width: 768px) {
  header .hg-menu-outer {
    max-width: 100%;
  }
}
header .hg-menu-outer .hg-menu-inner {
  max-width: 280px;
  width: 90%;
  margin: 0 auto;
  padding: 10% 0;
}
@media (max-width: 768px) {
  header .hg-menu-outer .hg-menu-inner {
    max-width: 540px;
  }
}
header .hg-menu-outer .hg-menu-inner ul li {
  margin-left: 0;
  list-style-type: none;
}
header .hg-menu-outer .hg-menu-inner ul li a {
  position: relative;
  font-size: 16px;
  font-weight: bold;
  padding: 1.5em 0;
  text-align: left;
}
@media (max-width: 768px) {
  header .hg-menu-outer .hg-menu-inner ul li a {
    font-size: 14px;
  }
}
header .hg-menu-outer .hg-menu-inner ul li a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  background: url("../images/line01.png") no-repeat;
  width: 100%;
  height: 2px;
}
header .hg-menu-outer .hg-menu-inner .hg-text {
  font-size: 13px;
  font-weight: 500;
  margin-top: 3em;
}

/*------------------メイン画像------------------*/
.main-sec .main-img01 {
  width: 100%;
  min-height: 215px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1905/616;
}
.main-sec .main-img02 {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto 10px;
}

/*------------------コンセプト------------------*/
@-webkit-keyframes Grad {
  0% {
    background-position: 50% 0%;
  }
  50% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 50% 0%;
  }
}
@keyframes Grad {
  0% {
    background-position: 50% 0%;
  }
  50% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 50% 0%;
  }
}
.sec01 {
  position: relative;
  background: url(../images/sec01-img-bg.webp) center center/cover no-repeat;
  padding: 5px 0 40px;
  margin-bottom: 90px;
  color: #fff;
  overflow: hidden;
}
@media (max-width: 900px) {
  .sec01 {
    padding: 5px 0 30px;
    margin-bottom: 60px;
  }
}
.sec01 .gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(64, 181, 227, 0.9)), color-stop(42.22%, rgba(167, 204, 76, 0.9)), color-stop(72.17%, rgba(244, 172, 77, 0.9)), to(rgba(244, 172, 77, 0.9)));
  background: linear-gradient(0deg, rgba(64, 181, 227, 0.9) 0%, rgba(167, 204, 76, 0.9) 42.22%, rgba(244, 172, 77, 0.9) 72.17%, rgba(244, 172, 77, 0.9) 100%);
  background-size: 128% 128%;
  background-position: 50% 0%;
  background-repeat: no-repeat;
  -webkit-animation: Grad 3.5s ease infinite;
          animation: Grad 3.5s ease infinite;
  z-index: 1;
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
  pointer-events: none;
}
.sec01 .sec01-bg-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
.sec01 .sec01-inner {
  position: relative;
  z-index: 2;
  max-width: 750px;
}
.sec01 .sec01-inner h1 {
  font-size: 2.4rem;
  line-height: 1.5em;
  font-weight: 900;
  text-align: center;
}
.sec01 .sec01-inner .sec01-text01 {
  font-size: 2.4rem;
  line-height: 1.1em;
  font-weight: 900;
  text-align: center;
}
@media (max-width: 768px) {
  .sec01 .sec01-inner .sec01-text01 {
    line-height: 1.5em;
  }
}
.sec01 .sec01-inner .sec01-img {
  width: 69.6%;
  margin: 35px auto;
}
@media (max-width: 900px) {
  .sec01 .sec01-inner .sec01-img {
    margin: 25px auto;
  }
}
@media (max-width: 520px) {
  .sec01 .sec01-inner .sec01-img {
    width: 100%;
  }
}
.sec01 .sec01-inner p {
  font-size: 1.44rem;
  line-height: 1.55em;
  font-weight: 600;
  text-align: center;
}

/*------------------NEWS------------------*/
.sec02 .sec02-inner {
  max-width: 940px;
  padding: 30px 0 80px;
  font-size: 1.13rem;
}
@media (max-width: 900px) {
  .sec02 .sec02-inner {
    padding: 20px 0 60px;
  }
}
.sec02 .sec02-inner .sec02-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px dashed #595757;
  padding: 1em 0;
}
.sec02 .sec02-inner .sec02-box .sec02-day {
  width: 20%;
}
.sec02 .sec02-inner .sec02-box .sec02-title {
  width: 80%;
}
.sec02 .sec02-inner .sec02-box .sec02-title a {
  display: inline-block;
  text-align: left;
}
@media (max-width: 520px) {
  .sec02 .sec02-inner .sec02-box .sec02-title a {
    font-size: 13px;
  }
}

/*------------------大会概要------------------*/
.sec03 .sec03-inner {
  font-size: 1.25rem;
  line-height: 1.7em;
  color: #000;
  text-align: left;
  padding: 52px 0 107px;
}
@media (max-width: 900px) {
  .sec03 .sec03-inner {
    padding: 30px 0 60px;
  }
}
.sec03 .sec03-inner table {
  border-spacing: unset;
  width: 100%;
}
.sec03 .sec03-inner table tr th {
  width: 186px;
  background-color: #eaeaea;
  border-top: 1px solid #231815;
  padding: 11px 0.5em;
}
@media (max-width: 900px) {
  .sec03 .sec03-inner table tr th {
    width: 120px;
  }
}
@media (max-width: 520px) {
  .sec03 .sec03-inner table tr th {
    width: 85px;
    text-indent: 0.5em;
  }
}
.sec03 .sec03-inner table tr td {
  border-top: 1px solid #231815;
  padding: 11px 0.7em;
  width: calc(100% - 186px);
}
@media (max-width: 900px) {
  .sec03 .sec03-inner table tr td {
    width: calc(100% - 120px);
  }
}
@media (max-width: 900px) {
  .sec03 .sec03-inner table tr td {
    width: calc(100% - 85px);
  }
}
.sec03 .sec03-inner table tr td span {
  font-size: 0.8em;
}
.sec03 .sec03-inner table tr td ul li {
  list-style-type: "※";
}
.sec03 .sec03-inner table tr:nth-last-child(1) th, .sec03 .sec03-inner table tr:nth-last-child(1) td {
  border-bottom: 1px solid #231815;
}

/*------------------コース紹介------------------*/
@-webkit-keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.sec04 .sec04-inner {
  padding: 37px 0 90px;
  letter-spacing: -0.1px;
  color: #000;
  /*現在コース未発表のため　非表示中*/
}
@media (max-width: 900px) {
  .sec04 .sec04-inner {
    padding: 30px 0 50px;
  }
}
.sec04 .sec04-inner .sec04-text01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-size: 2.69rem;
  font-weight: 900;
  margin: 0 auto 40px;
}
@media (max-width: 520px) {
  .sec04 .sec04-inner .sec04-text01 {
    font-size: 2rem;
    margin: 0 auto 30px;
  }
}
.sec04 .sec04-inner .sec04-text01 p {
  font-family: "Fira Sans", sans-serif;
  font-weight: 900;
  margin-top: 7px;
  letter-spacing: 4px;
  min-width: 3.3em;
  text-align: right;
}
@media (max-width: 768px) {
  .sec04 .sec04-inner .sec04-text01 p {
    margin-top: 4px;
  }
}
.sec04 .sec04-inner .sec04-text02 {
  font-size: 1.36rem;
}
.sec04 .sec04-inner ul {
  margin: 30px auto 40px;
}
@media (max-width: 900px) {
  .sec04 .sec04-inner ul {
    margin: 20px auto 25px;
  }
}
.sec04 .sec04-inner ul li {
  font-size: 1.17rem;
}
@media (max-width: 900px) {
  .sec04 .sec04-inner ul li {
    line-height: 1.6em;
    margin-bottom: 0.5em;
  }
}
.sec04 .sec04-inner .sec04-imgbox01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.sec04 .sec04-inner .sec04-imgbox01 .sec04-img01 {
  max-width: 25%;
  width: 100%;
}
@media (max-width: 520px) {
  .sec04 .sec04-inner .sec04-imgbox01 .sec04-img01 {
    max-width: 50%;
  }
}
.sec04 .sec04-inner .sec04-imgbox01 .sec04-img01 a img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec04 .sec04-inner .sec04-imgbox01 .sec04-img01:nth-child(1) img {
  -o-object-position: bottom;
     object-position: bottom;
}
.sec04 .sec04-inner .sec04-imgbox01 .sec04-img01:nth-child(3) img {
  -o-object-position: top right;
     object-position: top right;
}
.sec04 .sec04-inner .sec04-imgbox01 .sec04-img01:nth-child(4) img {
  -o-object-position: 75%;
     object-position: 75%;
}
.sec04 .sec04-inner .sec04-map-img {
  position: relative;
}
.sec04 .sec04-inner .sec04-map-img .svg-container {
  width: 100%;
  height: auto;
}
.sec04 .sec04-inner .sec04-map-img .svg-container .blinking-marker {
  -webkit-animation: blink 1s ease-in-out infinite !important;
          animation: blink 1s ease-in-out infinite !important;
  -webkit-filter: drop-shadow(0 0 10px #fc1008);
          filter: drop-shadow(0 0 10px #fc1008);
}
@media (max-width: 900px) {
  .sec04 .sec04-inner .sec04-map-img .svg-container .blinking-marker {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
}

/*------------------フッター------------------*/
footer .footer-inner {
  width: 97%;
  padding: 70px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  color: #000;
}
@media (max-width: 900px) {
  footer .footer-inner {
    display: block;
    text-align: center;
    padding: 50px 0 40px;
  }
}
@media (max-width: 520px) {
  footer .footer-inner {
    padding: 20px 0;
  }
}
footer .footer-inner .footer-img {
  width: 47.7%;
  margin-right: 2em;
}
@media (max-width: 900px) {
  footer .footer-inner .footer-img {
    margin: 0 auto 30px;
  }
}
footer .footer-inner .footer-textbox .footer-text01 {
  font-size: 1.13rem;
  font-weight: 900;
  margin-bottom: 0.3em;
}
footer .footer-inner .footer-textbox .footer-text02 {
  font-size: 1.38rem;
}
footer .footer-inner .footer-textbox .footer-text03 {
  font-size: 1.19rem;
  line-height: 1.4em;
  margin: 0.5em 0;
}
footer .footer-inner .footer-textbox small {
  font-size: 14px;
}
@media (max-width: 1400px) {
  footer .footer-inner .footer-textbox small {
    font-size: 13px;
  }
}

/*------------------NEWS　個別------------------*/
.single-sec .single-sec-inner {
  max-width: 800px;
  font-size: 1.25em;
  padding: 3em 0;
}
.single-sec .single-sec-inner .single-sec-title {
  font-size: 1.5em;
  text-align: center;
}
.single-sec .single-sec-inner .single-sec-day {
  text-align: right;
  margin: 2em 0px 1em;
}
.single-sec .single-sec-inner .single-sec-content {
  margin-bottom: 50px;
}
.single-sec .single-sec-inner .single-sec-content p {
  margin-top: 1em;
}
.single-sec .single-sec-inner .single-sec-content img {
  margin-top: 1em;
}
.single-sec .single-sec-inner .single-sec-content a {
  color: #3463ba;
  text-decoration: underline;
}
.single-sec .single-sec-inner .single-sec-content .wp-block-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 10px;
}
@media (max-width: 520px) {
  .single-sec .single-sec-inner .single-sec-content .wp-block-gallery {
    display: block;
  }
}
@media (max-width: 520px) {
  .single-sec .single-sec-inner .single-sec-content .wp-block-gallery .wp-block-image:not(#individual-image) {
    width: auto;
  }
}
.single-sec .single-sec-inner .single-sec-content h2 {
  text-align: left;
  color: unset;
  background-image: none;
}
.single-sec .single-sec-inner .single-sec-content .wp-block-list {
  margin-left: 1em;
}
.single-sec .single-sec-inner .single-sec-content .aligncenter {
  margin: 0 auto;
}

/*------------------404------------------*/
.error-sec .error-inner {
  padding: 100px 0;
  text-align: center;
}
@media (max-width: 520px) {
  .error-sec .error-inner {
    padding: 50px 0;
  }
}
.error-sec .error-inner h1 {
  font-size: 2em;
}
.error-sec .error-inner .error-sec-text {
  font-size: 1.2rem;
  line-height: 1.7em;
  margin: 2em auto;
}
.error-sec .error-inner .error-btn {
  font-size: 1.25rem;
}

/*------------------アニメーション関係------------------*/
@-webkit-keyframes myFadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes myFadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
[data-aos=my-fade-up] {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}

[data-aos=my-fade-up].aos-animate {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-animation: myFadeInUp 0.6s ease-out forwards;
          animation: myFadeInUp 0.6s ease-out forwards;
}