@charset "UTF-8";
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.modal-trigger {
  cursor: pointer;
}

.modal-body {
  overflow: hidden;
  position: relative;
}

.modal-body:before {
  position: fixed;
  display: block;
  content: '';
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 10;
}

.modal-body:before {
  -webkit-animation: fadeIn 320ms ease;
  animation: fadeIn 320ms ease;
  -webkit-transition: opacity ease 320ms;
  transition: opacity ease 320ms;
}

.modal-body.modal-fadeOut:before {
  opacity: 0;
}

.modal {
  content: '';
  -webkit-transition: all ease 0.01s;
  transition: all ease 0.01s;
  display: block;
  opacity: 0;
  height: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  text-align: center;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal.modal-visible {
  opacity: 1;
  height: auto;
  bottom: 0;
}

.modal-inner {
  -webkit-transition: all ease 320ms;
  transition: all ease 320ms;
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
  position: absolute;
  top: 50%;
  position: relative;
  display: inline-block;
  width: 90%;
  max-width: 600px;
  background: #fff;
  opacity: 0;
  border-radius: 4px;
  -webkit-box-shadow: 0 30px 18px -20px #020202;
  box-shadow: 0 30px 18px -20px #020202;
}

.modal-inner.modal-reveal {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 1;
}

.modal-close {
  -webkit-transition: color 320ms ease;
  transition: color 320ms ease;
  color: #fff;
  opacity: 0.75;
  position: absolute;
  z-index: 2;
  right: 0;
  top: -40px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 30px;
  font-size: 3.0rem;
  cursor: pointer;
  text-align: center;
}

/*
	HTML5 Reset :: style.css
	----------------------------------------------------------
	We have learned much from/been inspired by/taken code where offered from:

	Eric Meyer					:: http://meyerweb.com
	HTML5 Doctor				:: http://html5doctor.com
	and the HTML5 Boilerplate	:: http://html5boilerplate.com

-------------------------------------------------------------------------------*/
/* Let's default this puppy out
-------------------------------------------------------------------------------*/
html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, menu, nav, section, time, mark, audio, video, details, summary {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

article, aside, figure, footer, header, nav, section, details, summary {
  display: block;
}

/* Handle box-sizing while better addressing child elements:
   http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

/* consider resetting the default cursor: https://gist.github.com/murtaugh/5247154 */
/* Responsive images and other embedded objects */
/* if you don't have full control over `img` tags (if you have to overcome attributes), consider adding height: auto */
img,
object,
embed {
  max-width: 100%;
}

/*
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
	In fact, it *will* cause problems with Google Maps' controls at small size.
	If this is the case for you, try uncommenting the following:

#map img {
		max-width: none;
}
*/
/* force a vertical scrollbar to prevent a jumpy page */
html {
  overflow-y: scroll;
}

/* we use a lot of ULs that aren't bulleted.
	you'll have to restore the bullets within content,
	which is fine because they're probably customized anyway */
ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

/* tables still need cellspacing="0" in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  font-weight: bold;
  vertical-align: bottom;
}

td {
  font-weight: normal;
  vertical-align: top;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

pre {
  white-space: pre;
  /* CSS2 */
  white-space: pre-wrap;
  /* CSS 2.1 */
  white-space: pre-line;
  /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word;
  /* IE */
}

input[type="radio"] {
  vertical-align: text-bottom;
}

input[type="checkbox"] {
  vertical-align: bottom;
}

.ie7 input[type="checkbox"] {
  vertical-align: baseline;
}

.ie6 input {
  vertical-align: text-bottom;
}

select, input, textarea {
  font: 99% sans-serif;
}

table {
  font-size: inherit;
  font: 100%;
}

small {
  font-size: 85%;
}

strong {
  font-weight: bold;
}

td, td img {
  vertical-align: top;
}

/* Make sure sup and sub don't mess with your line-heights http://gist.github.com/413930 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* standardize any monospaced elements */
pre, code, kbd, samp {
  font-family: monospace, sans-serif;
}

/* hand cursor on clickable elements */
.clickable,
label,
input[type=button],
input[type=submit],
input[type=file],
button {
  cursor: pointer;
}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {
  margin: 0;
}

/* make buttons play nice in IE */
button,
input[type=button] {
  width: auto;
  overflow: visible;
}

/* scale images in IE7 more attractively */
.ie7 img {
  -ms-interpolation-mode: bicubic;
}

/* prevent BG image flicker upon hover
   (commented out as usage is rare, and the filter syntax messes with some pre-processors)
.ie6 html {filter: expression(document.execCommand("BackgroundImageCache", false, true));}
*/
/* let's clear some floats */
.clearfix:before, .clearfix:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

html,
body {
  -webkit-text-size-adjust: 100%;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", "Meiryo", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8;
  word-wrap: break-word;
  color: #333;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@media (min-width: 48.0625em) {
  body {
    min-width: 1280px;
    margin: 0 auto;
  }
}

a {
  text-decoration: none;
  color: #d8d8d8;
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.clearfix:after {
  content: '';
  display: block;
  clear: both;
}

.container {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 48em) {
  .is-pc {
    display: none !important;
  }
}

@media (min-width: 48.0625em) {
  .is-sp {
    display: none !important;
  }
}

.taR {
  text-align: right !important;
}

.taL {
  text-align: left !important;
}

.taC {
  text-align: center !important;
}

.fwn {
  font-weight: normal !important;
}

.fwb {
  font-weight: bold !important;
}

.l-col2-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 48em) {
  .l-col2-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

@media (min-width: 48.0625em) {
  .l-col2-wrap {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 960px;
    margin: 60px auto 0;
  }
}

@media (max-width: 48em) {
  .l-col2-wrap .l-col {
    width: 100%;
    min-height: 100%;
  }
}

@media (min-width: 48.0625em) {
  .l-col2-wrap .l-col {
    width: 720px;
  }
}

@media (max-width: 48em) {
  .l-col2-wrap .l-col:last-of-type {
    width: 100%;
  }
}

@media (min-width: 48.0625em) {
  .l-col2-wrap .l-col:last-of-type {
    width: 200px;
  }
}

@media (min-width: 48.0625em) {
  .l-col2-wrap .nav-local .heading-nav-local {
    display: none;
  }
}

@media (max-width: 48em) {
  .l-col2-wrap .nav-local .heading-nav-local {
    background: #000;
    cursor: pointer;
    text-align: center;
    font-size: 16px;
    font-size: 1.6rem;
    padding: 20px 0;
    margin-bottom: 20px;
    position: relative;
    color: #fff;
    line-height: 1.2;
  }
  .l-col2-wrap .nav-local .heading-nav-local::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -6px;
  }
  .l-col2-wrap .nav-local .heading-nav-local.is-active::before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: -3px;
  }
}

@media (max-width: 48em) {
  .l-col2-wrap .nav-local .acdArea {
    display: none;
    padding: 0 20px;
    opacity: 0;
  }
  .l-col2-wrap .nav-local .acdArea.is-active {
    display: block;
    opacity: 1;
    margin-bottom: 30px;
  }
}

@media (max-width: 48em) {
  .l-col2-wrap .nav-local-list:not(:first-of-type) {
    margin-top: 20px;
  }
  .l-col2-wrap .nav-local-list li {
    border-bottom: 1px dotted #8f8f99;
  }
  .l-col2-wrap .nav-local-list li a {
    display: block;
    padding: 10px 10px 10px 0;
    color: #171719;
    font-size: 15px;
    font-size: 1.5rem;
  }
  .l-col2-wrap .nav-local-list li a::before {
    content: '>';
    padding-right: 5px;
    display: inline-block;
  }
  .l-col2-wrap .nav-local-list li a span {
    font-weight: bold;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

@media (min-width: 48.0625em) {
  .l-col2-wrap .nav-local-list {
    display: block !important;
  }
  .l-col2-wrap .nav-local-list:not(:first-of-type) {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dotted #93939c;
  }
  .l-col2-wrap .nav-local-list li {
    text-align: center;
    border-top: 1px solid #8f8f99;
  }
  .l-col2-wrap .nav-local-list li:first-of-type {
    border-top: none;
  }
  .l-col2-wrap .nav-local-list li a {
    display: block;
    background: #000;
    font-size: 14px;
    font-size: 1.4rem;
    padding: 12px 0;
    -webkit-transition: .3s;
    transition: .3s;
  }
  .l-col2-wrap .nav-local-list li a:hover {
    background: #2e008b;
  }
  .l-col2-wrap .nav-local-list li a span {
    font-weight: bold;
  }
  .l-col2-wrap .nav-local-list li.is-active a {
    background: #2e008b;
  }
  .l-col2-wrap .nav-local-list li.is-active a:hover {
    opacity: 1;
  }
}

.l-col2-wrap .sec-inner {
  width: 100%;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 20px;
}

@media (max-width: 48em) {
  .pagination {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #636363;
  }
}

.pagination li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 10px;
}

@media (min-width: 48.0625em) {
  .pagination li {
    margin: 0 5px;
  }
}

.pagination li a {
  display: inline-block;
  width: 25px;
  height: 25px;
  background: #000;
  color: #fff;
  font-size: 13px;
  font-size: 1.3rem;
  text-align: center;
  border-radius: 50%;
  line-height: 25px;
}

@media (min-width: 48.0625em) {
  .pagination li a {
    width: 30px;
    height: 30px;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 30px;
  }
}

.pagination li:first-of-type a, .pagination li:last-of-type a {
  background: none;
  color: #000;
}

.pagination li.is-active a {
  background: #2e008b;
}

.heading-page-wrap {
  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;
  height: 210px;
  padding-top: 40px;
}

@media (min-width: 48.0625em) {
  .heading-page-wrap {
    height: 290px;
    padding-top: 50px;
  }
}

.heading-page img {
  height: 50px;
}

@media (min-width: 48.0625em) {
  .heading-page img {
    height: 70px;
  }
}

.heading-type01 {
  font-weight: bold;
  font-size: 19px;
  font-size: 1.9rem;
  border-bottom: 2px solid #8f8f99;
  color: #2e008b;
}

@media (min-width: 48.0625em) {
  .heading-type01 {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.heading-type01 + .notes {
  font-size: 12px;
  font-size: 1.2rem;
  text-align: left;
  margin-top: 10px;
}

@media (min-width: 48.0625em) {
  .heading-type01 + .notes {
    font-size: 12px;
    font-size: 1.2rem;
    text-align: right;
  }
}

.heading-type02 {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  position: relative;
  line-height: 1.2;
  padding-left: 25px;
  margin-top: 20px;
}

@media (min-width: 48.0625em) {
  .heading-type02 {
    font-size: 18px;
    font-size: 1.8rem;
    padding-left: 25px;
    margin-top: 30px;
  }
}

.heading-type02::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 17px solid #2e008b;
  border-right: 17px solid transparent;
  border-bottom: 0 solid transparent;
  border-left: 0 solid transparent;
  position: absolute;
  left: 0;
  top: 0;
}

.heading-type03 {
  font-weight: bold;
  font-size: 16px;
  font-size: 1.6rem;
  padding-bottom: 10px;
  border-bottom: 1px solid #8f8f99;
}

.heading-over-date {
  display: block;
  line-height: 1.2;
  font-size: 12px;
  font-size: 1.2rem;
}

@media (min-width: 48.0625em) {
  .heading-over-date {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.shadow {
  -webkit-box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.2);
}

.img-shadow {
  position: relative;
  display: inline-block;
}

.img-shadow::before {
  content: "";
  width: 100%;
  height: 100%;
  display: inline-block;
  position: absolute;
  top: 10px;
  right: -10px;
  background: #2e008b;
  z-index: -1;
}

.list-circle {
  position: relative;
  padding-left: 16px;
}

@media (max-width: 48em) {
  .list-circle {
    padding-left: 16px;
  }
}

.list-circle::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.list-ast {
  position: relative;
  padding-left: 16px;
}

@media (max-width: 48em) {
  .list-ast {
    padding-left: 16px;
  }
}

.list-ast::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.list-num {
  text-align: left;
}

@media (max-width: 48em) {
  .list-num {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.list-num .list-item {
  position: relative;
  padding-left: 25px;
  counter-increment: num;
}

.list-num .list-item::before {
  content: counter(num) ".";
  position: absolute;
  top: 0;
  left: 0;
}

.btn-wrap {
  text-align: center;
  margin-top: 20px;
}

@media (min-width: 48.0625em) {
  .btn-wrap {
    margin-top: 30px;
  }
}

.btn-wrap-col2 {
  width: 100%;
}

@media (min-width: 48.0625em) {
  .btn-wrap-col2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.btn-base {
  display: inline-block;
  background: #2e008b;
  position: relative;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.2;
  width: 100%;
  padding: 22px 0;
}

@media (min-width: 48.0625em) {
  .btn-base {
    width: 480px;
    font-size: 16px;
    font-size: 1.6rem;
    padding: 25px 0;
    -webkit-transition: .3s;
    transition: .3s;
  }
}

.btn-base::before {
  content: "";
  background: url(/trackfield/common/img/common/arw_w.png) no-repeat right center;
  background-size: contain;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -3px;
  display: inline-block;
  width: 30px;
  height: 5px;
}

@media (min-width: 48.0625em) {
  .btn-base::before {
    right: 40px;
    top: 50%;
    margin-top: -3px;
    width: 32px;
    height: 6px;
    -webkit-transition: .3s;
    transition: .3s;
  }
}

@media (min-width: 48.0625em) {
  .btn-base:hover {
    background: #19004B;
  }
  .btn-base:hover::before {
    right: 30px;
  }
}

.tw {
  margin-top: 20px;
}

@media (min-width: 48.0625em) {
  .tw {
    margin-top: 30px;
  }
}

#g-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}

#g-header .header-inner {
  width: 100%;
  position: relative;
  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;
}

@media (min-width: 48.0625em) {
  #g-header .header-inner {
    min-width: 1280px;
    margin: 0 auto;
  }
}

@media (max-width: 48em) {
  #g-header #site-id {
    max-width: 70px;
    width: 26.66667%;
    margin: 0 0 0 20px;
    padding-top: 15px;
  }
}

@media (min-width: 48.0625em) {
  #g-header #site-id {
    width: 148px;
    height: 60px;
    margin: 0 0 0 40px;
    padding-top: 15px;
  }
}

#g-header #site-id a {
  display: block;
}

@media (max-width: 48em) {
  #g-header .h-links {
    padding: 60px 0;
  }
  #g-header .h-links-wrap {
    position: fixed;
    top: 0;
    left: 100%;
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    z-index: 100;
    -webkit-transition: .3s;
    transition: .3s;
    overflow-y: auto;
  }
  #g-header .h-links-wrap.is-active {
    left: 0;
  }
  #g-header .h-links li {
    font-size: 23px;
    font-size: 2.3rem;
    margin-top: 15px;
    padding: 0 20px 0 40px;
  }
  #g-header .h-links li:first-of-type {
    margin-top: 0;
  }
  #g-header .h-links li:last-of-type span {
    position: relative;
    display: inline-block;
  }
  #g-header .h-links li:last-of-type span::after {
    content: "";
    background: url(/trackfield/common/img/common/ico_blank.png) no-repeat right center;
    background-size: contain;
    position: absolute;
    top: -3px;
    right: -12px;
    width: 11px;
    height: 10px;
    display: inline-block;
  }
}

