body {
    font-family: "Noto Sans JP", "Inter", sans-serif;
    letter-spacing: 0.06em;
}

p {
    font-weight: 500;
    line-height: 1.4em;
}

:root {
    --main-color: #0059CE;
}


/* a:hover {
    opacity: 0.6;
} */

a {
    transition: all 0.3s;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    box-shadow: 0 0 15px #00000061;
}

.header-upper {
    display: flex;
    justify-content: space-between;
    background: white;
}

.header-upper h1 {
    padding: 14px;
}

header nav {
    background-color: var(--main-color);
}

.header-banner {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding-right: 10px;
}

.header-banner a {
    display: flex;
    background: #13CCFF;
    background: linear-gradient(90deg, rgba(19, 204, 255, 1) 0%, rgba(19, 104, 255, 1) 100%);
    background: #007bff;
    width: 160px;
    height: 57px;
    align-items: center;
    gap: 8px;
    color: white;
    justify-content: center;
}

.header-post ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.header-post li a {
    letter-spacing: 0em;
    font-size: 14px;
    text-decoration: underline;
}

.header-post li a:hover {
    opacity: 0.5;
}

.header-post ul li span {
    margin-right: 5px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}


.header-banner a p {
    color: white;
    white-space: nowrap;
    font-size: 15px;
}

.header-banner a.dl p {
    font-size: 14px;
	    line-height: 1.3em;
}

.header-banner a.dl:hover {
    background: #ffa100;
}

.header-banner a:hover {
    background: #0061c9;
}

.header-banner a.dl {
    background: #ff7e2f;
}



.header-banner img {
    max-width: 30px;
}

ul.pc-nav {
    display: flex;
    justify-content: center;
}

ul.pc-nav>li {
    position: relative;
}

ul.pc-nav li a {
    color: white;
    border-right: 1px solid white;
    padding: 10px 26px;
    display: block;
    cursor: pointer;
}

ul.pc-nav li.has-link:hover {
    background: #2175cf;

}

li.has-link ul.pc-nav-child:before {
    border-bottom: 10px solid #2175cf;
}

ul.pc-nav-child {
    display: none;
    position: absolute;
    background: rgb(56 134 224);
    width: 240px;
    left: calc(50% - 120px);
    box-shadow: 0 12px 10px #00000061;
}

ul.pc-nav-child:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    left: calc(50% - 10px);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 10px solid #005fcd;
    transform: rotate(181deg);
}

ul.pc-nav-child li a {
    border-right: 0;
    border-bottom: 1px solid white;
    padding: 16px;
    font-size: 15px;
    letter-spacing: 0.06em;
    line-height: 1.4em;
}

ul.pc-nav-child li a:hover {
    background: #1d58a6;
}

ul.pc-nav-child li:last-of-type a {
    border-bottom: 0;
}

.mv img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

/* .mv {
    width: 100%;
    height: 75vh;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
	overflow:hidden;
}
 */
/* .mv img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
 */
/* .mv img.active {
    opacity: 1;
    z-index: 1;
} */


.mv-wrapper {
	    position: absolute;
    z-index: -1;
    top: 10px;
    left: 0;
  overflow: hidden;
  width: 100%;
}

.mv-track {
  display: flex;
  width: calc(6 * 40%); /* 画像6枚分（コピー含む） */
  animation: scroll 40s linear infinite;
	    gap: 4px;
}

.mv-track img {
  width: 20%;
  flex-shrink: 0;
  object-fit: cover;
}

/* 横スクロールアニメーション */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* 半分移動でループ */
}


.side.side--left {
    width: 270px;
    gap: 20px;
    display: flex;
    flex-direction: column;
}

.center {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: calc(100% - 490px);
}

.side.side--right {
    width: 180px;
    background: white;
}

main.top {
    padding: 0 40px 140px;
    padding-top: 180px;
    padding-top: 350px;
}

.top-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1380px;
    margin: auto;
    align-items: flex-start;
}

.links ul li img {
    width: 100%;
}

.links ul li a:hover,
.realtime a:hover {
    opacity: 0.6;
}

.links {
    padding: 16px;
    background: #DEEAF3;
}

.sponsor {
    padding: 16px;
    background: #DEEAF3;
}

.links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sponsor ul {
    display: flex;
    flex-direction: column;
    gap: 10px;

}

ul.half {
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 10px;
    border-top: 1px dotted #a5b4e9;
    margin-top: 10px;
}

ul.half li {
    width: calc(50% - 5px);
}



.links p {
    border-bottom: 1px solid var(--main-color);
    color: var(--main-color);
    padding-bottom: 8px;
    margin-bottom: 14px;
    margin-top: 20px;
}

.sponsor p {
    border-bottom: 1px solid var(--main-color);
    color: var(--main-color);
    padding-bottom: 8px;
    margin-bottom: 14px;
    margin-top: 10px;
}

.sponsor ul li img {
    width: 100%;
}

section.top-content {
    padding: 32px;
    background: white;
    border: 1px solid #D5DEFF;
}

.content-title h3:before {
    content: "";
    position: absolute;
    width: 20px;
    height: 3px;
    background: #EABE30;
    bottom: 0;
    left: 0px;
}

.content-title h3:after {
    content: "";
    position: absolute;
    width: 20px;
    height: 3px;
    background: #0059CE;
    bottom: 0;
    left: 20px;
}

.content-title h3 {
    font-size: 22px;
    color: var(--main-color);
    position: relative;
    padding-bottom: 20px;
}

.content-title {
    padding-bottom: 32px;
}

