@charset "utf-8";

/* 共通 */
h2 {
    font-size: 48px;
    color: #262626;
    font-weight: bold;
    text-align: center;
}

a:hover {
    opacity: .8;
}

/* header */
header {
    background-color: #7CB9D8;
}

header .container {
    padding: 50px 120px;
}

.header-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 30px;
}

.logo-box {
    padding-bottom: 10px;
}

.logo-box img {
    width: 605px;
    height: auto;
}

.logo-box p {
    width: 100%;
    display: block;
}

.access-box {
    text-align: left;
}

.sns-mail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 465px;
    margin-bottom: 35px;
}

.sns-box {
    display: flex;
    gap: 20px;
}

.sns-box img {
    width: 50px;
    height: auto;
}

.mail-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px 15px 35px;
    gap: 14px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 4px 4px #707070;
}

.mail-box img {
    width: 40px;
    height: auto;
}

.phone-btn {
    padding-left: 15px;
}

.phone-btn img {
    width: 260px;
    height: auto;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu a:hover {
    color: #1EDEFE;
}

/* ハンバーガー */
header .container {
    position: relative;
}

.modal-button  {
    position: absolute;
    display: inline-block;
    padding: 0;
    background-color: #ffffff;
    top: 30px;
    right: 20px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    z-index: 9999;
    width: 50px;
    height: 50px;
    border-radius: 50px;
}

.open-btn-area {
    width: 50px;
    height: 50px;
    background-color: transparent;
    position: relative;
}

.open-btn-area span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 2px;
    margin-inline: auto;
    border-radius: 2px;
    background: #000;
}

.open-btn-area span:nth-of-type(1) {
    top: 15px;
}

.open-btn-area span:nth-of-type(2) {
    top: 24px;
}

.open-btn-area span:nth-of-type(3) {
    top: 33px;
}

.modal-button:hover {
    background-color: #000000;
}

.open-btn-area:hover span {
    background: #fff;
}

@media (max-width: 1400px) {
    header .container {
        padding: 30px 20px;
    }
    .header-top {
        justify-content: center;
        margin-bottom: 0;
    }
    .logo-box {
        padding-bottom: 0;
    }
    .menu {
        flex-direction: column;
        gap: 27px;
    }
    .sns-mail {
        flex-direction: column;
        justify-content: center;
        width: 100%;
    }
    .mail-box {
        margin-top: 24px;
    }
    .g-nav{
        position:fixed;
        top:0;
        right: -120%;
        width:100%;
        height: 100vh;
        background-color: #7CB9D8;
        transition: all 0.2s;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content:flex-start;
        padding: 40px 20px 10px 20px;
        opacity: 0;
        transition: all 0.3s ease;
        visibility: hidden;
        z-index: 10;
        overflow-y: scroll;
    }
    .g-nav.panelactive {
        right: 0;
        visibility: visible;
        opacity: 1;
    }
    .active .open-btn-area span:nth-of-type(1) {
        transform: rotate(-225deg) translateX(16px) translateY(3px);
    }
    .active .open-btn-area span:nth-of-type(2) {
        transform: translateX(-100%) scaleX(0);
    }
    .active .open-btn-area span:nth-of-type(3) {
            transform: rotate(225deg) translateX(15px) translateY(-3px);
    }
    .sns-box {
        margin-top: 25px;
    }
    .club-text {
        margin-bottom: 28px;
        font-size: 15px;
    }
    .phone-btn img {
        margin-top: 25px;
    }
    .g-nav-img {
        max-width: 500px;
    }
}

@media(max-width:740px) {
    header .container {
        padding: 32px 20px 20px 20px;
    }
    .logo-box img {
        width: 100%;
        height: auto;
        max-width: 500px;
    }
    .sns-mail {
        flex-direction: column;
        width: auto;
        margin-bottom: 0;
    }
    .sns-box img {
        width: 46px;
        height: auto;
    }
    .modal-button  {
        top: 10px;
        right: 20px;
        width: 35px;
        height: 35px;
    }
    .club-text {
        font-size: 12px;
    }
    .open-btn-area {
        width: 35px;
        height: 35px;
    }
    .open-btn-area span {
        width: 15px;
    }
    .open-btn-area span:nth-of-type(1) {
        top: 12px;
    }
    .open-btn-area span:nth-of-type(2) {
        top: 17px;
    }
    .open-btn-area span:nth-of-type(3) {
        top: 22px;
    }
    .open-btn-area span {
        left: 49%;
    }
    .active .open-btn-area span:nth-of-type(1) {
        transform: rotate(-225deg) translateX(8.5px) translateY(2px);
    }
    .active .open-btn-area span:nth-of-type(3) {
        transform: rotate(225deg) translateX(9px) translateY(-1px);
    }
}

