@import url('https://fonts.googleapis.com/css?family=Oswald:600');


/**
 * Lightcase - jQuery Plugin
 * The smart and flexible Lightbox Plugin.
 *
 * @author		Cornel Boppart <cornel@bopp-art.com>
 * @copyright	Author
 *
 * @version		2.5.0 (11/03/2018)
 */
/**
 * Lightcase settings
 *
 * Note: Override default settings for your project without touching this source code by simply
 * defining those variables within a SASS map called '$lightcase-custom'.
 *
 * // Example usage
 * $lightcase-custom: (
 *   'breakpoint': 768px
 * );
 */
@font-face {
  font-family: 'lightcase';
  src: url("/fonts/lightcase.eot?55356177");
  src: url("/fonts/lightcase.eot?55356177#iefix") format("embedded-opentype"), url("/fonts/lightcase.woff?55356177") format("woff"), url("/fonts/lightcase.ttf?55356177") format("truetype"), url("/fonts/lightcase.svg?55356177#lightcase") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* line 12, ../scss/components/fonts/_font-lightcase.scss */
[class*='lightcase-icon-']:before {
  font-family: 'lightcase', sans-serif;
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

/* Codes */
/* line 35, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-play:before {
  content: '\e800';
}

/* line 36, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-pause:before {
  content: '\e801';
}

/* line 37, ../scss/components/fonts/_font-lightcase.scss */
a[class*='lightcase-icon-'].lightcase-icon-close {
  /* position: fixed;
  top: 15px;
  right: 15px;
  bottom: auto;
  margin: 0;
  opacity: 0;
  outline: none; */
  /* position: absolute;
  z-index: 2;
  top: -35px;
  right: -35px;
  display: inline-block;
  width: 35px;
  height: 35px;
  overflow: hidden;
  border: none;
  background: transparent; */
  position: absolute;
  top: -40px;
  right: -40px;
  bottom: auto;
  margin: 0;
  opacity: 0;
  outline: none;
  height: 35px;
  width: 35px;
}
.lightcase-icon-close:before {
  /* content: '\e802'; */
  content: '';
  height: 2px;
  background: #fff;
  transform: rotate(45deg);
  display: inline-block;
  text-decoration: inherit;
  width: 100%;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  position: absolute;
  top: 50%;
  left: 0;
}
.lightcase-icon-close:after {
  content: '';
  height: 2px;
  background: #fff;
  transform: rotate(-45deg);
  display: inline-block;
  text-decoration: inherit;
  width: 100%;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  position: absolute;
  top: 50%;
  left: 0;
}

/* line 38, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-prev:before {
  content: '\e803';
}

/* line 39, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-next:before {
  content: '\e804';
}

/* line 40, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-spin:before {
  content: '\e805';
}

/**
 * Mixin providing icon defaults to be used on top of font-lightcase.
 *
 * Example usage:
 * @include icon(#e9e9e9)
 */
/**
 * Mixin providing icon defaults including a hover status to be used
 * on top of font-lightcase.
 *
 * Example usage:
 * @include icon-hover(#e9e9e9, #fff)
 */
/**
 * Provides natural content overflow behavior and scrolling support
 * even so for touch devices.
 *
 * Example usage:
 * @include overflow()
 */
/**
 * Neutralizes/resets dimensions including width, height, position as well as margins,
 * paddings and styles. Used to enforce a neutral and unstyled look and behavoir!
 *
 * Example usage:
 * @include clear(true)
 *
 * @param boolean $important
 */
@-webkit-keyframes lightcase-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-moz-keyframes lightcase-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-o-keyframes lightcase-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-ms-keyframes lightcase-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes lightcase-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
/* line 1, ../scss/components/modules/_case.scss */
#lightcase-case {
  display: none;
  position: fixed;
  z-index: 2002;
  top: 50%;
  left: 50%;
  font-family: arial, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 640px) {
  /* line 16, ../scss/components/modules/_case.scss */
  html[data-lc-type=inline] #lightcase-case, html[data-lc-type=ajax] #lightcase-case {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    margin: 0 !important;
    padding: 55px 0 70px 0;
    width: 100% !important;
    height: 100% !important;
    overflow: auto !important;
  }
}

@media screen and (min-width: 641px) {
  /* line 4, ../scss/components/modules/_content.scss */
  html:not([data-lc-type=error]) #lightcase-content {
    position: relative;
    z-index: 1;
    text-shadow: none;
    background-color: #fff;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    -o-box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    -webkit-backface-visibility: hidden;
  }
}
@media screen and (min-width: 641px) {
  /* line 23, ../scss/components/modules/_content.scss */
  html[data-lc-type=image] #lightcase-content, html[data-lc-type=video] #lightcase-content {
    background-color: #333;
  }
}
/* line 31, ../scss/components/modules/_content.scss */
html[data-lc-type=inline] #lightcase-content, html[data-lc-type=ajax] #lightcase-content, html[data-lc-type=error] #lightcase-content {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
@media screen and (max-width: 640px) {
  /* line 31, ../scss/components/modules/_content.scss */
  html[data-lc-type=inline] #lightcase-content, html[data-lc-type=ajax] #lightcase-content, html[data-lc-type=error] #lightcase-content {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
  }
}
/* line 43, ../scss/components/modules/_content.scss */
html[data-lc-type=inline] #lightcase-content .lightcase-contentInner, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner, html[data-lc-type=error] #lightcase-content .lightcase-contentInner {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  /* line 43, ../scss/components/modules/_content.scss */
  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner, html[data-lc-type=error] #lightcase-content .lightcase-contentInner {
    padding: 15px;
  }
  /* line 52, ../scss/components/modules/_content.scss */
  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner, html[data-lc-type=inline] #lightcase-content .lightcase-contentInner > *, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner > *, html[data-lc-type=error] #lightcase-content .lightcase-contentInner, html[data-lc-type=error] #lightcase-content .lightcase-contentInner > * {
    width: 100% !important;
    max-width: none !important;
  }
  /* line 59, ../scss/components/modules/_content.scss */
  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner > *:not(iframe), html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner > *:not(iframe), html[data-lc-type=error] #lightcase-content .lightcase-contentInner > *:not(iframe) {
    height: auto !important;
    max-height: none !important;
  }
}
@media screen and (max-width: 640px) {
  /* line 70, ../scss/components/modules/_content.scss */
  html.lightcase-isMobileDevice[data-lc-type=iframe] #lightcase-content .lightcase-contentInner iframe {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media screen and (max-width: 640px) and (min-width: 641px) {
  /* line 74, ../scss/components/modules/_content.scss */
  html[data-lc-type=image] #lightcase-content .lightcase-contentInner, html[data-lc-type=video] #lightcase-content .lightcase-contentInner {
    line-height: 0.75;
  }
}

/* line 82, ../scss/components/modules/_content.scss */
html[data-lc-type=image] #lightcase-content .lightcase-contentInner {
  position: relative;
  overflow: hidden !important;
}
@media screen and (max-width: 640px) {
  /* line 91, ../scss/components/modules/_content.scss */
  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap, html[data-lc-type=error] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
  }
}
@media screen and (min-width: 641px) {
  /* line 100, ../scss/components/modules/_content.scss */
  html:not([data-lc-type=error]) #lightcase-content .lightcase-contentInner .lightcase-inlineWrap {
    padding: 30px;
    overflow: auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 640px) {
  /* line 117, ../scss/components/modules/_content.scss */
  #lightcase-content h1, #lightcase-content h2, #lightcase-content h3, #lightcase-content h4, #lightcase-content h5, #lightcase-content h6, #lightcase-content p {
    color: #aaa;
  }
}
@media screen and (min-width: 641px) {
  /* line 117, ../scss/components/modules/_content.scss */
  #lightcase-content h1, #lightcase-content h2, #lightcase-content h3, #lightcase-content h4, #lightcase-content h5, #lightcase-content h6, #lightcase-content p {
    color: #333;
  }
}

/* line 3, ../scss/components/modules/_error.scss */
#lightcase-case p.lightcase-error {
  margin: 0;
  font-size: 17px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #aaa;
}
@media screen and (max-width: 640px) {
  /* line 3, ../scss/components/modules/_error.scss */
  #lightcase-case p.lightcase-error {
    padding: 30px 0;
  }
}
@media screen and (min-width: 641px) {
  /* line 3, ../scss/components/modules/_error.scss */
  #lightcase-case p.lightcase-error {
    padding: 0;
  }
}

/* line 4, ../scss/components/modules/_global.scss */
.lightcase-open body {
  overflow: hidden;
}
/* line 8, ../scss/components/modules/_global.scss */
.lightcase-isMobileDevice .lightcase-open body {
  max-width: 100%;
  max-height: 100%;
}

/* line 1, ../scss/components/modules/_info.scss */
#lightcase-info {
  position: absolute;
  padding-top: 15px;
}
/* line 9, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-title,
#lightcase-info #lightcase-caption {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-weight: normal;
  text-overflow: ellipsis;
}
/* line 19, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-title {
  font-size: 17px;
  color: #aaa;
}
@media screen and (max-width: 640px) {
  /* line 19, ../scss/components/modules/_info.scss */
  #lightcase-info #lightcase-title {
    position: fixed;
    top: 10px;
    left: 0;
    max-width: 87.5%;
    padding: 5px 15px;
    background: #333;
  }
}
/* line 33, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-caption {
  clear: both;
  font-size: 13px;
  color: #aaa;
}
/* line 39, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-sequenceInfo {
  font-size: 11px;
  color: #aaa;
}
@media screen and (max-width: 640px) {
  /* line 45, ../scss/components/modules/_info.scss */
  .lightcase-fullScreenMode #lightcase-info {
    padding-left: 15px;
    padding-right: 15px;
  }
  /* line 51, ../scss/components/modules/_info.scss */
  html:not([data-lc-type=image]):not([data-lc-type=video]):not([data-lc-type=flash]):not([data-lc-type=error]) #lightcase-info {
    position: static;
  }
}

/* line 1, ../scss/components/modules/_loading.scss */
/* #lightcase-loading {
  position: fixed;
  z-index: 9999;
  width: 1.123em;
  height: auto;
  font-size: 38px;
  line-height: 1;
  text-align: center;
  text-shadow: none;
  position: fixed;
  z-index: 2001;
  top: 50%;
  left: 50%;
  margin-top: -0.5em;
  margin-left: -0.5em;
  opacity: 1;
  font-size: 32px;
  text-shadow: 0 0 15px #fff;
  -moz-transform-origin: 50% 53%;
  -webkit-animation: lightcase-spin 0.5s infinite linear;
  -moz-animation: lightcase-spin 0.5s infinite linear;
  -o-animation: lightcase-spin 0.5s infinite linear;
  animation: lightcase-spin 0.5s infinite linear;
} */
/* line 20, ../scss/components/mixins/_presets.scss */
/* #lightcase-loading, #lightcase-loading:focus {
  text-decoration: none;
  color: #fff;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: color, opacity, ease-in-out 0.25s;
  -moz-transition: color, opacity, ease-in-out 0.25s;
  -o-transition: color, opacity, ease-in-out 0.25s;
  transition: color, opacity, ease-in-out 0.25s;
} */
/* line 32, ../scss/components/mixins/_presets.scss */
/* #lightcase-loading > span {
  display: inline-block;
  text-indent: -9999px;
} */

/* line 2, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-'] {
  position: fixed;
  z-index: 9999;
  width: 1.123em;
  height: auto;
  font-size: 38px;
  line-height: 1;
  text-align: center;
  text-shadow: none;
  outline: none;
  cursor: pointer;
}
/* line 20, ../scss/components/mixins/_presets.scss */
a[class*='lightcase-icon-'], a[class*='lightcase-icon-']:focus {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: color, opacity, ease-in-out 0.25s;
  -moz-transition: color, opacity, ease-in-out 0.25s;
  -o-transition: color, opacity, ease-in-out 0.25s;
  transition: color, opacity, ease-in-out 0.25s;
}
/* line 32, ../scss/components/mixins/_presets.scss */
a[class*='lightcase-icon-'] > span {
  display: inline-block;
  text-indent: -9999px;
}
/* line 49, ../scss/components/mixins/_presets.scss */
a[class*='lightcase-icon-']:hover {
  color: white;
  text-shadow: 0 0 15px white;
}
/* line 10, ../scss/components/modules/_navigation.scss */
.lightcase-isMobileDevice a[class*='lightcase-icon-']:hover {
  color: #aaa;
  text-shadow: none;
}
/* line 17, ../scss/components/modules/_navigation.scss */

/* a[class*='lightcase-icon-'].lightcase-icon-close:before,
a[class*='lightcase-icon-'].lightcase-icon-close:after {
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #fff;
  border-radius: 5px;
  margin-top: -6px;
}
a[class*='lightcase-icon-'].lightcase-icon-close:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
a[class*='lightcase-icon-'].lightcase-icon-close:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
} */
/* line 28, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-'].lightcase-icon-prev {
  left: 15px;
}
/* line 33, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-'].lightcase-icon-next {
  right: 15px;
}
/* line 38, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-'].lightcase-icon-pause, a[class*='lightcase-icon-'].lightcase-icon-play {
  left: 50%;
  margin-left: -0.5em;
}
@media screen and (min-width: 641px) {
  /* line 38, ../scss/components/modules/_navigation.scss */
  a[class*='lightcase-icon-'].lightcase-icon-pause, a[class*='lightcase-icon-'].lightcase-icon-play {
    opacity: 0;
  }
}
@media screen and (max-width: 640px) {
  /* line 2, ../scss/components/modules/_navigation.scss */
  a[class*='lightcase-icon-'] {
    bottom: 15px;
    font-size: 24px;
  }
}
@media screen and (min-width: 641px) {
  /* line 2, ../scss/components/modules/_navigation.scss */
  a[class*='lightcase-icon-'] {
    bottom: 50%;
    margin-bottom: -0.5em;
  }
  /* line 57, ../scss/components/modules/_navigation.scss */
  a[class*='lightcase-icon-']:hover, #lightcase-case:hover ~ a[class*='lightcase-icon-'] {
    opacity: 1;
  }
}