.news-item{
    border-bottom: 1px solid #E6E6E6;
    display: flex;
    gap: 30px;
    padding: 20px 10px;
}
.news-body__content a {
    text-decoration: underline;
    color: var(--main-color);
}
.news-item:first-of-type {
    padding-top: 0;
}

.news-item:last-of-type{
    border: 0;
}

.news-body {
    width: calc(100% - 110px);
}

p.news-body__title {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.2em;
}

.news-body__content p {
    font-size: 15px;
    line-height: 1.4em;
    font-weight: 400;
    padding-top: 6px;
}

p.date {
    font-size: 13px;
    line-height: 1.6em;
}

.news-tab {
    padding-bottom: 20px;
}

.news-tab ul {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.news-tab li {
    padding: 10px 16px;
    background: #eee;
    cursor: pointer;
    width: 25%;
    text-align: center;
    font-size: 15px;
    position: relative;
}

.news-tab li.active {
    background: #333333;
    color: #fff;
}

.news-tab li.important.active {
    background: #ff2828;
    color: #fff;
}

.news-tab li.important.active::before {
    border-top: 8px solid #ff2828;
}


.news-tab li.info.active {
    background: #00a74c;
    color: #fff;
}

.news-tab li.info.active::before {
    border-top: 8px solid #00a74c;
}


.news-tab li.office.active {
    background: #a34a08;
    color: #fff;
}

.news-tab li.office.active::before {
    border-top: 8px solid #a34a08;
}

/* ▼ 三角形マーカー */
.news-tab li.active::before {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #333333;
}

.news-list {
    display: none;
    margin-top: 20px;
}

.news-list.active {
    display: block;
}


.news-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 80px;
}

p.category {
    text-align: center;
    font-size: 13px;
    background: #ff2828;
    color: white;
    padding: 3px;
    font-weight: 300;
    letter-spacing: 0em;
}

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

p.category.category--info {
    background: #00a74c;
}

p.category.category--office {
    background: #a34a08;
}


.news-list {
    height: 350px;
    overflow-y: scroll;
}

section.top-content:nth-child(2n) {
    background: #F0F3FF;
}

.about-list {
    display: flex;
    gap: 16px;
}

.about-item {
    width: calc(100% / 3 - 10px);
}

.about-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--main-color);
    padding: 32px 10px 70px;
    height: 100%;
    position: relative;
}

.about-item a:hover {
    transform: translateY(-6px);
}

.about-item__icon img {
    width: 100%;
}

.about-item__icon {
    width: 60%;
}

p.about-item__title {
    text-align: center;
    color: white;
    font-size: 15px;
    margin-top: 20px;
    line-height: 1.4em;
    letter-spacing: 0.06em;
}

.more-btn p {
    font-size: 14px;
    color: white;
    font-weight: 300;
}

.more-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 20px;
    position: absolute;
    bottom: 24px;
}


.committee-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.committee-item {
    width: calc(100% / 3 - 11px);
    position: relative;
}

ul.committee-child li a {
    background: rgb(56 134 224);
    color: white;
    padding: 16px;
    border-bottom: 1px solid white;
    font-size: 15px;
    letter-spacing: 0.06em;
    align-items: flex-start;
}

ul.committee-child li:last-of-type a {
    border: 0;
}

ul.committee-child {
    position: absolute;
    top: 100%;
    width: 100%;
    color: white;
    z-index: 2;
}

