body {
    font-size: 3.5vw;
    line-height: 7vw;
    background-image: url(../images/product-04.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-main);
}
@media screen and (min-width: 960px) {
    body {
        font-size: 18px;
        line-height: 42px;
    }
}

h1 {
    font-size: 5vw;
}
h2 {
    font-size: 5vw;
}
h3 {
    font-size: 4vw;
}
@media screen and (min-width: 960px) {
    h1 {
        font-size: 48px;
    }
    h2 {
        font-size: 32px;
    }
    h3 {
        font-size: 18px;
    }
}

a {
    text-decoration: none;
}
@media screen and (min-width: 960px) {
    a[href*="tel:"] {
        text-decoration: none;
        pointer-events: none;
    }
}

ul, ol {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

img {
    vertical-align: bottom;
    object-fit: cover;
}

.display-pc-only {
    display: none;
}
@media screen and (min-width: 960px) {
    .display-mobile-only {
        display: none;
    }
    .display-pc-only {
        display: block;
    }
}

/* ヘッダー */
header {
    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;
    height: 60px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-light);
    background-color: var(--bg-color-main);
    box-shadow: 0.5vw 0 3vw var(--bg-color-main);
}
.header-logo-container {
    position: relative;
    height: 30px;
    padding: 0 10px;
}
.header-logo-container img {
    height: 100%;
}
.header-menu-icon-container {
    position: absolute;
    top: 50%;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 16px;
    transform: translateY(-50%);
    transition: all 0.5s ease;
}
.header-menu-icon {
    font-size: 2em;
    color: var(--color-light);
    cursor: pointer;
}
.menu-transparent {
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease;
}
@media screen and (min-width: 960px) {
    header {
        height: 80px;
        box-shadow: 10px 0 10px var(--bg-color-main);
        padding: 0 30px;
    }
    .header-logo-container {
        height: 50px;
    }
    .header-menu-icon-container {
        display: none;
    }
}

/* ナビメニュー */
.nav-container {
    position: absolute;
    z-index: 8;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: var(--bg-color-main);
    padding: 2vw 0;
    transition: all 0.5s ease;
}
.nav-menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3vw;
    height: 100%;
}
.nav-menu li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 15vw;
    color: var(--color-light);
    font-size: 1.8vw;
    line-height: 3.6vw;
}
.nav-icon {
    font-size: 5vw;
    vertical-align: bottom;
}
.close-nav-menu {
    top: 50px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease;
}
@media screen and (min-width: 960px) {
    .nav-container {
        position: relative;
        z-index: 9;
        top: 0;
        width: auto;
        background-color: transparent;
        padding: 10px 0 0 0;
    }
    .nav-menu {
        gap: 10px;
        height: 100%;
    }
    .nav-menu li a {
        position: relative;
        z-index: 9;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 80px;
        font-size: 10px;
        line-height: 21px;
        transition: all 0.3s ease;
    }
    .nav-menu li a:hover {
        color: var(--color-main);
    }
    .nav-menu li a::before {
        content: '';
        position: absolute;
        z-index: -1;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -57%);
        background-color: white;
        width: 0;
        height: 0;
        transition: all 0.3s ease;
    }
    .nav-menu li a:hover::before {
        width: 65px;
        height: 65px;
    }
    .nav-icon {
        font-size: 21px;
        vertical-align: bottom;
    }
    .close-nav-menu {
        top: 0;
        opacity: 1;
        pointer-events: all;
    }
}

