@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');

:root {
    --color1: #333333;
    --color2: #FFFFFF;
    --color3: #FA0F0F;
    --color4: #9D0B0B;
    --color5: #F5F5F5;
}

html {
    font-size: 62.5%; /* 16px * 62.5% = 10px */
    width: 100%;
    box-sizing: border-box;
}
body {
    color: var(--color1);
    background-color: #FFFFFF;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0.2rem;
    text-align: center;
}
img {
    width: 100%;
}
.br {
    display: inline-block;
}
a {
    transition: 0.5s;
}
a:hover {
    opacity: 0.5;
}
.sp {
    display: none;
}
@media(max-width: 1023px) {
    .sp {
        display: block;
    }
    .pc {
        display: none;
    }
}
header {
    position: fixed;
    z-index: 99990;
    width: 100%;
    top: 0;
    left: 0;
    padding: 15px 0;
    transition: 0.4s;
}
.header-scroll {
    background: #FFFFFF;
}
.header {
    width: 95%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header h1 {
    width: 20%;
    min-width: 210px;
}
.header h1 img {
    filter: brightness(0) invert(1);
    transition: 0.4s;
}
.header-scroll .header h1 img {
    filter: none;
}
.header__navPc__ul {
    display: flex;
    gap: 2vw;
}
.header__navPc__ul li a {
    height: 100%;
    color: #FFFFFF;
    font-family: Arial, Helvetica, sans-serif;
    transition: 0.4s;
}
.header-scroll .header__navPc__ul li a {
    color: #000000;
}
.header__navPc__ul li a span:nth-of-type(1) {
    font-size: 1.4rem;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-weight: 700;
}
.header__navPc__ul li a span:nth-of-type(2) {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
}
.header__navPc__ul__line a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    border-radius: 100px;
    color: #FFFFFF!important;
    letter-spacing: 0;
    background: #06C755;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
}
.menu {
    display: none;
}
.header__bottom__link {
    display: none;
}
.header-sp {
    display: none;
}
.menu-sp {
    display: none;
}
@media (max-width: 1280px) {
    .menu-sp {
        display: inline;
    }
    .menu-pc {
        display: none;
    }
    header {
        padding: 20px 0 15px;
    }
    .menu {
        display: block;
        position: fixed;
        z-index: 99999;
        top: 11px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .menu span {
        display: block;
        position: absolute;
        top: 15px;
        left: 10px;
        width: 30px;
        height: 2px;
        background: #FFFFFF;
        transition: 0.5s;
    }
    .menu span:nth-child(2) {
        top: 25px;
    }
    .menu span:nth-child(3) {
        top: 35px;
    }
    .active span:nth-child(1) {
        transform: rotate(-45deg) translate(-7.5px, 7.5px);
    }
    .active span:nth-child(2) {
        opacity: 0;
    }
    .active span:nth-child(3) {
        transform: rotate(45deg) translate(-7.5px, -7.5px);
    }
    .header-scroll .menu span {
        background: #000000;
    }
    .header-scroll .active span {
        background: #FFFFFF;
    }
    .header {
        justify-content: center;
    }
    .header__navPc {
        position: fixed;
        top: 0;
        left: -110%;
        width: 100vw;
        height: 100vh;
        padding-top: 130px;
        background: rgba(0,0,0,0.75);
        transition: 0.5s;
        overflow-y: scroll;
    }
    .open {
        left: 0;
    }
    .header h1 {
        position: relative;
        z-index: 99999;
    }
    .header__navPc__ul {
        width: 90%;
        max-width: 350px;
        margin: 0 auto;
        gap: 0;
        flex-wrap: wrap;
        text-align: left;
    }
    .header__navPc__ul li {
        width: 60%;
        margin-bottom: 40px;
        padding-left: 20px;
    }
    .header__navPc__ul li:nth-child(even) {
        width: 40%;
        padding: 0;
    }
    .header__navPc__ul li a {
        line-height: 2.5;
    }
    .header__navPc__ul li a span {
        display: block!important;
        height: auto!important;
    }
    .header-scroll .header__navPc__ul li a {
        color: #FFFFFF;
    }
    .header__navPc__ul__line {
        display: none;
    }
    .header-scroll .header h1 .white {
        filter: brightness(0) invert(1);
    }
    .header__bottom__link {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin: 50px 0 40px;
    }
    .header__bottom__link a {
        font-size: 1.2rem;
        font-weight: 400;
        color: #FFFFFF;
    }
    .header-sp {
        display: block;
    }
}



.top {
    position: relative;
}
.top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(rgba(0,0,0,0.5), rgba(0,0,0,1));
}
.top video {
    width: 100%;
    height: 105vh;
    object-fit: cover;
}
.top__title {
    position: absolute;
    width: 100%;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.top__title h2 {
    width: 90%;
    max-width: 750px;
    margin: 0 auto 25px;
}
.top__title p {
    color: #FFFFFF;
    margin-bottom: 30px;
    font-weight: 500;
    letter-spacing: 0.4rem;
}
.scroll {
    position: relative;
    display: block;
    margin: 0 auto;
    width: 1px;
    height: 10vh;
    background: #FFFFFF;
}
.scroll::after {
    overflow: hidden;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--color3);
    animation: scroll 2.5s ease-in-out infinite;
}
@keyframes scroll {
    0%{
        transform-origin: top;
        transform: scaleY(0);
    }
    45%{
        transform-origin: top;
        transform: scaleY(1);
    }
    55%{
        transform-origin: bottom;
        transform: scaleY(1);
    }
    100%{
        transform-origin: bottom;
        transform: scaleY(0);
    }
}
.top__campaign {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 90%;
    max-width: 630px;
    margin: 0 auto;
    color: #FFFFFF;
}
.top__campaign__top {
    width: 90%;
    margin: 20px auto -30px;
    filter: drop-shadow(0px 1px 3px black);
}
.top__campaign__bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 25px 0 10px;
    background:linear-gradient(to right, #FA0F0F, #CF0000);
    box-shadow: 0 8px 0 var(--color4) ;
}
.top__campaign__bottom img {
    width: 40px;
    margin-bottom: -5px;
}
.top__campaign__bottom p {
    margin-bottom: 10px;
    font-size: 2rem;
}
.top__campaign__bottom p .big {
    font-size: 3.5rem;
}
.top__campaign__bottom .arrow {
    display: block;
    width: 15px;
    height: 15px;
    border-bottom: solid 3px #FFFFFF;
    border-right: solid 3px #FFFFFF;
    transform: rotate(-45deg);
    margin-bottom: -5px;
}
@media (max-width: 1023px) {
    .top__title {
        top: 50%;
    }
    .top__title h2 {
        width: 90%;
    }
    .top__title p {
        font-size: 1.4rem;
        line-height: 1.8;
        letter-spacing: 0.6rem;
    }
    .top__campaign__bottom p {
        font-size: 1.4rem;
        line-height: 0.5;
        letter-spacing: 0.15rem;
    }
    .top__campaign__bottom img {
        margin-bottom: 5px;
    }
    .top__campaign__bottom .arrow {
        margin-bottom: 5px;
    }
}
@media (max-width: 599px) {
    .top__campaign__top {
        margin-bottom: -5vw;
    }
    .top__campaign__top {
        width: 90%;
    }
    .scroll {
        margin-bottom: 15vh;
    }
    .top__title h2 {
        margin-bottom: 35px;
    }
    .top__campaign__bottom {
        justify-content: space-around;
        padding-top: 30px;
    }
}


