@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Roboto+Condensed:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap");
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
*::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, button {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: inherit;
  font-style: normal;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

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

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

button {
  color: inherit;
  font: inherit;
  background: none;
}

main, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

div {
  outline-color: transparent;
  outline-style: solid;
}

/*== general style ============================*/
html {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 750px) {
  html {
    font-size: calc(0.625rem + (1vw - 3.75px) * 2.6667);
  }
}
@media screen and (min-width: 751px) {
  html {
    font-size: 62.5%;
  }
}

::-moz-selection {
  color: #FFF;
  background: #646464;
}

::selection {
  color: #FFF;
  background: #646464;
}

::-webkit-scrollbar {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 1rem;
  background-color: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
  border-radius: 0.5rem;
  background-color: #EF93AA;
}

body {
  color: #222;
  width: 100%;
  overflow-x: hidden;
  font-family: "Noto Sans JP", "Roboto Condensed", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  font-weight: 400;
}
@media screen and (max-width: 750px) {
  body {
    font-size: 1.2rem;
    line-height: 1.66;
  }
}
@media screen and (min-width: 751px) {
  body {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}

/*----*/
strong {
  font-weight: 600;
}

a {
  color: #222;
  text-decoration: none;
  /*text-decoration-color: rgba($linkColor, 0);
  transition: text-decoration-color 0.5s;*/
}
a:hover {
  text-decoration: none;
}
a.icon_pdf, a.icon_blank, a.icon_underline {
  position: relative;
  padding: 0 4rem 1rem 0;
}
a.icon_pdf::after, a.icon_blank::after, a.icon_underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0.1rem;
  background: #222;
  -webkit-transition: width 0.3s cubic-bezier(0.61, 1, 0.88, 1);
  transition: width 0.3s cubic-bezier(0.61, 1, 0.88, 1);
}
a.icon_pdf:hover::after, a.icon_blank:hover::after, a.icon_underline:hover::after {
  position: absolute;
  width: 100%;
}
a.icon_pdf {
  background: url(/assets/img/club/icon_pdf2.svg) no-repeat right 10%;
  background-size: 3rem 1.7rem;
}
@media screen and (min-width: 751px) {
  a.icon_pdf {
    padding-right: 4.5rem;
    background-size: 3.5rem 2rem;
    background-position: right 20%;
  }
}
a.icon_blank {
  padding-right: 3rem;
  background: url(/assets/img/club/icon_blank.svg) no-repeat right 0;
  background-size: 1.9rem 1.8rem;
}
@media screen and (min-width: 751px) {
  a.icon_blank {
    background-position: right 20%;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

svg {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
  overflow: hidden;
}

/* [forPC / SP] ----------*/
@media screen and (max-width: 750px) {
  .forPC {
    display: none;
  }
  .forPC_inline {
    display: none;
  }
}
@media screen and (min-width: 751px) {
  .forPC {
    display: block;
  }
  .forPC_inline {
    display: inline-block;
  }
}
@media screen and (min-width: 751px) {
  .forPC_center {
    text-align: center;
  }
}

@media screen and (max-width: 750px) {
  .forSP {
    display: block;
  }
  .forSP_inline {
    display: inline-block;
  }
}
@media screen and (min-width: 751px) {
  .forSP {
    display: none;
  }
  .forSP_inline {
    display: none;
  }
}

/*== header ============================*/
/* [header] ----------*/
.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  background-color: #FFF;
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  min-height: 8rem;
}
@media screen and (max-width: 750px) {
  .header {
    min-height: 5rem;
  }
}
.header .logo {
  margin-left: 20px;
}
@media screen and (max-width: 750px) {
  .header .logo {
    width: 25rem;
    margin-left: 1.5rem;
  }
}

/* [modal] ----------*/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  /*display: flex;
  align-items: center;
  justify-content: center;*/
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  -webkit-transition: opacity 0.5s, scale 0s 0.5s;
  transition: opacity 0.5s, scale 0s 0.5s;
  scale: 0;
}
.modal-checkbox {
  display: none;
}
.modal-open-button {
  margin-right: 1.2rem;
  cursor: pointer;
  background: url(/assets/img/club/btn_menu.svg) no-repeat 0 50%;
}
@media screen and (max-width: 750px) {
  .modal-open-button {
    width: 3.2rem;
    height: 1.4rem;
    background-size: 3.2rem 1.4rem;
  }
}
@media screen and (min-width: 751px) {
  .modal-open-button {
    margin-right: 2rem;
    padding: 0 0 0 5.5rem;
    background-size: 4.6rem 1.4rem;
  }
}
@media screen and (max-width: 750px) {
  .modal-open-button span {
    display: none;
  }
}
.modal-wrapper {
  position: relative;
  top: 3rem;
  left: 0;
  right: 0;
  /*padding: 20px;*/
  margin: auto;
  overflow: hidden;
  background-color: #FEFEFE;
  border-radius: 6px;
}
@media screen and (min-width: 751px) {
  .modal-wrapper {
    width: 98%;
    height: 80%;
    max-width: 154rem;
    max-height: 58rem;
  }
}
@media screen and (max-width: 750px) {
  .modal-wrapper {
    top: 1rem;
    width: calc(100dvw - 2rem);
    height: 96%;
  }
}
.modal-wrapper .header {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-bottom: 0.1rem solid #DDD;
}
.modal-wrapper .header .logo {
  position: absolute;
  top: 1rem;
}
@media screen and (max-width: 750px) {
  .modal-wrapper .header .logo {
    top: -0.5rem;
  }
}
.modal-content h1 {
  margin: 0;
  font-size: 4rem;
  line-height: 1.2em;
  letter-spacing: -0.02em;
}
.modal-contentInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 1.4rem 2rem;
}
@media screen and (min-width: 751px) {
  .modal-contentInner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 2rem 4rem 0;
  }
}
.modal-contentInner_club {
  width: 100%;
}
@media screen and (min-width: 751px) {
  .modal-contentInner_club {
    width: 66%;
  }
}
.modal-contentInner_link {
  width: 100%;
}
@media screen and (min-width: 751px) {
  .modal-contentInner_link {
    width: 30%;
  }
}

.modal.is-out {
  opacity: 0;
  -webkit-transition: opacity 0.5s, scale 0s 0.5s;
  transition: opacity 0.5s, scale 0s 0.5s;
  scale: 0;
}

.modal.is-check {
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  scale: 1;
}

.close {
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
  background: url(/assets/img/club/btn_close.svg) no-repeat 0 50%;
  background-size: 2rem 2rem;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
@media screen and (max-width: 750px) {
  .close {
    width: 2rem;
    height: 2rem;
  }
}
@media screen and (min-width: 751px) {
  .close {
    top: 40px;
    right: 56px;
    padding-left: 3.5rem;
    background-size: 2.4rem 2.4rem;
  }
}
@media screen and (max-width: 750px) {
  .close span {
    display: none;
  }
}

/*
.hNav_item_contents {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    padding: 30px 0;
    opacity: 0;
    pointer-events: none;
    background-color: #F7F7F7;
    -webkit-box-shadow: inset 0 3px 3px -3px rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 3px 3px -3px rgba(0, 0, 0, 0.15);
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
}
.hNav_item.active > .hNav_item_contents {
    opacity: 1;
    pointer-events: auto;
}
*/
/* [gNav] ----------*/
.gNav {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: opacity 0.9s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.9s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.9s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.9s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.9s cubic-bezier(0.25, 1, 0.5, 1), transform 0.9s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.9s cubic-bezier(0.25, 1, 0.5, 1), transform 0.9s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.9s cubic-bezier(0.25, 1, 0.5, 1);
  -webkit-transition-delay: 0s, 0s;
          transition-delay: 0s, 0s;
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
}
.gNav_item {
  position: relative;
  /*display: block;*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #222;
  text-decoration: none;
  margin-top: 1.3rem;
  padding-bottom: 1.3rem;
}
@media screen and (min-width: 751px) {
  .gNav_item {
    margin-top: 2rem;
    padding-bottom: 2rem;
  }
}
.gNav_item:hover {
  text-decoration: none;
}
.gNav_item p {
  position: relative;
  display: block;
  width: 100%;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  /*background: url(/assets/img/club/icon_arrow.svg) no-repeat right 50%;
  background-size: 1.5rem 0.7rem;*/
}
.gNav_item p::after {
  display: block;
  content: "";
  position: absolute;
  width: 1.6rem;
  height: 0.8rem;
  top: calc(50% - 0.4rem);
  right: 0;
  background: #BBB;
  -webkit-mask-image: url(/assets/img/club/icon_arrow.svg);
          mask-image: url(/assets/img/club/icon_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: right center;
          mask-position: right center;
}
.gNav_item::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #E25575, #E25575 30px, #DDD 30px, #DDD 100%);
}
.gNav_item::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 0%;
  height: 1px;
  background-color: #E25575;
  -webkit-transition: width 0.3s cubic-bezier(0.61, 1, 0.88, 1);
  transition: width 0.3s cubic-bezier(0.61, 1, 0.88, 1);
}
.gNav_item.is-out::after {
  width: 100%;
  left: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: left 0.7s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition: left 0.7s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition: left 0.7s cubic-bezier(0.19, 1, 0.22, 1), transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition: left 0.7s cubic-bezier(0.19, 1, 0.22, 1), transform 0.7s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.gNav_item.is-hover p {
  -webkit-transform: translate3d(15px, 0, 0);
          transform: translate3d(15px, 0, 0);
}
.gNav_item.is-hover::after {
  width: 100%;
  left: 0;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: width 0.7s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition: width 0.7s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition: width 0.7s cubic-bezier(0.19, 1, 0.22, 1), transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition: width 0.7s cubic-bezier(0.19, 1, 0.22, 1), transform 0.7s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.gNav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 1rem -3% 1rem 0;
}
@media screen and (min-width: 751px) {
  .gNav_list {
    margin: 1rem -1% 0;
  }
}
.gNav_listItem {
  width: 30%;
  margin: 2% 3% 2% 0;
  font-size: 0.9rem;
  color: #222;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (min-width: 751px) {
  .gNav_listItem {
    width: 23%;
    margin: 1%;
    font-size: 1.4rem;
  }
}
.gNav_listItem:hover {
  color: #E25575;
  text-decoration: none;
}

/*== contents ============================*/
/* [home] ----------*/
.homeArea {
  margin: auto;
}
@media screen and (max-width: 750px) {
  .homeArea {
    padding-top: 3rem;
    width: 92dvw;
  }
}
@media screen and (min-width: 751px) {
  .homeArea {
    padding-top: 9.5rem;
    width: calc(100dvw - 60px);
    max-width: 154rem;
  }
}

/* [keyv] ----------*/
.keyv {
  /*position: relative;*/
  width: 100%;
  padding: 13.5rem 0 10rem;
  background: url(/assets/img/club/bg_keyv.jpg) no-repeat center 0;
  background-size: 100% auto;
}
@media screen and (max-width: 750px) {
  .keyv {
    padding: 8rem 0 2rem;
    background: url(/assets/img/club/bg_keyv_sp.jpg) no-repeat 0 0;
    background-size: 100% auto;
  }
}
.keyvImg {
  text-align: center;
}
@media screen and (min-width: 751px) {
  .keyvImg {
    max-width: 1600px;
    max-height: 975px;
    margin: 0 auto;
  }
}
.keyvCatch {
  font-family: "Noto Sans JP", "Roboto Condensed", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  font-weight: 500;
  font-size: 1.4rem;
  text-align: center;
  line-height: 2.5;
}
@media screen and (min-width: 751px) {
  .keyvCatch {
    margin-top: -15rem;
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 751px) and (max-width: 1080px) {
  .keyvCatch {
    margin-top: -10rem;
  }
}
@media screen and (max-width: 750px) {
  .keyvCatch {
    padding: 2rem 1rem 1rem;
  }
}

.slideSec01 {
  background: #FAE6EB;
}

/* [other] ----------*/
.headArea {
  width: 100%;
  padding: 13.5rem 0 10rem;
  background: #EF9FB3;
}
@media screen and (max-width: 750px) {
  .headArea {
    padding: 8rem 0 3rem;
  }
}

.contentArea {
  padding: 4rem 0 6rem;
  width: calc(100dvw - 2.4rem);
  margin: 0 auto;
}
@media screen and (min-width: 751px) {
  .contentArea {
    padding: 6.5rem 0 8rem;
    max-width: 118rem;
    width: 98%;
  }
}

@media screen and (max-width: 750px) {
  .breadcrumbs {
    display: none;
  }
}
@media screen and (min-width: 751px) {
  .breadcrumbs {
    color: #FFF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    max-width: 154rem;
    width: 98%;
    margin: 0 auto;
    padding-right: 4.5rem;
    font-size: 1.2rem;
  }
  .breadcrumbs li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .breadcrumbs li + li::before {
    content: "/";
    font-size: 1.6rem;
    margin: 0 1em;
  }
  .breadcrumbs a {
    color: #FFF;
    text-decoration: none;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
  }
}
@media screen and (min-width: 751px) and (min-width: 751px) {
  .breadcrumbs a:hover {
    color: #E25575;
  }
}

.pageTtl {
  width: calc(100dvw - 2rem);
  margin: 0 auto;
  color: #FFF;
}
@media screen and (min-width: 751px) {
  .pageTtl {
    max-width: 118rem;
    width: 98%;
  }
}
.pageTtl h1 {
  margin-bottom: 0.5rem;
  font-size: 2.3rem;
  font-weight: bold;
}
@media screen and (min-width: 751px) {
  .pageTtl h1 {
    margin-bottom: 0;
    font-size: 5.6rem;
  }
}
.pageTtl p {
  display: inline-block;
  padding: 0 0.5rem;
  font-size: 1.2rem;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 500;
  font-style: italic;
  line-height: 1.4;
  border: 0.1rem solid #FFF;
}
@media screen and (min-width: 751px) {
  .pageTtl p {
    padding: 0 0.8rem;
    font-size: 1.8rem;
  }
}

/*== footer ============================*/
/* [footer] ----------*/
.footerNav {
  background: #2E2E2E;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 751px) {
  .footerNav {
    margin-bottom: 2rem;
  }
}
.footerNav a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footerNav a:hover {
  color: rgba(255, 255, 255, 0.4);
}
@media screen and (min-width: 751px) {
  .footerNav01 {
    max-width: 48rem;
    border-right: 0.1rem solid #959595;
  }
}
@media screen and (max-width: 750px) {
  .footerNav01 {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 0.1rem solid #959595;
  }
}
.footerNav01 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footerNav01 ul li {
  margin: 0.5rem 2.5rem 0 0;
}
@media screen and (min-width: 751px) {
  .footerNav01 ul li {
    font-size: 1.4rem;
  }
}
.footerNav02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 751px) {
  .footerNav02 {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-left: 2.5rem;
  }
}
@media screen and (max-width: 750px) {
  .footerNav02 li {
    margin: 0.5rem 2.5rem 0 0;
  }
}
@media screen and (min-width: 751px) {
  .footerNav02 li {
    width: 32%;
  }
}
@media screen and (max-width: 750px) {
  .footerLogo {
    width: 100%;
    margin-bottom: 2rem;
    text-align: center;
  }
}
@media screen and (min-width: 751px) {
  .footerLogo {
    margin-right: 5rem;
  }
}
@media screen and (max-width: 750px) {
  .footerLogo img {
    width: 9rem;
  }
}
.footerInner {
  padding: 3rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 750px) {
  .footerInner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 94dvw;
    margin: auto;
  }
}
@media screen and (min-width: 751px) {
  .footerInner {
    width: calc(100dvw - 40px);
    max-width: 118rem;
    margin: auto;
  }
}
.footerAddress_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 751px) {
  .footerAddress_item {
    padding: 0.5rem 0 1.5rem;
  }
}
@media screen and (max-width: 750px) {
  .footerAddress_item {
    margin-top: 1rem;
  }
}
.footerAddress_itemTxt dt {
  font-size: 1.2rem;
  font-weight: bold;
}
.footerAddress_itemTxt dd {
  font-size: 1.3rem;
}
@media screen and (max-width: 750px) {
  .footerAddress_itemTxt dt, .footerAddress_itemTxt dd {
    font-size: 1rem;
  }
}

