body {
    display: flex;
    color: #333;
    box-sizing: border-box;
    font-weight: bold;
}
main {
    width: 80vw;
}
/* -----------------------------------------------
header
----------------------------------------------- */
#header-pc {
    position: sticky;
    top: 0;
    padding: 2vw;
    width: 20vw;
    height: 100vh;
    font-size: 1vw;
}
#header-logo {
    width: 100%;
}
#header-pc ul {
    margin: 1vw 0;
    padding: 1vw 0;
    text-align: center;
    border-top: solid 3px #333;
    border-bottom: solid 3px #dedede;
}
#header-pc-btn01 {
    display: inline-block;
    padding: 0.5vw 0;
    width: 100%;
    color: #fff;
    background-color: #0092f4;
}
#header-pc-btn02 {
    display: inline-block;
    padding: 0.5vw 0;
    width: 100%;
    color: #fff;
    background-color: #ffde25;
}
#header-pc ul li {
    margin-bottom: 1vw;
}
#header-pc ul li:last-child {
    margin-bottom: 0;
}
#header-pc-sns-area {
    display: flex;
    justify-content: space-around;
    padding: 0 1vw;
}
#header-pc-sns-area img {
    width: 2vw;
}
/* -----------------------------------------------
slideshow-container
----------------------------------------------- */
.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}
.slide {
    display: none;
    width: 100%;
}
.slide img {
    width: 100%;
    display: block;
}
.prev-btn,
.next-btn {
    cursor: pointer;
    position: absolute;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    width: 5vw;
    height: 5vw;
    text-align: center;
    line-height: 5vw;
    font-size: 2vw;
    color: #fff;
    border-radius: 50%;
    background: rgba(0,0,0,0.7);
}
.prev-btn { left: 1vw; }
.next-btn { right: 1vw; }
.dots-container {
    text-align: center;
    padding: 1rem 0;
}
.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}
.dot.active {
    background: #333;
}
/* -----------------------------------------------
news-area
----------------------------------------------- */
.news-area {
    position: relative;
    margin-top: 10vw;
    padding: 0 5vw;
    width: 100%;
    overflow: hidden;
}
#news-background-img {
    position: absolute;
    top: 23%;
    right: -10%;
    z-index: -1;
    width: 40vw;
}
.news-title-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5vw 1vw 5vw;
    border-bottom: solid 2px #333;
}
.news-title-wrap {
    display: flex;
    align-items: flex-end;
}
.news-title-wrap h2 {
    margin-right: 2vw;
    font-size: 4vw;
}
.news-title-wrap p {
    padding-bottom: 0.5vw;
    font-size: 1.2vw;
}
.news-btn-area a {
    display: inline-block;
    padding: 1.4vw 3vw;
    font-size: 1.2vw;
    color: #fff;
    background-color: #0092f4;
}
.news-post-area {
    padding: 0 5vw;
    width: 100%;
}
.news-post {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding-top: 1.5vw;
    padding-bottom: 1vw;
    width: 100%;
    border-bottom: solid 2px #333;
}
.post-thumbnail img {
    width: 8vw;
    height: 5vw;
    object-fit: cover;
    border: solid 2px #dedede;
    border-radius: 5px;
}
.post-text-area {
    margin-left: 1vw;
    width: 100%;
}
.post-text-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.post-title {
    font-size: 1.2vw;
}
.post-text-wrap img {
    width: 3vw;
}
/* -----------------------------------------------
index-text-area
----------------------------------------------- */
.index-text-area {
    position: relative;
    margin-top: 10vw;
    padding: 15vw 10vw 5vw 10vw;
    color: #fff;
    background-color: #0092f4;
    border-radius: 150px 0 0 150px;
}
.marquee-container {
    position: absolute;
    top: -5.5vw;
    left: 0;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
}
.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll-left 80s linear infinite;
}

.marquee-text {
    font-size: 15vw;
    padding-right: 1vw;
    opacity: 0.7;
}