.mission {
    padding: 200px 0 0;
    background: #FFFFFF;
}
.mission__background {
    width: 90%;
    margin: 0 auto;
}
.mission__small {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color3);
    margin-bottom: 30px;
    line-height: 1;
    font-family: Arial, Helvetica, sans-serif;
}
.mission__title {
    font-size: 6.5rem;
    font-weight: 500;
    color: var(--color3);
    margin-bottom: 30px;
    letter-spacing: 0.6rem;
}
.mission__title span:nth-of-type(1) {
    letter-spacing: 1rem;
}
.mission__title span:nth-of-type(2) {
    letter-spacing: -2rem;
}
.mission__text {
    line-height: 2.8;
    letter-spacing: 0.4rem;
    margin-bottom: 50px;
}
.mission__ul {
    max-width: 1000px;
    margin: 0 auto 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
}
.mission__ul__li {
    position: relative;
    font-weight: 700;
    padding: 15px 0 15px 25px;
    width: 22.5%;
    text-align: left;
    font-size: 1.65rem;
    letter-spacing: 0.1rem;
    box-shadow: 0 0 3px #aaa;
}
.mission__ul__li::after {
    content: "";
    width: 8px;
    height: 100%;
    display: block;
    background: var(--color3);
    position: absolute;
    top: 0;
    left: 0;
}
.mission .scroll {
    height: 120px;
    background: #D9D9D9;
    margin-bottom: 0;
}
@media(max-width: 1023px) {
    .mission__title span:nth-of-type(1) {
        letter-spacing: 0.5rem;
    }
    .mission__title span:nth-of-type(2) {
        letter-spacing: -1rem;
    }
    .mission {
        padding: 100px 0 0 0;
    }
    .mission__small {
        font-size: 1.2rem;
        margin-bottom: 20px;
        line-height: 2;
    }
    .mission__title {
        font-size: 3rem;
        width: 110%;
        margin-left: -5.5%;
    }
    .mission__text {
        font-size: 1.4rem;
        line-height: 2;
    }
    .mission__ul {
        gap: 15px;
        max-width: 400px;
    }
    .mission__ul__li {
        width: 47.5%;
        font-size: 1.2rem;
        padding: 16.5px 0 16.5px 20px;
    }
}




.messege {
    padding: 200px 0;
    background: transparent;
}
.messege__background {
    z-index: -1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100lvh;
}
.messege__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.messege__contents {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
}
.messege__contents__title {
        width: 52%;
        padding-left: 2%;
        font-size: clamp(2.8rem, 2.95vw, 4rem);
        line-height: 2;
        letter-spacing: 0.5rem;
        color: var(--color3);
}
.messege__contents__text {
    width: 45%;
    color: #FFFFFF;
    text-shadow: 0 0 20px #000000;
    line-height: 2;
}
@media(max-width: 1023px) {
    .messege {
        padding: 100px 0;
    }
    .messege__contents {
        max-width: 350px;
        margin: 0 auto;
        flex-direction: column;
        gap: 40px;
    }
    .messege__contents__title {
        width: 100%;
        font-size: 2rem;
        padding-left: 0;
    }
    .messege__contents__text {
        width: 100%;
        font-size: 1.4rem;
        line-height: 2.1;
        letter-spacing: 0.4rem;
    }
}