/* フッター */
footer {
    color: var(--color-light);
    background-color: var(--bg-color-main);
    padding: 7vw;
    padding-bottom: 0;
    width: 100%;
}
.footer-container {
    position: relative;
    z-index: 9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 5vw;
}
.footer-logo {
    width: 40vw;
}
.footer-name-area p {
    font-size: 4.2vw;
}
.footer-info-container {
    display: flex;
    flex-direction: row-reverse;
    gap: 8vw;
}
.footer-info-media-container {
    display: flex;
    align-items: center;
    gap: 5vw;
}
.footer-takumi-logo {
    width: 15vw;
}
.footer-instagram-area {
    width: 15vw;
    margin-top: 2vw;
}
.footer-instagram-area img {
    width: 60%;
    transform: translateY(1vw);
}
.footer-instagram-area a {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.instagram-clip {
    background-image: linear-gradient(
        45deg,
        rgba(240, 148, 51, 1) 0%,
        rgba(230, 104, 60, 1) 25%,
        rgba(220, 39, 67, 1) 50%,
        rgba(128, 35, 204, 1) 75%,
        rgba(87, 24, 188, 1) 100%
    );
    color: transparent;
    background-clip: text;
    font-size: 2.5vw;
    font-weight: bold;
    text-align: center;
}
footer address {
    display: flex;
    flex-direction: column;
    font-style: normal;
}
.footer-factory-name {
    font-size: 4.5vw;
    line-height: 10vw;
}
.footer-factory-post {
    font-size: 3vw;
    line-height: 3.5vw;
}
.footer-factory-address {
    font-size: 4vw;
    line-height: 4.5vw;
}
.footer-factory-tel {
    font-size: 4vw;
    line-height: 8vw;
}
.footer-nav-container {
    width: 100%;
}
.footer-nav {
    display: flex;
    justify-content: space-around;
}
.footer-nav li a {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-nav p {
    font-size: 1.8vw;
    transform: translateY(-1.8vw);
}
.Copyright-container {
    margin: 0 auto;
    width: 100%;
    text-align: center;
    font-size: 3vw;
}
@media screen and (min-width: 960px) {
    footer {
        padding: 50px;
        padding-bottom: 0;
    }
    .footer-container {
        flex-direction: row;
        gap: 80px;
    }
    .footer-logo {
        width: 250px;
    }
    .footer-name-area p {
        font-size: 26px;
        margin-top: 5px;
    }
    .footer-info-container {
        flex-direction: column;
        gap: 30px;
    }
    .footer-info-media-container {
        justify-content: space-around;
        gap: 0;
    }
    .footer-takumi-logo {
        width: 100px;
    }
    .footer-instagram-area {
        width: 100px;
        margin-top: 0;
    }
    .footer-instagram-area img {
        width: 60%;
        transform: translateY(7px);
    }
    .instagram-clip {
        background-image: linear-gradient(
            45deg,
            rgba(240, 148, 51, 1) 0%,
            rgba(230, 104, 60, 1) 25%,
            rgba(220, 39, 67, 1) 50%,
            rgba(128, 35, 204, 1) 75%,
            rgba(87, 24, 188, 1) 100%
        );
        color: transparent;
        background-clip: text;
        font-size: 18px;
        font-weight: bold;
        text-align: center;
    }
    footer address {
        gap: 10px;
    }
    .footer-factory-name {
        font-size: 21px;
        line-height: 42px;
    }
    .footer-factory-post {
        font-size: 16px;
        line-height: 18px;
    }
    .footer-factory-address {
        font-size: 18px;
        line-height: 24px;
    }
    .footer-factory-tel {
        font-size: 18px;
        line-height: 36px;
    }
    .footer-nav-container {
        width: inherit;
    }
    .footer-nav {
        flex-direction: column;
        justify-content: normal;
    }
    .footer-nav li a {
        position: relative;
        display: flex;
        flex-direction: row;
        gap: 5px;
    }
    .footer-nav li a::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 0;
        width: 0;
        height: 1px;
        background-color: var(--color-light);
        transition: all 0.3s ease;
    }
    .footer-nav li a:hover::after {
        width: 100%;
    }
    .footer-nav p {
        font-size: 18px;
        transform: translateY(-2px);
    }
    .Copyright-container {
        padding-top: 20px;
        font-size: 14px;
    }
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-div-wide {
    width: 100%;
}

.top-img-container {
    position: relative;
    z-index: 1;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}
.img-logo-container {
    position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20vw;
    top: 50%;
    left: 50%;
    width: 70vw;
    transform: translate(-50%, -50%);
}
.img-logo-container img {
    filter: drop-shadow(0.5vw 0.5vw 0 black);
    }
.top-img-txt {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 0 5vw;
    font-size: 4vw;
    color: var(--color-light);
    text-shadow: 0 0 10px black;
    writing-mode: vertical-rl;
}
@media screen and (min-width: 960px) {
    .img-logo-container {
        gap: 50px;
        top: 50%;
        left: 50%;
        width: 500px;
        transform: translate(-50%, -40%);
    }
    .img-logo-container img {
        filter: drop-shadow(3px 3px 0 black);
        }
    .top-img-txt {
        padding: 0 70px;
        font-size: 24px;
    }
}

.frosted-glass-container {
    color: var(--color-light);
    padding: 7vw 5vw;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(1vw);
    -webkit-backdrop-filter: blur(1vw);
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 1),
          inset 3px 3px 8px rgba(255, 255, 255, 0.3);
}
@media screen and (min-width: 960px) {
    .frosted-glass-container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 50px 50px;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 3px 3px 8px rgba(0, 0, 0, 1),
              inset 3px 3px 8px rgba(255, 255, 255, 0.3);
    }
}

