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

/*
Theme Name : テーマの名前
Theme URL : テーマのURL
Description : テーマの説明
Author : テーマ制作者の名前
Version : テーマのバージョン
*/


:root {
    --color: #333333;
}

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

html {
    font-size: 62.5%;
    /* 16px * 62.5% = 10px */
    width: 100%;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 1.5;
    text-align: center;
}

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

a {
    transition: 0.3s;
    cursor: pointer;
}

a:hover {
    opacity: 0.5;
}


/* header */
header {
    padding: 20px 0;
}

.header__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.header__top h1 {
    display: flex;
    font-size: 1.8rem;
    gap: 10px;
    align-items: center;
}

.header__top h1 img {
    width: 50px;
    height: 50px;
}

.header__top h1 span {
    font-size: 3rem;
    font-weight: 700;
}

.header__top p {
    position: relative;
    font-size: 1.6rem;

}

.header__top p::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: #000000;
    top: -3px;
    left: 0;
}

.header__top p::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: #000000;
    bottom: -3px;
    left: 0;
}

.nav {
    width: 100%;
    position: absolute;
    top: 108vh;
    left: 50%;
    transform: translateX(-50%);
}

.nav__logo {
    display: none;
}

.nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.nav ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav ul li::before {
    content: "";
    display: block;
    height: 40px;
    width: 2px;
    background: #c8c8c8;
}

.nav ul li:last-child::after {
    content: "";
    display: block;
    height: 40px;
    width: 2px;
    background: #c8c8c8;
}

.header__topSP {
    display: none;
}

.nav__snsSP {
    display: none;
}

@media (max-width:1023px) {
    header {
        width: 90%;
        margin: 0 auto;
        padding: 10px 0;
    }

    .header__top {
        flex-direction: column;
        gap: 5px;
    }

    .header__top h1 {
        font-size: 1.6rem;
    }

    .header__top h1 span {
        font-size: 2.4rem;
    }

    .header__top p {
        font-size: 1.4rem;
    }

    .header__nav {
        position: fixed;
        width: 100vw;
        height: 100vh;
        top: 0;
        left: -100%;
        transform: none;
        z-index: 9999;
    }

    .menu {
        width: 30px;
        height: 30px;
        cursor: pointer;
        position: fixed;
        z-index: 99999;
        top: 35px;
        right: 30px;
    }

    .menu span {
        position: absolute;
        top: 5px;
        left: 0;
        width: 100%;
        height: 2px;
        background: #222222;
        transition: 0.4s;
    }

    .menu span:nth-child(2) {
        top: 15px;
    }

    .menu span:nth-child(3) {
        top: 25px;
    }

    .active span:first-child {
        transform: rotate(45deg) translateY(6px) translateX(6px);
        background: #ffffff;
    }

    .active span:nth-child(2) {
        opacity: 0;
    }

    .active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-7px) translateX(8px);
        background: #ffffff;
    }

    .nav {
        width: 100vw;
        min-height: 100vh;
        position: fixed;
        top: 0;
        left: -100%;
        transition: 0.4s;
        z-index: 9999;
        background-image: url(images/common/bg.jpg);
        background-position: 38%, 50%;
        background-repeat: none;
        background-size: cover;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .nav__logo {
        display: flex;
        width: 180px;
        gap: 5px;
        align-items: center;
        position: relative;
        z-index: 1;
        margin: 0 auto 50px;
    }

    .nav__logo img {
        width: 40px;
        height: 40px;
        object-fit: contain;
        display: block;
    }

    .nav__logo p {
        font-size: 1.2rem;
        line-height: 1.2;
        color: #ffffff;
    }

    .nav__logo p span {
        display: block;
        font-size: 2.23rem;
        font-weight: 700;
    }

    .nav::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #222222;
        opacity: 0.8;
    }

    .nav ul li:last-child::after {
        content: none;
    }

    .nav ul {
        position: relative;
        z-index: 1;
        gap: 50px;
        flex-wrap: wrap;
        width: 300px;
        margin: 0 auto 50px;
    }

    .nav ul li {
        width: calc(100% / 2 - 25px)
    }

    .open {
        left: 0;
        transform: none;
    }

    .nav ul li a {
        color: #ffffff;
    }

    .nav ul li::before {
        content: none;
    }

    .nav__snsSP {
        position: relative;
        z-index: 1;
        display: flex;
        justify-content: center;
        gap: 40px;
    }

    .nav__snsSP a {
        width: 50px;
    }
}

@media (max-width:599px) {
    .header__top {
        display: none;
    }

    .header__topSP {
        display: flex;
        gap: 5px;
        align-items: center;
    }

    .header__topSP img {
        width: 40px;
        height: 40px;
        object-fit: contain;
        display: block;
    }

    .header__topSP h1 {
        font-size: 1.2rem;
        line-height: 1.2;
    }

    .header__topSP h1 span {
        display: block;
        font-size: 2.23rem;
        font-weight: 700;
    }

    .menu {
        top: 16px;
    }
}



/* .topSlider */

.topSlider {
    margin-bottom: 13vh !important;
}

.topSlider img {
    height: 90vh;
}

.topSlider li:nth-child(3) img {
    object-position: 30% 50%;
}

@media (max-width: 1023px) {
    .topSlider {
        margin-bottom: 30px !important;
    }
}


/* .topCampaign */

.topCampaign {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 20px;
}