@keyframes scroll-left {
    0% {
    transform: translateX(0%);
    }
    100% {
    transform: translateX(-50%);
    }
}
.index-text-title-area h2 {
    font-size: 2.5vw;
}
.index-text-title-area h3 {
    margin-top: 1vw;
    font-size: 1vw;
}
.salutation-text {
    margin: 2vw 0;
    width: 100%;
}
.salutation-text h2 {
    margin-bottom: 2vw;
    font-size: 2vw;
}
.salutation-text p {
    margin-bottom: 1vw;
    line-height: 1.5;
    font-size: 1.1vw;
}
.salutation-text p:last-child {
    margin-bottom: 0;
}
.index-text-btn-area {
    margin-top: 5vw;
}
.index-text-btn-upper-area, .index-text-btn-bottom-area {
    display: flex;
    justify-content: center;
}
.index-text-btn-upper-area {
    margin-bottom: 1.5vw;
}
.index-text-btn-area a {
    padding: 1vw 0;
    width: 17vw;
    text-align: center;
    font-size: 1.2vw;
    color: #000;
    background-color: #ffde25;
}
.index-text-btn-margin-left {
    margin-left: 1.5vw;
}
/* -----------------------------------------------
tournament-schedule
----------------------------------------------- */
.tournament-schedule {
    margin-top: 10vw;
    font-size: 1vw;
}
.schedule-title-area {
    text-align: center;
}
.schedule-title-area h2 {
    font-size: 2.5vw;
}
.schedule-title-area h3 {
    margin-top: 1vw;
    font-size: 1.2vw;
}
.schedule-title-area p {
    margin-top: 2vw;
    font-size: 1.2vw;
}
.month-buttons {
    display: flex;
    justify-content: space-around;
    margin-top: 3vw;
    width: 100%;
}
.month-buttons .month-btn {
    cursor: pointer;
    padding: 0.5vw 2vw;
    color: #000;
    background: #ffde25;
}
.month-buttons .month-btn.active {
    color: #fff;
    background: #0092f4;
}
.month-table {
    display: none;
    width: 100%;
    margin-top: 2vw;
}
.month-table th,
.month-table td {
    padding: 2vw 0;
    text-align: center;
}
.month-table thead {
    color: #fff;
    background-color: #0092f4;
}
.month-table tbody tr {
    border-bottom: solid 2px #dedede;
}
.tournament-schedule .month-table tbody tr:nth-child(even) {
  background-color: #a0d9ff;
}
.pdf-logo {
    width: 2vw;
}
.url-logo {
    width: 2vw;
}
/* -----------------------------------------------
interview-area
----------------------------------------------- */
.interview-area {
    margin-top: 10vw;
    padding: 0 5vw;
    width: 100%;
}
.interview-title-area {
    display: flex;
    align-items: flex-end;
}
.interview-title-area h2 {
    margin-right: 2vw;
    font-size: 4vw;
}
.interview-title-area h5 {
    padding-bottom: 0.5vw;
    font-size: 1.2vw;
}
.interview-text-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2vw;
    padding-bottom: 1vw;
    line-height: 1.5;
    font-size: 1vw;
    border-bottom: solid 2px #333;
}
.interview-btn-area a {
    display: inline-block;
    padding: 1vw 3vw;
    font-size: 1.2vw;
    color: #fff;
    background-color: #0092f4;
}
.interview-card-area {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 2vw;
    width: 100%;
}
.interview-post {
    flex: 0 0 calc((100% - 2 * 16px) / 3);
    max-width: calc((100% - 2 * 16px) / 3);
    box-sizing: border-box;
    cursor: pointer;
}
.interview-post-thumbnail img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.interview-post-date {
    margin-top: 1vw;
    font-size: 0.8vw;
}
.interview-post-title {
    margin: .5em 0;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-all;
    font-size: 1.1vw;
}

@media (max-width: 768px) {
    .interview-post {
        flex: 0 0 calc((100% - 16px) / 2);
        max-width: calc((100% - 16px) / 2);
    }
}
@media (max-width: 480px) {
    .interview-post {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
/* -----------------------------------------------
sponsor-area
----------------------------------------------- */
.sponsor-area {
    margin-top: 10vw;
}
.sponsor-title-area {
    display: flex;
    justify-content: center;
}
.sponsor-title-area img {
    width: 30vw;
}
.sponsor-main-upper-area, .sponsor-main-bottom-area {
    display: flex;
    justify-content: space-around;
}
.sponsor-main-upper-area {
    margin-top: 5vw;
    margin-bottom: 3vw;
}
.sponsor-main-area img {
    width: 20vw;
    height: auto;
}
/* -----------------------------------------------
information-area
----------------------------------------------- */
.information-area {
    margin-top: 10vw;
    padding: 5vw 10vw;
    color: #fff;
    background-color: #0092f4;
}
.information-title-area {
    text-align: center;
}
.information-title-area h2 {
    font-size: 3vw;
}
.information-title-area h5 {
    margin-top: 1vw;
    font-size: 1vw;
}
.information-main-area {
    margin-top: 3vw;
    padding: 3vw 5vw;
    background-color: #fff;
    border-radius: 30px;
}
.information-wrap {
    display: flex;
    justify-content: center;
    font-size: 0.9vw;
    color: #000;
}
.information-wrap img {
    margin-bottom: 1vw;
    width: 22vw;
}
.informaiton-main-tel-area, .informaiton-main-mail-area {
    text-align: center;
}
.informaiton-main-tel-area {
    margin-right: 5vw;
}
.information-area a {
    display: inline-block;
    margin-top: 1.5vw;
    margin-bottom: 1.5vw;
    padding: 1vw;
    width: 22vw;
    font-size: 1.3vw;
    background-color: #ffde25;
    border-radius: 50px;
}
.information-threestar-area a {
    display: inline-block;
    text-align: center;
    margin-top: 2vw;
    padding: 1vw;
    width: 100%;
    font-size: 1.3vw;
    background-color: #ffde25;
    border-radius: 50px;
}
/* -----------------------------------------------
footer
----------------------------------------------- */
footer {
    margin-top: 10vw;
    margin-bottom: 2vw;
    padding: 0 3vw;
}
.footer-title-area {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.footer-title-area h2 {
    font-size: 3vw;
}
#tatesen {
    content: "";
    width: 3px;
    height: 8vw;
    background-color: #ccc;
}
.footer-title-area img {
    width: 7vw;
}
.footer-btn-area {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5vw;
}
.footer-btn-area img {
    width: 30vw;
}
.footer-btn-area a {
    display: inline-block;
    margin: 1vw 0;
    padding: 1vw 0;
    width: 20vw;
    text-align: center;
    font-size: 1.2vw;
    color: #000;
    background-color: #ffde25;
    border-radius: 5px;
}
.footer-btn-left-area, .footer-btn-right-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.footer-btn-left-area {
    margin-right: 5vw;
}
footer ul {
    display: flex;
    justify-content: space-around;
    margin-top: 3vw;
    font-size: 1vw;
}
.copy-light-area {
    padding: 0.5vw 0;
    text-align: center;
    font-size: 1vw;
    color: #fff;
    background-color: #0092f4;
}