.section-container {
    margin-top: 9vw;
    padding: 0 5vw;
}
@media screen and (min-width: 960px) {
    .section-container {
        margin-top: 70px;
        padding: 0 30px;
    }
}

.section-ttl {
    padding-bottom: 4vw;
    width: 100%;
    text-align: center;
}
@media screen and (min-width: 960px) {
    .section-ttl {
        padding-bottom: 30px;
        text-align: left;
    }
}

.section-btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5vw;
    width: 100%;
    text-align: center;
}
@media screen and (min-width: 960px) {
    .section-btn-container {
        margin: 0 auto;
        padding-top: 30px;
    }
}

.news-list {
    display: flex;
    flex-direction: column;
}
.news-list li {
    border-top: 1px solid white;
}
.news-list li:last-child {
    border-bottom: 1px solid white;
}
.news-list a {
    display: flex;
    flex-direction: column;
    gap: 1vw;
    padding: 4vw 3vw;
}
@media (any-hover: hover) {
    .news-list a:hover {
        opacity: 0.5;
    }
}
.news-list a:visited {
    color: var(--color-light);
}
.news-list-info {
    display: flex;
    justify-content: space-between;
}
.news-category-tag {
    padding: 0 3vw;
    font-size: 3vw;
}
.news-category-tag.information {
    background-color: rgba(50, 50, 100, 0.7);
}
.news-category-tag.events {
    background-color: rgba(150, 50, 50, 0.9);
}
.news-category-tag.products {
    background-color: rgba(50, 100, 50, 0.9);
}
.news-list-new {
    color: red;
    font-weight: bold;
    padding-left: 1vw;
}
@media screen and (min-width: 960px) {
    .news-list li {
        padding: 0;
    }
    .news-list a {
        flex-direction: row;
        gap: 10px;
        padding: 20px 10px;
    }
    .news-category-tag {
        padding: 0 20px;
        font-size: 12px;
        margin-left: 18px;
    }
    .news-category-tag.information {
        background-color: rgba(50, 50, 100, 0.7);
    }
    .news-category-tag.events {
        background-color: rgba(150, 50, 50, 0.9);
    }
    .news-category-tag.products {
        background-color: rgba(50, 100, 50, 0.9);
    }
    .news-list-new {
        color: red;
        font-weight: bold;
        padding-left: 18px;
    }
}