/* kv */
.kv-slider {
    height: auto;
    margin-inline: auto;
    overflow: hidden; /* 画像がはみ出ないようにする */
    width: 100%;
}
  .kv-slick-img img {
    width: 100%;
    aspect-ratio: 1.636;
}
  @keyframes zoomUp {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(1.15); /* 拡大率 */
    }
}
  .add-animation {
    animation: zoomUp 10s linear 0s normal both;
}

.kv .container {
    position: relative;
}
.orange-btn {
    display: inline-block;
    position: absolute;
    right: 15px;
    bottom: 50px;
}
.to-contact {
    background-color: #D84200;
    border-radius: 53px;
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 60px;
    padding: 14px 60px 18px 70px;
    box-shadow: 4px 4px #707070;
}
.to-contact p {
    font-size: 20px;
    text-align: left;
    color: #fff;
}
.to-contact img {
    width: 8px;
    height: 16px;
}
.orange-btn:hover .to-contact {
    background-color:  #7CB9D8;
    border: 2px #262626 solid;
}

@media(max-width:740px) {
    .orange-btn {
        right: 6px;
        bottom: 6px;
    }
    .to-contact {
        gap: 14px;
        padding: 6px 16px 9px 20px;
    }
    .to-contact p {
        font-size: 10px;
    }
    .to-contact img {
        width: 4px;
        height: 8px;
    }
}

/* news */
.news .container {
    padding: 230px 20px 0 20px;
    max-width: 1000px;
}
.news .title-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.news h2 {
    color: #1EDEFE;
    opacity: .6;
    font-size: 110px;
    margin-bottom: 45px;
}
.news-box {
    display: flex;
    align-items: center;
    justify-content: left;
    width: 100%;
    margin: 0 auto 15px auto;
    gap: 15px;
    border-bottom: #262626 1px solid;
    padding-bottom: 9px;
}
.news .direction img {
    border: #000 solid 1px;
}
.news-date {
    font-size: 18px;
}
.news-cat {
    font-size: 10px;
    padding: 5px 13px 4px 14px;
}
.news-block:nth-of-type(odd) .news-cat {
    background-color: #EBEF8B;
}
.news-block:nth-of-type(even) .news-cat {
    background-color: #FA8D5C;
}
.single .news-cat {
    background-color: #EBEF8B;
}
.news-title {
    font-size: 18px;
}
.news-box:hover {
    border-color:#1EDEFE;
}
.news-box:hover .news-date,
.news-box:hover .news-title {
    color: #1EDEFE;
}
.news-flex {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 18px;
}

@media(max-width:740px) {
    .news .container {
        padding: 80px 20px 0 20px;
    }
    .direction p {
        font-size: 14px !important;
    }
    .news h2 {
        font-size: 64px;
        margin-bottom: 40px;
    }
    .direction img {
        width: 40px !important;
        padding: 15px 13px 13px 13px !important;
    }
    .news-box {
        flex-direction: column;
        align-items: flex-start;
    }
    .news-flex {
        gap: 10px;
    }
}

/* About */
.about .container {
    padding: 240px 20px 130px 20px;
}

.about h2 {
    position: relative;
    font-size: 45px;
}

.about h2::before {
    position: absolute;
    content: "About";
    font-size: clamp(190px,20.3vw,240px);
    bottom: -0.25em;
    left: 50%;
    transform: translateX(-50%);
    opacity: .6;
    color: #1EDEFE;
    font-weight: bold;
    z-index: -1;
}

.about p {
    font-size: 18px;
    color: #262626;
    text-align: left;
    max-width: 898px;
    margin: 0 auto;
    line-height: 1.8em;
    padding: 82px 0 82px 0;
}

.bold {
    font-weight: bold;
    font-size: 24px;
}

.red {
    color: #FA8D5C;
}

.movie {
    width: 100%;
    height: auto;
    max-width: 900px;
    margin: 0 auto;
}

.movie video {
    width: 100%;
}

