@charset "utf-8";
@import url("global.css");

/*---------------------------------------------------------------------------------------
	トップページ
----------------------------------------------------------------------------------------*/

.h1 {
    color: #fff;
    background: var(--accent);
    text-align: center;

    font-size: 5rem;
    font-weight: bold;
    font-style: italic;
    line-height: 1.1;
    letter-spacing: .02em;

    margin-bottom: .5em;
    padding: .5em 1em;

        /* 左右を斜めに */
    clip-path: polygon(
        4% 0,
        100% 0,
        96% 100%,
        0 100%
    );

}
.h1-sub {
    font-size: 3rem;
    font-weight: 800;
}
.h1-sub span{
	font-size: 110%;
}
.h1-sub span.small{
    font-size: 60%;
    font-weight: normal;
}
.txt-box {
	background: var(--bg);
	padding: 1em;
	border-radius: 10px;
	margin: 1em 0;
}
.h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-dark);
    margin-bottom: .8em;
}
.h3 {
    position: relative;
    color: #fff;
    background: var(--accent);

    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.4;

    margin-bottom: .8em;
    padding: .45em 1em;

    border-radius: 5px;
}

.h3.jizen {
    background: var(--accent-dark);
}
.h3.toujitsu {
    background: var(--accent2);
}
.h3.special {
    background: #0E6EB8;
}
/*背景*/
body {
  background: url("../images/back.jpg") no-repeat center center / cover;
  background-attachment: fixed;
  min-height: 100vh;
}
header figure {
    width: 96%;
    max-width: 1300px;
    margin: 0 auto;
}
main {
    background: #fff;
    border-radius: 30px;
    padding: 1.5em;
    margin: 20px auto;
    width: 96%;
    max-width: 1400px;
}
/* SP */
@media screen and (max-width: 767px) {
    body {
        margin: 0;
        min-height: 100vh;

        background-image: url("../images/back.jpg");
        background-repeat: repeat-y;
        background-position: center top;
        background-size: 100% auto;
    }

	.h1 {
	    font-size: 2.4rem;
	}
	.h1-sub {
	    font-size: 1.8rem;
	}
	.h1-sub span{
		font-size: 110%;
	}

	.h2 {
	    font-size: 2.4rem;
	}
    .h3 {
        font-size: 2rem;
    }
    main {
        border-radius: 10px;
        padding: 1em .5em;
        margin: 20px 10px;
    }

}

/* ==============================
   ページ内リンク
============================== */

#pglink {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .8em;

    margin: 3em 0;
    padding: 0;

    list-style: none;
}

#pglink li {
    margin: 0;
    padding: 0;
}

#pglink li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: .6em 2.5em .6em 1.2em;

    background: #fff;
    border: 2px solid var(--accent);
    border-radius: 999px;

    color: var(--accent);
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;

    transition: .2s;
}

/* 下向き矢印 */
#pglink li a::after {
    content: "";
    position: absolute;
    right: 1em;
    top: 50%;

    width: .55em;
    height: .55em;

    border-right: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);

    transform: translateY(-70%) rotate(45deg);
}

#pglink li a:hover {
    background: var(--accent);
    color: #fff;
}

#pglink li a:hover::after {
    border-color: #fff;
}
/* ==============================
   体験プログラム
============================== */
.program-list {
    margin: 2em 0;
}

.program-group {
    margin-bottom: 2em;
    padding: 1em;
    border-radius: 10px;
}
.program-group.nagai {
    background: #006EB7;
}
.program-group.hanasaka {
    background: #EC6E82;
}
.program-group.hiroba {
    background: #F8B62C;
}
.program-group__title {
    margin: 0 0 .7em;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.4;
    color: #fff;
}

.program-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}



/*  各プログラム*/

.program-item {
    display: flex;
    align-items: center;
    gap: 20px;

    padding: 10px;

    background: #fff;
    border-radius: 10px;
}


/* ロゴ */

.program-item__logo {
    flex: 0 0 130px;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 110px;
}

.program-item__logo img {
    display: block;
    max-width: 120px;
    max-height: 100px;
    width: auto;
    height: auto;
}


/* 複数ロゴ */