@media (min-width: 48.0625em) {
  #g-header .h-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #g-header .h-links li {
    display: inline-block;
    font-size: 14px;
    font-size: 1.4rem;
    margin-left: 30px;
  }
  #g-header .h-links li a {
    display: inline-block;
    width: 100%;
    color: #fff;
    position: relative;
  }
  #g-header .h-links li a:hover::before, #g-header .h-links li a:hover::after {
    content: "";
    position: absolute;
    display: inline-block;
  }
  #g-header .h-links li a:hover::before {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #ffe33f;
    bottom: -10px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  #g-header .h-links li a:hover::after {
    width: 100%;
    height: 1px;
    background: #ffe33f;
    bottom: -10px;
    left: 0;
  }
  #g-header .h-links li:first-of-type {
    margin-left: 0;
  }
  #g-header .h-links li:nth-last-of-type(2) {
    font-style: italic;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
    height: 70px;
    background: #fff;
  }
  #g-header .h-links li:nth-last-of-type(2) a {
    -webkit-transition: .3s;
    transition: .3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #ffe33f;
    padding: 0 30px;
    height: 100%;
    color: #333;
    text-shadow: none !important;
  }
  #g-header .h-links li:nth-last-of-type(2) a:hover {
    opacity: .8;
  }
  #g-header .h-links li:nth-last-of-type(2) a:hover::before, #g-header .h-links li:nth-last-of-type(2) a:hover::after {
    display: none;
  }
  #g-header .h-links li:last-of-type {
    height: 70px;
    margin-left: 0;
    background: #fff;
  }
  #g-header .h-links li:last-of-type a {
    -webkit-transition: .3s;
    transition: .3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #2e008b;
    padding: 0 30px;
    height: 100%;
  }
  #g-header .h-links li:last-of-type a:hover {
    opacity: .8;
  }
  #g-header .h-links li:last-of-type a:hover::before, #g-header .h-links li:last-of-type a:hover::after {
    display: none;
  }
  #g-header .h-links li:last-of-type a img {
    width: 110px;
    height: 32px;
  }
}

#nav-btn {
  position: fixed;
  top: 0;
  right: 0;
  width: 55px;
  height: 55px;
  display: block;
  cursor: pointer;
  z-index: 101;
  background: #000;
}

@media (min-width: 48.0625em) {
  #nav-btn {
    display: none;
  }
}

#nav-btn span {
  display: block;
  float: left;
  clear: both;
  height: 2px;
  width: 25px;
  background: #fff;
  position: absolute;
  right: 15px;
  top: 0;
  overflow: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 100;
}

#nav-btn span:nth-child(1) {
  margin-top: 18px;
}

#nav-btn span:nth-child(2) {
  margin-top: 26px;
}

#nav-btn span:nth-child(3) {
  margin-top: 34px;
}

#nav-btn.is-active span {
  top: 17px;
}

#nav-btn.is-active span:nth-child(1) {
  margin-top: 9px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-btn.is-active span:nth-child(2) {
  opacity: 0;
}

#nav-btn.is-active span:nth-child(3) {
  margin-top: 9px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-btn.is-active.pos-abs {
  position: absolute;
}

#main {
  position: relative;
  padding-bottom: 100px;
  display: block;
  overflow: hidden;
}

@media (min-width: 48.0625em) {
  #main {
    padding-bottom: 120px;
  }
}

#main::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(/trackfield/common/img/common/bg_pages.png) repeat-y center 500px;
  background-size: 100% auto;
  z-index: -1;
}

@media (max-width: 48em) {
  #main::before {
    background-size: 100% auto;
  }
}

.sec-inner {
  position: relative;
  margin: 0 auto;
}

@media (max-width: 48em) {
  .sec-inner {
    width: 100%;
    padding: 0 20px;
  }
}

@media (min-width: 48.0625em) {
  .sec-inner {
    width: 1080px;
  }
}

.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}

.slick-dots button {
  width: 10px;
  height: 10px;
  background: #000;
  display: block;
  border: 1px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  text-indent: -9999px;
  padding: 0;
}

.slick-dots li {
  margin-right: 15px;
}

.slick-dots li:first-of-type {
  margin-left: 20px;
}

.slick-dots li.slick-active button {
  background: none;
  border: 1px solid #000;
}

.news-label {
  display: inline-block;
  background: #000;
  color: #fff;
  position: relative;
  padding: 8px 45px 0 5px;
  font-size: 18px;
  font-size: 1.8rem;
  height: 30px;
  line-height: 1;
  vertical-align: top;
}

.news-label::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 0 solid transparent;
  border-right: 0 solid transparent;
  border-bottom: 30px solid #fff;
  border-left: 37px solid transparent;
  position: absolute;
  right: 0;
  top: 0;
}

@media (max-width: 48em) {
  .news-label {
    font-size: 12px;
    font-size: 1.2rem;
    height: 22px;
    padding: 5px 35px 0 5px;
  }
  .news-label::after {
    border-bottom-width: 23px;
    border-left-width: 27px;
    right: -1px;
  }
}

.news-label.cat1 {
  background: #2e008b;
  color: #fff;
}

.news-label.cat2 {
  background: #ffe33f;
  color: #333;
}

.news-label.cat3 {
  background: #000000;
  color: #fff;
}

.news-date {
  display: block;
  line-height: 1.2;
}

.news-heading {
  display: block;
  line-height: 1.5;
}

.news-heading .ico {
  padding-left: 10px;
  padding-bottom: 9px;
}

.news-heading .ico2,
.news-heading .ico3 {
  display: inline-block;
  width: 24px;
  padding-left:8px;
  padding-bottom: 5px;
}

#modal-msg .modal-inner {
  background: #fff;
  padding: 20px;
}

@media (max-width: 48em) {
  #modal-msg .modal-inner {
    top: 60px;
    margin-bottom: 30px;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  .news-heading .ico {
    width: 20px;
    padding-left: 7px;
    padding-bottom: 5px;
  }
  
  .news-heading .ico2 {
    width: 20px;
    padding-left:7px;
    padding-bottom: 5px;
  }

  .news-heading .ico3 {
    width: 17px;
    padding-left:5px;
    padding-bottom: 3px;
  }
}

@media (min-width: 48.0625em) {
  #modal-msg .modal-inner {
    padding: 40px;
    max-width: 850px;
  }
}

#modal-msg .modal-inner p:not(:first-of-type) {
  margin-top: 15px;
}

@media (min-width: 48.0625em) {
  #modal-msg .modal-inner p:not(:first-of-type) {
    margin-top: 30px;
  }
}

#modal-msg .modal-inner .list-num {
  margin-top: 30px;
}

@media (max-width: 48em) {
  #modal-msg .modal-inner .btn-wrap-col2 {
    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;
  }
}

#modal-msg .modal-inner .btn-base {
  width: 100%;
  margin-top: 20px;
}

@media (min-width: 48.0625em) {
  #modal-msg .modal-inner .btn-base {
    width: 40%;
    margin-top: 50px;
  }
}

#modal-msg .modal-inner .btn-base:first-of-type {
  background: #000;
}

#modal-msg .modal-inner .btn-base:first-of-type::before {
  display: none;
}

#modal-msg .modal-inner .btn-base:first-of-type.modal-close {
  opacity: 1;
  height: auto;
  position: static;
}

#sns-block {
  position: relative;
}

@media (min-width: 48.0625em) {
  #sns-block .sns-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

#sns-block .sns-list li {
  width: 100%;
  text-align: center;
  position: relative;
  height: 75px;
  -webkit-transition: .3s;
  transition: .3s;
}

@media (min-width: 48.0625em) {
  #sns-block .sns-list li {
    width: 100%;
    height: 100px;
    background: #fff;
  }
}

#sns-block .sns-list li::after {
  content: "";
  background: url(/trackfield/common/img/common/ico_blank.png) no-repeat right center;
  background-size: contain;
  position: absolute;
  top: 12px;
  right: 12px;
  width: 11px;
  height: 10px;
  display: inline-block;
}

@media (min-width: 48.0625em) {
  #sns-block .sns-list li::after {
    top: 20px;
    right: 20px;
    width: 15px;
    height: 13px;
  }
}

#sns-block .sns-list li.sns-tw {
  background: -webkit-gradient(linear, left top, right top, from(#3561f1), to(#1fdbd4));
  background: linear-gradient(to right, #3561f1 0%, #1fdbd4 100%);
}

#sns-block .sns-list li.sns-tw img {
  width: auto;
  height: 16px;
}

@media (min-width: 48.0625em) {
  #sns-block .sns-list li.sns-tw img {
    height: 28px;
  }
}

#sns-block .sns-list li.sns-insta {
  background: -webkit-gradient(linear, left top, right top, from(#5951d8), to(#e2306c));
  /* background: linear-gradient(to right, #5951d8 0%, #e2306c 100%); */
  background: linear-gradient(to right, #5951d8 0%, #DE0754 50%, #F6B537 100%)
}

#sns-block .sns-list li.sns-insta img {
  width: auto;
  height: 16px;
}

@media (min-width: 48.0625em) {
  #sns-block .sns-list li.sns-insta img {
    height: 28px;
  }
}

#sns-block .sns-list li a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  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;
}

#sns-block .sns-list li:hover {
  opacity: .8;
}

#g-footer {
  background: #171719;
  padding-top: 45px;
}

@media (min-width: 48.0625em) {
  #g-footer {
    padding-top: 80px;
  }
}

@media (min-width: 48.0625em) {
  #g-footer .footer-inner {
    width: 1080px;
    margin: 0 auto;
  }
}

#g-footer .footer-head .f-copy {
  margin: 0 auto;
}

@media (max-width: 48em) {
  #g-footer .footer-head .f-copy {
    width: 62.66667%;
    max-width: 300px;
  }
}

@media (min-width: 48.0625em) {
  #g-footer .footer-head .f-copy {
    width: 280px;
  }
}

#g-footer .footer-head .f-nav {
  text-align: center;
  margin-top: 60px;
}

@media (max-width: 48em) {
  #g-footer .footer-head .f-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: left;
    margin: 40px 8% 0;
  }
}

@media (max-width: 48em) {
  #g-footer .footer-head .f-nav li {
    width: 50%;
    margin-top: 15px;
  }
  #g-footer .footer-head .f-nav li:first-of-type, #g-footer .footer-head .f-nav li:nth-of-type(2) {
    margin-top: 0;
  }
}

@media (min-width: 48.0625em) {
  #g-footer .footer-head .f-nav li {
    display: inline-block;
  }
  #g-footer .footer-head .f-nav li:not(:first-of-type) {
    margin-left: 30px;
  }
}

#g-footer .footer-head .f-nav li a {
  font-size: 12px;
  font-size: 1.2rem;
  color: #fff;
}

@media (min-width: 48.0625em) {
  #g-footer .footer-head .f-nav li a {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

#g-footer .footer-foot {
  border-top: 1px solid #454547;
  margin-top: 40px;
  padding-bottom: 10px;
}

@media (min-width: 48.0625em) {
  #g-footer .footer-foot {
    margin-top: 50px;
    padding: 30px 0;
  }
}

#g-footer .footer-foot .footer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 48em) {
  #g-footer .footer-foot .footer-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

@media (min-width: 48.0625em) {
  #g-footer .footer-foot .footer-inner {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

#g-footer .footer-foot #f-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

@media (max-width: 48em) {
  #g-footer .footer-foot #f-logo {
    margin: 15px 20px 0;
  }
}

#g-footer .footer-foot #f-logo a {
  display: inline-block;
  width: 75px;
}

