* {
    font-family: "Gantari", sans-serif !important;
    color: #333;
    /*
    font-family: "Bebas Neue", sans-serif;
    font-family: "Gelasio", serif;
    */
}

a:hover {
    opacity: 0.7;
    /* 例: 70%の透明度 */
}

.c_name{
	font-weight:600;
}

body {
    background-color: #f5f5f5;
    width: 100%;
    min-width: 1150px;
    box-sizing: border-box;
}

.whiteText,
.whiteText * {
    color: #FFF;
}

select {
    margin-bottom: 20px;

}

nav {
    background-color: #fff;
    width: 100%;
    padding-bottom: 10px;
}

nav ul {
    width: clamp(320px, 100%, 1100px);
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

nav ul li {
    width: 20%;
    text-align: center;
    font-size: 20px;
    position: relative;
}

nav ul li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 17%;
    width: 66%;
    height: 2px;
    background-color: #171717;
}

nav ul li a {
    display: block;
    text-decoration: none;
    padding: 8vh 0 5vh 0;
}

nav ul li a::before {
    content: "";
    display: block;
    position: absolute;
    left: calc(50% - 7px);
    bottom: 17px;
    width: 14px;
    height: 14px;
    border-left: 2px solid #222;
    border-bottom: 2px solid #222;
    transform: rotate(-45deg);
    transition: transform 0.3s;
}


.taikenButtonlp {
    width: fit-content;
    position: sticky;
    margin-bottom: -120px;
    margin-left: calc(97% - 120px);
    top: calc(97% - 120px);
    border-radius: 50%;
    background: #FF3B3B;
    font-weight: bold;
    text-align: center;
    height: 120px;
    width: 120px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    user-select: none;
    z-index: 3;
    /* border: 1px solid #FFFFFF; */
}

.taikenButtonlp a {
    text-decoration: none;
    font-size: 18px;
    line-height: 1.1;
    height: 120px;
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nonSticky {
    position: relative;
}

.spBreak {
    display: none;
}

.spHidden {
    display: inline;
}

h1 {
    font-size: 100px;
}

h2 {
    font-size: 46px;
    position: relative;
    display: inline-block;
    font-weight: 500;
    line-height: 120%;
}

h2::after {
    content: "";
    display: block;
    width: 120px;
    height: 2px;
    background: #333;
    margin-top: 40px;
    margin-left: 0;
    margin-bottom: 30px;
}

h3 {
    font-size: 36px;
    font-weight: 500;
    padding-bottom: 30px;
}

h3 span {
    font-size: 16px;
    margin-left: 10px;
}

h4 {
    font-size: 25px;
    margin-bottom: 30px;
}

p {
    font-size: 16px;
    line-height: 155%;

}


input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date" i] {
    color: #333;
    margin-top: 15px;
    margin-bottom: 0px;
    padding: 1% 0%;
    text-align: left !important;
    padding-left: 10px;
    width: 97%;
}

input[type="date"] {
  text-align: left !important;
}

input[type="date"]::-webkit-date-and-time-value {
  text-align: left !important;
}

input[type="date"]::-webkit-datetime-edit {
  text-align: left !important;
}

input[type="date"]::-webkit-datetime-edit-fields-wrapper {
  text-align: left !important;
}

select {
    color: #333 !important;
    margin-top: 15px;
    padding: 1% 0%;
    padding-left: 10px;
    width: 97%;
        margin-bottom: 0px;

}

.any {
    color: #333;
}

.required {
    background-color: #FF3B3B;
    color: #ffffff;
    padding: 2px 5px;
    margin: 0px 15px 0px 0px;
}

.any {
    background-color: #ffffff;
    color: #333;
    border: none;
    padding: 2px 5px;
    margin: 0px 15px 0px 0px;
}


input.contact-btn {
    background: linear-gradient(90deg, rgba(252, 65, 45, 1) 0%, rgba(233, 4, 4, 1) 100%);
    padding: 20px 50px;
    border-radius: 51px;
    text-decoration: none;
    font-weight: 600;
}

textarea {
    color: #333 !important;
    padding: 1% 0%;
    padding-left: 10px;
    width: 97%;
    margin-bottom: 40px;
}