.committee-item a {
    display: flex;
    background: var(--main-color);
    padding: 24px 8px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.committee-item a.has-link:hover {
    background: #2175cf;
}

.committee-child {
    display: none;
}

.committee-child a:hover {
    background: #1d58a6;
}


.committee-item a p {
    color: white;
}

.committee-item a img {
    width: 16px;
}

.other-item a {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 20px 30px;
    border: 1px solid var(--main-color);
    position: relative;
    transition: all 0.3s;
}

.other-item a:hover {
    box-shadow: 0px 6px 6px #75757530;
    transform: translateY(-5px);
}

.other-item a:hover {
    box-shadow: 2px 2px 10px black;
}

.other-item a:hover .other-item__more {
    right: 30px;
}

.other-item__more {
    position: absolute;
    right: 40px;
    transition: all 0.3s;
}

p.other-item__title {
    font-size: 20px;
    color: var(--main-color);
    font-weight: bold;
}

.other-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.side.side--right ul li a {
    background: #ffa100;
    padding: 12px 12px;
    display: block;
    font-size: 13px;
    letter-spacing: 0.06em;
    color: white;
    position: relative;
}

.side.side--right ul li a:hover {
    background: #ff7e2f;
}

.side.side--right ul {
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.side.side--right ul li a img {
    position: absolute;
    right: 10px;
    top: calc(50% - 7px);
}

footer {
    background: #13CCFF;
    background: linear-gradient(260deg, rgba(19, 204, 255, 1) 0%, rgba(19, 104, 255, 1) 100%);
    padding: 100px 80px;
}

.footer-dl {
    position: absolute;
    right: 0;
    bottom: -40px;
}


.footer-dl a p {
    color: white;
    font-size: 18px;
}

.footer-dl a {
    display: flex;
    align-items: center;
    color: white;
    background: var(--main-color);
    background: #f97d32;
    padding: 20px 28px;
    position: relative;
    gap: 16px;
}

.footer-dl a:hover {
    background: #ffa100;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 80px 60px;
    max-width: 1080px;
    margin: auto;
    position: relative;
}

.footer-inner:last-of-type {
    margin-top: 40px;
}

.footer-item {
    width: calc(100% / 4 - 45px);
}

.footer-item ul * {
    color: white;
}

.footer-item ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 15px;
    font-weight: 300;
}

.footer-item ul li a {
    line-height: 1.4em;
    font-weight: 400;
}

.footer-item ul li a:hover {
    opacity: 0.4;
}


.footer-item ul li:first-of-type {
    font-weight: 600;
    border-bottom: 1px solid;
    padding-bottom: 10px;
    margin-bottom: 4px;
}

p.copy {
    text-align: center;
    color: white;
    background: var(--main-color);
    font-size: 14px;
    font-weight: 300;
    padding: 20px;
}

ul.footer-policy li a {
    color: white;
    opacity: 0.5;
    font-weight: 400;
}

ul.footer-policy {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.scroll-top a {
    display: flex;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
    overflow: hidden;
    background: #FFB20C;
}

.scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
}





/*----------------------下層ページ共通-------------------------*/

main.page {
    max-width: 1280px;
    padding: 60px 80px 100px;
    margin: auto;
}

main.page.page--1080 {
    max-width: 1080px;
}

.content-wrap {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.page-heading {
    position: relative;
    height: 200px;
    margin-top: 115px;
}

.page-heading img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-title {
    position: absolute;
    bottom: 0;
    text-align: center;
    width: 100%;
}

.page-title h2 {
    display: inline-block;
    background: white;
    padding: 20px 70px 10px;
    font-size: 28px;
    letter-spacing: 0.05em;
    border-top: 4px solid #0059CE;
    color: #0059CE;
}

.content-title.content-title--page h3:after {
    width: 100%;
    height: 2px;
    left: 0;
}


.content-title.content-title--page h3:before {
    width: 20%;
    z-index: 2;
    height: 2px;
}


.flag-content2 ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.flag-content2 ul li {
    display: flex;
    width: calc(50% - 10px);
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding: 30px;
    padding-bottom: 20px;
    background: #01147d;
}


.flag-content2 ul li img {
    width: auto;
    max-width: 100%;
}

.flag-content2 ul li p {
    color: white;
    text-align: center;
    line-height: 1.4em;
    font-size: 16px;
}


/*-----------------------------------------------*/


/*----------------------競技会情報-------------------------*/

.schedule {
    margin-bottom: 40px;
}

h4.schedule-heading {
    background: #eee;
    padding: 30px;
    text-align: center;
    font-weight: 400;
    margin-bottom: 60px;
    line-height: 1.4em;
}

.schedule-list {
    display: flex;
}

.schedule-list__column {
    padding: 14px 6px;
    font-size: 15px;
    width: 13%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.schedule-list__column.schedule-list__column--name {
    width: 50%;
}

.schedule-list__column.schedule-list__column--other {
    width: 16%;
}


.schedule-list.schedule-list--header .schedule-list__column {
    color: white;
    border-right: 1px solid white;
    background: #0066AF;
}

.schedule-list.schedule-list--header .schedule-list__column:last-of-type {
    border: 0;
}

.schedule-list.schedule-list--header {
    border-bottom: 0;
}


.schedule-list {
    border-bottom: 1px solid #EFEFEF;
}

.schedule-list.schedule-list--item .schedule-list__column {
    border-right: 1px solid #EFEFEF;
    padding: 20px 14px;
    font-weight: 500;
}

.schedule-list.schedule-list--item .schedule-list__column:first-of-type {
    border-left: 1px solid #EFEFEF;
}

.schedule-list.schedule-list--item .schedule-list__column.schedule-list__column--name {
    justify-content: flex-start;
}

.schedule-list__column.schedule-list__column--name a {
    text-decoration: underline;
}

.schedule-list.schedule-list--item .schedule-list__column.schedule-list__column--other {
    justify-content: flex-start;
}

p.schedule-month {
    color: var(--main-color);
    padding-bottom: 16px;
}


.schedule-list__column.schedule-list__column--other ul li:before {
    content: "・";
}

.schedule-list__column.schedule-list__column--other ul li {
    position: relative;
}

.schedule-list__column.schedule-list__column--other ul li a {
    text-decoration: underline;
}

.schedule-list__column.schedule-list__column--other ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.schedule-list__column.schedule-list__column--date {
    text-align: left;
    justify-content: flex-start;
}

.content-title.content-title--page.select-wrapper {
    position: relative;
}

.select-wrap {
    position: absolute;
    right: 0px;
    top: -10px;
}

.select-wrap:after {
    content: "▼";
    color: white;
    position: absolute;
    right: 14px;
    font-size: 12px;
    top: 14px;
}

select#year-select {
    border: 0;
    background: var(--main-color);
    color: white;
    padding: 10px 40px;
    letter-spacing: 0.1em;
    font-size: 18px;
}

option {
    color: white;
}


.order-buttons {
    position: absolute;
    right: 178px;
    top: -10px;
    display: flex;
    gap: 10px;
    z-index: 2;
}

main.page.page--result .order-buttons {
    position: absolute;
    right: 0px;
    top: 110px;
    display: flex;
    gap: 10px;
}

.order-buttons a {
    display: block;
    background: #bfd6c8;
    padding: 10px 20px;
    font-size: 18px;
    color: white;
}

.order-buttons a.active {
    background: #00a74c;
}

/*-----------------------------------------------*/

main.single {
    max-width: 1080px;
    padding: 100px 80px;
    margin: auto;
}

.content-title {
    padding-bottom: 32px;
}

p.competition-date {
    padding-bottom: 6px;
}

p.competition-date span {
    font-size: 13px;
    display: inline-block;
    margin-left: -5px;
}

/* .content-title.content-title--page.content-title--competition {
    position: relative;
    padding-left: 100px;
} */

.content-title.content-title--page.content-title--competition h3 {
    font-size: 26px;
}

/* .venue {
    width: 80px;
    height: 80px;
    background: #36bf00;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 500;
    position: absolute;
    left: 0;
    top: 0;
} */


p.competition-date span.content-title__sub,
div.venue span.content-title__sub {
    margin: 0;
    font-size: 14px;
    background: #414141;
    display: inline-block;
    color: white;
    font-size: 13px;
    padding: 3px 6px;
    margin-right: 10px;
    width: 55px;
    text-align: center;
    font-weight: 400;
}

.venue {
    padding-bottom: 20px;
    font-weight: 500;
}

ul.link-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}


ul.link-list li {
    width: calc(100% / 3 - 7px);
}


ul.link-list li a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    padding: 20px;
    text-align: center;
    background: white;
    border: 1px solid #0066AF;
    color: #0066AF;
    font-weight: 500;
    gap: 10px;
}


