/*
Theme Name: GRACE
Theme URI: https://grace-sabae.com
Author: 鯖江市卓球協会
Description: 福井県鯖江市の卓球協会
Version: 1.0
*/


html {
    margin-top: 0px !important;
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    position: relative;
    font-size: 1.7rem;
    color: #444444;
    background: #ffffff;
    font-family: 'Noto Sans JP', sans-serif;
    counter-reset: number 0;
}

a {
    text-decoration: none;
    color: #444444;
    transition: .3s;
}

h1,
h2,
h3,
h4,
h5,
b,
strong {
    font-weight: bold;
}

h3 {
    font-size: 2.6rem;
    margin-bottom: 20px;
}

.sp {
    display: none;
    background: linear-gradient(-135deg, #6087cd, #5449f9);
}

p {
    font-size: 14px;
}

.btn {
    padding: 13px 55px 13px 30px;
    border-radius: 100px;
    letter-spacing: 0;
    font-weight: bold;
    text-align: center;
    line-height: 1.3;
    background: linear-gradient(-135deg, #6087cd, #5449f9);
    color: #fff;
    font-size: 1.8rem;
    position: relative;
    overflow: hidden;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn::before {
    position: absolute;
    right: 2rem;
    transform: translateX(50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #fff;
    font-family: 'Font Awesome 5 Free';
    content: '\f061';
    color: #1644b1;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 2;
    font-size: 1.5rem;
}

.btn.edge {
    width: 160px;
    background: #fff;
    color: #1644b1;
    border: solid 1px #1644b1;
    opacity: 1;
}

.btn.edge::before {
    position: absolute;
    right: 2rem;
    transform: translateX(50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #fff;
    font-family: 'Font Awesome 5 Free';
    border: solid 1px #FE2845;
    content: '\f061';
    color: #FE2845;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn.edge:hover {
    color: #fff;
    background: linear-gradient(-135deg, #FE2845, #F9B349);
}


.btn:hover {
    opacity: .8;
}

.w50 {
    width: 50px !important;
}

.w100 {
    width: 100px;
}

.w150 {
    width: 150px !important;
}

.w200 {
    width: 200px;
}

.w300 {
    width: 300px;
}

.w400 {
    width: 400px;
}

.w500 {
    width: 500px;
}

.w600 {
    width: 600px;
}

.w10per {
    width: 10%;
}

.w20per {
    width: 20%;
}

.w30per {
    width: 30%;
}

.w40per {
    width: 40%;
}

.w50per {
    width: 50%;
}

.w60per {
    width: 60%;
}

.w70per {
    width: 70%;
}

.w80per {
    width: 80%;
}

.w90per {
    width: 90%;
}

.w100per {
    width: 100%;
}



header .logo img {
    width: 360px;
    vertical-align: middle;
}

header {
    width: calc(100% - 100px);
    display: flex;
    justify-content: space-between;
    padding: 10px 30px;
    z-index: 1;
    align-items: center;
    position: absolute;
    background: #fff;
    border-radius: 80px;
    margin-top: 20px;
    margin-left: 50px;
}

header .gnav {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 25px;
    justify-content: flex-end;
}

header .gnav nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

header .gnav nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
}

header .gnav nav ul li {
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    text-align: center;
}

header .gnav nav ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: #444444;
    font-weight: bold;
    font-size: 1.5rem;
    position: relative;
    height: 100%;
}

header .gnav nav ul li a::after {
    content: '';
    display: block;
    height: 3px;
    width: 0%;
    background: #5550f3;
    position: absolute;
    bottom: -10px;
    left: 0;
    transition: .3s;
}

header .gnav nav ul li a:hover::after {
    width: 100%;
}



/*スクロールダウン全体の場所*/
.scrolldown2 {
    /*描画位置※位置は適宜調整してください*/
    position: absolute;
    bottom: 0px;
    right: 15px;
}

/*Scrollテキストの描写*/
.scrolldown2 span {
    position: absolute;
    left: -7px;
    bottom: 60px;
    color: #333;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

/* 丸の描写 */
.scrolldown2:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 0;
    left: -4px;
    /*丸の形状*/
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #333;
    /*丸の動き1.6秒かけて透過し、永遠にループ*/
    animation:
        circlemove 1.6s ease-in-out infinite,
        cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove {
    0% {
        bottom: 45px;
    }

    100% {
        bottom: -5px;
    }
}

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide {
    0% {
        opacity: 0
    }

    50% {
        opacity: 1;
    }

    80% {
        opacity: 0.9;
    }

    100% {
        opacity: 0;
    }
}

/* 線の描写 */
.scrolldown2:after {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 0;
    left: 0;
    /*線の形状*/
    width: 2px;
    height: 50px;
    background: #333;
}




header .gnav .btn {
    background: linear-gradient(-135deg, #6087cd, #5449f9);
    color: #fff;
    font-size: 1.5rem;
    position: relative;
    overflow: hidden;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .gnav .btn::before {
    position: absolute;
    right: 2.3rem;
    transform: translateX(50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: #fff;
    font-family: 'Font Awesome 5 Free';
    content: '\f061';
    color: #1644b1;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 2;
    font-size: 1.5rem;
}



header.header-scroll {
    position: fixed;
    background-color: white;
    padding: 10px 30px;
    border-bottom: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1), 0 4px 4px -4px rgba(0, 0, 0, .1);
    z-index: 100;
    top: 0;
}

header.header-scroll .logo h1 {}

header.header-scroll .gnav nav ul li a {
    font-size: 1.4rem;
}

header.header-scroll .gnav .btn {
    font-size: 1.3rem;
}

header.header-scroll .gnav nav ul li a::after {
    bottom: -10px;
}

header .sp-gnav {
    display: none;
}

main.top {
    margin-top: 20px;
}

.top .mv-bg {
    position: relative;
}

.top .mv-bg .mv {
    margin: 0 30px;
    background: url(img/top/main_mv.webp);
    height: 580px;
    background-size: cover;
    background-position: 50% 25%;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 0 8%;
    position: relative;
    justify-content: center;
    text-align: center;
}

.top .mv-bg .mv:after {
    content: '';
    background: linear-gradient(0deg, rgb(77 86 195 / 70%) 0%, rgb(44 115 143 / 60%) 100%);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 10px;
    z-index: 0;
}

.top .mv-bg .mv .mv-text {
    z-index: 1;
}

.mv-point {
    color: #fff;
}

.top .mv-point h2.ttl01 {
    font-size: 2.4em;
    margin-top: 20px;
}

.top .mv-point h2.ttl01 img {
    max-width: 640px;
}

.top .mv-point h2.ttl02 {
    font-size: 6em;
}

.top .mv-point p {
    font-size: 1.5rem;
    margin-top: 15px;
}

.top .copy {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: rotate(90deg);
    transform-origin: 24.5% -265%;
    font-size: 14px;
    font-weight: 300;
}

.btn-box .btn {
    background: linear-gradient(-135deg, #6087cd, #5449f9);
    font-size: 17px;
    padding: 15px;
    border: solid 1px #1644b1;
    position: relative;
}

.btn-box .btn.mvcta,
.btn-box .btn.plancta {
    padding: 15px 40px;
}

.btn-box .btn.wide {
    display: inline-block;
    min-width: 280px;
}

.btn-box .btn:hover {
    background: #fff;
    color: #1644b1;
    border: solid 1px #1644b1;
}

.btn-box .btn .material-symbols-outlined {
    vertical-align: middle;
    margin-bottom: 2px;
    margin-left: 8px;
}

.btn-box .btn .material-symbols-outlined.arrow {
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    margin-bottom: 0;
}

.top .ruby {
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
    color: #5f75c7;
    background: -webkit-linear-gradient(0deg, #1c55ab, #5549f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.top h2 {
    font-size: 4rem;
}




/* TOP tournament */


.top #tournament {
    max-width: 1280px;
    margin: 0 auto;
    gap: 20px;
    padding: 80px 20px 80px;
}


.top #tournament h2 {
    margin-bottom: 20px;
    text-align: center;
}

.top #tournament .flex .cts {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
}

table.fas_table_colheader {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    table-layout: fixed;
}

table.fas_table_colheader a {
    color: #0537c9;
}


table.fas_table_colheader th {
    border: 1px solid #E5E5E5;
    padding: 5px;
    font-weight: normal;
    background: #6f8fab;
    color: #fff;
    text-align: center;
    align-items: center;
    vertical-align: middle;
    font-size: 1.5rem;
    padding: 10px 5px;
    line-height: 1.4;
}


table.fas_table_colheader td {
    border: 1px solid #E5E5E5;
    padding: 5px;
    align-items: center;
    vertical-align: middle;
    font-size: 1.4rem;
    padding: 10px;
}

table.fas_table_colheader tr:nth-child(odd) {
    background-color: #f2f2f2;
    /* 薄い灰色の背景色 */
}

table.fas_table_colheader {
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px 10px 0 0;
    /* 丸みの大きさを設定 */
    overflow: hidden;
    /* 内部のセルがborder-radiusを超えないようにする */
}





table.fas_table_colheader th.date {
    width: 18%;
}

table.fas_table_colheader th.name {
    width: 26%;
}

table.fas_table_colheader th.place {
    width: 20%;
}

table.fas_table_colheader th.deadline {
    width: 18%;
}

table.fas_table_colheader th.file {
    width: 100px;
}

table.fas_table_colheader th.file.appli {
    width: 100px;
}

table.fas_table_colheader td.date {
    width: 18%;
}

table.fas_table_colheader td.name {
    width: 26%;
}

table.fas_table_colheader td.place {
    width: 20%;
}

table.fas_table_colheader td.deadline {
    width: 18%;
}

table.fas_table_colheader td.file {
    width: 6%;
    text-align: center;
}

table.fas_table_colheader td.file.appli {
    width: 10%;
    text-align: left;
}

.file.appli a {
    color: #333;
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

td.file.appli .flex {
    display: flex;
    justify-content: space-between;
}


table.fas_table_colheader td.file img {
    max-width: 30px;
}

table.fas_table_colheader td.file.appli img {
    display: block;
}

.topbtn.parent {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    /* 水平方向の中央揃え */
}

/* TOP news */
.top .bg-skyble {
    background: #F5F5F5;
}

.top #news {
    max-width: 1120px;
    margin: 0 auto;
    padding: 80px 20px 80px;
}

.top #news h2 {
    text-align: center;
}

.top #news .inner {
    max-width: 1020px;
    margin: 20px auto;
    padding: 30px 20px 20px;
    background: #fff;
    border-radius: 10px;
}

.top #news .news_list {
    letter-spacing: .14em;
}

.top #news .news_list_item {
    padding: 15px 0px;
    border-bottom: 1px solid #E6E6E6;
}

.top #news .news_list_item:last-child {
    border-bottom: none;
}

.top #news .news_list_item a {
    position: relative;
    display: flex;
}

