@charset "UTF=8";
html {
    font-size: 62.5%;
    font-family: 'Noto Sans JP' , serif;
    font-display: swap;
}
html::-webkit-scrollbar {
    display: none;
}
html,body {
    height: 100%;
    color: #fff;
}

img {
    width: 100%;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
}

.vina {
    font-family: "Vina Sans", serif;
    font-weight: normal;
}
.rubik {
    font-family: "Rubik 80s Fade", serif;
    font-weight: 400;
    font-style: normal;
}

/* クッキー */
.cookie-consent {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #4b4b4b;
    color: #fff;
    text-align: center;
    padding: 10px;
    z-index: 11000;
}
.cookie-consent p {
    margin: 0;
    padding: 0 10px;
    display: inline-block;
}
.cookie-consent a {
    color: #fff;
    border-bottom: 1px solid #7d7d7d;
}
.cookie-consent button {
    background-color: #17a69f;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-left: 10px;
}

#toTopButton {
    position: fixed;
    bottom: 100px;  /* 下から20px */
    right: 20px;   /* 右から20px */
    background: transparent;
    width: 80px;
    height: 80px;
    padding: 0;
    border: none;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    display: flex;
    justify-content: flex-end;
    align-items: end;
    transition: all 0.3s ease;
}
.top-button-body {
    position: relative;
    width: 2px;
    height: 40px;
    background-color: #fff;
    transition: all 0.3s ease;
}
.top-button-body::before {
    content: "";
    width: 2px;
    height: 20px;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(30deg);
    transform-origin: top left;
}
.top-button-body::after {
    content: "";
    width: 20px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    transform-origin: bottom right;
}
#toTopButton:hover .top-button-body {
    height: 80px;
}
#toTopButton.visible {
    opacity: 1;
    pointer-events: auto;
}
.header {
    position: fixed;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    height: 10%;
    background-color: #22222267;
    backdrop-filter: blur(6px);
    z-index: 99;
}
.header__logo {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 25%;
}
.header__logo span {
    font-size: 5rem;
}
.header__logo svg {
    margin-top: 3%;
    width: 15%;
}
.header a {
    color: #fff;
}

.header__text{
    width: 30%;
    display: flex;
    align-items: center;
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 1.2rem;
}
.header__sns {
    width: 6%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-in-out;
}
.header__sns a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header__sns svg {
    fill: #ffffff;
    width: 80%;
}
.header__sns:hover {
    background-color: #ffffff;
}
.header__sns:hover svg {
    fill: #222222;
}
.header__contact {
    width: 25%;
    overflow: hidden;
}
.header__contact--top:hover {
    background-color: #ffffff;
    color: #222222;
}
.header__contact--top {
    font-size: 1.6rem;
    height: 60%;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-in-out;
}
.header__contact--top
.header__contact--bottom {
    border-top: solid 1px #ffffff39;
    display: flex;
    align-items: center;
}
.header__contact--bottom p {
    margin: 0;
    font-size: 2.8125vw;
    line-height: 0.7;
}
.button__container {
    width: 6%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
}
.button__inner.rounded {
    border-radius: 50%;
    transition: border-radius 0.3s ease;
}

.button__outer {
    width: 80%;
    aspect-ratio: 1/1;
    position: relative;
}
.button__inner {
    border-radius: 0;
    width: 100%;
    aspect-ratio: 1/1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px #fff solid;
    transition: transform 0.3s ease;
}

.inner-one {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.inner-two {
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.inner-three {
    width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.inner-four {
    width: 70%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.inner-five {
    width: 60%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.inner-six {
    width: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.inner-seven {
    width: 40%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.nav {
    position: fixed;
    right: 0;
    top: 10%;
    font-size: 1.6rem;
    font-weight: bold;
}
.nav a {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    padding-right: 2rem;
    border: solid 1px #fff;
    background-color: #2222223d;
    backdrop-filter: blur(6px);
    transform: translateX(100%);
    transition: all 0.3s ease-in-out;
    color: #fff;
}
.nav li:hover a {
    background-color: #fff;
    color: #222;
}
.nav li:hover .nav__sub {
    color: #fff;
    background-color: #222222b8;
}

.nav__sub {
    writing-mode: vertical-lr;
    text-align: center;
    transform: rotate(180deg);
    color: #222222;
    background-color: #fff;
    padding: 1rem;
    font-size: 1.4rem;
}
.sec-title {
    width: 100%;
    display: flex;
    justify-content: center;
}
.sec-wrapper {
    position: relative;
}
.sec-title h2{
    display: inline-block;
    font-size: 20rem;
    color: #7d7d7d;
    margin: 0;
}
.sec-title h3 {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0,-50%);
    font-size: 2.4rem;
    margin: 0;
}
.sec-wrapper::after {
    content: "";
    width: 70%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0,-50%);
    z-index: 1;
}
#contact {
    position: relative;
}
.form-wrapper {
    width: 100%;
}
.contact-bottom {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform:translateX(-50%);
    width: 55%;
    z-index: 1;
}
.contact-top {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform:translateX(-50%);
    width: 55%;
    z-index: 3;
}
form {
    position: relative;
    background-color: #fff;
    color: #222222;
    font-size: 1.6rem;
    width: 40%;
    height: 600px;
    overflow-x: scroll;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    transform: translateY(30%);
    transition: all 0.6s ease-out;
    z-index: 2;
}
form.active {
    transform: translateY(-50%);
}
h4 {
    font-size: 2.4rem;
}
.form-content {
    width: 70%;
}
label {
    font-weight: bold;
}
input,textarea {
    width: 100%;
}
form button {
    background: #222222;
    color: #fff;
    padding: 0.8rem;
    font-weight: bold;
    width: 100%;
    transition: all 0.4s ease-in-out;
}
form button:hover {
    background: #fff;
    color: #222222;
}
.red {
    color: red;
}
.input-error {
    border: 2px solid red;
    background-color: #ffe6e6;
}
.categories {
    padding-bottom: 1rem;
    border-top: 1px solid #8d8d8d;
    border-bottom: 1px solid #8d8d8d;
    margin-bottom: 2rem;
}
.checkbox {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    width: 100%;
}
.checkbox input {
    width: 10%;
    margin: 0;
}
#footer {
    border-top: #8d8d8d 1px solid;
    background-color: #222222;
    padding: 2rem;
}
.footer__logo {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5rem;
}
.footer__logo svg {
    margin-top: 3%;
}
#footer .footer__flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
#footer .footer__flex--nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: 10px;
    font-size: 1.4rem;
}
#footer .footer__flex--nav li {
    transition: all 0.3s;
    padding: 0.5rem 1rem;
}
#footer .footer__flex--nav li:hover {
    background-color: #fff;
}
#footer .footer__flex--nav li:hover a{
    color: #222222;
}
#footer .footer__text {
    text-align: center;
    font-size: 1rem;
    margin: 0;
}
#footer a {
    color: #fff;
    transition: all 0.3s;
}