@media (min-width: 48.0625em) {
  #g-footer .footer-foot #f-logo a {
    width: 110px;
  }
}

#g-footer .footer-foot #f-logo .copyright {
  font-size: 10px;
  font-size: 1rem;
  line-height: 1.2;
  color: #fff;
  display: inline-block;
  margin-left: 20px;
}

@media (min-width: 48.0625em) {
  #g-footer .footer-foot #f-logo .copyright {
    font-size: 12px;
    font-size: 1.2rem;
    margin-left: 30px;
  }
}

#g-footer .footer-foot .f-links {
  font-size: 12px;
  font-size: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 48em) {
  #g-footer .footer-foot .f-links {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-bottom: 1px solid #454547;
    padding: 15px 0;
  }
}

@media (min-width: 48.0625em) {
  #g-footer .footer-foot .f-links {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media (max-width: 48em) {
  #g-footer .footer-foot .f-links li {
    padding: 0 7px;
    line-height: 1.2;
    position: relative;
  }
  #g-footer .footer-foot .f-links li:not(:last-of-type):after {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: #454547;
  }
}

@media (min-width: 48.0625em) {
  #g-footer .footer-foot .f-links li:not(:first-of-type) {
    margin-left: 50px;
  }
}

#goto-top {
  top: -70px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: url(/trackfield/common/img/common/ico_goto_top.png);
  background-size: 22px auto;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #2e008b;
  position: absolute;
  cursor: pointer;
  -webkit-transition: .3s;
  transition: .3s;
}

#goto-top:hover {
  background-color: #19004B;
}

@media (max-width: 48em) {
  #goto-top {
    top: -70px;
    width: 10.3vw;
    height: 10.3vw;
    background-size: 2.8vw auto;
  }
}

.top #main::before {
  display: none;
}

.top .bg-triangle {
  position: relative;
}

@media (max-width: 48em) {
  .top .bg-triangle {
    position: absolute;
    bottom: 0;
    right: 0;
    overflow: hidden;
    display: block;
    height: 600px;
    width: 100%;
  }
  .top .bg-triangle .triangle-body {
    position: absolute;
    bottom: 30px;
    left: -20%;
    width: 300%;
    height: 400px;
    -webkit-transform: rotate(-37deg);
    transform: rotate(-37deg);
    background: #e7e7e7;
  }
}

@media (min-width: 48.0625em) {
  .top .bg-triangle {
    display: inline-block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-top: 0 solid transparent;
    border-right: 0 solid transparent;
    border-bottom: 490px solid #e7e7e7;
    border-left: 620px solid transparent;
  }
}

@media (min-width: 48.0625em) {
  .top #g-header .h-links li a {
    color: #333;
    text-shadow: 0 0 3px #fff, -1px -1px 3px #fff,1px 1px 3px #fff,-1px 1px 3px #fff, 1px -1px 3px #fff;
  }
}

.top .bg-band {
  position: absolute;
  top: 0;
  left: 0;
  width: 99vw;
  height: 192vw;
  overflow: hidden;
  z-index: -1;
}

@media (min-width: 48.0625em) {
  .top .bg-band {
    min-width: 1280px;
    height: 266.66667vw;
  }
}

@media (max-width: 48em) {
  .top .bg-band {
    height: 2000px;
  }
}

.top .bg-band .band-body {
  position: absolute;
  top: -300px;
  left: 0;
  width: 500%;
  height: 740px;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  background: #2e008b;
  -webkit-transform: rotate(37deg);
  transform: rotate(37deg);
  z-index: -1;
}

@media (max-width: 48em) {
  .top .bg-band .band-body {
    top: 10%;
    left: 0;
    height: 400px;
    -webkit-transform: rotate(37deg);
    transform: rotate(37deg);
  }
}

@media (min-width: 28.1875em) {
  .top .bg-band .band-body {
    top: 25%;
    left: 0;
    height: 550px;
    -webkit-transform: rotate(37deg);
    transform: rotate(37deg);
  }
}

@media (min-width: 48.0625em) {
  .top .bg-band .band-body {
    top: -14vw;
    left: 0;
    width: 500%;
    height: 75vw;
    min-height: 900px;
  }
}

.top #top-mv li img {
  width: 100%;
}

.top #top-news {
  position: relative;
  z-index: 1;
  margin-top: -40%;
}

@media (min-width: 48.0625em) {
  .top #top-news {
    margin-top: -220px;
  }
}

.top #top-news .heading-news {
  position: absolute;
  top: 0;
}

@media (max-width: 48em) {
  .top #top-news .heading-news {
    left: 20px;
    width: 20.66667%;
    top: -15%;
  }
}

@media (min-width: 48.0625em) {
  .top #top-news .heading-news {
    width: 110px;
    top: -60px;
    right: 220px;
  }
}

@media (min-width: 80.0625em) {
  .top #top-news .heading-news {
    right: 20%;
  }
}

.top #top-news .top-news-pickup .news-item {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #333;
  -webkit-transition: .3s;
  transition: .3s;
}

@media (max-width: 48em) {
  .top #top-news .top-news-pickup .news-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media (max-width: 48em) {
  .top #top-news .top-news-pickup .news-item .txt-block {
    width: 100%;
  }
}

@media (min-width: 48.0625em) {
  .top #top-news .top-news-pickup .news-item .txt-block {
    padding: 40px;
    width: 400px;
  }
}

.top #top-news .top-news-pickup .news-item .txt-block .news-label {
  font-size: 18px;
  font-size: 1.8rem;
  padding-top: 5px;
}

@media (max-width: 48em) {
  .top #top-news .top-news-pickup .news-item .txt-block .news-label {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.top #top-news .top-news-pickup .news-item .txt-block .news-date {
  font-size: 20px;
  font-size: 2rem;
  display: block;
  margin-top: 25px;
}

@media (max-width: 48em) {
  .top #top-news .top-news-pickup .news-item .txt-block .news-date {
    font-size: 15px;
    font-size: 1.5rem;
    margin-top: 5px;
    padding: 0 15px;
  }
}

.top #top-news .top-news-pickup .news-item .txt-block .news-heading {
  font-size: 24px;
  font-size: 2.4rem;
  display: block;
  margin-top: 10px;
}

@media (max-width: 48em) {
  .top #top-news .top-news-pickup .news-item .txt-block .news-heading {
    font-size: 15px;
    font-size: 1.5rem;
    padding: 0 15px 15px;
    margin-top: 5px;
  }
}

@media (max-width: 48em) {
  .top #top-news .top-news-pickup .news-item .img-block {
    width: 100%;
    min-height: 0;
  }
}

@media (min-width: 48.0625em) {
  .top #top-news .top-news-pickup .news-item .img-block {
    width: 680px;
    text-align: right;
    overflow: hidden;
  }
}

.top #top-news .top-news-pickup .news-item .img-block img {
  vertical-align: top;
  -webkit-transition: .5s;
  transition: .5s;
}

@media (max-width: 48em) {
  .top #top-news .top-news-pickup .news-item .img-block img {
    width: 100%;
  }
}

@media (min-width: 48.0625em) {
  .top #top-news .top-news-pickup .news-item:hover .img-block img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}

.top #top-news .top-news-list {
  margin-top: 20px;
}

@media (min-width: 48.0625em) {
  .top #top-news .top-news-list {
    margin-top: 30px;
  }
}

.top #top-news .top-news-list .news-item {
  width: 90%;
  margin: 0 auto;
  padding: 10px 0;
  -webkit-transition: .3s;
  transition: .3s;
}

@media (min-width: 48.0625em) {
  .top #top-news .top-news-list .news-item {
    padding: 10px 15px;
    width: 370px !important;
  }
}

.top #top-news .top-news-list .news-item .item-inner {
  background: #fff;
  display: block;
  color: #333;
}

@media (max-width: 48em) {
  .top #top-news .top-news-list .news-item .item-inner {
    width: 90%;
    margin: 0 auto;
    min-height: 290px;
  }
}

@media (min-width: 48.0625em) {
  .top #top-news .top-news-list .news-item .item-inner {
    display: block;
    min-height: 380px;
    overflow: hidden;
  }
}

.top #top-news .top-news-list .news-item .news-label {
  font-size: 12px;
  font-size: 1.2rem;
}

@media (max-width: 48em) {
  .top #top-news .top-news-list .news-item .news-label {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

.top #top-news .top-news-list .news-item .news-date {
  font-size: 16px;
  font-size: 1.6rem;
  margin-top: 15px;
  padding: 0 15px;
}

@media (max-width: 48em) {
  .top #top-news .top-news-list .news-item .news-date {
    font-size: 15px;
    font-size: 1.5rem;
    margin-top: 5px;
  }
}

.top #top-news .top-news-list .news-item .news-heading {
  font-size: 16px;
  font-size: 1.6rem;
  margin-top: 5px;
  padding: 0 15px 15px;
}

@media (max-width: 48em) {
  .top #top-news .top-news-list .news-item .news-heading {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

@media (min-width: 48.0625em) {
  .top #top-news .top-news-list .news-item .img-block {
    overflow: hidden;
  }
}

.top #top-news .top-news-list .news-item .img-block img {
  vertical-align: top;
  -webkit-transition: .5s;
  transition: .5s;
}

@media (max-width: 48em) {
  .top #top-news .top-news-list .news-item .img-block img {
    width: 100%;
  }
}

@media (min-width: 48.0625em) {
  .top #top-news .top-news-list .news-item:hover .img-block img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}

.top #top-news .btn-more {
  width: 1080px;
  margin: 20px auto 0;
  text-align: right;
}

@media (max-width: 48em) {
  .top #top-news .btn-more {
    display: none;
  }
}

.top #top-menu-links {
  margin-top: 80px;
}

@media (min-width: 48.0625em) {
  .top #top-menu-links {
    margin-top: 70px;
  }
}

.top #top-menu-links a {
  position: relative;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  outline: none;
  -webkit-transition: all .2s;
  transition: all .2s;
}

@media (max-width: 48em) {
  .top #top-menu-links a {
    width: 100%;
  }
}

@media (min-width: 48.0625em) {
  .top #top-menu-links a::before, .top #top-menu-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    background: #ffe33f;
    -webkit-transition: all .2s;
    transition: all .2s;
  }
  .top #top-menu-links a::before {
    top: 0;
    left: 0;
    height: 4px;
    -webkit-transition: .2s .2s;
    transition: .2s .2s;
  }
  .top #top-menu-links a::after {
    top: 0;
    right: 0;
    width: 4px;
    -webkit-transition: .2s;
    transition: .2s;
  }
  .top #top-menu-links a span {
    display: inline-block;
  }
  .top #top-menu-links a span::before, .top #top-menu-links a span::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    background: #ffe33f;
    -webkit-transition: all .2s;
    transition: all .2s;
  }
  .top #top-menu-links a span::before {
    bottom: 0;
    right: 0;
    height: 4px;
    -webkit-transition: .2s .2s;
    transition: .2s .2s;
  }
  .top #top-menu-links a span::after {
    bottom: 0;
    left: 0;
    width: 4px;
    -webkit-transition: .2s;
    transition: .2s;
  }
  .top #top-menu-links a:hover::before {
    width: 100%;
    -webkit-transition: .2s;
    transition: .2s;
  }
  .top #top-menu-links a:hover::after {
    height: 100%;
    -webkit-transition: .2s .2s;
    transition: .2s .2s;
  }
  .top #top-menu-links a:hover span::before {
    width: 100%;
    -webkit-transition: .2s;
    transition: .2s;
  }
  .top #top-menu-links a:hover span::after {
    height: 100%;
    -webkit-transition: .2s .2s;
    transition: .2s .2s;
  }
}

@media (min-width: 48.0625em) {
  .top #top-menu-links .menu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.top #top-menu-links .menu-list li span {
  vertical-align: top;
}

.top #top-menu-links .menu-list li span img {
  width: 100%;
}

@media (max-width: 48em) {
  .top #top-menu-links .menu-list li:not(:first-of-type) {
    margin-top: 30px;
  }
}

@media (min-width: 48.0625em) {
  .top #top-menu-links .menu-list li {
    width: 510px;
  }
  .top #top-menu-links .menu-list li:nth-of-type(odd) {
    margin-top: -20px;
  }
  .top #top-menu-links .menu-list li:nth-of-type(even) {
    margin-top: 70px;
  }
  .top #top-menu-links .menu-list li:nth-of-type(2) {
    margin-top: 100px;
  }
  .top #top-menu-links .menu-list li:first-of-type {
    margin-top: 0;
  }
}

.top #top-message {
  position: relative;
  margin-top: 40px;
}

@media (min-width: 48.0625em) {
  .top #top-message {
    margin-top: 120px;
  }
}

.top #top-message .bg-band02 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 13.33333vw;
  z-index: -1;
}

@media (max-width: 48em) {
  .top #top-message .bg-band02 {
    height: 2000px;
    top: -53.33333vw;
    overflow: hidden;
  }
}

.top #top-message .bg-band02 .band-body {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  background: #000;
  -webkit-transform: skew(52deg, -37deg);
  transform: skew(52deg, -37deg);
  z-index: -1;
}

@media (max-width: 48em) {
  .top #top-message .bg-band02 .band-body {
    top: 133.33333vw;
    left: -120%;
    width: 170%;
    height: 60vw;
  }
}

@media (min-width: 48.0625em) {
  .top #top-message .bg-band02 .band-body {
    top: 26.66667vw;
    left: -45%;
    width: 70%;
    height: 430px;
  }
}