.top #news .news_list_date {
    display: flex;
    margin-right: 30px;
    align-items: center;
}

.top #news .news_list_date time {
    font-size: 1.3rem;
    margin-left: 8px;
    letter-spacing: 0.8px;
}

.top #news .news_list .text {
    font-size: 1.5rem;
}

.top #news .news_item {
    font-size: 12px;
    border-radius: 20px;
    width: 101px;
    text-align: center;
    margin-left: 25px;
    padding: 1px 0;
}

.top #news .news_item.news {
    color: #0053a7;
    border: 1px solid #0053a7;
}

.top #news .news_item.blog {
    color: #0053a7;
    border: 1px solid #0053a7;
}





/* TOP bg-img */
#bg-img {
    background: url(img/top/bg-img.jpg);
    height: 300px;
    background-position: 41% 95%;
}



/* TOP ブログ */
.top #blog {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 20px 10px;
    align-items: center;
}

.top #blog .flex {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.top #blog h2 {
    font-size: 3rem;
    position: relative;
}

#bunner {
    max-width: 1060px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
}

#bunner figure {
    background: #f9f9f9;
    border: solid 1px #eee;
    border-radius: 10px;
	max-width: 360px;
}

.top #blog .cts {
    display: flex;
    gap: 25px;
    justify-content: flex-start;
    margin: 20px 0 60px;
}

.top #blog .cts .post {
    border-radius: 10px;
    border: solid 1px #EBEAE7;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1), 0 4px 4px -4px rgba(0, 0, 0, .1);
    width: 32%;

}

.top #blog .cts .post:hover {
    border-radius: 10px;
    border: solid 1px #EBEAE7;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1), 0 4px 4px -4px rgba(0, 0, 0, .1);
    transform: translateY(-3px);
}

.top #blog .cts .post img {
    border-radius: 10px 10px 0px 0px;
    height: 240px;
    object-fit: cover;
}

.top #blog .cts .post .txt {
    padding: 10px 10px 15px
}

.top #blog .cts .post p {
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.top #blog .cts .post time {
    font-size: 14px;
}

.top #blog .cts .post time .fa-regular,
.far {
    margin-right: 3px;
    vertical-align: 1px;
    font-size: 12px;
}


.top #blog .btn-box {
    text-align: center;
}

.bg-gray {
    background: #f5f5f5;
}



/* contact */
#contact {
    max-width: 1060px;
    margin: 30px auto 0px;
    padding: 70px 20px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    position: relative;
}

#contact::before {
    content: "CONTACT";
    position: absolute;
    color: #fff;
    bottom: 0;
    right: 0;
    font-size: 15rem;
    font-weight: 700;
    line-height: 0.9;
}

#contact .txt-cts {
    width: 50%;
    z-index: 1;
}

#contact .txt-cts h2 {
    font-size: 3rem;
}

#contact .btn-cts {
    width: 50%;
    text-align: center;
    display: flex;
    gap: 20px;
    z-index: 1;
}

#contact .btn-box {
    width: 100%;
}

#contact .btn-box .tel a {
    font-size: 3.4rem;
    font-weight: bold;
    font-family: -apple-system, BlinkMacSystemFont, "Roboto", "Yu Gothic", YuGothic, Verdana, Meiryo, sans-serif !important;
}

#contact .btn-box .tel .fa-solid,
.fas {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 2.4rem;
    margin-right: 5px;
    vertical-align: 2px;
}

#contact .btn {
    display: inline-block;
    width: 100%;
}

#contact .btn::before {
    display: none;
}

#contact .btn.edge {
    background: #fff;
    color: #008490;
    border: solid 1px #008490;
    transition: 0.2s;
}

#contact .btn.edge:hover {
    color: #fff;
    background: linear-gradient(-135deg, #6087cd, #5449f9);
    opacity: 1;
}

/* アコーディオンメニュー */
.toggle_contents {
    position: relative;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1), 0 4px 4px -4px rgba(0, 0, 0, .1);
}

.toggle_contents:after {
    content: "";
    position: absolute;
    background-image: url(img/question.svg);
    width: 42px;
    height: 42px;
    background-repeat: no-repeat;
    background-size: contain;
    top: 12px;
    left: 35px;
    margin: auto;
}

.toggle_title {
    position: relative;
    padding: 15px 55px 15px 100px;
    cursor: pointer;
    font-size: 2.6rem;
    text-align: left;
    line-height: 1.4;
    font-weight: bold;
}

.toggle_btn {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: block;
    width: 24px;
    height: 24px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    border-radius: 50%;
}

.toggle_btn:before,
.toggle_btn:after {
    display: block;
    content: '';
    background-color: #207DC6;
    position: absolute;
    width: 40px;
    height: 1px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.toggle_btn:before {
    width: 1px;
    height: 40px;
}

.toggle_title.selected .toggle_btn:before {
    content: normal;
}

.toggle_contents dd {
    padding: 10px 30px;
    text-align: left;
    display: none;
}

.btnarea {
    text-align: center;
}

.mw_wp_form_input .btnarea input.send_btn2 {
    display: none !important;
}

.maincts .btnarea input.send_btn,
.maincts .btnarea input.send_btn2,
.maincts .btnarea input.upd_btn {
    background-color: #1644b1;
    color: #ffffff;
    border: solid 1px #1644b1;
    padding: 10px 80px;
    border-radius: 50px;
    transition: 0.3s;
}

.btnarea input.send_btn:hover,
.btnarea input.send_btn2:hover,
.btnarea input.upd_btn:hover {
    background-color: #4d74cf;
    color: #ffffff;
    border: solid 1px 4d74cf;
    padding: 10px 80px;
    border-radius: 50px;
    transition: 0.3s;
    cursor: pointer;
}

#contact input[type=radio],
#contact input[type=checkbox] {
    width: unset;
}


.mw_wp_form_confirm .privacy-hogo.scrollbox {
    display: none;
}

.form p.min {
    font-size: 12.5px;
}

/* company */
#company {
    background-color: #FBFCFF;
}

#company .company-content {
    max-width: 1050px;
    margin: 0 auto;
    padding: 70px 20px;
    text-align: center;
}

#company .company-content h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
}

#company .company-content table {
    background-color: white;
    width: 100%;
}

#company .company-content table th,
#company .company-content table td {
    padding: 15px 20px;
    text-align: left;
    font-weight: bold;
}