.news {
    padding: 200px 0;
    background: #FFFFFF;
    text-align: left;
}
.news__background {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.news__small {
    display: block;
    color: var(--color3);
    font-size: 2rem;
    line-height: 2;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
}
.news__title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 50px;
    line-height: 2;
}
.news__ul {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}
.news__ul__link {
    display: block;
}
.news__ul__link:hover {
    opacity: 1;
}
.news__ul__link:hover .news__ul__link__li__image img {
    transform: scale(1.15);
}
.news__ul__link__li {
    width: calc(100% / 3 - 20px);
    height: 100%;
    margin-bottom: 50px;
}
.news__ul__link__li__image {
    margin-bottom: 20px;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.news__ul__link__li__image img {
    aspect-ratio: 16/10;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.news__ul__link__li__time {
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    color: var(--color3);
    margin-bottom: 5px;
}
.news__ul__link__li__title {
    line-height: 1.8;
}
.news__link {
    position: relative;
    display: block;
    max-width: 400px;
    padding: 25px 0;
    line-height: 2;
    border: solid 1px var(--color3);
    letter-spacing: 0.3rem;
    font-weight: 500;
    text-align: center;
    color: var(--color3);
    margin: 0 auto;
    transition: 0.5s;
}
.news__link::after {
    content: "";
    display: block;
    width: 12.5px;
    height: 12.5px;
    border-right: solid 2px var(--color3);
    border-bottom: solid 2px var(--color3);
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translate(-50%,-50%) rotate(-45deg);
    transition: 0.5s;
}
.news__link:hover {
    background: var(--color3);
    color: #FFFFFF;
    opacity: 1;
}
.news__link:hover::after {
    border-right: solid 2px #FFFFFF;
    border-bottom: solid 2px #FFFFFF;
}
.photo {
    width: 100%;
    overflow: hidden;
}
.photo img {
    width: calc(100% + 200px);
}
@media (max-width: 1023px) {
    .news {
        padding: 100px 0;
    }
    .news__small {
        font-size: 1.4rem;
    }
    .news__title {
        font-size: 2rem;
    }
    .news__ul__link__li {
        width: calc(100% / 2 - 15px);
    }
    .news__ul__link__li__image {
        margin-bottom: 15px;
    }
    .news__ul__link__li__time {
        font-size: 1.2rem;
        line-height: 2;
        margin-bottom: 0;
    }
    .news__ul__link__li__title {
        font-size: 1.4rem;
        line-height: 2;
    }
    .news__link {
        padding: 16.5px 0;
    }
}
@media (max-width: 600px) {
    .news__ul__link__li {
        width: 100%;
    }
}





.curriculum {
    padding: 200px 0 100px;
    background: #FFFFFF;
}
.curriculum__wapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}
.curriculum__title {
    font-size: 5rem;
    color: var(--color3);
    margin-bottom: 30px;
    line-height: 1.7;
    letter-spacing: 0.6rem;
}
.curriculum__title span:nth-of-type(1) {
    letter-spacing: 1rem;
}
.curriculum__title span:nth-of-type(2) {
    letter-spacing: -1rem;
}
.curriculum__text {
    line-height: 2;
    margin-bottom: 120px;
}
.curriculum__ul {
    display: flex;
    justify-content: space-between;
}
.curriculum__ul__li {
    width: 55%;
    border: solid 1px #D9D9D9;
}
.curriculum__ul__li2 {
    width: 42.5%;
}
.curriculum__ul__li__title {
    background: var(--color3);
    padding: 50px 0 20px;
    text-align: center;
}
.curriculum__ul__li2 .curriculum__ul__li__title {
    background: var(--color4);
}
.curriculum__ul__li__title small {
    display: flex;
    line-height: 1;
    padding: 5px 20px;
    margin: 0 auto 30px;
    border-radius: 100px;
    background: #FFFFFF;
    color: var(--color3);
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 200px;
}
.curriculum__ul__li2 .curriculum__ul__li__title small {
    color: var(--color4);
}
.curriculum__ul__li__title small span {
    font-size: 2rem;
    margin-left: 5px;
    margin-bottom: 2px;
}
.curriculum__ul__li__title h3 {
    font-weight: 700;
    font-size: 3rem;
    color: #FFFFFF;
    margin-bottom: 5px;
}
.curriculum__ul__li__title p {
    color: #FFFFFF;
}
.curriculum__ul__li .triangle {
    display: block;
    width: 100%;
    height: 30px;
    margin-top: -1px;
    margin-bottom: 50px;
    background: var(--color3);
    clip-path: polygon(50% 100%, 100% 5%, 100% 0, 0 0, 0 5%);
}
.curriculum__ul__li2 .triangle {
    background: var(--color4);
}
.curriculum__ul__li__contents {
    width: 90%;
    max-width: 460px;
    margin: 0 auto;
}
.curriculum__ul__li2 .curriculum__ul__li__contents {
    max-width: 360px;
}
.curriculum__ul__li__contents h4 {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--color3);
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
}
.curriculum__ul__li2 .curriculum__ul__li__contents h4 {
    color: var(--color4);
}
.curriculum__ul__li__contents h4 img {
    width: 30px;
}
.curriculum__ul__li__contents__text {
    font-size: 1.4rem;
    margin-bottom: 20px;
    line-height: 1.8;
    letter-spacing: 0;
}
.curriculum__ul__li__contents__ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 60px;
}
.curriculum__ul__li__contents__ul__li {
    position: relative;
    letter-spacing: 0;
    width: calc(100% / 2 - 5px);
    padding: 10px 5px 10px 25px;
    box-shadow: 0 0 3px #aaaaaa;
    line-height: 2;
    font-weight: 700;
    font-size: 1.65rem;
}
.curriculum__ul__li2 .curriculum__ul__li__contents__ul__li {
    width: 100%;
    max-width: 250px;
    padding: 14px 5px 14px 25px;
    margin: 0 auto;
}
.curriculum__ul__li__contents__ul__li__other {
    padding: 20px 0 0 0;
    text-align: right;
    box-shadow: none;
}
.curriculum__ul__li__contents__ul__li::before {
    content: "";
    display: block;
    width: 8px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--color3);
}
.curriculum__ul__li2 .curriculum__ul__li__contents__ul__li::before {
    background: var(--color4);
}
.curriculum__ul__li__contents__ul__li__other::before {
    content: none;
}
@media (max-width: 1023px) {
    .curriculum {
        padding: 100px 0 0 ;
    }
    .curriculum__title {
        font-size: 2.5rem;
        letter-spacing: 0.3rem;
    }
    .curriculum__title span:nth-of-type(1) {
        letter-spacing: 0.5rem;
    }
    .curriculum__title span:nth-of-type(2) {
        letter-spacing: -0.5rem;
    }
    .curriculum__text {
        font-size: 1.4rem;
        margin-bottom: 60px;
    }
    .curriculum__ul {
        flex-direction: column;
        gap: 50px;
    }
    .curriculum__ul__li {
        width: 100%!important;
    }
    .curriculum__ul__li__title {
        padding: 30px 0 5px;
    }
    
    .curriculum__ul__li__title small {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    .curriculum__ul__li__title small span {
        font-size: 1.4rem;
        vertical-align: bottom;
    }
    .curriculum__ul__li__title h3 {
        font-size: 1.6rem;
    }
    .curriculum__ul__li__title p {
        font-size: 1.2rem;
        width: 90%;
        margin: 0 auto;
    }
    .curriculum__ul__li__contents {
        width: 85%;
    }
    .curriculum__ul__li__contents h4 img {
        width: 25px;
    }
    .curriculum__ul__li__contents h4 {
        font-size: 1.6rem;
    }
    .curriculum__ul__li__contents__text {
        font-size: 1.3rem;
    }
    .curriculum__ul__li2 .curriculum__ul__li__contents__ul__li {
        width: 200px;
    }
    .curriculum__ul__li__contents__ul__li {
        font-size: 1.3rem;
        line-height: 1.5;
        height: 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}



.curriculumList {
    padding: 200px 0;
    background: #FFFFFF;
}
.curriculumList__wapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.curriculumList__title {
    font-size: 4rem;
    color: var(--color3);
    margin-bottom: 50px;
}
.curriculumList__ul {
    display: flex;
    justify-content: space-around;
}
.curriculumList__ul__li {
    width: 25%;
    padding: 50px 0;
    border-left: solid 1px #D9D9D9;
    text-align: left;
}
.curriculumList__ul__li__contents {
    width: 90%;
    margin: 0 auto;
    color: var(--color3);
}
.curriculumList__ul__li__contents strong {
    font-size: 8rem;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
}
.curriculumList__ul__li__contents h3 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}
.curriculumList__ul__li__contents small {
    display: block;
    margin-left: 2.5px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
}
.curriculumList__ul__li__contents div {
    padding-top: 130px;
}
.curriculumList__ul__li__contents div img {
    display: block;
    margin-bottom: 20px;
}
.curriculumList__ul__li__contents div p {
    line-height: 2;
    color: #333333;
}
@media (max-width: 1023px) {
    .curriculumList {
        padding: 100px 0;
    }
    .curriculumList__title {
        font-size: 2.2rem;
        letter-spacing: 0.2rem;
        padding-bottom: 50px;
        border-bottom: solid 1px #D9D9D9;
        margin-bottom: 25px;
    }
    .curriculumList__ul {
        flex-wrap: wrap;
    }
    .curriculumList__ul__li {
        width: 50%;
        border-bottom: solid 1px #D9D9D9;
    }
    .curriculumList__ul__li:nth-child(odd) {
        border-left: none;
    }
    .curriculumList__ul__li:nth-child(3), .curriculumList__ul__li:nth-child(4) {
        border-bottom: none;
    }
    .curriculumList__ul__li__contents strong {
        font-size: 8rem;
        line-height: 1;
    }
    .curriculumList__ul__li__contents h3 {
        font-size: 1.6rem;
    }
    .curriculumList__ul__li__contents small {
        font-size: 1rem;
    }
    .curriculumList__ul__li__contents div p {
        font-size: 1.5rem;
    }
}
@media (max-width: 599px) {
    .curriculumList__ul__li {
        width: 100%;
        border: none!important;
        padding: 25px 0;
    }
    .curriculumList__ul__li__contents div {
        padding-top: 30px;
        padding-bottom: 40px;
        border-bottom: solid 1px #D9D9D9;
    }
    .curriculumList__ul__li__contents {
        position: relative;
    }
    .curriculumList__ul__li__contents::after {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        width: 20px;
        height: 20px;
        border-bottom: solid 2px var(--color3);
        border-right: solid 2px var(--color3);
        transform: rotate(-135deg);
        transition: 0.8s;
    }
    .curriculumList__open .curriculumList__ul__li__contents::after {
        transform: rotate(45deg);
    }
    .contents-open {
        opacity: 0;
        transition: 2s;
        transform: translateY(20px);
    }
    .curriculumList__ul__li__contents small {
        font-size: 1rem;
        padding-bottom: 50px;
        border-bottom: solid 1px #D9D9D9;
    }
    .curriculumList__open .contents-open {
        opacity: 1;
        transform: translateY(0);
    }
}




.training {
    background: url(images/training/image.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 150px 0 180px;
    position: relative;
}
.training::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, #FA0F0F, #CF0000);
    opacity: 0.8;
}
.training__wapper {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1;
    color: #FFFFFF;
}
.training__subtitle {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 2;
}
.training__title {
    font-size: 4.8rem;
    letter-spacing: 0.6rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 2;
}
.training__text {
    margin-bottom: 80px;
}
.training__ul {
    display: flex;
    justify-content: space-between;
}
.training__ul__li {
    position: relative;
    width: 22.5%;
}
.training__ul__li:nth-child(even) {
    margin-top: 70px;
}
.training__ul__li__title {
    position: absolute;
    bottom: 40px;
    left: -20px;
    padding: 10px 0 10px 20px;
    width: 240px;
    background: #FFFFFF;
    line-height: 1.2;
    letter-spacing: 0;
}
.training__ul__li:nth-child(even) .training__ul__li__title {
    bottom: -20px;
}
.training__ul__li h3 {
    font-size: 1.8rem;
    line-height: 1.4;
    text-align: left;
    color: var(--color3);
    font-weight: 700;
}
.training__ul__li h3 span {
    display: block;
    font-size: 1.6rem;
}
@media (max-width: 1023px) {
    .training {
        padding: 100px 0 130px;
    }
    .training__subtitle {
        font-size: 1.6rem;
    }
    .training__title {
        font-size: 2.6rem;
        width: 110%;
        margin-left: -5%;
    }
    .training__text {
        font-size: 1.4rem;
        line-height: 1.8;
        letter-spacing: 0.25rem;
        text-align: left;
        width: 320px;
        margin: 0 auto 60px;
    }
    .training__ul {
        max-width: 500px;
        margin: 0 auto;
        flex-direction: column;
        gap: 80px;
    }
    .training__ul__li {
        width: 90%;
    }
    .training__ul__li:nth-child(even) {
        margin-top: 0;
        margin-left: auto;
    }
    .training__ul__li__title {
        bottom: -30px!important;
        left: auto;
        right: -30px;
    }
    .training__ul__li:nth-child(even) .training__ul__li__title {
        right: auto;
        left: -30px;
    }
    .training__ul__li h3 {
        font-size: 1.6rem;
        line-height: 1.4;
        letter-spacing: 0.15rem;
    }
    .training__ul__li h3 span {
        font-size: 1.4rem;
    }
}




.feature {
    padding: 200px 0;
    background: radial-gradient(#FFFFFF,#CCCCCC);
}
.feature__wapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}
.feature__wapper small {
    display: block;
    width: 90%;
    margin: 0 auto 20px;
    font-size: 2rem;
    line-height: 2;
    font-weight: 700;
    color: var(--color3);
    font-family: Arial, Helvetica, sans-serif;
}
.feature__wapper h2 {
    color: var(--color3);
    font-size: 5.2rem;
    font-weight: 500;
    width: 90%;
    line-height: 1.7;
    letter-spacing: 0.8rem;
    margin: 0 auto 150px;
}
.feature__ul {
    display: flex;
    flex-direction: column;
    gap: 100px;
}
.feature__ul__li {
    display: flex;
    justify-content: space-between;
    width: 95%;
}
.feature__ul__li:nth-of-type(even) {
    flex-direction: row-reverse;
    margin-left: auto;
}
.feature__ul__li__images {
    position: relative;
    width: 55%;
}
.feature__ul__li__images__image {
    filter: grayscale(1);
    transition: 1s;
    margin-top: -25px;
}
.feature__ul__li:nth-of-type(2) .feature__ul__li__images__image {
    margin-top: -50px;
}
.feature__ul__li:nth-of-type(3) .feature__ul__li__images__image {
    margin-top: -40px;
}
.color {
    filter: none;
}
.feature__ul__li__images__title {
    position: relative;
    z-index: 1;
    margin-left: 10%;
    width: 40%;
    display: block;
}
.feature__ul__li:nth-of-type(even) .feature__ul__li__images__title {
    margin-right: 10%;
    margin-left: auto;
}
.feature__ul__li__text {
    width: 40%;
}
.feature__ul__li__text strong {
    font-size: 12rem;
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--color3);
    margin-bottom: -20px;
    margin-top: 10px;
    letter-spacing: 0;
    font-weight: 700;
}
.feature__ul__li__text h3 {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--color3);
    margin-bottom: 20px;
    line-height: 1.7;
    letter-spacing: 0.3rem;
}
.feature__ul__li__text p {
    letter-spacing: 0.1rem;
    line-height: 2;
}
@media (max-width: 1023px) {
    .feature {
        padding: 100px 0;
        overflow-x: hidden;
    }
    .feature__wapper small {
        font-size: 1.2rem;
        width: 100%;
    }
    .feature__wapper h2 {
        font-size: 2.2rem;
        width: 100%;
        letter-spacing: 0.4rem;
        margin-bottom: 80px;
    }
    .feature__ul {
        max-width: 500px;
        margin: 0 auto;
    }
    .feature__ul__li {
        display: block;
    }
    .feature__ul__li__images {
        width: 100%;
    }
    .feature__ul__li__images__title {
        width: 180px;
        top: -55px;
        left: 5%;
    }
    .feature__ul__li__text {
        width: 100%;
        margin-top: -60px;
        z-index: 1;
        position: relative;
    }
    .feature__ul__li__text strong {
        display: block;
        font-size: 7rem;
        text-align: right;
        margin: 0;
    }
    .feature__ul__li:nth-of-type(even) .feature__ul__li__text strong {
        text-align: left;
    }
    .feature__ul__li__text h3 {
        font-size: 1.9rem;
        max-width: 380px;
        margin: 0 auto 20px;
    }
    .feature__ul__li__text p {
        font-size: 1.5rem;
        line-height: 1.8;
        max-width: 380px;
        margin: 0 auto;
    }
    .feature__ul__li:nth-of-type(1) .feature__ul__li__images__image {
        margin-top: -75px;
    }
    .feature__ul__li:nth-of-type(2) .feature__ul__li__images__image {
        margin-top: -90px;
    }
    .feature__ul__li:nth-of-type(3) .feature__ul__li__images__image {
        margin-top: -80px;
    }
}
@media (max-width: 599px) {
    .feature__ul__li__images {
        margin-left: -6%;
    }
    .feature__ul__li:nth-of-type(even) .feature__ul__li__images {
        margin-left: auto;
        margin-right: -6%;
    }
    .feature__ul__li:nth-of-type(even) .feature__ul__li__text h3 {
        text-align: right;
    }
    .feature__ul__li__images__image {
        aspect-ratio: 7/5;
        object-fit: cover;
    }
}