.program-item__logo--multiple {
    flex-wrap: wrap;
    gap: 8px;
}

.program-item__logo--multiple img {
    max-width: 52px;
    max-height: 65px;
}


/* 内容 */

.program-item__body {
    flex: 1;
    min-width: 0;
}


/* チーム名 */

.program-item__team {
    margin: 0 0 .4em;

    font-size: 1.5rem;
    line-height: 1.5;
}


/* 競技＋定員 */

.program-item__main {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .5em;

    margin-bottom: .15em;
}

.program-item__sport {
    margin: 0;

    color: #333;
    font-size: 2.3rem;
    font-weight: bold;
    line-height: 1.25;
}

.program-item__sport span {
    font-size: .65em;
}


/* 定員 */

.program-item__capacity {
    display: inline-block;

    padding: .15em .55em;

    background: #e60012;
    color: #fff;

    border-radius: 999px;

    font-size: 1.4rem;
    font-weight: bold;
    white-space: nowrap;
}


/* 時間 */

.program-item__time {
    margin: .35em 0 0;

    color: #333;
    font-size: 1.7rem;
    font-weight: bold;
}


/* 申込 */
.program-entry__title {
    position: relative;
    color: var(--accent-dark);
    border: 5px solid var(--accent-dark);
    border-radius: 10px;
    padding: .5em 1em;
    font-size: 2.4rem;
    font-weight: 800;
    text-align: center;
}

.program-entry__title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -14px;
    transform: translateX(-50%);

    width: 0;
    height: 0;

    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 14px solid var(--accent-dark);
}

.btn-program-entry a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 56px;
    padding: 12px 50px;
    border: 2px solid var(--accent-dark);
    border-radius: 999px;
    background: var(--accent-dark);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: .2s;
    font-size: 3rem;
}
.btn-program-entry a:hover {
    background: #fff;
    color: var(--accent-dark);
}
.btn-program-entry a::after {
    content: "";
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: url(../images/arrow-next-w.svg) no-repeat center / contain;
}
.btn-program-entry a:hover::after {
    background: url(../images/arrow-next.svg) no-repeat center / contain;
}
@media screen and (max-width: 767px) {

    .program-group {
        margin-bottom: 3em;
    }

    .program-group__title {
        font-size: 2rem;
    }

    .program-group__title span {
        display: block;
        margin-left: 0;
    }

    .program-items {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .program-item {
        gap: 15px;
        padding: 15px;
    }

    .program-item__logo {
        flex-basis: 90px;
        min-height: 90px;
    }

    .program-item__logo img {
        max-width: 85px;
        max-height: 80px;
    }

    .program-item__logo--multiple img {
        max-width: 38px;
        max-height: 50px;
    }

    .program-item__sport {
        font-size: 2rem;
    }

    .program-item__team {
        font-size: 1.4rem;
    }

    .program-item__time {
        font-size: 1.6rem;
    }

    .program-item__capacity {
        font-size: 1.2rem;
    }
    .program-entry__title {
        font-size: 2rem;
    }

    .btn-program-entry a {
        font-size: 2.2rem;
    }
}


/* ==============================
   自由参加プログラム
============================== */
.program-group.free {
}
.program-group.free > div {
    background: #fff;
    border-radius: 10px;
    padding: 1em;
}
.program-group.free > div ul li {
    display: inline;
}

.program-group.free > div ul li:not(:last-child)::after {
    content: " ／ ";
}

.pickup {
    display: flex;
    align-items: center;
    gap: 2em;
    margin: 2em 0;
}

.pickup__img {
    flex: 0 0 16%;
}

.pickup__body {
    flex: 1;
}

.pickup__label {
    display: inline-block;
    margin: 0 0 .5em;
    padding: .2em .8em;

    background: var(--accent-dark);
    color: #fff;

    border-radius: 999px;

    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.5;
    letter-spacing: .08em;
}

.pickup__title {
    font-size: 2rem;
    font-weight: 800;
}
.pickup__title.strider {
  display: flex;
  align-items: center;
  gap: .6em;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: .5em;
}

.pickup__logos {
  display: flex;
  align-items: center;
  gap: .6em;
}

.pickup__by {
  font-size: .8em;
  font-weight: 500;
}

.pickup__logos a {
  display: flex;
  align-items: center;
  height: 40px;
}

.pickup__logos img {
  display: block;
  width: auto;
  height: 100%;
  object-fit: contain;
}

.pickup__body > p:last-child {
    margin: 0;
    font-size: 1.6rem;
}

@media screen and (max-width: 767px) {

    .pickup {
        display: block;
    }

    .pickup__img {
        width: 160px;
        max-width: 50%;
        margin: 0 auto 1em;
    }

    .pickup__img img {
        display: block;
        width: 100%;
        height: auto;
    }

    .pickup__body {
        width: 100%;
    }
    .pickup__label {
        font-size: 1.2rem;
    }
    .pickup__title {
        font-size: 1.8rem;
    }
    .pickup__title.strider {
        flex-direction: column;
        align-items: flex-start;
        gap: .4em;
        font-size: 1.8rem;
  }

  .pickup__logos {
    width: 100%;
  }
   .pickup__logos a {
    height: 28px;
  }
}
/* ==============================
   トップアスリート スペシャルステージ
============================== */

.special-stage {
    margin: 3em 0;
    padding: 2.5em;
    background: #d9f2f2;
    border-radius: 24px;
}

.special-stage__title {
    margin: 0 0 1em;
    color: #0E6EB8;
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.3;
}

.special-stage__profile {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.special-stage__photo {
    flex: 0 0 230px;
}

.special-stage__photo img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 14px;
}

.special-stage__profile-text {
    flex: 1;
    min-width: 0;
}

.special-stage__role {
    margin: 0 0 .2em;
    font-size: 1.8rem;
    font-weight: 700;
}

.special-stage__name {
    margin: 0 0 .5em;
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 1.2;
}

.special-stage__name span {
    margin-left: .3em;
    font-size: .55em;
}

.special-stage__history {
    margin: 0;
}

.special-stage__history > div {
    display: flex;
    gap: 1em;
    margin-bottom: .25em;
}

.special-stage__history dt {
    flex: 0 0 5.5em;
    font-weight: 700;
}

.special-stage__history dd {
    margin: 0;
}

.special-stage__description {
    margin-top: 2em;
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1.8;
}

.special-stage__description p {
    margin: 0;
}

.special-stage__contents {
    margin-top: 2em;
}

.special-stage__content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
    align-items: stretch;
    margin-top: 1em;
}