.image-list-container {
    display: flex;
    flex-direction: column;
    gap: 5vw;
    margin-bottom: 7vw;
}
.image-list-container li {
    position: relative;
    z-index: 1;
    width: 80vw;
    height: 80vw;
}
.image-list-container li > h3 {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 5%;
    transform: translate(-50%, -50%);
    font-size: 4.5vw;
    text-align: center;
    white-space: nowrap;
}
@media screen and (min-width: 960px) {
    .image-list-container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 20px;
    }
    .image-list-container li {
        position: relative;
        z-index: 1;
        width: 285px;
        height: 285px;
    }
    .image-list-container li > h3 {
        font-size: 18px;
    }
    .processing-list {
        display: flex;
        flex-wrap: wrap;
        column-gap: 10px;
        padding: 30px 0 50px 0;
    }
}

/* 点滅アニメーションを適用 */
.blink {
  animation: blinking 1s ease-in-out infinite alternate;
}
@keyframes blinking {
  0% {opacity: 1;}
  50% {opacity: 1;}
  100% {opacity: 0;}
}

.button-1 {
    display: block;
    width: 80%;
    padding: 3vw;
    border: none;
    cursor: pointer;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}
@media (any-hover: hover) {
    .button-1:hover {
        font-size: 1.05em;
    }
}
@media screen and (min-width: 960px) {
    .button-1 {
        width: 300px;
        padding: 16px;
        width: 300px;
    }
}

.button-2 {
    width: 80%;
    padding: 3vw 0;
    background-color: transparent;
    border: 1px solid var(--color-main);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}
@media (any-hover: hover) {
    .button-2:hover {
        border: 1px solid var(--color-light);
        color: var(--color-light);
    }
}
@media screen and (min-width: 960px) {
    .button-2 {
        width: 300px;
        padding: 16px 32px;
        max-width: 300px;
    }
}

.bg-color-silver {
    background: linear-gradient(
        120deg,
        rgba(51, 51, 51, 1) 5%,
        rgba(225, 225, 225, 1) 50%,
        rgba(51, 51, 51, 1) 95%
    );
    background-repeat: no-repeat;
    color: var(--color-main);
    font-weight: bold;
}
.bg-color-instagram {
    background: linear-gradient(
        45deg,
        rgba(240, 148, 51, 0.8) 0%,
        rgba(230, 104, 60, 0.8) 25%,
        rgba(220, 39, 67, 0.8) 50%,
        rgba(204, 35, 102, 0.8) 75%,
        rgba(188, 24, 136, 0.8) 100%
    );
    color: var(--color-light);
}
.bg-color-gray {
    background-color: rgba(198, 198, 198, 1);
}

.btn-effect-shine {
    position: relative;
    overflow: hidden;
}
.btn-effect-shine::before {
    content: "";
    position: absolute;
    top: 0;
    left: -110%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255,1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-30deg);
}
@media (any-hover: hover) {
    .btn-effect-shine:hover::before {
        left: 110%;
        transition: all 0.5s ease;
    }
}

.table-1 {
    width: 100%;
}
.table-1 th {
    background-color: rgba(255, 255, 255, 0.3);
    display: block;
    padding: 2vw 25.5vw;
    color: var(--color-main);
    text-align: justify;
    text-align-last: justify;
}
.table-1 td {
    display: block;
    padding: 3vw;
    text-align: center;
}
@media screen and (min-width: 960px) {
    .table-1 {
        width: 100%;
    }
    .table-1 th {
        background-color: rgba(255, 255, 255, 0.5);
        display: table-cell;
        padding: 10px 30px;
        vertical-align: top;
    }
    .table-1 td {
        background-color: rgba(255, 255, 255, 0.3);
        display: table-cell;
        padding: 10px 30px;
        text-align: left;
    }
}