#company .company-content table th {
    background-color: #f3f3f3;
    border: 2px solid white;
    font-size: 1.8rem;
}

#company .company-content table td {
    font-size: 1.5rem;
}

footer {
    border-top: #1644b1 solid 1px;
    border-bottom: #1644b1 solid 10px;
    ;
}

footer .footer-cts {
    max-width: 1280px;
    margin: 0 auto;
    padding: 30px 20px 60px;
    display: flex;
    justify-content: space-between;
}

footer .footer-cts img {
    width: 360px;
    margin-bottom: 15px;
}

footer .footer-cts p {
    margin-top: 3px;
    font-size: 1.5rem;
    line-height: 1.4;
}

footer .footer-cts .txt {
    width: 35%;
}

footer .footer-cts .txt .flex {
    display: flex;
    justify-content: start;
    gap: 8px;
    align-items: center;
}

footer .footer-cts .txt .flex p {
    margin: 0;
}

footer .footer-cts .txt .flex p.company-name {
    font-size: 2.3rem;
    font-weight: bold;
}

footer .footer-cts .nav {
    width: 75%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: right;
}

footer .footer-cts .nav ul {
    display: flex;
    display: flex;
    justify-content: end;
    gap: 15px;
    font-size: 1.4rem;
}

footer .footer-cts .nav ul a:hover {
    color: #ff3a55;
}

footer .footer-cts .tel {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.3;
    font-family: -apple-system, BlinkMacSystemFont, "Roboto", "Yu Gothic", YuGothic, Verdana, Meiryo, sans-serif !important;
}

footer .footer-cts .time {
    font-size: 1.3rem;
}

/* subpage service */
.subpage #subvisual {
    background: #f5f5f5;
    padding: 120px 0px 40px;
    position: relative;
    z-index: -2;
}

.owner.subpage #subvisual {
    padding: 40px 0px 60px;
}



.subpage #subvisual::after {
    font-family: 'Martel Sans', sans-serif;
    content: "LARGE";
    position: absolute;
    font-size: 17rem;
    color: #fff;
    bottom: -8px;
    right: 0;
    line-height: 0.5;
    z-index: -1;
    font-weight: 900;
}

.subpage #subvisual .inner {
    max-width: 1120px;
    margin: auto;
    padding: 0px 20px;
}

.subpage #subvisual .pagename {
    font-size: 3.5rem;
    font-weight: 900;
}

.subpage #subvisual h1 {
    font-size: 1.5rem;
    font-weight: normal;
}

.Breadcrumb {
    border-bottom: solid 1px #e6e6e6;
}

.owner .Breadcrumb {
    border-bottom: none;
    margin-bottom: 15px;
}

.owner .maincts #worries h2 {
    text-align: center;
    padding: 20px 0;
    color: #fff;
    background: linear-gradient(0deg, #FE2845, #F9B349);
    font-size: 2.2rem;
}

.owner .maincts h4 {
    margin-top: 20px;
}

.owner .maincts #worries .flex {
    display: flex;
    max-width: 1120px;
    padding: 40px 20px;
    margin: 0 auto;
    gap: 10px;
    align-items: center;
}

.owner .maincts .Leave {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0% 20px;
    color: #fff;
    text-align: center;
    font-size: 2.2rem;
    position: relative;
}

.owner .maincts .Leave h2 {
    background: #008490;
    padding: 10px 0;
}

.owner .maincts .Leave h2::before {
    content: '';
    width: 0px;
    height: 0px;
    top: 0px;
    border: unset;
    border-top: 28px solid transparent;
    border-bottom: 28px solid transparent;
    border-right: 20px solid #008490;
    position: absolute;
    left: 0px;
    right: unset;
}

.owner .maincts .Leave h2::after {
    content: '';
    width: 0px;
    height: 0px;
    top: 0px;
    border: unset;
    border-top: 28px solid transparent;
    border-bottom: 28px solid transparent;
    border-left: 20px solid #008490;
    position: absolute;
    right: 0px;
    left: unset;
}

.owner .maincts #worries ul {
    width: 65%;
}

.owner .maincts #worries li {
    padding: 10px 20px;
    border-radius: 100px;
    background: #f9f9f9;
    border: solid 1px #c3c3c3;
    margin-bottom: 10px;
    font-weight: bold;
}

.owner .maincts #worries figure {
    width: 35%;
}

.owner .maincts #Solarbrowser,
.owner .maincts #SolarRemon,
.owner .maincts #schedule {
    max-width: 1120px;
    margin: 90px auto;
    padding: 40px 20px;
    background: #ebf3f5;
    border-radius: 10px;
}

.owner .maincts #Solarbrowser h2,
.owner .maincts #SolarRemon h2,
.owner .maincts #schedule h2 {
    margin-top: -80px;
    font-size: 4rem;
}

.owner .maincts #Solarbrowser h2 span,
.owner .maincts #SolarRemon h2 span,
.owner .maincts #schedule h2 span {
    font-size: 5rem;
    color: #008490;
    font-family: -apple-system, BlinkMacSystemFont, "Roboto", "Yu Gothic", YuGothic, Verdana, Meiryo, sans-serif !important;
    margin-right: 10px;
}

.owner .maincts #Solarbrowser .flex,
.owner .maincts #SolarRemon .flex,
.owner .maincts #schedule .flex {
    margin: 20px 0;
    display: flex;
    gap: 30px;
}

.owner .maincts #SolarRemon .flex.base {
    align-items: flex-end;
}

.owner .maincts #SolarRemon .flex.base figure {
    margin: 0;
    text-align: center;
}

.owner .maincts a {
    color: #004c90;
}

.owner .maincts #Solarbrowser .flex .txt,
.owner .maincts #SolarRemon .flex .txt,
.owner .maincts #schedule .flex .txt {
    width: 65%;
}

.owner .maincts #Solarbrowser .flex figure,
.owner .maincts #SolarRemon .flex figure,
.owner .maincts #schedule .flex figure {
    width: 35%;
}

.owner .maincts #Solarbrowser .flex h3,
.owner .maincts #SolarRemon .flex h3,
.owner .maincts #schedule .flex h3 {
    margin-bottom: 40px;
    position: relative;
}

.owner .maincts #Solarbrowser .flex h3::after,
.owner .maincts #SolarRemon .flex h3::after,
.owner .maincts #schedule .flex h3::after {
    content: "";
    display: inline-block;
    height: 5px;
    background-color: #008490;
    position: absolute;
    bottom: -19px;
    left: 0;
    width: 120px;
}

.owner .maincts .flex p {
    font-size: 1.7rem;
}

.owner .maincts #SolarRemon .flex img.qr {
    width: 100px;

}


.owner .maincts #dairi {
    background: linear-gradient(0deg, #FE2845, #F9B349);
    max-width: 1120px;
    margin: 0 auto;
    padding: 30px 20px;
    border-radius: 10px;
    margin-bottom: 60px;
    text-align: center;
    color: #fff;
}

.owner .maincts #dairi h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;

}

.owner .maincts #dairi p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.7rem;
}

.owner .maincts #dairi .tel {
    margin-bottom: 20px;
    margin-top: 20px;
}

.owner .maincts #dairi .tel a {
    font-size: 3.5rem;
    color: #fff;
    font-weight: bold;
}

.owner .maincts #dairi .tel .fa-solid,
.fas {
    font-size: 2.9rem;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 10px;
}

.owner .maincts #dairi .btn-box {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.owner .maincts #dairi .btn-box .btn {
    background: #fff;
    color: #1644b1;
    font-size: 17px;
    padding: 15px;
    border: solid 1px #1644b1;
    width: 300px;
    justify-content: center;
}

.owner .maincts #dairi .btn-box .btn::before {
    content: none;
}

.Breadcrumb .inner {
    max-width: 1120px;
    margin: auto;
    padding: 5px 20px;
    font-size: 1.2rem;
}

.Breadcrumb span.material-symbols-outlined {
    vertical-align: -4px;
    font-size: 1.8rem;
}

i.fa-solid.fa-house-chimney {
    font-size: 1.1rem;
    vertical-align: 1px;
}

.service #maincts {
    max-width: 1120px;
    margin: 0 auto;
    padding: 60px 20px;
}

.service #maincts .chart .figure {
    position: relative;
}

.service #maincts .chart .kainds01 {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
}

.service #service .bg {
    background: linear-gradient(-135deg, #ebeff3, #f6fdf8);
}

.service #service .flex {
    display: flex;
    max-width: 1120px;
    margin: 0 auto;
    padding: 60px 20px;
    gap: 30px;
}

.service #service .flex .txt {
    width: 50%;
}