.service {
    background: #FFFFFF;
    padding: 200px 0;
}
.service__wapper {
    width: 90%;
    max-width: 1080px;
    margin: 0 auto;
}
.service__small {
    color: var(--color3);
    font-size: 2rem;
    line-height: 2;
    margin-bottom: 10px;
    display: block;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
}
.service__title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 80px;
}
.service__ul {
    display: flex;
    flex-wrap: wrap;
}
.service__ul__li {
    width: 25%;
    border-left: solid 1px #D9D9D9;
    margin-bottom: 40px;
}
.service__ul__li:nth-of-type(4), .service__ul__li:nth-of-type(8) {
    border-right: solid 1px #D9D9D9;
}
.service__ul__li__wapper {
    width: 90%;
    margin: 0 auto;
}
.service__ul__li__wapper small {
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color3);
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 40px;
}
.service__ul__li__wapper__icon {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.service__ul__li img {
    display: block;
    height: 76px;
}
.service__ul__li:nth-child(2) img {
    height: 67px;
}
.service__ul__li:nth-child(3) img {
    height: 54px;
}
.service__ul__li:nth-child(4) img {
    height: 79px;
}
.service__ul__li:nth-child(5) img {
    height: 87px;
}
.service__ul__li:nth-child(6) img {
    height: 83px;
}
.service__ul__li:nth-child(7) img {
    height: 72px;
}
.service__ul__li:nth-child(8) img {
    height: 77px;
}
.service__ul__li__wapper h3 {
    padding-bottom: 30px;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    letter-spacing: 0.1rem;
    font-weight: 700;
}
@media (max-width: 1023px) {
    .service {
        padding: 100px 0;
    }
    .service__small {
        font-size: 1.4rem;
    }
    .service__title {
        font-size: 2rem;
    }
}
@media (max-width: 599px) {
    .service__ul__li {
        width: 50%;
        border-bottom: solid 1px #D9D9D9;
        margin-bottom: 20px;
    }
    .service__ul__li:nth-child(odd) {
        border-left: none;
        position: relative;
    }
    .service__ul__li:nth-child(odd)::after {
        content: "";
        width: 40px;
        height: 40px;
        display: block;
        position: absolute;
        bottom: -20px;
        right: -20px;
        background: #FFFFFF;
    }
    .service__ul__li:nth-child(7), .service__ul__li:nth-child(8) {
        border-bottom: none;
    }
    .service__ul__li__wapper h3 {
        padding-bottom: 40px;
        font-size: 1.3rem;
    }
    .service__ul__li__wapper small {
        padding-top: 10px;
        font-size: 2rem;
        margin-bottom: 15px;
    }
    .service__ul__li:nth-of-type(4), .service__ul__li:nth-of-type(8) {
        border-right: none;
    }
    .service__ul__li img {
        height: 81px;
    }
    .service__ul__li:nth-child(2) img {
        height: 72px;
    }
    .service__ul__li:nth-child(3) img {
        height: 59px;
    }
    .service__ul__li:nth-child(4) img {
        height: 84px;
    }
    .service__ul__li:nth-child(5) img {
        height: 92px;
    }
    .service__ul__li:nth-child(6) img {
        height: 88px;
    }
    .service__ul__li:nth-child(7) img {
        height: 77px;
    }
    .service__ul__li:nth-child(8) img {
        height: 82px;
    }
}




.coupon {
    padding: 50px 0;
    background: var(--color3);
}
.coupon__wapper {
    position: relative;
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}
.coupon__bubble {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    background: #FCDD21;
    border-radius: 50%;
    color: var(--color3);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.25;
    width: 130px;
    height: 130px;
    top: 0;
    left: 5%;
}
.coupon__bubble::after {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background: #FCDD21;
    position: absolute;
    right: -5%;
    bottom: 16%;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.coupon__small {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2rem;
    color: #FFFFFF;
    margin-bottom: 12px;
    letter-spacing: 0.3rem;
}
.coupon__small__left {
    height: 25px;
    position: relative;
    display: block;
    width: 2px;
    background: #FFFFFF;
    transform: rotate(-25deg);
}
.coupon__small__left::after {
    content: "";
    height: 25px;
    position: absolute;
    top: -2px;
    left: -5px;
    display: block;
    width: 2px;
    background: #FFFFFF;
}
.coupon__small__right {
    height: 25px;
    position: relative;
    display: block;
    width: 2px;
    background: #FFFFFF;
    transform: rotate(25deg);
}
.coupon__small__right::after {
    content: "";
    height: 25px;
    position: absolute;
    top: -2px;
    right: -5px;
    display: block;
    width: 2px;
    background: #FFFFFF;
}
.coupon__title {
    font-size: 2.4rem;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 30px;
    line-height: 1.7;
    letter-spacing: 0.1rem;
}
@media (max-width: 1023px) {
    .coupon__small {
        font-size: 1.4rem;
        margin-bottom: 7px;
        font-weight: 700;
        gap: 25px;
        margin-bottom: 20px;
    }
    .header .coupon__small {
        margin-bottom: 0;
    }
    .coupon__title {
        font-size: 1.8rem;
        width: auto;
        text-align: left;
        margin-bottom: 0;
        letter-spacing: 0.2rem;
    }
    .header .coupon__title {
        font-size: 1.4rem;
    }
    .coupon__wapper a {
        display: block;
        max-width: 400px;
        margin: 0 auto;
    }
    .coupon__bubble {
        width: 120px;
        height: 120px;
        font-size: 1.8rem;
        position: relative;
        left: 0;
    }
    .coupon__title__flex {
        display: flex;
        gap: 20px;
        width: 400px;
        margin: 0 auto;
        justify-content: center;
        align-items: center;
        margin-bottom: 30px;
    }
    .mainCoupon {
        padding: 70px 0 100px;
    }
}
@media (max-width: 424px) {
    .coupon__bubble {
        width: 110px;
        height: 110px;
    }
    .coupon__title__flex {
        width: 320px;
    }
}



.background {
    width: 100%;
    height: 450px;
    background: #FFFFFF;
}
@media (max-width: 1023px) {
    .background {
        height: 170px;
    }
}




.faq {
    background: #F5F5F5;
    padding-bottom: 200px;
    padding-top: 1px;
}
.faq__wapper {
    width: 90%;
    max-width: 1200px;
    padding: 150px 0 200px;
    margin: -200px auto 0;
    background: #FFFFFF;
    box-shadow: 0 0 8px #D9D9D9;
}
.faq__wapper__area {
    text-align: left;
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}
.faq__wapper__area small {
    color: var(--color3);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: Arial, Helvetica, sans-serif;

}
.faq__wapper__area h2 {
    font-size: 2.4rem;
    font-weight: 500;
    margin-bottom: 80px;
    line-height: 2;
    letter-spacing: 0;
}

.nav-open{
	padding: 30px 45px 30px 15px;
    border-bottom: solid 1px #D9D9D9;
	font-size: 1.6rem;
	position: relative;
    cursor: pointer;
    font-weight: 700;
}
.nav-open span {
    color: var(--color3);
    font-family: Arial, Helvetica, sans-serif;
    margin-right: 10px;
    font-weight: 700;
}
.nav-open::before{
    content: "＋";
    position: absolute;
    right: 10px;
    top: 22.5px;
    color: var(--color3);
    font-size: 2.6rem;
}
.nav-open.active-faq::before{
	content: "－";
    color: var(--color3);
    font-size: 2.6rem;
}
.faq__wapper__area ul li p {
    padding: 30px 40px 30px 55px;
    display: none;
    border-bottom: solid 1px #D9D9D9;
    letter-spacing: 0.2rem;
    line-height: 1.8;
    font-size: 1.6rem;
}
@media (max-width: 1023px) {
    .faq {
        padding: 100px 0;
        margin-top: -70px;
    }
    .faq__wapper {
        padding: 100px 0;
    }
    .faq__wapper__area small {
        font-size: 1.2rem;
    }
    .faq__wapper__area h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    .nav-open {
        display: flex;
        flex-direction: column;
        padding: 20px 30px 20px 0;
        gap: 10px;
    }
    .nav-open::before {
        right: 0;
        top: 12.5px;
    }
    .faq__wapper__area ul li p {
        padding: 20px 0;
        font-size: 1.5rem;
        width: 90%;
        margin: 0 auto;
    }
}





footer {
    padding: 80px 0 40px;
    background: #000000;
}
.footer__logo {
    display: block;
    width: 170px;
    margin: 0 auto 50px;
}
.footer__nav ul {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}
.footer__nav ul li a {
    color: #FFFFFF;
    font-size: 1.4rem;
}
.copy {
    font-size: 1rem;
    color: #FFFFFF;
}
@media (max-width: 1023px) {
    footer {
        padding: 130px 0 60px;
    }
    .footer__logo {
        margin-bottom: 130px;
    }
    footer nav ul {
        flex-direction: column;
    }
    footer nav ul li a {
        font-size: 1.2rem;
    }
    .footer__logo {
        width: 200px;
    }
}




.other-top {
    padding-top: 80px;
    margin-bottom: 120px;
}
.other-top img {
    object-fit: cover;
    min-height: 150px;
}
.privacy__contents {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto 150px;
    text-align: left;
    line-height: 2;
}
.privacy__contents__title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 40px;
}
.privacy__contents__text {
    margin-bottom: 100px;
}
.privacy__contents__ul {
    display: flex;
    flex-direction: column;
    gap: 70px;
}
.privacy__contents__ul__li__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    margin-bottom: 10px;
}
.privacy__contents__ul__li__title span {
    display: block;
    width: 10px;
    height: 2px;
    background: var(--color3);
}
.privacy__contents__ul__li__ul {
    margin-top: 15px;
}
.privacy__contents__ul__li__ul__li {
    padding-left: 16px;
}
.privacy__contents__ul__li__ul__bottom {
    margin-bottom: 50px;
}
.sp-top {
    display: none;
}
@media (max-width: 1023px) {
    .privacy__contents__title {
        font-size: 1.8rem;
    }
    .privacy__contents__text {
        font-size: 1.4rem;
    }
    .privacy__contents__ul {
        font-size: 1.4rem;
    }
}
@media (max-width: 599px) {
    .sp-top {
        display: block;
    }
    .pc-top {
        display: none;
    }
    .other-top img {
        min-height: 100px;
    }
}