/* .content-title.content-title--page.content-title--competition h3 {
    font-size: 28px;
} */

.competition-news .news-body__content p {
    padding-top: 0;
}

h4.competition-news__title {
    font-size: 20px;
    text-align: center;
    padding-bottom: 40px;
}

.competition-news {
    padding: 50px 40px;
    margin-top: 40px;
    background: #ededed;
}

.competition-news .news-item{
    border-color: white;

}

ul.link-list li a img {
    max-height: 24px;
}



/*----------------------過去の競技結果-------------------------*/
main.page.page--result {
    max-width: 1080px;
}

main.page.page--result .schedule-list__column {
    width: 14%;
}

main.page.page--result .schedule-list__column.schedule-list__column--name {
    width: 60%;
}

.schedule-list__column.schedule-list__column--result a {
    align-items: center;
    display: flex;
    gap: 10px;
    color: #0066AF;
    text-decoration: underline;
}

.year-buttons a {
    background: #a1b9d7;
    color: white;
    padding: 12px 20px;
    font-size: 18px;
    width: calc(100% / 6 - 17px);
    text-align: center;
}

.year-buttons a.active {
    background: var(--main-color);
}

.year-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 20px;
    padding-bottom: 40px;
    justify-content: center;
}

select {
    -webkit-appearance: none;
    /* Safari / Chrome */
    -moz-appearance: none;
    /* Firefox */
    appearance: none;
    /* 標準 */
    background-image: none;
    /* 背景矢印対策 */
}

/*---------------------------------------------*/

/*----------------------西部陸協について------------------------*/

ul.cate-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 60px;
}

ul.cate-list li a {
    display: inline-block;
    padding: 10px 0px;
    font-size: 15px;
    font-weight: 500;
    position: relative;

}

ul.cate-list li a:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: #1e1e1e;
    bottom: 0;
    left: 0;
}

.flag-content {
    display: flex;
    gap: 40px;
    padding-bottom: 20px;
    align-items: center;
}

div.flag img {
    width: 100%;
}

.flag-image {
    width: calc(50% - 10px);
}


.flag-color ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: left;
    gap: 20px;
    padding: 30px;

}

.flag-color ul li {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.flag-color ul li * {
    color: #1e1e1e;
}

span.color-box {
    display: block;
    width: 30px;
    height: 30px;

}

.flag-color ul li p.color {
    color: #b3b3b3;
    width: 40px;
}

.flag-color ul li p.color span {
    font-size: 1.2em;
    padding-left: 4px;
    font-weight: 400;
}



span.color-box.color-box--first {
    background: white;
    border: 1px solid #d5d5d5;
}

span.color-box.color-box--second {
    background: #e6be33;
}

span.color-box.color-box--third {
    background: #0070fd;
}


p.message-body__profile {
    text-align: right;
    padding-top: 30px;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.8em;
}

p.message-body__profile span {
    font-size: 22px;
}

.boardmember img {
    width: 100%;
    box-shadow: 0 0 10px #bdbdbd;
    transition: all 0.3s;
    height: auto;
}

.boardmember a {
    padding: 30px 80px 0;
    display: block;
}

.boardmember .content p {
    text-align: center;
    font-size: 18px;
    padding-top: 20px;
}

.boardmember img:hover {
    opacity: 0.6;
}

/*---------------------------------------------*/


/*----------------------審判委員会------------------------*/

.pdf-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

h3.pdf-title {
    padding-bottom: 20px;
    background: rgb(211, 227, 253);
    color: var(--main-color);
    padding: 16px;
    margin-bottom: 20px;
    font-weight: 500;
    border-left: 4px solid var(--main-color);
}

.referee-entry a {
    display: flex;
    justify-content: center;
    background: #005fcd;
    padding: 30px;
    color: white;
    font-size: 20px;
    transition: all 0.3s;
}

.referee-entry a:hover {
    background: #0081fd;
}

img.pdf-thumbnail {
    width: 100%;
    transition: all 0.3s;
}

img.pdf-thumbnail:hover {
    opacity: 0.6;
}

p.pdf-note {
    text-align: center;
    padding-bottom: 10px;
    padding-top: 20px;
}

/*---------------------------------------------*/

/*---------------------個人情報保護方針------------------------*/


.inner-wrap.inner-wrap--privacy,
.inner-wrap.inner-wrap--rule {
    background: #F0F3FF;
    padding: 60px 60px;
}

.inner-wrap.inner-wrap--privacy h3 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 40px;
    color: var(--main-color);
}

.inner-wrap.inner-wrap--privacy h4 {
    text-align: right;
}

.inner-wrap.inner-wrap--privacy p.intro {
    padding: 20px;
    background: #ffffff;
    margin: 20px 0;
    font-size: 15px;
    margin: 20px 0 30px 0;
}