@media(max-width:740px) {
    .about .container {
        padding: 130px 18px 95px 18px;
    }
    .about h2 {
        font-size: 20px;
    }
    .about h2::before {
        font-size: 82px;
    }
    .about p {
        font-size: 14px;
        padding: 65px 0 65px 0;
    }
    .bold {
        font-size: 18px;
    }
    .movie img {
        min-height: 171px;
    }
}

/* Wanted */
.wanted {
    background-color: #262626;
}
.wanted .container {
    padding-top: 210px;
    padding-bottom: 130px;
    overflow: hidden;
}
.wanted img {
    width: 900px;
    height: auto;
    padding-bottom: 67px;
}
h1 {
    display: block;
    font-size: 64px;
    color: #ffff;
    padding-bottom: 56px;
    position: relative;
    z-index: 1;
}
h1::before {
    position: absolute;
    content: "Wanted";
    font-size: clamp(190px,20.3vw,240px);
    bottom: -10px;
    right: -1vw;
    color: #1EDEFE;
    opacity: .8;
    font-weight: bold;
    z-index: -1;
}
.wanted h3 {
    color: #ffff;
    font-size: 24px;
}
.wanted p {
    color: #ffff;
    font-size: 16px;
    text-align: left;
    width: 300px;
    margin: 0 auto;
}
.junior {
    background-color: #23BCD6;
    border-radius: 50%;
    width: 417px;
    height: 417px;
    margin: 0 auto;
    position: relative;
}
.junior-texts {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
}
.junior h3 {
    color: yellow;
    padding-bottom: 15px;
    margin-bottom: 0;
}
.wanted .smalltext {
    font-size: 14px;
}
.wanted .apply {
    font-size: 34px;
    margin-top: 50px;
    position: relative;
    margin-bottom: 46px;
    padding-bottom: 10px;
    width: 800px;
}
.apply::after {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    content: " ";
    width: 800px;
    height: 2px;
    border-top: 2px solid #1EDEFE;
}
.wanted .contact-text {
    font-size: 18px;
    padding-bottom: 56px;
    width: 800px;
}
.direction {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}
.direction-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.direction p {
    font-size: 18px;
}
.direction img {
    width: 50px;
    height: auto;
    background-color: #fff;
    padding: 17px 13px 15px 13px;
    border-radius: 100px;
    transition: all 0.5s;
}
.direction:hover img {
    padding: 17px 5px 15px 21px;
}
.direction:hover p {
    color: #23BCD6;
}
.wanted .grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2つの列を均等に分ける */
    grid-gap: 30px; /* 列と行の間に10pxの間隔を設定 */
    max-width: 900px;
    margin: 0 auto;
}

@media(max-width:1000px) {
    .wanted .grid {
        grid-template-columns: inherit;
    }
}

@media(max-width:740px) {
    h1 {
        font-size: 25px;
        padding-bottom: 50px;
    }
    h1::before {
        font-size: 82px;
        bottom: 24px;
        right: -1vw;
    }
    .wanted .container {
        padding: 120px 20px 75px 20px;
    }
    .wanted img {
        width: 100%;
        margin: 0 auto;
        height: auto;
        padding-bottom: 60px;
        max-width: 450px;
    }
    .junior {
        width: 320px;
        height: 320px;
    }
    .wanted p {
        font-size: 12px;
        width: 260px;
    }
    .junior-texts {
        font-size: 14px;
        width: 240px;
    }
    .junior h3 {
        font-size: 18px !important;
        padding-bottom: 15px !important;
        margin-bottom: 0 !important;
    }
    .wanted .apply {
        font-size: 18px;
        margin-top: 70px;
        width: 86%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
        padding-bottom: 8px;
        font-weight: bold;
    }
    .wanted .contact-text {
        font-size: 14px !important;
        padding-bottom: 45px;
        width: 320px;
    }
    .wanted .direction {
        gap: 10px;
        width: 70%;
        margin-right: auto;
        margin-left: auto;
    }
    .wanted .direction img {
        margin: 0;
    }
    .wanted .grid {
        grid-gap: 50px;
    }
    .apply::after {
        width: 100%;
    }
}