.service #service .flex figure {
    width: 50%;
}

.service h2 {
    font-size: 2.6rem;
    margin-bottom: 10px;
}

.service #service h2 {
    padding-left: 15px;
    border-left: 7px solid #238da9;
    margin-bottom: 15px;
}

.service p {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

#maincts .mt.mb {
    width: 90%;
    margin: 50px auto 10px;
}


.service #maincts .mt.mb {
    width: 90%;
    margin: 50px auto 10px;
    padding: 30px;
    border-radius: 10px;
    border: solid 20px #ecf5fb;
}


/* subpage company */
.company .maincts {
    background: #edf4f5;
    border-radius: 20px;
    max-width: 1080px;
    margin: 50px auto;
    padding: 30px 40px;
}

.company .bunner-cts {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

.company .bunner-cts a:hover {
    opacity: 0.8;
}

.company .bunner-cts img {
    border: solid 1px #eee;
    border-radius: 10px;
}

.company #vison .flex {
    display: flex;
    gap: 30px;
    align-items: flex-end;
}

.company #vison .flex .txt {
    width: 50%;
}

.company #vison .flex figure {
    width: 50%;
    margin: 0;
}

.company .ruby {
    font-size: 5rem;
    font-weight: 900;
}

.company h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.company #compinfo {
    padding: 50px 0;
}

.company #compinfo p {
    margin: 15px 0;
    font-size: 1.6rem;
}

/* table01 */
#table01 {
    width: 100%;
}

#table01 tr {
    border-bottom: 1px solid #b5b1b1;
}

#table01 th,
#table01 td {
    padding: 24px 0;
    border: none;
    text-align: left;
}

#table01 th {
    width: 30%;
    font-weight: bold;
}

.company #access .info {
    margin-top: 15px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
}

.company #access .info a {
    padding: 8px 80px 8px 20px;
    background: #272727;
    color: #fff;
    font-weight: 700;
    position: relative;
    font-size: 1.3rem;
}

.company #access .info a::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 1px;
    top: 50%;
    right: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background: #fff;
    transition: 0.2s;
}

.company #access .info a:hover:after {
    width: 50px;
}

.faq .maincts {
    max-width: 1120px;
    margin: 60px auto;
    padding: 0 20px;
}

.faq .maincts .qacts {
    background: #f6f6f6;
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 8px;
}

.faq .maincts .qacts .question {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.faq .maincts .qacts .question::before {
    content: "Q. ";
    color: #FF3A55;
    font-family: 'Righteous', cursive;
    font-size: 2rem;
}

.faq .maincts .qacts .answer {
    font-size: 1.5rem;
    background: #fff;
    padding: 20px;
}

.contact .maincts {
    max-width: 1120px;
    margin: 60px auto;
    padding: 0 20px;
}

.contact .flex {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
}

.contact .flex>div {
    width: 50%;
}

.contact .flex .txt h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact .flex .txt ul {
    font-size: 1.5rem;
}

.contact .flex .txt ul li {
    line-height: 2.5;
    position: relative;
    padding-left: 30px;
}

.contact .flex .txt ul li:before,
.contact .flex .txt ul li:after {
    content: "";
    display: block;
    position: absolute;
}

.contact .flex .txt ul li:before {
    width: 16px;
    height: 16px;
    background: #ffffff;
    border: 1px solid #ff3a55;
    left: 0;
    top: 11px;
}

.contact .flex .txt ul li:after {
    border-left: 2px solid #ff3a55;
    border-bottom: 2px solid #ff3a55;
    width: 17px;
    height: 7px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    left: 2px;
    top: 11px;
}

.contact .flex .txt p {
    margin-top: 20px;
    font-size: 1.5rem;
}

.contact .maincts .form {
    background: #f7f7f7;
    padding: 20px 60px;
}

.contact .maincts .form h2 {
    text-align: center;
    font-size: 2.6rem;
    margin: 30px 0;
}

.contact .maincts input,
.contact .maincts select,
.contact .maincts textarea {
    font-size: 1.5rem;
    padding: 10px;
    margin: 4px 0px;
    outline: none;
    border: solid 1px #cfcfcf;
}

.contact .maincts textarea {
    resize: vertical;
}

.contact .maincts input[type="radio"],
.contact .maincts input[type="checkbox"] {
    border: solid 1px #cfcfcf;
}

.contact .maincts #table01 th {
    width: 30%;
    font-weight: bold;
    padding: 0 0 0 20px;
    vertical-align: middle;
}

.contact .maincts #table01 span.required-srt,
.download .maincts #table02 span.required-srt {
    background: #8e804d;
    padding: 0px 5px;
    color: #ffe1e1;
    display: inline-block;
    font-size: 1.1rem;
    align-items: center;
    vertical-align: 1px;
    margin-left: 10px;
    font-weight: normal;
    border-radius: 5px;
}

.contact .maincts .scrollbox {
    margin-top: 30px;
    overflow: scroll;
    height: 200px;
    padding: 10px 20px;
    background: #fff;
    font-size: 1.4rem;
}

.pr-check {
    text-align: center;
    margin: 20px 0;
    font-size: 1.4rem;
}

input#chk-1 {
    vertical-align: -1px;
}

#table02 {
    width: 100%;
    table-layout: fixed;
    word-break: break-all;
    word-wrap: break-all;
    font-size: 1.6rem;
}

#table02 th,
#table02 td {
    display: block;
    width: 100%;
    border: none;
    text-align: left;
}

#table02 td {
    padding-bottom: 20px;
}

#table02 th {
    font-weight: bold;
    font-size: 1.5rem;
}


/* おしらせぺーじ */


.news .maincts .inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 80px 20px 50px;
}

.news .maincts .inner .txt {
    display: flex;
    gap: 30px;
}

.news .maincts .inner .txt .ttl {
    width: 180px;
    border-top: solid 3px #008490;
}

.news .maincts .inner .txt h2 {
    font-size: 2.3rem;
    margin: 20px 0 10px;
}

.new .maincts .inner .txt .ttl .btn {
    background: none;
    color: #008490;
    flex-direction: row-reverse;
    display: block;
    text-align: left;
    padding-left: 23px;
}

.news .maincts .inner .txt .ttl a::before {
    font-family: 'Font Awesome 5 Free';
    content: '\f061';
    color: #fff;
    background: linear-gradient(-135deg, #FE2845, #F9B349);
    left: 0rem;
    font-size: 11px;
    transform: none;
    width: 18px;
    height: 18px;
}


.news .maincts .news_list_item {
    padding: 15px 0px;
    border-bottom: 1px solid #E6E6E6;
}

.news .maincts .news_list_item:nth-child(1) {
    border-top: 1px solid #E6E6E6;
}

.news .maincts .news_list_item a {
    position: relative;
    display: flex;
}

.news .maincts .news_list_date {
    display: flex;
    margin-right: 30px;
    align-items: center;
}

.news .maincts .news_list_date time {
    font-size: 1.2rem;
    margin-left: 8px;
    letter-spacing: 0.8px;
    width: 105px;
}

.news .maincts .news_list .text {
    font-size: 1.5rem;
}

.news .maincts .news_item {
    font-size: 12px;
    border-radius: 20px;
    width: 101px;
    text-align: center;
    margin-left: 25px;
    padding: 1px 0;
}

.news .maincts .news_item.news {
    color: #0053a7;
    border: 1px solid #0053a7;
}

.news .maincts .news_item.blog {
    color: #e07878;
    border: 1px solid #e07878;
}


.single .maincts a {
    color: #0053a7;
    text-decoration: underline;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin-right: 10px;
}


.product .bg {
    background: #f9f9f9;
    padding: 50px 0 20px;
}


.product .leadcts {
    max-width: 1120px;
    margin: 0px auto;
    padding: 0 20px;
}

.product .leadcts h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.product .leadcts p {
    font-size: 1.4rem;
    margin-left: 60px;
}

.product .maincts {
    max-width: 1120px;
    margin: 50px auto 30px;
    padding: 0 20px;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.product .maincts img {
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1), 0 4px 4px -4px rgba(0, 0, 0, .1);
    border: solid 1px #eee;
    border-radius: 5px;
    height: 216px;
    object-fit: cover;
    object-position: top;
}

.product .maincts .cts {
    width: calc(100% / 3 - 17px);
}

.product .maincts .cts p {
    margin: 8px 0 0;
}

i.fa-solid.fa-tag {
    font-size: 1.3rem;
    color: #818181;
}

.product .maincts .cts dd {
    display: inline-block;
    font-size: 1.4rem;
    color: #818181;
}

.privacy .maincts {
    max-width: 1120px;
    margin: 60px auto;
    padding: 0 20px;
}

.privacy .maincts h2 {
    margin-top: 20px;
    margin-bottom: 5px;
    font-size: 1.9rem;
}

.privacy .maincts p {
    font-size: 1.4rem;
}

.privacy .maincts li {
    list-style: auto;
    margin-left: 30px;
    font-size: 1.4rem;
}

.column .maincts {
    margin: 50px auto;
    max-width: 1120px;
    padding: 0 20px;
}

.blog.archive .maincts {
    max-width: 1120px;
    margin: 50px auto;
    padding: 0 20px;
}



.blog.archive .columncts {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: solid 1px #d4d4d4;
}

.blog.archive .columncts .image {
    width: 40%;
    position: relative;
    overflow: hidden;
}

.blog.archive .columncts .image img {
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1), 0 4px 4px -4px rgba(0, 0, 0, .1);
    transition: 0.2s;
}