.inner-wrap.inner-wrap--privacy p.item-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--main-color);
    border-bottom: 1px solid;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.inner-wrap.inner-wrap--privacy ul li {
    margin-bottom: 40px;
}

.privacypolicy p.item-title {
    margin-bottom: 14px;
}

.privacypolicy p.number,
.rule p.number {
    display: flex;
    gap: 4px;
    margin-bottom: 6px;
}

.privacypolicy p,
.rule p {
    font-size: 15px;
    font-weight: 400;
}

.privacypolicy p.item-title,
.rule p.item-title {
    font-weight: bold;
    font-size: 18px;
    padding-bottom: 5px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--main-color);
    color: var(--main-color);
    padding-left: 0;
    padding-right: 0;
}


.customer {
    padding: 30px;
    border: 1px solid var(--main-color);
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #fdfff7;
}


p.customer-title {
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    padding-bottom: 10px;
}


.customer-link {
    text-align: center;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.customer-link p {
    color: var(--main-color);
}

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

/*---------------------個人情報保護方針ここまで------------------------*/


/*---------------------クッキーポリシー------------------------*/
.cookie-container__box:first-of-type {
    margin-top: 40px;
}

.cookie-container__box {
    margin-bottom: 20px;
    padding: 28px;
    background: #ffffff;
}

.cookie-container__box h5 {
    font-weight: bold;
    font-size: 18px;
    color: var(--main-color);
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #005fcd;
}

.cookie-container__box p {
    padding: 5px;
    font-weight: 400;
}

.cookie-container__support {
    margin-top: 20px;
    padding: 15px;
}

p.cookie-container__content-title {
    font-weight: 600;
    font-size: 17px;
}

.cookie-container__content div:first-of-type {
    margin-top: 10px;
}

.cookie-container__content div {
    font-size: 15px;
    background: #f4f4f4;
    padding: 15px;
    margin-bottom: 15px;
}

p.cookie-flex {
    display: flex;
    gap: 10px;
}

p.cookie-flex span:first-of-type {
    width: 30px;
    display: block;
    white-space: nowrap;
}

p.cookie-flex span:last-of-type {
    width: calc(100% - 40px);
}

.cookie-container__content a {
    text-decoration: underline;
    color: var(--main-color);
    display: block;
    padding: 5px 0;
}

.cookie-container__support a {
    text-decoration: underline;
    color: var(--main-color);
}


.cookie-container__support p {
    text-align: center;
}

p.cookie-container__text2 {
    text-align: right;
    padding-top: 30px;
}

/*---------------------クッキーポリシーここまで------------------------*/


/*---------------------強化委員会------------------------*/

.practice-entry a,.practice a {
    padding: 30px 80px 0;
    display: block;
}

.practice-entry a img,.practice a img{
    width: 100%;
    box-shadow: 0 0 10px #bdbdbd;
    transition: all 0.3s;
    height: auto;
}

.practice .content p,.practice-entry .content p {
    text-align: center;
    font-size: 18px;
    padding-top: 20px;
}

/*---------------------ここまで------------------------*/

.breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 12px 20px 0;
    margin: 0 0 20px;
    font-size: 14px;
}

.breadcrumb li::after {
    content: ">";
    margin-left: 8px;
}

.breadcrumb li:last-child::after {
    content: "";
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb li:last-child {
    color: #000;
}



.sp-block {
    display: none;
}

.tb-block {
    display: none;
}

.sp-none {
    display: none;
}

.notfound h3 {
    padding-bottom: 20px;
    font-size: 44px;
    color: var(--main-color);
}

.notfound {
    text-align: center;
    font-size: 17px;
    background: #f3f3f3;
    padding: 80px;
}

/* 初期状態（1081px以上） */

@media screen and (min-width:1081px) {
    .sp-nav {
        display: none;
    }
}

.hamburger {
    display: none;
}

.inner-wrap.inner-wrap--sponsor {
    background: #F0F3FF;
    padding: 60px 60px;
}

.inner-wrap.inner-wrap--sponsor h3 {
    text-align: center;
    font-size: 26px;
    color: var(--main-color);
    padding-bottom: 30px;
}

p.s-message__profile {
    text-align: right;
    padding-top: 30px;
}


.s-message p {
    line-height: 1.6em;
}

section#summary {
    margin-top: 100px;
}

ul.summary-list li {
    display: flex;
    padding-bottom: 10px;
}

.rule,
.sponsor-entry {
    padding: 40px;
    background: white;
    margin-top: 20px;
}

.rule h4,
.sponsor-entry h4 {
    font-size: 22px;
    text-align: center;
    color: var(--main-color);
    padding-bottom: 40px;
}

p.rule-item__title {
    font-size: 16px;
    font-weight: bold;
}

.rule-body ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rule-item {
    padding-bottom: 20px;
}

.rule-body {
    margin-top: 10px;
}

.rule-body ul li {
    display: flex;
}

ul.rule-list-second {
    padding-left: 16px;
}

.sponsor-entry a {
    display: block;
    background: #00a74c;
    display: flex;
    justify-content: center;
    padding: 28px;
    margin-top: 20px;
    color: white;
    font-size: 18px;
    font-weight: 500;
}
.sponsor-entry a:hover {
    background: #008f41;
}

img.mail-icon {
    width: 17px;
    padding-bottom: 2px;
    margin-right: 5px;
}
/*-----------------------------------------------------------*/