/* line 1, ../scss/components/modules/_overlay.scss */
#lightcase-overlay {
  display: none;
  width: 100%;
  min-height: 100%;
  position: fixed;
  z-index: 2000;
  top: -9999px;
  bottom: -9999px;
  left: 0;
  background: #333;
}
@media screen and (max-width: 640px) {
  /* line 1, ../scss/components/modules/_overlay.scss */
  #lightcase-overlay {
    opacity: 1 !important;
  }
}




body {
  width: 100%;
  margin: auto;
  font-family: "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
  color: #333;
  background: #F3F2F2;
}
a {
  color: #333;
  text-decoration: none;
}
a:hover {
  color: #333;
  text-decoration: none;
}
.t-oswald {
  font-family: 'Oswald', sans-serif;
}
.h2-gradation {
  display: flex;
  align-items: center;
  position: relative;
  padding: 10px 10px 10px 14px;
  min-height: 35px;
  background: linear-gradient(to right, #313740, #666c76);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: #FFF;
}
.h2-gradation::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 3px;
  height: calc(100% - 20px);
  content: '';
  background: #D20100;
}

/* line-height */
.cycle-wrap .section-wrap,
.cycle-wrap .section__cont--desc {
  line-height: 1.5;
}

/* 各ページリンク */
.cycle-wrap .k-wrap a,
.cycle-wrap .section-wrap.single a,
.cycle-wrap .role-wrap a,
.cycle-wrap .section-wrap .team-link a,
.cycle-wrap .section-wrap .uci-team-link a,
.cycle-wrap .onair-wrap a {
  transition-duration: .3s;
}
.cycle-wrap .k-wrap a:hover,
.cycle-wrap .section-wrap.single a:hover,
.cycle-wrap .role-wrap a:hover,
.cycle-wrap .section-wrap .team-link a:hover,
.cycle-wrap .section-wrap .uci-team-link a:hover,
.cycle-wrap .onair-wrap a:hover {
  opacity: .7;
}

.cycle-wrap #riders_top {
  margin-top: -100px;
  padding-top: 100px;
}
.cycle-wrap #cycle_team01,
.cycle-wrap #cycle_team02,
.cycle-wrap #cycle_team03,
.cycle-wrap #cycle_team04,
.cycle-wrap #cycle_team05,
.cycle-wrap #cycle_team06,
.cycle-wrap #cycle_team07,
.cycle-wrap #cycle_team08,
.cycle-wrap #cycle_team09,
.cycle-wrap #cycle_team10,
.cycle-wrap #cycle_team11,
.cycle-wrap #cycle_team12,
.cycle-wrap #cycle_team13,
.cycle-wrap #cycle_team14,
.cycle-wrap #cycle_team15,
.cycle-wrap #cycle_team16,
.cycle-wrap #cycle_team17,
.cycle-wrap #cycle_team18,
.cycle-wrap #cycle_uci_team01,
.cycle-wrap #cycle_uci_team02,
.cycle-wrap #cycle_uci_team03,
.cycle-wrap #cycle_uci_team04,
.cycle-wrap #cycle_uci_team05 {
  margin-top: -90px;
  padding-top: 90px;
}

/* サイクルロードレースビギナーズ講座 */
.cycle-wrap .section-wrap.biginners p {
  padding: 40px 0;
}
.cycle-wrap .section-wrap.biginners .list-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cycle-wrap .section-wrap.biginners .list-wrap li {
  width: 48.5%;
  margin: 0;
}
.cycle-wrap .section-wrap.biginners .list-wrap li:not(:nth-child(2n)) {
  margin: 0 3% 30px 0;
}
.cycle-wrap .section-wrap.biginners .list-wrap a {
  padding: 0;
}
.cycle-wrap .section-wrap.biginners .list-left-img {
  width: 260px;
  line-height: 0;
}
.cycle-wrap .section-wrap.biginners .list-right-text-top {
  justify-content: flex-end;
}
.cycle-wrap .section-wrap.biginners .list-right-text-right-top span:last-child {
  margin-top: 0;
  font-size: 30px;
}
.cycle-wrap .section-wrap.biginners .list-right-text-name {
  font-size: 16px;
}
.cycle-wrap .section-wrap.biginners .list-right-list {
  padding-top: 9px;
  font-size: 13px;
  line-height: 1.5;
}
.cycle-wrap .section-wrap.biginners .list-right-text {
  width: 55%;
  margin: 0;
  padding: 10px 10px 10px 20px;
}
.cycle-wrap .section-wrap.biginners .calendar-note {
  padding: 0 0 20px;
}

/* 選手の役割 */
.cycle-wrap .role-wrap a {
  display: block;
}
.cycle-wrap .role-wrap .h-section p {
  padding-top: 40px;
}
.cycle-wrap .role-wrap .p-link {
  display: flex;
  margin-top: 40px;
  font-size: 14px;
}
.cycle-wrap .role-wrap .p-link li {
  float: left;
  margin-right: 50px;
}
.cycle-wrap .role-wrap .p-link a {
  display: block;
  background: url(/img/web/page2/cycle/pickup/index/arrow-under.svg)no-repeat left center/10px;
  padding-left: 15px;
}
.cycle-wrap .role-wrap .h-section.sec-cont {
  padding-top: 70px;
}
.cycle-wrap .role-wrap .h2-gradation span {
  display: block;
  margin-left: 10px;
  font-size: 14px;
}
.cycle-wrap .role-wrap .r-flex-cont {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
}
.cycle-wrap .role-wrap .r-flex-cont .left-text {
  width: 66%;
}
.cycle-wrap .role-wrap .r-flex-cont .left-text p {
  padding: 0;
}
.cycle-wrap .role-wrap .r-flex-cont .right-img {
  width: 30%;
  max-width: 340px;
}
.cycle-wrap .role-wrap .r-flex-cont .right-img span {
  display: block;
  margin-top: 10px;
}
.cycle-wrap .role-wrap .photographer {
  display: block;
  font-size: 13px;
}
.cycle-wrap .role-wrap .h-section:first-child {
  padding-top: 0;
}
.cycle-wrap .role-wrap .h-section:last-child {
  padding-bottom: 50px;
}

/* レースランクについて */
.cycle-wrap .role-wrap.racerank-wrap .p-link li {
  margin-right: 35px;
}
.cycle-wrap .role-wrap.racerank-wrap .h-section:nth-child(even) {
  background: #E3E3E3;
}
.cycle-wrap .role-wrap.racerank-wrap .h-section.top-sec {
  padding-top: 0;
}
.cycle-wrap .role-wrap.racerank-wrap .h-section {
  padding: 80px 0;
}
.cycle-wrap .role-wrap.racerank-wrap .top-cont {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #9C9C9C;
}
.cycle-wrap .role-wrap.racerank-wrap .under-cont h3 {
  display: inline-block;
  padding: 5px 25px;
  margin-bottom: 20px;
  color: #fff;
  background: #2d489d;
}
.cycle-wrap .role-wrap.racerank-wrap .under-cont dl {
  margin-bottom: 1.5em;
}
.cycle-wrap .role-wrap .rank-img {
  display: block;
  width: 900px;
  margin: 20px auto 0;
  text-align: center;
}
.cycle-wrap .role-wrap .rank-img img {
  width: 100%;
}
.cycle-wrap .role-wrap.racerank-wrap .zoom-button-wrap {
  display: flex;
  justify-content: flex-end;
}
.cycle-wrap .role-wrap.racerank-wrap .zoom-button {
  background: url(/img/web/page2/cycle/introduction/racerank/zoom_icon.svg) no-repeat 90% center/22px;
  display: inline-block;
  margin-top: 20px;
  padding: 10px 65px 10px 50px;
  border: solid 2px #363636;
  font-weight: bold;
  font-size: 14px;
}

/* TV&現地での観戦方法 */
.cycle-wrap .role-wrap .watching-img-wrap {
  width: 700px;
  margin: auto;
}
.cycle-wrap .role-wrap .pc-img {
  display: block;
}
.cycle-wrap .role-wrap .sp-img {
  display: none;
}
.cycle-wrap .role-wrap .watching-img-wrap .watching-img {
  margin-top: 40px;
}
.cycle-wrap .role-wrap .watching-img-wrap .watching-img img {
  width: 100%;
}
.cycle-wrap .role-wrap .wathing-method .r-flex-cont {
  padding: 40px 0;
}
.cycle-wrap .role-wrap .wathing-method .r-flex-cont:last-child {
  padding-bottom: 0;
}
.cycle-wrap .role-wrap .wathing-method .r-flex-cont:not(:last-child) {
  border-bottom: 1px solid #9C9C9C;
}
.cycle-wrap .role-wrap .wathing-method h3 {
  display: inline-block;
  padding: 8px 25px;
  margin-bottom: 20px;
  color: #fff;
  background: #2d489d;
}
.cycle-wrap .role-wrap .bring-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 40px;
}
.cycle-wrap .role-wrap .bring-list li {
  width: 48.5%;
}
.cycle-wrap .role-wrap .bring-list li:not(:nth-child(2n)) {
  margin: 0 3% 30px 0;
}
.cycle-wrap .role-wrap .bring-list .r-flex-cont {
  padding: 20px 0 30px;
}
.cycle-wrap .role-wrap .bring-list .r-flex-cont .left-text {
  width: 72%;
}
.cycle-wrap .role-wrap .bring-list .r-flex-cont .right-img {
  width: 25%;
  max-width: 110px;
}
.cycle-wrap .role-wrap .bring-list span {
  display: block;
  padding: 8px 25px;
  color: #fff;
  background: #2d489d;
}

/* 年間放送カレンダー */
.cycle-wrap .cycle-calendar img {
  width: 100%;
}
.cycle-wrap .calendar-note {
  display: block;
  font-size: 13px;
  margin-bottom: 30px;
}
.cycle-wrap .cycle-calendar:not(:first-of-type) {
  margin-top: 80px;
}
.cycle-wrap .cycle-calendar .month {
  display: inline-block;
  padding: 5px 15px;
  margin-bottom: 20px;
  color: #FFF;
  background: #666;
}
.cycle-wrap .calendar-inner {
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}
.cycle-wrap .cycle-bg-gray {
  padding: 40px 0 70px;
  background: #E3E3E3;
}
.cycle-wrap .cycle-bg-gray.light-color {
  background: none;
}
.cycle-wrap .calendar-inner .left-img {
  display: flex;
  align-items: center;
  width: 30%;
  max-width: 354px;
}
.cycle-wrap .calendar-inner .right-cont {
  width: 66%;
}
.cycle-wrap .calendar-inner .right-cont .right-top-flag {
  display: flex;
  justify-content: flex-end;
}
.cycle-wrap .calendar-inner .right-cont .right-top-flag div {
  width: 60px;
}
.cycle-wrap .calendar-inner .right-cont .calendar-title {
  display: block;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.2;
}
.cycle-wrap .calendar-inner .right-cont .right-cont-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #9C9C9C;
}
.cycle-wrap .calendar-inner .right-cont .calendar-icon-img {
  width: 20%;
}
.cycle-wrap .calendar-inner .right-cont .right-cont-desc {
  width: 77%;
}
.cycle-wrap .calendar-inner .right-cont .right-cont-desc ul {
  line-height: 1.5;
}
.cycle-wrap .calendar-inner .right-cont p {
  padding-top: 20px;
  line-height: 1.5;
}
.cycle-wrap .calendar-inner .right-cont .live-mark {
  padding: 3px 8px;
  font-size: 12px;
  font-weight: bold;
  color: #FFF;
  background: #AA0001;
}

.cycle-wrap .calendar-inner .right-cont .highlight-mark {
  padding: 3px 8px;
  font-size: 12px;
  font-weight: bold;
  color: #FFF;
  background: #3f51b5;
}

/* 選手詳細 */
.cycle-wrap .section-wrap .desc-list.pickup-list ul {
  width: 48%;
}
.cycle-wrap .section-wrap .desc-list.pickup-list dl {
  display: flex;
  flex-wrap: wrap;
  width: 48%;
}
.cycle-wrap .section-wrap .desc-list.pickup-list dt {
  position: relative;
  width: 20%;
  padding-right: 10px;
}
.cycle-wrap .section-wrap .desc-list.pickup-list dt::after {
  position: absolute;
  content: ':';
  top: 0;
  right: 0;
}
.cycle-wrap .section-wrap .desc-list.pickup-list dd {
  width: 80%;
  padding-left: 10px;
}
.cycle-wrap .section-wrap .team-text {
  padding-top: 40px;
}
.cycle-wrap .section-wrap .team-text p:not(:last-child) {
  padding-bottom: 40px;
}

/* 注目選手 */
.cycle-wrap .w-cont {
  max-width: 1100px;
  margin: auto;
}
.cycle-wrap .section-wrap.riders-list,
.cycle-wrap .list-cycle-wrap {
  margin-bottom: 40px;
}
.cycle-wrap .list-cycle-wrap:not(:last-child) {
  border-bottom: 1px solid #9C9C9C;
}
.cycle-wrap .cycle-team-title h3 {
  font-size: 40px;
  line-height: 1;
}
.cycle-wrap .cycle-team-title span {
  font-size: 14px;
  font-weight: bold;
}
.cycle-wrap .list-cycle-wrap .list-wrap {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0 40px;
}
.cycle-wrap .list-wrap li {
  width: 32%;
  margin: 0 2% 40px 0;
}
.cycle-wrap .list-wrap li:nth-child(3n) {
  margin-right: 0;
}
.cycle-wrap .list-wrap li:nth-last-of-type(-n+3) {
  margin-bottom: 0;
}
.cycle-wrap .list-wrap a {
  position: relative;
  display: flex;
  padding: 15px 11px;
  background: #E3E3E3;
  transition-duration: .3s;
}
.cycle-wrap .list-wrap a::after {
  position: absolute;
  right: 5px;
  bottom: 5px;
  content: '';
  border-top: 6px solid transparent;
  border-right: 6px solid #333;
}
.cycle-wrap .list-wrap a:hover {
  text-decoration: none;
  color: #333;
  background: #d6d6d6;
}
.cycle-wrap .list-left-img {
  width: 102px;
  line-height: 1;
}
.cycle-wrap .list-left-img img {
  width: 100%;
}
.cycle-wrap .list-right-text {
  width: 67%;
  margin-left: 13px;
  line-height: 1;
}
.cycle-wrap .list-right-text-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cycle-wrap .list-right-text-img {
  width: 30px;
  display: block;
}
.cycle-wrap .list-right-text-img img {
  width: 100%;
}
.cycle-wrap .list-right-text-right-top span {
  display: block;
  color: #9C9C9C;
  text-align: center;
}
.cycle-wrap .list-right-text-right-top span:first-child {
  font-size: 30px;
}
.cycle-wrap .list-right-text-right-top span:last-child {
  margin-top: 2px;
  font-size: 11px;
}
.cycle-wrap .list-right-text-name {
  display: block;
  padding-bottom: 9px;
  font-size: 19px;
  font-weight: bold;
  border-bottom: 1px solid #9C9C9C;
}
.cycle-wrap .list-right-text-name-ruby {
  display: block;
  padding-top: 9px;
  font-size: 16px;
}
.cycle-wrap .list-bottom-text {
  margin-top: 15px;
  line-height: 1.5;
}
.cycle-wrap .list__desc {
  margin-top: 40px;
  line-height: 1.5;
}
.cycle-wrap .d-md-none {
  display: none;
}