.blog.archive .columncts:hover img {
    transform: scale(1.1, 1.1);
    transition: 0.2s;
}

.blog.archive .columncts .image .tag {
    position: absolute;
    top: 0;
    left: 0;
    background: #004f9d;
    color: #fff;
    font-size: 1.2rem;
    padding: 1px 7px;
}

.blog.archive .columncts .image .tag::before {
    font-family: "Font Awesome 5 Free";
    content: '\f07b';
    font-weight: 900;
    font-size: 1.1rem;
    margin-right: 5px;
}

.blog.archive .columncts .txt {
    width: 60%;
}

.blog.archive .columncts .txt h2 {
    font-size: 2.3rem;
    margin-bottom: 5px;
}

.blog.archive .columncts .txt p {
    font-size: 1.5rem;
}

.blog.archive .columncts .txt .date {
    font-size: 1.3rem;
}

.blog.archive .columncts .txt .date::before {
    font-family: "Font Awesome 5 Free";
    content: '\f017';
    font-size: 1.1rem;
    margin-right: 5px;
}

.column.post .maincts {
    margin: 50px auto;
    max-width: 1080px;
    border-radius: 5px;
    border: solid 1px #e5e5e5;
    padding: 0;
}

.column.post .maincts img {
    border-radius: 5px 5px 0 0;
}

.column.post .maincts .inner img {
    margin-bottom: 20px;
}

.column.post .maincts .inner {
    padding: 20px;
}

.column.post .maincts h1 {
    margin-top: 5px;
    font-size: 2.4rem;
    margin-bottom: 20px;
    border-bottom: double 4px #207DC6;
    padding: 10px 0 5px;
}

.column.post .maincts h2 {
    border-left: 4px solid #207DC6;
    font-size: 2.1rem;
    background: #f1f4f5;
    padding: 1rem 2rem;
    margin-bottom: 20px;
    margin-top: 10px;
}

.column.post .maincts h3 {

    font-size: 2.1rem;
    background: #f1f4f5;
    padding: 1rem 1.5rem;
    border-radius: 5px;
    margin-bottom: 15px;
    margin-top: 20px;
}

.column.post .maincts h4 {
    font-size: 1.5rem;
    display: inline-block;
    position: relative;
    padding: .3em 1em;
    border-radius: 50px;
    background-color: #2589d0;
    color: #fff;
}

.column.post .maincts h4::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 9px;
    border-radius: 50%;
    background: #fff;
}

.column.post .maincts p {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 15px;
}

.column.post .maincts .cts-info {
    font-size: 1.2rem;
    color: #898989;
}

.column.post .maincts .cts-info span.da {
    margin-right: 5px;
}

.column.post .maincts ul {
    list-style: none;
}

.column.post .maincts li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
}

.column.post .maincts li::before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 9px;
    left: 1px;
    width: 10px;
    height: 10px;
    background-color: #FF3A55;
    border-radius: 5px;
}

.column.post .maincts ol {
    counter-reset: li;
    position: relative;
    margin: 0;
    padding: 0 10px 0 6px;
    list-style: none;
    margin-bottom: 20px;
}

.column.post .maincts ol>li {
    position: relative;
    margin: 12px 20px 0 24px;
    padding: 0;
    line-height: 2;
}

.column.post .maincts ol>li:before {
    position: absolute;
    font-weight: bold;
    counter-increment: li;
    content: counter(li) "";
    left: -34px;
    top: 4px;
    color: #fff;
    width: 24px;
    height: 24px;
    font-size: 14px;
    text-align: center;
    border-radius: 100%;
    box-sizing: border-box;
    font-weight: bold;
    line-height: 0.9;
    background: #ff3a55;
    padding: 6px 0;
}




/* 大会情報 */
.custom-select-wrapper {
    position: relative;
    display: inline-block;
}

.custom-select {
    border: 1px solid #ccc;
    padding: 8px 16px;
    padding-right: 35px;
    border-radius: 5px;
    background-color: whitesmoke;
    cursor: pointer;
    font-family: 'Noto Sans JP', sans-serif;
    -webkit-appearance: none;
    /* Chrome, Safari 用 */
    -moz-appearance: none;
    /* Firefox 用 */
    appearance: none;
    /* 標準 */
    font-size: 1.6rem;
}

/* 矢印アイコンを追加 */
.custom-select-wrapper::after {
    content: '\25BC';
    /* 下向き矢印 */
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    pointer-events: none;
    /* クリックイベントを無効にする */
    font-size: 1.2rem;
    color: #333;
}


.tournament.blog h2 {
    font-size: 2rem;
    margin-top: 30px;
}

.tournament.blog .filter {
    margin-bottom: 5px;
}

.table_design05 {
    border-collapse: collapse;
    width: 100%;
    max-width: 700px;
}

.table_design05 th,
.table_design05 td {
    padding: 15px;
    vertical-align: middle;
    align-items: center;
}

.table_design05 th {
    font-weight: bold;
    text-align: left;
    width: 17%;
    min-width: 4em;
    position: relative;
}

.table_design05 th::after {
    content: '';
    background-color: #c1c7c6;
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
}

.column.post .maincts .inner .table_design05 img {
    width: 35px;
    margin-bottom: 0;
}

/* 目次 */
/* TOC+ */
#toc_container {
    margin: 30px 10px;
    background-color: rgba(44, 153, 181, .04);
    /* 目次全体の背景カラー */
    border: 3px solid rgba(64, 105, 144, .2);
    /* 目次全体の枠線 */
    border-radius: 3px;
    box-sizing: border-box;
    padding: 30px 30px;
    display: table;
    min-width: 60%;
    counter-reset: li;
}

/* テーマによるリストの装飾を一旦無効化 */
#toc_container ul.toc_list li::before {
    content: none;
    padding: 0;
    margin: 0;
    width: 0;
    height: 0;
    background: none;
    box-shadow: none;
}

/* 目次の見出しタイトル */
#toc_container .toc_title {
    text-align: center;
    font-weight: bold;
    font-size: 100%;
    padding: 0;
}

/* 見出しタイトル左のアイコン */
#toc_container .toc_title::before {
    position: relative;
    font-size: 20px;
    content: "\2254";
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 27px;
    margin-right: 8px;
    border-radius: 50%;
    vertical-align: baseline;
    speak: none;
    -webkit-font-smoothing: antialiased;
    color: #fff;
    background-color: #5f7b96;
}

/* 表示／非表示トグル */
#toc_container .toc_toggle a {
    font-size: 13px;
    font-weight: normal;
    padding: 2px 4px;
}

/* 目次エリア */
#toc_container p.toc_title+ul.toc_list {
    padding: 20px 0 0;
    margin: 20px 0 0;
    border-top: 1px solid rgba(0, 0, 0, .1);
}

/* リスト共通スタイル */
#toc_container ul.toc_list li {
    position: relative;
    padding: 0;
    margin: 0;
}

/* 目次リンク共通スタイル */
#toc_container ul.toc_list li a {
    position: relative;
    font-size: 90%;
    font-weight: normal;
    text-decoration: none;
    display: inline-block;
    line-height: 1.6;
    padding: 3px 0;
    margin: 3px 0;
    transition: all .3s ease;
}

#toc_container ul.toc_list a,
#toc_container ul.toc_list a:visited {
    color: #5f7b96;
    /* リンクカラー */
}

/* マウスオーバー時 */
#toc_container ul.toc_list li a:hover {
    text-decoration: none;
    box-shadow: 0 2px;
}

/* 親の目次 */
#toc_container ul.toc_list>li>a {
    font-size: 94%;
    font-weight: bold;
    margin-left: 40px;
}

