@charset "UTF-8";

/* resetcss */
*,
*::before,
*::after {
  box-sizing: border-box;
  word-break: break-all;
}

html,
body,
div,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table.table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
  line-height: inherit;
  text-align: inherit;
  vertical-align: baseline;
}

:focus {
  outline: 0;
}

html {
  font-size: 62.5%;
}

ol,
ul {
  list-style: none;
}

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

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

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

blockquote,
q {
  quotes: "" "";
}

a img {
  border: 0;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  line-height: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
}

a:active,
a:focus {
  outline: 0;
}

/* resetcss_end */

/* common */
html {
  overflow: auto;
}

html.is-fixed {
  overflow: hidden;
}

body {
  display: block;
  overflow: hidden;
  width: 100%;
  min-width: 100%;
  margin: 0 auto;
  font-family: "Noto Sans JP", "Helvetica", "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1.5;
  color: #3e3a39;
  text-align: left;
  font-feature-settings: "palt";
}

h2,
h3,
h4 {
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 0.2rem;
}

h3,
h4 {
  font-size: 2rem;
}

p {
  margin-bottom: 10px;
  line-height: 1.8;
}

li {
  line-height: 1.8;
}

a,
.btn,
.btn img {
  transition: 0.5s;
}

a:hover,
.btn:hover,
.btn:hover img {
  opacity: 0.7;
}

.btn {
  display: flex;
  font-weight: 700;
  align-items: center;
  justify-content: center;
}

.center {
  margin-right: auto;
  margin-left: auto;
}

.txt-left {
  text-align: left !important;
}

.txt-center {
  text-align: center !important;
}

.txt-primary {
  color: #00a0e9;
}

.text-green {
  font-size: small;
  color: #00a0e9;
}

.text-white {
  font-size: small;
  color: #fff;
}

.text-small {
  font-size: smaller;
  color: #00a0e9;
}

.txt-secondary {
  background: #ffff00;
  color: #00a0e9;
}

.txt-invert {
  padding: 7px 5px 10px;
  background: #00a0e9;
  font-size: 1.6rem;
  color: #fff;
}

.txt-attention {
  font-weight: 700;
  color: #e50012;
}

.txt-link {
  font-weight: 700;
  color: #2ca6e0;
}

.txt-underline {
  text-decoration: underline;
}

.txt-border {
  border-bottom: 2px solid #00a0e9;
}

.txt-light {
  font-weight: 400;
}

.txt-bold {
  font-weight: 700;
}

.txt-s {
  font-size: 1.3rem;
}

.txt-l {
  font-size: 1.8rem;
}

.txt-xl {
  font-size: 2.8rem;
}

.txt-lh-s {
  line-height: 1;
}

.txt-lh-m {
  line-height: 1.5;
}

.container {
  max-width: 1110px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
  text-align: center;
}