/* Activity */
.activity {
    max-width: 900px;
    margin: 0 auto;
}
.activity .container {
    padding: 245px 20px 135px 20px;
}
.activity h2 {
    position: relative;
    z-index: 2;
    margin-bottom: 120px;
}
.activity h2::before {
    content: "Activity";
    font-size: clamp(190px,20.3vw,240px);
    position: absolute;
    left: -12vw;
    bottom: -57px;
    color: #1EDEFE;
    opacity: .6;
    z-index: -1;
}
.elementary, .juniorhigh {
    display: flex;
    justify-content: space-between;
    line-height: 180%;
    gap: 15px;
}
.elementary p span,
.juniorhigh p span {
    position: relative;
    padding-left: 2em;
}
.elementary p span::before,
.juniorhigh p span::before {
    width: 28px;
    height: 28px;
    content: " ";
    background-color: #EBEF8B;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -0.5em;
    border-radius: 100px;
}
.elementary {
    margin-bottom: 65px;
}
.activity p {
    text-align: left;
    max-width: 418px;
}
.elementary img, .juniorhigh img {
    width: 446px;
    height: 277px;
    object-fit: cover;
}
.activity .activity-text {
    max-width: 900px;
    text-align: left;
    font-size: 18px;
    margin-top: 40px;
    margin-bottom: 15px;
}
.activity .blue {
    font-size: 17px;
    color: #1EDEFE;
    max-width: 900px;
    text-align: left ;
    margin-bottom: 16px ;
}
.activity a {
    font-size: 18px;
}
.activity .direction {
    justify-content: left;
}
.border-img {
    border: #262626 solid 1px;
}
.place h3 {
    padding-bottom: 9px;
    margin-bottom: 65px;
    padding-top: 79px;
}
.place .grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2つの列を均等に分ける */
    column-gap: 10px;
    text-align: left;
}
.place .grid li {
    position: relative;
    padding-left: 2em;
    font-size: 18px;
    margin-bottom: 28px;
    list-style:  none;      /* デフォルトのアイコンを消す */
}
.place .grid li::before {
    width: 28px;
    height: 28px;
    content: " ";
    background-color: #EBEF8B;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -0.5em;
    border-radius: 100px;
}
.under-line {
    position: relative;
}
.under-line::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    content: " ";
    width: 60px;
    height: 1px;
    border-top: #000 1px solid;
}
.bus p {
    font-size: 20px;
    position: relative;
    margin: 35px auto;
}
.bus p::before {
    content: " ";
    background-image: url(./img/line2.png);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -0.8em;
    background-repeat: no-repeat;
    width: 10px;
    height: 16px;
    background-size: contain;
}
.bus p::after {
    content: " ";
    background-image: url(./img/line.png);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    width: 10px;
    height: 16px;
    background-size: contain;
}
.bus img {
    width: 100%;
}
@media(max-width:1000px) {
    .elementary {
        flex-direction: column-reverse;
        width: 100%;
    }
    .elementary img,
    .elementary p,
    .juniorhigh img,
    .juniorhigh p {
        margin-left: auto;
        margin-right: auto;
        max-width: inherit;
        width: 100%;
        height: auto;
    }
    .juniorhigh {
        flex-direction: column;
        width: 100%;
    }
}

@media(max-width:740px) {
    .activity .container {
        padding: 160px 20px 100px 20px;
    }
    h2 {
        font-size: 22px;
    }
    .activity h2 {
        margin-bottom: 80px;
    }
    .activity h2::before {
        font-size: 82px;
        left: -3vw;
        bottom: -0.3em;
    }
    h3 {
        font-size: 20px !important;
        margin-bottom: 50px !important;
    }
    .elementary, .juniorhigh {
        gap: 32px;
    }
    .elementary {
        margin-bottom: 50px;
    }
    .activity .activity-text {
        font-size: 14px;
        margin-top: 30px;
        margin-bottom: 8px;
    }
    .blue {
        font-size: 12px;
    }
    .activity .direction {
        justify-content: center !important;
    }
    .time .direction p {
        font-size: 14px !important;
    }
    .place h3 {
        font-size: 20px !important;
        padding-bottom: 9px;
        margin-bottom: 50px;
        padding-top: 65px;
    }
    .place .grid {
        grid-template-columns: inherit;
        column-gap: 0;
    }
    .place .grid li {
        font-size: 16px;
        margin-bottom: 22px;
    }
    .bus p {
        font-size: 16px;
        max-width: inherit;
        text-align: center;
        display: inline-block;
    }
}