/* 注目選手詳細 */
.cycle-wrap .section-wrap.single {
  padding: 20px 0 0;
}
.cycle-wrap .section-wrap .team-link {
  margin: 40px 0;
  font-size: 14px;
}
.cycle-wrap .section-wrap .team-link ul {
  display: flex;
}
.cycle-wrap .section-wrap .team-link li {
  padding: 10px 0 0 0;
}
.cycle-wrap .section-wrap .team-link a {
  display: block;
  background: url(/img/web/page2/cycle/pickup/index/arrow-under.svg)no-repeat left center/10px;
  padding-left: 15px;
}
.cycle-wrap .section-wrap .team-link-list li:not(:last-child),
.cycle-wrap .section-wrap .team-link-list-last li {
  margin-right: 1%;
}
.cycle-wrap .section-wrap .team-link-list li:first-child,
.cycle-wrap .section-wrap .team-link-list-last li:first-child {
  width: 26%;
}
.cycle-wrap .section-wrap .team-link-list li:nth-child(2) {
  width: 17%;
}
.cycle-wrap .section-wrap .team-link-list li:nth-child(3) {
  width: 30%;
}
.cycle-wrap .section-wrap .team-link-list li:nth-child(4) {
  width: 24%;
}
.cycle-wrap .section-wrap .team-link span,
.cycle-wrap .section-wrap .uci-team-link span {
  display: block;
  margin-top: 20px;
  font-size: 13px;
}
.cycle-wrap .section-wrap .uci-team-link {
  margin: 40px 0;
  font-size: 14px;
}
.cycle-wrap .section-wrap .uci-team-link ul {
  display: flex;
  flex-wrap: wrap;
}
.cycle-wrap .section-wrap .uci-team-link li {
  padding-top: 10px;
  float: left;
  margin-right: 40px;
}
.cycle-wrap .section-wrap .uci-team-link a {
  display: block;
  background: url(/img/web/page2/cycle/pickup/index/arrow-under.svg)no-repeat left center/10px;
  padding-left: 15px;
}
.cycle-wrap .main-title {
  display: block;
  font-size: 50px;
}
.cycle-wrap .bg-gray {
  position: relative;
  padding: 30px 30px 80px;
  background: #E3E3E3;
}
.cycle-wrap .right-img {
  display: block;
  float: right;
  clear: both;
  width: 105px;
  top: 30px;
  right: 30px;
}
.cycle-wrap .right-img img {
  width: 100%;
}
.cycle-wrap .cont-w {
  max-width: 850px;
  margin: 30px auto 0;
}
.cycle-wrap .single-name,
.cycle-wrap .pair-name {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
}
.cycle-wrap .single-name span,
.cycle-wrap .pair-name span {
  display: block;
  padding-top: 10px;
  margin-top: 10px;
  border-top: solid 1px #9C9C9C;
  font-size: 18px;
  font-weight: normal;
}
.cycle-wrap .vertical-img {
  width: 400px;
  margin: 37px auto 50px;
}
.cycle-wrap .horizontal-img {
  width: 600px;
  margin: 37px auto 88px;
}
.cycle-wrap .vertical-img img,
.cycle-wrap .horizontal-img img {
  width: 100%;
}
.cycle-wrap .desc-title {
  color: #9C9C9C;
  display: block;
  padding-bottom: 40px;
  font-size: 38px;
  line-height: 1;
  border-bottom: solid 1px #9C9C9C;
}
.cycle-wrap .cont-desc a {
  color: #2D489D;
  text-decoration: underline;
}
.cycle-wrap .cont-desc a:hover {
  color: #2D489D;
  text-decoration: underline;
}
.cycle-wrap .desc-list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 40px 0;
}
.cycle-wrap .desc-list ul:first-child {
  width: 35%;
}
.cycle-wrap .desc-list ul:last-child {
  width: 65%;
}
.cycle-wrap .desc-text {
  border-top: 1px solid #9C9C9C;
}
.cycle-wrap .desc-text span {
  display: block;
  margin: 37px 0 43px;
  font-weight: bold;
}
.cycle-wrap .external-link {
  padding-right: 37px;
  background: url(/img/web/page2/cycle/common/externallink.svg) no-repeat 95% center/15px;
}
.cycle-wrap a.ghost-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 50px;
  margin: 50px auto 70px;
  font-size: 14px;
  font-weight: bold;
  border: 1px solid #333;
  background: url(/img/web/page2/cycle/common/externallink.svg) no-repeat 95% center/15px;
  color: #333;
  text-decoration: none;
}
.cycle-wrap a.ghost-button:hover {
  opacity: .6;
  color: #333;
  text-decoration: none;
}
.cycle-wrap .bottom-pagenation {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  font-weight: bold;
  font-size: 14px;
}
.cycle-wrap .bottom-pagenation.is-first-page {
  justify-content: flex-end;
}
.cycle-wrap .bottom-pagenation.is-last-page {
  justify-content: flex-start;
}
.cycle-wrap .prevlink {
  display: flex;
  align-items: center;
  height: 30px;
  padding-left: 35px;
  background: url(/img/web/page2/cycle/common/prevarrow.svg) no-repeat center left/20px;
  transition-duration: .3s;
}
.cycle-wrap .nextlink {
  display: flex;
  align-items: center;
  height: 30px;
  padding-right: 35px;
  background: url(/img/web/page2/cycle/common/nextarrow.svg) no-repeat center right/20px;
  transition-duration: .3s;
}
.cycle-wrap .desc-text.coach-desc-text {
  padding-top: 20px;
}
.cycle-wrap .desc-text.coach-desc-text span {
  margin: 20px 0 0;
  font-weight: normal;
  font-size: 13px;
}

/* 選手詳細ペア */
.cycle-wrap .desc-list ul:first-child,
.cycle-wrap .desc-list ul:last-child {
  width: 48%;
}
.cycle-wrap .blue-link {
  color: #2D489D;
  text-decoration: underline;
}

/* チーム紹介 */
.cycle-wrap .section-wrap.teamlist img {
  width: 100%;
}
.cycle-wrap .section-wrap.teamlist p {
  margin: 40px 0;
}
.cycle-wrap .section-wrap.teamlist .teamlist-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cycle-wrap .section-wrap.teamlist .teamlist-wrap .list-top-img {
  line-height: 0;
}
.cycle-wrap .section-wrap.teamlist .teamlist-wrap li {
  width: 31.5%;
  margin: 0 2.75% 30px 0;
  background: #E3E3E3;
}
.cycle-wrap .section-wrap.teamlist .teamlist-wrap li:nth-child(3n) {
  margin-right: 0;
}
.cycle-wrap .section-wrap.teamlist .teamlist-wrap a {
  position: relative;
  display: block;
  height: 100%;
  transition-duration: .3s;
}
.cycle-wrap .section-wrap.teamlist .teamlist-wrap a:after {
  position: absolute;
  right: 5px;
  bottom: 5px;
  content: '';
  border-top: 6px solid transparent;
  border-right: 6px solid #333;
}
.cycle-wrap .section-wrap.teamlist .teamlist-wrap a:hover {
  text-decoration: none;
  color: #333;
  background: #d6d6d6;
}
.cycle-wrap .section-wrap.teamlist .teamlist-wrap .list-under-text {
  padding: 15px 15px 30px;
}
.cycle-wrap .section-wrap.teamlist .teamlist-wrap .cycle-flag-img {
  width: 30px;
  display: block;
}
.cycle-wrap .section-wrap.teamlist .teamlist-wrap .team-name {
  display: block;
  padding-bottom: 9px;
  font-weight: bold;
  border-bottom: 1px solid #9C9C9C;
}
.cycle-wrap .section-wrap.teamlist .teamlist-wrap .team-name-ruby {
  display: block;
  padding-top: 9px;
}
/* チーム詳細 */
.cycle-wrap .desc-list.team-list dl {
  display: flex;
  flex-wrap: wrap;
}
.cycle-wrap .desc-list.team-list dt {
  position: relative;
  width: 27%;
  padding-right: 10px;
}
.cycle-wrap .desc-list.team-list dt::after {
  position: absolute;
  content: ':';
  top: 0;
  right: 0;
}
.cycle-wrap .desc-list.team-list dd {
  width: 73%;
  padding-left: 10px;
}

/* 歴史 */
.cycle-wrap .h-section {
  padding-top: 80px;
  line-height: 1.5;
}
.cycle-wrap .h-section:last-child {
  padding-bottom: 80px;
}
.cycle-wrap .h-section p {
  padding-top: 20px;
}

/* 歴代優勝者 */
.cycle-wrap .result-title {
  max-width: 1100px;
  margin: auto;
}
.cycle-wrap .w-over {
  overflow: auto;
  -ms-overflow-style: none;
  padding: 0;
  line-height: 1.5;
}
.cycle-wrap .result-tab .tab-on {
  color: #fff;
  background: #2d489d;
}
.cycle-wrap .result-tab .tab-off {
  background: #d5dae2;
}
.cycle-wrap .result-tab {
  display: flex;
  justify-content: space-between;
  width: 1100px;
  overflow: auto;
  -ms-overflow-style: none;
  margin: 40px auto 0;
}
.cycle-wrap .result-tab li {
  width: 184px;
  border-right: 1px solid #fff;
}
.cycle-wrap .result-tab li:last-child {
  border-right: none;
}
.cycle-wrap .result-tab li a {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
  padding: 12px;
}
.cycle-wrap .result-tab li a span {
  position: absolute;
  right: 12px;
  bottom: 13px;
}
.cycle-wrap .result-tabunder {
  margin-bottom: 20px;
}

.cycle-wrap .result-table.tournament-results .re-tag {
  padding: 0;
}
.cycle-wrap .result-table.tournament-results table {
  width: 100%;
}


/* テーブル */
.cycle-wrap .result-table {
  position: relative;
  width: 1100px;
  margin: 40px auto;
}
.cycle-wrap .result-table table {
  width: 100%;
  margin: auto;
}
.cycle-wrap .result-table .list-title th {
  padding: 10px;
}
.cycle-wrap .result-table td, th {
	padding: 20px 10px;
  border-right: 1px solid #000;
}
.cycle-wrap .result-table th {
  text-align: left;
  font-weight: bold;
	background: #2D489D;
  color: #FFF;
}
.cycle-wrap .result-table td {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  background: #fff;
}
.cycle-wrap .result-table .even {
	background: #fbf8f0;
}
.cycle-wrap .result-table .odd {
	background: #fefcf9;
}
.cycle-wrap .result-table .bt-none {
  border-top: none;
}
.cycle-wrap .result-table .br-none {
  border-right: none;
}
.cycle-wrap .result-table td.bg-color {
  background: #D5DAE2;
  font-weight: bold;
}

.cycle-wrap .result-table .fixed-table {
  position: absolute;
  width: 20.1%;
  left: 0;
  /*top:24px;*/
}
.cycle-wrap .result-table .fixed-table th,
.cycle-wrap .result-table .fixed-table th {
  padding: 10px;
}
.cycle-wrap .result-table .fixed-table td,
.cycle-wrap .result-table .scroll-table td {
  height: 89px;
}
.cycle-wrap .result-table .scroll-table {
  margin-left: 20%;
  width: 80%;
}
.cycle-wrap .result-table .table-width {
  width: 13.3%;
}

/* ステージレース テーブル*/
.cycle-wrap .result-table.stage-winners-table .scroll-table .table-width {
  width: 16%;
}

/* タグ・テキスト */
.cycle-wrap .result-table .re-tag {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}
.cycle-wrap .result-table .re-tag h3 {
  display: inline-block;
  padding: 12px;
  color: #fff;
  background: #2d489d;
}
.cycle-wrap .result-table .re-tag p {
  margin: 20px 0;
  line-height: 1.5;
  font-weight: bold;
  color: #2d489d;
}

/* ONAIRパーツ */
.cycle-wrap .onair-wrap,
.cycle-wrap .video-wrap {
  color: #363636;
  margin-top: 40px;
}
.cycle-wrap .onair-wrap .cycle-bg-gray {
  padding: 30px 0;
}
.cycle-wrap .onair-wrap .icon-wrap {
  width: 20%;
}
.cycle-wrap .onair-wrap .right-cont {
  width: 80%;
}
.cycle-wrap .onair-wrap .date {
  display: block;
  margin-bottom: 15px;
  font-weight: bold;
}
.cycle-wrap .onair-wrap .calendar-inner .calendar-title {
  margin-bottom: 0;
}
.cycle-wrap .onair-wrap .onair-time {
  display: flex;
  align-items: baseline;
  padding-top: 20px;
}
.cycle-wrap .onair-wrap .calendar-inner .right-cont .live-mark {
  margin-right: 10px;
}
.cycle-wrap .onair-wrap .icon-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.cycle-wrap .onair-wrap .icon-wrap li:first-child {
  margin-right: 10px;
}
.cycle-wrap .onair-wrap .icon-wrap .sp-img {
  display: none;
}