.tokusho {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto 150px;
    text-align: left;
}
.tokusho__title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 70px;
}
.tokusho dl {
    display: flex;
    flex-wrap: wrap;
}
.tokusho dl dt {
    padding: 20px 0;
    border-bottom: solid 1px #D9D9D9;
    width: 250px;
    font-weight: 700;
}
.tokusho dl dd {
    padding: 20px 0;
    width: calc(100% - 250px);
    border-bottom: solid 1px #D9D9D9;
}
.tokusho dl dd span {
    color: #757373;
}
.tokusho dl dd a {
    text-decoration: underline;
    color: #0085FF;
}
.sp__lineButton {
    display: none;
    z-index: 999;
    position: fixed;
    bottom: 2.5%;
    right: 0;
    width: 60px;
    background: var(--color3);
    color: #FFFFFF;
    padding: 10px 0;
    border-radius: 7px 0 0 7px;
    box-shadow: 0 5px 0 var(--color4);
}
.sp__lineButton img {
    display: block;
    width: 60%;
    margin: 0 auto 12px;
}
.sp__lineButton p {
    writing-mode: vertical-rl;
    margin: 0 auto;
    font-size: 1rem;
    letter-spacing: 0.1rem;
    line-height: 1.6;
}
.sp__lineButton p span:nth-of-type(1) {
    writing-mode: initial;
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: -4px;
    margin-bottom: -1px;
}
.sp__lineButton p span:nth-of-type(2) {
    writing-mode: vertical-rl;
    text-orientation: upright;
}