/* feature */
.feature .container {
    position: relative;
}
.feature .container::before {
    position: absolute;
    top: 1.5em;
    left: -1.3em;
    content: "Feature";
    font-size: clamp(190px,20.3vw,240px);
    transform: rotate(90deg);
    color: #1EDEFE;
    opacity: .6;
    font-weight: bold;
    z-index: -1;
}
.feature h2 {
    font-size: 45px;
    padding-bottom: 54px;
}
.feature p {
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    padding-bottom: 60px;

}
h3 {
    font-size: 28px;
    margin-bottom: 80px;
    padding-bottom: 9px;
    text-align: center;
}
.philosophy ul li {
    padding-top: 32px;
    max-width: 830px;
    margin: 0 auto;
    font-size: 28px;
    position: relative;
    padding-left: 2em;
    list-style:  none;
}
.philosophy ul li:nth-last-of-type(1) {
    padding-bottom: 66px;
}
.philosophy ul li::before {
    width: 28px;
    height: 28px;
    content: " ";
    background-color: #EBEF8B;
    position: absolute;
    top: 35px;
    left: 0;
    border-radius: 100px;
}
.event ul li {
    max-width: 880px;
    margin: 0 auto;
    font-size: 18px;
    padding-top: 27px;
    position: relative;
    padding-left: 2em;
    list-style:  none;
}
.first {
    padding-bottom: 0;
}
.event ul li:nth-of-type(1){
    padding-top: 0;
}
.event ul li::before {
    width: 28px;
    height: 28px;
    content: " ";
    background-color: #EBEF8B;
    position: absolute;
    top: 26px;
    left: 0;
    border-radius: 100px;
}
.first::before {
    top: 0 !important;
}
.event p {
    color: #A2EDF9;
    font-size: 20px;
    padding-left: 1em;
    margin-top: 30px;
}
.event h3 {
    margin-bottom: 60px;
}
.feature {
    counter-reset: number;
}
.education {
    width: 80%;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}
.education h3 {
    margin-bottom: 45px !important;
}
.number::before {
    font-size: 51px;
    counter-increment: number;
    content: counter(number, decimal-leading-zero);
}
.number {
    display: inline-block;
    min-width: 90px;
    margin: 0 !important;
    padding-bottom: 5px !important;
    padding-left: 20px;
}
.number-box {
    display: flex;
    align-items: center;
    justify-content: left;
    border: 1px #707070 solid;
}
.number-list {
    margin-bottom: 35px;
}
.number-list:nth-last-of-type(1) {
    margin-bottom: 66px;
}
.number-text {
    font-size: 16px;
    margin-left: 1em !important;
    margin-right: auto !important;
    padding-top: 9px !important;
    padding-bottom: 8px !important;
    position: relative;
}
.number-text::before {
    position: absolute;
    content: " ";
    width: 2px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    border-right: 1px #262626 solid;
    left: -1em;
}
.number-text span {
    font-size: 20px;
    color: #D84200;
}