@media (min-width: 80.0625em) {
  .top #top-message .bg-band02 .band-body {
    top: 33.06667vw;
    left: -50%;
    width: 80%;
    height: 24vw;
  }
}

@media (min-width: 160.0625em) {
  .top #top-message .bg-band02 .band-body {
    height: 40vw;
  }
}

@media (max-width: 48em) {
  .top #top-message .heading-msg {
    width: 46.66667%;
  }
}

.top #top-message .msg-list {
  margin-top: 30px;
}

@media (max-width: 48em) {
  .top #top-message .msg-list {
    position: relative;
  }
}

@media (min-width: 48.0625em) {
  .top #top-message .msg-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 50px;
  }
}

.top #top-message .msg-list .msg-item {
  position: relative;
}

@media (max-width: 48em) {
  .top #top-message .msg-list .msg-item:not(:first-of-type) {
    margin-top: 20px;
  }
}

@media (min-width: 48.0625em) {
  .top #top-message .msg-list .msg-item {
    cursor: pointer;
    width: 520px;
    margin-top: 40px;
  }
  .top #top-message .msg-list .msg-item:first-of-type, .top #top-message .msg-list .msg-item:nth-of-type(2) {
    margin-top: 0;
  }
}

.top #top-message .msg-list .msg-item .msg-txt {
  font-size: 15px;
  font-size: 1.5rem;
  font-style: italic;
}

@media (max-width: 48em) {
  .top #top-message .msg-list .msg-item .msg-txt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.top #top-message .msg-list .msg-item .txt-block {
  position: relative;
  padding: 20px 0;
}

@media (min-width: 48.0625em) {
  .top #top-message .msg-list .msg-item .txt-block {
    padding: 30px 0;
    -webkit-transition: .3s;
    transition: .3s;
  }
  .top #top-message .msg-list .msg-item .txt-block:hover {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
  }
}

.top #top-message .msg-list .msg-item .txt-block::before, .top #top-message .msg-list .msg-item .txt-block::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 18px;
  height: 15px;
}

@media (min-width: 48.0625em) {
  .top #top-message .msg-list .msg-item .txt-block::before, .top #top-message .msg-list .msg-item .txt-block::after {
    width: 29px;
    height: 25px;
  }
}

.top #top-message .msg-list .msg-item .msg-block {
  padding: 20px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  opacity: 1;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: url(/trackfield/img/top/open.png) no-repeat left bottom #fff;
  background-size: 120px auto;
}

@media (min-width: 48.0625em) {
  .top #top-message .msg-list .msg-item .msg-block {
    padding: 25px;
    background-size: 180px auto;
    -webkit-transition: .3s;
    transition: .3s;
  }
  .top #top-message .msg-list .msg-item .msg-block:hover {
    background: url(/trackfield/img/top/open_on.png) no-repeat left bottom #fff;
    background-size: 180px auto;
  }
}

.top #top-message .msg-list .msg-item .msg-block::before {
  background: url(/trackfield/common/img/common/qm_b_02.png) no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
}

.top #top-message .msg-list .msg-item .msg-block::after {
  background: url(/trackfield/common/img/common/qm_a_02.png) no-repeat;
  background-size: cover;
  bottom: 0;
  right: 0;
}

.top #top-message .msg-list .msg-item .msg-block .txt-block {
  padding: 20px 0;
  height: 100%;
}

@media (min-width: 48.0625em) {
  .top #top-message .msg-list .msg-item .msg-block .txt-block {
    padding: 30px 20px;
  }
}

.top #top-message .msg-list .msg-item .msg-block .txt-block::before {
  background: url(/trackfield/common/img/common/qm_b_02.png) no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
}

.top #top-message .msg-list .msg-item .msg-block .txt-block::after {
  background: url(/trackfield/common/img/common/qm_a_02.png) no-repeat;
  background-size: cover;
  bottom: 0;
  right: 0;
}

.top #top-message .msg-list .msg-item .msg-block .txt-block .msg-from {
  font-size: 14px;
  font-size: 1.4rem;
  margin-top: 20px;
  display: block;
}

@media (max-width: 48em) {
  .top #top-message .msg-list .msg-item .msg-block .txt-block .msg-from {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.top #top-message .msg-list .msg-item .rep-block {
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #ffe33f;
  padding: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

@media (min-width: 48.0625em) {
  .top #top-message .msg-list .msg-item .rep-block {
    padding: 25px;
  }
}

@media (min-width: 48.0625em) {
  .top #top-message .msg-list .msg-item .rep-block .img-block {
    width: 140px;
  }
}

.top #top-message .msg-list .msg-item .rep-block .img-block .msg-img {
  margin: 0 auto;
  display: block;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  overflow: hidden;
}

@media (min-width: 48.0625em) {
  .top #top-message .msg-list .msg-item .rep-block .img-block .msg-img {
    width: 120px;
    height: 120px;
  }
}

.top #top-message .msg-list .msg-item .rep-block .img-block .msg-name {
  text-align: center;
  display: block;
  width: 100%;
  font-size: 12px;
  font-size: 1.2rem;
  margin-top: 10px;
}

@media (min-width: 48.0625em) {
  .top #top-message .msg-list .msg-item .rep-block .img-block .msg-name {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.top #top-message .msg-list .msg-item .rep-block .txt-block {
  margin-left: 20px;
}

.top #top-message .msg-list .msg-item .rep-block .txt-block::before {
  background: url(/trackfield/common/img/common/qm_b_01.png) no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
}

.top #top-message .msg-list .msg-item .rep-block .txt-block::after {
  background: url(/trackfield/common/img/common/qm_a_01.png) no-repeat;
  background-size: cover;
  bottom: 0;
  right: 0;
}

@media (min-width: 48.0625em) {
  .top #top-message .msg-list .msg-item .rep-block .txt-block {
    width: 330px;
  }
}

.top #top-message .msg-list .msg-item .msg-block {
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-origin: 50% 50% 0;
  transform-origin: 50% 50% 0;
}

.top #top-message .msg-list .msg-item .rep-block {
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-transform: rotateY(90deg);
  transform: rotateY(90deg);
  -webkit-transform-origin: 50% 50% 0;
  transform-origin: 50% 50% 0;
}

.top #top-message .msg-list .msg-item.is-active .msg-block {
  -webkit-transform: rotateY(-90deg);
  transform: rotateY(-90deg);
  opacity: 0;
}

.top #top-message .msg-list .msg-item.is-active .rep-block {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  opacity: 1;
}

.top #top-message .msg-list .msg-item:first-of-type.is-active .rep-block {
  z-index: 5;
}

.top #top-message .msg-list .msg-item:nth-of-type(2).is-active .rep-block {
  z-index: 4;
}

.top #top-message .msg-list .msg-item:nth-of-type(3).is-active .rep-block {
  z-index: 3;
}

.top #top-message .msg-list .msg-item:nth-of-type(4).is-active .rep-block {
  z-index: 2;
}

@media (min-width: 48.0625em) {
  .top #top-message .msg-list .msg-item:nth-of-type(2) {
    margin-top: 50px;
  }
  .top #top-message .msg-list .msg-item:nth-of-type(3) {
    margin-top: 40px;
  }
  .top #top-message .msg-list .msg-item:nth-of-type(4) {
    margin-top: 55px;
  }
}

.top #top-message .msg-lead {
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  margin-top: 75px;
}

@media (min-width: 48.0625em) {
  .top #top-message .msg-lead {
    font-size: 18px;
    font-size: 1.8rem;
    margin-top: 100px;
  }
}

/* ---team|message */

.teamPage .heading-page-wrap {
  background: url(/trackfield/img/ourteam/heading_ot_bg_sp.jpg) no-repeat center top;
  background-size: cover;
}

@media (min-width: 48.0625em) {
  .teamPage .heading-page-wrap {
    background: url(/trackfield/img/ourteam/heading_ot_bg.jpg) no-repeat center top;
    background-size: cover;
  }
}

.teamPage #message .msg-block {
  margin-top: 20px;
}

@media (min-width: 48.0625em) {
  .teamPage #message .msg-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 15px;
  }
}

@media (max-width: 48em) {
  .teamPage #message .msg-block .img-block {
    text-align: center;
  }
}

@media (min-width: 48.0625em) {
  .teamPage #message .msg-block .img-block {
    width: 220px;
  }
}

.teamPage #message .msg-block .img-block .img-shadow {
  position: relative;
  display: inline-block;
}

@media (max-width: 48em) {
  .teamPage #message .msg-block .img-block .img-shadow {
    text-align: center;
    width: 80%;
    margin: 0 auto;
  }
}

.teamPage #message .msg-block .img-block .img-shadow::before {
  content: "";
  width: 100%;
  height: 100%;
  display: inline-block;
  position: absolute;
  top: 10px;
  right: -10px;
  background: #2e008b;
  z-index: -1;
}

.teamPage #message .msg-block .img-block img {
  width: 100%;
}

@media (max-width: 48em) {
  .teamPage #message .msg-block .txt-block {
    margin-top: 30px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media (min-width: 48.0625em) {
  .teamPage #message .msg-block .txt-block {
    width: 460px;
  }
}

.teamPage #message .msg-block .txt-block .sign {
  text-align: right;
  color: #2e008b;
  margin-top: 10px;
}

/* ---team|message　end */

/* ---team|history */

.teamPage #history .history-block table {
  width: 100%;
  border: 2px solid #8f8f99;
  margin-top: 15px;
}

@media (min-width: 48.0625em) {
  .teamPage #history .history-block table {
    margin-top: 30px;
  }
}

.teamPage #history .history-block table tr {
  background: #fff;
}

.teamPage #history .history-block table tr:nth-of-type(even) {
  background: #dddde0;
}

.teamPage #history .history-block table td {
  width: 78.66667%;
  border: 1px solid #8f8f99;
  font-size: 13px;
  font-size: 1.3rem;
  padding: 10px;
}

@media (min-width: 48.0625em) {
  .teamPage #history .history-block table td {
    font-size: 14px;
    font-size: 1.4rem;
    width: 570px;
    padding: 20px;
  }
}

.teamPage #history .history-block table td:first-of-type {
  vertical-align: middle;
  text-align: center;
  width: 21.33333%;
}

@media (min-width: 48.0625em) {
  .teamPage #history .history-block table td:first-of-type {
    width: 150px;
  }
}

.teamPage #history .history-block table td .img-block {
  margin-top: 10px;
  width: 100%;
}

@media (min-width: 48.0625em) {
  .teamPage #history .history-block table td .img-block {
    margin-top: 15px;
  }
}

.teamPage #history .history-block table td .img-block .img-list {
  width: 100%;
}

.teamPage #history .history-block table td .img-block .img-list li {
  float: left;
}

@media (max-width: 48em) {
  .teamPage #history .history-block table td .img-block .img-list li {
    width: 48%;
    margin-top: 4%;
  }
  .teamPage #history .history-block table td .img-block .img-list li:nth-of-type(even) {
    margin-left: 4%;
  }
  .teamPage #history .history-block table td .img-block .img-list li:first-of-type, .teamPage #history .history-block table td .img-block .img-list li:nth-of-type(2) {
    margin-top: 0;
  }
}

@media (min-width: 48.0625em) {
  .teamPage #history .history-block table td .img-block .img-list li {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 31%;
    margin-top: 2%;
    -webkit-transition: .3s;
    transition: .3s;
  }
  .teamPage #history .history-block table td .img-block .img-list li:not(:nth-of-type(3n+1)) {
    margin-left: 2%;
  }
  .teamPage #history .history-block table td .img-block .img-list li:first-of-type, .teamPage #history .history-block table td .img-block .img-list li:nth-of-type(2), .teamPage #history .history-block table td .img-block .img-list li:nth-of-type(3) {
    margin-top: 0;
  }
  .teamPage #history .history-block table td .img-block .img-list li:hover {
    opacity: .8;
  }
}

.teamPage #history .history-block table td .img-block .img-list a {
  display: block;
}

.teamPage #history .history-block table td .img-block .img-list img {
  width: 100%;
}

.teamPage #history .modal .modal-inner {
  background: none;
}

.teamPage #history .modal img {
  max-height: 700px;
}

/* ---team|history　end */

/* ---team|record */

.teamPage #record .ast {
  color: #e68434;
  font-weight: bold;
}

@media (max-width: 48em) {
  .teamPage #record .record-block {
    overflow: hidden;
  }
  .teamPage #record .record-block-inner {
    overflow-x: auto;
  }
}

.teamPage #record .record-block .notes {
  font-size: 13px;
  font-size: 13px;
  font-size: 1.3rem;
  margin-top: 10px;
}

@media (min-width: 48.0625em) {
  .teamPage #record .record-block .notes {
    display: none;
  }
}

.teamPage #record .record-block .ast {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: bold;
}

@media (min-width: 48.0625em) {
  .teamPage #record .record-block .ast {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.teamPage #record .record-block table {
  width: 100%;
  border: 2px solid #8f8f99;
  margin-top: 15px;
}

@media (max-width: 48em) {
  .teamPage #record .record-block table {
    width: 720px;
  }
}

@media (min-width: 48.0625em) {
  .teamPage #record .record-block table {
    margin-top: 30px;
    table-layout: fixed;
  }
}

.teamPage #record .record-block table tr {
  background: #fff;
}

.teamPage #record .record-block table tr:nth-of-type(odd) {
  background: #f7f7f8;
}

.teamPage #record .record-block table tr:first-of-type {
  background: #dddde0;
}