.outer,
.inner-s,
.inner-m,
.inner-l {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.outer {
  max-width: 700px;
}

.inner-s {
  max-width: 340px;
}

.inner-m {
  max-width: 500px;
}

.inner-l {
  max-width: 550px;
}

.wrapper {
  display: flex;
  flex-wrap: wrap;
}

.wrapper-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.wrapper-vertical {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.eq-height {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  /* fix IE11 */
}

.row {
  margin-right: -10px;
  margin-left: -10px;
}

.row-s {
  margin-right: -5px;
  margin-left: -5px;
}

.gutter-s > [class*="col-"] {
  padding-right: 5px;
  padding-left: 5px;
}

.col-1 {
  width: 100%;
}

.col-2 {
  width: calc(100% / 2);
}

.col-3 {
  width: 33.3333%;
  /* IE11 */
}

.col-4 {
  width: calc(100% / 4);
}

.col-1,
.col-2,
.col-3,
.col-4 {
  padding-right: 10px;
  padding-left: 10px;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-xs {
  margin-bottom: 10px !important;
}

.mb-s {
  margin-bottom: 30px !important;
}

.mb-m {
  margin-bottom: 40px !important;
}

.mb-l {
  margin-bottom: 50px !important;
}

.mb-xl {
  margin-bottom: 80px;
}

.mb-x {
  margin-bottom: 70px;
}

.sp-view {
  display: none !important;
}

.sm-view {
  display: none !important;
}

/* common_end */

/* header */
.top-header {
  position: relative;
  z-index: 100;
  width: 100%;
  padding-top: 58%;
  background: url(../images/top-hero.png) top center/100% no-repeat;
  background-color: #45B1E6;
}

.top-header.is-fixed {
  box-shadow: 0 7px 12px 0 rgba(0, 0, 0, 0.1);
}

.top-header__catch {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.top-header__img {
  position: absolute;
  top: calc(60px + 5vw);
  left: 50%;
  width: 60%;
  transform: translateX(-50%);
}

.top-header__join {
  position: absolute;
  bottom: 4vw;
  left: 5vw;
  width: 29%;
}

.header {
  position: relative;
  z-index: 100;
  width: 100%;
  padding-top: 15%;
  background: url(../images/hero.png) top center/100% no-repeat;
  background-color: #45B1E6;
}

.header.is-fixed {
  box-shadow: 0 7px 12px 0 rgba(0, 0, 0, 0.1);
}

.header__catch {
  position: absolute;
  z-index: 1000;
  top: 9%;
  left: 8.75%;
  display: block;
  width: 88%;
}

.header__date {
  display: none;
}

.header__date.is-hide {
  opacity: 0;
}

.gnav {
  position: fixed;
  top: 58px;
  left: 0;
  visibility: hidden;
  overflow-y: auto;
  overflow-y: auto;
  width: 100%;
  max-width: 100%;
  height: 0;
  padding-bottom: 60px;
  background: #45B1E6;
  text-align: center;
  transition: 0.3s ease-in-out;
  transform: scaleY(0);
  transform-origin: top;
  flex-basis: 100%;
  flex-grow: 1;
  -webkit-overflow-scrolling: touch;
}

.gnav.is-open {
  visibility: visible;
  height: calc(100% - 58px);
  transition: 0.5s ease-in-out;
  transform: scaleY(1);
}

.gnav.is-disabled {
  transition: none !important;
}

.gnav__inner {
  padding: 30px 0 40px;
}

.gnav__date {
  max-width: 300px;
  margin-bottom: 40px;
}

.gnav__link {
  width: 250px;
  margin: 0 auto 30px;
  padding: 15px;
  border-radius: 10px;
  background: #fff;
  font-size: 1.7rem;
  color: #00a0e9;
  letter-spacing: 0.1rem;
}

.gnav__attention {
  padding: 20px;
  background: #e50012;
  color: #fff;
}

.gnav__attention span {
  position: relative;
  padding-right: 20px;
}

.gnav__attention span::after {
  position: absolute;
  top: 6px;
  right: 2px;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
  transform: rotate(45deg);
}

.gnav__info {
  color: #fff;
}

.toggle {
  position: fixed;
  z-index: 9999;
  top: 17px;
  right: 15px;
  width: 35px;
  height: 25px;
  cursor: pointer;
}

.toggle.is-open .toggle__item {
  background: transparent;
}

.toggle.is-open .toggle__item::before {
  margin-top: 0;
  transform: rotate(-45deg);
}

.toggle.is-open .toggle__item::after {
  margin-top: 0;
  transform: rotate(45deg);
}

.toggle__item,
.toggle__item::before,
.toggle__item::after {
  position: absolute;
  left: 0;
  display: block;
  width: 35px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  content: "";
  transition: 0.5s ease;
}

.toggle__item {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.toggle__item::before {
  margin-top: -10px;
}

.toggle__item::after {
  margin-top: 10px;
}

/* header_end */

/* main - top */
.top-title {
  margin-bottom: 30px;
  padding: 0 15px;
  font-size: 2.8rem;
  color: #fff;
  text-align: center;
}

.top-title span {
  display: inline-block;
  width: 100%;
  max-width: 780px;
  padding: 3px 10px 5px;
  border-radius: 5px;
  background: #45B1E6;
}

.top-intro {
  margin-top: -43vw;
  padding: calc(43vw + 30px) 20px 20px;
  background: #45B1E6;
}

.top-intro__inner {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.top-intro__catch {
  font-size: 2.4rem;
  color: #fff;
}

.top-intro__date {
  width: 100%;
  max-width: 500px;
  padding: 0 15px;
}

.top-nav {
  margin-bottom: 20px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #ffff00;
  transition: background-color 0.5s ease;
}

.top-nav:hover {
  background-color: #fff;
  opacity: 1;
}

.top-nav:nth-of-type(2) .top-nav__link {
  padding: 0 5px;
}

.top-nav__title {
  font-size: 2.4rem;
  color: #00a0e9;
}

.top-nav__list {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 10px;
  justify-content: space-around;
}

.top-nav__item {
  margin-bottom: 10px;
  padding: 0;
  border-right: 2px solid #00a0e9;
  font-weight: 700;
  line-height: 1.5;
  color: #595757;
  transform: skewX(165deg);
}

.top-nav__item:last-of-type {
  border: none;
}

.top-nav__link {
  display: flex;
  height: 100%;
  padding: 10px;
  font-size: 1.4rem;
  transform: skewX(-165deg);
  justify-content: center;
  align-items: center;
}

.swiper-slide {
  width: auto;
  opacity: 0.3;
  transition: opacity 0.5s ease;
}

.swiper-slide-active {
  opacity: 1;
}

.top-about {
  margin-bottom: 70px;
  padding-top: 60px;
  text-align: center;
}

.top-about__txt {
  padding: 0 15px;
  font-size: 2rem;
  line-height: 2.1;
  text-align: center;
}

.top-about--notice {
  margin-bottom: 100px;
  font-size: 1.6rem;
  text-align: center;
}

.top-info {
  padding: 65px 15px;
  background: #f2f2f2;
}

.top-info__title {
  padding: 0;
}

.top-info__panel {
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 15px;
  background: #fff;
}

.top-info__notice {
  max-width: 700px;
  margin: 0 auto 30px;
}

.top-info__notice--u {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}

.notice__title {
  margin-bottom: 20px;
  font-size: 1.6rem;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.2rem;
}

.notice__title--u {
  margin-bottom: 50px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
  color: #ff0000;
  letter-spacing: 0.12rem;
}

.notice__box {
  padding: 20px 15px;
  border: 2px solid #ff0000;
}

.notice__inner {
  max-width: 500px;
  margin: 0 auto;
}

.notice__subtitle {
  margin-bottom: 25px;
  font-size: 1.6rem;
  color: #ff0000;
  text-align: center;
  letter-spacing: 0.2rem;
}

.notice__number {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.3;
}

.notice__list {
  margin-bottom: 25px;
  padding-left: 30px;
}

.notice__item {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 2;
}

.notice__location {
  font-weight: 700;
}

.notice__panel {
  padding: 10px 0 15px;
  border-top: 2px solid #666;
  border-bottom: 2px solid #666;
}

.notice__txt {
  margin-bottom: 0;
  font-size: 1.6rem;
  font-weight: 700;
  color: #3e3a39;
}

.top-rally {
  padding: 80px 15px 130px;
}

.top-rally__title {
  margin-bottom: 15px;
  font-size: 3rem;
  color: #00a0e9;
  text-align: center;
}

.top-rally__txt {
  margin-bottom: 50px;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.9;
  text-align: center;
}

.top-rally__img {
  max-width: 1110px;
  margin: 0 auto 70px;
  padding: 0 20px;
}

.top-rally__present {
  position: relative;
  max-width: 700px;
  margin: 0 auto 60px;
  padding: 30px 15px 15px;
  background: #f2f2f2;
}

.top-rally__present-img {
  margin-bottom: 10px;
}

.top-rally__notice {
  font-size: 1.6rem;
  font-weight: 300;
}

.top-rally__btn {
  max-width: 600px;
  margin: 0 auto;
  padding: 45px;
  border-radius: 80px;
  background: #e95513;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  text-indent: 0.22rem;
  letter-spacing: 0.22rem;
}

.top-course {
  padding-bottom: 50px;
  background: linear-gradient(180deg, #fff 0%, #fff 25px, #f2f2f2 25px, #f2f2f2 100%);
}

.top-course_join {
  padding-bottom: 50px;
  background: linear-gradient(180deg, #fff 0%, #fff 25px, #fff 25px, #fff 100%);
}

.top-course__map {
  max-width: 300px;
  margin-bottom: 20px;
}

.top-course__wrapper {
  max-width: 810px;
  margin: 0 auto;
  padding: 0 15px;
}

.top-course__box {
  display: block;
  padding: 20px 20px;
  border-radius: 10px;
  background: #fff;
  text-align: center;
}

.top-course__box:hover .top-course__thumbnail {
  transform: rotate(0deg);
}

.top-course__name {
  margin-bottom: 15px;
  font-size: 2.3rem;
  line-height: 1.4;
  color: #00a0e9;
}

.top-course__txt {
  margin-bottom: 20px;
}

.top-course__thumbnail {
  margin-bottom: 30px;
  border: 8px solid #fff;
  box-shadow: 3px 3px 6px #888888;
  transition: 0.3s;
  transform: rotate(5deg);
}

.top-course__link {
  border-radius: 50px 50px 50px 50px;
  background-color: #ffff00;
  color: #00a0e9;
}

/* main - join */
.join-title {
  padding: 25px 15px;
  background: #45B1E6;
  text-align: center;
}

.join-title__txt {
  display: inline-block;
  padding: 15px 60px;
  border-radius: 10px;
  background: #e95513;
  font-size: 3rem;
  color: #fff;
}

.join-step {
  position: relative;
  width: 100%;
  padding: 100px 0 120px;
}

.join-step__group {
  position: relative;
  margin-bottom: 65px;
  text-align: left;
}

.join-step__group::after {
  position: absolute;
  bottom: -52px;
  left: 50%;
  display: inline-block;
  width: 40px;
  height: 20px;
  background: url(../images/join/step-arrow.svg) no-repeat center center/cover;
  content: "";
  transform: translate(-50%, -50%);
}

.join-step__group.step1 .join-step__title {
  margin-bottom: 25px;
}

.join-step__group.step1 .join-step__box {
  position: relative;
  width: calc(50% - 15px);
  margin-right: 30px;
  padding-bottom: 20px;
}

.join-step__group.step1 .join-step__box:last-of-type {
  margin-right: 0;
  margin-bottom: 0;
}

.join-step__group.step2 .join-step__box {
  align-items: center;
}

.join-step__group.step3 {
  margin-bottom: 0;
}

.join-step__group.step3::after {
  display: none;
}

.join-step__group.step3 .join-step__box {
  justify-content: space-between;
}

.join-step__title {
  position: relative;
  z-index: 1;
  margin-bottom: -12px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
}

.join-step__box {
  padding: 55px 25px 55px 55px;
  background: #fff;
}

.join-step__txt {
  line-height: 2;
}

.join-step__txt--mb {
  margin-bottom: 15px;
  line-height: 2;
}

.join-step__flag {
  position: absolute;
  top: -10px;
  left: 50%;
  width: 130px;
  margin-bottom: 10px;
  transform: translateX(-50%);
}

.join-step__img-rally {
  max-width: 315px;
}

.join-step__img-gpx {
  max-width: 420px;
  margin-top: 30px;
  margin-left: 0;
}

.join-step__detail {
  max-width: 50%;
}

.join-step__subtitle {
  margin-bottom: 10px;
  padding: 11px;
  background: #747474;
  color: #fff;
  letter-spacing: 0.1rem;
}

.join-covid {
  padding: 60px 0 150px;
  background: #fff;
}

.join-covid__title {
  margin-bottom: 30px;
  font-size: 2.8rem;
  line-height: 2;
  color: #e50012;
  text-indent: 0.2rem;
  letter-spacing: 0.2rem;
}

.join-covid__title span {
  display: block;
  text-indent: 0.5rem;
  letter-spacing: 0.5rem;
}

.join-covid__wrapper {
  margin: 0 -20px 60px;
}

.join-covid__img {
  width: 50%;
  padding: 0 20px;
  border-right: 1px solid #000;
  margin: 0 auto;
}

.join-covid__img:last-of-type {
  border-right: none;
}

.join-covid__btn {
  max-width: 520px;
  margin: 0 auto 80px;
}

.join-app__list {
  display: flex;
  padding: 0 25px;
  justify-content: space-between;
}

.join-app__item {
  display: flex;
  width: 45%;
  align-items: flex-end;
}

.join-app__link {
  width: 50%;
  padding-right: 10px;
}

.join-app__link--gp {
  width: 40%;
}

.join-app__qr {
  width: 50%;
}

.join-manner__inner {
  position: relative;
  padding: 50px 25px 30px;
  border: 1px solid #000;
  border-radius: 10px;
}

.join-manner__title {
  position: absolute;
  top: -15px;
  left: 50%;
  padding: 0 20px;
  background: #fff;
  font-size: 1.8rem;
  color: #e50012;
  white-space: nowrap;
  text-indent: 0.2rem;
  letter-spacing: 0.2rem;
  transform: translateX(-50%);
}

.join-manner__item {
  position: relative;
  width: 33.33%;
  padding: 0 30px;
}

.join-manner__item:last-of-type::after {
  display: none;
}

.join-manner__item::after {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 1px;
  height: 100%;
  background: #000;
  content: "";
}

.join-present {
  padding-bottom: 80px;
}

.join-present__title {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 500px;
  margin-bottom: 105px;
  padding: 35px 15px 25px;
  background: #e95513;
  font-size: 3rem;
  color: #fff;
}

.join-present__title::after {
  position: absolute;
  bottom: -60px;
  left: 50%;
  display: inline-block;
  border-width: 40px 250px 0;
  border-style: solid;
  border-color: #e95513 transparent transparent;
  content: "";
  transform: translate(-50%, -50%);
}

.join-present__rally {
  position: relative;
  max-width: 700px;
  margin: 0 auto 60px;
  padding: 30px 15px 15px;
  background: #fff;
}

.join-present__rally-img {
  margin-bottom: 10px;
}

.join-present__img {
  max-width: 700px;
  margin: 0 auto 80px;
}

.join-rule {
  padding: 45px 15px 60px;
  background: #fff;
}

.join-rule__inner {
  max-width: 540px;
  margin: 0 auto;
}

.join-rule__img {
  margin-bottom: 35px;
}

.join-rule__info {
  max-width: 360px;
  margin-bottom: 50px;
}

.join-rule__btn {
  max-width: 350px;
  margin: 0 auto;
}

/* main - course */
.main {
  background: #f2f2f2;
}

.course-container {
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
}

.course-nav {
  padding: 10px 0 20px;
  background: #45B1E6;
}

.course-nav__list {
  max-width: 790px;
  margin: 0px auto;
  font-size: 2.3rem;
  font-weight: bold;
  color: #00a0e9;
  text-align: center;
}

.course-nav__current {
  background: #fff;
  color: #deecd5;
}

.course-nav a,
.course-nav p {
  margin-bottom: 0;
  padding: 10px;
  border-radius: 10px;
  line-height: 1.3;
}

.course-select {
  padding: 40px 15px;
  background: #fff;
  text-align: center;
}

.course-select__title {
  font-size: 2.1rem;
}

.course-select__list {
  max-width: 1000px;
  margin: 0 auto;
}

.course-select .btn {
  height: 100%;
  padding: 30px 10px;
  border-radius: 10px;
  background: #00a0e9;
  line-height: 1.5;
  color: #fff;
}

.course-select .col-4 .btn {
  padding: 20px 10px;
}

.course {
  margin-top: -40px;
  margin-bottom: 150px;
  padding-top: 40px;
}

.course:last-of-type {
  margin-bottom: 110px;
}

.course__detail {
  padding: 40px 15px 50px;
  background: #fff;
}

.course__detail h2 {
  position: relative;
  font-size: 2.8rem;
}

.course__detail h2::before {
  position: absolute;
  top: 5px;
  left: 0;
  display: inline-block;
  width: 100px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}

.course__detail .txt-invert {
  margin-bottom: 0;
  padding-right: 0;
  padding-left: 0;
  font-size: 1.2rem;
  letter-spacing: -0.05rem;
}

.course__detail .wrapper {
  align-items: center;
}

.course__detail .txt-secondary {
  display: inline-block;
  width: 60px;
  padding: 2px 10px;
  font-size: 1.3rem;
  text-align: center;
}

.course__detail .txt-secondary + .txt-bold {
  padding-left: 5px;
}

.course-join {
  position: relative;
  padding: 50px 15px 40px;
  border-radius: 5px;
  background: #e95513;
  color: #fff;
}

.course-join__title {
  position: absolute;
  top: -25px;
  left: 50%;
  width: calc(100% - 30px);
  max-width: 550px;
  padding: 3px 10px 5px;
  border: 2px solid #e95513;
  border-radius: 10px;
  background: #fff;
  font-size: 2.8rem;
  color: #e95513;
  transform: translateX(-50%);
}

.course-join__txt {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: 700;
}

.course-join__txt--s {
  font-size: 1.6rem;
}

.course-join .btn {
  max-width: 345px;
  margin: 0 auto;
  padding: 10px;
  border: 2px solid #000;
  border-radius: 15px;
  background: #fff;
  box-shadow: 2px 2px #eeeeef;
}

.course-join img {
  width: 80px;
}

.beginner::before {
  background-image: url(../images/beginner.svg);
}

.intermediate::before {
  background-image: url(../images/intermediate.svg);
}

.expert::before {
  background-image: url(../images/expert.svg);
}

.img-checkpoint {
  max-width: 110px;
}

.point {
  position: relative;
  margin-bottom: 40px;
}

.point::before {
  position: absolute;
  z-index: 1;
  top: -12px;
  left: 5px;
  display: inline-block;
  width: 30px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}

.point img {
  width: 100%;
}

.point-01::before {
  background-image: url(../images/point-01.svg);
}

.point-02::before {
  background-image: url(../images/point-02.svg);
}

.point-03::before {
  background-image: url(../images/point-03.svg);
}

.point-04::before {
  background-image: url(../images/point-04.svg);
}

.point-05::before {
  background-image: url(../images/point-05.svg);
}

.point-06::before {
  background-image: url(../images/point-06.svg);
}

.point-07::before {
  background-image: url(../images/point-07.svg);
}

.point-08::before {
  background-image: url(../images/point-08.svg);
}

.point-09::before {
  background-image: url(../images/point-09.svg);
}

.point-10::before {
  background-image: url(../images/point-10.svg);
}

.download {
  max-width: 400px;
  padding: 20px 0 10px 10px;
  border: 2px solid #00a0e9;
  border-radius: 10px;
  align-items: center;
}

.download .btn {
  padding: 0 10px;
}

.download img {
  width: 50px;
  margin-bottom: 10px;
}

iframe {
  width: 100%;
  height: 500px;
}

.embedly-responsive {
  position: relative;
  overflow: hidden;
  height: 500px;
}

.embedly-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* main_end */
/* btn-join */
.btn-join {
  position: fixed;
  z-index: 100;
  top: 30%;
  right: 0;
  display: block;
  width: 150px;
  border-radius: 15px;
  box-shadow: 0 0 15px -5px rgba(0, 0, 0, 0.9);
}

.btn-join__btn {
  width: 100%;
  height: 100%;
}

/* btn-join */

/* footer */
.footer {
  padding: 50px 20px 20px;
  text-align: center;
}

.footer p {
  margin-bottom: 0;
}

.footer img {
  width: 100%;
  /* IE11 */
}

.footer__logo {
  max-width: 300px;
}

.footer__logo--cyclist {
  max-width: 130px;
}

.footer__info p {
  font-size: 1.6rem;
}

.footer__info .mb-l {
  font-size: 2rem;
}

/* footer_end */

@media screen and (max-width: 1200px) {
  .join-step__group.step1 .join-step__box {
    padding: 55px 25px 20px 25px;
  }
  .join-step__group.step3 .join-step__img {
    padding: 0 20px;
  }
  .join-step__box {
    justify-content: center;
  }
  .join-step__box div:first-child {
    margin-bottom: 15px;
  }
  .join-app__list {
    padding: 0 10px;
  }
  .btn-join {
    width: 100px;
    height: 100px;
  }
}

@media screen and (max-width: 768px) {
  h3,
  h4 {
    font-size: 1.8rem;
  }
  .txt-left-sp {
    text-align: left !important;
  }
  .txt-xl {
    font-size: 2.2rem;
  }
  .container {
    max-width: 750px;
  }
  .col-2 {
    width: 100%;
  }
  .col-3 {
    width: 100%;
  }
  .col-4 {
    width: calc(100% / 2);
  }
  .col-1,
  .col-2,
  .col-3,
  .col-4 {
    margin-bottom: 40px;
  }
  .col-1.last,
  .col-2.last,
  .col-3.last,
  .col-4.last {
    margin-bottom: 0;
  }
  .mb-s {
    margin-bottom: 20px !important;
  }
  .mb-m {
    margin-bottom: 30px !important;
  }
  .mb-l {
    margin-bottom: 40px;
  }
  .mb-xl {
    margin-bottom: 60px;
  }
  .mb-x {
    margin-bottom: 70px;
  }
  .pc-view {
    display: none !important;
  }
  .sp-view {
    display: block !important;
  }
  .top-header {
    padding-top: 125%;
    background: url(../images/top-hero-sp.png) bottom center/100% no-repeat;
  }
  .top-header__inner {
    position: fixed;
    z-index: 100;
    top: 0;
    width: 100%;
    height: 60px;
    padding-top: 0;
    background: #45B1E6;
  }
  .top-header__catch {
    top: 5px;
    bottom: auto;
    left: 15px;
    width: 100px;
  }
  .header {
    position: fixed;
    height: 60px;
    padding-top: 0;
    background: #45B1E6;
  }
  .header__catch {
    top: 5px;
    bottom: auto;
    left: 15px;
    width: 100px;
  }
  .header__date {
    position: absolute;
    top: 50%;
    right: 60px;
    display: block;
    width: 130px;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    transform: translateY(-50%);
  }
  .top-title {
    margin-bottom: 20px;
    font-size: 2.2rem;
  }
  .top-intro {
    padding: calc(43vw + 20px) 15px 20px;
  }
  .top-intro__catch {
    font-size: 2rem;
    color: #000;
    letter-spacing: 0;
  }
  .top-intro__date {
    max-width: 90%;
  }
  .top-nav:nth-of-type(2) .top-nav__link {
    padding: 20px 0;
  }
  .top-nav__title {
    font-size: 2rem;
  }
  .top-nav__list {
    padding: 0 30px;
  }
  .top-nav__item {
    margin-bottom: 0;
    border-right: none;
    border-bottom: 2px solid #00a0e9;
    transform: none;
  }
  .top-nav__link {
    padding: 20px 0;
    transform: none;
  }
  .top-nav .col-4 {
    width: 100%;
  }
  .top-about {
    margin-bottom: 50px;
    padding-top: 40px;
  }
  .top-about__txt {
    font-size: 1.6rem;
    line-height: 2;
  }
  .top-info {
    padding: 40px 15px;
  }
  .top-info__notice {
    margin-bottom: 20px;
  }
  .notice__title {
    font-size: 1.5rem;
    letter-spacing: 0rem;
  }
  .notice__title--u {
    margin-bottom: 30px;
    font-size: 1.5rem;
    letter-spacing: 0;
  }
  .notice__subtitle {
    margin-bottom: 20px;
    font-size: 1.5rem;
    letter-spacing: 0;
  }
  .notice__number {
    font-size: 1.5rem;
    letter-spacing: 0;
  }
  .notice__list {
    margin-bottom: 20px;
    padding-left: 16px;
  }
  .notice__list:last-of-type {
    margin-bottom: 0;
  }
  .notice__item {
    font-size: 1.4rem;
  }
  .notice__txt {
    font-size: 1.4rem;
  }
  .top-rally {
    padding: 40px 15px 50px;
  }
  .top-rally__title {
    margin-bottom: 10px;
    font-size: 2.2rem;
    letter-spacing: 0;
  }
  .top-rally__txt {
    margin-bottom: 40px;
    font-size: 1.5rem;
  }
  .top-rally__img {
    max-width: 360px;
    margin: 0 auto 50px;
    padding: 0 10px;
  }
  .top-rally__present {
    margin-bottom: 40px;
  }
  .top-rally__notice {
    font-size: 1.5rem;
  }
  .top-rally__btn {
    padding: 20px;
    font-size: 1.8rem;
  }
  .top-course {
    background: linear-gradient(180deg, #fff 0%, #fff 20px, #f2f2f2 20px, #f2f2f2 100%);
  }
  .top-course {
    padding-bottom: 0;
  }
  .top-course__name {
    font-size: 1.7rem;
  }
  .join-title {
    padding: 15px;
  }
  .join-title__txt {
    padding: 10px 50px;
    font-size: 2.2rem;
  }
  .join-step {
    padding: 50px 0 60px;
  }
  .join-step__group.step1 .join-step__title {
    margin-bottom: 20px;
  }
  .join-step__group.step1 .join-step__box {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
    padding-right: 15px;
    padding-left: 15px;
  }
  .join-step__group.step3 .join-step__img {
    padding: 0;
  }
  .join-step__title {
    font-size: 1.6rem;
  }
  .join-step__box {
    padding: 40px 15px 20px;
  }
  .join-step__txt {
    line-height: 1.8;
  }
  .join-step__txt--mb {
    line-height: 1.8;
  }
  .join-step__detail {
    max-width: 100%;
  }
  .join-covid {
    padding: 40px 0 70px;
  }
  .join-covid__title {
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.1rem;
  }
  .join-covid__wrapper {
    margin-bottom: 0;
  }
  .join-covid__img {
    width: 100%;
    margin-bottom: 40px;
  }
  .join-covid__btn {
    margin-bottom: 50px;
  }
  .join-manner__inner {
    max-width: 400px;
    margin: 0 auto;
  }
  .join-manner__item {
    width: 100%;
    margin-bottom: 30px;
  }
  .join-manner__item::after {
    display: none;
  }
  .join-present {
    padding-bottom: 50px;
  }
  .join-present__title {
    max-width: 430px;
    margin-bottom: 85px;
    padding: 25px 15px 10px;
    font-size: 1.8rem;
  }
  .join-present__title::after {
    border-width: 40px 215px 0;
  }
  .join-present__rally {
    margin-bottom: 40px;
  }
  .join-present__img {
    margin-bottom: 50px;
  }
  .join-rule {
    padding: 35px 15px 45px;
  }
  .join-rule__img {
    margin-bottom: 25px;
  }
  .join-rule__info {
    max-width: 300px;
    margin-bottom: 35px;
  }
  .main {
    padding-top: 60px;
  }
  .course-nav {
    padding: 10px 0;
  }
  .course-nav__list {
    font-size: 2rem;
  }
  .course-select {
    padding: 20px 15px;
  }
  .course-select__title {
    font-size: 1.8rem;
  }
  .course {
    margin-top: -80px;
    margin-bottom: 60px;
    padding-top: 80px;
  }
  .course:last-of-type {
    margin-bottom: 20px;
  }
  .course__detail {
    padding: 20px 15px;
  }
  .course__detail h2 {
    font-size: 2.2rem;
  }
  .course__detail h2::before {
    position: static;
    display: block;
  }
  .course-join__title {
    top: -20px;
    border-radius: 8px;
    font-size: 2.2rem;
  }
  .course-join__txt {
    font-size: 1.5rem;
  }
  .point {
    margin-bottom: 30px;
  }
  iframe {
    height: 350px;
  }
  .embedly-responsive {
    height: 0;
    padding-bottom: 78.2227%;
  }
  .btn-join {
    top: auto;
    right: 50%;
    bottom: 0;
    width: 100%;
    max-width: 220px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 -7px 12px 0 rgba(0, 0, 0, 0.1);
    transform: translateX(50%);
  }
  .footer {
    padding: 40px 20px 70px;
  }
  .footer__info .mb-l {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 480px) {
  .txt-left-sm {
    text-align: left !important;
  }
  .txt-xl {
    font-size: 2rem;
  }
  .col-4 {
    width: 100%;
  }
  .sm-view {
    display: block !important;
  }
  .gnav__date {
    max-width: 80%;
    margin-bottom: 30px;
  }
  .gnav__link {
    margin-bottom: 20px;
  }
  .top-intro__catch {
    font-size: 4vw;
    letter-spacing: 0;
  }
  .swiper-wrapper {
    height: 180px;
  }
  .swiper-slide img {
    width: auto;
    height: 100%;
  }
  .top-about__txt {
    text-align: left;
  }
  .top-about--notice {
    margin-bottom: 50px;
    text-align: left;
  }
  .top-rally__txt {
    text-align: left;
  }
  .top-course__map {
    max-width: 260px;
  }
  .join-step__img-rally {
    max-width: 100%;
  }
  .join-manner__inner {
    padding: 40px 15px 0;
  }
  .join-manner__item {
    padding: 0;
  }
  .join-present__title {
    max-width: 100%;
  }
  .join-present__title::after {
    border-width: 40px calc(50vw - 15px) 0;
  }
  .join-rule__img {
    margin-bottom: 20px;
  }
  .join-rule__info {
    max-width: 250px;
  }
  .course-select .col-4:last-of-type {
    margin-bottom: 0;
  }
  .course__detail .txt-secondary {
    display: block;
  }
  .course__detail .txt-secondary + .txt-bold {
    padding-left: 15px;
  }
  .course-join__title {
    font-size: 2rem;
    letter-spacing: 0;
  }
  .course-join__txt {
    text-align: left;
  }
  .course-join__txt--s {
    font-size: 1.4rem;
  }
  .course-join .btn {
    font-size: 250px;
  }
  .course-join img {
    width: 50px;
  }
  .btn-join__btn {
    max-width: 300px;
    margin: 0 auto;
  }
  .btn-join__btn img {
    padding: 10px 20px;
  }
  .footer__logo {
    max-width: 230px;
  }
}

/* 一時 */
.dis_none { display: none; }