@media(max-width:740px) {
    .feature h2 {
        font-size: 22px;
    }
    .storonger, .philosophy, .education, .event {
        padding-left: 20px;
        padding-right: 20px;
    }
    .feature .container::before {
        top: 1em;
        left: -1.2em;
        font-size: 82px;
    }
    .feature p {
        font-size: 14px;
    }
    .philosophy ul li {
        font-size: 20px;
        padding-top: 0;
        padding-bottom: 32px;
    }
    .philosophy ul li:nth-of-type(1) {
        padding-top: 0;
    }
    .philosophy ul li::before {
        top: 5px;
    }
    .education {
        width: 100%;
        max-width: 500px;
    }
    .event ul {
        max-width: 400px;
        margin: 0 auto;
    }
    .number {
        min-width: 70px;
        padding-right: 10px;
        padding-left: 10px;
    }
    .number-text {
        padding-right: 12px;
    }
    .number-text span {
        font-size: 17px;
    }
    .event ul li {
        font-size: 16px;
        padding-top: 25px;
    }
    .event p {
        font-size: 16px;
        padding-left: 0;
        margin-top: 13px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .slider img {
        width: 125px !important;
        height: 80px !important;
        object-fit: cover;
    }
}



/*==================================================
スライダーのためのcss
===================================*/
.slider img {
    width: 360px;
    height: 233px;
    object-fit: cover;
}
.slider li {
    list-style: none;
}
.slider {
    display: flex;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
    margin:0 10px;/*スライド左右の余白調整*/
}

/* record */
.record .container {
    overflow: hidden;
}
.record .grid {
    display: grid;
    grid-gap: 32px; /* 列と行の間に10pxの間隔を設定 */
    text-align: left;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 auto;
    padding-top: 68px;
    padding-bottom: 129px;
    width: 100%;
}
.record h2 {
    position: relative;
}
.record h2::after {
    position: absolute;
    top: -50%;
    transform: translateY(-50%);
    right: -10vw;
    content: "Record";
    font-size: clamp(190px,20.3vw,240px);
    color: #1EDEFE;
    opacity: .6;
    font-weight: bold;
    z-index: -1;
}
.record-row {
    position: relative;
    max-width: 1000px;
    margin: 235px auto 0 auto;
}
.record .direction {
    position: static;
    margin: 30px 0 100px;
}
.record-img {
    width: 310px;
    height: 218px;
    margin: 0 auto;
}
.items {
    background-color: #262626;
    padding-bottom: 129px;
}
.items h2 {
    color: #ffff;
    font-size: 45px;
    padding-bottom: 132px;
    padding-top: 235px;
}
.items p {
    color: #ffff;
}
.items img {
    width: 278px;
    height: 180px;
    object-fit: cover;
}
.items .box {
    display: flex;
    border: solid 1px #ffff;
    max-width: 1000px;
    margin: 0 auto;
    padding: 28px 50px 28px 50px;
    justify-content: space-between;
    margin-bottom: 32px;
    align-items: center;
    gap: 10px;
}
.items .box p {
    max-width: 623px;
    text-align: left;
    font-size: 16px;
}
.items .box:nth-last-of-type(1) {
    margin-bottom: 65px;
}
.items a {
    color: #ffff;
    font-size: 36px;
}
.items .direction p {
    font-size: 36px;
}
.items .direction img {
    width: 50px;
    height: auto;
    background-color: #fff;
    padding: 17px 13px 15px 13px;
    border-radius: 100px;
    transition: all 0.5s;
}
.items .direction:hover img {
    padding: 17px 5px 15px 21px;
}
.items h2 {
    position: relative;
    z-index: 1;
}
.items h2::before {
    position: absolute;
    content: "Items";
    font-size: clamp(190px,20.3vw,240px);
    bottom: 13%;
    left: 0;
    color: #23BCD6;
    font-weight: bold;
    z-index: -1;
}
.items h3 {color: #fff;
    font-size: 20px;
    margin-bottom: 10px !important;
}
@media(max-width:1300px) {
    .record .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:740px) {
    .items h2 {
        font-size: 19px;
        padding-bottom: 50px;
        padding-top: 110px;
    }
    .items .box {
        flex-direction: column;
        padding: 30px 12px;
        margin-bottom: 50px;
    }
    .introduce {
        padding-left: 20px;
        padding-right: 20px;
    }
    .items img {
        width: 100%;
        height: auto;
        max-width: 450px;
        margin-bottom: 25px;
    }
    .items .box img {
        aspect-ratio: 1.594;
    }
    .items .box p {
        font-size: 14px;
    }
    .record .grid {
    grid-gap: 15px;
    padding-top: 135px;
    padding-bottom: 95px;
    grid-template-columns: repeat(3, 1fr);
    overflow-x: scroll;
    }
    .record-img {
        width: 124px;
        height: 90px;
    }
    .record-row {
        margin: 130px auto 0 auto;
    }
    .record h2::after {
        right: 3vw;
        font-size: 82px;
    }
    .record .direction {
        position: static;
    }
    .items h2::before {
        font-size: 82px;
        bottom: 15%;
        left: 0;
    }
    .items {
    padding-bottom: 100px;
    }
    .items .direction img {
        margin-bottom: 0 !important;
    }
}

@media(max-width:400px) {
    .record-img {
        width: 110px;
        height: 80px;
    }
}

/* sponsor */
.sponsor {
    position: relative;
    overflow: hidden;
    background-color: #23BCD6;
}
.sponsor .container {
    padding-top: 229px;
}
.sponsor h2 {
    font-size: 45px;
    padding-bottom: 21px;
    color: #fff;
}
.sponsor h3 {
    font-size: 25px;
    margin-bottom: 0;
    color: #fff;
}
.sponsor a:hover {
    opacity: .8 !important;
    color: #fff !important;
}
.sponsor h2::before {
    position: absolute;
    content: "Sponsor";
    font-size: clamp(190px,20.3vw,240px);
    top: 2em;
    right: -1em;
    transform: rotate(-90deg);
    color: #fff;
    font-weight: bold;
    z-index: 0;
    opacity: .3;
}

.sponsor img {
    display: block;
    width: 629px;
    height: auto;
    margin: 24px auto 100px;
}
.sponsor p {
    padding: 24px 0 150px;
    margin: 0 auto;
    max-width: 750px;
    font-size: 20px;
    font-weight: normal;
    color: #fff;
}
.sponsor p:hover {
    color: #fff !important;
}
.sponsor ul {
    padding: 24px 0 150px;
    margin: 0 auto;
    max-width: 750px;
    font-size: 20px;
    font-weight: normal;
    color: #fff;
}
@media(max-width:400px) {
    .sponsor ul {
        padding: 24px 0 30px 30px;
        margin: 0 auto;
        max-width: 750px;
        font-size: 16px;
        font-weight: bold;
    }
}

.sponsor .direction img {
    width: 50px;
    height: auto;
}

.sponsor .sponsor-list {
    padding: 24px 0 20px;
}
@media(max-width:400px) {
    .sponsor .sponsor-list {
        padding: 24px 0 30px 30px;
        margin: 0 auto;
        font-size: 16px;
    }
}

.sponsor small {
    text-align: left;
    color: #fff;
}
@media(max-width:400px) {
    .sponsor small {
        font-size: 10px;
    }
}

.contact {
    margin-top: 200px;
}
@media(max-width:400px) {
    .contact {
        margin-top: 100px;
    }
}

.contact h2 {
    font-size: 45px;
}
.contact p {
    font-size: 16px;
    padding-top: 47px;
}

@media(max-width:740px) {
    .sponsor .container {
        padding: 95px 20px 20px;
    }
    .sponsor h2 {
        padding: 40px 0 20px;
        font-size: 20px;
    }
    .sponsor h3 {
        margin-top: 50px !important;
        margin-bottom: 10px !important;
    }
    .sponsor img {
        width: 80%;
        height: auto;
        margin: 24px auto;
    }
    .sponsor h2::before {
        font-size: 82px;
        top: 2em;
        right: -1em;
        opacity: .1;
    }
    .sponsor p {
        padding-top: 20px;
        padding-bottom: 30px;
        font-size: 16px;
        font-weight: normal;
        padding-left: 12px;
        padding-right: 12px;
        margin: 0 auto;
        text-align: left;
    }
    .sponsor .smalltext {
        font-size: 14px;
        padding-top: 45px;
        padding-bottom: 130px;
    }
}

/* contact */
.contact .container {
    padding-bottom: 125px;
}
.contact h2 {
    font-size: 45px;
    padding-bottom: 75px;
    position: relative;
}
.contact h2::before {
    position: absolute;
    content: "Contact";
    font-size: clamp(190px,20.3vw,240px);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    color: #1EDEFE;
    font-weight: bold;
    z-index: -1;
}
.contact-mail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-top: 55px;
    margin-bottom: 65px;
}
.contact-phone img {
    width: 300px;
    height: auto;
}
.contact-line img {
    width: 230px;
    height: 60px;
}
.contact-red {
    margin-bottom: 65px;
    font-size: 16px;
    color: #D84200;
}
.c-form {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}
.form-label p {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.input-field {
    width: 520px;
    height: 50px;
    border: 2px solid #262626;
    background-color: transparent;
    font-size: 20px;
}
@media(max-width:740px) {
    .input-field {
        width: 295px;
        margin: 17px 0 36px;
        display: block;
        margin-right: auto;
    }
}
.c-form textarea {
    width: 520px;
    height: 370px;
    border: 2px solid #262626;
    font-size: 20px;
}
.c-form input:focus,
.c-form textarea:focus {
    background-color: #A2EDF9;
}
.submit {
    cursor: pointer;
    margin-top: 65px;
}
.submit p {
    padding-top: 0;
}
.required {
    position: relative;
    font-size: 22px;
}
.required::after {
    position: absolute;
    content: "※";
    font-size: 12px;
    color: #D84200;
    top: 0;
    right: -2em;
}
.required {
    margin-bottom: 48px;
    font-size: 22px;
}
.form-label:nth-last-of-type(1) {
    margin-bottom: 0;
}
.wpcf7-submit {
background-color: transparent;
width: 450px;
height: 50px;
font-size: 18px;
}
.wpcf7-submit:hover {
    background-color: #23BCD6;
}

@media(max-width:900px) {
    .contact .container {
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 95px;
    }
    .contact h2 {
        font-size: 20px;
        padding-bottom: 60px;
    }
    .contact h2::before {
        font-size: 82px;
        bottom: 40px;
    }
    .contact p {
        font-size: 13px;
        padding-top: 0;
    }
    .contact-mail {
        flex-direction: column;
        gap: 18px;
    }
    .contact-red {
        font-size: 14px;
        margin-bottom: 25px;
    }
    .form-label p {
        display: inline-block;
        text-align: left;
    }
    .c-form input {
        width: 100%;
        height: 45px;
        font-size: 16px;
        margin-top: 17px;
        margin-bottom: 36px;
    }
    .c-form textarea {
        width: 100%;
        height: 240px;
        font-size: 16px;
        margin-top: 17px;
        margin-bottom: 36px;
    }
    .contact-phone img {
        width: 260px;
        height: 70px;
    }
    .contact-line img {
        width: 205px;
        height: 55px;
    }
    .required {
        margin-bottom: 32px ;
        font-size: 20px;
    }
    .form-label label {
        margin-bottom: 16px;
    }
    .wpcf7-submit {
        width: 150px !important;
        height: 40px !important;
        font-size: 14px !important;
    }
    .submit {
        margin-top: 0;
    }
}

/* footer */
footer {
    background-color: #262626;
}
footer .container {
    padding: 140px 20px 10px 20px;
}
.footer-logo {
    width: 110px;
    height: auto;
    margin-bottom: 55px;
}
.footer-menu {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-row-gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}
.footer-menu a p {
    color: #ffffff;
    font-size: 20px;
}
.snsbtn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 35px;
    margin-bottom: 100px;
}
.snsbtn img {
    width: 38px;
    height: 38px;
}
.small-text {
    font-size: 14px;
    color: #fff;
}
.footer-menu a:hover p {
    color: #1EDEFE;
}