/* 動画 */
.cycle-wrap .cycle-calendar.video-wrap:not(:first-of-type) {
  margin-top: 0;
}
.cycle-wrap .video-wrap .cycle-bg-gray {
  padding: 40px 0;
}
.cycle-wrap .video-wrap .left-video {
  width: 30%;
  max-width: 360px;
}
.cycle-wrap .video-wrap .left-video .youtube-modal {
  display: block;
  position: relative;
}
.cycle-wrap .video-wrap .left-video .youtube-modal p {
  position: absolute;
  bottom: 15px;
  left: 25px;
  color: #FFF;
}
.cycle-wrap .video-wrap .left-video .youtube-modal .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cycle-wrap .overlay-wrap {
  display: none;
}
.cycle-wrap .overlay-wrap.open {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10005;
}
.cycle-wrap .overlay-inner {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 0;
  height: 100%;
  width: 100%;
  max-width: 900px;
  text-align: center;
  box-sizing: border-box;
}
.cycle-wrap .iframe-wrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
.cycle-wrap .iframe-wrap .overlay-video {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}
.cycle-wrap .js-close {
  position: absolute;
  right: 0;
  top: -40px;
  width: 100%;
  height: 44px;
  padding: 0;
  z-index: 9999999;
  color: #fff;
  font-size: 28px;
  text-align: right;
  font-family: Arial, Baskerville, monospace;
  opacity: .65;
  background: none;
  border: none;
}
.cycle-wrap .js-close:hover {
  opacity: 1;
}
.cycle-wrap .video-wrap .right-cont-desc .date {
  display: block;
  font-weight: bold;
  margin-bottom: 20px;
}
.cycle-wrap .video-wrap .right-cont {
  font-weight: bold;
}
.cycle-wrap .cycle-calendar.video-wrap .calendar-inner {
  align-items: normal;
}
.cycle-wrap .video-wrap .calendar-inner .right-cont-inner {
  padding-bottom: 0;
  margin-bottom: 20px;
}
.cycle-wrap #lightcase-overlay {
  max-width: 100%;
  opacity: 1;
  width: 800px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

/* ブエルタとは */
.cycle-wrap .vuelta-about .h2-under {
  margin: 40px 0;
}
.cycle-wrap .img-under-text {
  display: block;
  text-align: left;
  letter-spacing: -.01em;
}

/* ブエルタ・ステージ詳細 */
.cycle-wrap .stage-list-over .result-tab {
  margin: 0 auto 40px;
}
.cycle-wrap .stage-list-over .result-tab.result-tabunder {
  margin: 40px auto 20px;
}
.cycle-wrap .stage-list-over .result-tab li a {
  padding: 12px 5px;
}
.cycle-wrap .stage-wrap .h2-under {
  font-weight: bold;
  padding: 40px 0;
}
.cycle-wrap .stage-section .flex-cont {
  display: flex;
  justify-content: space-between;
}
.cycle-wrap .stage-section .flex-cont .left-text {
  width: 70%;
}
.cycle-wrap .stage-section .flex-cont .left-text p {
  margin-top: 34px;
}
.cycle-wrap .stage-section .flex-cont .right-img {
  position: static;
  width: 30%;
  max-width: 312px;
  height: auto;
  right: 0;
  top: 0;
}
.cycle-wrap .stage-section .rank-img {
  width: 600px;
  margin: 40px auto 0;
}
.cycle-wrap .stage-section .zoom-button-wrap {
  display: flex;
  justify-content: flex-end;
  width: auto !important;
}
.cycle-wrap .stage-section .zoom-button {
  display: flex !important;
  align-items: center;
  background: url(/img/web/page2/cycle/introduction/racerank/zoom_icon.svg) no-repeat 90% center/22px;
  margin-top: 40px !important;
  padding: 14px 65px 14px 50px;
  border: solid 2px #363636;
  font-weight: bold;
  font-size: 14px;
  height: 45px;
}

/* ブエルタ・歴史 */
.cycle-wrap .history-table {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 40px;
}
.cycle-wrap .history-table dl {
  display: flex;
  flex-wrap: wrap;
  width: 48%;
}
.cycle-wrap .history-table dl dt {
  width: 15%;
  padding: 5px;
  text-align: center;
  background: #D4D9E1;
}
.cycle-wrap .history-table dl dd {
  width: 85%;
  padding: 5px 5px 5px 15px;
}
.cycle-wrap .hammer-wrap .c-tag.padding-top {
  padding-top: 0;
}
.cycle-wrap .flex-cont {
  position: relative;
}
.cycle-wrap .flex-cont .right-img {
  position: absolute;
  width: 53px;
  height: 60px;
  right: 0;
  top: -15px;
}

/* ツールとは */
.cycle-wrap .cycle-border-top {
  padding-top: 40px;
  border-top: 1px solid #9c9c9c;
}
.cycle-wrap .cycle-border-top h3 {
  display: inline-block;
  padding: 8px 12px;
  color: #fff;
  background: #2d489d;
}

/* ツール・大会スケジュール */
.cycle-wrap .result-table.schedule-table {
  margin: 20px auto;
}
.cycle-wrap .result-table.schedule-table th,
.cycle-wrap .result-table.schedule-table td {
  padding: 10px;
}
.cycle-wrap .result-table.schedule-table .table-width1 {
  width: 15%;
}
.cycle-wrap .result-table.schedule-table .table-width2 {
  width: 17%;
}
.cycle-wrap .result-table.schedule-table .table-width3 {
  width: 23%;
}
.cycle-wrap .result-table.schedule-table .table-width4 {
  width: 10%;
}
.cycle-wrap .result-table.schedule-table .table-width5 {
  width: 20%;
}
.cycle-wrap .result-table.schedule-table .table-width6 {
  width: 15%;
}
.cycle-wrap .result-table.schedule-table .icon-column div {
  width: 30px;
  margin: auto;
}
.cycle-wrap .result-table.schedule-table .icon-column,
.cycle-wrap .result-table.schedule-table .channel-column {
  vertical-align: middle;
}
.cycle-wrap .result-table.schedule-table .channel-column {
  text-align: center;
}
.cycle-wrap .result-table.schedule-table .channel-column img {
  width: 108px;
}
.cycle-wrap .schedule-icons {
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
}
.cycle-wrap .schedule-icons li {
  display: flex;
  align-items: center;
}
.cycle-wrap .schedule-icons li:not(:last-child) {
  margin-right: 25px;
}
.cycle-wrap .schedule-icons div {
  width: 30px;
  margin-right: 8px;
}

/* ツール・ステージ詳細 */
.cycle-wrap .rank-section {
  margin-bottom: 80px;
}
.cycle-wrap .result-table.time-schegule .table-width1 {
  width: 15%;
}
.cycle-wrap .result-table.time-schegule .table-width2 {
  width: 11.6%;
}
.cycle-wrap .result-table.time-schegule th {
  padding: 10px;
  text-align: left;
}
.cycle-wrap .result-table.time-schegule td {
  padding: 10px;
}
.cycle-wrap .result-table.time-schegule td.text-center {
  text-align: center;
}
.cycle-wrap .result-table.time-schegule td.bg-color-b {
  background: #E3E3E3;
}
/* ツール・レースセンター */
.cycle-wrap .cycle-about .racecenter-img {
  width: 400px;
  margin: auto;
}
.cycle-wrap .cycle-about .racecenter-img img {
  width: 100%;
}
.cycle-wrap .role-wrap.racecenter-wrap .under-cont {
  margin-top: 40px;
}
.cycle-wrap .role-wrap.racecenter-wrap .rank-img {
  width: 800px;
}
.cycle-wrap .role-wrap.racecenter-wrap .sp-rank-img {
  display: none;
}
.cycle-wrap .racecenter-num-list {
  margin-top: 40px;
}
.cycle-wrap .racecenter-num-list li {
  position: relative;
  padding-bottom: 20px;
}
.cycle-wrap .racecenter-num-list span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  padding-top: 3px;
  margin-right: 8px;
  background: #F9BD0E;
  color: #333;
  text-align: center;
  font-weight: bold;
}
.cycle-wrap .racecenter-num-list div {
  padding-top: 3px;
  padding-left: 46px;
}
/* ツール・リザルト*/
.cycle-wrap .result-wrap .h2-gradation span {
  display: block;
  margin-left: 15px;
  font-size: 16px;
}
.cycle-wrap .result-jersey {
  margin-top: 40px;
}
.cycle-wrap .result-jersey h3 {
  display: inline-block;
  padding: 8px 12px;
  color: #fff;
  background: #2d489d;
}
.cycle-wrap .result-jersey .result-jersey-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 40px 0 0;
}
.cycle-wrap .result-jersey .result-jersey-list li {
  display: flex;
  align-items: center;
  width: 48%;
  margin-bottom: 20px;
}
.cycle-wrap .result-jersey .result-jersey-list li:not(:last-child) {
  margin-right: 10px;
}
.cycle-wrap .result-jersey .result-jersey-list li .left-img {
  margin-right: 10px;
}
.cycle-wrap .result-jersey .result-jersey-list span {
  display: block;
}
.cycle-wrap .result-jersey .result-jersey-list span:first-child {
  font-weight: bold;
}
/* リザルト・アコーディオン */
.cycle-wrap .toggle-wrap h3 {
  display: flex;
  justify-content: space-between;
  background: #666;
  color: #FFF;
  padding: 15px 20px;
  margin-top: 40px;
}
.cycle-wrap .toggle-wrap h3::after {
  content: '+';
  display: block;
}
.cycle-wrap .toggle-wrap .toggle-switch.open h3::after {
  content: '-';
  display: block;
}
.cycle-wrap .toggle-wrap .toggle-contents {
  display: none;
}
.cycle-wrap .toggle-wrap .result-table.toggle-result-table {
  margin-top: 0;
}
.cycle-wrap .toggle-wrap .result-table.toggle-result-table .table-width1,
.cycle-wrap .toggle-wrap .result-table.toggle-result-table .table-width2 {
  width: 5%;
}
.cycle-wrap .toggle-wrap .result-table.toggle-result-table .table-width3,
.cycle-wrap .toggle-wrap .result-table.toggle-result-table .table-width5 {
  width: 30%;
}
.cycle-wrap .toggle-wrap .result-table.toggle-result-table .table-width4,
.cycle-wrap .toggle-wrap .result-table.toggle-result-table .table-width6 {
  width: 15%;
}
.cycle-wrap .toggle-wrap .result-table.toggle-result-table td,
.cycle-wrap .toggle-wrap .result-table.toggle-result-table th {
  padding: 10px;
}
.cycle-wrap .toggle-wrap .result-table.toggle-result-table th {
  background: #D4D9E1;
  color: #333;
}

/* ツール・スタートリスト */
.cycle-wrap .section-wrap.startlist-wrap .team-link-list li:first-child {
  width: 22%;
}
.cycle-wrap .section-wrap.startlist-wrap .team-link-list li:nth-child(2) {
  width: 48%;
}
.cycle-wrap .section-wrap.startlist-wrap .team-link-list li:nth-child(3) {
  width: 30%;
}
.cycle-wrap .startlist-wrap .startlist-bottom {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
}
.cycle-wrap .startlist-wrap .startlist-bottom .comment {
  display: flex;
  align-items: center;
}
.cycle-wrap .startlist-wrap .startlist-bottom .comment::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background: #E2E2E2;
  border: 1px solid #333;
}
.cycle-wrap .startlist-wrap .startlist-bottom .comment.d-md-none {
  display: none;
}
.cycle-wrap .startlist-wrap .startlist-bottom .pdf-button .ghost-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  background: none;
}
.cycle-wrap .startlist-wrap .startlist-bottom .pdf-button .ghost-button::after {
  position: absolute;
  right: 5px;
  bottom: 5px;
  content: '';
  border-top: 6px solid transparent;
  border-right: 6px solid #333;
}