.special-stage__content-title {
    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0;
    padding: 1em .5em;

    border: 4px solid #0E6EB8;
    border-radius: 10px;

    color: #0E6EB8;
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
}

.special-stage__content-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.special-stage__content-body p {
    margin: 0 0 .4em;
    font-size: 1.6rem;
    line-height: 1.7;
}

.special-stage__content-body p:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 767px) {

    .special-stage {
        padding: 1.5em;
        border-radius: 16px;
    }

    .special-stage__title {
        font-size: 2.5rem;
    }

    .special-stage__profile {
        display: block;
    }

    .special-stage__photo {
        width: 65%;
        max-width: 240px;
        margin: 0 auto 1.5em;
    }

    .special-stage__name {
        font-size: 3rem;
    }

    .special-stage__history > div {
        display: grid;
        grid-template-columns: 5em 1fr;
        gap: .5em;
    }

    .special-stage__history dt {
        flex: none;
    }

    .special-stage__content {
        display: block;
    }

    .special-stage__content-title {
        margin-bottom: .8em;
        padding: .5em;
    }
}

/* ==============================
   開催要項
============================== */

.event-outline {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5em;
}

.event-outline th,
.event-outline td {
    padding: 1em 1.2em;
    border: 1px solid var(--line);
    vertical-align: top;
    text-align: left;
}

.event-outline th {
    width: 9em;
    background: var(--bg);
    font-weight: 700;
    white-space: nowrap;
}

.event-outline td {
    background: #fff;
}

@media screen and (max-width: 767px) {
    .event-outline th,
    .event-outline td {
        display: block;
        width: 100%;
    }

    .event-outline th {
        padding: .6em .8em;
        border-bottom: 0;
    }

    .event-outline td {
        padding: .8em;
    }
}