/* [copyright] ----------*/
#copyright {
  color: #999;
  text-align: center;
  font-family: "Oswald";
}
@media screen and (max-width: 750px) {
  #copyright {
    width: 92dvw;
    margin: auto;
    font-size: 0.8rem;
  }
  #copyright > p {
    width: 85.6dvw;
    margin: auto;
    padding: 1.7rem 0;
  }
}
@media screen and (min-width: 751px) {
  #copyright {
    font-size: 1.1rem;
  }
  #copyright > p {
    width: calc(100dvw - 40px);
    max-width: 118rem;
    margin: auto;
    padding: 3.8rem 0;
  }
}

/* [pageTop] ----------*/
#pageTop_inner {
  position: fixed;
  z-index: 10;
  top: 3rem;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  margin: 0 auto;
}
@media screen and (min-width: 751px) {
  #pageTop_inner {
    max-width: 154rem;
    width: 98%;
  }
}
@media screen and (max-width: 750px) {
  #pageTop_inner {
    top: 1rem;
    width: calc(100dvw - 2rem);
  }
}

.pageTop {
  position: fixed;
  width: 3.5rem;
  height: 6rem;
  overflow: hidden;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  display: block;
  pointer-events: none;
}
.pageTop.active {
  opacity: 1;
  pointer-events: auto;
}
@media screen and (min-width: 751px) {
  .pageTop {
    width: 5.2rem;
    height: 9rem;
    right: 1.5rem;
    bottom: 1.5rem;
  }
}
.pageTop a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  text-align: center;
  background: rgba(85, 85, 85, 0.5);
  color: #FFF;
  border-radius: 0.4rem;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