.cycle-wrap .startlist-wrap .startlist-teamlist {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cycle-wrap .startlist-wrap .startlist-teamlist li {
  width: 48%;
  margin-bottom: 50px;
}
.cycle-wrap .startlist-wrap .startlist-teamlist .top-cont {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.cycle-wrap .startlist-wrap .startlist-teamlist .team-prof .name {
  display: block;
  font-weight: bold;
}
.cycle-wrap .startlist-wrap .startlist-teamlist .team-prof .name-j {
  display: block;
  font-weight: bold;
}
.cycle-wrap .startlist-wrap .startlist-teamlist .team-prof .country {
  margin: -10px;
}
.cycle-wrap .startlist-wrap .startlist-teamlist .team-prof .inline {
  display: inline;
}
.cycle-wrap .startlist-wrap.result-table .startlist-teamlist td,
.cycle-wrap .startlist-wrap.result-table .startlist-teamlist th {
  padding: 10px;
}
.cycle-wrap .startlist-wrap.result-table .startlist-teamlist th {
  background: #D4D9E1;
  color: #333;
}
.cycle-wrap .startlist-wrap.result-table .startlist-teamlist td:first-child {
  text-align: center;
}
.cycle-wrap .startlist-wrap.result-table .startlist-teamlist .bg-color-b {
  background: #E2E2E2;
}
.cycle-wrap .startlist-wrap.result-table .startlist-teamlist .letter-spacing {
  letter-spacing: -.11em;
}

/* ツール・歴史・ルール */
.cycle-wrap .tour-rule-wrap {
  padding-bottom: 40px;
}
.cycle-wrap .result-table.tour-list {
  line-height: 1.5;
}
.cycle-wrap .result-table.tour-list td,
.cycle-wrap .result-table.tour-list th {
  padding: 10px;
  font-weight: normal;
}
.cycle-wrap .result-table.tour-list .calendar-note {
  margin: 30px 0 0;
}
.cycle-wrap .hammer-wrap .c-tag.tour-rule {
  padding: 40px 0 20px;
}
.cycle-wrap .c-tag.tour-rule span {
  display: block;
}
.cycle-wrap .c-tag.tour-rule p {
  padding: 10px 0 20px;
}
.cycle-wrap .c-tag.tour-rule .font-bold {
  font-weight: bold;
}
.cycle-wrap .pt-0 {
  padding-top: 0 !important;
}
.cycle-wrap .tour-history-table .table-list {
  display: flex;
  flex-wrap: wrap;
  padding: 10px 0;
}
.cycle-wrap .tour-history-table.point-table .table-list li {
  margin-right: 20px;
}
.cycle-wrap .tour-history-table.mountain-table .table-list li {
  width: 25%;
}
.cycle-wrap .tour-rule-wrap .tour-rule-list {
  display: flex;
  flex-wrap: wrap;
}
.cycle-wrap .tour-rule-wrap .tour-rule-list li {
  margin-right: 15px;
}

/* ツール・テーブル */
.cycle-wrap .tour-history-table {
  width: 900px;
  margin: 20px auto;
}
.cycle-wrap .tour-history-table.point-table td {
  width: 50%;
}
.cycle-wrap .tour-history-table table {
  width: 100%;
  margin-bottom: 20px;
}
.cycle-wrap .tour-history-table td {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  background: #fff;
}
.cycle-wrap .tour-history-table td,
.cycle-wrap .tour-history-table th {
  padding: 10px 20px;
  border-right: 1px solid #000;
  text-align: left;
}
.cycle-wrap .tour-history-table span {
  display: initial !important;
}
.cycle-wrap .tour-history-table .bg-gray {
  background: #666;
}
.cycle-wrap .tour-history-table .bg-color-b {
  background: #E2E2E2;
}
.cycle-wrap .tour-history-table .font-white {
  color: #FFF;
}
.cycle-wrap .tour-history-table .br-none {
  border-right: none;
}
.cycle-wrap .tour-history-table .font-bold {
  font-weight: bold;
}
.cycle-wrap .tour-history-table .br-w {
  border-right: 1px solid #FFF;
}
.cycle-wrap .tour-history-table .indent-1 {
  display: block !important;
  font-size: 13px;
  padding-left: 1em!important;
  text-indent: -1em!important;
}
.cycle-wrap .tour-history-table.mountain-table .indent-1 {
  padding-bottom: 10px;
}

/* ツール・present */
.cycle-wrap .stage-wrap.present-wrap .top-cont .read {
  font-size: 20px;
}
.cycle-wrap .present-wrap .present-text {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #9C9C9C;
}
.cycle-wrap .present-wrap .present-text span {
  display: block;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 20px;
}
.cycle-wrap .present-wrap .present-text span,
.cycle-wrap .present-wrap .calendar-inner .right-cont .border-under-text {
  line-height: 1.5;
}
.cycle-wrap .present-wrap .present-text .indent-2 {
  padding-left: 1.5em;
  text-indent: -1.5em;
}
.cycle-wrap .present-wrap .present-text ul {
  display: flex;
}
.cycle-wrap .present-wrap .present-text ul li {
  margin-right: 15px;
}
.cycle-wrap .present-wrap h3 {
  display: inline-block;
  padding: 8px 18px;
  margin-bottom: 20px;
  color: #fff;
  background: #2d489d;
}
.cycle-wrap .present-wrap .calendar-inner {
  align-items: center;
}
.cycle-wrap .present-wrap .calendar-inner .left-img {
  width: 20%;
  max-width: 196px;
}
.cycle-wrap .present-wrap .calendar-inner .right-cont {
  width: 78%;
}
.cycle-wrap .present-wrap .calendar-inner .right-cont .right-cont-desc {
  width: 100%;
}
.cycle-wrap .present-wrap .calendar-inner .right-cont .calendar-title {
  margin-bottom: 0;
  font-size: 20px;
}
.cycle-wrap .present-wrap .calendar-inner .right-cont .right-cont-desc .title-read {
  height: 16px;
}
.cycle-wrap .present-wrap .calendar-inner .right-cont .border-under-text span:first-child {
  font-weight: bold;
  margin-right: 10px;
}
.cycle-wrap .race-intro.present-wrap .under-cont {
  justify-content: center;
}
.cycle-wrap .cycle-calendar.present-wrap.race-intro-bottom:not(:first-of-type) {
  margin: 20px 0 40px;
}
.cycle-wrap .race-intro.present-wrap .present-text.under-present-text {
  padding: 40px 0 0;
  margin: 0;
  border-bottom: 0;
}
.cycle-wrap .race-intro.present-wrap .present-text.under-present-text .calendar-note {
  margin-top: 20px;
}
.cycle-wrap .cycle-calendar.race-intro .cycle-border-line {
  padding: 40px 0;
  border-top: 1px solid #9C9C9C;
}
.cycle-wrap .present-wrap .calendar-inner .right-cont .right-cont-inner {
  border-bottom: none;
}


/* ハンマーシリーズ */
.cycle-wrap .cycle-about.hammer-wrap .cyclerode {
  margin-bottom: 80px;
}
.cycle-wrap .hammer-team-wrap p {
  padding: 40px 0;
}
.cycle-wrap .hammer-team-wrap .list-team {
  padding: 0 0 80px;
}
.cycle-wrap .hammer-team-wrap .list-cont-bottom:first-of-type {
  padding-bottom: 20px;
}
.cycle-wrap .stage-wrap.hammer-wrap .flex-cont {
  margin: 40px 0;
}
.cycle-wrap .stage-wrap.hammer-wrap .top-cont {
  margin-bottom: 80px;
}
.cycle-wrap .hammer-wrap .c-tag {
  padding: 40px 0;
}
.cycle-wrap .hammer-wrap .c-tag.border-bottom {
  border-bottom: 1px solid #9C9C9C;
}
.cycle-wrap .hammer-wrap .c-tag h3 {
  display: inline-block;
  padding: 8px 18px;
  margin-bottom: 20px;
  color: #fff;
  background: #2d489d;
}
.cycle-wrap .hammer-wrap .video-wrap {
  margin: 40px auto 80px;
}
.cycle-wrap .hammer-wrap .video-wrap a {
  display: block;
  position: relative;
  max-width: 560px;
  margin: auto;
}
.cycle-wrap .hammer-wrap .video-wrap .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cycle-wrap .hammer-wrap .video-wrap p {
  position: absolute;
  bottom: 15px;
  left: 25px;
  color: #FFF;
}
.cycle-wrap .hammer-wrap .video-wrap img {
  width: 100%;
}

/* ワンデーレース */
.cycle-wrap .classic-section .read {
  font-weight: bold;
}
.cycle-wrap .role-wrap .wathing-method.classic-section .r-flex-cont {
  padding: 40px 0 0;
}
.cycle-wrap .role-wrap .wathing-method.classic-section .r-flex-cont:last-child {
  padding-bottom: 80px;
}
.cycle-wrap .role-wrap .wathing-method.classic-section .r-flex-cont:not(:last-child) {
  border-bottom: none;
}
.cycle-wrap .wathing-method.classic-section .r-flex-cont .left-text {
  width: 57%;
}
.cycle-wrap .wathing-method.classic-section .r-flex-cont .right-img {
  width: 40%;
  max-width: 435px;
}

/* ステージレース */
.cycle-wrap .stage-wrap .top-cont .read {
  padding: 40px 0;
  font-weight: bold;
}
.cycle-wrap .stage-wrap .flex-cont {
  display: flex;
  justify-content: center;
  margin: 40px 0 80px;
}
.cycle-wrap .stage-wrap .flex-cont div {
  width: 40%;
}
.cycle-wrap .stage-wrap .flex-cont div:first-child {
  margin-right: 3%;
}
.cycle-wrap .stage-wrap .flex-cont div span {
  display: block;
  margin-top: 10px;
}
.cycle-wrap .stage-wrap .flex-cont img {
  width: 100%;
}
.cycle-wrap .cycle-calendar.race-intro {
  margin-top: 0;
}
.cycle-wrap .cycle-calendar.race-intro:first-of-type {
  margin-top: 40px;
}
.cycle-wrap .cycle-calendar.race-intro .cycle-bg-gray {
  padding: 40px 0;
}
.cycle-wrap .race-intro .calendar-inner .right-cont .right-cont-desc {
  font-weight: bold;
}
.cycle-wrap .cycle-calendar.race-intro .right-cont-desc .title-read {
  display: block;
  margin-bottom: 20px;
}
.cycle-wrap .race-intro .under-cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
}
.cycle-wrap .race-intro .under-cont a.ghost-button {
  margin: 0;
  width: 200px;
}
.cycle-wrap .race-intro .button-wrap a.ghost-button {
  margin: 0;
  transition-duration: .3s;
}
.cycle-wrap .race-intro .button-wrap a.ghost-button.triangle {
  position: relative;
  margin-right: 10px;
  background: none;
}
.cycle-wrap .race-intro .button-wrap a.ghost-button.triangle::after {
  position: absolute;
  right: 5px;
  bottom: 5px;
  content: '';
  border-top: 6px solid transparent;
  border-right: 6px solid #333;
}
.cycle-wrap .race-intro .button-wrap,
.cycle-wrap .race-intro .icon-wrap {
  display: flex;
}
.cycle-wrap .race-intro .icon-wrap li:first-child {
  margin-right: 10px;
}
.cycle-wrap .cycle-calendar.race-intro-bottom:not(:first-of-type) {
  margin: 40px 0 80px;
}
.cycle-wrap .race-intro .under-cont .sp-img {
  display: none;
}

/* サイクルロードレースとは */
.cycle-wrap .cycle-about p {
  line-height: 1.5;
}
.cycle-wrap .cycle-about a:hover{
  opacity: .7;
}
.cycle-wrap .cycle-about .cp-15 {
  padding: 0 15px;
}
.cycle-wrap .cycle-about .inner-wrap {
  max-width: 1100px;
  width: 100%;
  margin: auto;
}

/* page-link */
.cycle-wrap .cycle-about .page-link {
  display: flex;
  justify-content:flex-start;
  margin-bottom: 40px;
  font-size: 14px;
  line-height: 1.5;
}
.cycle-wrap .cycle-about .page-link li {
  margin-right: 3em;
}
.cycle-wrap .cycle-about .page-link a {
  display: block;
  background: url(/img/web/page2/cycle/common/arrow-under.svg) no-repeat left center/10px;
  padding-left: 15px;
  transition-duration: .3s;
}

/* サイクルロードレースとは */
.cycle-wrap .cycle-about .cyclerode {
  margin-bottom: 40px;
}
.cycle-wrap .cycle-about .cyclerode .cyclerode-img {
  max-width: 700px;
  width: 100%;
  margin: 40px auto;
  text-align: center;
}
.cycle-wrap .cycle-about .cyclerode img {
  width: 100%;
}

/* レースの種類 */
.cycle-wrap .cycle-about .racetype {
  padding-top: 40px;
}
.cycle-wrap .cycle-about .racetype .link-box {
  width: 100%;
  margin: 40px 0 0;
  text-align: center;
}
.cycle-wrap .cycle-about .racetype a {
  display: inline-block;
  position: relative;
  padding: 1em 3em;
  border: 1px solid #333;
  transition-duration: .3s;
}
.cycle-wrap .cycle-about .racetype a::after {
  position: absolute;
  right: 5px;
  bottom: 5px;
  content: '';
  border-top: 6px solid transparent;
  border-right: 6px solid #333;
}
.cycle-wrap .cycle-about .racetype .h2-under {
  margin: 40px 0;
}
.cycle-wrap .cycle-about .racetype h3 {
  display: inline-block;
  padding: 8px 12px;
  color: #fff;
  background: #2d489d;
}
.cycle-wrap .cycle-about .racetype .timetrial {
  padding-bottom: 2.5em;
  border-bottom: 1px solid #9c9c9c;
}
.cycle-wrap .cycle-about .racetype .timetrial dl {
  margin: 20px 0 0;
  line-height: 1.5;
}
.cycle-wrap .cycle-about .racetype .timetrial dl dt {
  margin-bottom: 20px;
}
.cycle-wrap .cycle-about .racetype .stagerace {
  padding: 40px 0;
  border-bottom: 1px solid #9c9c9c;
}
.cycle-wrap .cycle-about .racetype .stagerace .stagerace-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 1.5em 0;
}
.cycle-wrap .cycle-about .racetype .stagerace .stagerace-inner p {
  width: 65%;
}
.cycle-wrap .cycle-about .racetype .stagerace .stagerace-img {
  width: 30%;
}
.cycle-wrap .cycle-about .racetype .stagerace .stagerace-img img {
  width: 100%;
}
.cycle-wrap .cycle-about .racetype .oneday {
  max-width: 1100px;
  width: 100%;
  margin: auto;
  padding: 40px 0;
}
.cycle-wrap .cycle-about .racetype .oneday .oneday-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 1.5em 0;
}
.cycle-wrap .cycle-about .racetype .oneday .oneday-inner p {
  width: 65%;
}
.cycle-wrap .cycle-about .racetype .oneday .oneday-img {
  width: 30%;
}
.cycle-wrap .cycle-about .racetype .oneday .oneday-img img {
  width: 100%;
}
.cycle-wrap .cycle-about .oneday-table {
  overflow: auto;
  max-width: 845px;
  width: 100%;
  margin: auto;
}
.cycle-wrap .cycle-about .oneday-table table {
  width: 845px;
  margin: auto;
  text-align: left;
}
.cycle-wrap .cycle-about .oneday-table table th,
.cycle-wrap .cycle-about .oneday-table table td {
  padding: 1em .5em;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
}
.cycle-wrap .cycle-about .oneday-table table th {
  font-weight: bold;
  background: #D5DAE2;
  padding: 1em .5em;
  width: auto;
  height: auto;
}
.cycle-wrap .cycle-about .oneday-table table td {
  background: #fff;
}
.cycle-wrap .cycle-about .oneday-table table .title {
  background: #666;
  color: #fff;
}
.cycle-wrap .cycle-about .oneday-table table .bb-none {
  border-bottom: none;
}
.cycle-wrap .cycle-about .oneday-table table .br-none {
  border-right: none;
}
.cycle-wrap .cycle-about .oneday-table .table-under {
  display: inline-block;
  width: 100%;
  margin: 20px auto 80px;
}