/* 親の目次(左側の連番) */
#toc_container ul.toc_list>li::before,
#toc_container ul.toc_list>li::after {
    position: absolute;
    top: 8px;
    left: 10px;
}

/* 連番背景 */
#toc_container ul.toc_list>li::before {
    content: '';
    display: inline-block;
    vertical-align: bottom;
    width: 22px;
    height: 22px;
    margin-right: 2px;
    border-radius: 16px;
    background-color: rgba(125, 157, 188, 0.66);
}

/* 連番 */
#toc_container ul.toc_list>li::after {
    counter-increment: li;
    content: counter(li);
    width: 22px;
    line-height: 22px;
    font-family: 'Avenir Next', 'Helvetica Neue', Arial, 'Meiryo', 'Yu Gothic', san-serif;
    font-weight: 400;
    text-align: center;
    color: #fff;
}

/* 子の目次 */
#toc_container ul.toc_list>li>ul {
    margin-left: 40px;
}

/* 子の目次の左側のアイコン */
#toc_container ul.toc_list>li ul li::before {
    position: absolute;
    top: 3px;
    left: 0;
    content: '\2023';
    display: inline-block;
    width: 14px;
    height: 28px;
    line-height: 28px;
    font-size: 18px;
    color: #5f7b96;
}

#toc_container ul.toc_list>li ul li a {
    font-weight: normal;
    margin-left: 16px;
}

/* レスポンシブ設定(767px幅以下) */
@media only screen and (max-width: 767px) {
    #toc_container {
        padding: 20px 3vw;
        min-width: auto;
        width: 100% !important;
        margin: 0;
    }

    #toc_container p.toc_title+ul.toc_list {
        padding: 20px 0 0;
    }

    #toc_container ul.toc_list>li>ul {
        margin-left: 30px;
    }
}

/* sp */
@media only screen and (max-width: 480px) {

    #table01 th,
    #table01 td {
        width: 100%;
        display: block;
    }

    #table01 th {
        width: 100%;
    }

    #table01 td {
        padding-top: 0;
    }
}

.company #access {}

/* notepc */
@media screen and (max-width: 1279px) {
    h3 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .top .mv-bg .mv {
        padding: 0 5.5%;
    }


    header .gnav {
        gap: 10px;
    }

    header .gnav nav ul {
        gap: 15px;
    }

    header .gnav nav ul li a {
        font-size: 1.4rem;
    }

    .btn,
    header.header-scroll .gnav .btn {
        font-size: 1.4rem;
    }

    .top .mv-text li {
        width: 140px;
        height: 140px;
        font-size: 1.35rem;
    }

    .top .mv-text li span {
        font-size: 2rem;
    }

    .top .mv-point h2.ttl01 {
        font-size: 3rem;
    }

    .top .mv-point h2.ttl02 {
        font-size: 7rem;
    }

    .top .mv {
        gap: 0px;
    }

    .top .mv-point p {
        font-size: 1.5rem;
    }

    .top h2 {
        font-size: 3.4rem;
    }

    .top #solution ul li {
        font-size: 1.4rem;
    }

    #contact {
        border-radius: 0px;
        padding: 70px 20px;
    }

}


/* tablet */
@media screen and (max-width: 1080px) {
    header .gnav nav ul li a {
        font-size: 1.3rem;
    }

    header .gnav .btn {
        font-size: 1.3rem;
    }

    header.header-scroll .gnav nav ul li a {
        font-size: 1.3rem;
    }

    .top h2 {
        font-size: 3rem;
    }
}




/* sp */
@media screen and (max-width: 990px) {
    h3 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .sp {
        display: block;
        padding: 11px 15px;
    }

    .pc {
        display: none !important;
    }

    header {
        padding: 0;
        position: relative;
        width: 100%;
        margin: 0;
        border-radius: 0;
        align-items: unset;
    }

    main.top {
        margin-top: 8px;
    }

    header.header-scroll {
        padding: 0;
    }

    header .logo {
        margin-left: 15px;
        padding: 12px 0px;
    }

    header .logo img {
        width: 240px !important;
    }


    /* ドロワーメニューここから */
    #toggle {}

    header.header-scroll #toggle {
        top: 9px;
    }

    #toggle-box {
        position: relative;
        width: 33px;
        height: 22px;
        cursor: pointer;
    }

    #toggle-box .txt {
        position: absolute;
        bottom: 5px;
        color: #fff;
        top: 22px;
        left: 0%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        font-size: 11px;
    }

    #toggle-box>span {
        width: 100%;
        height: 2px;
        left: 0;
        display: block;
        background: #fff;
        position: absolute;
        transition: transform .6s ease-in-out, top .5s ease, bottom .5s ease;
    }

    #toggle-box>span:nth-child(1) {
        top: 0;
    }

    #toggle-box>span:nth-child(2) {
        top: 50%;
        transform: translatey(-50%);
    }

    #toggle-box>span:nth-child(3) {
        bottom: 0;
    }

    .is-open #toggle-box>span {}

    .is-open #toggle-box>span:nth-child(1) {
        top: 50%;
        transform: rotate(45deg) translatey(-50%);
    }

    .is-open #toggle-box>span:nth-child(2) {
        width: 0;
    }

    .is-open #toggle-box>span:nth-child(3) {
        top: 50%;
        transform: rotate(-45deg) translatey(-50%);
    }

    /* z-index */
    #toggle {
        z-index: 1000;
    }

    #main {
        position: relative;
        z-index: 990;
    }

    #nav-content {
        z-index: 900;
        overflow: auto;
        width: 100%;
        height: 100%;
        background: #fff;
        color: #fff;
        position: fixed;
        top: 55px;
        left: 0;
        opacity: 0;
        transition: opacity .6s ease, visibility .6s ease;
        pointer-events: none;
    }

    header #nav-content .btn {
        background-color: #FF3A55;
        color: #fff;
        font-size: 1.3rem;
        position: relative;
        overflow: hidden;
        z-index: 3;
        width: 45%;
    }

    header #nav-content .btn.edge {
        background-color: #fff;
        color: #FF3A55;
        border: solid 1px #FF3A55;
        transition: .2s;

    }

    header.header-scroll #nav-content {
        border-top: #5550f3 solid 1px;
        top: 55px;
    }

    header #nav-content .cta {
        padding: 30px;
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    #nav-content ul {
        list-style: none;
    }

    #nav-content ul li {
        border-bottom: 1px solid #e1e1e1;
    }

    #nav-content a {
        display: block;
        color: #333;
        text-decoration: none;
        padding: 18px 10px;
        transition: opacity .6s ease;
        pointer-events: none;
        font-size: 1.6rem;
        position: relative;
    }

    #nav-content ul li a::after {
        content: '';
        width: 6px;
        height: 6px;
        border: 0;
        border-top: solid 1px #5550f3;
        border-right: solid 1px #5550f3;
        position: absolute;
        top: 50%;
        right: 15px;
        margin-top: -4px;
        transform: rotate(45deg);
    }

    #nav-content a:hover {
        opacity: 0.6;
    }

    .is-open {
        overflow: hidden;
    }

    .is-open #nav-content {
        z-index: #E5E5E5;
        visibility: visible;
        opacity: 1;
    }

    .is-open #nav-content a {
        pointer-events: auto;
    }

    .top {
        margin-top: 10px;
    }

    .top .mv {}

    .top .mv-text {
        width: 100%;
    }

    .top .mv-text ul {
        justify-content: center;
    }

    .btn-box {
        text-align: center;
    }

    .top #solution ul li {
        font-size: 1.2rem;
        padding: 10px;
    }

    .top #plan .inner {
        flex-wrap: wrap;
    }

    .top #plan .txt {
        width: 100%;
    }

    .top #plan .cts {
        width: calc(50% - 10px);
    }

    #contact .txt-cts h2 {
        font-size: 2.4rem;
    }

    .top .btn-box a.btn.spsmall {
        font-size: 1.5rem;
    }

    .top #can .cts,
    .service #can .cts {
        width: calc(33.333333% - 14px);
    }

    .owner.subpage #subvisual .pagename {
        font-size: 3rem;
    }

    .service #maincts .mt.mb {
        width: 100%;
        margin: 50px auto 10px;
    }

    .company #vison .flex {
        flex-direction: column;
    }

    .company #vison .flex .txt {
        width: 100%;
    }

    .company #vison .flex figure {
        width: 100%;
    }
}