.teamPage #record .record-block table th {
  border: 1px solid #8f8f99;
  font-size: 12px;
  font-size: 1.2rem;
  padding: 10px 5px;
}

@media (min-width: 48.0625em) {
  .teamPage #record .record-block table th {
    font-size: 13px;
    font-size: 1.3rem;
  }
  .teamPage #record .record-block table th:first-of-type {
    width: 15.27778%;
  }
  .teamPage #record .record-block table th:nth-of-type(2) {
    width: 10.41667%;
  }
  .teamPage #record .record-block table th:nth-of-type(3) {
    width: 13.88889%;
  }
  .teamPage #record .record-block table th:nth-of-type(4) {
    width: 46.52778%;
  }
  .teamPage #record .record-block table th:last-of-type {
    width: 13.88889%;
  }
}

.teamPage #record .record-block table td {
  font-size: 12px;
  font-size: 1.2rem;
  padding: 10px 5px;
  border: 1px solid #8f8f99;
}

@media (min-width: 48.0625em) {
  .teamPage #record .record-block table td {
    width: 15%;
    font-size: 13px;
    font-size: 1.3rem;
  }
}

@media (min-width: 48.0625em) {
  .teamPage #record .record-block .sp-data {
    display: none;
  }
}

.teamPage #record .record-block .sp-data dl {
  border: 2px solid #8f8f99;
  margin-top: 10px;
  font-size: 13px;
  font-size: 1.3rem;
}

.teamPage #record .record-block .sp-data dl dt {
  width: 100%;
  background: #dddde0;
  text-align: center;
  padding: 10px 0;
  border-bottom: 1px solid #8f8f99;
}

.teamPage #record .record-block .sp-data dl dd {
  display: table;
  border-collapse: collapse;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #8f8f99;
}

.teamPage #record .record-block .sp-data dl dd:last-of-type {
  border-bottom: none;
}

.teamPage #record .record-block .sp-data dl dd p {
  display: table-cell;
  width: 75%;
  padding: 10px 5px;
}

.teamPage #record .record-block .sp-data dl dd p:first-of-type {
  width: 25%;
  border-right: 1px solid #8f8f99;
}

/* ---team|record　end */

/* ---team|csr*/

.teamPage #csr .txt-block {
  margin-top: 20px;
}

@media (min-width: 48.0625em) {
  .teamPage #csr .txt-block {
    margin-top: 30px;
  }
}

.teamPage #csr .txt-block p {
  margin-top: 10px;
}

.teamPage #csr .img-block ul {
  margin-top: 30px;
}

@media (min-width: 48.0625em) {
  .teamPage #csr .img-block ul {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 48em) {
  .teamPage #csr .img-block ul li:not(:first-of-type) {
    margin-top: 15px;
  }
}

@media (min-width: 48.0625em) {
  .teamPage #csr .img-block ul li {
    width: 340px;
  }
  .teamPage #csr .img-block ul li:not(:nth-of-type(3n+1)) {
    margin-left: 20px;
  }
}

.teamPage #csr .img-block ul li img {
  width: 100%;
}

.teamPage #csr .activity-block table {
  width: 100%;
  border: 2px solid #8f8f99;
  margin-top: 15px;
}

@media (min-width: 48.0625em) {
  .teamPage #csr .activity-block table {
    margin-top: 30px;
  }
}

.teamPage #csr .activity-block table tr {
  background: #fff;
}

.teamPage #csr .activity-block table tr:nth-of-type(even) {
  background: #dddde0;
}

.teamPage #csr .activity-block table td {
  width: 78.66667%;
  border: 1px solid #8f8f99;
  font-size: 13px;
  font-size: 1.3rem;
  padding: 10px;
}

@media (min-width: 48.0625em) {
  .teamPage #csr .activity-block table td {
    font-size: 14px;
    font-size: 1.4rem;
    width: 570px;
    padding: 20px;
  }
}

.teamPage #csr .activity-block table td:first-of-type {
  vertical-align: middle;
  text-align: center;
  width: 21.33333%;
}

@media (min-width: 48.0625em) {
  .teamPage #csr .activity-block table td:first-of-type {
    width: 150px;
  }
}

/* ---team|csr　end */

.profilePage .heading-page-wrap {
  background: url(/trackfield/img/profile/heading_rs_bg_sp.jpg) no-repeat center top;
  background-size: cover;
}

@media (min-width: 48.0625em) {
  .profilePage .heading-page-wrap {
    background: url(/trackfield/img/profile/heading_rs_bg.jpg) no-repeat center top;
    background-size: cover;
  }
}

.profilePage .profile-anchor {
  margin-top: 60px;
}

@media (max-width: 48em) {
  .profilePage .profile-anchor {
    display: none;
  }
}

.profilePage .profile-anchor .anchor-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.profilePage .profile-anchor .anchor-list li {
  /*width: 246px;*/
  width: 200px;
}

.profilePage .profile-anchor .anchor-list li a {
  color: #fff;
  background: #2e008b;
  padding: 15px 20px;
  display: block;
  text-align: center;
  line-height: 1.2;
  font-size: 16px;
  font-size: 1.6rem;
  position: relative;
  -webkit-transition: .3s;
  transition: .3s;
}

.profilePage .profile-anchor .anchor-list li a::after {
  content: "▼";
  line-height: 1;
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -5px;
  font-size: 8px;
  font-size: 0.8rem;
}

.profilePage .profile-anchor .anchor-list li a:hover {
  background: #19004B;
}

.profilePage .profile-anchor_02 {
  margin-top: 20px;
}

@media (max-width: 48em) {
  .profilePage .profile-anchor_02 {
    display: none;
  }
}

.profilePage .profile-anchor_02 .anchor-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
}

.profilePage .profile-anchor_02 .anchor-list li {
  /*width: 246px;*/
  width: 200px;
}

.profilePage .profile-anchor_02 .anchor-list li a {
  color: #fff;
  background: #2e008b;
  padding: 15px 20px;
  display: block;
  text-align: center;
  line-height: 1.2;
  font-size: 16px;
  font-size: 1.6rem;
  position: relative;
  -webkit-transition: .3s;
  transition: .3s;
}

.profilePage .profile-anchor_02 .anchor-list li a::after {
  content: "▼";
  line-height: 1;
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -5px;
  font-size: 8px;
  font-size: 0.8rem;
}

.profilePage .profile-anchor_02 .anchor-list li a:hover {
  background: #19004B;
}

.profilePage .profile-block {
  margin-top: 30px;
}

@media (max-width: 48em) {
  .profilePage .profile-block {
    margin-top: 0;
  }
}

@media (max-width: 48em) {
  .profilePage .profile-block .sec-inner {
    padding: 0;
  }
}

@media (max-width: 48em) {
  .profilePage .profile-block .heading-type01 {
    background: #2e008b;
    cursor: pointer;
    text-align: center;
    font-size: 16px;
    font-size: 1.6rem;
    padding: 20px 0;
    margin-bottom: 10px;
    position: relative;
    color: #fff;
    line-height: 1.2;
  }
  .profilePage .profile-block .heading-type01::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -6px;
  }
  .profilePage .profile-block .heading-type01.is-active::before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: -3px;
  }
}

.profilePage .profile-block .acdArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 48em) {
  .profilePage .profile-block .acdArea {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: none;
  }
  .profilePage .profile-block .acdArea.is-active {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    margin: 0 20px 20px;
  }
}

.profilePage .profile-block .acdArea > ul.profile-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 48em) {
  .profilePage .profile-block .acdArea > ul.profile-list {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
  }
}

.profilePage .profile-block .acdArea > ul.profile-list:not(:first-of-type) {
  border-top: 1px dotted #8f8f99;
  padding-top: 15px;
  margin-top: 25px;
}

@media (min-width: 48.0625em) {
  .profilePage .profile-block .acdArea > ul.profile-list:not(:first-of-type) {
    padding-top: 20px;
    margin-top: 40px;
  }
}

.profilePage .profile-block .acdArea > ul.profile-list:not(:first-of-type) li .prof-cat, .profilePage .profile-block .acdArea > ul.profile-list:not(:first-of-type) li .prof-name {
  margin-top: 0;
}

@media (max-width: 48em) {
  .profilePage .profile-block ul.profile-list li {
    width: 42.85714%;
    margin-top: 15px;
  }
}

@media (min-width: 48.0625em) {
  .profilePage .profile-block ul.profile-list li {
    width: 210px;
    margin-left: 80px;
    margin-top: 30px;
  }
  .profilePage .profile-block ul.profile-list li:nth-of-type(4n+1) {
    margin-left: 0;
  }
}

.profilePage .profile-block ul.profile-list li a {
  color: #171719;
  display: block;
}

@media (min-width: 48.0625em) {
  .profilePage .profile-block ul.profile-list li a:hover .prof-img::after {
    opacity: 1;
  }
}