.contact-section-container {
    padding: 2vw 0;
    width: 100%;
}
.contact-item {
    padding: 5vw 3vw;
    border-bottom: 1px solid white;
}
.contact-item:last-child {
    border-bottom: none;
}
.contact-item h3 {
    text-align: center;
}
.contact-item .section-btn-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-item .button-2:nth-child(2) {
    margin-top: 3vw;
}
.contact-item a[href*="tel:"] {
    color: var(--color-main);
}
@media screen and (min-width: 960px) {
    .contact-section-container {
        display: flex;
        margin: 0 auto;
        padding: 30px 0;
        max-width: 1200px;
    }
    .contact-item {
        flex: 3;
        padding: 30px;
        border-left: 1px solid white;
        border-bottom: none;
    }
    .contact-item:first-child {
        flex: 4;
        border-left: none;
    }
    .contact-item h2 {
        text-align: left;
    }
    .contact-item .button-2 {
        color: var(--color-main);
    }
    .contact-item .button-2:hover {
        color: var(--color-light);
    }
    .contact-item .button-2:nth-child(2) {
        margin-top: 10px;
    }
}

.page-ttl-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../images/product-06.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 20vh;
    margin-top: 60px;
    text-align: center;
    vertical-align: middle;
}
.page-ttl-container h1 {
    top: 50%;
    color: var(--color-light);
    font-size: 7vw;
}
@media screen and (min-width: 960px) {
    .page-ttl-container {
        height: 200px;
        margin-top: 80px;
    }
    .page-ttl-container h1 {
        font-size: 48px;
    }
}

.time-list {
    width: 100%;
}
.time-list-item {
    display: flex;
    font-size: 0.8em;
}
.time-list-date {
    flex: 1;
    padding-top: 3vw;
    padding-right: 4vw;
    text-align: right;
}
.time-list-content {
    flex: 3;
    padding-top: 3vw;
    position: relative;
    padding-left: 5vw;
    border-left: 1px solid var(--color-light);
}
.time-list-item:first-child .time-list-date,
.time-list-item:first-child .time-list-content {
    padding-top: 0;
}
.time-list-content::before {
    content: '';
    position: absolute;
    top: 5.3vw;
    left: 0;
    width: 2.5vw;
    height: 2.5vw;
    background-color: rgb(159, 186, 221);
    border-radius: 50%;
    transform: translateX(-50%);
}
.time-list-item:first-child .time-list-content::before {
    top: 2.2vw;
}
@media screen and (min-width: 960px) {
    .time-list-item {
        font-size: 1em;
    }
    .time-list-date {
        flex: 1;
        padding-top: 20px;
        padding-right: 40px;
    }
    .time-list-content {
        flex: 5;
        padding-top: 20px;
        padding-left: 40px;
    }
    .time-list-content::before {
        top: 33px;
        left: 0;
        width: 18px;
        height: 18px;
    }
    .time-list-item:first-child .time-list-content::before {
        top: 13px;
    }
}

.section-factory-overview img {
    width: 100%;
}
.section-factory-overview .google-map {
    width: 100%;
    margin-top: 3vw;
    border: 1px solid lightgrey;
}
@media screen and (min-width: 960px) {
    .factory-overview-img-container {
        display: flex;
        gap: 20px;
        width: 100%;
        margin-bottom: 20px;
    }
    .section-factory-overview img {
        flex: 1;
        width: 30%;
    }
    .section-factory-overview .google-map {
        flex: 1;
        width: 30%;
        margin-top: 0;
        border: 1px solid lightgrey;
    }
}

.contact-page hr {
    margin: 7vw 0;
}
.contact-page .section-btn-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3vw;
    padding-top: 1vw;
    padding-bottom: 5vw;
}
.contact-page .section-btn-container .button-2 {
    color: var(--color-light);
    border: 1px solid var(--color-light);
}
@media screen and (min-width: 960px) {
    .contact-page hr {
        margin: 50px 0;
    }
    .contact-page .section-btn-container {
        flex-direction: row;
        align-items: center;
        gap: 20px;
        padding-top: 0;
        padding-bottom: 20px;
    }
}