/* ジャージの意味 */
.cycle-wrap .cycle-about .c-bg {
  background: #e3e3e3;
}
.cycle-wrap .cycle-about .jersey {
  padding: 80px 15px;
}
.cycle-wrap .cycle-about .jersey .h2-under {
  letter-spacing: -0.05em;
  margin: 40px 0 .5em;
}
.cycle-wrap .cycle-about .jersey .jersey-top {
  margin-bottom: 40px;
  letter-spacing: -0.05em;
  font-weight: bold;
}
.cycle-wrap .cycle-about .jersey .jersey-img {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.cycle-wrap .cycle-about .jersey img {
  width: 100%;
}

.cycle-wrap .cycle-about .jersey ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 40px 0 0;
  padding-bottom: 40px;
  border-bottom: 1px solid #9c9c9c;
}
.cycle-wrap .cycle-about .jersey ul span {
  font-size: 13px;
}
.cycle-wrap .cycle-about .jersey ul li {
  width: 48%;
}
.cycle-wrap .cycle-about .jersey ul li h4 {
  letter-spacing: -0.05em;
  padding: .5em;
  color: #fff;
}
.cycle-wrap .cycle-about .jersey ul li .jersey-title01 {
  background: #A60000;
}
.cycle-wrap .cycle-about .jersey ul li .jersey-title02 {
  background: #666666;
}
.cycle-wrap .cycle-about .jersey ul li .jersey-title03 {
  background: #FF8E01;
}
.cycle-wrap .cycle-about .jersey ul li .jersey-title04 {
  background: #007200;
}
.cycle-wrap .cycle-about .jersey ul li .jerseylist-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1em 0 2em;
}
.cycle-wrap .cycle-about .jersey ul li .jerseylist-inner p {
  width: 75%;
}
.cycle-wrap .cycle-about .jersey ul li .jerseylist-inner .inner-img {
  width: 20%;
}
.cycle-wrap .cycle-about .jersey ul li .jerseylist-inner .inner-img img {
  width: 100%;
}
.cycle-wrap .cycle-about .jersey .world {
  padding: 40px 0;
  border-bottom: 1px solid #9c9c9c;
}
.cycle-wrap .cycle-about .jersey .world h3,
.cycle-wrap .cycle-about .jersey .national h3 {
  display: inline-block;
  padding: 8px 12px;
  color: #fff;
  background: #2d489d;
}
.cycle-wrap .cycle-about .jersey .world p {
  margin: 20px 0 0;
}
.cycle-wrap .cycle-about .jersey .national {
  padding: 40px 0 0;
}
.cycle-wrap .cycle-about .jersey .national .national-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 20px 0 0;
}
.cycle-wrap .cycle-about .jersey .national .national-inner p {
  width: 65%;
}
.cycle-wrap .cycle-about .jersey .national .national-inner p span {
  display: block;
  margin: 1em 0 0;
  font-size: 13px;
}
.cycle-wrap .cycle-about .jersey .national .national-inner .national-img {
  width: 30%;
}
.cycle-wrap .cycle-about .jersey .national .national-inner .national-img img {
  width: 100%;
}

/* レースあるある */
.cycle-wrap .cycle-about .scene {
  padding: 80px 15px;
}
.cycle-wrap .cycle-about .scene .h2-under {
  margin: 40px 0;
}
.cycle-wrap .cycle-about .scene ul li {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #9c9c9c;
}
.cycle-wrap .cycle-about .scene ul li:last-child {
  margin: 0;
  padding: 0;
  border-bottom: none;
}
.cycle-wrap .cycle-about .scene h3 {
  display: inline-block;
  padding: 8px 12px;
  color: #fff;
  background: #2d489d;
}
.cycle-wrap .cycle-about .scene p {
  margin: 20px 0 0;
}
.cycle-wrap .cycle-about .scene .scene-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cycle-wrap .cycle-about .scene .scene-inner p {
  width: 65%;
}
.cycle-wrap .cycle-about .scene .scene-inner .scene-img {
  width: 30%;
}
.cycle-wrap .cycle-about .scene .scene-inner .scene-img img {
  width: 100%;
}
.cycle-wrap .cycle-about .scene .scene-inner-last {
  display: flex;
  flex-wrap: wrap;
}
.cycle-wrap .cycle-about .scene .scene-inner-last p {
  width: 100%;
}
.cycle-wrap .cycle-about .scene .scene-inner-last .scene-img {
  width: 100%;
  margin: 40px auto;
  display: flex;
  justify-content: center;
}
.cycle-wrap .cycle-about .scene .scene-inner-last .scene-img img {
  width: auto;
  margin: 0 .5em;
}
.cycle-wrap .cycle-about .scene ul li span {
  font-size: 13px;
}

@media only screen and (min-width: 1100px) {
  .h2-gradation {
    font-size: 20px;
    padding: 10px 10px 10px 32px;
    min-height: 60px;
  }
  .h2-gradation::before {
    width: 6px;
    height: calc(100% - 20px);
    top: 10px;
  }
}

@media only screen and (max-width: 1100px) {
  /* レースランクについてリスト調整用 */
  .cycle-wrap .role-wrap.racerank-wrap .p-link {
    flex-wrap: wrap;
  }
  .cycle-wrap .section-wrap.teamlist {
    margin-top: 50px;
  }
  /* 大会結果 調整用 */
  .cycle-wrap .result-title {
    margin: 50px 15px 0;
  }
  .cycle-wrap .result-table {
    width: 100%;
    margin: 40px 15px 40px;
  }
  .cycle-wrap .result-table table {
    width: 1100px;
  }
  .cycle-wrap .w-cont {
    padding: 0 15px;
  }
  .cycle-wrap .calendar-inner {
    padding: 0 15px;
  }
  .cycle-wrap .section-wrap.biginners {
    margin: 50px 0 0;
  }
  .cycle-wrap .role-wrap .h-section:first-child,
  .cycle-wrap .role-wrap.racerank-wrap .h-section.top-sec {
    padding-top: 50px;
  }

  /* 大会スケジュール調整用 */
  .cycle-wrap .result-table.schedule-table {
    margin: 20px 15px 40px;
  }

  /* ステージリスト調整用 */
  .cycle-wrap .w-over.stage-list-over {
    margin: 0 0 0 15px;
  }
  .cycle-wrap .stage-list-over .result-tab {
    margin: 40px auto 0;
  }

  /* ONAIR調整用 */
  .cycle-wrap .section-wrap.onair-title,
  .cycle-wrap .section-wrap.video-title {
    margin: 50px 0 0;
  }
  /* ハンマーシリーズ動画 */
  .cycle-wrap .hammer-wrap .video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
  }
  .cycle-wrap .hammer-wrap .video-wrap .overlay-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  /* SP版歴代優勝者 */
  .cycle-wrap .result-table .scroll-table {
    width: 1100px;
  }
  .cycle-wrap .result-table .fixed-table td,
  .cycle-wrap .result-table .scroll-table td {
    height: 113px;
  }
  /* ツール・リザルト調整用 */
  .cycle-wrap .result-wrap {
    margin-top: 40px;
  }
  /* ツール・歴史テーブル調整用 */
  .cycle-wrap .result-table.tour-list {
    width: auto;
  }
  .cycle-wrap .result-table.tour-list table {
    width: 100%;
  }
  /* スタートリストテーブル調整用 */
  .cycle-wrap .startlist-wrap h2 {
    margin-top: 40px;
  }
  .cycle-wrap .startlist-wrap.result-table {
    margin: 40px auto;
  }
  .cycle-wrap .startlist-wrap.result-table table {
    width: 100%;
  }
}

@media only screen and (max-width: 1099px) {
  /* レースの種類 */
  .cycle-wrap .cycle-about .racetype .link-box {
    width: 100%;
    margin: 40px 0 0;
    text-align: center;
  }
  .cycle-wrap .cycle-about .racetype .stagerace .stagerace-inner {
    display: flex;
    flex-flow: column-reverse;
    flex-wrap: wrap;
    margin: 20px 0;
  }
  .cycle-wrap .cycle-about .racetype .stagerace .stagerace-inner p {
    width: 100%;
    margin: 0;
  }
  .cycle-wrap .cycle-about .racetype .stagerace .stagerace-img {
    width: 100%;
  }
  .cycle-wrap .cycle-about .racetype .oneday .oneday-inner {
    display: flex;
    flex-flow: column-reverse;
    flex-wrap: wrap;
    margin: 20px 0;
  }
  .cycle-wrap .cycle-about .racetype .oneday .oneday-inner p {
    width: 100%;
    margin: 0;
  }
  .cycle-wrap .cycle-about .racetype .oneday .oneday-img {
    width: 100%;
  }
  .cycle-wrap .cycle-about .oneday-table {
    padding-left: 15px;
  }
  .cycle-wrap .cycle-about .racetype a {
    width: 200px;
    padding: 5px;
  }

  /* ジャージの意味 */
  .cycle-wrap .cycle-about .jersey ul li .jerseylist-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-flow: column-reverse;
    padding: 1em 0 2em;
  }
  .cycle-wrap .cycle-about .jersey ul li .jerseylist-inner p {
    width: 100%;
    margin-top: 1em;
  }
  .cycle-wrap .cycle-about .jersey ul li .jerseylist-inner .inner-img {
    width: 100%;
    text-align: center;
  }
  .cycle-wrap .cycle-about .jersey ul li .jerseylist-inner .inner-img img {
    width: 30%;
  }
  .cycle-wrap .cycle-about .jersey .national .national-inner {
    display: flex;
    flex-flow: column-reverse;
    flex-wrap: wrap;
    margin: 1.5em 0;
  }
  .cycle-wrap .cycle-about .jersey .national .national-inner p {
    width: 100%;
    margin: 1em 0;
  }
  .cycle-wrap .cycle-about .jersey .national .national-inner .national-img {
    width: 100%;
  }

  /* レースあるある */
  .cycle-wrap .cycle-about .scene ul li {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
  .cycle-wrap .cycle-about .scene ul li:first-child {
    padding-top: 0;
  }
  .cycle-wrap .cycle-about .scene .scene-inner {
    display: flex;
    flex-flow: column-reverse;
    flex-wrap: wrap;
    margin: 20px 0 0;
  }
  .cycle-wrap .cycle-about .scene .scene-inner p {
    width: 100%;
  }
  .cycle-wrap .cycle-about .scene .scene-inner p span {
    display: block;
    margin: 1em 0 0;
    font-size: 13px;
  }
  .cycle-wrap .cycle-about .scene .scene-inner .scene-img {
    width: 100%;
  }
  .cycle-wrap .cycle-about .scene .scene-inner .scene-img img {
    width: 100%;
  }
  .cycle-wrap .cycle-about .scene .scene-inner-last .scene-img {
    width: 70%;
    margin: 2em auto;
    display: flex;
    justify-content: center;
  }
  .cycle-wrap .cycle-about .scene .scene-inner-last .scene-img img {
    width: auto;
    margin: 0 .5em;
  }
  .cycle-wrap .cycle-about .scene span {
    display: block;
    margin: 40px 0;
    font-size: 13px;
  }
}

@media only screen and (max-width: 1044px) {
  /* スタートリスト */
  .cycle-wrap .section-wrap .team-link a {
    background: url(/img/web/page2/cycle/pickup/index/arrow-under.svg)no-repeat left 9px/10px;
  }
}

@media only screen and (max-width: 1005px) {
  /* ビギナーズ講座調整用 */
  .cycle-wrap .section-wrap.biginners .list-right-text {
    width: 66%;
    padding: 10px;
  }
  .cycle-wrap .section-wrap.biginners .list-right-text-top {
    margin-bottom: 3px;
  }
  .cycle-wrap .section-wrap.biginners .list-right-text-right-top span:last-child {
    font-size: 22px;
  }
}

@media only screen and (max-width: 1000px) {
  /* 注目選手紹介リスト調整 */
  .cycle-wrap .section-wrap .team-link ul {
    flex-wrap: wrap;
  }
  .cycle-wrap .section-wrap .team-link .team-link-list li,
  .cycle-wrap .section-wrap .team-link .team-link-list-last li  {
    width: 48%;
  }
  /* スタートリスト調整用 */
  .cycle-wrap .section-wrap .team-link.startlist-link ul {
    flex-wrap: nowrap;
  }
  .cycle-wrap .section-wrap.startlist-wrap .team-link-list li:first-child,
  .cycle-wrap .section-wrap.startlist-wrap .team-link-list li:nth-child(2),
  .cycle-wrap .section-wrap.startlist-wrap .team-link-list li:nth-child(3) {
    width: 30%;
  }
}

@media only screen and (max-width: 960px) {
  /* ビギナーズ講座調整用 */
  .cycle-wrap .section-wrap.biginners .list-wrap a {
    flex-wrap: wrap;
  }
  .cycle-wrap .section-wrap.biginners .list-left-img,
  .cycle-wrap .section-wrap.biginners .list-right-text {
    width: 100%;
  }
  .cycle-wrap .section-wrap.biginners .list-right-text-right-top span:last-child {
    font-size: 30px;
  }
  .cycle-wrap .section-wrap.biginners .list-right-text {
    padding: 10px 15px;
    min-height: 160px;
  }
  .cycle-wrap .section-wrap.biginners .list-right-list {
    font-size: 16px;
  }
}