.profilePage .profile-block ul.profile-list li .prof-img {
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.profilePage .profile-block ul.profile-list li .prof-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  border: 2px solid #2e008b;
  opacity: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media (min-width: 48.0625em) {
  .profilePage .profile-block ul.profile-list li .prof-img::after {
    border: 4px solid #2e008b;
  }
}

.profilePage .profile-block ul.profile-list li .prof-img img {
  width: 100%;
}

.profilePage .profile-block ul.profile-list li .prof-cat {
  display: block;
  text-align: center;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.2;
  margin-top: 20px;
}

@media (min-width: 48.0625em) {
  .profilePage .profile-block ul.profile-list li .prof-cat {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.profilePage .profile-block ul.profile-list li .prof-name {
  display: block;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  font-size: 1.6rem;
}

@media (min-width: 48.0625em) {
  .profilePage .profile-block ul.profile-list li .prof-name {
    font-size: 20px;
    font-size: 2.0rem;
  }
}

.profilePage .profile-mv .mv-inner li {
  vertical-align: top;
}

.profilePage .profile-mv .mv-inner li img {
  width: 100%;
}

.profilePage .profile-mv .slick-dots {
  position: relative;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media (max-width: 48em) {
  .profilePage .profile-mv .slick-dots {
    margin-top: -20px;
  }
}

@media (min-width: 48.0625em) {
  .profilePage .profile-mv .slick-dots {
    width: 1080px;
    margin: 0 auto;
    top: -30px;
  }
}

@media (min-width: 48.0625em) {
  .profilePage .member-block .sec-inner {
    width: 960px;
  }
}

.profilePage .member-block .team-block {
  font-size: 16px;
  font-size: 1.6rem;
  margin-top: 20px;
}

@media (min-width: 48.0625em) {
  .profilePage .member-block .team-block {
    font-size: 16px;
    font-size: 1.6rem;
    margin-top: 30px;
  }
}

.profilePage .member-block .member-head {
  margin-top: 30px;
}

@media (min-width: 48.0625em) {
  .profilePage .member-block .member-head {
    margin-top: 55px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.profilePage .member-block .member-head .name-block .m-cat {
  font-size: 14px;
  font-size: 1.4rem;
  background: url(/trackfield/common/img/common/heading_arw.png) no-repeat left center;
  background-size: 13px auto;
  padding-left: 25px;
}

@media (min-width: 48.0625em) {
  .profilePage .member-block .member-head .name-block .m-cat {
    font-size: 18px;
    font-size: 1.8rem;
    background-size: 20px auto;
    padding-left: 35px;
  }
}

.profilePage .member-block .member-head .name-block .m-name {
  font-size: 18px;
  font-size: 1.8rem;
}

.profilePage .member-block .member-head .name-block .m-name span {
  padding-left: 15px;
}

@media (min-width: 48.0625em) {
  .profilePage .member-block .member-head .name-block .m-name {
    font-size: 30px;
    font-size: 3rem;
  }
  .profilePage .member-block .member-head .name-block .m-name span {
    font-size: 22px;
    font-size: 2.2rem;
    padding-left: 30px;
  }
}

@media (max-width: 48em) {
  .profilePage .member-block .member-head .record-block {
    margin-top: 15px;
    width: auto !important;
  }
}

@media (min-width: 48.0625em) {
  .profilePage .member-block .member-head .record-block {
    width: 510px;
  }
}

.profilePage .member-block .member-head .record-block dl {
  font-size: 15px;
  font-size: 1.5rem;
  border: 1px solid #2e008b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  background: #fff;
}

@media (min-width: 48.0625em) {
  .profilePage .member-block .member-head .record-block dl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.profilePage .member-block .member-head .record-block dl::before, .profilePage .member-block .member-head .record-block dl::after {
  content: "";
  position: absolute;
  display: block;
  width: 16px;
  height: 16px;
  background: #2e008b;
  z-index: -1;
}

@media (min-width: 48.0625em) {
  .profilePage .member-block .member-head .record-block dl::before, .profilePage .member-block .member-head .record-block dl::after {
    width: 24px;
    height: 24px;
  }
}

.profilePage .member-block .member-head .record-block dl::before {
  top: -3px;
  left: -3px;
}

.profilePage .member-block .member-head .record-block dl::after {
  bottom: -3px;
  right: -3px;
}

.profilePage .member-block .member-head .record-block dl dt, .profilePage .member-block .member-head .record-block dl dd {
  padding: 10px 15px;
}

@media (min-width: 48.0625em) {
  .profilePage .member-block .member-head .record-block dl dt, .profilePage .member-block .member-head .record-block dl dd {
    padding: 10px 20px;
  }
}

.profilePage .member-block .member-head .record-block dl dt {
  border-bottom: 1px solid #2e008b;
  width: 100%;
}

.profilePage .member-block .member-head .record-block dl dd span {
  display: inline-block;
}

.profilePage .member-block .member-head .record-block dl dd span:not(:last-of-type):after {
  content: "/";
  display: inline-block;
  padding: 0 10px;
}

@media (min-width: 48.0625em) {
  .profilePage .member-block .member-head .record-block dl dd span:not(:last-of-type):after {
    content: "／";
    padding: 0 15px;
  }
}

.profilePage .member-block .member-body {
  padding: 20px;
  margin-top: 20px;
  border: 2px solid #2e008b;
  background: #fff;
}

@media (min-width: 48.0625em) {
  .profilePage .member-block .member-body {
    padding: 30px;
    margin-top: 30px;
  }
}

.profilePage .member-block .member-body .prof-info dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
}

@media (min-width: 48.0625em) {
  .profilePage .member-block .member-body .prof-info dl {
    margin-top: 20px;
  }
}

.profilePage .member-block .member-body .prof-info dl dt {
  width: 25.42373%;
}

@media (min-width: 48.0625em) {
  .profilePage .member-block .member-body .prof-info dl dt {
    width: 75px;
  }
}

.profilePage .member-block .member-body .prof-info dl dt.heading-type02 {
  font-size: 15px;
  font-size: 1.5rem;
  margin-top: 0;
}

@media (min-width: 48.0625em) {
  .profilePage .member-block .member-body .prof-info dl dt.heading-type02 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.profilePage .member-block .member-body .prof-info dl dd {
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
  width: 74.57627%;
}

@media (min-width: 48.0625em) {
  .profilePage .member-block .member-body .prof-info dl dd {
    font-size: 16px;
    font-size: 1.6rem;
    width: 821px;
  }
}

.profilePage .member-block .member-body .prof-qa dl dt, .profilePage .member-block .member-body .prof-qa dl dd {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  font-size: 1.5rem;
}

.profilePage .member-block .member-body .prof-qa dl dt::before, .profilePage .member-block .member-body .prof-qa dl dd::before {
  position: absolute;
  top: 3px;
  left: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 50%;
  color: #fff;
  text-align: center;
}

@media (min-width: 48.0625em) {
  .profilePage .member-block .member-body .prof-qa dl dt, .profilePage .member-block .member-body .prof-qa dl dd {
    padding-left: 45px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .profilePage .member-block .member-body .prof-qa dl dt::before, .profilePage .member-block .member-body .prof-qa dl dd::before {
    top: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}

.profilePage .member-block .member-body .prof-qa dl dt {
  font-weight: bold;
  color: #2e008b;
  margin-top: 25px;
}

.profilePage .member-block .member-body .prof-qa dl dt::before {
  content: "Q";
  background: #2e008b;
}

.profilePage .member-block .member-body .prof-qa dl dd {
  margin-top: 10px;
}

.profilePage .member-block .member-body .prof-qa dl dd::before {
  content: "A";
  background: #cddc39;
}

.profilePage .member-block .member-foot {
  padding: 20px;
  margin-top: 20px;
  border: 2px solid #2e008b;
  background: #fff;
}

@media (min-width: 48.0625em) {
  .profilePage .member-block .member-foot {
    padding: 30px;
    margin-top: 30px;
  }
}

.profilePage .member-block .member-foot .track-record {
  margin-top: 15px;
}

@media (max-width: 48em) {
  .profilePage .member-block .member-foot .track-record {
    overflow-x: auto;
  }
}

@media (min-width: 48.0625em) {
  .profilePage .member-block .member-foot .track-record {
    margin-top: 20px;
  }
}

.profilePage .member-block .member-foot .track-record table {
  table-layout: fixed;
  width: 600px;
}

@media (min-width: 48.0625em) {
  .profilePage .member-block .member-foot .track-record table {
    width: 100%;
  }
}

.profilePage .member-block .member-foot .track-record table tr {
  text-align: left;
}

.profilePage .member-block .member-foot .track-record table tr:nth-of-type(odd) {
  background: #e9e9eb;
}

.profilePage .member-block .member-foot .track-record table tr th, .profilePage .member-block .member-foot .track-record table tr td {
  padding: 5px 10px;
  font-size: 13px;
  font-size: 1.3rem;
  vertical-align: top;
  text-align: left;
}

@media (min-width: 48.0625em) {
  .profilePage .member-block .member-foot .track-record table tr th, .profilePage .member-block .member-foot .track-record table tr td {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.profilePage .member-block .member-foot .track-record table tr th {
  width: 300px;
}

@media (min-width: 48.0625em) {
  .profilePage .member-block .member-foot .track-record table tr th {
    width: 496px;
  }
}

.profilePage .member-block .member-foot .track-record table tr th .record-year {
  padding-right: 15px;
}

.profilePage .member-block .member-foot .track-record table tr td {
  position: relative;
  width: 150px;
}

@media (min-width: 48.0625em) {
  .profilePage .member-block .member-foot .track-record table tr td {
    width: 200px;
    padding: 5px 20px;
  }
  .profilePage .member-block .member-foot .track-record table tr td:before {
    content: "";
    position: absolute;
    top: 20%;
    left: 0;
    width: 1px;
    height: 60%;
    background: #bcbcc2;
  }
}

.profilePage .member-block .member-foot .track-record table tr td span {
  position: relative;
}

.profilePage .member-block .member-foot .track-record table tr td span.rank2:after, .profilePage .member-block .member-foot .track-record table tr td span.rank3:after {
  content: "★";
  font-size: 6px;
  font-size: 0.6rem;
  display: inline-block;
  vertical-align: top;
  margin-left: 3px;
}

.profilePage .member-block .member-foot .track-record table tr td span.rank1:after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 9px;
  vertical-align: top;
  position: relative;
  top: .1em;
  background: url(/trackfield/common/img/common/ico_crown.png) no-repeat center top;
  background-size: cover;
  margin-left: 3px;
}

.profilePage .member-block .member-foot .track-record table tr td span.rank2:after {
  color: #b1d2d9;
}

.profilePage .member-block .member-foot .track-record table tr td span.rank3:after {
  color: #e68434;
}

.profilePage .member-block .member-foot .notes {
  font-size: 13px;
  font-size: 1.3rem;
  margin-top: 10px;
}

@media (min-width: 34em) {
  .profilePage .member-block .member-foot .notes {
    display: none;
  }
}

.profilePage .msg-block {
  background: url(/trackfield/img/profile/bg_msg_top.png) no-repeat left top, url(/trackfield/img/profile/bg_msg_bottom.png) no-repeat right bottom #cddc39;
  margin-top: 30px;
}

@media (max-width: 48em) {
  .profilePage .msg-block {
    background-size: 70% auto;
    padding: 40px 0;
  }
}

@media (min-width: 48.0625em) {
  .profilePage .msg-block {
    padding: 60px 0;
    margin-top: 60px;
  }
}

.profilePage .msg-block .sec-inner {
  background: #fff;
}

@media (max-width: 48em) {
  .profilePage .msg-block .sec-inner {
    padding: 0;
  }
}

@media (min-width: 48.0625em) {
  .profilePage .msg-block .sec-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
  }
}

.profilePage .msg-block .sec-inner .img-block {
  position: relative;
}

@media (max-width: 48em) {
  .profilePage .msg-block .sec-inner .img-block {
    top: -30px;
    text-align: center;
  }
}

@media (min-width: 48.0625em) {
  .profilePage .msg-block .sec-inner .img-block {
    width: 360px;
  }
}

.profilePage .msg-block .sec-inner .img-block img {
  width: 80%;
  height: auto;
}

@media (min-width: 48.0625em) {
  .profilePage .msg-block .sec-inner .img-block img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
  }
}

@media (max-width: 48em) {
  .profilePage .msg-block .sec-inner .txt-block {
    padding: 0 20px 30px;
    margin-top: -10px;
  }
  .profilePage .msg-block .sec-inner .txt-block_noimage{
    padding: 30px 20px;
    margin-top: -10px;
  }
}

@media (min-width: 48.0625em) {
  .profilePage .msg-block .sec-inner .txt-block {
    width: 720px;
    padding: 40px 60px 40px 0;
    min-height: 310px;
  }
  .profilePage .msg-block .sec-inner .txt-block_noimage {
    width: 720px;
    padding: 40px 60px !important;
    min-height: 270px !important;
    margin: 0 auto;
  }
}

.profilePage .msg-block .sec-inner .txt-block .msg-txt {
  padding: 0 30px;
  position: relative;
  font-size: 15px;
  font-size: 1.5rem;
}

@media (min-width: 48.0625em) {
  .profilePage .msg-block .sec-inner .txt-block .msg-txt {
    padding: 0 80px;
    font-size: 16px;
    font-size: 1.6rem;
    background-size: 180px auto;
  }
}

.profilePage .msg-block .sec-inner .txt-block .msg-txt::before, .profilePage .msg-block .sec-inner .txt-block .msg-txt::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 18px;
  height: 15px;
}

@media (min-width: 48.0625em) {
  .profilePage .msg-block .sec-inner .txt-block .msg-txt::before, .profilePage .msg-block .sec-inner .txt-block .msg-txt::after {
    width: 36px;
    height: 30px;
  }
}

.profilePage .msg-block .sec-inner .txt-block .msg-txt::before {
  background: url(/trackfield/common/img/common/qm_b_03.png) no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
}

.profilePage .msg-block .sec-inner .txt-block .msg-txt::after {
  background: url(/trackfield/common/img/common/qm_a_03.png) no-repeat;
  background-size: cover;
  bottom: 0;
  right: 0;
}

.profilePage .msg-block .sec-inner .txt-block .msg-lead {
  text-align: center;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 15px;
}

@media (min-width: 48.0625em) {
  .profilePage .msg-block .sec-inner .txt-block .msg-lead {
    font-size: 16px;
    font-size: 1.6rem;
    margin-top: 20px;
  }
}

@media (min-width: 48.0625em) {
  .profilePage .msg-block .sec-inner .txt-block .btn-wrap {
    margin-top: 10px;
  }
}

.profilePage .members-block {
  margin-top: 50px;
}

@media (max-width: 48em) {
  .profilePage .members-block {
    margin: 30px 0 40px;
  }
}

@media (max-width: 48em) {
  .profilePage .members-block .sec-inner {
    padding: 0;
  }
}

@media (max-width: 48em) {
  .profilePage .members-block .heading-type01 {
    margin: 0 20px;
  }
}

.profilePage .members-block .profile-list-wrap {
  margin-top: 20px;
}

@media (min-width: 48.0625em) {
  .profilePage .members-block .profile-list-wrap {
    width: 920px;
    margin: 30px auto 0;
  }
}

@media (max-width: 48em) {
  .profilePage .members-block .profile-list li {
    width: 42.85714%;
    margin-top: 15px;
    padding: 0 20px;
  }
  .profilePage .members-block .profile-list li img {
    width: 100%;
  }
}

@media (min-width: 48.0625em) {
  .profilePage .members-block .profile-list li {
    width: 230px !important;
    padding: 0 20px;
  }
}

.profilePage .members-block .profile-list li a {
  color: #171719;
  display: block;
}

.profilePage .members-block .profile-list li .prof-img {
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media (max-width: 48em) {
  .profilePage .members-block .profile-list li .prof-img {
    width: 100%;
  }
}

.profilePage .members-block .profile-list li .prof-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  border: 2px solid #2e008b;
  opacity: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media (min-width: 48.0625em) {
  .profilePage .members-block .profile-list li .prof-img::after {
    border: 4px solid #2e008b;
  }
}

.profilePage .members-block .profile-list li .prof-img img {
  width: 100%;
}

.profilePage .members-block .profile-list li .prof-cat {
  display: block;
  text-align: center;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.2;
  margin-top: 20px;
}

@media (min-width: 48.0625em) {
  .profilePage .members-block .profile-list li .prof-cat {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.profilePage .members-block .profile-list li .prof-name {
  display: block;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  font-size: 1.6rem;
}

@media (min-width: 48.0625em) {
  .profilePage .members-block .profile-list li .prof-name {
    font-size: 20px;
    font-size: 2.0rem;
  }
}

@media (min-width: 48.0625em) {
  .profilePage .members-block .profile-list li:hover .prof-img::after {
    opacity: 1;
  }
}

.profilePage .members-block .profile-list .slick-prev, .profilePage .members-block .profile-list .slick-next {
  position: absolute;
  text-indent: -9999px;
  border: none;
  background: #2e008b;
  outline: none;
}

@media (max-width: 48em) {
  .profilePage .members-block .profile-list .slick-prev, .profilePage .members-block .profile-list .slick-next {
    bottom: -40px;
    width: 30px;
    height: 30px;
  }
}

@media (min-width: 48.0625em) {
  .profilePage .members-block .profile-list .slick-prev, .profilePage .members-block .profile-list .slick-next {
    top: 50%;
    width: 40px;
    height: 40px;
    margin-top: -60px;
  }
}

.profilePage .members-block .profile-list .slick-prev::before, .profilePage .members-block .profile-list .slick-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: -5px auto 0;
  width: 10px;
  height: 10px;
  display: inline-block;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.profilePage .members-block .profile-list .slick-prev {
  left: 30%;
}

@media (min-width: 48.0625em) {
  .profilePage .members-block .profile-list .slick-prev {
    left: -80px;
  }
}

.profilePage .members-block .profile-list .slick-prev::before {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  left: 3px;
}

@media (min-width: 48.0625em) {
  .profilePage .members-block .profile-list .slick-prev::before {
    left: 4px;
  }
}

.profilePage .members-block .profile-list .slick-next {
  right: 30%;
}

@media (min-width: 48.0625em) {
  .profilePage .members-block .profile-list .slick-next {
    right: -80px;
  }
}

.profilePage .members-block .profile-list .slick-next::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  right: 3px;
}

@media (min-width: 48.0625em) {
  .profilePage .members-block .profile-list .slick-next::before {
    right: 4px;
  }
}

.schedulePage .heading-page-wrap {
  background: url(/trackfield/img/schedule/heading_sr_bg_sp.jpg) no-repeat center top;
  background-size: cover;
}

@media (min-width: 48.0625em) {
  .schedulePage .heading-page-wrap {
    background: url(/trackfield/img/schedule/heading_sr_bg.jpg) no-repeat center top;
    background-size: cover;
  }
}

.schedulePage .schedule-block .schedule-list .list-item {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dotted #8f8f99;
}

@media (min-width: 48.0625em) {
  .schedulePage .schedule-block .schedule-list .list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.schedulePage .schedule-block .schedule-list .list-item .schedule-date {
  font-size: 15px;
  font-size: 1.5rem;
}

@media (min-width: 48.0625em) {
  .schedulePage .schedule-block .schedule-list .list-item .schedule-date {
    width: 190px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media (max-width: 48em) {
  .schedulePage .schedule-block .schedule-list .list-item .schedule-info {
    border-top: 1px solid #8f8f99;
    margin-top: 10px;
    padding-top: 10px;
  }
}

@media (min-width: 48.0625em) {
  .schedulePage .schedule-block .schedule-list .list-item .schedule-info {
    width: 530px;
    border-left: 1px dotted #8f8f99;
    padding-left: 20px;
  }
}

.schedulePage .schedule-block .schedule-list .list-item .schedule-info dl dt span {
  display: block;
  font-weight: bold;
  font-size: 17px;
  font-size: 1.7rem;
}

@media (min-width: 48.0625em) {
  .schedulePage .schedule-block .schedule-list .list-item .schedule-info dl dt span {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.schedulePage .schedule-block .schedule-list .list-item .schedule-info dl dt a {
  color: #2e008b;
}

.schedulePage .schedule-block .schedule-list .list-item .schedule-info dl dt a:hover {
  text-decoration: underline;
}

.schedulePage .schedule-block .schedule-list .list-item .schedule-info dl dd {
  font-size: 15px;
  font-size: 1.5rem;
}

@media (min-width: 48.0625em) {
  .schedulePage .schedule-block .schedule-list .list-item .schedule-info dl dd {
    margin-top: 5px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.schedulePage .schedule-block .schedule-list .list-item .schedule-info dl dd span {
  font-weight: bold;
}

.schedulePage .schedule-wrap {
  position: relative;
}

@media (min-width: 48.0625em) {
  .schedulePage .schedule-wrap .heading-type01 + .notes {
    position: absolute;
    top: 0;
    right: 0;
    margin-top: -3px;
  }
}

@media (min-width: 48.0625em) {
  .schedulePage .schedule-wrap .result-block .result-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.schedulePage .schedule-wrap .result-block .result-list .list-item {
  margin-top: 15px;
}

@media (min-width: 48.0625em) {
  .schedulePage .schedule-wrap .result-block .result-list .list-item {
    width: 350px;
    margin-top: 20px;
  }
}

.schedulePage .schedule-wrap .result-block .result-list .list-item table {
  width: 100%;
  border: 2px solid #8f8f99;
}

.schedulePage .schedule-wrap .result-block .result-list .list-item table th, .schedulePage .schedule-wrap .result-block .result-list .list-item table td {
  border: 1px solid #8f8f99;
  background: #fff;
  font-size: 13px;
  font-size: 1.3rem;
  vertical-align: top;
  padding: 10px;
}

@media (min-width: 48.0625em) {
  .schedulePage .schedule-wrap .result-block .result-list .list-item table th, .schedulePage .schedule-wrap .result-block .result-list .list-item table td {
    font-size: 14px;
    font-size: 1.4rem;
    padding: 5px 10px;
  }
}

.schedulePage .schedule-wrap .result-block .result-list .list-item table th {
  background: #dddde0;
  font-weight: normal;
  width: 26.66667%;
}

@media (min-width: 48.0625em) {
  .schedulePage .schedule-wrap .result-block .result-list .list-item table th {
    width: 100px;
  }
}

@media (min-width: 48.0625em) {
  .schedulePage .schedule-wrap .result-block .result-list .list-item table td {
    width: 250px;
  }
}

.newsPage .heading-page-wrap {
  background: url(/trackfield/img/news/heading_news_bg_sp.jpg) no-repeat center top;
  background-size: cover;
}

@media (min-width: 48.0625em) {
  .newsPage .heading-page-wrap {
    background: url(/trackfield/img/news/heading_news_bg.jpg) no-repeat center top;
    background-size: cover;
  }
}

.newsPage .news-list {
  margin-bottom: 40px;
}

@media (min-width: 48.0625em) {
  .newsPage .news-list {
    margin-bottom: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.newsPage .news-list .news-item {
  width: 100%;
}

@media (max-width: 48em) {
  .newsPage .news-list .news-item {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px dotted #8f8f99;
  }
  .newsPage .news-list .news-item:first-of-type {
    padding-top: 0;
    border: none;
  }
}

@media (min-width: 48.0625em) {
  .newsPage .news-list .news-item {
    width: 345px !important;
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.newsPage .news-list .news-item .item-inner {
  background: #fff;
  display: block;
  color: #333;
}

@media (max-width: 48em) {
  .newsPage .news-list .news-item .item-inner {
    margin: 0 auto;
    -webkit-box-shadow: none;
    box-shadow: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media (min-width: 48.0625em) {
  .newsPage .news-list .news-item .item-inner {
    display: block;
    -webkit-transition: .3s;
    transition: .3s;
    width: 100%;
  }
}

@media (max-width: 48em) {
  .newsPage .news-list .news-item .item-inner .img-block {
    width: 42.66667%;
  }
}

@media (min-width: 48.0625em) {
  .newsPage .news-list .news-item .item-inner .img-block {
    overflow: hidden;
  }
}

.newsPage .news-list .news-item .item-inner .img-block img {
  vertical-align: top;
  -webkit-transition: .5s;
  transition: .5s;
}

@media (max-width: 48em) {
  .newsPage .news-list .news-item .item-inner .img-block img {
    width: 100%;
  }
}

@media (min-width: 48.0625em) {
  .newsPage .news-list .news-item .item-inner:hover .img-block img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}

@media (max-width: 48em) {
  .newsPage .news-list .news-item .item-inner .txt-block {
    width: 57.33333%;
  }
}

.newsPage .news-list .news-item .news-label {
  font-size: 12px;
  font-size: 1.2rem;
}

@media (max-width: 48em) {
  .newsPage .news-list .news-item .news-label {
    font-size: 11px;
    font-size: 1.1rem;
    margin-left: 15px;
  }
}

.newsPage .news-list .news-item .news-date {
  font-size: 16px;
  font-size: 1.6rem;
  margin-top: 15px;
  padding: 0 15px;
}

@media (max-width: 48em) {
  .newsPage .news-list .news-item .news-date {
    font-size: 13px;
    font-size: 1.3rem;
    margin-top: 0;
  }
}

.newsPage .news-list .news-item .news-heading {
  font-size: 16px;
  font-size: 1.6rem;
  margin-top: 2px;
  padding: 0 15px 15px;
}

@media (max-width: 48em) {
  .newsPage .news-list .news-item .news-heading {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.2;
    padding-bottom: 0;
  }
}

.newsPage .news-wrap .img {
  margin-top: 20px;
}

@media (min-width: 48.0625em) {
  .newsPage .news-wrap .img {
    margin-top: 30px;
  }
}

.newsPage .news-wrap .txt {
  margin-top: 20px;
  font-size: 16px;
  font-size: 1.6rem;
}

@media (min-width: 48.0625em) {
  .newsPage .news-wrap .txt {
    margin-top: 30px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.newsPage .news-wrap .txt p {
  margin-top: 5px;
}

.newsPage .news-wrap .news-col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 48.0625em) {
  .newsPage .news-wrap .news-col2 {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media (min-width: 48.0625em) {
  .newsPage .news-wrap .news-col2 .news-col {
    width: 340px;
  }
}


.newsPage .banner_wac_pc{
  display: none;
}

.newsPage .banner_wac_sp{
  display: block;
  padding: 0 20px;
}

.newsPage .banner_wac_sp img{
  width: 100%;
}


@media (min-width: 48.0625em) {
  .newsPage .banner_wac_pc{
    display: block;
  }

  .newsPage .banner_wac_pc{
    margin-top: 20px;
  }
  .newsPage .banner_wac_pc a:hover img{
    opacity: 0.8;
  }

  .newsPage .banner_wac_sp{
    display: none;
  }
}

.csrPage .heading-page-wrap {
  background: url(/trackfield/img/csr/heading_csr_bg_sp.jpg) no-repeat center top;
  background-size: cover;
}

@media (min-width: 48.0625em) {
  .csrPage .heading-page-wrap {
    background: url(/trackfield/img/csr/heading_csr_bg.jpg) no-repeat center top;
    background-size: cover;
  }
}

.csrPage #csr {
  margin-top: 30px;
}

@media (min-width: 48.0625em) {
  .csrPage #csr {
    margin-top: 60px;
  }
}

.csrPage #csr .txt-block {
  margin-top: 20px;
}

@media (min-width: 48.0625em) {
  .csrPage #csr .txt-block {
    margin-top: 30px;
  }
}

.csrPage #csr .txt-block p {
  margin-top: 10px;
}

.csrPage #csr .img-block ul {
  margin-top: 30px;
}

@media (min-width: 48.0625em) {
  .csrPage #csr .img-block ul {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 48em) {
  .csrPage #csr .img-block ul li:not(:first-of-type) {
    margin-top: 15px;
  }
}

@media (min-width: 48.0625em) {
  .csrPage #csr .img-block ul li {
    width: 340px;
  }
  .csrPage #csr .img-block ul li:not(:nth-of-type(3n+1)) {
    margin-left: 30px;
  }
}

.csrPage #csr .img-block ul li img {
  width: 100%;
}

.csrPage #csr .activity-block {
  margin-top: 20px;
}

@media (min-width: 48.0625em) {
  .csrPage #csr .activity-block {
    margin-top: 30px;
  }
}

.csrPage #csr .activity-block table {
  width: 100%;
  border: 2px solid #8f8f99;
  margin-top: 15px;
}

@media (min-width: 48.0625em) {
  .csrPage #csr .activity-block table {
    margin-top: 20px;
  }
}

.csrPage #csr .activity-block table tr {
  background: #fff;
}

.csrPage #csr .activity-block table tr:nth-of-type(even) {
  background: #dddde0;
}

.csrPage #csr .activity-block table th {
  vertical-align: top;
  text-align: center;
  width: 21.33333%;
  padding: 10px;
  border-bottom: 1px solid #8f8f99;
}

@media (min-width: 48.0625em) {
  .csrPage #csr .activity-block table th {
    width: 220px;
    padding: 20px;
  }
}

.csrPage #csr .activity-block table td {
  width: 78.66667%;
  border: 1px solid #8f8f99;
  font-size: 13px;
  font-size: 1.3rem;
  padding: 10px;
}

.csrPage #csr .activity-block table td a {
  color: #2e008b;
  text-decoration: none;
}

@media (min-width: 48.0625em) {
  .csrPage #csr .activity-block table td {
    font-size: 14px;
    font-size: 1.4rem;
    width: 860px;
    padding: 20px;
  }
}

body.interview #main::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(/trackfield/img/interview/bg_pages.png) repeat-y center 500px;
  background-size: 100% auto;
  z-index: -1;
}

@media (max-width: 48em) {
  body.interview #main::before {
    background-size: 100% auto;
  }
}

.interviewPage .heading-page-wrap {
  background: url(/trackfield/img/interview/heading_ot_bg_sp.jpg) no-repeat center top;
  background-size: cover;
}

@media (min-width: 48.0625em) {
  .interviewPage .heading-page-wrap {
    background: url(/trackfield/img/interview/heading_ot_bg.jpg) no-repeat center top;
    background-size: cover;
  }
}

.interviewPage #interview .profile {
  padding-top: 30px;
  margin-bottom: 60px;
}

@media (max-width: 48em) {
  .interviewPage #interview .profile {
    padding-top: 25px;
    margin-bottom: 25px;
  }
}

.interviewPage #interview .profile .pic {
  margin-bottom: 30px;
}