@media screen and (max-width: 1024px) and (min-width: 768px) {
    #toTopButton:active .top-button-body {
        height: 80px;
    }
    .header {
        height: 8%;
    }
    .header__logo {
        width: 23%;
    }
    .header__logo span {
        font-size: 3.5rem;
    }
    .header__text{
        width: 20%;
    }
    .header__contact {
        width: 29%;
    }
    .header__sns {
        width: 10%;
    }
    .button__container {
        width: 10%;
    }
    .header__contact--bottom p {
        font-size: 4vw;
        line-height: 0.7;
    }
    .nav {
        top: 8%;
    }
    .sec-title h2{
        font-size: 13rem;
    }
    .form-wrapper {
        width: 100%;
        margin-top: 25%;
    }
    .contact-bottom {
        width: 80%;
    }
    .contact-top {
        width: 80%;
    }
    form {
        width: 65%;
    }
    h4 {
        font-size: 2rem;
    }
    .form-content {
        width: 80%;
    }
    form button:active {
        background: #fff;
        color: #222222;
    }

    #footer {
        padding: 1rem;
    }
    .footer__logo {
        font-size: 3.5rem;
    }
    #footer .footer__flex {
        flex-direction: column;
        row-gap: 1rem;
    }
    #footer .footer__flex--nav {
        margin-left: 0;
    }
    #footer .footer__flex--nav li:active {
        background-color: #fff;
    }
    #footer .footer__flex--nav li:active a{
        color: #222222;
    }
    #footer .footer__text {
        margin-top: 1.5rem;
    }
}
@media screen and (max-width: 767px) {
    #toTopButton:active .top-button-body {
        height: 80px;
    }
    .header {
        height: auto;
        padding-top: 1rem;
    }
    .header__logo {
        width: 45%;
    }
    .header__logo span {
        font-size: 3.5rem;
    }
    .header__text{
        width: 45%;
    }
    .header__contact {
        width: 65%;
    }
    .header__sns {
        width: 15%;
    }
    .button__container {
        width: 15%;
    }
    .header__contact--bottom p {
        font-size: 7vw;
        line-height: 0.7;
    }
    .nav {
        top: 15%;
    }
    .sec-title h2{
        font-size: 7rem;
    }
    .form-wrapper {
        width: 100%;
        margin-top: 25%;
    }
    .sec-title h3 {
        font-size: 2rem;
    }
    .sec-wrapper::after {
        content: "";
        width: 50%;
    }

    .contact-bottom {
        width: 95%;
    }
    .contact-top {
        width: 95%;
    }
    form {
        width: 75%;
    }
    h4 {
        font-size: 2rem;
    }
    .form-content {
        width: 95%;
    }
    form button:active {
        background: #fff;
        color: #222222;
    }
    form.active {
        transform: translateY(-25%);
    }
    #footer {
        padding: 1rem;
    }
    .footer__logo {
        font-size: 3.5rem;
    }
    #footer .footer__flex {
        flex-direction: column;
        row-gap: 1rem;
    }
    #footer .footer__flex--nav {
        margin-left: 0;
        flex-direction: column;
        gap: 1rem;
    }
    #footer .footer__flex--nav li:active {
        background-color: #fff;
    }
    #footer .footer__flex--nav li:active a{
        color: #222222;
    }
    #footer .footer__text {
        margin-top: 1.5rem;
    }
}
@media screen and (min-width: 1600px) {
    #toTopButton {
        right: 30px; 
    }
    .top-button-body {
        height: 60px;
    }
    .top-button-body::before {
        height: 30px;
    }
    .top-button-body::after {
        width: 30px;
    }
    #toTopButton:hover .top-button-body {
        height: 100px;
    }
    .header__logo span {
        font-size: 9rem;
    }
    .header__text{
        font-size: 1.6rem;
    }
    .header__contact--top {
        font-size: 1.8rem;
    }
}