@media screen and (max-width: 767px) {
    header {
        padding: 0;
        z-index: 5;
    }

    p {
        font-size: 1.4rem;
        line-height: 2;
    }

    .fas_table_colheader {
        width: 100%;
        min-width: 980px;
    }

    table.fas_table_colheader th {
        font-size: 2.8vw;
    }

    .fas_table_colheader p {
        font-size: 2.8vw;
        line-height: 1.5;
    }

    table.fas_table_colheader td {
        padding: 4px 10px;
    }

    table.fas_table_colheader img {
        width: 20px;
    }

    .record-table-wrap {
        overflow-x: scroll;
    }

    .file.appli img {
        display: block;
    }

    .file.appli a {
        color: #333;
        font-size: 1.3rem;
        display: flex;
        align-items: center;
        flex-direction: column;
        font-size: 2vw;
    }

    table.fas_table_colheader td.file.appli {
        text-align: center;
    }

    header.header-scroll {
        padding: 0;
    }

    #bunner {
        flex-direction: column;
    }

    header .logo img {
        display: block;
        width: 230px !important;
    }

    #toggle {
        top: 15px;
        right: 15px;
    }

    .toggle_title {
        padding: 10px 35px 10px 40px;
        font-size: 1.8rem;
        font-weight: bold;
        line-height: 1.3;
    }

    .toggle_contents:after {
        width: 22px;
        height: 22px;
        top: 12px;
        left: 10px;
    }

    .toggle_btn {
        right: 12px;
        width: 17px;
        height: 17px;
    }

    .toggle_contents dd {
        padding: 10px 20px;
        font-size: 1.5rem;
    }

    .company .ruby {
        font-size: 4rem;
    }

    .subpage #subvisual {
        padding: 20px 0px;
    }

    .subpage #subvisual .pagename {
        font-size: 2.8rem;
        font-weight: 900;
    }


    #company .company-content {
        padding: 40px 20px;
    }

    #company .company-content h2 {
        font-size: 3.2rem;
        margin-bottom: 30px;
    }

    #company .company-content table th,
    #company .company-content table td {
        display: block;
        font-size: 1.5rem;
        padding: 10px 15px;
    }

    #contact table th,
    #contact table td {
        display: block;
    }

    #contact table th {
        width: 100%;
    }

    #contact table input {
        width: calc(100% - 10px);
    }

    .top .mv-point h2.ttl01 {
        font-size: 3.8vw;
        margin-top: 0;
    }

    .top .mv-point h2.ttl02 {
        font-size: 10.8vw;
    }

    .top .mv-point p {
        font-size: 3vw;
    }

    .top .mv-text li {
        width: 27vw;
        height: 27vw;
        font-size: 1rem;
        letter-spacing: 0;
    }

    .top .mv-bg .mv {
        margin: 0 15px;
    }

    /* 
    .top .mv-text {
        text-shadow: 2px 2px 10px #ffffff, -2px 2px 10px #ffffff, 2px -2px 10px #ffffff, -2px -2px 10px #ffffff;
    } */

    .top .copy {
        display: none;
    }

    .scrolldown2 {
        position: absolute;
        bottom: 0px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
    }

    .scrolldown2 span {
        position: absolute;
        left: -11px;
        bottom: 60px;
        color: #fff;
        font-size: 0.7rem;
        letter-spacing: 0.05em;
        -ms-writing-mode: horizontal-tb;
        -webkit-writing-mode: horizontal-tb;
        writing-mode: horizontal-tb;
    }

    .scrolldown2:before {
        background: #fff;
    }

    .scrolldown2:after {
        background: #fff;
    }

    .top .mv-text li span {
        font-size: 1.55rem;
    }

    .top section#works {
        padding: 0;
    }

    .top #works .ttl {
        padding: 0 20px;
        margin-top: 10px;
    }

    .top #misson {
        flex-direction: column;
    }

    .top #misson>div {
        width: 100%;
    }

    .top #concept {
        flex-direction: column;
        gap: 15px;
    }

    .top #concept .ttl {
        width: 100%;
    }

    .top #concept .cts {
        width: 100%;
    }

    .flowtext p {
        line-height: 1.5;
    }

    .top #service .flex .cts {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 60px;
    }

    .top #service .flex .cts .image {
        width: 100%;
    }

    .top #service .flex .cts .txt {
        width: 100%;
    }

    .top #news .inner .txt {
        flex-direction: column;
    }

    .top #news .news_list_item a {
        flex-direction: column;
    }

    .top #news .news_list_date time {
        margin-left: 0;
    }

    .top #blog .cts {
        flex-direction: column;
    }

    #contact {
        flex-direction: column;
        margin-bottom: 8px;
    }

    #contact .txt-cts {
        width: 100%;
    }

    #contact .btn-cts {
        width: 100%;
        flex-direction: column;
    }

    footer .footer-cts {
        flex-direction: column;
        padding: 0;
    }

    footer .footer-cts .txt {
        width: 100%;
        padding: 20px;
    }

    footer .footer-cts .nav {
        width: 100%;
    }

    footer .footer-cts .nav ul {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 0;
    }

    footer .footer-cts .nav ul li {
        width: 50%;
        text-align: center;
    }

    footer .footer-cts .nav ul li a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        background: #eee;
        padding: 8px 0;
    }

    footer .footer-cts .copyright p {
        margin-top: 5px;
        text-align: center;
    }

    footer .footer-cts .nav ul {
        border-top: solid 1px #c7c7c7;
    }

    footer .footer-cts .nav ul li a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        background: #f7f7f7;
        border-bottom: solid 1px #c7c7c7;
        border-right: solid 1px #c7c7c7;
        padding: 8px 0;
    }

    footer .footer-cts .nav ul li:nth-of-type(2n) a {
        border-right: none;
    }

    .subpage #subvisual::after {
        font-size: 25vw;
    }

    .owner .maincts #worries .flex {
        flex-direction: column;
        align-items: flex-end;
    }

    .owner .maincts #worries ul {
        width: 100%;
    }

    .owner .maincts #worries figure {
        width: 30%;
    }

    .owner .maincts .Leave {
        padding: 0% 35px;
    }

    .owner .maincts .Leave h2::before {
        left: 15px;
    }

    .owner .maincts .Leave h2::after {
        right: 15px;
    }

    .owner .maincts #Solarbrowser,
    .owner .maincts #SolarRemon,
    .owner .maincts #schedule {
        border-radius: 0px;
    }

    .owner .maincts #Solarbrowser,
    .owner .maincts #SolarRemon,
    .owner .maincts #schedule {
        margin: 90px auto;
    }

    .owner .maincts #Solarbrowser .flex,
    .owner .maincts #SolarRemon .flex,
    .owner .maincts #schedule .flex {
        flex-direction: column;
    }

    .owner .maincts #SolarRemon figure .flex {
        flex-direction: row;
    }

    .owner .maincts #Solarbrowser .flex .txt,
    .owner .maincts #SolarRemon .flex .txt,
    .owner .maincts #schedule .flex .txt {
        width: 100%;
    }

    .owner .maincts #Solarbrowser .flex figure,
    .owner .maincts #SolarRemon .flex figure,
    .owner .maincts #schedule .flex figure {
        width: 100%;
    }

    .owner .maincts #dairi {
        border-radius: 0;
    }

    .top #can .cts img,
    .service #can .cts img {
        height: 260px;
    }

    .service #theme .cts {
        flex-direction: column;
    }

    .service #theme .ttl {
        width: 100%;
    }

    .service #theme .txt {
        width: 100%;
    }

    .service #theme .ttl h3 {
        font-size: 2.2rem;
        margin-bottom: 0;
    }

    .service #flow .cts {
        margin: 10px 0;
    }

    .service #theme .cts {
        gap: 10px;
    }

    .service #flow .cts .image {
        display: none;
    }

    .service #flow .cts .txt {
        width: 100%;
        padding: 20px 20px;
    }

    .top .mv-bg .mv {
        height: 480px;
    }

    .service #flow h2 {
        margin: 0 -5px;
    }

    .news .maincts .news_list_item a {
        flex-direction: column;
        gap: 5px;
    }

    .news .maincts .news_list_date time {
        font-size: 1.4rem;
        width: 120px;
        margin-left: 0;
    }

    .product .leadcts p {
        margin-left: 0;
    }

    .company .maincts {
        padding: 30px 20px;
        margin: 0px auto;
    }

    .column .maincts .columncts {
        flex-direction: column;
    }

    .column .maincts .columncts .image {
        width: 100%;
    }

    .column .maincts .columncts .txt {
        width: 100%;
    }

    .column.post .maincts {
        margin: 0px auto;
    }

    .download .flex {
        flex-direction: column;
    }

    .download .flex>div {
        width: 100%;
    }

    .contact .flex {
        flex-direction: column;
    }

    .contact .flex>div {
        width: 100%;
    }

    #table01 th,
    #table01 td {
        display: block;
        padding: 5px 0 20px;
    }

    .contact .maincts .form {
        background: #f7f7f7;
        padding: 20px 20px;
    }

    .contact .maincts #table01 th {
        padding: 0;
        padding-top: 20px;
        width: 100%;
    }

    table.fas_table_colheader th.file {
        width: 12%;
    }

    table.fas_table_colheader th.file.appli {
        width: 12%;
    }

    .top .mv-point h2 {
        letter-spacing: 4px;
    }

    .contact .maincts #table01 input.w70per {
        width: 100%;
    }

    .contact .maincts #table01 input.w40per {
        width: 45%;
    }

    .contact .maincts #table01 input.w30per {
        width: 70%;
    }

    .contact .maincts #table01 input.w20per {
        width: 40%;
    }

    .contact .maincts #table01 input.w90per {
        width: 100%;
    }

    .contact .maincts #table01 textarea.w90per {
        width: 100%;
    }

    .table_design05 tr {
        display: flex;
        flex-direction: column;
    }

    .table_design05 th,
    .table_design05 td {
        padding: 10px;
    }

    .table_design05 th {
        width: 100%;
        background: #efefef;
        padding: 5px 10px;
        border-radius: 5px;
    }

    .table_design05 td {
        margin-bottom: 10px;
    }

    .table_design05 th::after {
        content: none;
    }
}