.mc-contact-form {
    width: 100%;
    padding: 3vw;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--color-light);
}
.contact-form-submit-container {
    text-align: center;
    padding: 3vw 1vw;
    padding-top: 1vw;
}
.table-form {
    width: 100%;
}
.table-form th {
    display: block;
    text-align: left;
    width: 100%;
}
.table-form td {
    display: block;
    width: 100%;
}
.table-form input,
.table-form textarea {
    width: 100%;
    background-color: #eee;
    border: 1px solid var(--color-main);
}
.table-form textarea {
    vertical-align: bottom;
}
.table-form input[type=text],
.table-form input[type=tel],
.table-form input[type=email],
.table-form textarea {
    padding: 1vw 3vw;
}
.table-form input::placeholder,
.table-form textarea::placeholder {
    color: #bbb;
}
.form-submit-btn {
    display: block;
    margin-top: 3vw;
    padding: 1vw;
    width: 100%;
    color: var(--color-main);
}
.label-required {
    padding: 0.5vw 1.5vw 1vw 1.5vw;
    background-color: red;
    font-size: 3vw;
    margin-left: 2vw;
    border-radius: 2px;
}
@media (any-hover: hover) {
    .form-submit-btn:hover {
        border-top: 2px solid lightgray;
        border-left: 2px solid lightgray;
        border-right: 2px solid gray;
        border-bottom: 2px solid gray;
        background-color: var(--bg-color-main);
        color: var(--color-light);
    }
}
@media screen and (min-width: 960px) {
    .mc-contact-form {
        padding: 30px;
    }
    .contact-form-submit-container {
        padding: 10px;
    }
    .table-form {
        width: 100%;
        border-collapse: collapse;
    }
    .table-form th {
        display: table-cell;
        text-align: right;
        width: 28%;
        border: 1px solid var(--color-light);
        background-color: rgba(225, 225, 225, 0.3);
        padding-right: 20px;
    }
    .th-textarea {
        padding-top: 5px;
        vertical-align: top;
    }
    .table-form td {
        display: table-cell;
        width: 70%;
        border: 1px solid var(--color-light);
        background-color: rgba(225, 225, 225, 0.3);
        padding: 5px 7px;
    }
    .table-form input[type=text],
    .table-form input[type=tel],
    .table-form input[type=email] {
        padding: 3px 14px;
    }
    .table-form textarea {
        padding: 10px 14px;
        line-height: 27px;
    }
    .form-submit-btn {
        margin: 20px auto 0 auto;
        padding: 5px 0  7px 0;
        width: 300px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .label-required {
        padding: 2px 7px 3px 7px;
        font-size: 14px;
        margin-left: 10px;
    }
}

input[type=checkbox] {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
}
.checkbox-label {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}
.custom-checkbox {
    position: relative;
    display: inline-block;
    width: 4.5vw;
    height: 4.5vw;
    border: 0.5vw solid #ddd;
    border-radius: 1vw;
    margin-right: 1.5vw;
    background-color: var(--color-light);
    color: var(--color-light);
    font-size: 2.8vw;
    font-weight: bold;
    transform-origin: center;
    transition: all 0.3s ease;
}
input[type=checkbox]:checked + .custom-checkbox {
    background-color: rgb(35, 1, 116);
}
@media (any-hover: hover) {
    .checkbox-label:hover {
        color: rgb(203, 196, 218);
    }
    .checkbox-label:hover .custom-checkbox {
        border: 2px solid rgb(35, 1, 116);
        background-color: rgb(203, 196, 218);
        color: rgb(203, 196, 218);
    }
    .checkbox-label:hover input[type=checkbox]:checked + .custom-checkbox {
        border: 2px solid #ddd;
    }
}
@media screen and (min-width: 960px) {
    .custom-checkbox {
        width: 25px;
        height: 25px;
        border: 2px solid #ddd;
        border-radius: 5px;
        margin-right: 10px;
        font-size: 17px;
    }
}