/*-----------------------------------------タブレット以下-------------------------------------------*/
@media screen and (max-width:1080px) {
    .page-heading {
        margin-top: 70px;
    }

    ul.cate-list li a {
        font-size: 14px;
    }

    /* .header-banner {
        display: none;
    } */

    .page-title h2 {
        padding: 20px 50px 10px;
        font-size: 24px;
    }

    ul.pc-nav {
        display: none;
    }

    ul.sp-nav {
        display: block;
    }


    .top-wrapper {
        flex-direction: column;
    }

    .center {
        width: 100%;
        order: 1;
    }

    .side.side--left {
        order: 2;
        flex-direction: column;
        width: 100%;
    }

    .links ul,
    .sponsor ul {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .links ul li,
    .sponsor ul li {
        width: calc(50% - 5px);
    }

    ul.half li {
        width: calc(25% - 8px);
    }

    .side.side--right {
        order: 3;
        width: 100%;
    }

    .header-upper h1 {
        width: 340px;
    }


    .header-upper h1 img {
        width: 100%;
    }

    .header-post {
        display: none;
    }

    .boardmember a {
        padding: 30px 40px 0;
    }

    main.top {
        padding: 0 60px 140px;
        padding-top: 200px;
    }

    .realtime {
        position: fixed;
        bottom: 10px;
        left: 10px;
        z-index: 5;
        width: 240px;
    }

    .realtime img {
        width: 100%;
    }

    .side.side--right ul {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 0;
    }

    .side.side--right ul li {
        width: calc(100% / 3 - 6px);
    }

    .side.side--right ul li a {
        height: 60px;
        display: flex;
        align-items: center;
        font-size: 15px;
    }

    p.about-item__title {
        font-size: 14px;
    }

    .other-item__icon img {
        width: 100%;
    }

    .other-item__icon {
        width: 70px;
    }

    .links {
        padding: 30px;
        background: #DEEAF3;
    }

    .sponsor {
        padding: 30px;
    }

    .mv {
        height: 450px;
    }


    nav.sp-nav>ul>li>a {
        font-size: 18px;
        color: var(--main-color);
        font-weight: bold;
        display: block;
        padding-bottom: 10px;
    }

    ul.sp-nav-child li {
        padding-left: 14px;
        position: relative;
    }

    ul.sp-nav-child li:before {
        content: "";
        width: 10px;
        height: 1px;
        position: absolute;
        left: 0;
        top: 50%;
        background: #1e1e1e;
    }

    ul.sp-nav-child li a {
        font-size: 15px;
        font-weight: 500;
    }

    nav.sp-nav>ul>li {
        padding-bottom: 30px;
    }

    ul.sp-nav-child {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .header-banner.header-banner--sp {
        display: flex;
        justify-content: flex-start;
        gap: 20px;
    }

    .header-banner {
        padding-right: 80px;
    }

    .header-banner a.dl p {
        font-size: 13px;
    }

    .header-banner a {
        height: 50px;
        width: 145px;
    }

    .footer-inner {
        gap: 80px 40px;
    }

    .footer-item {
        width: calc(100% / 2 - 20px);
    }

    .footer-dl {
        position: relative;
        right: 0;
        bottom: 0px;
    }

    .footer-dl a {
        padding: 10px 18px;
        position: relative;
        gap: 13px;
    }

    ul.footer-policy {
        margin-top: 0;
    }

    /* ---------- ハンバーガー ---------- */
    .hamburger {
        display: block;
        width: 32px;
        height: 24px;
        position: fixed;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 100;
        right: 24px;
        top: 23px;
    }

    .hamburger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 3px;
        background: #008fe8;
        transition: 0.3s;
    }

    .hamburger span:nth-child(1) {
        top: 0;
    }

    .hamburger span:nth-child(2) {
        top: 10px;
    }

    .hamburger span:nth-child(3) {
        top: 20px;
    }

    /* 開いた状態 */
    .hamburger.is-open span:nth-child(1) {
        transform: rotate(45deg);
        top: 10px;
    }

    .hamburger.is-open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.is-open span:nth-child(3) {
        transform: rotate(-45deg);
        top: 10px;
    }


    /* ---------- SPナビ ---------- */
    .sp-nav {
        position: fixed;
        inset: 0;
        background: #e4f7ff;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        z-index: 5;
        padding: 100px 100px 160px;
        overflow: auto;
    }

    .sp-nav.is-open {
        opacity: 1;
        visibility: visible;
    }


    .hamburger {
        display: block;
    }

    .pc-nav {
        display: none;
    }


    .page-heading {
        height: 150px;
        margin-top: 70px;
    }

    main.page {
        padding: 40px 80px 100px;
    }

    h4.schedule-heading {
        margin-bottom: 100px;
        padding: 20px;
        font-size: 15px;
    }

    .content-title h3 {
        font-size: 20px;
    }

    .select-wrap {
        top: -80px;
    }

    .order-buttons {
        top: -80px;
        right: 142px;
    }

    .order-buttons a {
        font-size: 16px;
    }

    select#year-select {
        font-size: 16px;
        padding: 10px 30px 10px 24px;
    }

    .select-wrap:after {
        content: "▼";
        color: white;
        position: absolute;
        right: 10px;
        font-size: 10px;
        top: 15px;
    }

    .schedule-list.schedule-list--item .schedule-list__column {
        padding: 14px 10px;
        text-align: left;
    }

    .schedule-list__column.schedule-list__column--name {
        width: 40%;
    }

    .schedule-list__column {
        width: 15%;
    }

    select option {
        font-size: 16px;
        /* optionの文字サイズ */
    }

    ul.cate-list {
        padding-bottom: 60px;
    }

    .flag-color ul {
        padding: 30px 0;
    }

    .flag-content2 ul li p {
        font-size: 15px;
    }

    .flag-content2 ul li img {
        max-height: 110px;
    }

    .year-buttons a {
        width: calc(100% / 4 - 17px);
    }
	
	.practice-entry a,.practice a {
        padding: 30px 40px 0;
    }
}