@media screen and (max-width: 1180px) {
    .product .maincts .cts {
        width: calc(50% - 13px);
    }

    .product .maincts img {
        height: 260px;
    }
}

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

    .product .maincts img {
        height: 230px;
    }
}

@media screen and (max-width: 767px) {
    .product .maincts {
        flex-direction: column;
    }

    .product .maincts .cts {
        width: 100%;
    }

    .product .maincts img {
        height: auto;
    }

    .service #service .flex {
        flex-direction: column;
    }

    .service #service .flex .txt {
        width: 100%;
    }

    .service #service .flex figure {
        width: 100%;
    }

    .top #blog .cts .post {
        width: 100%;
        height: 280px;
    }

    .blog.archive .columncts {
        flex-direction: column;
    }

    .blog.archive .columncts .image {
        width: 100%;
    }

    .blog.archive .columncts .txt {
        width: 100%;
    }

    .can-scroll {
        text-align: right;
        font-size: 12px;
        color: #a19c54;
    }

    footer .footer-cts img {
        width: 300px;
    }
}

/* 図 */
.chart .st0,
.st0 {
    fill: #022a5b
}

.st1 {
    fill: #2a6ea9
}

.st2 {
    fill: #3aa0bc
}

.st3 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
}

.st4 {
    font-size: 49.3836px
}

.st5 {
    fill: #262626
}

.st6 {
    font-size: 37.5844px
}

.read-together {
    margin: 20px auto;
    border: 2px solid #387ab3;
    border-radius: 5px;
    color: #333333;
    display: inline-block;
    position: relative;
    transition: 0.2s;
}

.read-together:hover {
    transform: translateY(-5px);
}

.read-together a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.read-together:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0da";
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    color: #fff;
}

.read-together:before {
    content: "";
    width: 25px;
    height: 100%;
    position: absolute;
    background: #387ab3;
    top: 0;
    right: 0;
    border-radius: 0 5px 5px 0;
}

.read-together div {
    display: inline-flex;
    align-items: center;
    position: relative;
    top: -13px;
    left: 10px;
    margin: 0 7px;
    padding: 0 8px;
    background: #fff;
    color: #387ab3;
    font-weight: 600;
    vertical-align: top;
}

.column.post .maincts .read-together h3 {
    background: none;
    padding: 0 2.5em 0.2em 1.3em;
    margin-bottom: 0px;
    font-size: 1.7rem;
    margin-top: 0;
}

.read-together p {
    margin: 0;
    padding: 0 2.5em 0em 1.5em;
}


.douibutton {
    display: inline-block;
    background: #e16e09;
    padding: 10px 15px;
    border-radius: 25px;
    cursor: pointer;
    color: #fff;
    margin-top: 10px;
}

.numberhyouji {
    display: none;
}

.numberdasu {
    display: block;
}

.douikesu {
    display: none;
}


/* ページネーション */
.pager ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 8px;
    list-style-type: none;
    padding: 0;
    font-size: 1.8rem;
}

.pager ul a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2em;
    height: 2em;
    border-radius: 3px;
    background-color: #f2f2f2;
    color: #008490;
}

.pager ul a:not(:hover) {
    text-decoration: none;
}

.pager ul .current {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2em;
    height: 2em;
    border-radius: 1px;
    background: linear-gradient(-135deg, #FE2845, #F9B349);
    color: #fff;
    border-radius: 3px;
}




@media screen and (min-width: 767px) {
    .can-scroll {
        display: none;
    }
}





/* =========================================================
  協会情報（事務局 / 協会役員 / 所属クラブ）
  ※ さっきのHTML（.assoc-info〜）専用
========================================================= */

.assoc-info {
    padding: clamp(18px, 2.6vw, 32px);
}

/* 3ブロックを縦に気持ちよく */
.assoc-info__block {
    background: #fff;
    border: 1px solid #e9eef5;
    border-radius: 16px;
    padding: clamp(16px, 2.4vw, 28px);
    box-shadow: 0 10px 30px rgba(20, 30, 50, .06);
    margin: 30px 0 30px;
}

.assoc-info__block+.assoc-info__block {
    margin-top: clamp(16px, 2.2vw, 24px);
}

/* 見出し */
.assoc-info__title {
    font-size: clamp(18px, 2.0vw, 22px);
    letter-spacing: .06em;
    margin: 0 0 14px;
    padding-left: 14px;
    position: relative;
    color: #222;
}

.assoc-info__title::before {
    content: "";
    position: absolute;
    left: 0;
    top: .35em;
    width: 6px;
    height: 1.15em;
    border-radius: 999px;
    background: #5b72ff;
}

/* DLを表っぽく見せる */
.assoc-info__dl {
    margin: 0;
    padding: 0;
}

.assoc-info__row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 12px 18px;
    padding: 12px 0;
    border-top: 1px solid #eef2f7;
}

.assoc-info__row:first-child {
    border-top: 0;
    padding-top: 0;
}

.assoc-info__dt {
    margin: 0;
    color: #5f6b7a;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .02em;
}

.assoc-info__dd {
    margin: 0;
    color: #1f2937;
    line-height: 1.8;
    font-size: 15px;
}

.assoc-info__zip {
    display: inline-block;
    font-weight: 700;
    letter-spacing: .04em;
}

.assoc-info__link {
    color: #3b5bff;
    text-decoration: none;
    border-bottom: 1px solid rgba(59, 91, 255, .35);
    padding-bottom: 2px;
}

.assoc-info__link:hover {
    border-bottom-color: rgba(59, 91, 255, .85);
}

/* 所属クラブ：2列グリッド（SPは1列） */
.assoc-info__clubs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
    margin-top: 6px;
}

.assoc-info__club {
    background: #f7f9fd;
    border: 1px solid #e8eef8;
    border-radius: 12px;
    padding: 12px;
    position: relative;
    line-height: 1.6;
    color: #1f2937;
    font-weight: 600;
    letter-spacing: .01em;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .contact .maincts {
        padding: 0 15px;
    }

    .assoc-info {
        padding: 16px;
    }

    .assoc-info__row {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 12px 0;
    }

    .assoc-info__dt {
        font-size: 13px;
    }

    .assoc-info__dd {
        font-size: 15px;
    }

    .assoc-info__clubs {
        grid-template-columns: 1fr;
    }
}









.annual-banner {
    padding: 70px 20px;
}

.annual-banner__inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    border-radius: 40px;
    background: #4148ab;
    box-shadow: 0 20px 50px rgba(40, 80, 120, .15);
}

.top h2.annual-banner__title {
    margin: 0 0 16px;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
}

.annual-banner__title img {
    width: 22px;
    margin-right: 2px;
    vertical-align: -1px;
}

.annual-banner__desc {
    margin: 0 0 40px;
    color: #f4f9ff;
    font-size: 15px;
    letter-spacing: .03em;
}

.annual-banner__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 44px;
    border-radius: 999px;
    background: #ffffff;
    color: #1f3f70;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all .3s ease;
}

.annual-banner__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

.annual-banner__arrow {
    width: 18px;
    height: 18px;
}

@media (max-width:768px) {
    .annual-banner__inner {
        padding: 40px 20px;
        border-radius: 28px;
    }

    .annual-banner__title {
        font-size: 22px;
    }

    .annual-banner__btn {
        padding: 16px 32px;
    }
}