label{
    margin-top: 30px;
}

.wpcf7-form-control.wpcf7-date {
    text-align: left !important;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #fff inset !important; /* 背景白に上書き */
    box-shadow: 0 0 0 1000px #fff inset !important;
}


@media (max-width: 768px) {
    body {
        box-sizing: border-box;
        max-width: 100%;
        min-width: auto;
    }

    h1 {
        font-size: calc((100vw - 368px) / (1100 - 368) * (100 - 46) + 42px);
    }

    h2 {
        font-size: calc((100vw - 368px) / (1100 - 368) * (46 - 30) + 30px);
    }

    h3 {
        font-size: calc((100vw - 368px) / (1100 - 368) * (36 - 28) + 28px);
    }

    h4 {
        font-size: calc((100vw - 368px) / (1100 - 368) * (25 - 22) + 22px);
    }

    p {
        font-size: calc((100vw - 368px) / (1100 - 368) * (16 - 15) + 15px);
    }

    .spBreak {
        display: block;
    }

    .spHidden {
        display: none;
    }

    nav {
        padding-bottom: 15px;
        padding-top: 20px;
    }

    nav ul {
        flex-wrap: wrap;
    }

    nav ul li {
        width: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    nav ul li a {
        padding: 3vh 0 40px;
        width: 100%;
    }

    /* nav ul li a::before {
        display: none;
    } */
    h3 span {
        font-size: 14px;
        margin-left: 10px;
    }

    .taikenButtonlp {
        width: fit-content;
        position: sticky;
        margin-bottom: -120px;
        margin-left: calc(97% - 100px);
        top: calc(97% - 100px);
        border-radius: 50%;
        background: #FF3B3B;
        font-weight: bold;
        text-align: center;
        height: 100px;
        width: 100px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
        user-select: none;
        z-index: 3;
        /* border: 1px solid #FFFFFF; */
    }

    .taikenButtonlp a {
        text-decoration: none;
        font-size: 15px;
        line-height: 1.1;
        height: 100px;
        width: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
    }


}

@media (max-width: 368px) {
    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 28px;
    }

    h4 {
        font-size: 22px;
    }

    p {
        font-size: 15px;
    }

    .spBreak {
        display: block;
    }

    .spHidden {
        display: none;
    }
}



.taikenButtonContent a {
padding: 22px 48px;
    width: fit-content;
    font-size: 20px;
    background: #FC412D;
    background: linear-gradient(90deg, rgba(252, 65, 45, 1) 0%, rgba(233, 4, 4, 1) 100%);
    border-radius: 51px;
    text-decoration: none;
    font-weight: 600;
}


.textRed {
    color: #FF3B3B;
}

.materialRed {
    background-color: #FF3B3B;
}

.blackBack {
    background-color: #171717;
}

.blackObi {
    border-radius: 50px;
    background-color: #272727;
    padding: 10px 25px;
    margin-bottom: 35px;
    width: fit-content;
    position: relative;
}

.center-underline {
    position: relative;
    display: inline-block;
    text-align: center;
}

.center-underline::after {
    content: "";
    display: block;
    width: 120px;
    height: 2px;
    background: #fff;
    margin: 24px auto 50px;
    border-radius: 2px;
}



.numeric {
    font-family: "Bebas Neue", sans-serif !important;
}

.highspeedFont {
    font-family: "Gelasio", serif !important;
}

@media (max-width: 768px) {

    .taikenButtonContent a {
        padding: 20px 40px;
        width: fit-content;
        font-size: 18px !important;
        background: #FC412D;
        background: linear-gradient(90deg, rgba(252, 65, 45, 1) 0%, rgba(233, 4, 4, 1) 100%);
        border-radius: 51px;
        text-decoration: none;
        font-weight: 600;
    }

    h2::after {
        content: "";
        display: block;
        width: 60px;
        height: 2px;
        background: #333;
        margin-top: 40px;
        margin-left: 0;
        margin-bottom: 30px;
    }

    .center-underline::after {
        content: "";
        display: block;
        width: 60px;
        height: 2px;
        background: #fff;
        margin: 24px auto 50px;
        border-radius: 2px;
    }

    .br-sp {
        display: none;
    }

}