@media (max-width: 1023px) {
    .sp__lineButton {
        display: block;
    }
    .tokusho__title {
        font-size: 1.8rem;
    }
    .tokusho dl dt {
        width: 100%;
        border-bottom: none;
        padding-bottom: 0;
        font-size: 1.4rem;
    }
    .tokusho dl dd {
        width: 100%;
        font-size: 1.4rem;
        line-height: 1.8;
        padding-top: 10px;
    }
}
#archive {
    padding-top: 0;
}
.top__button {
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    bottom: 2.5%;
    right: 2.5%;
    z-index: 100;
    box-shadow: 0 0 6px #D9D9D9;
}
.top__button span {
    display: block;
    width: 16px;
    height: 16px;
    transform: rotate(-135deg) translate(-3px, -3px);
    border-bottom: solid 1px var(--color3);
    border-right: solid 1px var(--color3);
}
.top__button__fade {
    visibility: initial;
    opacity: 1;
}
@media (max-width: 1023px) {
    .top__button {
        display: none;
    }
}

input,
button,
select,
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    border-radius: 0;
    font: inherit;
    outline: none;
}


input[type='submit'],
input[type='button'],
label,
button,
select {
    cursor: pointer;
}

select::-ms-expand {
    display: none;
}

.pageContact {
    width: 90%;
    max-width: 780px;
    margin: 0 auto 200px;
}
.pageContact__title {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 2;
    margin-bottom: 50px;
}
.pageContact__ul {
    width: 220px;
    height: 2px;
    background: #D9D9D9;
    position: relative;
    margin: 0 auto 120px;
}
.pageContact__ul__li {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    left: -30px;
    top: -4px;
}
.pageContact__ul__li:nth-of-type(2) {
    left: 50%;
    transform: translateX(-50%);
}
.pageContact__ul__li:nth-of-type(3) {
    left: auto;
    right: -30px;
}
.pageContact__ul__li span {
    display: block;
    width: 10px;
    height: 10px;
    background: #D9D9D9;
    border-radius: 50%;
}
.pageContact__ul__li p {
    line-height: 2;
    font-size: 1.4rem;
    color: #D9D9D9;
}
.pageContact__ul__li-current span {
    background: var(--color3);
}
.pageContact__ul__li-current p {
    color: var(--color3);
}
.contact__form {
    display: block;
    text-align: left;
}
.contact__form tbody {
    display: block;
}
.contact__form tbody tr {
    display: block;
    margin-bottom: 20px;
}
.contact__form tbody tr th {
    display: block;
    line-height: 2;
}
.contact__form tbody tr td {
    display: block;
}
.contact__form tbody tr td span {
    display: block;
    width: 100%;
    height: 100%;
}
.contact__form tbody tr td span input {
    width: 100%;
    border: solid 1px #D9D9D9;
    padding: 9px 16px;
}
.contact__form tbody tr td span textarea {
    width: 100%;
    height: 100%;
    border: solid 1px #D9D9D9;
    padding: 9px 16px;
    resize: none;
}
.contact__form tbody tr td span input::placeholder {
    color: #D9D9D9;
}
.contact__form tbody tr td span textarea::placeholder {
    color: #D9D9D9;
}
.wpcf7-spinner {
    display: none!important;
}
.wpcf7-list-item {
    margin: 0!important;
}
.wpcf7-list-item input {
    width: 18px;
    height: 18px;
    border: solid 1px #D0d0d0;
    margin-bottom: 2.5px;
}
.form-confirmation {
    display: flex;
    gap: 12.5px;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}