@media (max-width: 48em) {
  .interviewPage #interview .profile .pic {
    margin-bottom: 20px;
  }
}

.interviewPage #interview .profile h3 {
  font-size: 24px;
  font-size: 2.4rem;
  margin-bottom: 10px;
}

@media (max-width: 48em) {
  .interviewPage #interview .profile h3 {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 5px;
  }
}

.interviewPage #interview .profile h3 span {
  font-size: 18px;
  font-size: 1.8rem;
}

@media (max-width: 48em) {
  .interviewPage #interview .profile h3 span {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.interviewPage #interview .profile p {
  -webkit-margin-before: 0;
  margin-block-start: 0;
  -webkit-margin-after: 0;
  margin-block-end: 0;
}

.interviewPage #interview .profile p span {
  font-size: 80%;
}

.interviewPage #interview .atcl-wrap {
  margin-bottom: 60px;
}

.interviewPage #interview .atcl-wrap:last-child {
  margin-bottom: 0;
}

@media (max-width: 48em) {
  .interviewPage #interview .atcl-wrap {
    margin-bottom: 25px;
  }
}

.interviewPage #interview .atcl-wrap h4 {
  margin-bottom: 20px;
}

.interviewPage #interview .atcl-wrap .atcl {
  display: block;
}

.interviewPage #interview .atcl-wrap .atcl:after {
  content: '';
  display: block;
  clear: both;
}