@media(max-width:740px) {
    footer .container {
        padding: 95px 20px 15px 20px;
    }
    .footer-menu {
        grid-template-columns: repeat(2, 1fr);
        grid-row-gap: 24px;
        max-width: 400px;
    }
    .footer-menu a {
        text-align: left;
    }
    .footer-menu a p {
        font-size: 18px;
    }
    .footer-logo {
        width: 60px;
        margin-bottom: 48px;
    }
    .snsbtn {
        margin-top: 50px;
        margin-bottom: 65px;
    }
}

/* page-info.php */
.page .container {
    padding-bottom: 60px;
}
.page .container .news-block {
    width: 90%;
    max-width: 900px;
    margin: 0 auto 0 auto;
}
.page .container .news-block .news-box {
    margin-bottom: 50px;
}
.page-top {
    text-align: center;
    margin: 50px auto 70px auto;
}
.page-top p {
    font-size: 50px;
}

@media(max-width:740px) {
    .page .container .news-block .news-box {
        gap: 5px;
    }
    .page-top p {
        font-size: 30px;
    }
    .page .container {
        padding-bottom: 30px;
    }
}

/* single.php */
.single {
    max-width: 1400px;
    padding: 0 60px;
}
.single-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.single-title {
    font-size: 30px;
    margin: 24px auto;
}
.single img {
    width: 100%;
    margin: 50px auto;
    height: auto;
}
.single-content {
    width: 70%;
    margin: 0 auto 60px auto;
    text-align: left;
    font-size: 18px;
}
.btn a {
    font-size: 16px;
}
.single .direction img {
    border: 1px #262626 solid;
    width: 50px;
}
.single .direction {
    margin-bottom: 60px;
}

.pnfc {
    margin: 100px auto;
    display: block;
}
@media(max-width:740px) {
    .pnfc {
        margin: 20px auto 15px;
    }
}

@media(max-width:740px) {
    .single-flex {
        gap: 15px;
    }
    .single-title {
        font-size: 24px;
    }
    .single-img {
        width: 80%;
    }
    .single-content {
        width: 90%;
        margin: 0 auto 40px auto;
        font-size: 14px;
    }
    .single .direction {
        margin-bottom: 30px;
    }
}


.zoom-instagram {
    margin: 20px auto 10px;
}

.zoom-instagram-widget__header,
.wpz-insta-lightbox-wrapper {
    display: none;
}

.zoom-instagram-link,
.zoom-instagram-widget__item-inner-wrap {
    width: 320px;
    height: 320px;
    object-fit: cover;
}
@media screen and (max-width: 768px) {
    .zoom-instagram-link,
    .zoom-instagram-widget__item-inner-wrap {
        width: 100px;
        height: 100px;
        margin: 0 0 0 5px;
        object-fit: cover;
    }
}

.zoom-instagram-widget__item {
    list-style-type:none;
}