.pageTop a .txt {
  position: absolute;
  bottom: 0.5rem;
  right: 0;
  left: 0;
  margin: 0 auto;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 400;
}
@media screen and (min-width: 751px) {
  .pageTop a .txt {
    bottom: 1.5rem;
  }
}
.pageTop a .arrow {
  content: "";
  position: absolute;
  top: 1rem;
  left: calc(50% - 1.5rem);
  margin: 0 auto;
  width: 3rem;
  height: 3rem;
  overflow: hidden;
}
@media screen and (min-width: 751px) {
  .pageTop a .arrow {
    top: 2rem;
  }
}
.pageTop a .arrow::before, .pageTop a .arrow::after {
  display: block;
  content: "";
  position: absolute;
  width: 0.8rem;
  height: 1.6rem;
  background: #FFF;
  -webkit-mask-image: url(/assets/img/club/icon_arrow_up.svg);
          mask-image: url(/assets/img/club/icon_arrow_up.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
          transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
}
.pageTop a .arrow::after {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.pageTop a .arrow::before {
  top: 200%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.pageTop a:hover {
  text-decoration: none;
  background: rgba(85, 85, 85, 0.65);
}
.pageTop a:hover .arrow::before {
  top: 50%;
}
.pageTop a:hover .arrow::after {
  top: -100%;
}

.barlow-semi-condensed-regular {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.barlow-semi-condensed-medium {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.barlow-semi-condensed-semibold {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.barlow-semi-condensed-bold {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.barlow-semi-condensed-regular-italic {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.barlow-semi-condensed-medium-italic {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.barlow-semi-condensed-semibold-italic {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.barlow-semi-condensed-bold-italic {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-style: italic;
}

/*== general style ============================*/
.clublistBtn {
  display: block;
  margin-bottom: 6rem;
  padding: 1rem;
  width: 100%;
  color: #FFF;
  background: #E25575;
  border-radius: 0 0 0.6rem 0.6rem;
}
@media screen and (min-width: 751px) {
  .clublistBtn {
    margin-bottom: 8rem;
    padding: 2rem;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
  }
}

.c-btn {
  display: block;
  width: 50%;
  max-width: 20rem;
  font-size: 1.2rem;
}
@media screen and (min-width: 751px) {
  .c-btn {
    font-size: 1.5rem;
  }
}
.c-btn_indexClub {
  max-width: inherit;
  width: 100%;
  display: block;
  margin-bottom: 6rem;
  width: 100%;
  color: #FFF;
  border-radius: 0 0 0.6rem 0.6rem;
}
@media screen and (min-width: 751px) {
  .c-btn_indexClub {
    margin-bottom: 8rem;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
  }
}
@media screen and (max-width: 750px) {
  .c-btn_indexInfo {
    max-width: inherit;
    width: 100%;
  }
}
@media screen and (min-width: 751px) {
  .c-btn_indexInfo {
    float: right;
  }
}
.c-btn_sizeM {
  width: 60%;
  max-width: 26rem;
}
.c-btn_arrow {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem 6rem 1rem 1.5rem;
  border-radius: 0.6rem;
  color: #FFF;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
          transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (min-width: 751px) {
  .c-btn_arrow {
    padding: 1.7rem 6rem 1.7rem 2.5rem;
  }
}
.c-btn_arrowLtoR {
  content: "";
  position: absolute;
  top: calc(50% - 0.9rem);
  right: 1rem;
  width: 3rem;
  height: 1.8rem;
  background: #FFF;
  border-radius: 0.4rem;
  overflow: hidden;
}
@media screen and (min-width: 751px) {
  .c-btn_arrowLtoR {
    top: calc(50% - 1.2rem);
    right: 2rem;
    width: 4rem;
    height: 2.4rem;
  }
}
.c-btn_arrowLtoR::before, .c-btn_arrowLtoR::after {
  display: block;
  content: "";
  position: absolute;
  width: 1.2rem;
  height: 0.6rem;
  background: #E25575;
  -webkit-mask-image: url(/assets/img/club/icon_arrow.svg);
          mask-image: url(/assets/img/club/icon_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
          transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (min-width: 751px) {
  .c-btn_arrowLtoR::before, .c-btn_arrowLtoR::after {
    width: 1.6rem;
    height: 0.8rem;
  }
}
.c-btn_arrowLtoR::after {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-btn_arrowLtoR::before {
  top: 50%;
  left: -100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-btn_arrow:hover {
  text-decoration: none;
  opacity: 0.8;
}
.c-btn_arrow:hover .c-btn_arrowLtoR::before {
  left: 50%;
}
.c-btn_arrow:hover .c-btn_arrowLtoR::after {
  left: 200%;
}
@media screen and (max-width: 750px) {
  .c-btn_arrow .first {
    display: none;
  }
  .c-btn_arrow .second {
    top: 50%;
    left: 50%;
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@media screen and (min-width: 751px) {
  .c-btn_arrow .hoveranime,
  .c-btn_arrow .hoveranime02,
  .c-btn_arrow .hoveranime03 {
    overflow: hidden;
    line-height: 2;
    display: inline-block;
    position: relative;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 10rem;
    height: 2rem;
  }
  .c-btn_arrow .hoveranime .first, .c-btn_arrow .hoveranime .second,
  .c-btn_arrow .hoveranime02 .first,
  .c-btn_arrow .hoveranime02 .second,
  .c-btn_arrow .hoveranime03 .first,
  .c-btn_arrow .hoveranime03 .second {
    position: absolute;
    width: 10rem;
    -webkit-transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
            transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
  }
  .c-btn_arrow .hoveranime .first,
  .c-btn_arrow .hoveranime02 .first,
  .c-btn_arrow .hoveranime03 .first {
    top: -90%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .c-btn_arrow .hoveranime .second,
  .c-btn_arrow .hoveranime02 .second,
  .c-btn_arrow .hoveranime03 .second {
    top: 50%;
    left: 50%;
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .c-btn_arrow .hoveranime02 {
    width: 15rem;
  }
  .c-btn_arrow .hoveranime02 .first, .c-btn_arrow .hoveranime02 .second {
    width: 15rem;
  }
  .c-btn_arrow .hoveranime03 {
    width: 40rem;
    height: 4rem;
    line-height: 1.2;
  }
  .c-btn_arrow .hoveranime03 .first, .c-btn_arrow .hoveranime03 .second {
    width: 40rem;
    height: 4rem;
  }
  .c-btn_arrow:hover .first {
    -webkit-animation: firstAnime 2s cubic-bezier(0.33, 1, 0.68, 1);
            animation: firstAnime 2s cubic-bezier(0.33, 1, 0.68, 1);
  }
  .c-btn_arrow:hover .second {
    -webkit-animation: secondAnime 0.5s cubic-bezier(0.33, 1, 0.68, 1);
            animation: secondAnime 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  }
  @-webkit-keyframes firstAnime {
    from {
      top: 10%;
      opacity: 0.5;
    }
    to {
      top: -90%;
      opacity: 0;
    }
  }
  @keyframes firstAnime {
    from {
      top: 10%;
      opacity: 0.5;
    }
    to {
      top: -90%;
      opacity: 0;
    }
  }
  @-webkit-keyframes secondAnime {
    from {
      top: 105%;
      opacity: 0;
    }
    to {
      top: 50%;
      opacity: 1;
    }
  }
  @keyframes secondAnime {
    from {
      top: 105%;
      opacity: 0;
    }
    to {
      top: 50%;
      opacity: 1;
    }
  }
}
.c-btnList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 751px) {
  .c-btnList {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.c-btnList_item {
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  width: 100%;
  border-radius: 0.6rem;
  border: 0.1rem solid #DDD;
  color: #222;
  -webkit-transition: background 0.5s ease;
  transition: background 0.5s ease;
}
@media screen and (min-width: 751px) {
  .c-btnList_item {
    width: 49%;
    margin-right: 2%;
  }
  .c-btnList_item:nth-of-type(2n) {
    margin-right: 0;
  }
}
.c-btnList_item[href*=".pdf"]::after, .c-btnList_item[href*=".doc"]::after, .c-btnList_item[href*=".xls"]::after, .c-btnList_item[href*=".pptx"]::after {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  top: calc(50% - 0.8rem);
  right: 1rem;
  background: url(/assets/img/club/icon_pdf.png) no-repeat 0 0;
  background-size: contain;
}
@media screen and (min-width: 751px) {
  .c-btnList_item[href*=".pdf"]::after, .c-btnList_item[href*=".doc"]::after, .c-btnList_item[href*=".xls"]::after, .c-btnList_item[href*=".pptx"]::after {
    width: 2.1rem;
    height: 2.1rem;
    top: calc(50% - 1.05rem);
    right: 2rem;
  }
}
.c-btnList_item[href*=".doc"]::after {
  background: url(/assets/img/club/icon_word.png) no-repeat 0 0;
  background-size: contain;
}
.c-btnList_item[href*=".xls"]::after {
  background: url(/assets/img/club/icon_excel.png) no-repeat 0 0;
  background-size: contain;
}
.c-btnList_item[href*=".pptx"]::after {
  background: url(/assets/img/club/icon_pp.png) no-repeat 0 0;
  background-size: contain;
}
.c-btnList_item:hover {
  text-decoration: none;
  background: #EEE;
}
.c-ancLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-top: 0.1rem solid #F3BFCC;
  border-left: 0.1rem solid #F3BFCC;
  background: #FFF;
}
@media screen and (min-width: 751px) {
  .c-ancLink {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    border-radius: 0.6rem;
    border: 0.1rem solid #F3BFCC;
  }
}
.c-ancLink_item {
  position: relative;
  padding: 1rem 6rem 1rem 1rem;
  display: block;
  border-right: 0.1rem solid #F3BFCC;
  border-bottom: 0.1rem solid #F3BFCC;
  color: #222;
  -webkit-transition: background 0.5s ease;
  transition: background 0.5s ease;
}
@media screen and (min-width: 751px) {
  .c-ancLink_item {
    padding: 2rem 6rem 2rem 1.5rem;
  }
  .c-ancLink_itemBottom {
    border-bottom: none;
  }
}
.c-ancLink_item_arrowLtoR {
  content: "";
  position: absolute;
  top: calc(50% - 0.9rem);
  right: 1rem;
  width: 3rem;
  height: 1.8rem;
  background: #E25575;
  border-radius: 0.4rem;
  overflow: hidden;
}
@media screen and (min-width: 751px) {
  .c-ancLink_item_arrowLtoR {
    top: calc(50% - 1.2rem);
    right: 2rem;
    width: 4rem;
    height: 2.4rem;
  }
}
.c-ancLink_item_arrowLtoR::before, .c-ancLink_item_arrowLtoR::after {
  display: block;
  content: "";
  position: absolute;
  width: 1.2rem;
  height: 0.6rem;
  background: #FFF;
  -webkit-mask-image: url(/assets/img/club/icon_arrow.svg);
          mask-image: url(/assets/img/club/icon_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
          transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (min-width: 751px) {
  .c-ancLink_item_arrowLtoR::before, .c-ancLink_item_arrowLtoR::after {
    width: 1.6rem;
    height: 0.8rem;
  }
}
.c-ancLink_item_arrowLtoR::after {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-ancLink_item_arrowLtoR::before {
  top: 50%;
  left: -100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-ancLink_item_arrowTtoB {
  content: "";
  position: absolute;
  top: calc(50% - 1.5rem);
  right: 1rem;
  width: 1.8rem;
  height: 3rem;
  background: #E25575;
  border-radius: 0.4rem;
  overflow: hidden;
}
@media screen and (min-width: 751px) {
  .c-ancLink_item_arrowTtoB {
    top: calc(50% - 2rem);
    right: 2rem;
    width: 2.4rem;
    height: 4rem;
    right: 2rem;
  }
}
.c-ancLink_item_arrowTtoB::before, .c-ancLink_item_arrowTtoB::after {
  display: block;
  content: "";
  position: absolute;
  width: 0.6rem;
  height: 1.2rem;
  background: #FFF;
  -webkit-mask-image: url(/assets/img/club/icon_arrow_down.svg);
          mask-image: url(/assets/img/club/icon_arrow_down.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
          transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (min-width: 751px) {
  .c-ancLink_item_arrowTtoB::before, .c-ancLink_item_arrowTtoB::after {
    width: 0.8rem;
    height: 1.6rem;
  }
}
.c-ancLink_item_arrowTtoB::after {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-ancLink_item_arrowTtoB::before {
  top: -200%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-ancLink_item:hover {
  text-decoration: none;
  background: #FFF1F1;
}
.c-ancLink_item:hover .c-ancLink_item_arrowLtoR::before {
  left: 50%;
}
.c-ancLink_item:hover .c-ancLink_item_arrowLtoR::after {
  left: 200%;
}
.c-ancLink_item:hover .c-ancLink_item_arrowTtoB::before {
  top: 50%;
}
.c-ancLink_item:hover .c-ancLink_item_arrowTtoB::after {
  top: 200%;
}
@media screen and (min-width: 751px) {
  .c-ancLink-04 a {
    width: 25%;
  }
  .c-ancLink-04 a:nth-child(4n) {
    border-right: none;
  }
  .c-ancLink-03 a {
    width: 33.3333333333%;
  }
  .c-ancLink-03 a:nth-child(3n) {
    border-right: none;
  }
}
.c-tbl01, .c-tbl02 {
  border-top: 0.1rem solid #DDD;
  border-left: 0.1rem solid #DDD;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 751px) {
  .c-tbl01, .c-tbl02 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.c-tbl01 h3, .c-tbl01 .thead, .c-tbl01 .txt, .c-tbl02 h3, .c-tbl02 .thead, .c-tbl02 .txt {
  padding: 1rem;
}
@media screen and (min-width: 751px) {
  .c-tbl01 h3, .c-tbl01 .thead, .c-tbl01 .txt, .c-tbl02 h3, .c-tbl02 .thead, .c-tbl02 .txt {
    padding: 2rem;
    -ms-flex-item-align: stretch;
        align-self: stretch;
  }
}
.c-tbl01 h3, .c-tbl01 .thead, .c-tbl02 h3, .c-tbl02 .thead {
  width: 100%;
  border-right: 0.1rem solid #DDD;
  border-bottom: 0.1rem solid #DDD;
  background: #F7F7F7;
}
@media screen and (min-width: 751px) {
  .c-tbl01 h3, .c-tbl01 .thead, .c-tbl02 h3, .c-tbl02 .thead {
    width: 34rem;
  }
}
.c-tbl01 .txt, .c-tbl02 .txt {
  width: 100%;
  border-right: 0.1rem solid #DDD;
  border-bottom: 0.1rem solid #DDD;
}
@media screen and (min-width: 751px) {
  .c-tbl01 .txt, .c-tbl02 .txt {
    width: calc(100% - 34rem);
  }
}
.c-tbl01 + .c-tbl01, .c-tbl01 + .c-tbl02, .c-tbl02 + .c-tbl01, .c-tbl02 + .c-tbl02 {
  border-top: 0;
}
.c-tbl02 h3, .c-tbl02 .thead {
  background: #FFF;
}
@media screen and (min-width: 751px) {
  .c-tbl02 h3, .c-tbl02 .thead {
    width: 23rem;
  }
}
@media screen and (min-width: 751px) {
  .c-tbl02 p {
    width: calc(100% - 23rem);
  }
}
.c-photoGrid3 {
  display: grid;
  grid-template-rows: 2.5fr 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  row-gap: 1rem;
  grid-template-areas: "areaA areaA" "areaB areaC";
}
@media screen and (min-width: 751px) {
  .c-photoGrid3 {
    grid-template-rows: 22rem 22rem;
    grid-template-columns: 1fr 44rem;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
    row-gap: 1rem;
    grid-template-areas: "areaA areaB" "areaA areaC";
  }
}
.c-photoGrid3_itemA {
  grid-area: areaA;
}
.c-photoGrid3_itemB {
  grid-area: areaB;
}
.c-photoGrid3_itemC {
  grid-area: areaC;
}
.c-hr {
  margin: 2rem 0;
  border: none;
  width: 100%;
  height: 0.1rem;
  background: #DDD;
}
@media screen and (min-width: 751px) {
  .c-hr {
    margin: 4rem 0;
  }
}
.c-dotList li {
  position: relative;
  margin: 0.5rem 0;
  padding-left: 1.5rem;
  line-height: 2;
}
.c-dotList li::before {
  position: absolute;
  content: "";
  top: 0.8em;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 0.5rem;
  background: #E25575;
}
@media screen and (min-width: 751px) {
  .c-dotList li {
    padding-left: 2.5rem;
  }
  .c-dotList li::before {
    left: 0.45em;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 0.7rem;
  }
}
.c-dotList_disable li::before {
  background: #DDD;
}
.c-dotListActivities li a {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.c-dotListActivities li a:hover {
  color: #E25575;
}
.c-dotListActivities li a[target*=_blank] {
  padding-right: 3rem;
  background: url(/assets/img/club/icon_blank.svg) no-repeat right 0;
  background-size: 1.9rem 1.8rem;
}
@media screen and (min-width: 751px) {
  .c-dotListActivities li a[target*=_blank] {
    background-position: right 20%;
  }
}

.c-btn_indexClub .c-btn_arrow {
  border-radius: 0 0 0.6rem 0.6rem;
}

.u_bg_other {
  background-color: #8E8E8E;
}
.u_bg_main {
  background-color: #E25575;
}
.u-barlow700 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
}
.u-radius img {
  border-radius: 0.6rem;
}
.u-radiusBox {
  display: block;
  border-radius: 0.6rem;
  overflow: hidden;
}
.u-fs_XL {
  font-size: 2.1rem;
}
@media screen and (min-width: 751px) {
  .u-fs_XL {
    font-size: 3.4rem;
  }
}
.u-fs_L {
  font-size: 1.7rem;
}
@media screen and (min-width: 751px) {
  .u-fs_L {
    font-size: 2.6rem;
  }
}
.u-fs_M {
  font-size: 1.5rem;
}
@media screen and (min-width: 751px) {
  .u-fs_M {
    font-size: 1.8rem;
  }
}
.u-fs_S {
  font-size: 1rem;
}
@media screen and (min-width: 751px) {
  .u-fs_S {
    font-size: 1.2rem;
  }
}
.u-zoomImg {
  display: block;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 751px) {
  .u-zoomImg {
    margin-bottom: 0.5rem;
  }
}
.u-zoomImg img {
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.u-zoomImg:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.u-overlayImg01::before, .u-overlayImg02::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: 5;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.u-overlayImg01:hover::before, .u-overlayImg02:hover::before {
  opacity: 0.6;
}
.u-overlayImg02::before {
  opacity: 0.6;
  -webkit-transition: none;
  transition: none;
}
.u-mb60_v {
  margin-bottom: 3rem;
}
@media screen and (min-width: 751px) {
  .u-mb60_v {
    margin-bottom: 6rem;
  }
}
.u-mb80_v {
  margin-bottom: 4rem;
}
@media screen and (min-width: 751px) {
  .u-mb80_v {
    margin-bottom: 8rem;
  }
}
.u-mb100_v {
  margin-bottom: 5rem;
}
@media screen and (min-width: 751px) {
  .u-mb100_v {
    margin-bottom: 10rem;
  }
}

ol li {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 2.5rem;
  list-style-type: none;
  counter-increment: cnt;
}

ol li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: counter(cnt) ".";
  width: 2em;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
}

/* icon */
.icon {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.2rem 0.8rem;
  font-size: 1rem;
  color: #FFF;
  border-radius: 0.2rem;
}
@media screen and (min-width: 751px) {
  .icon {
    margin-bottom: 1rem;
    font-size: 1.3rem;
  }
}

/* anchorSec */
.anchorSec {
  background: #FAE6EB;
}
.anchorSec_inner {
  width: calc(100dvw - 2.4rem);
  margin: 0 auto;
  padding: 2rem 0;
}
@media screen and (min-width: 751px) {
  .anchorSec_inner {
    max-width: 118rem;
    width: 98%;
    padding: 6rem 0;
    border-radius: 1rem;
  }
}
.anchorSec_ttl {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
@media screen and (min-width: 751px) {
  .anchorSec_ttl {
    font-size: 1.4rem;
  }
}
.anchorSec_ttl span {
  padding-right: 1rem;
  font-size: 2.5rem;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  color: #E25575;
}
@media screen and (min-width: 751px) {
  .anchorSec_ttl span {
    font-size: 3.2rem;
  }
}

/*== ttl ============================*/
.info_ttl {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 2.5rem;
}
@media screen and (min-width: 751px) {
  .info_ttl {
    font-size: 4rem;
  }
}

.ttl {
  display: block;
  /*width: 100%;*/
  margin-bottom: 3rem;
  padding-bottom: 1.6rem;
  position: relative;
  font-size: 2.1rem;
  font-weight: bold;
}
@media screen and (min-width: 751px) {
  .ttl {
    margin-bottom: 4rem;
    font-size: 4.2rem;
  }
}
.ttl::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.5rem;
  height: 0.25rem;
  background: #E25575;
}
@media screen and (min-width: 751px) {
  .ttl::after {
    width: 5rem;
    height: 0.5rem;
  }
}
.ttl02 {
  margin-bottom: 2rem;
  font-weight: bold;
}
@media screen and (min-width: 751px) {
  .ttl02 {
    font-size: 2.2rem;
  }
}
.ttl03 {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.3;
  border-bottom: 0.1rem solid #DDD;
}
@media screen and (min-width: 751px) {
  .ttl03 {
    padding: 1.5rem 0 2rem;
    margin-bottom: 2rem;
    font-size: 2rem;
  }
}
.ttl03 span {
  font-weight: normal;
}

/*== home ============================*/
.home_ttl {
  color: #E25575;
  font-weight: 900;
  line-height: 1.4;
}
@media screen and (max-width: 750px) {
  .home_ttl {
    font-size: 3.5rem;
  }
}
@media screen and (min-width: 751px) {
  .home_ttl {
    font-size: 6.8rem;
  }
}
.home_catch {
  font-size: 1.4rem;
  font-weight: bold;
}
@media screen and (min-width: 751px) {
  .home_catch {
    font-size: 2.2rem;
    letter-spacing: -0.1rem;
  }
}
.home_txt {
  line-height: 2.4;
}
@media screen and (min-width: 751px) {
  .home_txt {
    text-align: center;
  }
}

/* slide01 */
.l-inner {
  position: relative;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  width: 100%;
  margin: 0 auto;
}

.slide-media,
.thumb-media {
  position: relative;
  overflow: hidden;
}
.slide-media img,
.thumb-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.slide01 {
  padding: 8rem 0 4rem;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .slide01 {
    padding: 4rem 0 2rem;
  }
}
.slide01 .swiper {
  overflow: visible;
}
.slide01 .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}
.slide01 .swiper-slide {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.slide01 .slide {
  overflow: hidden;
  width: 47rem;
  border-radius: 0.6rem;
}
@media screen and (max-width: 750px) {
  .slide01 .slide {
    width: 24rem;
  }
}
.slide01 .slide-media {
  padding-top: 62.5%;
}
.slide01 .swiper-slide-even .slide {
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}
@media screen and (min-width: 751px) {
  .slide01 .swiper-slide-even .slide {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
}

/* mainSlide */
.mainSlide .swiper {
  position: relative;
  border-radius: 0.6rem 0.6rem 0 0;
}
.mainSlide .swiper-slide {
  width: 100%;
  height: 30rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  line-height: 1.3;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media screen and (min-width: 751px) {
  .mainSlide .swiper-slide {
    height: 61rem;
  }
}
.mainSlide .swiper-slide-media {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 30rem;
}
@media screen and (min-width: 751px) {
  .mainSlide .swiper-slide-media {
    height: 61rem;
  }
}
.mainSlide .swiper-slide-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (min-width: 751px) {
  .mainSlide .swiper-slide-media img {
    -o-object-fit: fill;
       object-fit: fill;
  }
}
.mainSlide .swiper-slide-txt {
  position: absolute;
  color: #FFF;
  opacity: 0.85;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.mainSlide .swiper-slide-title {
  font-size: 4.2rem;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-style: italic;
}
@media screen and (min-width: 751px) {
  .mainSlide .swiper-slide-title {
    font-size: 9.2rem;
  }
}
.mainSlide .swiper-slide:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.mainSlide .swiper-slide:hover .swiper-slide-txt {
  opacity: 1;
}
.mainSlide .swiper-controller {
  position: absolute;
  bottom: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  color: #fff;
  bottom: 0.8rem;
  text-align: center;
  z-index: 10;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media screen and (min-width: 751px) {
  .mainSlide .swiper-controller {
    bottom: 3rem;
    font-size: 2rem;
  }
}
.mainSlide .swiper-controller * {
  -ms-flex-item-align: center;
      align-self: center;
}
.mainSlide .swiper-pagination {
  min-width: 5rem;
  text-align: center;
}
.mainSlide .swiper-button-prev, .mainSlide .swiper-button-next {
  position: relative;
  display: inline-block;
  width: 5px;
  height: 10px;
  padding: 1rem;
  text-decoration: none;
  color: #fff;
}
.mainSlide .swiper-button-prev::before, .mainSlide .swiper-button-prev::after, .mainSlide .swiper-button-next::before, .mainSlide .swiper-button-next::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  width: 7px;
  height: 2px;
  border-radius: 9999px;
  background-color: #FFF;
}
@media screen and (min-width: 751px) {
  .mainSlide .swiper-button-prev, .mainSlide .swiper-button-next {
    width: 10.5px;
    height: 19px;
    padding: 2rem;
  }
  .mainSlide .swiper-button-prev::before, .mainSlide .swiper-button-prev::after, .mainSlide .swiper-button-next::before, .mainSlide .swiper-button-next::after {
    width: 14px;
    height: 2px;
  }
}
.mainSlide .swiper-button-prev::before, .mainSlide .swiper-button-next::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.mainSlide .swiper-button-prev::after, .mainSlide .swiper-button-next::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.mainSlide .swiper-button-prev::before, .mainSlide .swiper-button-prev::after {
  left: 1rem;
  -webkit-transform-origin: 1px 50%;
          transform-origin: 1px 50%;
}
.mainSlide .swiper-button-next::before, .mainSlide .swiper-button-next::after {
  right: 1rem;
  -webkit-transform-origin: calc(100% - 1px) 50%;
          transform-origin: calc(100% - 1px) 50%;
}

/* marquee */
.marquee {
  margin: 1rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  overflow: hidden;
  gap: 1rem;
}
.marquee a {
  color: #000;
  position: relative;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media screen and (min-width: 751px) {
  .marquee a {
    font-size: 1.3rem;
  }
}
.marquee a:hover {
  color: #E25575;
}
.marquee a::before {
  position: relative;
  content: "/";
  width: 1rem;
  height: 2rem;
  color: #DDD;
  font-size: 2.2rem;
}
@media screen and (min-width: 751px) {
  .marquee a::before {
    font-size: 2.6rem;
  }
}
.marquee_en {
  padding: 0 1rem 0 1.5rem;
  font-size: 2rem;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
}
@media screen and (min-width: 751px) {
  .marquee_en {
    font-size: 2.4rem;
  }
}
.marquee_name {
  padding: 0.3rem 1.5rem 0.3rem 0;
  font-size: 1.4rem;
}
.marqueePhoto img {
  width: 14.1rem;
  height: 19rem;
}

/**/
@media screen and (max-width: 750px) {
  @-webkit-keyframes infinity-scroll-left {
    from {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    to {
      -webkit-transform: translateX(-100%);
              transform: translateX(-100%);
    }
  }
  @keyframes infinity-scroll-left {
    from {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    to {
      -webkit-transform: translateX(-100%);
              transform: translateX(-100%);
    }
  }
  @-webkit-keyframes infinity-scroll-right {
    from {
      -webkit-transform: translateX(-100%);
              transform: translateX(-100%);
    }
    to {
      -webkit-transform: translateX(0%);
              transform: translateX(0%);
    }
  }
  @keyframes infinity-scroll-right {
    from {
      -webkit-transform: translateX(-100%);
              transform: translateX(-100%);
    }
    to {
      -webkit-transform: translateX(0%);
              transform: translateX(0%);
    }
  }
}
@media screen and (min-width: 751px) {
  @-webkit-keyframes infinity-scroll-left {
    from {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    to {
      -webkit-transform: translateY(-100%);
              transform: translateY(-100%);
    }
  }
  @keyframes infinity-scroll-left {
    from {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    to {
      -webkit-transform: translateY(-100%);
              transform: translateY(-100%);
    }
  }
  @-webkit-keyframes infinity-scroll-right {
    from {
      -webkit-transform: translateY(-100%);
              transform: translateY(-100%);
    }
    to {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
  @keyframes infinity-scroll-right {
    from {
      -webkit-transform: translateY(-100%);
              transform: translateY(-100%);
    }
    to {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
}
.scroll-infinity__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
@media screen and (min-width: 751px) {
  .scroll-infinity__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-height: 78rem;
  }
}

.scroll-infinity__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0 0 1rem;
  gap: 1rem;
}
.scroll-infinity__list + .scroll-infinity__list {
  margin: 0 0 0 1rem;
}
@media screen and (min-width: 751px) {
  .scroll-infinity__list + .scroll-infinity__list {
    margin: 1rem 0 0;
  }
}
@media screen and (min-width: 751px) {
  .scroll-infinity__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
}

.scroll-infinity__list--left {
  -webkit-animation: infinity-scroll-left 20s infinite linear 0.5s both;
          animation: infinity-scroll-left 20s infinite linear 0.5s both;
}
@media screen and (min-width: 751px) {
  .scroll-infinity__list--left {
    -webkit-animation: infinity-scroll-left 30s infinite linear 0.5s both;
            animation: infinity-scroll-left 30s infinite linear 0.5s both;
    margin-right: 1rem;
  }
}

.scroll-infinity__list--right {
  -webkit-animation: infinity-scroll-right 20s infinite linear 0.5s both;
          animation: infinity-scroll-right 20s infinite linear 0.5s both;
}
@media screen and (min-width: 751px) {
  .scroll-infinity__list--right {
    -webkit-animation: infinity-scroll-right 30s infinite linear 0.5s both;
            animation: infinity-scroll-right 30s infinite linear 0.5s both;
  }
}

.scroll-infinity__item {
  width: 33.3333333333vw;
}
@media screen and (min-width: 751px) {
  .scroll-infinity__item {
    width: 28rem;
    height: 38rem;
  }
}

.scroll-infinity__item > img {
  width: 100%;
  border-radius: 0.6rem;
}

/* info */
.infoSect {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 751px) {
  .infoSect {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 118rem;
    margin: 0 auto;
  }
}
.infoSectNav {
  width: 100%;
}
@media screen and (min-width: 751px) {
  .infoSectNav {
    width: 28rem;
  }
}
.infoSectNav_wrapper {
  margin: 3rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 751px) {
  .infoSectNav_wrapper {
    margin: 4rem 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.infoSectNav_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1rem;
  width: 50%;
  color: #888;
  cursor: pointer;
}
.infoSectNav_link::before {
  margin-right: 1rem;
  content: "";
  width: 1.5rem;
  height: 0.3rem;
  border-radius: 0.3rem;
  background: #FFF;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}
@media screen and (min-width: 751px) {
  .infoSectNav_link {
    width: 100%;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
}
.infoSectNav_link:hover, .infoSectNav_link.active, .infoSectNav_link.active a,
.infoSectNav_link a:hover,
.infoSectNav_link a.active {
  color: #222;
  font-weight: bold;
  text-decoration: none;
}
.infoSectNav_link:hover::before, .infoSectNav_link.active::before, .infoSectNav_link.active a::before,
.infoSectNav_link a:hover::before,
.infoSectNav_link a.active::before {
  background: #E25575;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.infoSectNav_link a {
  color: #888;
}
.infoSectContent {
  width: 100%;
}
@media screen and (min-width: 751px) {
  .infoSectContent {
    max-width: 84rem;
  }
}
.infoSect_listBox {
  display: none;
}
.infoSect_listBox.active {
  margin-bottom: 2rem;
  display: block;
}
.infoList {
  border-top: 1px solid #DDD;
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: opacity 0.9s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.9s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.9s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.9s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.9s cubic-bezier(0.25, 1, 0.5, 1), transform 0.9s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.9s cubic-bezier(0.25, 1, 0.5, 1), transform 0.9s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.9s cubic-bezier(0.25, 1, 0.5, 1);
  -webkit-transition-delay: 0s, 0s;
          transition-delay: 0s, 0s;
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
}
.infoList_item {
  position: relative;
  /*display: block;*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #222;
  text-decoration: none;
  margin-top: 1.5rem;
  padding-bottom: 1.5rem;
}
@media screen and (min-width: 751px) {
  .infoList_item {
    margin-top: 3rem;
    padding-bottom: 3rem;
  }
}
.infoList_item:hover {
  text-decoration: none;
}
.infoList_item p {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.infoList_item::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #DDD;
}
.infoList_item::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 0%;
  height: 1px;
  background-color: #222;
  -webkit-transition: width 0.3s cubic-bezier(0.61, 1, 0.88, 1);
  transition: width 0.3s cubic-bezier(0.61, 1, 0.88, 1);
}
.infoList_item.is-out::after {
  width: 100%;
  left: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: left 0.7s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition: left 0.7s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition: left 0.7s cubic-bezier(0.19, 1, 0.22, 1), transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition: left 0.7s cubic-bezier(0.19, 1, 0.22, 1), transform 0.7s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.infoList_item.is-hover p {
  -webkit-transform: translate3d(15px, 0, 0);
          transform: translate3d(15px, 0, 0);
}
.infoList_item.is-hover::after {
  width: 100%;
  left: 0;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: width 0.7s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition: width 0.7s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition: width 0.7s cubic-bezier(0.19, 1, 0.22, 1), transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition: width 0.7s cubic-bezier(0.19, 1, 0.22, 1), transform 0.7s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.infoList_itemDate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 1.1rem;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  width: 5em;
}
@media screen and (min-width: 751px) {
  .infoList_itemDate {
    font-size: 1.8rem;
  }
}
.infoList_itemDateD {
  font-size: 2.4rem;
}
@media screen and (min-width: 751px) {
  .infoList_itemDateD {
    font-size: 3.8rem;
  }
}
.infoList_itemTtl {
  padding: 0 0 0 2rem;
  width: calc(100% - 5em);
}
@media screen and (min-width: 751px) {
  .infoList_itemTtl {
    padding: 0 2rem;
  }
}
@media screen and (min-width: 751px) {
  .infoList_itemArrow {
    width: 1.6rem;
    height: 0.8rem;
    background: #BBB;
    -webkit-mask-image: url(/assets/img/club/icon_arrow.svg);
            mask-image: url(/assets/img/club/icon_arrow.svg);
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: right center;
            mask-position: right center;
  }
}
.infoArticle {
  width: 100%;
  margin: 0 auto 6rem;
}
@media screen and (min-width: 751px) {
  .infoArticle {
    max-width: 94rem;
  }
}
.infoArticle_date {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 750px) {
  .infoArticle_date {
    margin-bottom: 0.5rem;
    font-size: 1em;
  }
}
.infoArticle_ttl {
  margin-bottom: 1rem;
  font-size: 1.7rem;
  font-weight: bold;
}
@media screen and (min-width: 751px) {
  .infoArticle_ttl {
    font-size: 3.4rem;
  }
}
.infoArticle_column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.infoArticle_column_item {
  width: 49%;
  margin: 1% 1% 1% 0;
}
.infoArticle_column_item:nth-of-type(2n) {
  margin: 1% 0 1% 1%;
}
.infoArticle img {
  display: block;
  width: 100%;
  height: auto;
}
.infoPrevIndex {
  position: relative;
  padding: 2rem 0 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  background: rgb(247, 226, 226);
  color: #222;
  font-size: 1.2rem;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
.infoPrevIndex_ttl {
  font-size: 2rem;
  font-weight: 600;
}
@media screen and (min-width: 751px) {
  .infoPrevIndex {
    padding: 4rem 0 5rem;
    font-size: 2.4rem;
  }
  .infoPrevIndex_ttl {
    font-size: 4rem;
  }
}
.infoPrevIndex_arrow {
  content: "";
  position: absolute;
  left: calc(50% - 4rem);
  margin: 0 auto;
  bottom: 2rem;
  width: 8rem;
  height: 2.5rem;
  background: #E25575;
  overflow: hidden;
}
.infoPrevIndex_arrow::before, .infoPrevIndex_arrow::after {
  display: block;
  content: "";
  position: absolute;
  width: 1.6rem;
  height: 0.8rem;
  background: #FFF;
  -webkit-mask-image: url(/assets/img/club/icon_arrow_back.svg);
          mask-image: url(/assets/img/club/icon_arrow_back.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
          transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
}
.infoPrevIndex_arrow::after {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.infoPrevIndex_arrow::before {
  top: 50%;
  left: 200%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.infoPrevIndex:hover {
  text-decoration: none;
  background: rgba(247, 226, 226, 0.6);
}
.infoPrevIndex:hover .infoPrevIndex_arrow::before {
  left: 50%;
}
.infoPrevIndex:hover .infoPrevIndex_arrow::after {
  left: -100%;
}

@media screen and (min-width: 751px) {
  .home_catch + .infoSectNav_wrapper {
    margin-top: 5rem;
  }
}

.list_pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 3rem 0 0;
}
@media screen and (min-width: 751px) {
  .list_pager {
    margin: 6rem 0;
  }
}
.list_pager_item {
  position: relative;
  margin-right: 2rem;
  font-size: 1.6rem;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media screen and (min-width: 751px) {
  .list_pager_item {
    font-size: 2.4rem;
  }
}
.list_pager_item a {
  display: block;
  position: relative;
  color: #BBB;
}
.list_pager_item a:hover {
  text-decoration: none;
}
.list_pager_item_inactive a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 0%;
  height: 1px;
  background-color: #222;
  -webkit-transition: width 0.3s cubic-bezier(0.61, 1, 0.88, 1);
  transition: width 0.3s cubic-bezier(0.61, 1, 0.88, 1);
}
.list_pager_item_inactive a:hover::after {
  width: 100%;
  left: 0;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: width 0.7s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition: width 0.7s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition: width 0.7s cubic-bezier(0.19, 1, 0.22, 1), transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  transition: width 0.7s cubic-bezier(0.19, 1, 0.22, 1), transform 0.7s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.list_pager_item_prev, .list_pager_item_next {
  width: 4.3rem;
  height: 2.4rem;
  position: relative;
}
.list_pager_item_prev a, .list_pager_item_next a {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 1.2rem);
  left: 0;
  width: 3.3rem;
  height: 2.4rem;
  overflow: hidden;
}
@media screen and (min-width: 751px) {
  .list_pager_item_prev a, .list_pager_item_next a {
    top: calc(50% - 1.2rem);
  }
}
.list_pager_item_prev a::before, .list_pager_item_prev a::after, .list_pager_item_next a::before, .list_pager_item_next a::after {
  display: block;
  content: "";
  position: absolute;
  width: 2rem;
  height: 1.1rem;
  background: #CCC;
  -webkit-mask-image: url(/assets/img/club/icon_arrow.svg);
          mask-image: url(/assets/img/club/icon_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
          transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
}
.list_pager_item_next a::after {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.list_pager_item_next a::before {
  top: 50%;
  left: -100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.list_pager_item_next a:hover::before {
  left: 50%;
}
.list_pager_item_next a:hover::after {
  left: 200%;
}
.list_pager_item_prev a::before, .list_pager_item_prev a::after {
  -webkit-mask-image: url(/assets/img/club/icon_arrow_back.svg);
          mask-image: url(/assets/img/club/icon_arrow_back.svg);
}
.list_pager_item_prev a::after {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.list_pager_item_prev a::before {
  top: 50%;
  left: 200%; /* -100%*/
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.list_pager_item_prev a:hover::before {
  left: 50%;
}
.list_pager_item_prev a:hover::after {
  left: -100%;
}
.list_pager_item span {
  display: block;
  position: relative;
  color: #222;
}
.list_pager_item span::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #222;
}

/* interview */
.interviewSect {
  margin-top: 8rem;
  background: #FAE6EB;
  border-radius: 1rem;
}
@media screen and (max-width: 750px) {
  .interviewSect {
    margin-top: 2rem;
    padding-bottom: 3rem;
  }
}
.interviewSect_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 751px) {
  .interviewSect_wrapper {
    min-height: 78rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 118rem;
    margin: 0 auto;
  }
}
@media screen and (max-width: 750px) {
  .interviewSect_content {
    padding: 3rem 1.5rem;
  }
}
@media screen and (min-width: 751px) {
  .interviewSect_content {
    -webkit-box-flex: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
  }
}

/* introduct */
.introductSect {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  margin-top: 4rem;
}
@media screen and (min-width: 751px) {
  .introductSect {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 8rem;
  }
}
@media screen and (min-width: 751px) {
  .introductSect_img {
    margin-right: 6rem;
  }
}
@media screen and (max-width: 750px) {
  .introductSect_img {
    margin-top: 4rem;
    width: 100%;
  }
}
@media screen and (min-width: 751px) {
  .introductSect-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .introductSect-reverse_img {
    margin-left: 6rem;
  }
}

/* support */
.supportSect {
  margin-top: 5rem;
  background: #FAE6EB;
}
@media screen and (min-width: 751px) {
  .supportSect {
    margin-top: 5rem;
  }
}
.supportSect_inner {
  text-align: center;
  background: url(/assets/img/club/bg_guide.png) no-repeat 50% 4rem;
}
@media screen and (max-width: 750px) {
  .supportSect_inner {
    width: 92dvw;
    padding: 5rem 0 3.5rem;
    margin: auto;
    background-size: 100%;
  }
}
@media screen and (min-width: 751px) {
  .supportSect_inner {
    width: calc(100dvw - 40px);
    max-width: 118rem;
    margin: auto;
    padding: 11rem 0 10rem;
  }
}
.supportSect_ttl {
  color: #E25575;
  font-size: 7rem;
  font-weight: 900;
}
@media screen and (max-width: 750px) {
  .supportSect_ttl {
    font-size: 3rem;
    line-height: 1.4;
  }
}
@media screen and (min-width: 751px) {
  .supportSect_ttl span {
    letter-spacing: -0.5rem;
  }
}
.supportSect_catch {
  margin: 1rem 0 3rem;
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (min-width: 751px) {
  .supportSect_catch {
    margin: 0 0 6rem;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 750px) {
  .supportSect_txt {
    text-align: left;
  }
}
.supportSect_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 751px) {
  .supportSect_link {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.supportSect_linkBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  width: 100%;
  padding: 1.5rem 2rem;
  background: #FFF;
  -webkit-box-shadow: 0 0 1rem 0.1rem rgba(0, 0, 0, 0.1), inset 0 0 0 0.1rem #F3BFCC;
          box-shadow: 0 0 1rem 0.1rem rgba(0, 0, 0, 0.1), inset 0 0 0 0.1rem #F3BFCC;
  border-radius: 0.4rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #222;
  font-size: 1.4rem;
  text-align: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.4;
}
@media screen and (max-width: 750px) {
  .supportSect_linkBox {
    margin-bottom: 1rem;
  }
}
@media screen and (min-width: 751px) {
  .supportSect_linkBox {
    width: 31.6%;
    min-height: 14rem;
    font-size: 2rem;
  }
}
.supportSect_linkBox_jp {
  font-weight: bold;
}
.supportSect_linkBox_en {
  color: #F3BFCC;
  font-size: 1rem;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
}
@media screen and (min-width: 751px) {
  .supportSect_linkBox_en {
    font-size: 1.4rem;
  }
}
.supportSect_linkBox::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  right: 5.8rem;
  height: 4.5rem;
  border-left: 1px solid #DDD;
}
@media screen and (min-width: 751px) {
  .supportSect_linkBox::before {
    right: 7.8rem;
    height: 11rem;
  }
}
.supportSect_linkBox .arrowLtoR {
  content: "";
  position: absolute;
  top: calc(50% - 1.1rem);
  right: 1.4rem;
  width: 3.3rem;
  height: 2.2rem;
  background: #E25575;
  border-radius: 0.4rem;
  overflow: hidden;
}
@media screen and (min-width: 751px) {
  .supportSect_linkBox .arrowLtoR {
    top: calc(50% - 1.2rem);
    right: 2rem;
    width: 4.3rem;
    height: 2.4rem;
  }
}
.supportSect_linkBox .arrowLtoR::before, .supportSect_linkBox .arrowLtoR::after {
  display: block;
  content: "";
  position: absolute;
  width: 1.2rem;
  height: 0.6rem;
  background: #FFF;
  -webkit-mask-image: url(/assets/img/club/icon_arrow.svg);
          mask-image: url(/assets/img/club/icon_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
          transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (min-width: 751px) {
  .supportSect_linkBox .arrowLtoR::before, .supportSect_linkBox .arrowLtoR::after {
    width: 1.6rem;
    height: 0.8rem;
  }
}
.supportSect_linkBox .arrowLtoR::after {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.supportSect_linkBox .arrowLtoR::before {
  top: 50%;
  left: -100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.supportSect_linkBox:hover {
  -webkit-box-shadow: 0 0 1rem 0.1rem rgba(0, 0, 0, 0.1), inset 0 0 0 0.2rem #F3BFCC;
          box-shadow: 0 0 1rem 0.1rem rgba(0, 0, 0, 0.1), inset 0 0 0 0.2rem #F3BFCC;
  text-decoration: none;
}
@media screen and (min-width: 751px) {
  .supportSect_linkBox:hover {
    -webkit-box-shadow: 0 0 1rem 0.1rem rgba(0, 0, 0, 0.1), inset 0 0 0 0.4rem #F3BFCC;
            box-shadow: 0 0 1rem 0.1rem rgba(0, 0, 0, 0.1), inset 0 0 0 0.4rem #F3BFCC;
  }
}
.supportSect_linkBox:hover .arrowLtoR::before {
  left: 50%;
}
.supportSect_linkBox:hover .arrowLtoR::after {
  left: 200%;
}
.supportSect_linkBlank {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  width: 100%;
  padding: 1.5rem 1rem;
  background: url(/assets/img/club/icon_blank.svg) no-repeat right 1rem center, #FFF;
  background-size: 1.5rem 1.5rem;
  border: 0.1rem solid #DDD;
  border-radius: 0.4rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #222;
  font-size: 1rem;
  text-align: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 750px) {
  .supportSect_linkBlank {
    margin-bottom: 1rem;
  }
}
@media screen and (min-width: 751px) {
  .supportSect_linkBlank {
    width: 31.6%;
    padding: 1.5rem;
    min-height: 12rem;
    background: url(/assets/img/club/icon_blank.svg) no-repeat right 1.6rem center, #FFF;
    background-size: 1.9rem 18.5rem;
    font-size: 1.4rem;
  }
}
.supportSect_linkBlank em {
  font-size: 1.5rem;
  font-weight: bold;
}
@media screen and (min-width: 751px) {
  .supportSect_linkBlank em {
    font-size: 2rem;
  }
}
.supportSect_linkBlank::after {
  content: "";
  position: absolute;
  width: 0.1rem;
  height: 4rem;
  top: calc(50% - 2rem);
  right: 4rem;
  background: #DDD;
}
@media screen and (min-width: 751px) {
  .supportSect_linkBlank::after {
    height: 5.4rem;
    top: calc(50% - 2.7rem);
    right: 5.2rem;
    font-size: 7rem;
  }
}
.supportSect_linkBlank:hover {
  border: 0.1rem solid #222;
  background: url(/assets/img/club/icon_blank.svg) no-repeat right 1rem center, #F9F9F9;
  background-size: 1.5rem 1.5rem;
}
@media screen and (min-width: 751px) {
  .supportSect_linkBlank:hover {
    background: url(/assets/img/club/icon_blank.svg) no-repeat right 1.6rem center, #F9F9F9;
    background-size: 1.9rem 18.5rem;
  }
}

/* strengthenIndex */
.strengthenIndex_ttl {
  margin-bottom: 3rem;
  font-weight: bold;
  font-size: 1.5rem;
}
@media screen and (min-width: 751px) {
  .strengthenIndex_ttl {
    font-size: 3.6rem;
    text-align: center;
  }
}
.strengthenIndex_txt {
  margin-bottom: 5rem;
}
@media screen and (min-width: 751px) {
  .strengthenIndex_txt {
    text-align: center;
  }
}
.strengthenIndex_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 6rem;
}
@media screen and (min-width: 751px) {
  .strengthenIndex_list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.strengthenIndex_listItem {
  position: relative;
  width: 100%;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 751px) {
  .strengthenIndex_listItem {
    width: 48%;
    margin: 0 1% 2.5rem;
  }
}
.strengthenIndex_listItem div {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin: 0 auto;
  z-index: 6;
  color: #FFF;
  text-align: center;
  opacity: 0.85;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.strengthenIndex_listItem div .strengthen_en {
  font-size: 3.6rem;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (min-width: 751px) {
  .strengthenIndex_listItem div .strengthen_en {
    font-size: 6.2rem;
  }
}
.strengthenIndex_listItem:hover div {
  opacity: 1;
}

/* strengthen */
.strengthenHeadArea {
  width: 100%;
  height: 39rem;
  padding: 8rem 0 3rem;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 751px) {
  .strengthenHeadArea {
    height: 78rem;
    padding: 13.5rem 0 10rem;
  }
}
.strengthenPageTtl {
  width: calc(100dvw - 2rem);
  padding-top: 5rem;
  margin: 0 auto;
  color: #FFF;
}
@media screen and (min-width: 751px) {
  .strengthenPageTtl {
    max-width: 118rem;
    width: 98%;
  }
}
.strengthenPageTtl h1 {
  font-size: 1.2rem;
}
@media screen and (min-width: 751px) {
  .strengthenPageTtl h1 {
    font-size: 2.2rem;
  }
}
.strengthenPageTtl p {
  padding-top: 5rem;
  font-size: 5.5rem;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
}
@media screen and (min-width: 751px) {
  .strengthenPageTtl p {
    font-size: 12rem;
  }
}
.strengthenNews {
  padding: 4rem 0;
  width: calc(100dvw - 2.4rem);
  margin: 0 auto;
}
@media screen and (min-width: 751px) {
  .strengthenNews {
    padding: 6rem 0;
    max-width: 118rem;
    width: 98%;
  }
}
@media screen and (min-width: 751px) {
  .strengthenNews .infoSect {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.strengthenNews h2 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
}
@media screen and (min-width: 751px) {
  .strengthenNews h2 {
    margin-bottom: 1.5rem;
  }
}
.strengthenNews h2 .clubname {
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (min-width: 751px) {
  .strengthenNews h2 .clubname {
    font-size: 3.4rem;
  }
}
.strengthenNews h2 .clubtxt {
  font-size: 4.2rem;
}
@media screen and (min-width: 751px) {
  .strengthenNews h2 .clubtxt {
    font-size: 7.8rem;
  }
}
@media screen and (max-width: 750px) {
  .strengthenNews h2 + p {
    margin-bottom: 2rem;
  }
}
.strengthenAppeal {
  color: #FFF;
}
.strengthenAppeal_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc(100dvw - 2.4rem);
  margin: 0 auto;
  padding: 3rem 0;
}
@media screen and (min-width: 751px) {
  .strengthenAppeal_inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 6rem 0;
    max-width: 118rem;
    width: 98%;
  }
}
.strengthenAppeal_img, .strengthenAppeal_txt {
  width: 100%;
}
@media screen and (min-width: 751px) {
  .strengthenAppeal_img, .strengthenAppeal_txt {
    width: 48%;
  }
}
.strengthenAppeal_txt {
  color: #FFF;
  line-height: 2;
}
@media screen and (max-width: 750px) {
  .strengthenAppeal_txt {
    margin-top: 2rem;
  }
}
.strengthenAppeal_txt h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (min-width: 751px) {
  .strengthenAppeal_txt h2 {
    margin-bottom: 3rem;
    font-size: 3.2rem;
  }
}
.strengthenIntro {
  width: calc(100dvw - 2.4rem);
  margin: 0 auto;
  padding: 3rem 0;
}
@media screen and (min-width: 751px) {
  .strengthenIntro {
    padding: 6rem 0;
    max-width: 118rem;
    width: 98%;
  }
}
.strengthenIntro_list {
  border-bottom: 0.1rem solid #DDD;
}
.strengthenIntro_listItem {
  border-top: 0.1rem solid #DDD;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.strengthenIntro_listItemTtl {
  padding: 1.5rem 1rem;
  width: 7em;
}
.strengthenIntro_listItemTxt {
  padding: 1.5rem 1rem;
  width: calc(100% - 8em);
}
@media screen and (min-width: 751px) {
  .strengthenIntro_listItemTtl {
    padding: 2rem;
    width: 9em;
  }
  .strengthenIntro_listItemTxt {
    padding: 2rem;
    width: calc(100% - 9em);
  }
}
.strengthenResult {
  padding: 3rem 0;
}
@media screen and (min-width: 751px) {
  .strengthenResult {
    padding: 6rem 0;
  }
}
.strengthenResult_inner {
  width: calc(100dvw - 2.4rem);
  margin: 0 auto;
  border-radius: 0.6rem;
  overflow: hidden;
  background: #FFF;
}
@media screen and (min-width: 751px) {
  .strengthenResult_inner {
    max-width: 118rem;
    width: 98%;
  }
}
.strengthenResult_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 1.5rem;
  color: #FFF;
}
@media screen and (min-width: 751px) {
  .strengthenResult_item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 4rem 0;
  }
}
.strengthenResult_item:nth-of-type(2n) {
  background: #FFF !important;
  color: #222;
}
.strengthenResult_item:nth-of-type(2n) .strengthenResult_txt {
  border-top: 0.1rem solid #DDD !important;
}
@media screen and (min-width: 751px) {
  .strengthenResult_item:nth-of-type(2n) .strengthenResult_txt {
    border-top: 0 !important;
    border-left: 0.1rem solid #DDD !important;
  }
}
.strengthenResult_ttl {
  padding-bottom: 1.5rem;
  font-size: 1.7rem;
  font-weight: bold;
}
@media screen and (min-width: 751px) {
  .strengthenResult_ttl {
    padding: 1rem 1.5rem;
    width: 7.5em;
    font-size: 2.4rem;
    text-align: center;
  }
}
.strengthenResult_txt {
  padding-top: 1.5rem;
  border-top: 0.1rem solid #FFF;
}
@media screen and (min-width: 751px) {
  .strengthenResult_txt {
    padding: 1rem 1.5rem 1rem 4rem;
    -webkit-box-flex: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
    border-top: 0;
    border-left: 0.1rem solid #FFF;
  }
}
.strengthenResult_txtOnly {
  padding-top: 0;
  border: 0;
}
@media screen and (min-width: 751px) {
  .strengthenResult_txtOnly {
    padding: 0 1.5rem 1rem 3rem;
  }
}
@media screen and (min-width: 751px) {
  .strengthenResult_txt h4 {
    font-size: 1.8rem;
  }
}
.strengthenResult_txt h4 em {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 600;
  font-size: 2rem;
}
@media screen and (min-width: 751px) {
  .strengthenResult_txt h4 em {
    font-size: 3rem;
  }
}
.strengthenResult_txt .c-dotList li::before {
  background: #FFF;
}
.strengthenSchedule {
  width: calc(100dvw - 2.4rem);
  margin: 0 auto;
  padding: 3rem 0;
}
@media screen and (min-width: 751px) {
  .strengthenSchedule {
    padding: 6rem 0;
    max-width: 118rem;
    width: 98%;
  }
}
.strengthenSchedule_inner {
  padding: 2rem 1rem;
  border-radius: 0.5rem;
  border-width: 0.3rem;
  border-style: solid;
}
@media screen and (min-width: 751px) {
  .strengthenSchedule_inner {
    padding: 6rem;
    border-radius: 1rem;
    border-width: 0.5rem;
  }
}
@media screen and (min-width: 751px) {
  .strengthenSchedule_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.strengthenSchedule_boxItem {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-image: url(/assets/img/club/bg_schedule.png);
  background-repeat: repeat-y;
  background-position: 2.1rem 0;
  background-size: 0.1rem auto;
  z-index: -1;
}
@media screen and (min-width: 751px) {
  .strengthenSchedule_boxItem {
    width: 49%;
    background-position: 4rem 0;
    background-size: 0.2rem auto;
  }
}
.strengthenSchedule_list {
  margin-bottom: 2rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.strengthenSchedule_list::before {
  position: absolute;
  content: "";
  width: 4.3rem;
  height: 4.3rem;
  border-radius: 4.3rem;
  top: calc(50% - 2.1rem);
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 751px) {
  .strengthenSchedule_list::before {
    width: 8rem;
    height: 8rem;
    border-radius: 8rem;
    top: calc(50% - 4rem);
  }
}
.strengthenSchedule_list_last {
  margin-bottom: 0;
}
.strengthenSchedule_listMM {
  position: relative;
  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;
  width: 4.3rem;
  height: 4.3rem;
  color: #FFF;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .strengthenSchedule_listMM {
    font-size: 1rem;
  }
}
@media screen and (min-width: 751px) {
  .strengthenSchedule_listMM {
    width: 8rem;
    height: 8rem;
  }
}
.strengthenSchedule_listMM em {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  padding: 0 0.2rem 0.3rem 0;
}
@media screen and (min-width: 751px) {
  .strengthenSchedule_listMM em {
    font-size: 3rem;
    padding: 0 0.3rem 0.8rem 0;
  }
}
.strengthenSchedule_listTxt {
  padding-left: 2rem;
  -webkit-box-flex: 4;
      -ms-flex-positive: 4;
          flex-grow: 4;
  width: calc(100% - 6.3rem);
}
@media screen and (min-width: 751px) {
  .strengthenSchedule_listTxt {
    width: calc(100% - 10rem);
  }
}
.strengthenPhoto_inner {
  width: calc(100dvw - 2.4rem);
  margin: 0 auto;
  padding: 3rem 0;
  color: #FFF;
}
@media screen and (min-width: 751px) {
  .strengthenPhoto_inner {
    padding: 6rem 0;
    max-width: 121rem;
    width: 98%;
  }
}
@media screen and (min-width: 751px) {
  .strengthenPhoto .ttl {
    margin: 0 1.5rem 6rem;
  }
}
.strengthenPhoto .ttl::after {
  background: #FFF !important;
}
.strengthenDirector {
  padding: 3rem 0;
}
@media screen and (min-width: 751px) {
  .strengthenDirector {
    padding: 6rem 0;
  }
}
.strengthenDirector_inner {
  width: calc(100dvw - 2.4rem);
  margin: 0 auto;
  padding: 2rem 1rem;
  border-radius: 0.5rem;
  background: #FFF;
}
@media screen and (min-width: 751px) {
  .strengthenDirector_inner {
    max-width: 118rem;
    width: 98%;
    padding: 6rem;
    border-radius: 1rem;
  }
}
.strengthenDirectorBox {
  margin-bottom: 5rem;
}
.strengthenDirectorBox ::after {
  content: "";
  display: block;
  clear: both;
}
.strengthenDirectorBox + .strengthenDirectorBox {
  border-top: 0.1rem solid #DDD;
  padding-top: 5rem;
}
.strengthenDirector_post {
  font-size: 1.2rem;
}
@media screen and (min-width: 751px) {
  .strengthenDirector_post {
    font-size: 2rem;
  }
}
.strengthenDirector_career {
  font-size: 1.1rem;
}
@media screen and (min-width: 751px) {
  .strengthenDirector_career {
    font-size: 1.4rem;
  }
}
.strengthenDirector_img {
  width: 15rem;
  float: left;
  padding: 0 1rem 1rem 0;
}
@media screen and (min-width: 751px) {
  .strengthenDirector_img {
    width: 34rem;
    padding: 0 4rem 4rem 0;
  }
}
.strengthenDirectorSub {
  border-top: 0.1rem solid #DDD;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.strengthenDirectorSub * {
  padding: 1rem;
}
@media screen and (min-width: 751px) {
  .strengthenDirectorSub * {
    padding: 2rem;
  }
}
.strengthenDirectorSub h3 {
  width: 13rem;
}
@media screen and (min-width: 751px) {
  .strengthenDirectorSub h3 {
    width: 32rem;
  }
}
.strengthenDirectorSub p {
  width: calc(100% - 13rem);
}
@media screen and (min-width: 751px) {
  .strengthenDirectorSub p {
    width: calc(100% - 32rem);
  }
}
.strengthenDirectorSub:last-child {
  border-bottom: 0.1rem solid #DDD;
}
.strengthenEmployment {
  width: calc(100dvw - 2.4rem);
  margin: 0 auto;
  padding: 2rem 0;
  border-radius: 0.5rem;
  background: #FFF;
}
@media screen and (min-width: 751px) {
  .strengthenEmployment {
    max-width: 118rem;
    width: 98%;
    padding: 6rem 0;
    border-radius: 1rem;
  }
}
.strengthenList {
  background: #FAE6EB;
}
.strengthenList_inner {
  width: calc(100dvw - 2.4rem);
  margin: 0 auto;
  padding: 2rem 0;
}
@media screen and (min-width: 751px) {
  .strengthenList_inner {
    max-width: 118rem;
    width: 98%;
    padding: 6rem 0;
    border-radius: 1rem;
  }
}
.strengthenList_ttl {
  position: relative;
  display: inline-block;
  padding: 0 55px;
  color: #E25575;
  font-size: 2.1rem;
  font-weight: bold;
}
.strengthenList_ttlBox {
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (min-width: 751px) {
  .strengthenList_ttlBox {
    margin-bottom: 5rem;
  }
}
@media screen and (min-width: 751px) {
  .strengthenList_ttl {
    padding: 0 105px;
    font-size: 4.2rem;
  }
}
.strengthenList_ttl::before, .strengthenList_ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 40px;
  height: 2px;
  background-color: #E25575;
}
@media screen and (min-width: 751px) {
  .strengthenList_ttl::before, .strengthenList_ttl::after {
    width: 80px;
    height: 3px;
  }
}
.strengthenList_ttl::before {
  left: 0;
}
.strengthenList_ttl::after {
  right: 0;
}

/* interview */
.interview {
  position: relative;
  margin: 0 0 2rem;
  padding-top: 4rem;
}
@media screen and (min-width: 751px) {
  .interview {
    min-height: 56.5rem;
    padding-top: 8rem;
    margin: 0 0 4rem;
  }
}
@media screen and (min-width: 751px) {
  .interview:nth-of-type(2n+1) {
    padding-left: 42rem;
  }
  .interview:nth-of-type(2n+1) .interview_img {
    left: 0;
  }
}
.interview:last-child {
  margin-bottom: 8rem;
}
.interview + .interview {
  border-top: 0.1rem solid #DDD;
}
.interviewSec {
  width: calc(100dvw - 2.4rem);
  margin: 0 auto;
}
@media screen and (min-width: 751px) {
  .interviewSec {
    max-width: 118rem;
    width: 98%;
  }
}
.interview_info {
  margin-bottom: 1.5rem;
  padding: 0 0 0.5rem 1rem;
}
@media screen and (min-width: 751px) {
  .interview_info {
    margin-bottom: 2rem;
    padding: 0 0 0.5rem 2rem;
  }
}
.interview_info h2 {
  font-size: 2.1rem;
  font-weight: bold;
}
@media screen and (min-width: 751px) {
  .interview_info h2 {
    font-size: 4.2rem;
  }
}
.interview_info p em {
  font-size: 1.6rem;
}
@media screen and (min-width: 751px) {
  .interview_info p em {
    font-size: 2.4rem;
  }
}
.interview_img {
  margin: 0 1rem 1rem 0;
  max-width: 16.5rem;
  float: left;
  border-radius: 0.5rem;
  overflow: hidden;
}
@media screen and (min-width: 751px) {
  .interview_img {
    max-width: 36rem;
    position: absolute;
    top: 8rem;
    right: 0;
    border-radius: 1rem;
  }
}
@media screen and (min-width: 751px) {
  .interview_message {
    max-width: 76rem;
  }
}

/* activity */
.activitySec {
  padding-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 751px) {
  .activitySec {
    padding-top: 3rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.activitySec + .activitySec {
  border-top: 0.25rem solid #DDD;
}
@media screen and (min-width: 751px) {
  .activitySec + .activitySec {
    padding-top: 6rem;
    border-top: 0.5rem solid #DDD;
  }
}
@media screen and (max-width: 750px) {
  .activity_content {
    width: 100%;
  }
  .activity_contentWrapper {
    margin-bottom: 3.5rem;
  }
}
@media screen and (min-width: 751px) {
  .activity_ttl {
    width: 29rem;
  }
  .activity_content {
    width: calc(100% - 29rem);
  }
  .activity_contentWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 6rem;
  }
  .activity_contentItem {
    width: 50%;
  }
}

/* club color setting */
.u_bg_k_baseball {
  background-color: #465D90;
}

.u_k_baseball {
  color: #465D90;
}

.u_bg_judo {
  background-color: #F18F55;
}

.u_judo {
  color: #F18F55;
}

.u_bg_j_volleyball {
  background-color: #D05D61;
}

.u_j_volleyball {
  color: #D05D61;
}

.u_bg_soccer {
  background-color: #5CB0CE;
}

.u_soccer {
  color: #5CB0CE;
}

.u_bg_athletics {
  background-color: #AD7AB2;
}

.u_athletics {
  color: #AD7AB2;
}

.u_bg_badminton {
  background-color: #45AAA0;
}

.u_badminton {
  color: #45AAA0;
}

.u_bg_table_tennis {
  background-color: #97C163;
}

.u_table_tennis {
  color: #97C163;
}

.u_bg_d_basketball {
  background-color: #C9B846;
}

.u_d_basketball {
  color: #C9B846;
}

.k_baseball {
  border-top: 0.5rem solid #465D90;
}
.k_baseball .ttl::after {
  background: #465D90;
}
.k_baseball .strengthenNews h2 {
  color: #465D90;
}
.k_baseball .strengthenAppeal {
  background: #465D90;
}
.k_baseball .strengthenIntro_listItemTtl {
  color: #465D90;
}
.k_baseball .strengthenResult {
  background: #DFE3ED;
}
.k_baseball .strengthenResult_item {
  background: #465D90;
}
.k_baseball .strengthenResult_item:nth-of-type(2n) h3 {
  color: #465D90;
}
.k_baseball .strengthenResult_item:nth-of-type(2n) .c-dotList li::before {
  background: #465D90;
}
.k_baseball .strengthenSchedule_inner {
  border-color: #465D90;
}
.k_baseball .strengthenSchedule_list::before {
  background: #465D90;
}
.k_baseball .strengthenPhoto {
  background: #465D90;
}
.k_baseball .strengthenDirector {
  background: #DFE3ED;
}

.interview_k_baseball .interview_info {
  border-left: 0.5rem solid #465D90;
}
@media screen and (min-width: 751px) {
  .interview_k_baseball .interview_info {
    border-left: 1rem solid #465D90;
  }
}
.interview_k_baseball .c-btn {
  background: #465D90;
}
.interview_k_baseball .c-btn_arrowLtoR::before, .interview_k_baseball .c-btn_arrowLtoR::after {
  background: #465D90;
}

.strengthenHeadArea_k_baseball {
  background: url(/assets/img/club/keyv_k_baseball.jpg) no-repeat 50% 50%;
  background-size: auto 100%;
}
@media screen and (min-width: 751px) {
  .strengthenHeadArea_k_baseball {
    background-size: cover;
  }
}

.judo {
  border-top: 0.5rem solid #F18F55;
}
.judo .ttl::after {
  background: #F18F55;
}
.judo .strengthenNews h2 {
  color: #F18F55;
}
.judo .strengthenAppeal {
  background: #F18F55;
}
.judo .strengthenIntro_listItemTtl {
  color: #F18F55;
}
.judo .strengthenResult {
  background: #FDEEE5;
}
.judo .strengthenResult_item {
  background: #F18F55;
}
.judo .strengthenResult_item:nth-of-type(2n) h3 {
  color: #F18F55;
}
.judo .strengthenResult_item:nth-of-type(2n) .c-dotList li::before {
  background: #F18F55;
}
.judo .strengthenSchedule_inner {
  border-color: #F18F55;
}
.judo .strengthenSchedule_list::before {
  background: #F18F55;
}
.judo .strengthenPhoto {
  background: #F18F55;
}
.judo .strengthenDirector {
  background: #FDEEE5;
}

.interview_judo .interview_info {
  border-left: 0.5rem solid #F18F55;
}
@media screen and (min-width: 751px) {
  .interview_judo .interview_info {
    border-left: 1rem solid #F18F55;
  }
}
.interview_judo .c-btn {
  background: #F18F55;
}
.interview_judo .c-btn_arrowLtoR::before, .interview_judo .c-btn_arrowLtoR::after {
  background: #F18F55;
}

.strengthenHeadArea_judo {
  background: url(/assets/img/club/keyv_judo.jpg) no-repeat 50% 50%;
  background-size: auto 100%;
}
@media screen and (min-width: 751px) {
  .strengthenHeadArea_judo {
    background-size: cover;
  }
}

.j_volleyball {
  border-top: 0.5rem solid #D05D61;
}
.j_volleyball .ttl::after {
  background: #D05D61;
}
.j_volleyball .strengthenNews h2 {
  color: #D05D61;
}
.j_volleyball .strengthenAppeal {
  background: #D05D61;
}
.j_volleyball .strengthenIntro_listItemTtl {
  color: #D05D61;
}
.j_volleyball .strengthenResult {
  background: #F8E7E7;
}
.j_volleyball .strengthenResult_item {
  background: #D05D61;
}
.j_volleyball .strengthenResult_item:nth-of-type(2n) h3 {
  color: #D05D61;
}
.j_volleyball .strengthenResult_item:nth-of-type(2n) .c-dotList li::before {
  background: #D05D61;
}
.j_volleyball .strengthenSchedule_inner {
  border-color: #D05D61;
}
.j_volleyball .strengthenSchedule_list::before {
  background: #D05D61;
}
.j_volleyball .strengthenPhoto {
  background: #D05D61;
}
.j_volleyball .strengthenDirector {
  background: #F8E7E7;
}

.interview_j_volleyball .interview_info {
  border-left: 0.5rem solid #D05D61;
}
@media screen and (min-width: 751px) {
  .interview_j_volleyball .interview_info {
    border-left: 1rem solid #D05D61;
  }
}
.interview_j_volleyball .c-btn {
  background: #D05D61;
}
.interview_j_volleyball .c-btn_arrowLtoR::before, .interview_j_volleyball .c-btn_arrowLtoR::after {
  background: #D05D61;
}

.strengthenHeadArea_j_volleyball {
  background: url(/assets/img/club/keyv_j_volleyball.jpg) no-repeat 50% 50%;
  background-size: auto 100%;
}
@media screen and (min-width: 751px) {
  .strengthenHeadArea_j_volleyball {
    background-size: cover;
  }
}

.soccer {
  border-top: 0.5rem solid #5CB0CE;
}
.soccer .ttl::after {
  background: #5CB0CE;
}
.soccer .strengthenNews h2 {
  color: #5CB0CE;
}
.soccer .strengthenAppeal {
  background: #5CB0CE;
}
.soccer .strengthenIntro_listItemTtl {
  color: #5CB0CE;
}
.soccer .strengthenResult {
  background: #E7F3F8;
}
.soccer .strengthenResult_item {
  background: #5CB0CE;
}
.soccer .strengthenResult_item:nth-of-type(2n) h3 {
  color: #5CB0CE;
}
.soccer .strengthenResult_item:nth-of-type(2n) .c-dotList li::before {
  background: #5CB0CE;
}
.soccer .strengthenSchedule_inner {
  border-color: #5CB0CE;
}
.soccer .strengthenSchedule_list::before {
  background: #5CB0CE;
}
.soccer .strengthenPhoto {
  background: #5CB0CE;
}
.soccer .strengthenDirector {
  background: #E7F3F8;
}

.interview_soccer .interview_info {
  border-left: 0.5rem solid #5CB0CE;
}
@media screen and (min-width: 751px) {
  .interview_soccer .interview_info {
    border-left: 1rem solid #5CB0CE;
  }
}
.interview_soccer .c-btn {
  background: #5CB0CE;
}
.interview_soccer .c-btn_arrowLtoR::before, .interview_soccer .c-btn_arrowLtoR::after {
  background: #5CB0CE;
}

.strengthenHeadArea_soccer {
  background: url(/assets/img/club/keyv_soccer.jpg) no-repeat 50% 50%;
  background-size: auto 100%;
}
@media screen and (min-width: 751px) {
  .strengthenHeadArea_soccer {
    background-size: cover;
  }
}

.athletics {
  border-top: 0.5rem solid #AD7AB2;
}
.athletics .ttl::after {
  background: #AD7AB2;
}
.athletics .strengthenNews h2 {
  color: #AD7AB2;
}
.athletics .strengthenAppeal {
  background: #AD7AB2;
}
.athletics .strengthenIntro_listItemTtl {
  color: #AD7AB2;
}
.athletics .strengthenResult {
  background: #F3EBF4;
}
.athletics .strengthenResult_item {
  background: #AD7AB2;
}
.athletics .strengthenResult_item:nth-of-type(2n) h3 {
  color: #AD7AB2;
}
.athletics .strengthenResult_item:nth-of-type(2n) .c-dotList li::before {
  background: #AD7AB2;
}
.athletics .strengthenSchedule_inner {
  border-color: #AD7AB2;
}
.athletics .strengthenSchedule_list::before {
  background: #AD7AB2;
}
.athletics .strengthenPhoto {
  background: #AD7AB2;
}
.athletics .strengthenDirector {
  background: #F3EBF4;
}

.interview_athletics .interview_info {
  border-left: 0.5rem solid #AD7AB2;
}
@media screen and (min-width: 751px) {
  .interview_athletics .interview_info {
    border-left: 1rem solid #AD7AB2;
  }
}
.interview_athletics .c-btn {
  background: #AD7AB2;
}
.interview_athletics .c-btn_arrowLtoR::before, .interview_athletics .c-btn_arrowLtoR::after {
  background: #AD7AB2;
}

.strengthenHeadArea_athletics {
  background: url(/assets/img/club/keyv_athletics.jpg) no-repeat 50% 50%;
  background-size: auto 100%;
}
@media screen and (min-width: 751px) {
  .strengthenHeadArea_athletics {
    background-size: cover;
  }
}

.badminton {
  border-top: 0.5rem solid #45AAA0;
}
.badminton .ttl::after {
  background: #45AAA0;
}
.badminton .strengthenNews h2 {
  color: #45AAA0;
}
.badminton .strengthenAppeal {
  background: #45AAA0;
}
.badminton .strengthenIntro_listItemTtl {
  color: #45AAA0;
}
.badminton .strengthenResult {
  background: #E3F2F1;
}
.badminton .strengthenResult_item {
  background: #45AAA0;
}
.badminton .strengthenResult_item:nth-of-type(2n) h3 {
  color: #45AAA0;
}
.badminton .strengthenResult_item:nth-of-type(2n) .c-dotList li::before {
  background: #45AAA0;
}
.badminton .strengthenSchedule_inner {
  border-color: #45AAA0;
}
.badminton .strengthenSchedule_list::before {
  background: #45AAA0;
}
.badminton .strengthenPhoto {
  background: #45AAA0;
}
.badminton .strengthenDirector {
  background: #E3F2F1;
}

.interview_badminton .interview_info {
  border-left: 0.5rem solid #45AAA0;
}
@media screen and (min-width: 751px) {
  .interview_badminton .interview_info {
    border-left: 1rem solid #45AAA0;
  }
}
.interview_badminton .c-btn {
  background: #45AAA0;
}
.interview_badminton .c-btn_arrowLtoR::before, .interview_badminton .c-btn_arrowLtoR::after {
  background: #45AAA0;
}

.strengthenHeadArea_badminton {
  background: url(/assets/img/club/keyv_badminton.jpg) no-repeat 50% 50%;
  background-size: auto 100%;
}
@media screen and (min-width: 751px) {
  .strengthenHeadArea_badminton {
    background-size: cover;
  }
}

.table_tennis {
  border-top: 0.5rem solid #97C163;
}
.table_tennis .ttl::after {
  background: #97C163;
}
.table_tennis .strengthenNews h2 {
  color: #97C163;
}
.table_tennis .strengthenAppeal {
  background: #97C163;
}
.table_tennis .strengthenIntro_listItemTtl {
  color: #97C163;
}
.table_tennis .strengthenResult {
  background: #F0F6E8;
}
.table_tennis .strengthenResult_item {
  background: #97C163;
}
.table_tennis .strengthenResult_item:nth-of-type(2n) h3 {
  color: #97C163;
}
.table_tennis .strengthenResult_item:nth-of-type(2n) .c-dotList li::before {
  background: #97C163;
}
.table_tennis .strengthenSchedule_inner {
  border-color: #97C163;
}
.table_tennis .strengthenSchedule_list::before {
  background: #97C163;
}
.table_tennis .strengthenPhoto {
  background: #97C163;
}
.table_tennis .strengthenDirector {
  background: #F0F6E8;
}

.interview_table_tennis .interview_info {
  border-left: 0.5rem solid #97C163;
}
@media screen and (min-width: 751px) {
  .interview_table_tennis .interview_info {
    border-left: 1rem solid #97C163;
  }
}
.interview_table_tennis .c-btn {
  background: #97C163;
}
.interview_table_tennis .c-btn_arrowLtoR::before, .interview_table_tennis .c-btn_arrowLtoR::after {
  background: #97C163;
}

.strengthenHeadArea_table_tennis {
  background: url(/assets/img/club/keyv_table_tennis.jpg) no-repeat 50% 50%;
  background-size: auto 100%;
}
@media screen and (min-width: 751px) {
  .strengthenHeadArea_table_tennis {
    background-size: cover;
  }
}

.d_basketball {
  border-top: 0.5rem solid #C9B846;
}
.d_basketball .ttl::after {
  background: #C9B846;
}
.d_basketball .strengthenNews h2 {
  color: #C9B846;
}
.d_basketball .strengthenAppeal {
  background: #C9B846;
}
.d_basketball .strengthenIntro_listItemTtl {
  color: #C9B846;
}
.d_basketball .strengthenResult {
  background: #F7F5E3;
}
.d_basketball .strengthenResult_item {
  background: #C9B846;
}
.d_basketball .strengthenResult_item:nth-of-type(2n) h3 {
  color: #C9B846;
}
.d_basketball .strengthenResult_item:nth-of-type(2n) .c-dotList li::before {
  background: #C9B846;
}
.d_basketball .strengthenSchedule_inner {
  border-color: #C9B846;
}
.d_basketball .strengthenSchedule_list::before {
  background: #C9B846;
}
.d_basketball .strengthenPhoto {
  background: #C9B846;
}
.d_basketball .strengthenDirector {
  background: #F7F5E3;
}

.interview_d_basketball .interview_info {
  border-left: 0.5rem solid #C9B846;
}
@media screen and (min-width: 751px) {
  .interview_d_basketball .interview_info {
    border-left: 1rem solid #C9B846;
  }
}
.interview_d_basketball .c-btn {
  background: #C9B846;
}
.interview_d_basketball .c-btn_arrowLtoR::before, .interview_d_basketball .c-btn_arrowLtoR::after {
  background: #C9B846;
}

.strengthenHeadArea_d_basketball {
  background: url(/assets/img/club/keyv_d_basketball.jpg) no-repeat 50% 50%;
  background-size: auto 100%;
}
@media screen and (min-width: 751px) {
  .strengthenHeadArea_d_basketball {
    background-size: cover;
  }
}

.align-c {
  text-align: center !important;
}
.align-l {
  text-align: left !important;
}
.align-r {
  text-align: right !important;
}

.u-bold {
  font-weight: bold;
}

.u-mt0, .u-mv0, .u-ma0 {
  margin-top: 0rem;
}

.u-mr0, .u-mh0, .u-ma0 {
  margin-right: 0rem;
}

.u-mb0, .u-mv0, .u-ma0 {
  margin-bottom: 0rem;
}

.u-ml0, .u-mh0, .u-ma0 {
  margin-left: 0rem;
}

.u-mt5, .u-mv5, .u-ma5 {
  margin-top: 0.5rem;
}

.u-mr5, .u-mh5, .u-ma5 {
  margin-right: 0.5rem;
}

.u-mb5, .u-mv5, .u-ma5 {
  margin-bottom: 0.5rem;
}

.u-ml5, .u-mh5, .u-ma5 {
  margin-left: 0.5rem;
}

.u-mt10, .u-mv10, .u-ma10 {
  margin-top: 1rem;
}

.u-mr10, .u-mh10, .u-ma10 {
  margin-right: 1rem;
}

.u-mb10, .u-mv10, .u-ma10 {
  margin-bottom: 1rem;
}

.u-ml10, .u-mh10, .u-ma10 {
  margin-left: 1rem;
}

.u-mt20, .u-mv20, .u-ma20 {
  margin-top: 2rem;
}

.u-mr20, .u-mh20, .u-ma20 {
  margin-right: 2rem;
}

.u-mb20, .u-mv20, .u-ma20 {
  margin-bottom: 2rem;
}

.u-ml20, .u-mh20, .u-ma20 {
  margin-left: 2rem;
}

.u-mt30, .u-mv30, .u-ma30 {
  margin-top: 3rem;
}

.u-mr30, .u-mh30, .u-ma30 {
  margin-right: 3rem;
}

.u-mb30, .u-mv30, .u-ma30 {
  margin-bottom: 3rem;
}

.u-ml30, .u-mh30, .u-ma30 {
  margin-left: 3rem;
}

.u-mt40, .u-mv40, .u-ma40 {
  margin-top: 4rem;
}

.u-mr40, .u-mh40, .u-ma40 {
  margin-right: 4rem;
}

.u-mb40, .u-mv40, .u-ma40 {
  margin-bottom: 4rem;
}

.u-ml40, .u-mh40, .u-ma40 {
  margin-left: 4rem;
}

.u-mt50, .u-mv50, .u-ma50 {
  margin-top: 5rem;
}

.u-mr50, .u-mh50, .u-ma50 {
  margin-right: 5rem;
}

.u-mb50, .u-mv50, .u-ma50 {
  margin-bottom: 5rem;
}

.u-ml50, .u-mh50, .u-ma50 {
  margin-left: 5rem;
}

.u-mt60, .u-mv60, .u-ma60 {
  margin-top: 6rem;
}

.u-mr60, .u-mh60, .u-ma60 {
  margin-right: 6rem;
}

.u-mb60, .u-mv60, .u-ma60 {
  margin-bottom: 6rem;
}

.u-ml60, .u-mh60, .u-ma60 {
  margin-left: 6rem;
}

.u-mt70, .u-mv70, .u-ma70 {
  margin-top: 7rem;
}

.u-mr70, .u-mh70, .u-ma70 {
  margin-right: 7rem;
}

.u-mb70, .u-mv70, .u-ma70 {
  margin-bottom: 7rem;
}

.u-ml70, .u-mh70, .u-ma70 {
  margin-left: 7rem;
}

.u-mt80, .u-mv80, .u-ma80 {
  margin-top: 8rem;
}

.u-mr80, .u-mh80, .u-ma80 {
  margin-right: 8rem;
}

.u-mb80, .u-mv80, .u-ma80 {
  margin-bottom: 8rem;
}

.u-ml80, .u-mh80, .u-ma80 {
  margin-left: 8rem;
}

.u-pt0, .u-pv0, .u-pa0 {
  padding-top: 0rem;
}

.u-pr0, .u-ph0, .u-pa0 {
  padding-right: 0rem;
}

.u-pb0, .u-pv0, .u-pa0 {
  padding-bottom: 0rem;
}

.u-pl0, .u-ph0, .u-pa0 {
  padding-left: 0rem;
}

.u-pt10, .u-pv10, .u-pa10 {
  padding-top: 1rem;
}

.u-pr10, .u-ph10, .u-pa10 {
  padding-right: 1rem;
}

.u-pb10, .u-pv10, .u-pa10 {
  padding-bottom: 1rem;
}

.u-pl10, .u-ph10, .u-pa10 {
  padding-left: 1rem;
}

.u-pt20, .u-pv20, .u-pa20 {
  padding-top: 2rem;
}

.u-pr20, .u-ph20, .u-pa20 {
  padding-right: 2rem;
}

.u-pb20, .u-pv20, .u-pa20 {
  padding-bottom: 2rem;
}

.u-pl20, .u-ph20, .u-pa20 {
  padding-left: 2rem;
}

.u-pt30, .u-pv30, .u-pa30 {
  padding-top: 3rem;
}

.u-pr30, .u-ph30, .u-pa30 {
  padding-right: 3rem;
}

.u-pb30, .u-pv30, .u-pa30 {
  padding-bottom: 3rem;
}

.u-pl30, .u-ph30, .u-pa30 {
  padding-left: 3rem;
}/*# sourceMappingURL=style-club.css.map */