.interviewPage #interview .atcl-wrap .atcl .pics {
  width: 345px;
  margin-left: 25px;
  margin-bottom: 15px;
  display: inline-block;
  float: right;
}

@media (max-width: 48em) {
  .interviewPage #interview .atcl-wrap .atcl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .interviewPage #interview .atcl-wrap .atcl .text {
    display: block;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .interviewPage #interview .atcl-wrap .atcl .pics {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
    margin-bottom: 0;
    display: block;
    float: none;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

.interviewPage #interview .link-corporate {
  margin-top: 120px;
}

.interviewPage #interview .link-corporate a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  line-height: 70px;
  width: 460px;
  margin-left: auto;
  margin-right: auto;
  background-color: #2e008b;
  background-image: url(/trackfield/common/img/common/ico_blank.png);
  background-repeat: no-repeat;
  background-size: 17px auto;
  background-position: 90% center;
  display: block;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.interviewPage #interview .link-corporate a:hover {
  background: #19004B;
  background-image: url(/trackfield/common/img/common/ico_blank.png);
  background-repeat: no-repeat;
  background-size: 17px auto;
  background-position: 90% center;
}

@media (max-width: 48em) {
  .interviewPage #interview .link-corporate {
    margin-top: 50px;
  }
  .interviewPage #interview .link-corporate a {
    width: 100%;
    background-position: 95% center;
    -webkit-transition: none;
    transition: none;
  }
  .interviewPage #interview .link-corporate a:hover {
    background-position: 95% center;
  }
}

/* 住友電工様 追加 CSS */
/* 共通化css */
.newsPage .news-wrap .txt .txt_title {
  margin-top: 20px !important;
  color: #2e008b;
  font-weight: bold;
}

.newsPage .news-wrap .txt > ul.img_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.newsPage .news-wrap .txt > ul.img_flex {
  font-size: 85%;
}

.newsPage .news-wrap .txt > ul.img_flex li {
  margin-bottom: 20px;
}

.newsPage .news-wrap .txt > p a.link_text {
  color: #2e008b;
}

.newsPage .news-wrap .txt > p a.link_text:hover {
  text-decoration: underline;
}

.newsPage .news-wrap .txt .mt5 {
  margin-top: 5px;
}

.newsPage .news-wrap .txt .mt10 {
  margin-top: 10px;
}

.newsPage .news-wrap .txt .mb20 {
  margin-bottom: 20px;
}

/* newsページ　選手からのコメント部分 */
.newsPage .news-wrap .comment_block {
  background: #fff;
  padding: 20px 25px;
  margin: 20px 0;
  border: 1px solid #2e008b;
}

.newsPage .news-wrap .comment_block.small {
  margin: 0;
}

.newsPage .news-wrap .comment_inner {
  position: relative;
  padding: 30px;
}

.newsPage .news-wrap .comment_inner::before {
  position: absolute;
  content: '';
  background: url(/trackfield/common/img/common/qm_b_03.png) no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  width: 35px;
  height: 30px;
}

.newsPage .news-wrap .comment_inner::after {
  position: absolute;
  content: '';
  background: url(/trackfield/common/img/common/qm_a_03.png) no-repeat;
  background-size: cover;
  bottom: 0;
  right: 0;
  width: 35px;
  height: 30px;
}

@media (max-width: 48em) {
  .newsPage .news-wrap .comment_block {
    background: #fff;
    padding: 15px;
    margin: 20px 0;
    border: 1px solid #2e008b;
  }
  .newsPage .news-wrap .comment_inner {
    position: relative;
    padding: 20px;
  }
  .newsPage .news-wrap .comment_inner::before {
    width: 22px;
    height: 19px;
  }
  .newsPage .news-wrap .comment_inner::after {
    width: 22px;
    height: 19px;
  }
}

/* 個別css */
.news51 a.url, .news54 a.url, .news55 a.url {
  color: #2e008b;
}

a.url:hover {
  text-decoration: underline;
}

.news51 ul.athlete {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 30px;
}

.news51 ul.athlete li {
  margin-right: 10px;
  margin-bottom: 15px;
  font-size: 90%;
}

.news51 ul.athlete li img {
  width: 100px;
}


/* 動画・特集ページ */
@media (max-width: 48em){
  .galleryPage section{
    margin-top: 30px;
  }
}

.galleryPage .heading-page-wrap {
  background: url(/trackfield/img/gallery/heading_bg_sp.jpg) no-repeat center top;
  background-size: cover;
}

@media (min-width: 48.0625em) {
  .galleryPage .heading-page-wrap {
    background: url(/trackfield/img/gallery/heading_bg.jpg) no-repeat center top;
    background-size: cover;
  }
}
.galleryPage .anchor-block {
  margin-top: 60px;
}

@media (max-width: 48em) {
  .galleryPage .anchor-block {
    display: none;
  }
}

.galleryPage .anchor-block .anchor-list {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.galleryPage .anchor-block .anchor-list li {
  /*width: 246px;*/
  width: 200px;
}

.galleryPage .anchor-block .anchor-list li a {
  color: #fff;
  background: #2e008b;
  padding: 15px 20px;
  display: block;
  text-align: center;
  line-height: 1.2;
  font-size: 16px;
  font-size: 1.6rem;
  position: relative;
  -webkit-transition: .3s;
  transition: .3s;
}

.galleryPage .anchor-block .anchor-list li a::after {
  content: "▼";
  line-height: 1;
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -5px;
  font-size: 8px;
  font-size: 0.8rem;
}

.galleryPage .anchor-block .anchor-list li a:hover {
  background: #19004B;
}
.galleryPage .gallery-card-wrapper{
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (max-width: 48em){
  .galleryPage .gallery-card-wrapper{
    gap: 15px;
  }
}
.galleryPage .gallery-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 340px;
}
@media (max-width: 48em){
  .galleryPage .gallery-card{
    width: 100%;
  }
}
.galleryPage .gallery-card a{
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.galleryPage .gallery-card .img{
  width: 100%;
  position: relative;
}
.galleryPage .gallery-card .img::before{
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
}
.galleryPage .gallery-card .img::after{
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url("/trackfield/common/img/common/play-btn.svg") no-repeat;
  width: 24px;
  height: 24px;
  background-size: cover;
  margin: auto;
}

.galleryPage .gallery-card span{
  text-align: center;
  color: #333;
  font-weight: bold;
}


.galleryPage .news-list{
  margin-top: 30px;
}

@media (min-width: 48.0625em) {
  .galleryPage .news-list {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    
  }
}

.galleryPage .news-list .news-item {
  width: 100%;
}

@media (max-width: 48em) {
  .galleryPage .news-list .news-item {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px dotted #8f8f99;
  }
  .galleryPage .news-list .news-item:first-of-type {
    padding-top: 0;
    border: none;
  }
}

@media (min-width: 48.0625em) {
  .galleryPage .news-list .news-item {
    width: 340px !important;
    display: flex;
  }
}

.galleryPage .news-list .news-item .item-inner {
  background: #fff;
  display: block;
  color: #333;
}

@media (max-width: 48em) {
  .galleryPage .news-list .news-item .item-inner {
    margin: 0 auto;
    -webkit-box-shadow: none;
    box-shadow: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media (min-width: 48.0625em) {
  .galleryPage .news-list .news-item .item-inner {
    display: block;
    -webkit-transition: .3s;
    transition: .3s;
    width: 100%;
  }
}

@media (max-width: 48em) {
  .galleryPage .news-list .news-item .item-inner .img-block {
    width: 42.66667%;
  }
}

@media (min-width: 48.0625em) {
  .galleryPage .news-list .news-item .item-inner .img-block {
    overflow: hidden;
  }
}

.galleryPage .news-list .news-item .item-inner .img-block img {
  vertical-align: top;
  -webkit-transition: .5s;
  transition: .5s;
}

@media (max-width: 48em) {
  .galleryPage .news-list .news-item .item-inner .img-block img {
    width: 100%;
  }
}

@media (min-width: 48.0625em) {
  .galleryPage .news-list .news-item .item-inner:hover .img-block img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}

@media (max-width: 48em) {
  .galleryPage .news-list .news-item .item-inner .txt-block {
    width: 57.33333%;
  }
}

.galleryPage .news-list .news-item .news-label {
  font-size: 12px;
  font-size: 1.2rem;
}

@media (max-width: 48em) {
  .galleryPage .news-list .news-item .news-label {
    font-size: 11px;
    font-size: 1.1rem;
    margin-left: 15px;
  }
}

/* .galleryPage .news-list .news-item .news-date {
  font-size: 16px;
  font-size: 1.6rem;
  margin-top: 15px;
  padding: 0 15px;
}

@media (max-width: 48em) {
  .galleryPage .news-list .news-item .news-date {
    font-size: 13px;
    font-size: 1.3rem;
    margin-top: 0;
  }
} */

.galleryPage .news-list .news-item .news-heading {
  font-size: 16px;
  font-size: 1.6rem;
  margin-top: 15px;
  padding: 0 15px 15px;
}

@media (max-width: 48em) {
  .galleryPage .news-list .news-item .news-heading {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.2;
    padding-bottom: 0;
  }
}

body.gallery .modal[id^="galleryModal"] .modal-reveal{
  max-width: 850px;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
body.gallery .movie-cont iframe{
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}


/* schedule css */
/* 共通化css */
.schedulePage small.schedule_caption {
  display: block;
  margin-left: 1em;
  text-indent: -1em;
  line-height: 1.4;
}

div.banner {
  position: fixed;
  right: 0;
  bottom: 0;
  background: #cddc39;
  /* width: 335px; */
  width: 250px;
  padding: 5px 15px;
  color: #000;
  font-weight: bold;
  z-index: 990;
  font-size: 13px;
  text-align: center;
}

@media (max-width: 48em) {
  div.banner {
    position: fixed;
    margin: auto 20px;
    right: 0;
    left: 0;
    bottom: 0;
    background: #cddc39;
    width: auto;
    padding: 5px 15px;
    color: #000;
    font-weight: bold;
    z-index: 990;
    text-align: center;
    font-size: 13px;
  }
}

div.banner p {
  color: #000;
  font-weight: bold;
}

div.banner p span {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 10px solid black;
}

div.banner_inner {
  position: fixed;
  right: 0;
  bottom: 0;
  display: none;
  /* width: 335px; */
  width: 250px;
  /* padding: 30px; */
  padding: 10px;
  background: #cddc39;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1.6;
  font-size: 15px;
  z-index: 998;
}
div.banner_inner .pc_only {
  display: block;
}
div.banner_inner .sp_only {
  display: none;
}

@media (max-width: 48em) {
  div.banner_inner {
    position: fixed;
    margin: auto 20px;
    right: 0;
    left: 0;
    bottom: 0;
    display: none;
    width: auto;
    padding: 10px;
    background: #cddc39;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 1.6;
    font-size: 13px;
    z-index: 998;
  }
  div.banner_inner .pc_only {
    display: none;
  }
  div.banner_inner .sp_only {
    display: block;
  }
}

div.banner_accept_btn {
  position: absolute;
  /* top: -43px; */
  top: -23px;
  right: 0;
  background: #cddc39;
  /* line-height: 43px; */
  line-height: 30px;
  padding-left: 15px;
  width: 81.99px;
  cursor: pointer;
  font-size: 13px;
  font-size: 1.3rem;
}

div.banner_accept_btn:hover {
  opacity: 0.8;
}

@media (max-width: 48em) {
  div.banner_accept_btn {
    /* top: -42px; */
    top: -23px;
  }
}

.banner_accept_btn span {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 10px solid black;
}

.banner_inner a:hover {
  display: block;
  background-color: #fff;
}

.banner_inner a img:hover {
  opacity: .8;
}

.banner_notice_link {
  position: relative;
  width: 100%;
  color: #fff;
  margin: 14px 0 0 0;
  text-align: center;
  cursor: pointer;
  background: #000;
}

.banner_notice_link .btn-base:hover::before {
  right: 5px;
}

.banner_notice_link a::before {
  right: 10px;
}

.banner_notice_link:hover {
  opacity: 0.8;
}

.banner_notice_link a {
  display: inline-block;
  padding: 18px 0;
  width: 100%;
  height: 100%;
  color: #fff;
  background: #000;
}

.banner_notice_linkmessage {
  width: 100%;
  color: #000;
  text-align: center;
  cursor: pointer;
}

.banner_notice_linkmessage a {
  display: inline-block;
  width: 100%;
  height: 100%;
  color: #000;
}

.banner_notice_linkmessage a:hover {
  text-decoration: underline;
}

/* interviewPage 追加css */
.interviewPage #interview .link-profile a {
  color: #2e008b;
}

.interviewPage #interview .link-profile a:hover {
  text-decoration: underline;
}

/* 10種競技結果 追加css */
@media (min-width: 48.0625em) {
  #decathlon {
    width: 490px;
  }
}