/*-----------------------------------------タブレット以下ここまで-------------------------------------------*/




/*-----------------------------------------スマホ以下-------------------------------------------*/
@media screen and (max-width:667px) {
    .sp-block {
        display: block;
    }

    .sp-none {
        display: none;
    }

    main.top {
        padding: 0 20px 100px;
        padding-top: 140px;
    }

    .news-tab {
        padding-bottom: 0px;
    }

    .news-tab ul {
        flex-wrap: wrap;
    }

    .news-tab li {
        width: calc(50% - 5px);
        font-size: 14px;
    }

    .news-tab li.active::before {
        display: none;
    }

    section.top-content {
        padding: 24px;
    }

    .news-item{
        flex-direction: column;
        padding: 20px 0;
        gap: 10px;
    }

    .news-body {
        width: 100%;
    }

    .news-body__content p {
        font-size: 14px;
    }

    .news-meta {
        gap: 10px;
        flex-direction: row;
        width: 100%;
        align-items: center;
    }

    p.category {
        font-size: 12px;
        padding: 2px 8px;
    }

    .about-list {
        flex-direction: column;
    }

    .realtime {
        width: 150px;
    }

    .about-item {
        width: 100%;
    }

    .about-item__icon {
        width: 55px;
    }

    .about-item a {
        flex-direction: row;
        align-items: center;
        gap: 16px;
        padding: 20px 20px;
    }

    p.about-item__title {
        margin-top: 0;
        white-space: nowrap;
        text-align: left;
    }

    .more-btn {
        bottom: 10px;
        right: 10px;

    }

    .more-btn img {
        width: 20px;
    }

    .more-btn p {
        display: none;
    }

    .committee-item {
        width: 100%;
    }

    .committee-item a {
        padding: 14px 8px;
        font-size: 15px;
        gap: 8px;
    }

    ul.committee-child li a {
        padding: 12px 16px;
        font-size: 14px;
    }

    .committee-item a.has-link:hover {
        background: var(--main-color);
    }

    .committee-list {
        gap: 10px;
    }

    .other-item a {
        padding: 20px;
        gap: 16px;
    }

    .other-item__icon {
        width: 55px;
    }

    p.other-item__title {
        font-size: 14px;
    }

    .other-item__more {
        position: absolute;
        right: 10px;
        transition: all 0.3s;
        bottom: 10px;
        width: 20px;
    }

    .other-item__more img {
        width: 100%;
    }

    .committee-item a img {
        width: 13px;
    }

    .links ul li,
    .sponsor ul li {
        width: 100%;
    }

    .links p,
    .sponsor p {
        font-size: 18px;
    }

    ul.half li {
        width: calc(50% - 5px);
    }

    .side.side--right ul li {
        width: calc(100% / 2 - 4px);
    }

    .side.side--right ul li a {
        height: 50px;
        font-size: 14px;
    }

    footer {
        padding: 60px 40px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 40px;
    }

    .footer-item {
        width: 100%;
    }

    .footer-item ul {
        gap: 8px;
        font-size: 14px;
    }

    .footer-item ul li:first-of-type a {
        font-size: 16px;
    }

    .footer-dl a p {
        color: white;
        font-size: 15px;
    }

    .footer-dl img {
        max-width: 40px;
    }

    .footer-dl a {
        justify-content: center;
    }

    ul.footer-policy li a {
        font-size: 14px;
    }

    ul.footer-policy {
        flex-direction: column;
        gap: 20px;
    }

    p.copy {
        font-size: 12px;
    }

    .scroll-top {
        position: fixed;
        right: 15px;
        bottom: 25px;
    }

    .scroll-top a {
        width: 40px;
        height: 40px;
    }

    .header-banner {
        display: none;
    }

    .header-upper h1 {
        width: 280px;
    }

    .header-upper h1 {
        padding: 10px;
    }

    .hamburger {
        right: 20px;
        top: 18px;
    }

    .mv {
        height: 300px;
    }

    .content-title h3 {
        font-size: 20px;
    }

    .sp-nav {
        padding: 60px 40px 120px;
    }

    .hamburger span {
        height: 2px;
    }

    nav.sp-nav>ul>li {
        padding-bottom: 20px;
    }

    nav.sp-nav>ul>li>a {
        font-size: 15px;
    }

    ul.sp-nav-child {
        gap: 6px;
    }

    ul.sp-nav-child li a {
        font-size: 13px;
    }

    .header-banner a.dl {
        width: 50%;
    }

    .header-banner.header-banner--sp {
        padding-right: 0;
        gap: 10px;
    }

    main.page {
        padding: 30px 20px 100px;
    }

    .breadcrumb ul {
        font-size: 12px;
    }

    .page-title h2 {
        padding: 14px 30px 4px;
        font-size: 18px;
    }

    .page-heading {
        margin-top: 55px;
    }

    .order-buttons {
        top: -80px;
        right: 136px;
    }

    .order-buttons a {
        font-size: 15px;
        padding: 10px 12px;
    }

    select#year-select {
        font-size: 15px;
    }

    .content-title h3 {
        letter-spacing: 0.02em;
    }



    .schedule-list__column {
        font-size: 12px;
    }

    .schedule-list__column {
        padding: 7px 4px;
        letter-spacing: 0.02em;
    }

    .schedule-list.schedule-list--item .schedule-list__column {
        padding: 10px 6px;
        text-align: left;
    }

    .schedule-list__column img {
        width: 20px;
    }

    .schedule {
        margin-bottom: 20px;
    }

    p.schedule-month {
        padding-bottom: 10px;
    }

    p.schedule-month {
        font-size: 14px;
    }

    h4.schedule-heading {
        padding: 16px;
        font-size: 14px;
        text-align: left;
        line-height: 1.2em;
    }

    .schedule-list__column.schedule-list__column--name a {
        text-decoration: underline;
        line-height: 1.4em;
    }

    ul.cate-list {
        padding-bottom: 60px;
        justify-content: flex-start;
        gap: 10px 20px;
    }

    ul.cate-list li a {
        font-size: 13px;
        padding: 6px 0;
    }

    .boardmember .content p {
        text-align: left;
        font-size: 16px;
        padding-top: 0px;
    }

    .flag-content {
        flex-direction: column;
        gap: 10px;
    }

    .flag-image {
        width: 100%;
        padding: 0 20px;
    }

    .flag-content2 ul {
        flex-direction: column;
    }

    .flag-content2 ul li {
        width: 100%;
        gap: 0;
        padding: 20px 20px 10px;
    }

    p.message-body__profile span {
        font-size: 20px;
    }


    .inner-wrap.inner-wrap--privacy,
    .inner-wrap.inner-wrap--rule {
        padding: 40px 20px;
    }

    .inner-wrap.inner-wrap--privacy h4 {
        text-align: center;
        font-size: 14px;
    }

    .inner-wrap.inner-wrap--privacy h3 {
        font-size: 20px;
        margin-bottom: 40px;
    }

    .inner-wrap.inner-wrap--privacy p.intro {
        padding: 16px;
        font-size: 14px;
    }

    .privacypolicy p.item-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .privacypolicy p {
        padding: 10px 6px;
    }

    p.customer-title {
        font-size: 16px;
    }

    .customer .txt-center {
        text-align: left;
    }

    .privacypolicy .customer-link p {
        padding: 6px 0;
        font-size: 15px;
    }

    .inner-wrap.inner-wrap--privacy ul li {
        margin-bottom: 20px;
    }

    .customer {
        margin-top: 30px;
    }

    .customer {
        padding: 20px 14px;
    }

    .cookie-container__box:first-of-type {
        margin-top: 50px;
    }

    .cookie-container__box {
        margin-bottom: 28px;
        padding: 0;
        background: none;
    }

    .cookie-container__box h5 {
        font-size: 16px;
    }

    .cookie-container__box p {
        padding: 10px 6px;
        font-size: 14px;
    }

    .cookie-container__content div {
        background: white;
        padding: 6px;
    }

    .cookie-container__box p.cookie-flex {
        gap: 4px;
    }

    p.cookie-flex span:last-of-type {
        width: calc(100% - 36px);
    }

    .cookie-container__support {
        margin-top: 20px;
        padding: 10px;
        font-size: 14px;
    }

    p.cookie-container__content-title {
        font-weight: 500;
        font-size: 15px;
        padding-bottom: 0;
    }

    .cookie-container__support p {
        text-align: left;
    }

    p.cookie-container__text2 {
        font-size: 14px;
        padding-top: 20px;
    }

    .other-item a:hover .other-item__more {
        right: 10px;
    }

    .message-body p {
        font-size: 15px;
    }

    .year-buttons {
        gap: 10px;
    }

    .year-buttons a {
        flex: 1 1 33.333%;
        font-size: 16px;
        padding: 12px 10px;
    }

    p.pdf-note {
        text-align: left;
        padding-top: 0;
    }

    .referee-entry a {
        padding: 30px 20px;
        text-align: center;
        font-size: 16px;
    }
	
	main.single {
    max-width: 1080px;
    padding: 40px 30px;
    margin: auto;
}
	ul.link-list li {
    width: 100%;
}
	.content-title.content-title--page.content-title--competition h3 {
    font-size: 20px;
}
	ul.link-list li a{
		height:60px;
	}
	.competition-news {
    padding: 30px 20px; 
	}
	h4.competition-news__title {
    font-size: 18px;
    text-align: center;
    padding-bottom: 20px;
}
	
	.practice .content p,.practice-entry .content p {
        text-align: left;
        font-size: 16px;
        padding-top: 0px;
    }
	main.page.page--result .schedule-list__column.schedule-list__column--name{
		width:50%;
	}
	main.page.page--result .schedule-list__column {
    width: 17%;
}
	main.page.page--result .schedule-list__column:last-of-type {
    width: 13%;
}
main.page.page--result .schedule-list__column:first-of-type {
    width: 20%;
}
	.mv-track img {
  width: 35%;
}
	@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); } /* 半分移動でループ */
}
}


/*---------------------------------------------*/
/*クッキーポリシー*/
/*---------------------------------------------*/
.cookie-consent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: 14px;
    color: #0c0c0c;
    background: rgb(228 228 228);
    padding: 1.2em;
    box-sizing: border-box;
    z-index: 100;
    visibility: hidden;
	gap:20px;
	line-height: 1.6em;
}
.cookie-consent.is-show {
  visibility: visible;
}
.cookie-consent a {
    color: var(--main-color) !important;
    text-decoration: underline;
}
.cookie-agree {
    color: #fff;
    background: var(--main-color);
    padding: 0.5em 1.5em;
    border-radius: 5px;
    font-family: 'Montserrat';
}
.cookie-agree:hover {
  cursor: pointer;
}
/* パッと消える */
.cc-hide1 {
  display: none;
}
/* ゆっくり消える */
.cc-hide2 {
  animation: hide 1s linear 0s;
  animation-fill-mode: forwards;
}
@keyframes hide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
/* メディアクエリ */
@media screen and (max-width: 600px) {
  .cookie-consent {
    flex-direction: column;
  }
  .cookie-text {
    margin-bottom: 1em;
  }
}