.topCampaign a {
    position: relative;
    display: block;
    padding: 20px 0;
    border-radius: 100px;
    background: linear-gradient(#ffffff, #D3D3D5);
}

.topCampaign a span {
    position: absolute;
    display: block;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(to right, #ffffff, #D3D3D5);
}

.topCampaign a span::before {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(to right, #D3D3D5, #ffffff);
    z-index: 1;
}

.topCampaign a span::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 25px;
    width: 25px;
    height: 30px;
    clip-path: polygon(60% 0, 100% 50%, 60% 100%, 0% 100%, 40% 50%, 0% 0%);
    background-color: #83B314;
    z-index: 2;
}

.topCampaign a h2 {
    font-size: 5rem;
    color: #CC0000;
    font-weight: 700;
}

.topCampaign a p {
    font-size: 3rem;
}

@media (max-width: 1023px) {
    .topCampaign a h2 {
        width: 80%;
        margin: 0 auto;
        font-size: 3.6rem;
    }

    .topCampaign a p {
        width: 80%;
        margin: 0 auto;
        font-size: 2.4rem;
    }

    .topCampaign a span {
        width: 60px;
        height: 60px;
        right: 10px;
    }

    .topCampaign a span::before {
        width: 40px;
        height: 40px;
    }

    .topCampaign a span::after {
        right: 19px;
        width: 20px;
        height: 25px;
    }
}

@media (max-width: 599px) {
    .topCampaign a span {
        width: 40px;
        height: 40px;
        right: 5px;
    }

    .topCampaign a span::before {
        width: 30px;
        height: 30px;
        right: 5px;
    }

    .topCampaign a span::after {
        right: 11px;
        width: 15px;
        height: 16px;
    }

    .topCampaign a h2 {
        font-size: 2.4rem;
    }

    .topCampaign a p {
        font-size: 1.8rem;
    }
}



/* .topContact */

.topContact {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 20px;
}

.topContact a {
    position: relative;
    display: block;
    padding: 20px 0;
    background: #CC0000;
}

.topContact a span {
    position: absolute;
    display: block;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(to right, #ffffff, #D3D3D5);
}

.topContact a span::before {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(to right, #D3D3D5, #ffffff);
    z-index: 1;
}

.topContact a span::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 25px;
    width: 25px;
    height: 30px;
    clip-path: polygon(60% 0, 100% 50%, 60% 100%, 0% 100%, 40% 50%, 0% 0%);
    background-color: #CC0000;
    z-index: 2;
}

.topContact a h2 {
    font-size: 4rem;
    color: #ffffff;
    font-weight: 700;
}

.topContact a p {
    font-size: 2.4rem;
    color: #ffffff;
}

@media (max-width: 1023px) {
    .topContact a h2 {
        font-size: 2.4rem;
        width: 80%;
        margin: 0 auto;
    }

    .topContact a p {
        width: 80%;
        margin: 0 auto;
        font-size: 1.8rem;
    }

    .topContact a span {
        width: 60px;
        height: 60px;
        right: 10px;
    }

    .topContact a span::before {
        width: 40px;
        height: 40px;
    }

    .topContact a span::after {
        right: 19px;
        width: 20px;
        height: 25px;
    }
}

@media (max-width: 599px) {
    .topContact a span {
        width: 40px;
        height: 40px;
        right: 5px;
    }

    .topContact a span::before {
        width: 30px;
        height: 30px;
        right: 5px;
    }

    .topContact a span::after {
        right: 11px;
        width: 15px;
        height: 16px;
    }

    .topContact a h2 {
        font-size: 2.4rem;
    }

    .topContact a p {
        font-size: 1.8rem;
    }
}


/* topClass */
.topClass {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 20px;
    font-size: 1.6rem;
}

.topClass ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.topClass ul li {
    width: calc(100% / 4 - 15px);
}

@media (max-width: 1023px) {
    .topClass ul li {
        width: calc(100% / 2 - 20px);
    }
}

@media (max-width: 599px) {
    .topClass ul li {
        width: 100%;
    }
}


/* .topContact */

.topEvent {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 20px;
}

.topEvent a {
    position: relative;
    display: block;
    padding: 20px 0;
    background: #1F4073;
}

.topEvent a span {
    position: absolute;
    display: block;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(to right, #ffffff, #D3D3D5);
}

.topEvent a span::before {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(to right, #D3D3D5, #ffffff);
    z-index: 1;
}

.topEvent a span::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 25px;
    width: 25px;
    height: 30px;
    clip-path: polygon(60% 0, 100% 50%, 60% 100%, 0% 100%, 40% 50%, 0% 0%);
    background-color: #1F4073;
    z-index: 2;
}

.topEvent a h2 {
    font-size: 4.6rem;
    color: #ffffff;
    font-weight: 700;
}

.topEvent a p {
    font-size: 2.4rem;
    color: #ffffff;
}

@media (max-width: 1023px) {
    .topEvent a h2 {
        font-size: 2.6rem;
    }

    .topEvent a span {
        width: 60px;
        height: 60px;
        right: 10px;
    }

    .topEvent a span::before {
        width: 40px;
        height: 40px;
    }

    .topEvent a span::after {
        right: 19px;
        width: 20px;
        height: 25px;
    }
}

@media (max-width: 599px) {
    .topEvent a span {
        width: 40px;
        height: 40px;
        right: 5px;
    }

    .topEvent a span::before {
        width: 30px;
        height: 30px;
        right: 5px;
    }

    .topEvent a span::after {
        right: 11px;
        width: 15px;
        height: 16px;
    }

    .topEvent a h2 {
        font-size: 2rem;
    }
}

/* topNews */

.topNews {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 20px;
}

.topNews__title {
    padding: 20px;
    background: #595757;
    color: #ffffff;
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.topNews__title small {
    display: block;
    width: 80%;
    padding: 10px;
    border-bottom: solid 1px #ffffff;
    margin: 0 auto 10px;
    font-weight: 700;
}

.topNews ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.topNews ul li a time {
    margin-right: 10px;
}

.topNews__btn {
    display: block;
    position: relative;
    width: 300px;
    text-align: center;
    padding: 10px 0;
    border: solid 1px #222222;
    margin: 0 auto;
}

.topNews__btn::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 17.5px;
    width: 10px;
    height: 10px;
    border-bottom: solid 2px #222222;
    border-right: solid 2px #222222;
    transform: rotate(-45deg);
}

@media (max-width: 1023px) {
    .topNews__title {
        font-size: 2rem;
    }
}

@media (max-width: 599px) {
    .topNews ul {
        gap: 20px;
    }

    .topNews ul li a time {
        display: block;
    }
}


/* topPlace */

.topPlace {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 20px;
}

.topPlace ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.topPlace ul li {
    width: calc(100% / 4 - 15px);
}

.topPlace ul li a {
    position: relative;
    display: block;
    padding: 10px 0;
    background: #1F4073;
    color: #ffffff;
}

.topPlace ul li a::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 17.5px;
    width: 10px;
    height: 10px;
    border-bottom: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(-45deg);
}

@media (max-width: 1023px) {
    .topPlace ul li {
        width: calc(100% / 2 - 10px);
    }
}


/* topPhoto */

.topPhoto {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 20px;
}

.topPhoto img {
    display: block;
}

.topPhoto__top {
    margin-bottom: 20px;
}

.topPhoto div {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.topPhoto div img {
    width: calc(100% / 2 - 10px);
}

@media (max-width: 599px) {
    .topPhoto div {
        flex-direction: column;
    }

    .topPhoto div img {
        width: 100%;
    }
}


/* topRepresentative */

.topRepresentative {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 20px;
}

.topRepresentative__content {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.topRepresentative__content__humun {
    width: 300px;
    font-size: 1.6rem;
}

.topRepresentative__content__humun img {
    display: block;
    margin-bottom: 10px;
}

.topRepresentative__content__humun h3 {
    font-size: 2.4rem;
}

.topRepresentative__content__humun h3 small {
    font-size: 1.6rem;
    margin-right: 20px;
}

.topRepresentative__content__text {
    flex: 1;
    text-align: left;
    font-size: 1.6rem;
}

.topRepresentative__content__text h3 {
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
}

.topRepresentative__QR {
    display: flex;
    gap: 50px;
    justify-content: center;
}

.topRepresentative__QR li {
    width: 150px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    line-height: 1.25;
}

.topRepresentative__QR li a {
    display: block;
    width: 50px;
    height: 50px;
    margin: 0 auto;
}

@media (max-width:1023px) {
    .topRepresentative__content {
        display: block;
    }

    .topRepresentative__content__humun {
        float: left;
        margin: 0 20px 20px 0;
    }

    .topRepresentative__content__text h3 {
        margin-bottom: 20px;
        font-size: 2rem;
    }
}

@media (max-width: 599px) {
    .topRepresentative__content__humun {
        float: none;
        margin: 0 auto 20px;
    }

    .topRepresentative__QR {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }
}

/* topGrades */
.topGrades {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 20px;
}

.topGrades h2 {
    padding: 10px;
    font-size: 2.2rem;
    background: #595757;
    color: #ffffff;
    width: 90%;
    max-width: 500px;
    margin: 0 auto 20px;
}

.topGrades__list {
    display: flex;
    text-align: left;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.topGrades__list ul {
    width: calc(100% / 2 - 10px);
    font-size: 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.topGrades__photo {
    display: flex;
    gap: 20px;
}

.topGrades__photo img {
    display: block;
    width: calc(100% / 3 - 10px);
}

@media (max-width: 599px) {
    .topGrades__list {
        flex-direction: column;
    }

    .topGrades__list ul {
        width: 100%;
        gap: 20px;
    }

    .topGrades__photo {
        flex-direction: column;
    }

    .topGrades__photo img {
        width: 100%;
    }
}


/* topStart */

.topStart {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 20px;
}

.topStart h2 {
    width: 80%;
    margin: 0 auto 20px;
    font-size: 3.4rem;
    font-weight: 700;
}

.topStart__content {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.topStart__content__left {
    position: relative;
    width: calc(40% - 10px);
}

.topStart__content__left img {
    height: 100%;
}

.topStart__content__left p {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    background: rgba(255, 255, 255, 0.7);
    font-size: 1.6rem;
}

.topStart__content__left p span {
    color: #CC0000;
}

.topStart__content__right {
    position: relative;
    width: calc(60% - 10px);
}

.topStart__content__right ul {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.topStart__content__right__bottom {
    display: flex;
    gap: 20px;
}

.topStart__content__right__bottom div {
    width: calc(100% / 2 - 10px);
}

.topStart__content__right__bottom div p {
    font-size: 1.4rem;
}

.topStart__contact {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.topStart__contact a {
    display: block;
    position: relative;
    padding: 10px 0;
    background: #CC0000;
    color: #ffffff;
    width: 50%;
}

.topStart__contact a::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 17.5px;
    width: 10px;
    height: 10px;
    border-bottom: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(-45deg);
}

.topStart__link ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.topStart__link ul li {
    width: calc(100% / 4 - 15px);
}

.topStart__link ul li a {
    position: relative;
    display: block;
    padding: 10px 0;
    background: #595757;
    color: #ffffff;
}

.topStart__link ul li a::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 17.5px;
    width: 10px;
    height: 10px;
    border-bottom: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(-45deg);
}

@media (max-width: 1023px) {
    .topStart h2 {
        width: 100%;
        font-size: 2.4rem;
    }

    .topStart__content {
        display: block;
    }

    .topStart__content__left {
        width: 100%;
        margin-bottom: 20px;
    }

    .topStart__content__left img {
        aspect-ratio: 2/1;
        object-position: 50% 20%;
    }

    .topStart__content__right {
        width: 100%;
    }

    .topStart__content__right__bottom .topStart__content__left img {
        aspect-ratio: 4/3;
    }

    .topStart__link ul li {
        width: calc(100% / 2 - 10px);
    }
}

@media (max-width: 599px) {
    .topStart__content__left img {
        aspect-ratio: 4/3;
    }

    .topStart__content__right__bottom {
        flex-direction: column;
    }

    .topStart__content__right__bottom div {
        width: 100%;
    }

    .topStart__contact {
        flex-direction: column;
    }

    .topStart__contact a {
        width: 100%;
    }
}



/* topAccess */

.topAccess {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.topAccess h3 {
    width: 80%;
    font-size: 2rem;
    padding-bottom: 10px;
    border-bottom: solid 1px #595757;
    margin: 0 auto 10px;
}

.topAccess address {
    display: block;
    margin-bottom: 20px;
}

.topAccess address a {
    text-decoration: underline;
}

.topAccess__sp {
    display: none;
}

@media (max-width: 599px) {
    .topAccess__sp {
        display: block;
    }

    .topAccess address a {
        display: block;
    }
}


/* covid19 */

.covid19 {
    width: 90%;
    max-width: 1200px;
    padding: 20px 0;
    margin: 0 auto 20px;
    border: solid 1px #595757;
}

.covid19 h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.covid19 ul {
    width: 90%;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.covid19 ul li {
    width: calc(100% / 3 - 15px);
    padding: 10px 0;
    background: #595757;
    color: #ffffff;
}

@media (max-width: 1023px) {
    .covid19 ul li {
        width: calc(100% / 2 - 10px);
    }

    .covid19 h2 {
        font-size: 2.2rem;
        width: 90%;
        margin: 0 auto 20px;
    }

    .covid19 ul li {
        width: 100%;
    }
}



/* footer */

footer {
    background: #222222;
    color: #ffffff;
    padding: 50px 0;
}

.footerAria {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footerAria__logo {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footerAria__logo img {
    width: 80px;
    height: 80px;
}

.footerAria__logo h2 {
    font-size: 1.8rem;
    line-height: 1.2;
}

.footerAria__logo h2 strong {
    display: block;
    font-size: 3.34rem;
}

.footerAria nav {
    display: flex;
    text-align: left;
    gap: 150px;
    font-size: 1.8rem;
}

.footerAria nav ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footerSns {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    align-items: baseline;
    display: flex;
    justify-content: flex-end;
    gap: 40px;
}

.footerSns img {
    aspect-ratio: 1/1;
    width: 40px;
    object-fit: contain;
}

.footerSP {
    display: none;
}

@media (max-width: 1023px) {
    .footerAria nav {
        gap: 30px;
    }
}

@media (max-width: 599px) {
    .footerAria {
        flex-direction: column;
        gap: 40px;
    }

    .footerAria nav {
        gap: 100px;
    }

    .footerPC {
        display: none;
    }

    .footerSP {
        display: block;
        font-size: 1.6rem;
    }

    .footerSns {
        justify-content: center;
        margin-bottom: 40px;
    }
}

.pagination {
    background: #CC0000;
    padding: 10px 0;
    margin-bottom: 100px;
}

.pagination__list {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.pagination__list li {
    display: inline-block;
    margin-right: 30px;
    position: relative;
}

.pagination__list li:last-child {
    margin-right: 0;
}

.pagination__list li::after {
    width: 2px;
    height: 80%;
    position: absolute;
    content: "";
    right: -20px;
    top: 10%;
    background: #ffffff;
    transform: rotate(15deg);
}

.pagination__list li:last-child:after {
    content: none;
}

.pagination__list li img {
    width: 18px;
    margin-right: 10px;
    vertical-align: baseline;
}

.pagination__list li a {
    color: #ffffff;
}

@media(max-width: 1023px) {
    .pagination {
        margin-bottom: 40px;
        font-size: 1.6rem;
    }

    .pagination__list li {
        margin-right: 22px;
    }
}


.member__contents {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.member__contents h2 {
    font-size: 5rem;
    color: #CC0000;
    font-weight: 700;
}

.member__contents strong {
    display: block;
    margin-bottom: 20px;
}

.member__contents ul {
    margin-bottom: 20px;
}

.member__contents p {
    margin: 20px 0;
    text-align: left;
}

@media (max-width: 1023px) {
    .member__contents h2 {
        font-size: 3.6rem;
    }
}

@media (max-width: 599px) {
    .member__contents h2 {
        font-size: 2.4rem;
    }
}

.contact {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 20px;
}

.contact h2 {
    display: inline-block;
    font-size: 3.4rem;
    font-weight: 700;
    padding-bottom: 5px;
    border-bottom: solid 1px #222222;
    margin-bottom: 10px;
}

@media (max-width: 1023px) {
    .contact h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 599px) {
    .contact h2 {
        font-size: 2.4rem;
    }
}

.location {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 20px;
}

.map {
    display: block;
    width: 100%;
    aspect-ratio: 2/1;
    margin-bottom: 20px;
}

.location ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.location ul li {
    width: calc(100% / 4 - 15px);
    border: solid 1px #222222;
    padding: 10px 0;
}

.location ul li div {
    width: 95%;
    margin: 0 auto;
    font-size: 1.6rem;
    text-align: left;
}

.location ul li div a {
    display: block;
}

.location ul li div h3 {
    position: relative;
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 700;
}

.location ul li div h3::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 10px;
    width: 10px;
    height: 10px;
    border-bottom: solid 2px #222222;
    border-right: solid 2px #222222;
    transform: rotate(-45deg);
}

.location ul li div img {
    display: block;
    margin-bottom: 10px;
    aspect-ratio: 16/9;
}

.location ul li div address {
    height: 50px;
}

.location ul li div small {
    font-size: 1.4rem;
}

.location .tel {
    text-decoration: underline;
}

@media (max-width: 1280px) {
    .location ul li {
        width: calc(100% / 3 - 13.35px);
    }
}

@media (max-width: 1023px) {
    .location ul li {
        width: calc(100% / 2 - 10px);
    }

    .map {
        aspect-ratio: 16/9;
    }
}

@media (max-width: 599px) {
    .location ul li {
        width: 100%;
    }

    .map {
        aspect-ratio: 4/3;
    }
}

.mapContent {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 20px;
}

.mapContent h2 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.mapContent p {
    font-size: 2rem;
}

.mapContent__bottom {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.mapContent__bottom img {
    display: block;
    width: 30%;
    aspect-ratio: 4/3;
}

.mapContent__bottom__content {
    flex: 1;
}

.mapContent__bottom__content h3 {
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}

.mapContent__bottom__content h3 small {
    font-size: 60%;
    font-weight: 500;
    display: block;
}

.mapContent__bottom__content a {
    display: block;
    font-size: 2.4rem;
    text-decoration: underline;
}

@media (max-width: 1023px) {
    .mapContent h2 {
        font-size: 3.8rem;
    }

    .mapContent__bottom__content h3 {
        font-size: 3.6rem;
    }

    .mapContent__bottom img {
        aspect-ratio: 3/4;
    }
}

@media (max-width: 599px) {
    .mapContent__bottom img {
        display: none;
    }

    .mapContent p {
        font-size: 1.6rem;
    }
}

.mapPhoto {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 20px;
}

.mapPhoto p {
    width: 90%;
    margin: 0 auto;
    font-size: 2rem;
    text-align: left;
}

.mapPhoto__list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.mapPhoto img {
    display: block;
    object-position: center;
}

.mapPhoto img:nth-child(1) {
    width: 100%;
    aspect-ratio: 16/9;
}

.mapPhoto img:nth-child(2),
.mapPhoto img:nth-child(3),
.mapPhoto img:nth-child(4),
.mapPhoto img:nth-child(5) {
    width: calc(100% / 4 - 15px);
}

.mapPhoto img:nth-child(6),
.mapPhoto img:nth-child(7),
.mapPhoto img:nth-child(8) {
    width: calc(100% / 3 - 13.9px);
}

@media (max-width: 1023px) {

    .mapPhoto img:nth-child(2),
    .mapPhoto img:nth-child(3),
    .mapPhoto img:nth-child(4),
    .mapPhoto img:nth-child(5) {
        width: calc(100% / 2 - 10px);
    }
}

@media (max-width: 599px) {

    .mapPhoto img:nth-child(3),
    .mapPhoto img:nth-child(6) {
        width: 100%;
    }

    .mapPhoto img:nth-child(1),
    .mapPhoto img:nth-child(2),
    .mapPhoto img:nth-child(4),
    .mapPhoto img:nth-child(5),
    .mapPhoto img:nth-child(7),
    .mapPhoto img:nth-child(8) {
        width: calc(100% / 2 - 10px);
    }
}


.mapSchedule {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 20px;
}

.mapSchedule h2 {
    text-align: left;
    font-size: 3.2rem;
}

.mapSchedule__content {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.mapSchedule__content .table {
    object-fit: contain;
    width: 50%;
}

.mapSchedule__content__text__name {
    width: 50%;
    display: flex;
    gap: 20px;
}

.mapSchedule__content__text__name__photo {
    width: 40%;
}

.mapSchedule__bottomTitle {
    font-size: 3.2rem;
    text-align: left;
}

.mapSchedule__bottomText {
    text-align: left;
}

.mapSchedule__content__text__name__content {
    flex: 1;
}

.mapSchedule__content__text__name__content h3 {
    font-size: 2rem;
    width: 90%;
    padding-bottom: 5px;
    border-bottom: solid 1px #222222;
    margin: 0 auto 5px;
}

.mapSchedule__content__text__name__content p {
    width: 90%;
    margin: 0 auto 10px;
    font-size: 1.4rem;
}

.mapSchedule__content__text__name__content h4 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.mapSchedule__content__text__name__content h4 small {
    margin-left: 10px;
    font-size: 50%;
}

.mapSchedule__content__text__name__content img {
    width: 50px;
    height: 50px;
}

.mapSchedule__content__text__name__content__qr p {
    font-size: 1.6rem;
    margin: 0;
    width: 100%;
    margin-bottom: 10px;
}

.mapSchedule__content__text__name__content__qr {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.mapSchedule__content__text__name__content__qr div {
    width: 125px;
}

@media (max-width: 1023px) {
    .mapSchedule h2 {
        font-size: 2.8rem;
    }

    .mapSchedule__bottomTitle {
        font-size: 2.8rem;
        margin-bottom: 10px;
    }

    .mapPhoto p {
        width: 100%;
        font-size: 1.6rem;
    }

    .mapSchedule__content {
        flex-direction: column;
    }

    .mapSchedule__content .table {
        width: 100%;
    }

    .mapSchedule__content__text__name {
        width: 100%;
        align-items: center;
        margin-bottom: 20px;
    }
}

@media (max-width: 599px) {
    .mapSchedule h2 {
        font-size: 2.2rem;
    }

    .mapSchedule__bottomTitle {
        font-size: 2.2rem;
    }

    .mapSchedule__content__text__name {
        flex-direction: column;
        gap: 20px;
    }

    .mapSchedule__content__text__name__photo {
        width: 200px;
        aspect-ratio: 3/4;
    }

    .mapSchedule__content__text__name__content {
        width: 100%;
    }
}

.info__top {
    max-height: 80vh;
    margin-bottom: 20px;
}

.info__representativ {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 20px;
    display: flex;
    gap: 20px;
    justify-content: center;
    text-align: left;
}

.info__representativ img {
    width: 20%;
    min-width: 200px;
}

.info__representativ .info__representativ__content {
    flex: 1;
}

.info__representativ .info__representativ__content div {
    padding-bottom: 10px;
    border-bottom: solid 1px #222222;
    margin-bottom: 10px;
    font-size: 2rem;
}

.info__representativ div span {
    margin: 0 20px;
}

.info__representativ div strong {
    font-size: 2.8rem;
}



.infoClass {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.infoClass h2 {
    font-size: 5rem;
    font-weight: 700;
    padding-bottom: 5px;
    border-bottom: solid 1px #222222;
    margin-bottom: 5px;
}

.infoClass strong {
    display: block;
    font-size: 3rem;
    margin-bottom: 10px;
}

.infoClass p {
    text-align: left;
    margin-bottom: 20px;
}

.infoPhoto {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.infoPhoto li {
    width: calc(100% / 2 - 10px);
}

.infoPhoto li:nth-child(3),
.infoPhoto li:nth-child(4),
.infoPhoto li:nth-child(5),
.infoPhoto li:nth-child(6) {
    width: calc(100% / 4 - 15px);
}

.infoPhoto li:nth-child(3) img,
.infoPhoto li:nth-child(4) img,
.infoPhoto li:nth-child(5) img,
.infoPhoto li:nth-child(6) img {
    aspect-ratio: 4/3;
}

.infoPhoto li ul li {
    width: calc(100% / 2 - 10px) !important;
}

.infoPhoto li ul li img {
    aspect-ratio: 1/1 !important;
}

.infoPhoto img {
    aspect-ratio: 1/1;
}

.infoPhoto li ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.info__button {
    display: block;
    position: relative;
    width: 300px;
    text-align: center;
    padding: 10px 0;
    border: solid 1px #CC0000;
    background: #CC0000;
    color: #ffffff;
    margin: 0 auto;
}

.info__button::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 17.5px;
    width: 10px;
    height: 10px;
    border-bottom: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(-45deg);
}

.infoClass__bottomImage {
    margin-bottom: 40px;
    display: block;
}

.infoSP {
    display: none;
}

@media (max-width: 1023px) {
    .infoClass h2 {
        font-size: 3.6rem;
    }

    .infoClass strong {
        font-size: 2.6rem;
    }

    .info__representativ {
        display: block;
    }

    .info__representativ img {
        width: 300px;
        float: left;
        margin: 0 20px 20px 0;
    }

    .infoSP {
        display: block;
    }

    .info__representativ div span {
        margin-left: 0;
    }
}

@media (max-width: 599px) {
    .infoClass h2 {
        font-size: 2.4rem;
    }

    .infoClass strong {
        font-size: 2.2rem;
    }

    .info__representativ img {
        width: 90%;
        max-width: 300px;
        float: none;
        margin: 0 auto 20px;
        display: block;
    }

    .infoPhoto li {
        width: 100%;
    }

    .infoPhoto img {
        aspect-ratio: 4/3;
    }

    .infoPhoto li ul li img {
        aspect-ratio: 4/3 !important;
    }

    .infoPhoto li:nth-child(3),
    .infoPhoto li:nth-child(4),
    .infoPhoto li:nth-child(5),
    .infoPhoto li:nth-child(6) {
        width: calc(100% / 2 - 10px);
    }
}

.player {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    border: solid 1px #222222;
    margin-bottom: 20px;
}

.player__content {
    padding: 20px;
}

.player__content h2 strong {
    display: inline-block;
    font-size: 3rem;
    margin: 0 20px;
}

.player__content h2 strong small {
    font-size: 2rem;
    margin-right: 20px;
}

.player__content h2 span {
    display: inline-block;
}

.player__content h3 {
    font-size: 4.2rem;
    margin-bottom: 20px;
}

.player__content__text {
    text-align: left;
    margin-bottom: 20px;
}

.player__content__human {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.player__content__human__photo {
    width: calc(100% / 2 - 10px);
}

.player__content__human__text {
    width: calc(100% / 2 - 10px);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.player__content__qr {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.player__content__qr div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.player__content__qr p {
    font-size: 1.4rem;
}

.player__content__qr img {
    width: 100px;
}

.player__content__photo {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.player__content__photo img {
    display: block;
    width: calc(100% / 4 - 15px);
    object-fit: contain;
}

@media (max-width: 1023px) {
    .player__content h3 {
        font-size: 3.6rem;
    }

    .player__content__photo img {
        width: calc(100% / 2 - 20px);
    }
}

@media (max-width: 599px) {
    .player {
        width: 95%;
    }

    .player__content {
        padding: 2.5%;
    }

    .player__content h3 {
        font-size: 2.8rem;
    }

    .player__content__human {
        flex-direction: column;
    }

    .player__content__photo img {
        width: 100%;
    }

    .player__content__human__photo {
        width: 100%;
        max-width: 300px;
        margin: 0 auto 20px;
    }

    .player__content__human__text {
        width: 100%;
        align-items: center;
    }
}

.voise {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 20px;
}

.voise p {
    margin-bottom: 50px;
}

.voise ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.voise ul li {
    width: calc(100% / 3 - 15px);
}

.voise ul li img {
    height: auto;
    aspect-ratio: 1/1;
}

.voise ul li span {
    display: block;
    font-size: 1.4rem;
    line-height: 1.2;
    margin-top: 5px;
}

.voise ul li h2 {
    font-size: 2.8rem;
    font-weight: 700;
}

@media (max-width: 1023px) {
    .voise ul li {
        width: calc(100% / 2 - 10px);
    }
}

@media (max-width: 599px) {
    .voise ul li {
        width: 100%;
    }
}

.voiseMenber {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.voiseMenber span {
    font-size: 2rem;
    display: block;
}

.voiseMenber h2 {
    font-size: 3.4rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.voiseMenber__content {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.voiseMenber__content:nth-of-type(1) {
    align-items: flex-end;
}

.voiseMenber__content div,
.voiseMenber__content__image {
    width: calc(100% / 2 - 10px);
    height: auto;
    aspect-ratio: 1/1;
}

.voiseMenber__content div h3 {
    font-size: 2.4rem;
    padding: 5px;
    border-bottom: solid 1px #222222;
    margin-bottom: 5px;
}

.voiseMenber__content div p {
    width: 80%;
    margin: 0 auto 20px;
}

.voiseMenber__content div img {
    width: calc(100% / 2 - 10px);
    margin-right: 20px;
    float: left;
}

.voiseMenber__content div img:nth-of-type(2) {
    margin-right: 0;
}

@media (max-width: 1023px) {
    .voiseMenber__content:nth-of-type(1) {
        align-items: center;
    }
}

@media (max-width: 599px) {
    .voiseMenber__content {
        flex-direction: column;
    }

    .voiseMenber__content div,
    .voiseMenber__content__image {
        width: 100%;
    }

    .voiseMenber__content div p {
        width: 100%;
    }
}

.priceTop {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 20px;
}

.priceTop .priceTop__top {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    margin-bottom: 20px;
}

.priceTop .priceTop__top img,
.priceTop .priceTop__top div {
    width: calc(100% / 2 - 10px);
    object-fit: contain;
}

.priceTop .priceTop__top h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.priceTop .priceTop__top p {
    font-size: 1.6rem;
}

.priceTop .priceTop__bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.priceTop .priceTop__bottom img {
    display: block;
    width: calc(100% / 4 - 15px);
}

@media (max-width: 1023px) {
    .priceTop .priceTop__top {
        flex-direction: column;
    }

    .priceTop .priceTop__top img,
    .priceTop .priceTop__top div {
        width: 100%;
    }

    .priceTop .priceTop__bottom img {
        width: calc(100% / 2 - 10px);
    }
}

.priceFree {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 20px;
}

.priceFree h2 {
    padding: 5px;
    border-bottom: solid 1px #222222;
    margin-bottom: 20px;
    text-align: left;
    font-size: 3.2rem;
    font-weight: 700;
}

.priceFree h2 span {
    font-size: 1.4rem;
    font-weight: 500;
    display: inline-block;
}

.table {
    overflow-x: scroll;
    margin-bottom: 20px;
}

.table table {
    width: 100%;
    table-layout: fixed;
    overflow-x: scroll;
    white-space: nowrap;
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
    border: 1px solid black;
}

.table td,
.table th {
    border: solid 1px #222222;
    vertical-align: middle;
    padding: 10px 0;
}

.table th {
    text-align: center;
}

.table table thead th {
    position: sticky;
    width: 170px;
    padding: 10px 5px;
    top: 0;
    z-index: 1;
    background: #D3D3D5;
}

.table table thead th:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
}

.table table tbody th {
    position: sticky;
    left: 0;
    background: #ffffff;
    z-index: 1;
}

.table__span {
    font-size: 80%;
}

.priceFree__sub {
    text-align: right;
    font-size: 1.6rem;
    margin: 5px 0 40px;
}

.priceFree__text {
    text-align: left;
    font-size: 1.6rem;
}

.priceYear {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 20px;
}

.priceYear span {
    display: block;
    font-size: 1.4rem;
}

.priceFree h3 {
    text-align: left;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.table__sp {
    display: none;
}

.tablesp table thead th:first-child {
    width: auto !important;
}

.tablesp table thead th {
    width: auto !important;
}

.table__head {
    background: #222222 !important;
    color: #ffffff !important;
}

.document tbody td,
.document tbody th {
    background: #FFFCE4;
}

.priceBottom {
    display: block;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 20px;
    aspect-ratio: 2/1;
}

@media (max-width: 599px) {
    .table {
        font-size: 1.4rem;
    }

    .table table thead th:first-child {
        width: 135px;
    }

    .priceFree__text,
    .priceFree__sub {
        font-size: 1.4rem;
    }

    .table__sp {
        display: block;
    }
}

.single__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.single__content img {
    display: block;
    object-fit: contain;
    height: auto;
    margin-bottom: 20px;
}

.single__content p {
    text-align: left;
}

.single__content ul {
    display: flex;
    flex-wrap: wrap;
    padding-top: 20px;
    gap: 20px;
}

.single__content ul li {
    width: 100%;
}

.single__content ul li img {
    aspect-ratio: 4/3;
}

.single__content table {
    width: 100%;
}

.single__page {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.single__page {
    margin-top: 40px;
}

.wp-pagenavi {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.wp-pagenavi .page {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: solid 1px #222222;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wp-pagenavi .current {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: solid 1px #222222;
    background: #222222;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* コンタクトフォーム７ */
.wpcf7 {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto 0;
}

.cf7 input,
.cf7 textarea {
    width: 100%;
    max-width: 500px;
    padding: 5px 0;
    border: solid 1px #595757;
}

.cf7 dt i {
    margin-right: 10px;
}

.cf7 dd {
    margin-bottom: 20px;
}

.cf7 .rqd {
    color: #CC0000;
    font-size: .8em;
    margin-left: .5em;
}

.btn_cf7 {
    text-align: center;
}

.btn_cf7 input {
    padding: 5px 0;
    width: 90%;
    max-width: 300px;
    border: solid 1px #595757;
    transition: 0.4s;
}

.btn_cf7 input:hover {
    background: #595757;
    color: #ffffff;
}

.wpcf7-not-valid-tip,
.wpcf7-response-output {
    display: block;
    color: #CC0000;
}

.screen-reader-response {
    display: none;
}

.wpcf7-radio {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 5px 0;
    max-width: 500px;
    margin: 0 auto;

}

.wpcf7-list-item label {
    display: flex;
    gap: 5px;
    align-items: center;
}

.wpcf7-list-item label input {
    width: auto;
}

.wpcf7-checkbox {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 5px 0;
    max-width: 500px;
    margin: 0 auto;

}

@media screen and (min-width: 768px) {
    .cf7 dt {
        float: left;
        clear: left;
        width: 35%;
        padding: 5px 0;
    }

    .cf7 dd {
        margin-left: 35%;
    }

    .cf7 .rqd {
        float: right;
        margin-left: 0;
        margin-top: .2em;
    }
}

.report {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.report li {
    position: relative;
}

.report li img {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
}

.report li a {
    position: relative;
    background: #222222;
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.report li a::after {
    content: "";
    width: 99%;
    height: 85%;
    display: block;
    position: absolute;
    border: solid 1px #ffffff;
    z-index: 1;
    background: transparent;
}

.report li a div {
    width: calc(100% - 100px);
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
}

.report li a div h3 {
    text-align: left;
    font-size: 2.8rem;
    width: calc(100% - 310px);
    font-weight: 700;
    color: #F4D700;
}

.report li a div p {
    width: 250px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    font-size: 1.8rem;
    color: #F4D700;
}

.report li a div p small {
    display: block;
}

.report li a span {
    right: 15px;
    width: 20px;
    height: 25px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    clip-path: polygon(60% 0, 100% 50%, 60% 100%, 0% 100%, 40% 50%, 0% 0%);
    background: #F4D700;
    border-radius: 0;
}

.report li a span::before {
    content: none;
}

.report li a span::after {
    content: none;
}

.link .topNews__title {
    margin-bottom: 0;
}

.link ul {
    gap: 0;
    text-align: left;
}

.link ul li {
    padding: 15px 10px 15px 10px;
    border: solid 1px #c8c8c8;
}

.link ul li:nth-child(2) {
    border-bottom: none;
}

.link ul li:nth-child(3) {
    border-top: none;
}

.link ul li a {
    position: relative;
    font-size: 2rem;
}

.link ul li a h3 {
    display: inline-block;
}

.single__content table {
    width: 100%;
}

.single__content table tr {
    margin-bottom: 10px;
}

@media (max-width: 1023px) {
    .report li a div h3 {
        text-align: center;
        font-size: 2.4rem;
        width: auto;
    }

    .report li a div {
        display: block;
    }

    .report li a div p {
        width: auto;
        justify-content: center;
    }
}

@media (max-width: 599px) {
    .report li a div h3 {
        font-size: 1.8rem;
    }

    .report li a div p {
        font-size: 1.4rem;
        gap: 10px;
        flex-wrap: wrap;
    }

    .link ul li a {
        font-size: 1.8rem;
    }

    .link ul li a h3 {
        flex: 1;
    }

    .report li img {
        left: 10px;
    }

    .report li a::after {
        width: 97%;
    }
}

.communication ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 50px;
    margin-bottom: 50px;
    gap: 30px;
}

.communication ul li {
    width: calc(100% / 3 - 20px);
    padding: 0;
    border: none;
}

.communication ul li a {
    display: block;
    border: solid 1px #c8c8c8;
}

.communication ul li a img {
    display: block;
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    margin-bottom: 5px;
    height: 100%;
}

.communication ul li a time {
    font-size: 1.2rem;
    display: block;
    text-align: right;
    margin-bottom: 10px;
}

.communication ul li a h3 {
    font-size: 1.6rem;
    font-weight: 700;
    text-align: left;
    display: block;
    width: 95%;
    margin: 0 auto 10px;
}

@media (max-width: 1023px) {
    .communication ul li {
        width: calc(100% / 2 - 20px);
    }
}

@media (max-width: 599px) {
    .communication ul li {
        width: 100%;
    }
}

.mapContent__bottom video {
    display: block;
    width: 30%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.nishidai__video {
    display: none;
}

.tbsp {
    display: none;
}

@media (max-width: 1023px) {
    .mapContent__bottom video {
        display: block;
        width: 30%;
        aspect-ratio: 3/4;
        object-fit: cover;
    }

    .tbsp {
        display: block;
    }
}

@media (max-width: 599px) {
    .mapContent__bottom video {
        display: none;
    }

    .nishidai__video {
        display: block;
    }

    .nishidai__video video {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        aspect-ratio: 4/3;
    }
}

.wp-pagenavi {
    margin-bottom: 20px;
}

.ekoda__line {
    margin: 10px auto 0;
    width: 150px !important;
    object-fit: contain;
    display: block !important;
}

.table__textSmall {
    font-size: 1.2rem;
}

@media (max-width: 599px) {
    .table__textSmall {
        font-size: 1rem;
    }
}

.font-big {
    font-size: 1.8rem;
}

@media (max-width: 599px) {
    .font-big {
        font-size: 1.6rem;
    }
}

.line-height12 {
    line-height: 1.2;
}