@media only screen and (max-width: 768px) {
  #lightcase-overlay {
    background-color: rgba(0,0,0,0.7);
  }
  a[class*='lightcase-icon-'].lightcase-icon-close {
    display: none !important;
  }
  .h2-gradation {
    font-size: 17px;
  }
  /* SP版ビギナーズ講座 */
  .cycle-wrap .section-wrap.biginners .list-right-text {
    padding-bottom: 30px;
  }
  .cycle-wrap .section-wrap.biginners .list-wrap li {
    width: 100%;
  }
  .cycle-wrap .section-wrap.biginners .list-wrap li:not(:nth-child(2n)) {
    margin: 0 0 40px 0;
  }
  .cycle-wrap .section-wrap.biginners .list-wrap li {
    margin-bottom: 40px;
  }
  .cycle-wrap .section-wrap.biginners .calendar-note {
    padding: 0;
  }
  /* SP版選手の役割 */
  .cycle-wrap .role-wrap .h-section.sec-cont {
    padding-top: 40px;
  }
  .cycle-wrap .role-wrap .h-section:first-child {
    padding-top: 40px;
  }
  .cycle-wrap .role-wrap .p-link {
    flex-wrap: wrap;
    margin-top: 30px;
  }
  .cycle-wrap .role-wrap .p-link li {
    width: 40%;
    float: left;
    margin-right: 1em;
    padding: 10px 0;
    font-size: 16px;
  }
  .cycle-wrap .role-wrap .p-link a::after {
    top: 9px;
  }
  .cycle-wrap .role-wrap .r-flex-cont {
    flex-wrap: wrap-reverse;
  }
  .cycle-wrap .role-wrap .r-flex-cont .left-text,
  .cycle-wrap .role-wrap .r-flex-cont .right-img {
    width: 100%;
    max-width: 100%;
  }
  .cycle-wrap .role-wrap .r-flex-cont .left-text {
    margin-top: 10px;
  }
  .cycle-wrap .role-wrap .r-flex-cont .right-img {
    position: static;
  }
  .cycle-wrap .role-wrap .r-flex-cont .right-img span {
    font-size: 13px;
  }
  .cycle-wrap .role-wrap .photographer {
    margin-top: 40px;
  }
  .cycle-wrap .role-wrap .h-section:last-child {
    padding-bottom: 0;
  }
  /* SP版レースランクについて */
  .cycle-wrap .role-wrap.racerank-wrap .p-link {
    display: flex;
    justify-content:flex-start;
    flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 16px;
  }
  .cycle-wrap .role-wrap.racerank-wrap .p-link li {
    width: 50%;
    margin-right: 0;
    margin-bottom: 2em;
    font-size: 16px;
  }
  .cycle-wrap .role-wrap.racerank-wrap .h-section.top-sec {
    padding: 50px 0 0;
  }
  .cycle-wrap .role-wrap.racerank-wrap .h-section {
    padding: 40px 0;
  }
  .cycle-wrap .role-wrap.racerank-wrap .under-cont h3 {
    padding: 8px 12px;
  }
  .cycle-wrap .role-wrap .rank-img {
    width: 100%;
    margin: 20px auto 0;
  }
  .cycle-wrap .role-wrap.racerank-wrap .zoom-button {
    padding: 5px 40px 5px 20px;
    margin-top: 10px;
    font-size: 15px;
  }
  /* SP版TV&現地での観戦方法 */
  .cycle-wrap .role-wrap.wathing-sec01 .p-link li {
    width: 45%;
    float: left;
    margin-right: 0;
    padding: 10px 0;
    font-size: 16px;
  }
  .cycle-wrap .role-wrap .pc-img {
    display: none;
  }
  .cycle-wrap .role-wrap .sp-img {
    display: block;
  }
  .cycle-wrap .role-wrap .watching-img-wrap,
  .cycle-wrap .role-wrap .bring-list .r-flex-cont .left-text,
  .cycle-wrap .role-wrap .bring-list .r-flex-cont .right-img {
    width: 100%;
  }
  .cycle-wrap .role-wrap .bring-list li {
    width: 100%;
  }
  .cycle-wrap .role-wrap .bring-list .r-flex-cont {
    flex-wrap: wrap-reverse;
    justify-content: center;
  }
  .cycle-wrap .role-wrap .bring-list li:last-child .r-flex-cont {
    padding-bottom: 0;
  }

  /* SP版年間放送カレンダー */
  .cycle-wrap .cycle-calendar:not(:first-of-type) {
    margin-top: 40px;
  }
  .cycle-wrap .calendar-inner {
    flex-wrap: wrap;
  }
  .cycle-wrap .cycle-bg-gray {
    padding: 20px 0 40px;
  }
  .cycle-wrap .calendar-inner .right-cont .right-cont-inner {
    flex-wrap: wrap;
    margin-top: 20px;
    padding-bottom: 15px;
  }
  .cycle-wrap .section-wrap.teamlist {
    margin-top: 50px;
  }
  .cycle-wrap .calendar-inner .right-cont {
    position: relative;
  }
  .cycle-wrap .calendar-inner .right-cont .right-top-flag {
    position: absolute;
    right: 0;
    top: 20px;
  }
  .cycle-wrap .calendar-inner .left-img,
  .cycle-wrap .calendar-inner .right-cont,
  .cycle-wrap .calendar-inner .right-cont .right-cont-desc {
    width: 100%;
    max-width: 100%;
  }
  .cycle-wrap .calendar-inner .right-cont .calendar-icon-img {
    width: 25%;
  }
  .cycle-wrap .calendar-inner .right-cont .calendar-title {
    margin-top: 20px;
    font-size: 16px;
  }
  .cycle-wrap .calendar-inner .right-cont p {
    padding-top: 15px;
  }

  /* SP版選手紹介 */
  .cycle-wrap #riders_top {
    margin-top: -50px;
    padding-top: 100px;
  }
  .cycle-wrap .section-wrap.riders-list,
  .cycle-wrap .list-cycle-wrap {
    margin-bottom: 0;
  }
  .cycle-wrap .list-wrap li {
    width: 100%;
    margin: 0 0 40px 0;
  }
  .cycle-wrap .list-wrap li:nth-last-of-type(-n+3) {
    margin-bottom: 40px;
  }
  .cycle-wrap .list-wrap li:last-child {
    margin-bottom: 0;
  }
  .cycle-wrap .list-left-img {
    width: 142px;
  }
  .cycle-wrap .list-right-text {
    width: 84%;
  }
  .cycle-wrap .list__desc {
    margin-top: 10px;
  }
  .cycle-wrap .d-md-none {
    display: block;
  }

  /* 注目選手紹介リスト調整 */
  .cycle-wrap .section-wrap .team-link .team-link-list li,
  .cycle-wrap .section-wrap .team-link .team-link-list-last li  {
    width: 100%;
    margin-right: 0;
    padding: 10px 0;
    font-size: 16px;
  }
  .cycle-wrap .section-wrap .team-link span,
  .cycle-wrap .section-wrap .uci-team-link span {
    margin-top: 10px;
  }
  .cycle-wrap .section-wrap .uci-team-link li {
    padding: 10px 0;
    margin-right: 0;
    font-size: 16px;
  }
  .cycle-wrap .section-wrap .team-link,
  .cycle-wrap .section-wrap .uci-team-link {
    margin: 30px 0;
  }

  /* SP版選手詳細 */
  .cycle-wrap .section-wrap.single {
    padding: 60px 0;
  }
  .cycle-wrap .main-title {
    font-size: 38px;
    padding: 0 75px 0 15px;
  }
  .cycle-wrap .bg-gray {
    padding: 30px 15px;
  }
  .cycle-wrap .right-img {
    position: absolute;
    width: 55px;
    top: -50px;
    right: 15px;
  }
  .cycle-wrap .single-name {
    font-size: 25px;
  }
  .cycle-wrap .single-name span {
    padding-top: 5px;
    margin-top: 5px;
    font-size: 19px;
  }
  .cycle-wrap .vertical-img,
  .cycle-wrap .horizontal-img {
    width: 100%;
    margin: 35px auto 28px;
  }
  .cycle-wrap .desc-title {
    padding-bottom: 10px;
  }
  .cycle-wrap .desc-list {
    flex-wrap: wrap;
    margin: 20px 0 0;
  }
  .cycle-wrap .desc-list ul:first-child,
  .cycle-wrap .desc-list ul:last-child {
    width: 100%;
  }
  .cycle-wrap .section-wrap .team-text {
    padding-top: 20px;
  }
  .cycle-wrap .section-wrap .team-text p:not(:last-child) {
    padding-bottom: 30px;
  }
  .cycle-wrap .external-link {
    padding-right: 30px;
    background: url(/img/web/page2/cycle/common/externallink.svg) no-repeat 95% center/10px;
  }
  .cycle-wrap .ghost-button {
    width: 250px;
    height: 35px;
    margin: 30px auto;
    background: url(/img/web/page2/cycle/common/externallink.svg) no-repeat 95% center/10px;
  }
  .cycle-wrap .bottom-pagenation {
    padding: 0 15px;
  }
  .cycle-wrap .prevlink {
    padding-left: 28px;
  }
  .cycle-wrap .nextlink {
    padding-right: 28px;
  }
  .cycle-wrap .section-wrap .desc-list.pickup-list ul {
    width: 100%;
    padding-bottom: 40px;
  }

  /* SP版選手詳細ペア */
  .cycle-wrap .section-wrap.single .w-cont {
    padding: 0;
  }

  /* SP版チーム紹介 */
  .cycle-wrap .section-wrap.cycle-team {
    padding: 60px 0 0;
  }
  .cycle-wrap .section-wrap.cycle-team .bg-gray {
    background: none;
  }
  .cycle-wrap .section-wrap.teamlist {
    padding: 0;
  }
  .cycle-wrap .section-wrap.teamlist .teamlist-wrap li {
    width: 100%;
    margin-right: 0;
  }
  /* SP版チーム詳細プロフ */
  .cycle-wrap .desc-list.team-list {
    margin: 20px 0;
  }
  .cycle-wrap .desc-list a {
    word-break: break-all;
  }
  .cycle-wrap .desc-list.team-list dt {
    width: 33%;
  }
  .cycle-wrap .desc-list.team-list dd {
    width: 67%;
  }
  /* SP版選手詳細プロフ */
  .cycle-wrap .section-wrap .desc-list.pickup-list dl {
    margin-bottom: 40px;
    width: 100%;
  }
  .cycle-wrap .section-wrap .desc-list.pickup-list dt {
    width: 25%;
  }
  .cycle-wrap .section-wrap .desc-list.pickup-list dd {
    width: 75%;
  }

  /* SP版 歴史 */
  .cycle-wrap .h-section {
    padding-top: 50px;
  }
  .cycle-wrap .h-section:last-child {
    padding-bottom: 40px;
  }

  /* SP版ONAIR */
  .cycle-wrap .onair-wrap .cycle-bg-gray {
    padding: 20px 0;
  }
  .cycle-wrap .onair-wrap .calendar-inner .right-cont .right-cont-inner {
    margin-top: 0;
    padding-bottom: 10px;
  }
  .cycle-wrap .onair-wrap .onair-time {
    padding-top: 10px;
  }
  .cycle-wrap .onair-wrap .date {
    margin-bottom: 0;
  }
  .cycle-wrap .onair-wrap .calendar-inner .right-cont .calendar-title {
    margin-top: 10px;
  }
  .cycle-wrap .onair-wrap .icon-wrap {
    justify-content: flex-start;
    margin-top: 15px;
    width: 100%;
  }
  .cycle-wrap .onair-wrap .icon-wrap li {
    width: 65px;
  }
  .cycle-wrap .onair-wrap .icon-wrap li:first-child {
    margin-right: 6px;
  }
  .cycle-wrap .onair-wrap .icon-wrap .sp-img {
    display: block;
  }
  .cycle-wrap .onair-wrap .icon-wrap .pc-img {
    display: none;
  }

  /* SP版動画 */
  .cycle-wrap .video-wrap .left-video {
    width: 100%;
    max-width: 100%;
  }
  .cycle-wrap .overlay-inner {
    width: 90%;
  }

  /* SP版ツール・大会スケジュール */
  .cycle-wrap .result-table.schedule-table table {
    max-width: 750px;
  }
  .cycle-wrap .result-table.schedule-table .table-width1 {
    width: 15%;
  }
  .cycle-wrap .result-table.schedule-table .table-width2 {
    width: 20%;
  }
  .cycle-wrap .result-table.schedule-table .table-width3 {
    width: 20%;
  }
  .cycle-wrap .result-table.schedule-table .table-width4 {
    width: 10%;
  }
  .cycle-wrap .result-table.schedule-table .table-width5 {
    width: 15%;
  }
  .cycle-wrap .result-table.schedule-table .table-width6 {
    width: 20%;
  }

  .cycle-wrap .schedule-icons {
    justify-content: space-between;
  }
  .cycle-wrap .schedule-icons li:not(:last-child) {
    margin-right: 10px;
  }
  .cycle-wrap .schedule-icons div {
    width: 30px;
    margin-right: 5px;
  }
  .cycle-wrap .schedule-icons span {
    font-size: 14px;
  }

  /* SP版ツール・ステージ詳細 */
  .cycle-wrap .rank-section {
    margin-bottom: 40px;
  }
  .cycle-wrap .result-table.time-schegule table {
    width: 900px;
  }

  /* SP版ツール・racecenter */
  .cycle-wrap .cycle-about .racecenter-img,
  .cycle-wrap .cycle-about .cyclerode img,
  .cycle-wrap .role-wrap.racecenter-wrap .sp-rank-img,
  .cycle-wrap .role-wrap.racecenter-wrap .sp-rank-img img {
    width: 100%;
  }
  .cycle-wrap .role-wrap.racecenter-wrap .rank-img {
    display: none;
  }
  .cycle-wrap .role-wrap.racecenter-wrap .sp-rank-img {
    display: block;
    margin-top: 0;
  }

  /* SP版ツール・リザルト */
  .cycle-wrap .result-wrap {
    margin-top: 40px;
  }
  .cycle-wrap .result-jersey .result-jersey-list li {
    width: 100%;
    align-items: end;
  }
  .cycle-wrap .result-jersey .result-jersey-list li:not(:last-child) {
    margin-right: 0;
  }

  /* SP版ツール・スタートリスト */
  .cycle-wrap .section-wrap .team-link.startlist-link {
    margin-bottom: 0;
  }
  .cycle-wrap .section-wrap .team-link.startlist-link ul {
    flex-wrap: wrap;
  }
  .cycle-wrap .section-wrap.startlist-wrap .team-link-list li:first-child,
  .cycle-wrap .section-wrap.startlist-wrap .team-link-list li:nth-child(2),
  .cycle-wrap .section-wrap.startlist-wrap .team-link-list li:nth-child(3) {
    width: 100%;
  }
  .cycle-wrap .section-wrap.startlist-wrap .startlist-bottom .pdf-button {
    margin: 10px auto;
  }
  .cycle-wrap .startlist-wrap.result-table {
    margin: 0;
  }
  .cycle-wrap .startlist-wrap .startlist-bottom {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .cycle-wrap .startlist-wrap .startlist-teamlist li {
    width: 100%;
    margin-bottom: 30px;
  }
  .cycle-wrap .startlist-wrap .startlist-bottom .comment.d-sp-none {
    display: none;
  }
  .cycle-wrap .startlist-wrap .startlist-bottom .comment.d-md-none {
    display: flex;
    margin-top: 40px;
  }

  /* SP版ツール・歴史・ルール */
  .cycle-wrap .tour-history-table,
  .cycle-wrap .tour-history-table.point-table td,
  .cycle-wrap .tour-history-table.mountain-table td,
  .cycle-wrap .tour-history-table.stage-table td {
    width: 100%;
  }
  .cycle-wrap .tour-history-table td,
  .cycle-wrap .tour-history-table th {
    border-right: 0;
    border-bottom: 0;
  }
  .cycle-wrap .tour-history-table td {
    display: block;
  }
  .cycle-wrap .tour-history-table.point-table .table-list li,
  .cycle-wrap .tour-history-table.mountain-table .table-list li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 5px;
  }
  .cycle-wrap .tour-history-table .d-sp-none {
    display: none;
  }
  .cycle-wrap .tour-rule-wrap .right-img {
    top: 3px;
  }
  .cycle-wrap .m-right {
    margin-right: 70px;
  }

  /* SP版ツール・present */
  .cycle-wrap .stage-wrap.present-wrap .top-cont .read {
    padding: 20px 0;
    font-size: 16px;
  }
  .cycle-wrap .present-wrap .present-text span {
    font-size: 16px;
  }
  .cycle-wrap .present-wrap .present-text {
    padding-bottom: 20px;
    margin-bottom: 40px;
  }
  .cycle-wrap .present-wrap .present-text ul {
    flex-wrap: wrap;
  }
  .cycle-wrap .present-wrap .present-text ul li {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .cycle-wrap .present-wrap .calendar-inner {
    padding: 0;
  }
  .cycle-wrap .present-wrap .calendar-inner .left-img,
  .cycle-wrap .present-wrap .calendar-inner .right-cont {
    width: 100%;
    max-width: 100%;
  }
  .cycle-wrap .present-wrap .calendar-inner .right-cont .calendar-title {
    font-size: 16px;
  }
  .cycle-wrap .present-wrap .calendar-inner .right-cont .border-under-text span {
    font-size: 14px;
  }

  /* SP版ブエルタとは */
  .cycle-wrap .vuelta-about .h2-under {
    margin: 20px 0;
  }
  .cycle-wrap .cycle-about .vuelta-about {
    padding-top: 40px;
  }

  /* SP版ブエルタ・ステージ詳細 */
  .cycle-wrap .stage-wrap .h2-under {
    padding: 20px 0;
  }
  .cycle-wrap .cycle-border-top {
    padding-top: 20px;
  }
  .cycle-wrap .stage-wrap .flex-cont {
    flex-wrap: wrap-reverse !important;
  }
  .cycle-wrap .stage-section .flex-cont .left-text {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0 !important;
  }
  .cycle-wrap .stage-section .flex-cont .left-text p {
    margin-top: 20px;
  }
  .cycle-wrap .stage-section .flex-cont .right-img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .cycle-wrap .stage-section .zoom-button {
    padding: 5px 40px 5px 20px;
    margin-top: 10px !important;
    font-size: 15px;
    height: 36px;
  }

  /* SP版ブエルタ・歴史 */
  .cycle-wrap .history-table {
    flex-wrap: wrap;
  }
  .cycle-wrap .history-table dl {
    width: 100%;
  }
  .cycle-wrap .history-table dl dt {
    width: 20%;
    padding: 0;
  }
  .cycle-wrap .history-table dl dd {
    width: 80%;
    padding: 0 0 0 10px;
  }

  /* SP版ハンマーシリーズ */
  .cycle-wrap .cycle-about.hammer-wrap .cyclerode {
    margin-bottom: 40px;
  }
  .cycle-wrap .hammer-team-wrap .list-team {
    padding: 0;
  }
  .cycle-wrap .section-wrap.hammer-team-wrap .list-team span {
    font-size: 16px;
  }
  .cycle-wrap .hammer-wrap .video-wrap {
    margin: 0 0 40px;
  }

  /* SP版ワンデーレース */
  .cycle-wrap .role-wrap .wathing-method.classic-section .r-flex-cont {
    flex-wrap: wrap;
  }
  .cycle-wrap .role-wrap .wathing-method.classic-section .r-flex-cont:last-child {
    padding-bottom: 0;
  }
  .cycle-wrap .wathing-method.classic-section .r-flex-cont .left-text {
    width: 100%;
    margin-top: 0;
  }
  .cycle-wrap .wathing-method.classic-section .r-flex-cont .right-img {
    width: 100%;
    margin-top: 20px;
  }

  /* SP版ステージレース */
  .cycle-wrap .section-wrap.stage-wrap {
    margin: 40px 0 20px;
  }
  .cycle-wrap .cycle-calendar.race-intro:first-of-type {
    margin-top: 20px;
  }
  .cycle-wrap .cycle-calendar.race-intro .cycle-bg-gray {
    padding: 20px 0;
  }
  .cycle-wrap .cycle-calendar.race-intro:not(:first-of-type) {
    margin-top: 0;
  }
  .cycle-wrap .stage-wrap .flex-cont {
    flex-wrap: wrap;
    margin: 40px 0;
  }
  .cycle-wrap .stage-wrap .flex-cont div:first-child {
    margin: 0 0 20px;
  }
  .cycle-wrap .stage-wrap .flex-cont div {
    width: 100%;
  }
  .cycle-wrap .cycle-calendar.race-intro .right-cont-desc .title-read {
    font-size: 13px;
  }
  .cycle-wrap .cycle-calendar.race-intro .right-cont-desc .title-read,
  .cycle-wrap .calendar-inner .right-cont .calendar-title {
    margin-bottom: 10px;
  }
  .cycle-wrap .calendar-inner .right-cont .calendar-title {
    margin-top: 10px;
  }
  .cycle-wrap .race-intro .calendar-inner .right-cont .right-cont-desc span:nth-child(3) {
    font-weight: normal;
  }
  .cycle-wrap .race-intro .under-cont a.ghost-button {
    width: 70%;
    height: 45px;
    margin: 0 auto;
  }
  .cycle-wrap .race-intro .under-cont
  .cycle-wrap .cycle-calendar.race-intro:not(:first-of-type) {
    margin-top: 0;
  }
  .cycle-wrap .race-intro .under-cont {
    flex-wrap: wrap;
  }
  .cycle-wrap .race-intro .button-wrap {
    width: 100%;
  }
  .cycle-wrap .race-intro .icon-wrap {
    margin-top: 20px;
  }
  .cycle-wrap .cycle-calendar.race-intro-bottom:not(:first-of-type) {
    margin: 40px 0;
  }
  .cycle-wrap .result-table {
    margin: 20px 15px 40px;
  }
  .cycle-wrap .cycle-calendar.race-intro .month {
    margin-top: 40px;
  }
  .cycle-wrap .cycle-calendar.race-intro .onair-button {
    display: none;
  }
  .cycle-wrap .race-intro .icon-wrap li {
    width: 65px;
  }
  .cycle-wrap .race-intro .under-cont .sp-img {
    display: block;
  }
  .cycle-wrap .race-intro .under-cont .pc-img {
    display: none;
  }
  /* page-link */
  .cycle-wrap .cycle-about .page-link {
    display: flex;
    justify-content:flex-start;
    flex-wrap: wrap;
    margin-top: 4em;
    margin-bottom: 2em;
    font-size: 16px;
  }
  .cycle-wrap .cycle-about .page-link li {
    width: 50%;
    margin-right: 0;
    padding: 10px 0;
    font-size: 16px;
  }
  /* サイクルロードレースとは */
  .cycle-wrap .cycle-about .cyclerode {
    margin: 0 0 40px;
  }
  .cycle-wrap .cycle-about .cyclerode .cyclerode-img {
    margin: 40px auto 20px;
  }
  .cycle-wrap .stage-wrap.hammer-wrap .flex-cont {
    margin: 40px 0 20px;
  }
  .cycle-wrap .stage-wrap .flex-cont div:first-child {
    margin: 0 0 30px;
  }
  .cycle-wrap .hammer-team-wrap p {
    padding: 40px 0 10px;
  }
  .cycle-wrap .hammer-team-wrap .list-cont-bottom:first-of-type {
    padding-bottom: 10px;
  }
  .cycle-wrap .cycle-calendar.race-intro .cycle-bg-gray {
    padding: 20px 0 40px;
  }
  /* レースの種類 */
  .cycle-wrap .cycle-about .racetype {
    padding-top: 0;
    margin: 0;
  }
  .cycle-wrap .cycle-about .racetype .h2-under {
    margin: 40px 0;
  }
  .cycle-wrap .cycle-about .racetype h3 {
    display: inline-block;
    padding: 8px 12px;
    color: #fff;
    background: #2d489d;
  }
  .cycle-wrap .cycle-about .racetype .timetrial {
    padding-bottom: 20px;
    border-bottom: 1px solid #9c9c9c;
  }
  .cycle-wrap .cycle-about .racetype .timetrial dl {
    margin: 20px 0;
  }
  .cycle-wrap .cycle-about .racetype .timetrial dl dt {
    margin-bottom: 20px;
  }
  .cycle-wrap .cycle-about .oneday-table .table-under {
    margin: 20px auto 40px;
  }
  /* ジャージの意味 */
  .cycle-wrap .cycle-about .jersey {
    padding: 40px 15px;
    margin: 0;
  }
  .cycle-wrap .cycle-about .jersey .h2-under {
    letter-spacing: 0.08em;
    margin: 40px 0 15px;
  }
  .cycle-wrap .cycle-about .jersey .jersey-top {
    margin-bottom: 40px;
    letter-spacing: 0.08em;
  }
  .cycle-wrap .cycle-about .jersey ul {
    display: block;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .cycle-wrap .cycle-about .jersey ul li {
    width: 100%;
  }
  .cycle-wrap .cycle-about .jersey ul li h4 {
    line-height: 1.5;
  }
  .cycle-wrap .cycle-about .jersey .world p {
    margin: 1em 0 0;
  }
  .cycle-wrap .cycle-about .jersey .national .national-inner {
    margin: 20px 0 0;
  }
  .cycle-wrap .cycle-about .jersey .national .national-inner p {
    margin: 10px 0 0;
  }

  /* レースあるある */
  .cycle-wrap .cycle-about .scene {
    padding: 40px 15px 0;
    margin: 0;
  }
  .cycle-wrap .cycle-about .scene .scene-inner-last {
    display: flex;
    flex-wrap: wrap;
    flex-flow: column-reverse;
  }
  .cycle-wrap .cycle-about .scene .scene-inner-last p {
    width: 100%;
    margin: 0;
  }
  .cycle-wrap .cycle-about .scene .scene-inner-last .scene-img {
    width: 100%;
    margin: 1.5em auto 0;
    display: flex;
    justify-content: center;
    flex-flow: column-reverse;
  }
  .cycle-wrap .cycle-about .scene .scene-inner-last .scene-img img {
    width: 100%;
    margin: 0 0 1em 0;
  }
  /* SP版歴代優勝者 */
  .cycle-wrap .result-table .fixed-table {
    width: 30.1%;
  }
  .cycle-wrap .result-table .scroll-table {
    margin-left: 30%;
    width: 630px;
  }
  .cycle-wrap .result-table .scroll-table .table-width {
    width: 126px;
  }
  .cycle-wrap .result-table .fixed-table td,
  .cycle-wrap .result-table .scroll-table td {
    height: 161px;
  }
}

@media only screen and (max-width: 459px) {
  /* レースランクについてリスト */
  .cycle-wrap .role-wrap.racerank-wrap .p-link {
    overflow: hidden;
    display: block;
    flex-wrap: wrap;
    margin: 30px 0;
    font-size: 16px;
  }
  .cycle-wrap .role-wrap.racerank-wrap .p-link li {
    width: auto;
    float: left;
    margin-right: 1em;
    margin-bottom: 0;
    padding: 10px 0;
  }
  /* page-link */
  .cycle-wrap .cycle-about .page-link {
    overflow: hidden;
    display: block;
    flex-wrap: wrap;
    margin-top: 40px;
    margin-bottom: 40px;
    font-size: 16px;
  }
  .cycle-wrap .cycle-about .page-link li {
    width: auto;
    float: left;
    margin-right: 1em;
    padding: 10px 0;
  }
}

@media only screen and (max-width: 320px) {
  /* SP版ツール・スタートリスト調整用 */
  .cycle-wrap .section-wrap.startlist-wrap .startlist-bottom .pdf-button,
  .cycle-wrap .startlist-wrap .startlist-bottom .pdf-button .ghost-button {
    width: 100%;
  }
}

@media only screen and (max-width: 360px) {
  /* SP版選手詳細調整用 */
  .cycle-wrap .section-wrap .desc-list.pickup-list dt {
    width: 30%;
  }
  .cycle-wrap .section-wrap .desc-list.pickup-list dd {
    width: 70%;
  }
  /* 選手の役割調整用 */
  .cycle-wrap .role-wrap .h2-gradation {
    display: block;
  }
  .cycle-wrap .role-wrap .h2-gradation span {
    margin: 6px 0 0 0;
  }
  /* SP版ツール大会スケジュール調整用 */
  .cycle-wrap .schedule-icons li:not(:last-child) {
    margin-right: 0;
  }
}

@media only screen and (max-width: 414px) {
  .cycle-wrap .toggle-wrap .result-table.toggle-result-table table {
    width: 600px;
  }
}

@media only screen and (min-width: 481px) {
  .cycle-wrap .section-wrap .desc-list.pickup-list dt br.u-hidden--pc {
    display: none;
}
@media only screen and (max-width: 480px) {
  /* SP版TV&現地での観戦方法調整用 */
  .cycle-wrap .role-wrap.wathing-sec01 .p-link li {
    width: 50%;
  }
  /* SP版 各チーム詳細 */
  .cycle-wrap .section-wrap .desc-list.pickup-list dt {
    width: 35%;
  }
  .cycle-wrap .section-wrap .desc-list.pickup-list dd {
    width: 65%;
  }
}

@media all and (-ms-high-contrast: none) {
  .h2-gradation {
    padding: 20px 10px 10px 32px;
  }
}

@supports (-ms-ime-align: auto) {
  .h2-gradation {
    padding: 15px 10px 10px 32px;
  }
}