.form-confirmation a {
    color: #0085FF;
    text-decoration: underline;
}

.wpcf7-submit {
    display: block;
    width: 90%;
    max-width: 280px;
    padding: 14px 0;
    margin: 0 auto;
    line-height: 2;
    letter-spacing: 0.4rem;
    background: #000000;
    color: #FFFFFF;
    transition: 0.25s;
}
.wpcf7-submit:hover {
    opacity: 0.5;
}
.wpcf7-submit:disabled {
    opacity: 0.25;
}
.pageContact-confirmation .contact__form {
    margin-bottom: 150px;
}
.pageContact-confirmation .contact__form tbody tr {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: solid 1px #D9D9D9;
    display: flex;
    align-items: center;
}
.pageContact-confirmation .contact__form tbody tr:last-child {
    align-items: flex-start;
}
.pageContact-confirmation .contact__form tbody tr th {
    width: 200px;
}
.pageContact-confirmation .contact__form tbody tr td {
    flex: 1;
}
.pageContact-confirmation .contact__form tbody tr:last-child td {
    margin-top: 2.5px;
}
.pageContact-thanks__text {
    line-height: 2;
    margin-bottom: 220px;
}
.pageContact-thanks__button {
    display: block;
    width: 90%;
    max-width: 280px;
    margin: 0 auto;
    background: #000000;
    color: #FFFFFF;
    padding: 14px 0;
    line-height: 2;
}
.single-contents {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 50px;
    text-align: left;
}

@media (max-width: 1023px) {
    .pageContact-confirmation .contact__form tbody tr {
        display: block;
    }
    .pageContact-confirmation .contact__form tbody tr td {
        padding-left: 20px;
    }
}

.single-contents time {
    font-size: 1.2rem;
    color: var(--color3);
    line-height: 2;
}
.single-contents h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.single-contents img {
    aspect-ratio: 16/9;
    height: 100%;
    object-fit: cover;
    margin-bottom: 20px;
}
.single-contents p {
    line-height: 2;
    letter-spacing: 0.4rem;
}
.single__page-navi {
    position: relative;
    display: inline-block;
    margin-bottom: 150px;
}
.single__page-navi__back {
    position: absolute;
    top: 0;
    left: -110px;
}
.single__page-navi__next {
    position: absolute;
    top: 0;
    right: -110px;
}
.wp-pagenavi {
    clear: both;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
}
.wp-pagenavi a, .wp-pagenavi span {
    text-decoration: none;
    border: 1px solid #D9D9D9!important;
    padding: 5px 10px!important;
}
.wp-pagenavi span.current {
    font-weight: bold;
    background: red;
    border: none;
    color: #FFFFFF;
}