@charset "utf-8";

/* リセット */

* {
  box-sizing: border-box;
}

html {
  overflow: auto;
}

body {
  overflow: hidden;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre,
form, fieldset, input, textarea, p, blockquote, th, td, figure {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

table {
  border-spacing: 0;
}

fieldset, img {
  border: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-weight: normal;
  font-style: normal;
}

strong {
  font-weight: bold;
}

ol, ul {
  list-style: none;
}

caption, th {
  text-align: left;
}

q:before, q:after {
  content: '';
}

abbr, acronym {
  border: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}


/*-------------------------------------------------
/* 基本
--------------------------------------------------*/

:root {
  --color-text: #FFFFFF;
  --color-back: #0059aa;
  --color-main: #003d8b;
  --color-en-title: #0654a1;
  --color-jp-title: #ffec8d;

  --color-news-border: #30ba9f;
  --color-news-back: #1f8790;
  --color-news-back: rgba(31, 135, 144, 0.5);
  --color-schedule-border: #cd539a;
  --color-schedule-back: #c7557b;
  --color-schedule-back: rgba(199, 85, 123, 0.5);

  --color-black: #000000;
  --color-dark-blue: #000037;
  --color-light-blue: #00a3e2;
  --color-bright-blue: #d5e1f1;
  --color-green: #06c755;
  --color-orange: #ff9400;
  --color-yellow: #ffe700;
  --color-light-yellow: #f9f7cc;
  --color-red: #E22217;
  --color-pink: #cd539a;

  --color-dark-blue-navback: rgba(0, 0, 55, 0.3);

  --grad-schedule-back: #6CB1BB;
  --grad-schedule: linear-gradient(-45deg, rgba(108, 177, 187, 0.5) 0%, rgba(0, 134, 165, 0.5) 100%);
  --grad-news-back: #D2BBDA;
  --grad-news: linear-gradient(-45deg, rgba(210, 187, 218, 0.5) 0%, rgba(53, 41, 102, 0.5) 100%);

  --box-shadow: 0 0 5px rgba(0, 61, 139, 0.7);
  --box-shadow-hover: 0 0 10px 10px rgba(0, 61, 139, 0.7);
  --box-shadow-contents-hover: 0 0 10px 10px rgba(0, 61, 139, 0.3);

  --font-main: YakuHanJP, "Zen Kaku Gothic Antique", 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Noto Sans CJK JP', 'Noto Sans JP', sans-serif;
  --font-serif: YakuHanMP, 'Zen Old Mincho', 'Hiragino Mincho ProN', 'Noto Serif JP', serif;
  --font-DelaGothicOne: "Dela Gothic One", sans-serif;
  --font-en: "Poppins", sans-serif;
  --font-Oswald: "Oswald", sans-serif;

  --img-logo: url('../../img/common/logo.png');
  --img-logo-parent: url('../../img/common/logo_cty_cns.png');
}

body {
  position: relative;
  font-family: var(--font-main);
  color: var(--color-text);
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.6;
  background-color: var(--color-back);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-print-color-adjust: exact;
}

@media screen and (max-width: 833px) {
  body {
    font-size: 16px;
  }
}

body::before {
  content: '';
  display: inline-block;
  background-image: url('../../img/common/back_image_layer.png');
  background-repeat: repeat-x;
  background-size: contain;
  width: 100%;
  height: 200px;
  opacity: 0.8;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media screen and (min-width: 834px), print {
  body::before {
    height: 400px;
  }
}

.wrapper {
  position: relative;
  width: 100%;
}

.wrapper::before {
  content: '';
  display: inline-block;
  background-image: url('../../img/common/background.png');
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -3;
}

.wrapper::after {
  content: '';
  display: inline-block;
  background-image: url('../../img/common/footer_back.png');
  background-repeat: no-repeat;
  background-size: 100%;
  aspect-ratio: 28/10;
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -2;
}


.foot-copy,
.en {
  font-family: var(--font-en);
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:active {
  text-decoration: none;
}

/* iPhoneTELリンク色変更なしにする */
a[href^="tel"] {
  color: inherit;
  text-decoration: none;
}

img {
  vertical-align: bottom;
  -ms-interpolation-mode: bicubic;
}

html {
  scroll-behavior: smooth;
}

/* 固定ヘッダーの高さに合わせて調整 */
.scroll-anchor {
  scroll-margin-top: 40px;
}

@media screen and (min-width: 834px), print {
  .scroll-anchor {
    scroll-margin-top: 100px;
  }
}

.margin-top-non {
  margin-top: 0 !important;
}

/* JSが有効な場合のみ非表示（headにスクリプト挿入） */
/* スーパーリロードで一瞬コンテンツが見えてしまう対策 */
.js .topmain,
.js .animation-left,
.js .animation-right,
.js .animation,
.js .animation-scale,
.js .animation-scale-out {
  visibility: hidden;
}


/*------------------------------------------*/
/* ロゴ
/*------------------------------------------*/

.logo,
.logo-parent {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  display: inline-block;
  background-size: 100%;
  background-repeat: no-repeat;
  height: auto;
  vertical-align: bottom;
}

.logo-parent {
  background-image: var(--img-logo-parent);
  aspect-ratio: 174/60;
  width: auto;
  height: 20px;
}

.logo {
  background-image: var(--img-logo);
  aspect-ratio: 46/8;
  width: 400px;
  max-width: calc(100% - 20px);
}

@media screen and (min-width: 768px), print {
  .logo {
    max-width: calc(100% - 40px);
  }
}

@media screen and (min-width: 834px), print {
  .logo-parent {
    height: 30px;
  }

  .logo {
    width: 460px;
  }
}

@media screen and (min-width: 1500px), print {
  .logo-parent {
    height: 40px;
  }

  .logo {
    width: calc(460px * 1.5);
  }
}


/*------------------------------------------*/
/* insta
/*------------------------------------------*/

.insta {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  display: inline-block;
  background-image: url('../../img/common/sns_insta.svg');
  background-size: 100%;
  background-repeat: no-repeat;
  aspect-ratio: 1/1;
  width: 20px;
  height: auto;
  vertical-align: bottom;
}


/*****************************************
*
* header
*
******************************************/

header {
  width: 100%;
  z-index: 99;
}

/* ロゴ --------------------------------*/
header .logo-parent,
header .logo {
  position: absolute;
  left: 20px;
  z-index: 10;
}

header .logo-parent {
  top: 10px;
}

header .logo {
  top: 30px;
  transform: translateX(-2.174%);
}

@media screen and (min-width: 768px), print {

  header .logo-parent,
  header .logo {
    left: 40px;
  }
}

@media screen and (min-width: 834px), print {
  header .logo-parent {
    top: 20px;
  }

  header .logo {
    top: 60px;
  }
}


/*!------------------------------------*\
    ナビ
\*!------------------------------------*/

@media screen and (min-width: 1024px), print {

  .drawer-hamburger,
  .nav-parent {
    display: none;
  }

  .drawer-nav {
    background: var(--color-yellow);
    border-radius: 0 0 0 10px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 101;
  }

  .is-scroll .drawer-nav {}

  .drawer-menu {
    display: flex;
    align-items: center;
  }

  .drawer-menu li a {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: auto;
    height: 60px;
    color: var(--color-main);
    font-size: 0.8rem;
    font-weight: bold;
    padding: 5px 20px;
    transition: all .3s ease;
  }

  .drawer-menu li.nav-insta a {
    align-items: center;
  }

  .drawer-menu li.nav-home a::after,
  .drawer-menu li.nav-single a::after {
    content: '';
    display: inline-block;
    background: var(--color-main);
    width: 2px;
    height: calc(100% - 4px);
    position: absolute;
    top: 2px;
    right: 0;
  }

  .drawer-menu li.nav-home a::before,
  .drawer-menu li.nav-single a::before {
    content: '';
    display: inline-block;
    background-size: 100%;
    background-repeat: no-repeat;
    aspect-ratio: 39/26;
    width: 39px;
    height: auto;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    transition: all .3s ease;
  }

  .drawer-menu li.nav-home a::before {
    background-image: url('../../img/common/icon_home.svg');
  }

  .drawer-menu li.nav-single.info a::before {
    background-image: url('../../img/common/icon_info.svg');
  }

  .drawer-menu li.nav-single.tournament a::before {
    background-image: url('../../img/common/icon_tournament.svg');
  }

  .drawer-menu li.nav-single.teams a::before {
    background-image: url('../../img/common/icon_teams.svg');
  }

  .drawer-menu li.nav-single.message a::before {
    background-image: url('../../img/common/icon_message.svg');
  }

  .drawer-menu li a:hover {
    text-decoration: none;
    background: var(--color-orange);
  }
}

@media screen and (max-width: 1023px) {
  .drawer-open {
    overflow: hidden !important;
  }

  .drawer-nav {
    position: fixed;
    z-index: 101;
    top: 0;
    overflow: hidden;
    width: 16.25rem;
    width: 100%;
    height: 100%;
    background: var(--color-main);
    text-align: center;
  }

  /* HOME ------------------------------*/
  li.nav-parent a,
  li.nav-home a {
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    font-size: 0;
    display: inline-block;
    background-size: 100%;
    background-repeat: no-repeat;
    height: auto;
    vertical-align: bottom;
    max-width: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  li.nav-parent a {
    background-image: var(--img-logo-parent);
    aspect-ratio: 175/60;
    width: 90px;
    top: 20px;
  }

  li.nav-home a {
    background-image: var(--img-logo);
    aspect-ratio: 46/8;
    width: 400px;
    position: absolute;
    top: 80px;
  }

  /* drawer-menu ------------------------------*/
  .drawer-menu {
    display: inline-block;
    padding: 160px 40px 40px 40px;
    margin: 0 auto;
  }

  .drawer-menu li a {
    color: white;
    transition: all .3s ease;
  }

  .drawer-menu li a:hover,
  .drawer-menu li a:active {
    text-decoration: none;
  }

  .drawer-menu li.nav-single {
    text-align: left;
    margin-top: 20px;
  }

  .drawer-menu li.nav-single a {
    position: relative;
    color: var(--color-text);
    font-size: 1.1rem;
    font-weight: bold;
    padding-left: 30px;
  }

  .drawer-menu li.nav-single a::before {
    content: '';
    display: inline-block;
    background-image: url('../../img/common/icon_ball_white.svg');
    background-repeat: no-repeat;
    background-size: 100%;
    aspect-ratio: 1/1;
    width: 16px;
    height: auto;
    position: absolute;
    top: 0.3em;
    left: 0;
    transition: all .3s ease;
  }

  .drawer-menu li.nav-insta {
    margin-top: 50px;
  }

  .drawer-menu li.nav-insta .insta {
    width: 30px;
  }

  /* ------------------------------*/
  /*! overlay */
  /*
.drawer-overlay {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .2);
}

.drawer-open .drawer-overlay {
  display: block;
}
*/


  /*!------------------------------------*\
    Right
\*!------------------------------------*/

  .drawer--right .drawer-nav {
    right: -16.25rem;
    right: -100%;
    -webkit-transition: right .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
    transition: right .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  }

  .drawer--right.drawer-open .drawer-nav {
    right: 0;
  }


  /*!------------------------------------*\
    iPhoneでメニューをスクロールするとメニューが閉じてしまうバグ対策
\*!------------------------------------*/

  .drawer--top.drawer-open .drawer-nav {
    top: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .drawer--right.drawer-open .drawer-nav,
  .drawer--right .drawer-hamburger,
  .drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  /*!------------------------------------*\
    Hamburger
\*!------------------------------------*/

  .drawer-hamburger {
    display: block;
    background-color: transparent;
    width: 60px;
    height: 40px;
    box-sizing: content-box;
    padding: 0;
    -webkit-transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
    transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    border: 0;
    outline: 0;
    border-style: solid;
    border-color: white;
    border-width: 0 0 1px 1px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 104;
  }

  .is-scroll .drawer-hamburger {
    background-color: var(--color-dark-blue-navback);
  }

  .drawer-hamburger:hover {
    cursor: pointer;
  }

  .drawer-hamburger-icon {
    position: relative;
  }

  .drawer-hamburger-icon,
  .drawer-hamburger-icon:before,
  .drawer-hamburger-icon:after {
    display: block;
    width: 40px;
    height: 2px;
    position: absolute;
    top: 8px;
    left: 10px;
    -webkit-transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
    transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
    background-color: white;
  }

  .drawer-hamburger-icon:before,
  .drawer-hamburger-icon:after {
    content: ' ';
    left: 0;
  }

  .drawer-hamburger-icon:before {
    top: 10px;
  }

  .drawer-hamburger-icon:after {
    top: 20px;
  }

  .drawer-open .drawer-hamburger {
    width: 60px;
    height: 40px;
    /*開いた時のアイコンの背景*/
    background-color: transparent;
  }

  .drawer-open .drawer-hamburger-icon {
    background-color: transparent;
  }

  .drawer-open .drawer-hamburger-icon:before,
  .drawer-open .drawer-hamburger-icon:after {
    border-radius: 0;
    width: 40px;
    height: 2px;
    top: 10px;
    left: 0px;
    /*開いた時の×の色*/
    background-color: white;
  }

  .drawer-open .drawer-hamburger-icon:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .drawer-open .drawer-hamburger-icon:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .drawer-open .drawer-hamburger-text {
    display: none;
  }


  /*!------------------------------------*\
    accessibility
\*!------------------------------------*/

  /*!
 * Only display content to screen readers
 * See: http://a11yproject.com/posts/how-to-hide-content
 */

  .sr-only {
    position: absolute;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
  }

  /*!
 * Use in conjunction with .sr-only to only display content when it's focused.
 * Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
 * Credit: HTML5 Boilerplate
 */

  .sr-only-focusable:active,
  .sr-only-focusable:focus {
    position: static;
    overflow: visible;
    clip: auto;
    width: auto;
    height: auto;
    margin: 0;
  }

  /*!------------------------------------*\
    Container
\*!------------------------------------*/

  .drawer-container {
    margin-right: auto;
    margin-left: auto;
  }
}



/*****************************************
*
* フッタ
*
******************************************/


/* お問い合わせ --------------------------------*/
footer .box {
  display: inline-block;
  background: white;
  border-radius: 20px;
  width: 100%;
  color: var(--color-main);
  padding: 20px;
}

footer .box .heading p {
  background: var(--color-main);
  color: white;
  font-size: 0.9rem;
  font-weight: bold;
  line-height: 1.1;
  padding: 5px;
}

footer .box .text {
  font-size: 1.1rem;
  font-weight: bold;
}

footer .box .phone {
  position: relative;
  display: inline-block;
  text-align: left;
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.1;
  padding-left: 24px;
}

footer .box .phone::before {
  content: '';
  display: block;
  background-image: url('../../img/common/icon_phone.svg');
  aspect-ratio: 40/43;
  background-size: 100%;
  background-repeat: no-repeat;
  width: 20px;
  height: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

@media screen and (max-width: 833px) {
  footer .box .text {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}

@media screen and (min-width: 834px), print {
  footer .box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: calc(calc(40 / 1400) * 100vw);
  }

  footer .box .heading p {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(calc(40 / 1400) * 100vw);
    font-size: calc(calc(19 / 1400) * 100vw);
    padding: calc(calc(10 / 1400) * 100vw) calc(calc(20 / 1400) * 100vw);
  }

  footer .box .heading p::after {
    content: '';
    display: block;
    background-image: url('../../img/common/footer_triangle.svg');
    aspect-ratio: 2/4;
    background-size: 100%;
    background-repeat: no-repeat;
    width: calc(calc(20 / 1400) * 100vw);
    height: auto;
    position: absolute;
    top: 0;
    right: calc(calc(19 / 1400) * -100vw);
  }

  footer .box .text {
    font-size: calc(calc(22 / 1400) * 100vw);
  }

  footer .box .phone {
    font-size: calc(calc(64 / 1400) * 100vw);
    padding-left: calc(calc(46 / 1400) * 100vw);
  }

  footer .box .phone::before {
    width: calc(calc(40 / 1400) * 100vw);
  }
}

@media screen and (min-width: 1400px), print {
  footer .box {
    padding: 40px;
  }

  footer .box .heading p {
    height: 40px;
    font-size: 1.2rem;
    padding: 10px 20px;
  }

  footer .box .heading p::after {
    width: 20px;
    right: -19px;
  }

  footer .box .text {
    font-size: 1.4rem;
  }

  footer .box .phone {
    font-size: 4rem;
    padding-left: 46px;
  }

  footer .box .phone::before {
    width: 40px;
  }
}


/* コピーライト --------------------------------*/
.footer-copy {
  margin-top: 80px;
  padding-bottom: 20px;
}

.footer-copy p {
  display: inline-block;
  background: rgba(0, 61, 139, 0.5);
  font-size: 0.8rem;
  font-weight: bold;
}

@media screen and (min-width: 834px), print {
  .footer-copy {
    margin-top: 200px;
    padding-bottom: 40px;
  }
}



/*****************************************
*
* submain
*
******************************************/

/*------------------------------------------*/
/* submain
/*------------------------------------------*/

.submain-heading {
  position: relative;
  padding-top: 180px;
}

.submain-heading::before {
  content: '';
  display: inline-block;
  background-image: url('../../img/common/silhouette_batter.svg');
  background-size: 100%;
  background-repeat: no-repeat;
  aspect-ratio: 198/207;
  width: calc((198 / 3 / 400) * 100vw);
  height: auto;
  position: absolute;
  top: 120px;
  right: 0;
}

.submain-heading .en {
  text-align: center;
  color: var(--color-main);
  font-family: var(--font-Oswald);
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
}

.submain-heading .jp {
  text-align: center;
  font-family: var(--font-DelaGothicOne);
  font-size: 1.6rem;
  margin-top: 10px;
}

@media screen and (min-width: 576px), print {
  .submain-heading::before {
    width: calc(calc(198 / 1.5 / 1400) * 100vw);
    top: 110px;
  }

  .submain-heading .en {
    font-size: calc(calc(208 / 1400) * 100vw);
  }

  .submain-heading .jp {
    font-size: calc(calc(64 / 1400) * 100vw);
  }
}

@media screen and (min-width: 834px), print {
  .submain-heading {
    padding-top: 200px;
  }

  .submain-heading::before {
    width: calc(calc(198 / 1.5 / 1400) * 100vw);
    top: 120px;
  }

  .submain-heading .en {
    text-align: left;
  }

  .submain-heading .jp {
    text-align: right;
    margin-top: 0;
    position: absolute;
    bottom: -0.2em;
    right: 0;
  }
}

@media screen and (min-width: 1400px), print {
  .submain-heading {
    padding-top: 240px;
  }

  .submain-heading::before {
    width: calc(198px / 1.5);
    top: 160px;
  }

  .submain-heading .en {
    font-size: 13rem;
  }

  .submain-heading .jp {
    font-size: 4rem;
  }
}

/* 子見出し --------------------------------*/
.post-heading {
  display: inline-block;
  border-radius: 10px;
  color: white;
  font-family: var(--font-DelaGothicOne);
  font-size: 1.2rem;
  line-height: 1.1;
  padding: 5px 15px 8px 15px;
  margin-top: 40px;
}

.page-info-news .post-heading {
  background: var(--color-news-border);
}

.page-info-schedule .post-heading {
  background: var(--color-schedule-border);
}

@media screen and (min-width: 834px), print {
  .post-heading {
    font-size: 3rem;
    margin-top: 60px;
  }
}


/*------------------------------------------*/
/* breadcrumb
/*------------------------------------------*/

.breadcrumb {
  text-align: left;
  margin-top: 40px;
  margin-bottom: 20px;
}

.breadcrumb li,
.breadcrumb li a {
  position: relative;
  display: inline-block;
  color: var(--color-text);
  font-size: 0.7rem;
  font-weight: bold;
  line-height: 1.4;
}

.breadcrumb li+li {
  margin-left: 16px;
}

.breadcrumb li+li::before {
  content: '';
  display: inline-block;
  background: var(--color-text);
  width: 7px;
  height: 1px;
  position: absolute;
  top: 0.8em;
  left: -14px;
}

@media screen and (min-width: 834px), print {
  .breadcrumb {
    margin-top: 60px;
  }

  .breadcrumb li,
  .breadcrumb li a {
    font-size: 0.8rem;
  }
}



/*****************************************
*
* 印刷用
*
******************************************/

@media print {
  body {
    width: 1200px;
    transform: scale(0.8);
    transform-origin: 0 0;
    -webkit-print-color-adjust: exact;
  }

  /* FireFoxテーブル印刷バグ回避 */
  _:-ms-lang(x)::-ms-backdrop, .wrapper {
    overflow: auto;
    display: table;
  }


  /* アニメーション無効 */
  [class^="animation"], [class*=" animation"],
  footer {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}