@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
:root {
    --main_color: #8844dd;
    --sub_color: #88dd44;
}
html,
body {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 3.5vw;
}
main {
    width: min(600px, 100%);
    margin: auto;
    min-height: 84vh;
}
section {
    position: relative;
    overflow-x: hidden;
}
div {
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    font-style: italic;
    background-repeat: no-repeat;
    background-size: cover;
    shape-margin: 0.75rem;
}
ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
li {
    margin: 0.5rem 0;
}
a,
a:hover,
a:visited {
    color: inherit;
    text-decoration: none;
}
p {
}
h1 {
}
h2 {
    text-align: center;
    width: 100%;
}
h3 {
    text-align: center;
    margin-bottom: 2vw;
    width: 100%;
}
h4 {
    width: 100%;
    margin-bottom: 1vw;
}

.hide {
    height: 0 !important;
}

/*============================
header
============================*/
header {
    display: flex;
    justify-content: space-between;
    padding: 1vw;
    border-bottom: solid 1vw var(--main_color);
    position: relative;
    min-height: 8vh;
}
.logo {
    width: 45%;
}
.burger-menu {
    position: absolute;
    right: 4vw;
    top: 3vw;
}
#menu-toggle {
    background-color: #fff;
}
.bar {
}
.bar {
    display: block;
    width: 2.5rem;
    height: 1.1vw;
    margin: 0.6rem auto;
    background-color: var(--main_color);
    transition: all 0.3s ease-in-out;
    border-radius: 3vw;
}
.bar:nth-child(1) {
    transform: rotate(0deg) translate(0, 0);
}
.bar:nth-child(2) {
    opacity: 1;
}
.bar:nth-child(3) {
    transform: rotate(0deg) translate(0, 0);
}
#menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(0.8rem, 0.5rem);
    width: 2.8rem;
}
#menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}
#menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(0.8rem, -0.5rem);
    width: 2.8rem;
}
nav {
    display: none;
}
nav ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    list-style-type: none;
    padding: 0;
    margin: 0;
}
nav ul li {
    margin: 0.5rem;
    padding: 0.5rem;
}

/*============================
#hero
============================*/
#hero {
}
.hero-image {
}

/*============================
#search
============================*/
#search {
    width: 90%;
    margin: 3vw auto;
}
.search-box {
    margin: 4vw auto;
    padding: 1vw 2.5% 3vw;
    box-shadow: 0.5vw 0.5vw 1.6vw var(--main_color);
    width: 95%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1vw;
}
form {
}
form input {
    width: 100%;
    padding: 1vw;
    margin: 0.5vw 0;
    border: solid 0.2vw var(--main_color);
    border-radius: 0.5vw;
}
form button {
    padding: 1vw;
    background-color: var(--main_color);
    border: none;
    cursor: pointer;
    border-radius: 1.5vw;
}
form select {
    width: 48%;
    padding: 1vw;
    margin: 0.5vw 0;
    border: solid 0.2vw var(--main_color);
    border-radius: 0.5vw;
}
form button[type="submit"] {
    width: 95%;
    display: block;
    margin: auto;
    background-color: var(--main_color);
    color: #fff;
    font-weight: bold;
    border-radius: 1.5vw;
    line-height: 2;
}
#search-form {
}
#region-form {
}
#region-select {
}
#city-select {
}
.sports-list {
    overflow-y: hidden;
    transition: all 0.3s;
    position: relative;
    padding-bottom: 15vw;
}
.sports-list.active {
}
.sport-button {
    min-width: 30%;
    text-align: center;
    padding: 1vw;
    height: 2.5rem;
    border-radius: 3vw;
    background-color: #fff;
    border: solid 0.2vw #88dd44;
}
.sport-button.active {
    background-color: var(--main_color);
    color: #fff;
}
.more-ready {
    width: 100%;
    text-align: center;
    padding: 1vw;
    background-color: var(--sub_color);
    color: #333;
    line-height: 8vw;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    bottom: 0;
    z-index: 2;
}
.more-ready p:nth-child(1) {
    display: block;
    z-index: 1;
}
.more-ready p:nth-child(2) {
    display: none;
    z-index: -1;
}
.more-ready.active p:nth-child(1) {
    display: none;
    z-index: -1;
}
.more-ready.active p:nth-child(2) {
    display: block;
    z-index: 1;
}
.major-sports {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3vw;
    overflow-y: hidden;
    width: 95%;
    margin: auto;
}
.more-sports {
    width: 95%;
    margin: auto;
    height: 0;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 3vw;
    transition: all 0.3s;
}
.more-sports.active {
    height: 100%;
}

/*============================
footer
============================*/
footer {
    width: 100%;
    padding: 2vw;
    background-color: var(--main_color);
    color: #fff;
    text-align: center;
    height: 10vh;
}
footer .social-links {
    display: flex;
    justify-content: center;
    gap: 2vw;
}
